less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

45687 líneas
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. }
  1803. //species
  1804. function getSpeciesInfo(speciesList) {
  1805. let result = new Set();
  1806. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1807. result.add(entry)
  1808. });
  1809. return Array.from(result);
  1810. };
  1811. function getSpeciesInfoHelper(species) {
  1812. if (!speciesData[species]) {
  1813. console.warn(species + " doesn't exist");
  1814. return [];
  1815. }
  1816. if (speciesData[species].parents) {
  1817. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1818. } else {
  1819. return [species];
  1820. }
  1821. }
  1822. characterMakers.push(() => makeCharacter(
  1823. {
  1824. name: "Fen",
  1825. species: ["crux"],
  1826. description: {
  1827. title: "Bio",
  1828. text: "Very furry. Sheds on everything."
  1829. },
  1830. tags: [
  1831. "anthro",
  1832. "goo"
  1833. ]
  1834. },
  1835. {
  1836. front: {
  1837. height: math.unit(2.2428, "meter"),
  1838. weight: math.unit(124.738, "kg"),
  1839. name: "Front",
  1840. image: {
  1841. source: "./media/characters/fen/front.svg",
  1842. extra: 1804/1562,
  1843. bottom: 205/2009
  1844. }
  1845. },
  1846. diving: {
  1847. height: math.unit(3.3, "meters"),
  1848. weight: math.unit(124.738, "kg"),
  1849. name: "Diving",
  1850. image: {
  1851. source: "./media/characters/fen/diving.svg"
  1852. }
  1853. },
  1854. maw: {
  1855. height: math.unit(2.83, "feet"),
  1856. name: "Maw",
  1857. image: {
  1858. source: "./media/characters/fen/maw.svg"
  1859. }
  1860. },
  1861. back: {
  1862. height: math.unit(2.2428, "meter"),
  1863. weight: math.unit(124.738, "kg"),
  1864. name: "Back",
  1865. image: {
  1866. source: "./media/characters/fen/back.svg",
  1867. },
  1868. info: {
  1869. description: {
  1870. mode: "append",
  1871. text: "\n\nHe is not currently looking at you."
  1872. }
  1873. }
  1874. },
  1875. full: {
  1876. height: math.unit(0.91, "meter"),
  1877. weight: math.unit(225, "kg"),
  1878. name: "Full",
  1879. image: {
  1880. source: "./media/characters/fen/full.svg",
  1881. extra: 1133/859,
  1882. bottom: 145/1278
  1883. },
  1884. info: {
  1885. description: {
  1886. mode: "append",
  1887. text: "\n\nMunch."
  1888. }
  1889. }
  1890. },
  1891. kneeling: {
  1892. height: math.unit(5.4, "feet"),
  1893. weight: math.unit(124.738, "kg"),
  1894. name: "Kneeling",
  1895. image: {
  1896. source: "./media/characters/fen/kneeling.svg",
  1897. extra: 563 / 507
  1898. }
  1899. },
  1900. goo: {
  1901. height: math.unit(2.8, "feet"),
  1902. weight: math.unit(125, "kg"),
  1903. capacity: math.unit(1, "people"),
  1904. name: "Goo",
  1905. image: {
  1906. source: "./media/characters/fen/goo.svg",
  1907. bottom: 116 / 613
  1908. }
  1909. },
  1910. lounging: {
  1911. height: math.unit(6.5, "feet"),
  1912. weight: math.unit(125, "kg"),
  1913. name: "Lounging",
  1914. image: {
  1915. source: "./media/characters/fen/lounging.svg"
  1916. }
  1917. },
  1918. },
  1919. [
  1920. {
  1921. name: "Small",
  1922. height: math.unit(2.2428, "meter")
  1923. },
  1924. {
  1925. name: "Normal",
  1926. height: math.unit(12, "feet"),
  1927. default: true,
  1928. },
  1929. {
  1930. name: "Big",
  1931. height: math.unit(20, "feet")
  1932. },
  1933. {
  1934. name: "Minimacro",
  1935. height: math.unit(40, "feet"),
  1936. info: {
  1937. description: {
  1938. mode: "append",
  1939. text: "\n\nTOO DAMN BIG"
  1940. }
  1941. }
  1942. },
  1943. {
  1944. name: "Macro",
  1945. height: math.unit(100, "feet"),
  1946. info: {
  1947. description: {
  1948. mode: "append",
  1949. text: "\n\nTOO DAMN BIG"
  1950. }
  1951. }
  1952. },
  1953. {
  1954. name: "Megamacro",
  1955. height: math.unit(2, "miles")
  1956. },
  1957. {
  1958. name: "Gigamacro",
  1959. height: math.unit(10, "earths")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(183, "cm"),
  1968. weight: math.unit(80, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/sofia-fluttertail/front.svg",
  1972. bottom: 0.01,
  1973. extra: 2154 / 2081
  1974. }
  1975. },
  1976. frontAlt: {
  1977. height: math.unit(183, "cm"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Front (alt)",
  1980. image: {
  1981. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/back.svg"
  1990. }
  1991. },
  1992. kneeling: {
  1993. height: math.unit(125, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Kneeling",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1998. extra: 1033 / 977,
  1999. bottom: 23.7 / 1057
  2000. }
  2001. },
  2002. maw: {
  2003. height: math.unit(183 / 5, "cm"),
  2004. name: "Maw",
  2005. image: {
  2006. source: "./media/characters/sofia-fluttertail/maw.svg"
  2007. }
  2008. },
  2009. mawcloseup: {
  2010. height: math.unit(183 / 5 * 0.41, "cm"),
  2011. name: "Maw (Closeup)",
  2012. image: {
  2013. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2014. }
  2015. },
  2016. paws: {
  2017. height: math.unit(1.17, "feet"),
  2018. name: "Paws",
  2019. image: {
  2020. source: "./media/characters/sofia-fluttertail/paws.svg",
  2021. extra: 851 / 851,
  2022. bottom: 17 / 868
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(1.83, "meter")
  2030. },
  2031. {
  2032. name: "Size Thief",
  2033. height: math.unit(18, "feet")
  2034. },
  2035. {
  2036. name: "50 Foot Collie",
  2037. height: math.unit(50, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(96, "feet"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamerger",
  2046. height: math.unit(650, "feet")
  2047. },
  2048. ]
  2049. ))
  2050. characterMakers.push(() => makeCharacter(
  2051. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2052. {
  2053. front: {
  2054. height: math.unit(7, "feet"),
  2055. weight: math.unit(100, "kg"),
  2056. name: "Front",
  2057. image: {
  2058. source: "./media/characters/march/front.svg",
  2059. extra: 1992/1851,
  2060. bottom: 39/2031
  2061. }
  2062. },
  2063. foot: {
  2064. height: math.unit(0.9, "feet"),
  2065. name: "Foot",
  2066. image: {
  2067. source: "./media/characters/march/foot.svg"
  2068. }
  2069. },
  2070. },
  2071. [
  2072. {
  2073. name: "Normal",
  2074. height: math.unit(7.9, "feet")
  2075. },
  2076. {
  2077. name: "Macro",
  2078. height: math.unit(220, "meters")
  2079. },
  2080. {
  2081. name: "Megamacro",
  2082. height: math.unit(2.98, "km"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Gigamacro",
  2087. height: math.unit(15963, "km")
  2088. },
  2089. {
  2090. name: "Teramacro",
  2091. height: math.unit(2980000000, "km")
  2092. },
  2093. {
  2094. name: "Examacro",
  2095. height: math.unit(250, "parsecs")
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2101. {
  2102. front: {
  2103. height: math.unit(6, "feet"),
  2104. weight: math.unit(60, "kg"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/noir/front.svg",
  2108. extra: 1,
  2109. bottom: 0.032
  2110. }
  2111. },
  2112. },
  2113. [
  2114. {
  2115. name: "Normal",
  2116. height: math.unit(6.6, "feet")
  2117. },
  2118. {
  2119. name: "Macro",
  2120. height: math.unit(500, "feet")
  2121. },
  2122. {
  2123. name: "Megamacro",
  2124. height: math.unit(2.5, "km"),
  2125. default: true
  2126. },
  2127. {
  2128. name: "Gigamacro",
  2129. height: math.unit(22500, "km")
  2130. },
  2131. {
  2132. name: "Teramacro",
  2133. height: math.unit(2500000000, "km")
  2134. },
  2135. {
  2136. name: "Examacro",
  2137. height: math.unit(200, "parsecs")
  2138. },
  2139. ]
  2140. ))
  2141. characterMakers.push(() => makeCharacter(
  2142. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2143. {
  2144. front: {
  2145. height: math.unit(7, "feet"),
  2146. weight: math.unit(100, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/okuri/front.svg",
  2150. extra: 1,
  2151. bottom: 0.037
  2152. }
  2153. },
  2154. back: {
  2155. height: math.unit(7, "feet"),
  2156. weight: math.unit(100, "kg"),
  2157. name: "Back",
  2158. image: {
  2159. source: "./media/characters/okuri/back.svg",
  2160. extra: 1,
  2161. bottom: 0.007
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Megamacro",
  2168. height: math.unit(100, "miles"),
  2169. default: true
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(100, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/manny/front.svg",
  2182. extra: 1,
  2183. bottom: 0.06
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(7, "feet"),
  2188. weight: math.unit(100, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/manny/back.svg",
  2192. extra: 1,
  2193. bottom: 0.014
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(7, "feet"),
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(78, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Macro+",
  2209. height: math.unit(300, "meters")
  2210. },
  2211. {
  2212. name: "Macro++",
  2213. height: math.unit(2400, "meters")
  2214. },
  2215. {
  2216. name: "Megamacro",
  2217. height: math.unit(5167, "meters")
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(41769, "miles")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/adake/front-1.svg"
  2234. }
  2235. },
  2236. frontAlt: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front (Alt)",
  2240. image: {
  2241. source: "./media/characters/adake/front-2.svg",
  2242. extra: 1,
  2243. bottom: 0.01
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/adake/back.svg",
  2252. }
  2253. },
  2254. kneel: {
  2255. height: math.unit(5.385, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Kneeling",
  2258. image: {
  2259. source: "./media/characters/adake/kneel.svg",
  2260. bottom: 0.052
  2261. }
  2262. },
  2263. },
  2264. [
  2265. {
  2266. name: "Normal",
  2267. height: math.unit(7, "feet"),
  2268. },
  2269. {
  2270. name: "Macro",
  2271. height: math.unit(78, "feet"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Macro+",
  2276. height: math.unit(300, "meters")
  2277. },
  2278. {
  2279. name: "Macro++",
  2280. height: math.unit(2400, "meters")
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(5167, "meters")
  2285. },
  2286. {
  2287. name: "Gigamacro",
  2288. height: math.unit(41769, "miles")
  2289. },
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2294. {
  2295. front: {
  2296. height: math.unit(1.65, "meters"),
  2297. weight: math.unit(50, "kg"),
  2298. name: "Front",
  2299. image: {
  2300. source: "./media/characters/elijah/front.svg",
  2301. extra: 858 / 830,
  2302. bottom: 95.5 / 953.8559
  2303. }
  2304. },
  2305. back: {
  2306. height: math.unit(1.65, "meters"),
  2307. weight: math.unit(50, "kg"),
  2308. name: "Back",
  2309. image: {
  2310. source: "./media/characters/elijah/back.svg",
  2311. extra: 895 / 850,
  2312. bottom: 5.3 / 897.956
  2313. }
  2314. },
  2315. frontNsfw: {
  2316. height: math.unit(1.65, "meters"),
  2317. weight: math.unit(50, "kg"),
  2318. name: "Front (NSFW)",
  2319. image: {
  2320. source: "./media/characters/elijah/front-nsfw.svg",
  2321. extra: 858 / 830,
  2322. bottom: 95.5 / 953.8559
  2323. }
  2324. },
  2325. backNsfw: {
  2326. height: math.unit(1.65, "meters"),
  2327. weight: math.unit(50, "kg"),
  2328. name: "Back (NSFW)",
  2329. image: {
  2330. source: "./media/characters/elijah/back-nsfw.svg",
  2331. extra: 895 / 850,
  2332. bottom: 5.3 / 897.956
  2333. }
  2334. },
  2335. dick: {
  2336. height: math.unit(1, "feet"),
  2337. name: "Dick",
  2338. image: {
  2339. source: "./media/characters/elijah/dick.svg"
  2340. }
  2341. },
  2342. beakOpen: {
  2343. height: math.unit(1.25, "feet"),
  2344. name: "Beak (Open)",
  2345. image: {
  2346. source: "./media/characters/elijah/beak-open.svg"
  2347. }
  2348. },
  2349. beakShut: {
  2350. height: math.unit(1.25, "feet"),
  2351. name: "Beak (Shut)",
  2352. image: {
  2353. source: "./media/characters/elijah/beak-shut.svg"
  2354. }
  2355. },
  2356. footFlexing: {
  2357. height: math.unit(1.61, "feet"),
  2358. name: "Foot (Flexing)",
  2359. image: {
  2360. source: "./media/characters/elijah/foot-flexing.svg"
  2361. }
  2362. },
  2363. footStepping: {
  2364. height: math.unit(1.44, "feet"),
  2365. name: "Foot (Stepping)",
  2366. image: {
  2367. source: "./media/characters/elijah/foot-stepping.svg"
  2368. }
  2369. },
  2370. plantigradeLeg: {
  2371. height: math.unit(2.34, "feet"),
  2372. name: "Plantigrade Leg",
  2373. image: {
  2374. source: "./media/characters/elijah/plantigrade-leg.svg"
  2375. }
  2376. },
  2377. plantigradeFootLeft: {
  2378. height: math.unit(0.9, "feet"),
  2379. name: "Plantigrade Foot (Left)",
  2380. image: {
  2381. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2382. }
  2383. },
  2384. plantigradeFootRight: {
  2385. height: math.unit(0.9, "feet"),
  2386. name: "Plantigrade Foot (Right)",
  2387. image: {
  2388. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2389. }
  2390. },
  2391. },
  2392. [
  2393. {
  2394. name: "Normal",
  2395. height: math.unit(1.65, "meters")
  2396. },
  2397. {
  2398. name: "Macro",
  2399. height: math.unit(55, "meters"),
  2400. default: true
  2401. },
  2402. {
  2403. name: "Macro+",
  2404. height: math.unit(105, "meters")
  2405. },
  2406. ]
  2407. ))
  2408. characterMakers.push(() => makeCharacter(
  2409. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2410. {
  2411. front: {
  2412. height: math.unit(7 + 2/12, "feet"),
  2413. weight: math.unit(320, "kg"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/rai/front.svg",
  2417. extra: 1802/1696,
  2418. bottom: 68/1870
  2419. }
  2420. },
  2421. frontDressed: {
  2422. height: math.unit(7 + 2/12, "feet"),
  2423. weight: math.unit(320, "kg"),
  2424. name: "Front (Dressed)",
  2425. image: {
  2426. source: "./media/characters/rai/front-dressed.svg",
  2427. extra: 1802/1696,
  2428. bottom: 68/1870
  2429. }
  2430. },
  2431. side: {
  2432. height: math.unit(7 + 2/12, "feet"),
  2433. weight: math.unit(320, "kg"),
  2434. name: "Side",
  2435. image: {
  2436. source: "./media/characters/rai/side.svg",
  2437. extra: 1789/1710,
  2438. bottom: 115/1904
  2439. }
  2440. },
  2441. back: {
  2442. height: math.unit(7 + 2/12, "feet"),
  2443. weight: math.unit(320, "kg"),
  2444. name: "Back",
  2445. image: {
  2446. source: "./media/characters/rai/back.svg",
  2447. extra: 1770/1707,
  2448. bottom: 28/1798
  2449. }
  2450. },
  2451. feral: {
  2452. height: math.unit(9.5, "feet"),
  2453. weight: math.unit(640, "kg"),
  2454. name: "Feral",
  2455. image: {
  2456. source: "./media/characters/rai/feral.svg",
  2457. extra: 945/553,
  2458. bottom: 176/1121
  2459. }
  2460. },
  2461. dragon: {
  2462. height: math.unit(23, "feet"),
  2463. weight: math.unit(50000, "lb"),
  2464. name: "Dragon",
  2465. image: {
  2466. source: "./media/characters/rai/dragon.svg",
  2467. extra: 2498 / 2030,
  2468. bottom: 85.2 / 2584
  2469. }
  2470. },
  2471. maw: {
  2472. height: math.unit(1.69, "feet"),
  2473. name: "Maw",
  2474. image: {
  2475. source: "./media/characters/rai/maw.svg"
  2476. }
  2477. },
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(7 + 2/12, "feet")
  2483. },
  2484. {
  2485. name: "Big",
  2486. height: math.unit(11, "feet")
  2487. },
  2488. {
  2489. name: "Macro",
  2490. height: math.unit(302, "feet"),
  2491. default: true
  2492. },
  2493. ]
  2494. ))
  2495. characterMakers.push(() => makeCharacter(
  2496. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2497. {
  2498. frontDressed: {
  2499. height: math.unit(216, "feet"),
  2500. weight: math.unit(7000000, "lb"),
  2501. name: "Front (Dressed)",
  2502. image: {
  2503. source: "./media/characters/jazzy/front-dressed.svg",
  2504. extra: 2738 / 2651,
  2505. bottom: 41.8 / 2786
  2506. }
  2507. },
  2508. backDressed: {
  2509. height: math.unit(216, "feet"),
  2510. weight: math.unit(7000000, "lb"),
  2511. name: "Back (Dressed)",
  2512. image: {
  2513. source: "./media/characters/jazzy/back-dressed.svg",
  2514. extra: 2775 / 2673,
  2515. bottom: 36.8 / 2817
  2516. }
  2517. },
  2518. front: {
  2519. height: math.unit(216, "feet"),
  2520. weight: math.unit(7000000, "lb"),
  2521. name: "Front",
  2522. image: {
  2523. source: "./media/characters/jazzy/front.svg",
  2524. extra: 2738 / 2651,
  2525. bottom: 41.8 / 2786
  2526. }
  2527. },
  2528. back: {
  2529. height: math.unit(216, "feet"),
  2530. weight: math.unit(7000000, "lb"),
  2531. name: "Back",
  2532. image: {
  2533. source: "./media/characters/jazzy/back.svg",
  2534. extra: 2775 / 2673,
  2535. bottom: 36.8 / 2817
  2536. }
  2537. },
  2538. maw: {
  2539. height: math.unit(20, "feet"),
  2540. name: "Maw",
  2541. image: {
  2542. source: "./media/characters/jazzy/maw.svg"
  2543. }
  2544. },
  2545. paws: {
  2546. height: math.unit(27.5, "feet"),
  2547. name: "Paws",
  2548. image: {
  2549. source: "./media/characters/jazzy/paws.svg"
  2550. }
  2551. },
  2552. eye: {
  2553. height: math.unit(4.4, "feet"),
  2554. name: "Eye",
  2555. image: {
  2556. source: "./media/characters/jazzy/eye.svg"
  2557. }
  2558. },
  2559. droneOffense: {
  2560. height: math.unit(9.5, "inches"),
  2561. name: "Drone (Offense)",
  2562. image: {
  2563. source: "./media/characters/jazzy/drone-offense.svg"
  2564. }
  2565. },
  2566. droneRecon: {
  2567. height: math.unit(9.5, "inches"),
  2568. name: "Drone (Recon)",
  2569. image: {
  2570. source: "./media/characters/jazzy/drone-recon.svg"
  2571. }
  2572. },
  2573. droneDefense: {
  2574. height: math.unit(9.5, "inches"),
  2575. name: "Drone (Defense)",
  2576. image: {
  2577. source: "./media/characters/jazzy/drone-defense.svg"
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Macro",
  2584. height: math.unit(216, "feet"),
  2585. default: true
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(9 + 6/12, "feet"),
  2594. weight: math.unit(700, "lb"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/flamm/front.svg",
  2598. extra: 1751/1632,
  2599. bottom: 46/1797
  2600. }
  2601. },
  2602. buff: {
  2603. height: math.unit(9 + 6/12, "feet"),
  2604. weight: math.unit(950, "lb"),
  2605. name: "Buff",
  2606. image: {
  2607. source: "./media/characters/flamm/buff.svg",
  2608. extra: 3018/2874,
  2609. bottom: 221/3239
  2610. }
  2611. },
  2612. },
  2613. [
  2614. {
  2615. name: "Normal",
  2616. height: math.unit(9.5, "feet")
  2617. },
  2618. {
  2619. name: "Macro",
  2620. height: math.unit(200, "feet"),
  2621. default: true
  2622. },
  2623. ]
  2624. ))
  2625. characterMakers.push(() => makeCharacter(
  2626. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2627. {
  2628. front: {
  2629. height: math.unit(5 + 3/12, "feet"),
  2630. weight: math.unit(60, "kg"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/zephiro/front.svg",
  2634. extra: 2309 / 2162,
  2635. bottom: 0.069
  2636. }
  2637. },
  2638. side: {
  2639. height: math.unit(5 + 3/12, "feet"),
  2640. weight: math.unit(60, "kg"),
  2641. name: "Side",
  2642. image: {
  2643. source: "./media/characters/zephiro/side.svg",
  2644. extra: 2403 / 2279,
  2645. bottom: 0.015
  2646. }
  2647. },
  2648. back: {
  2649. height: math.unit(5 + 3/12, "feet"),
  2650. weight: math.unit(60, "kg"),
  2651. name: "Back",
  2652. image: {
  2653. source: "./media/characters/zephiro/back.svg",
  2654. extra: 2373 / 2244,
  2655. bottom: 0.013
  2656. }
  2657. },
  2658. hand: {
  2659. height: math.unit(0.68, "feet"),
  2660. name: "Hand",
  2661. image: {
  2662. source: "./media/characters/zephiro/hand.svg"
  2663. }
  2664. },
  2665. paw: {
  2666. height: math.unit(1, "feet"),
  2667. name: "Paw",
  2668. image: {
  2669. source: "./media/characters/zephiro/paw.svg"
  2670. }
  2671. },
  2672. beans: {
  2673. height: math.unit(0.93, "feet"),
  2674. name: "Beans",
  2675. image: {
  2676. source: "./media/characters/zephiro/beans.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Micro",
  2683. height: math.unit(3, "inches")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(5 + 3 / 12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(118, "feet")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(5, "feet"),
  2701. weight: math.unit(90, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/fory/front.svg",
  2705. extra: 2862 / 2674,
  2706. bottom: 180 / 3043.8
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(5, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/fory/back.svg",
  2715. extra: 2962 / 2791,
  2716. bottom: 106 / 3071.8
  2717. }
  2718. },
  2719. foot: {
  2720. height: math.unit(2.14, "feet"),
  2721. name: "Foot",
  2722. image: {
  2723. source: "./media/characters/fory/foot.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(5, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(50, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(10, "miles")
  2740. },
  2741. {
  2742. name: "Gigamacro",
  2743. height: math.unit(5, "earths")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(7, "feet"),
  2752. weight: math.unit(90, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/kurrikage/front.svg",
  2756. extra: 1845/1733,
  2757. bottom: 119/1964
  2758. }
  2759. },
  2760. back: {
  2761. height: math.unit(7, "feet"),
  2762. weight: math.unit(90, "kg"),
  2763. name: "Back",
  2764. image: {
  2765. source: "./media/characters/kurrikage/back.svg",
  2766. extra: 1790/1677,
  2767. bottom: 61/1851
  2768. }
  2769. },
  2770. dressed: {
  2771. height: math.unit(7, "feet"),
  2772. weight: math.unit(90, "kg"),
  2773. name: "Dressed",
  2774. image: {
  2775. source: "./media/characters/kurrikage/dressed.svg",
  2776. extra: 1845/1733,
  2777. bottom: 119/1964
  2778. }
  2779. },
  2780. foot: {
  2781. height: math.unit(1.5, "feet"),
  2782. name: "Foot",
  2783. image: {
  2784. source: "./media/characters/kurrikage/foot.svg"
  2785. }
  2786. },
  2787. staff: {
  2788. height: math.unit(6.7, "feet"),
  2789. name: "Staff",
  2790. image: {
  2791. source: "./media/characters/kurrikage/staff.svg"
  2792. }
  2793. },
  2794. peek: {
  2795. height: math.unit(1.05, "feet"),
  2796. name: "Peeking",
  2797. image: {
  2798. source: "./media/characters/kurrikage/peek.svg",
  2799. bottom: 0.08
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(12, "feet"),
  2807. default: true
  2808. },
  2809. {
  2810. name: "Big",
  2811. height: math.unit(20, "feet")
  2812. },
  2813. {
  2814. name: "Macro",
  2815. height: math.unit(500, "feet")
  2816. },
  2817. {
  2818. name: "Megamacro",
  2819. height: math.unit(20, "miles")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(6, "feet"),
  2828. weight: math.unit(75, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/shingo/front.svg",
  2832. extra: 1900/1825,
  2833. bottom: 82/1982
  2834. }
  2835. },
  2836. side: {
  2837. height: math.unit(6, "feet"),
  2838. weight: math.unit(75, "kg"),
  2839. name: "Side",
  2840. image: {
  2841. source: "./media/characters/shingo/side.svg",
  2842. extra: 1930/1865,
  2843. bottom: 16/1946
  2844. }
  2845. },
  2846. back: {
  2847. height: math.unit(6, "feet"),
  2848. weight: math.unit(75, "kg"),
  2849. name: "Back",
  2850. image: {
  2851. source: "./media/characters/shingo/back.svg",
  2852. extra: 1922/1852,
  2853. bottom: 16/1938
  2854. }
  2855. },
  2856. frontDressed: {
  2857. height: math.unit(6, "feet"),
  2858. weight: math.unit(150, "lb"),
  2859. name: "Front-dressed",
  2860. image: {
  2861. source: "./media/characters/shingo/front-dressed.svg",
  2862. extra: 1900/1825,
  2863. bottom: 82/1982
  2864. }
  2865. },
  2866. paw: {
  2867. height: math.unit(1.29, "feet"),
  2868. name: "Paw",
  2869. image: {
  2870. source: "./media/characters/shingo/paw.svg"
  2871. }
  2872. },
  2873. hand: {
  2874. height: math.unit(1.07, "feet"),
  2875. name: "Hand",
  2876. image: {
  2877. source: "./media/characters/shingo/hand.svg"
  2878. }
  2879. },
  2880. frontAlt: {
  2881. height: math.unit(6, "feet"),
  2882. weight: math.unit(75, "kg"),
  2883. name: "Front (Alt)",
  2884. image: {
  2885. source: "./media/characters/shingo/front-alt.svg",
  2886. extra: 3511 / 3338,
  2887. bottom: 0.005
  2888. }
  2889. },
  2890. frontAlt2: {
  2891. height: math.unit(6, "feet"),
  2892. weight: math.unit(75, "kg"),
  2893. name: "Front (Alt 2)",
  2894. image: {
  2895. source: "./media/characters/shingo/front-alt-2.svg",
  2896. extra: 706/681,
  2897. bottom: 11/717
  2898. }
  2899. },
  2900. pawAlt: {
  2901. height: math.unit(1, "feet"),
  2902. name: "Paw (Alt)",
  2903. image: {
  2904. source: "./media/characters/shingo/paw-alt.svg"
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Micro",
  2911. height: math.unit(4, "inches")
  2912. },
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(6, "feet"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(108, "feet")
  2921. },
  2922. {
  2923. name: "Macro+",
  2924. height: math.unit(1500, "feet")
  2925. },
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2930. {
  2931. side: {
  2932. height: math.unit(6, "feet"),
  2933. weight: math.unit(75, "kg"),
  2934. name: "Side",
  2935. image: {
  2936. source: "./media/characters/aigey/side.svg"
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(200, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(100, "miles")
  2949. },
  2950. ]
  2951. )
  2952. )
  2953. characterMakers.push(() => makeCharacter(
  2954. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2955. {
  2956. front: {
  2957. height: math.unit(5 + 5 / 12, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front",
  2960. image: {
  2961. source: "./media/characters/natasha/front.svg",
  2962. extra: 859 / 824,
  2963. bottom: 23 / 879.6
  2964. }
  2965. },
  2966. frontNsfw: {
  2967. height: math.unit(5 + 5 / 12, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (NSFW)",
  2970. image: {
  2971. source: "./media/characters/natasha/front-nsfw.svg",
  2972. extra: 859 / 824,
  2973. bottom: 23 / 879.6
  2974. }
  2975. },
  2976. frontErect: {
  2977. height: math.unit(5 + 5 / 12, "feet"),
  2978. weight: math.unit(75, "kg"),
  2979. name: "Front (Erect)",
  2980. image: {
  2981. source: "./media/characters/natasha/front-erect.svg",
  2982. extra: 859 / 824,
  2983. bottom: 23 / 879.6
  2984. }
  2985. },
  2986. back: {
  2987. height: math.unit(5 + 5 / 12, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/natasha/back.svg",
  2992. extra: 887.9 / 852.6,
  2993. bottom: 9.7 / 896.4
  2994. }
  2995. },
  2996. backAlt: {
  2997. height: math.unit(5 + 5 / 12, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Back (Alt)",
  3000. image: {
  3001. source: "./media/characters/natasha/back-alt.svg",
  3002. extra: 1236.7 / 1192,
  3003. bottom: 22.3 / 1258.2
  3004. }
  3005. },
  3006. dick: {
  3007. height: math.unit(1.772, "feet"),
  3008. name: "Dick",
  3009. image: {
  3010. source: "./media/characters/natasha/dick.svg"
  3011. }
  3012. },
  3013. paw: {
  3014. height: math.unit(0.250, "meters"),
  3015. name: "Paw",
  3016. image: {
  3017. source: "./media/characters/natasha/paw.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(5 + 5 / 12, "feet")
  3025. },
  3026. {
  3027. name: "Large",
  3028. height: math.unit(12, "feet")
  3029. },
  3030. {
  3031. name: "Macro",
  3032. height: math.unit(100, "feet"),
  3033. default: true
  3034. },
  3035. {
  3036. name: "Macro+",
  3037. height: math.unit(260, "feet")
  3038. },
  3039. {
  3040. name: "Macro++",
  3041. height: math.unit(1, "mile")
  3042. },
  3043. ]
  3044. ))
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/malik/front.svg"
  3054. }
  3055. },
  3056. side: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Side",
  3060. image: {
  3061. source: "./media/characters/malik/side.svg",
  3062. extra: 1.1539
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(6, "feet"),
  3067. weight: math.unit(75, "kg"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/malik/back.svg"
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Macro",
  3077. height: math.unit(156, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Macro+",
  3082. height: math.unit(1188, "feet")
  3083. },
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(6, "feet"),
  3091. weight: math.unit(75, "kg"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/sefer/front.svg",
  3095. extra: 848 / 659,
  3096. bottom: 28.3 / 876.442
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(6, "feet"),
  3101. weight: math.unit(75, "kg"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/sefer/back.svg",
  3105. extra: 864 / 695,
  3106. bottom: 10 / 871
  3107. }
  3108. },
  3109. frontDressed: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(75, "kg"),
  3112. name: "Front (Dressed)",
  3113. image: {
  3114. source: "./media/characters/sefer/front-dressed.svg",
  3115. extra: 839 / 653,
  3116. bottom: 37.6 / 878
  3117. }
  3118. },
  3119. },
  3120. [
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(6, "feet"),
  3124. default: true
  3125. },
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3130. {
  3131. body: {
  3132. height: math.unit(2.2428, "meter"),
  3133. weight: math.unit(124.738, "kg"),
  3134. name: "Body",
  3135. image: {
  3136. extra: 1225 / 1050,
  3137. source: "./media/characters/north/front.svg"
  3138. }
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Micro",
  3144. height: math.unit(4, "inches")
  3145. },
  3146. {
  3147. name: "Macro",
  3148. height: math.unit(63, "meters")
  3149. },
  3150. {
  3151. name: "Megamacro",
  3152. height: math.unit(101, "miles"),
  3153. default: true
  3154. }
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3159. {
  3160. angled: {
  3161. height: math.unit(4, "meter"),
  3162. weight: math.unit(150, "kg"),
  3163. name: "Angled",
  3164. image: {
  3165. source: "./media/characters/talan/angled-sfw.svg",
  3166. bottom: 29 / 3734
  3167. }
  3168. },
  3169. angledNsfw: {
  3170. height: math.unit(4, "meter"),
  3171. weight: math.unit(150, "kg"),
  3172. name: "Angled (NSFW)",
  3173. image: {
  3174. source: "./media/characters/talan/angled-nsfw.svg",
  3175. bottom: 29 / 3734
  3176. }
  3177. },
  3178. frontNsfw: {
  3179. height: math.unit(4, "meter"),
  3180. weight: math.unit(150, "kg"),
  3181. name: "Front (NSFW)",
  3182. image: {
  3183. source: "./media/characters/talan/front-nsfw.svg",
  3184. bottom: 29 / 3734
  3185. }
  3186. },
  3187. sideNsfw: {
  3188. height: math.unit(4, "meter"),
  3189. weight: math.unit(150, "kg"),
  3190. name: "Side (NSFW)",
  3191. image: {
  3192. source: "./media/characters/talan/side-nsfw.svg",
  3193. bottom: 29 / 3734
  3194. }
  3195. },
  3196. back: {
  3197. height: math.unit(4, "meter"),
  3198. weight: math.unit(150, "kg"),
  3199. name: "Back",
  3200. image: {
  3201. source: "./media/characters/talan/back.svg"
  3202. }
  3203. },
  3204. dickBottom: {
  3205. height: math.unit(0.621, "meter"),
  3206. name: "Dick (Bottom)",
  3207. image: {
  3208. source: "./media/characters/talan/dick-bottom.svg"
  3209. }
  3210. },
  3211. dickTop: {
  3212. height: math.unit(0.621, "meter"),
  3213. name: "Dick (Top)",
  3214. image: {
  3215. source: "./media/characters/talan/dick-top.svg"
  3216. }
  3217. },
  3218. dickSide: {
  3219. height: math.unit(0.305, "meter"),
  3220. name: "Dick (Side)",
  3221. image: {
  3222. source: "./media/characters/talan/dick-side.svg"
  3223. }
  3224. },
  3225. dickFront: {
  3226. height: math.unit(0.305, "meter"),
  3227. name: "Dick (Front)",
  3228. image: {
  3229. source: "./media/characters/talan/dick-front.svg"
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(4, "meters")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(100, "meters")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(2, "miles"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Gigamacro",
  3249. height: math.unit(5000, "miles")
  3250. },
  3251. {
  3252. name: "Teramacro",
  3253. height: math.unit(100, "parsecs")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(90, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/gael'rathus/front.svg"
  3266. }
  3267. },
  3268. frontAlt: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front (alt)",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front-alt.svg"
  3274. }
  3275. },
  3276. frontAlt2: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt 2)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(9, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Large",
  3293. height: math.unit(25, "feet")
  3294. },
  3295. {
  3296. name: "Macro",
  3297. height: math.unit(0.25, "miles")
  3298. },
  3299. {
  3300. name: "Megamacro",
  3301. height: math.unit(10, "miles")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3307. {
  3308. side: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(140, "kg"),
  3311. name: "Side",
  3312. image: {
  3313. source: "./media/characters/sosha/side.svg",
  3314. bottom: 0.042
  3315. }
  3316. },
  3317. },
  3318. [
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(12, "feet"),
  3322. default: true
  3323. }
  3324. ]
  3325. ))
  3326. characterMakers.push(() => makeCharacter(
  3327. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3328. {
  3329. side: {
  3330. height: math.unit(5 + 5 / 12, "feet"),
  3331. weight: math.unit(170, "kg"),
  3332. name: "Side",
  3333. image: {
  3334. source: "./media/characters/runnola/side.svg",
  3335. extra: 741 / 448,
  3336. bottom: 0.05
  3337. }
  3338. },
  3339. },
  3340. [
  3341. {
  3342. name: "Small",
  3343. height: math.unit(3, "feet")
  3344. },
  3345. {
  3346. name: "Normal",
  3347. height: math.unit(5 + 5 / 12, "feet"),
  3348. default: true
  3349. },
  3350. {
  3351. name: "Big",
  3352. height: math.unit(10, "feet")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(2, "meter"),
  3361. weight: math.unit(50, "kg"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/kurribird/front.svg",
  3365. bottom: 0.015
  3366. }
  3367. },
  3368. frontAlt: {
  3369. height: math.unit(1.5, "meter"),
  3370. weight: math.unit(50, "kg"),
  3371. name: "Front (Alt)",
  3372. image: {
  3373. source: "./media/characters/kurribird/front-alt.svg",
  3374. extra: 1.45
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(7, "feet")
  3382. },
  3383. {
  3384. name: "Big",
  3385. height: math.unit(12, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(1500, "feet")
  3391. },
  3392. {
  3393. name: "Megamacro",
  3394. height: math.unit(2, "miles")
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(2, "meter"),
  3403. weight: math.unit(80, "kg"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/elbial/front.svg",
  3407. extra: 1643 / 1556,
  3408. bottom: 60.2 / 1696
  3409. }
  3410. },
  3411. side: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(80, "kg"),
  3414. name: "Side",
  3415. image: {
  3416. source: "./media/characters/elbial/side.svg",
  3417. extra: 1630 / 1565,
  3418. bottom: 71.5 / 1697
  3419. }
  3420. },
  3421. back: {
  3422. height: math.unit(2, "meter"),
  3423. weight: math.unit(80, "kg"),
  3424. name: "Back",
  3425. image: {
  3426. source: "./media/characters/elbial/back.svg",
  3427. extra: 1668 / 1595,
  3428. bottom: 5.6 / 1672
  3429. }
  3430. },
  3431. frontDressed: {
  3432. height: math.unit(2, "meter"),
  3433. weight: math.unit(80, "kg"),
  3434. name: "Front (Dressed)",
  3435. image: {
  3436. source: "./media/characters/elbial/front-dressed.svg",
  3437. extra: 1653 / 1584,
  3438. bottom: 57 / 1708
  3439. }
  3440. },
  3441. genitals: {
  3442. height: math.unit(2 / 3.367, "meter"),
  3443. name: "Genitals",
  3444. image: {
  3445. source: "./media/characters/elbial/genitals.svg"
  3446. }
  3447. },
  3448. },
  3449. [
  3450. {
  3451. name: "Large",
  3452. height: math.unit(100, "feet")
  3453. },
  3454. {
  3455. name: "Macro",
  3456. height: math.unit(500, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(10, "miles")
  3462. },
  3463. {
  3464. name: "Gigamacro",
  3465. height: math.unit(25000, "miles")
  3466. },
  3467. {
  3468. name: "Full-Size",
  3469. height: math.unit(8000000, "gigaparsecs")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(60, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/noah/front.svg"
  3482. }
  3483. },
  3484. talons: {
  3485. height: math.unit(0.315, "meter"),
  3486. name: "Talons",
  3487. image: {
  3488. source: "./media/characters/noah/talons.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Large",
  3495. height: math.unit(50, "feet")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(750, "feet"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(50, "miles")
  3505. },
  3506. {
  3507. name: "Gigamacro",
  3508. height: math.unit(100000, "miles")
  3509. },
  3510. {
  3511. name: "Full-Size",
  3512. height: math.unit(3000000000, "miles")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/natalya/front.svg"
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/natalya/back.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(150, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(5, "miles")
  3545. },
  3546. {
  3547. name: "Full-Size",
  3548. height: math.unit(600, "kiloparsecs")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(50, "kg"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/erestrebah/front.svg",
  3561. extra: 1262/1162,
  3562. bottom: 96/1358
  3563. }
  3564. },
  3565. back: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(50, "kg"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/erestrebah/back.svg",
  3571. extra: 1257/1139,
  3572. bottom: 13/1270
  3573. }
  3574. },
  3575. wing: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(50, "kg"),
  3578. name: "Wing",
  3579. image: {
  3580. source: "./media/characters/erestrebah/wing.svg",
  3581. extra: 1262/1162,
  3582. bottom: 96/1358
  3583. }
  3584. },
  3585. mouth: {
  3586. height: math.unit(0.39, "feet"),
  3587. name: "Mouth",
  3588. image: {
  3589. source: "./media/characters/erestrebah/mouth.svg"
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(10, "feet")
  3597. },
  3598. {
  3599. name: "Large",
  3600. height: math.unit(50, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(300, "feet")
  3606. },
  3607. {
  3608. name: "Macro+",
  3609. height: math.unit(750, "feet")
  3610. },
  3611. {
  3612. name: "Megamacro",
  3613. height: math.unit(3, "miles")
  3614. }
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3619. {
  3620. front: {
  3621. height: math.unit(2, "meter"),
  3622. weight: math.unit(80, "kg"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/jennifer/front.svg",
  3626. bottom: 0.11,
  3627. extra: 1.16
  3628. }
  3629. },
  3630. frontAlt: {
  3631. height: math.unit(2, "meter"),
  3632. weight: math.unit(80, "kg"),
  3633. name: "Front (Alt)",
  3634. image: {
  3635. source: "./media/characters/jennifer/front-alt.svg"
  3636. }
  3637. }
  3638. },
  3639. [
  3640. {
  3641. name: "Canon Height",
  3642. height: math.unit(120, "feet"),
  3643. default: true
  3644. },
  3645. {
  3646. name: "Macro+",
  3647. height: math.unit(300, "feet")
  3648. },
  3649. {
  3650. name: "Megamacro",
  3651. height: math.unit(20000, "feet")
  3652. }
  3653. ]
  3654. ))
  3655. characterMakers.push(() => makeCharacter(
  3656. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3657. {
  3658. front: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(50, "kg"),
  3661. name: "Front",
  3662. image: {
  3663. source: "./media/characters/kalista/front.svg",
  3664. extra: 1947 / 1700,
  3665. bottom: 76.6 / 1412.98
  3666. }
  3667. },
  3668. back: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(50, "kg"),
  3671. name: "Back",
  3672. image: {
  3673. source: "./media/characters/kalista/back.svg",
  3674. extra: 1366 / 1156,
  3675. bottom: 33.9 / 1362.78
  3676. }
  3677. }
  3678. },
  3679. [
  3680. {
  3681. name: "Uncomfortably Small",
  3682. height: math.unit(10, "feet")
  3683. },
  3684. {
  3685. name: "Small",
  3686. height: math.unit(30, "feet")
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(100, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Macro+",
  3695. height: math.unit(2000, "feet")
  3696. },
  3697. {
  3698. name: "True Form",
  3699. height: math.unit(8924, "miles")
  3700. }
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(120, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/ggv/front.svg"
  3712. }
  3713. },
  3714. side: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/ggv/side.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Extremely Puny",
  3726. height: math.unit(9 + 5 / 12, "feet")
  3727. },
  3728. {
  3729. name: "Horribly Small",
  3730. height: math.unit(47.7, "miles"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Reasonably Sized",
  3735. height: math.unit(25000, "parsecs")
  3736. },
  3737. {
  3738. name: "Slightly Uncompressed",
  3739. height: math.unit(7.77e31, "parsecs")
  3740. },
  3741. {
  3742. name: "Omniversal",
  3743. height: math.unit(1e300, "meters")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(75, "lb"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/napalm/front.svg"
  3756. }
  3757. },
  3758. back: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Back",
  3762. image: {
  3763. source: "./media/characters/napalm/back.svg"
  3764. }
  3765. }
  3766. },
  3767. [
  3768. {
  3769. name: "Standard",
  3770. height: math.unit(55, "feet"),
  3771. default: true
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(7 + 5 / 6, "feet"),
  3780. weight: math.unit(325, "lb"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/asana/front.svg",
  3784. extra: 1133 / 1060,
  3785. bottom: 15.2 / 1148.6
  3786. }
  3787. },
  3788. back: {
  3789. height: math.unit(7 + 5 / 6, "feet"),
  3790. weight: math.unit(325, "lb"),
  3791. name: "Back",
  3792. image: {
  3793. source: "./media/characters/asana/back.svg",
  3794. extra: 1114 / 1043,
  3795. bottom: 5 / 1120
  3796. }
  3797. },
  3798. dressedDark: {
  3799. height: math.unit(7 + 5 / 6, "feet"),
  3800. weight: math.unit(325, "lb"),
  3801. name: "Dressed (Dark)",
  3802. image: {
  3803. source: "./media/characters/asana/dressed-dark.svg",
  3804. extra: 1133 / 1060,
  3805. bottom: 15.2 / 1148.6
  3806. }
  3807. },
  3808. dressedLight: {
  3809. height: math.unit(7 + 5 / 6, "feet"),
  3810. weight: math.unit(325, "lb"),
  3811. name: "Dressed (Light)",
  3812. image: {
  3813. source: "./media/characters/asana/dressed-light.svg",
  3814. extra: 1133 / 1060,
  3815. bottom: 15.2 / 1148.6
  3816. }
  3817. },
  3818. },
  3819. [
  3820. {
  3821. name: "Standard",
  3822. height: math.unit(7 + 5 / 6, "feet"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Large",
  3827. height: math.unit(10, "meters")
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(2500, "meters")
  3832. },
  3833. {
  3834. name: "Megamacro",
  3835. height: math.unit(5e6, "meters")
  3836. },
  3837. {
  3838. name: "Examacro",
  3839. height: math.unit(5e12, "lightyears")
  3840. },
  3841. {
  3842. name: "Max Size",
  3843. height: math.unit(1e31, "lightyears")
  3844. }
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(60, "kg"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/ebony/front.svg",
  3856. bottom: 0.03,
  3857. extra: 1045 / 810 + 0.03
  3858. }
  3859. },
  3860. side: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(60, "kg"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/ebony/side.svg",
  3866. bottom: 0.03,
  3867. extra: 1045 / 810 + 0.03
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(60, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/ebony/back.svg",
  3876. bottom: 0.01,
  3877. extra: 1045 / 810 + 0.01
  3878. }
  3879. },
  3880. },
  3881. [
  3882. // TODO check why I did this lol
  3883. {
  3884. name: "Standard",
  3885. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(200, "feet")
  3891. },
  3892. {
  3893. name: "Gigamacro",
  3894. height: math.unit(13000, "km")
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(175, "lb"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/mountain/front.svg",
  3907. extra: 972 / 955,
  3908. bottom: 64 / 1036.6
  3909. }
  3910. },
  3911. back: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(175, "lb"),
  3914. name: "Back",
  3915. image: {
  3916. source: "./media/characters/mountain/back.svg",
  3917. extra: 970 / 950,
  3918. bottom: 28.25 / 999
  3919. }
  3920. },
  3921. },
  3922. [
  3923. {
  3924. name: "Large",
  3925. height: math.unit(20, "meters")
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(300, "meters")
  3930. },
  3931. {
  3932. name: "Gigamacro",
  3933. height: math.unit(10000, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Examacro",
  3938. height: math.unit(10e9, "lightyears")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(8, "feet"),
  3947. weight: math.unit(500, "lb"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/rick/front.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(8, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(5, "km")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(8, "feet"),
  3971. weight: math.unit(120, "lb"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/ona/front.svg"
  3975. }
  3976. },
  3977. frontAlt: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front (Alt)",
  3981. image: {
  3982. source: "./media/characters/ona/front-alt.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/ona/back.svg"
  3991. }
  3992. },
  3993. foot: {
  3994. height: math.unit(1.1, "feet"),
  3995. name: "Foot",
  3996. image: {
  3997. source: "./media/characters/ona/foot.svg"
  3998. }
  3999. }
  4000. },
  4001. [
  4002. {
  4003. name: "Megamacro",
  4004. height: math.unit(70, "km"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(681818, "miles")
  4010. },
  4011. {
  4012. name: "Examacro",
  4013. height: math.unit(3800000, "lightyears")
  4014. },
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(12, "feet"),
  4022. weight: math.unit(3000, "lb"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/mech/front.svg",
  4026. extra: 2900 / 2770,
  4027. bottom: 110 / 3010
  4028. }
  4029. },
  4030. back: {
  4031. height: math.unit(12, "feet"),
  4032. weight: math.unit(3000, "lb"),
  4033. name: "Back",
  4034. image: {
  4035. source: "./media/characters/mech/back.svg",
  4036. extra: 3011 / 2890,
  4037. bottom: 94 / 3105
  4038. }
  4039. },
  4040. maw: {
  4041. height: math.unit(3.07, "feet"),
  4042. name: "Maw",
  4043. image: {
  4044. source: "./media/characters/mech/maw.svg"
  4045. }
  4046. },
  4047. head: {
  4048. height: math.unit(2.82, "feet"),
  4049. name: "Head",
  4050. image: {
  4051. source: "./media/characters/mech/head.svg"
  4052. }
  4053. },
  4054. dick: {
  4055. height: math.unit(1.43, "feet"),
  4056. name: "Dick",
  4057. image: {
  4058. source: "./media/characters/mech/dick.svg"
  4059. }
  4060. },
  4061. },
  4062. [
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(12, "feet")
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(300, "feet"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Macro+",
  4074. height: math.unit(1500, "feet")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(1.3, "meter"),
  4083. weight: math.unit(30, "kg"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/gregory/front.svg",
  4087. }
  4088. }
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(1.3, "meter"),
  4094. default: true
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(20, "meter")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(2.8, "meter"),
  4107. weight: math.unit(200, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/elory/front.svg",
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(2.8, "meter"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(38, "meter")
  4123. }
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(470, "feet"),
  4131. weight: math.unit(924, "tons"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/angelpatamon/front.svg",
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(470, "feet"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Deity Size I",
  4146. height: math.unit(28651.2, "km")
  4147. },
  4148. {
  4149. name: "Deity Size II",
  4150. height: math.unit(171907.2, "km")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4156. {
  4157. side: {
  4158. height: math.unit(7.2, "meter"),
  4159. weight: math.unit(8.2, "tons"),
  4160. name: "Side",
  4161. image: {
  4162. source: "./media/characters/cryae/side.svg",
  4163. extra: 3500 / 1500
  4164. }
  4165. }
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(7.2, "meter"),
  4171. default: true
  4172. }
  4173. ]
  4174. ))
  4175. characterMakers.push(() => makeCharacter(
  4176. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4177. {
  4178. front: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(175, "lb"),
  4181. name: "Front",
  4182. image: {
  4183. source: "./media/characters/xera/front.svg",
  4184. extra: 2377 / 1972,
  4185. bottom: 75.5 / 2452
  4186. }
  4187. },
  4188. side: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(175, "lb"),
  4191. name: "Side",
  4192. image: {
  4193. source: "./media/characters/xera/side.svg",
  4194. extra: 2345 / 2019,
  4195. bottom: 39.7 / 2384
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(6, "feet"),
  4200. weight: math.unit(175, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/xera/back.svg",
  4204. extra: 2095 / 1984,
  4205. bottom: 67 / 2166
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Small",
  4212. height: math.unit(10, "feet")
  4213. },
  4214. {
  4215. name: "Macro",
  4216. height: math.unit(500, "meters"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Macro+",
  4221. height: math.unit(10, "km")
  4222. },
  4223. {
  4224. name: "Gigamacro",
  4225. height: math.unit(25000, "km")
  4226. },
  4227. {
  4228. name: "Teramacro",
  4229. height: math.unit(3e6, "km")
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(175, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/nebula/front.svg",
  4242. extra: 2566 / 2362,
  4243. bottom: 81 / 2644
  4244. }
  4245. }
  4246. },
  4247. [
  4248. {
  4249. name: "Small",
  4250. height: math.unit(4.5, "meters")
  4251. },
  4252. {
  4253. name: "Macro",
  4254. height: math.unit(1500, "meters"),
  4255. default: true
  4256. },
  4257. {
  4258. name: "Megamacro",
  4259. height: math.unit(150, "km")
  4260. },
  4261. {
  4262. name: "Gigamacro",
  4263. height: math.unit(27000, "km")
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(225, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/abysgar/front.svg"
  4276. }
  4277. }
  4278. },
  4279. [
  4280. {
  4281. name: "Small",
  4282. height: math.unit(4.5, "meters")
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(1250, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "Megamacro",
  4291. height: math.unit(125, "km")
  4292. },
  4293. {
  4294. name: "Gigamacro",
  4295. height: math.unit(26000, "km")
  4296. }
  4297. ]
  4298. ))
  4299. characterMakers.push(() => makeCharacter(
  4300. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4301. {
  4302. front: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(180, "lb"),
  4305. name: "Front",
  4306. image: {
  4307. source: "./media/characters/yakuz/front.svg"
  4308. }
  4309. }
  4310. },
  4311. [
  4312. {
  4313. name: "Small",
  4314. height: math.unit(5, "meters")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(1500, "meters"),
  4319. default: true
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(200, "km")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(100000, "km")
  4328. }
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4333. {
  4334. front: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(175, "lb"),
  4337. name: "Front",
  4338. image: {
  4339. source: "./media/characters/mirova/front.svg",
  4340. extra: 3334 / 3071,
  4341. bottom: 42 / 3375.6
  4342. }
  4343. }
  4344. },
  4345. [
  4346. {
  4347. name: "Small",
  4348. height: math.unit(5, "meters")
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(900, "meters"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Megamacro",
  4357. height: math.unit(135, "km")
  4358. },
  4359. {
  4360. name: "Gigamacro",
  4361. height: math.unit(20000, "km")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4367. {
  4368. side: {
  4369. height: math.unit(28.35, "feet"),
  4370. weight: math.unit(99.75, "tons"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/asana-mech/side.svg",
  4374. extra: 923 / 699,
  4375. bottom: 50 / 975
  4376. }
  4377. },
  4378. chaingun: {
  4379. height: math.unit(7, "feet"),
  4380. weight: math.unit(2400, "lb"),
  4381. name: "Chaingun",
  4382. image: {
  4383. source: "./media/characters/asana-mech/chaingun.svg"
  4384. }
  4385. },
  4386. laser: {
  4387. height: math.unit(7.12, "feet"),
  4388. weight: math.unit(2000, "lb"),
  4389. name: "Laser",
  4390. image: {
  4391. source: "./media/characters/asana-mech/laser.svg"
  4392. }
  4393. },
  4394. },
  4395. [
  4396. {
  4397. name: "Normal",
  4398. height: math.unit(28.35, "feet"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(2500, "feet")
  4404. },
  4405. {
  4406. name: "Megamacro",
  4407. height: math.unit(25, "miles")
  4408. },
  4409. {
  4410. name: "Examacro",
  4411. height: math.unit(6e8, "lightyears")
  4412. },
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(5, "meters"),
  4420. weight: math.unit(1000, "kg"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/asche/front.svg",
  4424. extra: 1258 / 1190,
  4425. bottom: 47 / 1305
  4426. }
  4427. },
  4428. frontUnderwear: {
  4429. height: math.unit(5, "meters"),
  4430. weight: math.unit(1000, "kg"),
  4431. name: "Front (Underwear)",
  4432. image: {
  4433. source: "./media/characters/asche/front-underwear.svg",
  4434. extra: 1258 / 1190,
  4435. bottom: 47 / 1305
  4436. }
  4437. },
  4438. frontDressed: {
  4439. height: math.unit(5, "meters"),
  4440. weight: math.unit(1000, "kg"),
  4441. name: "Front (Dressed)",
  4442. image: {
  4443. source: "./media/characters/asche/front-dressed.svg",
  4444. extra: 1258 / 1190,
  4445. bottom: 47 / 1305
  4446. }
  4447. },
  4448. frontArmor: {
  4449. height: math.unit(5, "meters"),
  4450. weight: math.unit(1000, "kg"),
  4451. name: "Front (Armored)",
  4452. image: {
  4453. source: "./media/characters/asche/front-armored.svg",
  4454. extra: 1374 / 1308,
  4455. bottom: 23 / 1397
  4456. }
  4457. },
  4458. mp724: {
  4459. height: math.unit(0.96, "meters"),
  4460. weight: math.unit(38, "kg"),
  4461. name: "H&K MP724",
  4462. image: {
  4463. source: "./media/characters/asche/h&k-mp724.svg"
  4464. }
  4465. },
  4466. side: {
  4467. height: math.unit(5, "meters"),
  4468. weight: math.unit(1000, "kg"),
  4469. name: "Side",
  4470. image: {
  4471. source: "./media/characters/asche/side.svg",
  4472. extra: 1717 / 1609,
  4473. bottom: 0.005
  4474. }
  4475. },
  4476. back: {
  4477. height: math.unit(5, "meters"),
  4478. weight: math.unit(1000, "kg"),
  4479. name: "Back",
  4480. image: {
  4481. source: "./media/characters/asche/back.svg",
  4482. extra: 1570 / 1501
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "DEFCON 5",
  4489. height: math.unit(5, "meters")
  4490. },
  4491. {
  4492. name: "DEFCON 4",
  4493. height: math.unit(500, "meters"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "DEFCON 3",
  4498. height: math.unit(5, "km")
  4499. },
  4500. {
  4501. name: "DEFCON 2",
  4502. height: math.unit(500, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 1",
  4506. height: math.unit(500000, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 0",
  4510. height: math.unit(3, "gigaparsecs")
  4511. },
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meters"),
  4519. weight: math.unit(76, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/gale/front.svg"
  4523. }
  4524. },
  4525. frontAlt1: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front (Alt 1)",
  4529. image: {
  4530. source: "./media/characters/gale/front-alt-1.svg"
  4531. }
  4532. },
  4533. frontAlt2: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 2)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-2.svg"
  4539. }
  4540. },
  4541. },
  4542. [
  4543. {
  4544. name: "Normal",
  4545. height: math.unit(7, "feet")
  4546. },
  4547. {
  4548. name: "Macro",
  4549. height: math.unit(150, "feet"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Macro+",
  4554. height: math.unit(300, "feet")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(5 + 10/12, "feet"),
  4563. weight: math.unit(67, "kg"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/draylen/front.svg",
  4567. extra: 832/777,
  4568. bottom: 85/917
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(5 + 10/12, "feet")
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(150, "feet"),
  4580. default: true
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(7 + 9 / 12, "feet"),
  4589. weight: math.unit(379, "lbs"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/chez/front.svg"
  4593. }
  4594. },
  4595. side: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/chez/side.svg"
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(7 + 9 / 12, "feet"),
  4608. default: true
  4609. },
  4610. {
  4611. name: "God King",
  4612. height: math.unit(9750000, "meters")
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4618. {
  4619. front: {
  4620. height: math.unit(6, "feet"),
  4621. weight: math.unit(275, "lbs"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/kaylum/front.svg",
  4625. bottom: 0.01,
  4626. extra: 1166 / 1031
  4627. }
  4628. },
  4629. frontWingless: {
  4630. height: math.unit(6, "feet"),
  4631. weight: math.unit(275, "lbs"),
  4632. name: "Front (Wingless)",
  4633. image: {
  4634. source: "./media/characters/kaylum/front-wingless.svg",
  4635. bottom: 0.01,
  4636. extra: 1117 / 1031
  4637. }
  4638. }
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(3.05, "meters")
  4644. },
  4645. {
  4646. name: "Master",
  4647. height: math.unit(5.5, "meters")
  4648. },
  4649. {
  4650. name: "Rampage",
  4651. height: math.unit(19, "meters")
  4652. },
  4653. {
  4654. name: "Macro Lite",
  4655. height: math.unit(37, "meters")
  4656. },
  4657. {
  4658. name: "Hyper Predator",
  4659. height: math.unit(61, "meters")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(138, "meters"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(150, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/geta/front.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Micro",
  4683. height: math.unit(3, "inches"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(5 + 5 / 12, "feet")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(300, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/tyrnn/front.svg"
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Main Height",
  4707. height: math.unit(355, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Fave. Height",
  4712. height: math.unit(2400, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(6, "feet"),
  4721. weight: math.unit(300, "lbs"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/appledectomy/front.svg"
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(2500, "feet")
  4732. },
  4733. {
  4734. name: "Megamacro",
  4735. height: math.unit(50, "miles"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Gigamacro",
  4740. height: math.unit(5000, "miles")
  4741. },
  4742. {
  4743. name: "Teramacro",
  4744. height: math.unit(250000, "miles")
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(200, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/vulpes/front.svg",
  4757. extra: 573 / 543,
  4758. bottom: 0.033
  4759. }
  4760. },
  4761. side: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(200, "lbs"),
  4764. name: "Side",
  4765. image: {
  4766. source: "./media/characters/vulpes/side.svg",
  4767. extra: 577 / 549,
  4768. bottom: 11 / 588
  4769. }
  4770. },
  4771. back: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(200, "lbs"),
  4774. name: "Back",
  4775. image: {
  4776. source: "./media/characters/vulpes/back.svg",
  4777. extra: 573 / 549,
  4778. bottom: 20 / 593
  4779. }
  4780. },
  4781. feet: {
  4782. height: math.unit(1.276, "feet"),
  4783. name: "Feet",
  4784. image: {
  4785. source: "./media/characters/vulpes/feet.svg"
  4786. }
  4787. },
  4788. maw: {
  4789. height: math.unit(1.18, "feet"),
  4790. name: "Maw",
  4791. image: {
  4792. source: "./media/characters/vulpes/maw.svg"
  4793. }
  4794. },
  4795. },
  4796. [
  4797. {
  4798. name: "Micro",
  4799. height: math.unit(2, "inches")
  4800. },
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(6.3, "feet")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(850, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(7500, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(570000, "miles")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(210, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/rain-fallen/front.svg"
  4829. }
  4830. },
  4831. side: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Side",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/side.svg"
  4837. }
  4838. },
  4839. back: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Back",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/back.svg"
  4845. }
  4846. },
  4847. feral: {
  4848. height: math.unit(9, "feet"),
  4849. weight: math.unit(700, "lbs"),
  4850. name: "Feral",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/feral.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Meddling with Mortals",
  4859. height: math.unit(8 + 8/12, "feet")
  4860. },
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(5, "meter")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(150, "meter"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(278e6, "meter")
  4873. },
  4874. {
  4875. name: "Gigamacro",
  4876. height: math.unit(2e9, "meter")
  4877. },
  4878. {
  4879. name: "Teramacro",
  4880. height: math.unit(8e12, "meter")
  4881. },
  4882. {
  4883. name: "Devourer",
  4884. height: math.unit(14, "zettameters")
  4885. },
  4886. {
  4887. name: "Scarlet King",
  4888. height: math.unit(18, "yottameters")
  4889. },
  4890. {
  4891. name: "Void",
  4892. height: math.unit(1e88, "yottameters")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4898. {
  4899. standing: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(180, "lbs"),
  4902. name: "Standing",
  4903. image: {
  4904. source: "./media/characters/zaakira/standing.svg",
  4905. extra: 1599/1504,
  4906. bottom: 39/1638
  4907. }
  4908. },
  4909. laying: {
  4910. height: math.unit(3, "feet"),
  4911. weight: math.unit(180, "lbs"),
  4912. name: "Laying",
  4913. image: {
  4914. source: "./media/characters/zaakira/laying.svg"
  4915. }
  4916. },
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(12, "feet")
  4922. },
  4923. {
  4924. name: "Macro",
  4925. height: math.unit(279, "feet"),
  4926. default: true
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4932. {
  4933. femSfw: {
  4934. height: math.unit(8, "feet"),
  4935. weight: math.unit(350, "lb"),
  4936. name: "Fem",
  4937. image: {
  4938. source: "./media/characters/sigvald/fem-sfw.svg",
  4939. extra: 182 / 164,
  4940. bottom: 8.7 / 190.5
  4941. }
  4942. },
  4943. femNsfw: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(350, "lb"),
  4946. name: "Fem (NSFW)",
  4947. image: {
  4948. source: "./media/characters/sigvald/fem-nsfw.svg",
  4949. extra: 182 / 164,
  4950. bottom: 8.7 / 190.5
  4951. }
  4952. },
  4953. maleNsfw: {
  4954. height: math.unit(8, "feet"),
  4955. weight: math.unit(350, "lb"),
  4956. name: "Male (NSFW)",
  4957. image: {
  4958. source: "./media/characters/sigvald/male-nsfw.svg",
  4959. extra: 182 / 164,
  4960. bottom: 8.7 / 190.5
  4961. }
  4962. },
  4963. hermNsfw: {
  4964. height: math.unit(8, "feet"),
  4965. weight: math.unit(350, "lb"),
  4966. name: "Herm (NSFW)",
  4967. image: {
  4968. source: "./media/characters/sigvald/herm-nsfw.svg",
  4969. extra: 182 / 164,
  4970. bottom: 8.7 / 190.5
  4971. }
  4972. },
  4973. dick: {
  4974. height: math.unit(2.36, "feet"),
  4975. name: "Dick",
  4976. image: {
  4977. source: "./media/characters/sigvald/dick.svg"
  4978. }
  4979. },
  4980. eye: {
  4981. height: math.unit(0.31, "feet"),
  4982. name: "Eye",
  4983. image: {
  4984. source: "./media/characters/sigvald/eye.svg"
  4985. }
  4986. },
  4987. mouth: {
  4988. height: math.unit(0.92, "feet"),
  4989. name: "Mouth",
  4990. image: {
  4991. source: "./media/characters/sigvald/mouth.svg"
  4992. }
  4993. },
  4994. paws: {
  4995. height: math.unit(2.2, "feet"),
  4996. name: "Paws",
  4997. image: {
  4998. source: "./media/characters/sigvald/paws.svg"
  4999. }
  5000. }
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(8, "feet")
  5006. },
  5007. {
  5008. name: "Large",
  5009. height: math.unit(12, "feet")
  5010. },
  5011. {
  5012. name: "Larger",
  5013. height: math.unit(20, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(150, "feet")
  5018. },
  5019. {
  5020. name: "Macro+",
  5021. height: math.unit(200, "feet"),
  5022. default: true
  5023. },
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5028. {
  5029. side: {
  5030. height: math.unit(12, "feet"),
  5031. weight: math.unit(2000, "kg"),
  5032. name: "Side",
  5033. image: {
  5034. source: "./media/characters/scott/side.svg",
  5035. extra: 754 / 724,
  5036. bottom: 0.069
  5037. }
  5038. },
  5039. upright: {
  5040. height: math.unit(12, "feet"),
  5041. weight: math.unit(2000, "kg"),
  5042. name: "Upright",
  5043. image: {
  5044. source: "./media/characters/scott/upright.svg",
  5045. extra: 3881 / 3722,
  5046. bottom: 0.05
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(12, "feet"),
  5054. default: true
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5060. {
  5061. side: {
  5062. height: math.unit(8, "meters"),
  5063. weight: math.unit(84755, "lbs"),
  5064. name: "Side",
  5065. image: {
  5066. source: "./media/characters/tobias/side.svg",
  5067. extra: 1474 / 1096,
  5068. bottom: 38.9 / 1513.1235
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(8, "meters"),
  5076. default: true
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5082. {
  5083. front: {
  5084. height: math.unit(5.5, "feet"),
  5085. weight: math.unit(400, "lbs"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/kieran/front.svg",
  5089. extra: 2694 / 2364,
  5090. bottom: 217 / 2908
  5091. }
  5092. },
  5093. side: {
  5094. height: math.unit(5.5, "feet"),
  5095. weight: math.unit(400, "lbs"),
  5096. name: "Side",
  5097. image: {
  5098. source: "./media/characters/kieran/side.svg",
  5099. extra: 875 / 777,
  5100. bottom: 84.6 / 959
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(5.5, "feet"),
  5108. default: true
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5114. {
  5115. side: {
  5116. height: math.unit(2, "meters"),
  5117. weight: math.unit(70, "kg"),
  5118. name: "Side",
  5119. image: {
  5120. source: "./media/characters/sanya/side.svg",
  5121. bottom: 0.02,
  5122. extra: 1.02
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Small",
  5129. height: math.unit(2, "meters")
  5130. },
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(3, "meters")
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(16, "meters"),
  5138. default: true
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(2, "meters"),
  5147. weight: math.unit(120, "kg"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/miranda/front.svg",
  5151. extra: 195 / 185,
  5152. bottom: 10.9 / 206.5
  5153. }
  5154. },
  5155. back: {
  5156. height: math.unit(2, "meters"),
  5157. weight: math.unit(120, "kg"),
  5158. name: "Back",
  5159. image: {
  5160. source: "./media/characters/miranda/back.svg",
  5161. extra: 201 / 193,
  5162. bottom: 2.3 / 203.7
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(10, "feet"),
  5170. default: true
  5171. }
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "James", species: ["deer"], tags: ["anthro"] },
  5176. {
  5177. side: {
  5178. height: math.unit(2, "meters"),
  5179. weight: math.unit(100, "kg"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/james/front.svg",
  5183. extra: 10 / 8.5
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(8.5, "feet"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5197. {
  5198. side: {
  5199. height: math.unit(9.5, "feet"),
  5200. weight: math.unit(2500, "lbs"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/heather/side.svg"
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(9.5, "feet"),
  5211. default: true
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(6.5, "feet"),
  5220. weight: math.unit(400, "lbs"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/lukas/side.svg",
  5224. extra: 7.25 / 6.5
  5225. }
  5226. },
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(6.5, "feet"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5238. {
  5239. side: {
  5240. height: math.unit(5, "feet"),
  5241. weight: math.unit(3000, "lbs"),
  5242. name: "Side",
  5243. image: {
  5244. source: "./media/characters/louise/side.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Normal",
  5251. height: math.unit(5, "feet"),
  5252. default: true
  5253. }
  5254. ]
  5255. ))
  5256. characterMakers.push(() => makeCharacter(
  5257. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5258. {
  5259. side: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(150, "lbs"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/ramona/side.svg"
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(5.3, "meters"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Macro",
  5276. height: math.unit(20, "stories")
  5277. },
  5278. {
  5279. name: "Macro+",
  5280. height: math.unit(50, "stories")
  5281. },
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5286. {
  5287. standing: {
  5288. height: math.unit(5.75, "feet"),
  5289. weight: math.unit(160, "lbs"),
  5290. name: "Standing",
  5291. image: {
  5292. source: "./media/characters/deerpuff/standing.svg",
  5293. extra: 682 / 624
  5294. }
  5295. },
  5296. sitting: {
  5297. height: math.unit(5.75 / 1.79, "feet"),
  5298. weight: math.unit(160, "lbs"),
  5299. name: "Sitting",
  5300. image: {
  5301. source: "./media/characters/deerpuff/sitting.svg",
  5302. bottom: 44 / 400,
  5303. extra: 1
  5304. }
  5305. },
  5306. taurLaying: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(400, "lbs"),
  5309. name: "Taur (Laying)",
  5310. image: {
  5311. source: "./media/characters/deerpuff/taur-laying.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Puffball",
  5318. height: math.unit(6, "inches")
  5319. },
  5320. {
  5321. name: "Normalpuff",
  5322. height: math.unit(5.75, "feet")
  5323. },
  5324. {
  5325. name: "Macropuff",
  5326. height: math.unit(1500, "feet"),
  5327. default: true
  5328. },
  5329. {
  5330. name: "Megapuff",
  5331. height: math.unit(500, "miles")
  5332. },
  5333. {
  5334. name: "Gigapuff",
  5335. height: math.unit(250000, "miles")
  5336. },
  5337. {
  5338. name: "Omegapuff",
  5339. height: math.unit(1000, "lightyears")
  5340. },
  5341. ]
  5342. ))
  5343. characterMakers.push(() => makeCharacter(
  5344. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5345. {
  5346. stomping: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(170, "lbs"),
  5349. name: "Stomping",
  5350. image: {
  5351. source: "./media/characters/vivian/stomping.svg"
  5352. }
  5353. },
  5354. sitting: {
  5355. height: math.unit(6 / 1.75, "feet"),
  5356. weight: math.unit(170, "lbs"),
  5357. name: "Sitting",
  5358. image: {
  5359. source: "./media/characters/vivian/sitting.svg",
  5360. bottom: 1 / 6.4,
  5361. extra: 1,
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Normal",
  5368. height: math.unit(7, "feet"),
  5369. default: true
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(10, "stories")
  5374. },
  5375. {
  5376. name: "Macro+",
  5377. height: math.unit(30, "stories")
  5378. },
  5379. {
  5380. name: "Megamacro",
  5381. height: math.unit(10, "miles")
  5382. },
  5383. {
  5384. name: "Megamacro+",
  5385. height: math.unit(2750000, "meters")
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(160, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/prince/front.svg",
  5398. extra: 3400 / 3000
  5399. }
  5400. },
  5401. jumping: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(160, "lbs"),
  5404. name: "Jumping",
  5405. image: {
  5406. source: "./media/characters/prince/jump.svg",
  5407. extra: 2555 / 2134
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(7.75, "feet"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Not cute",
  5419. height: math.unit(17, "feet")
  5420. },
  5421. {
  5422. name: "I said NOT",
  5423. height: math.unit(91, "feet")
  5424. },
  5425. {
  5426. name: "Please stop",
  5427. height: math.unit(560, "feet")
  5428. },
  5429. {
  5430. name: "What have you done",
  5431. height: math.unit(2200, "feet")
  5432. },
  5433. {
  5434. name: "Deer God",
  5435. height: math.unit(3.6, "miles")
  5436. },
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5441. {
  5442. standing: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(300, "lbs"),
  5445. name: "Standing",
  5446. image: {
  5447. source: "./media/characters/psymon/standing.svg",
  5448. extra: 1888 / 1810,
  5449. bottom: 0.05
  5450. }
  5451. },
  5452. slithering: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(300, "lbs"),
  5455. name: "Slithering",
  5456. image: {
  5457. source: "./media/characters/psymon/slithering.svg",
  5458. extra: 1330 / 1224
  5459. }
  5460. },
  5461. slitheringAlt: {
  5462. height: math.unit(6, "feet"),
  5463. weight: math.unit(300, "lbs"),
  5464. name: "Slithering (Alt)",
  5465. image: {
  5466. source: "./media/characters/psymon/slithering-alt.svg",
  5467. extra: 1330 / 1224
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(11.25, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Large",
  5479. height: math.unit(27, "feet")
  5480. },
  5481. {
  5482. name: "Giant",
  5483. height: math.unit(87, "feet")
  5484. },
  5485. {
  5486. name: "Macro",
  5487. height: math.unit(365, "feet")
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(3, "miles")
  5492. },
  5493. {
  5494. name: "World Serpent",
  5495. height: math.unit(8000, "miles")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(180, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/daimos/front.svg",
  5508. extra: 4160 / 3897,
  5509. bottom: 0.021
  5510. }
  5511. }
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(8, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Big Dog",
  5521. height: math.unit(22, "feet")
  5522. },
  5523. {
  5524. name: "Macro",
  5525. height: math.unit(127, "feet")
  5526. },
  5527. {
  5528. name: "Megamacro",
  5529. height: math.unit(3600, "feet")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5535. {
  5536. side: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(180, "lbs"),
  5539. name: "Side",
  5540. image: {
  5541. source: "./media/characters/blake/side.svg",
  5542. extra: 1212 / 1120,
  5543. bottom: 0.05
  5544. }
  5545. },
  5546. crouched: {
  5547. height: math.unit(6 * 0.57, "feet"),
  5548. weight: math.unit(180, "lbs"),
  5549. name: "Crouched",
  5550. image: {
  5551. source: "./media/characters/blake/crouched.svg",
  5552. extra: 840 / 587,
  5553. bottom: 0.04
  5554. }
  5555. },
  5556. bent: {
  5557. height: math.unit(6 * 0.75, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Bent",
  5560. image: {
  5561. source: "./media/characters/blake/bent.svg",
  5562. extra: 592 / 544,
  5563. bottom: 0.035
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(8 + 1 / 6, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Big Backside",
  5575. height: math.unit(37, "feet")
  5576. },
  5577. {
  5578. name: "Subway Shredder",
  5579. height: math.unit(72, "feet")
  5580. },
  5581. {
  5582. name: "City Carver",
  5583. height: math.unit(1675, "feet")
  5584. },
  5585. {
  5586. name: "Tectonic Tweaker",
  5587. height: math.unit(2300, "miles")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(180, "lbs"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/guisetto/front.svg",
  5600. extra: 856 / 817,
  5601. bottom: 0.06
  5602. }
  5603. },
  5604. airborne: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Airborne",
  5608. image: {
  5609. source: "./media/characters/guisetto/airborne.svg",
  5610. extra: 584 / 525
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(10 + 11 / 12, "feet"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Large",
  5622. height: math.unit(35, "feet")
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(475, "feet")
  5627. },
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5632. {
  5633. front: {
  5634. height: math.unit(6, "feet"),
  5635. weight: math.unit(180, "lbs"),
  5636. name: "Front",
  5637. image: {
  5638. source: "./media/characters/luxor/front.svg",
  5639. extra: 2940 / 2152
  5640. }
  5641. },
  5642. back: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Back",
  5646. image: {
  5647. source: "./media/characters/luxor/back.svg",
  5648. extra: 1083 / 960
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(5 + 5 / 6, "feet"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Lamp",
  5660. height: math.unit(50, "feet")
  5661. },
  5662. {
  5663. name: "Lämp",
  5664. height: math.unit(300, "feet")
  5665. },
  5666. {
  5667. name: "The sun is a lamp",
  5668. height: math.unit(250000, "miles")
  5669. },
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5674. {
  5675. front: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(50, "lbs"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/huoyan/front.svg"
  5681. }
  5682. },
  5683. side: {
  5684. height: math.unit(6, "feet"),
  5685. weight: math.unit(180, "lbs"),
  5686. name: "Side",
  5687. image: {
  5688. source: "./media/characters/huoyan/side.svg"
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Chef",
  5695. height: math.unit(9, "feet")
  5696. },
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(65, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(780, "feet")
  5705. },
  5706. {
  5707. name: "Flaming Mountain",
  5708. height: math.unit(4.8, "miles")
  5709. },
  5710. {
  5711. name: "Celestial",
  5712. height: math.unit(765000, "miles")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(5 + 3 / 4, "feet"),
  5721. weight: math.unit(120, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/tails/front.svg"
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(5 + 3 / 4, "feet"),
  5732. default: true
  5733. }
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(4, "feet"),
  5741. weight: math.unit(50, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/rainy/front.svg"
  5745. }
  5746. }
  5747. },
  5748. [
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(800, "feet"),
  5752. default: true
  5753. }
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(6, "feet"),
  5761. weight: math.unit(150, "lbs"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/rainier/front.svg"
  5765. }
  5766. }
  5767. },
  5768. [
  5769. {
  5770. name: "Micro",
  5771. height: math.unit(2, "mm"),
  5772. default: true
  5773. }
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(8 + 4/12, "feet"),
  5781. name: "Front",
  5782. image: {
  5783. source: "./media/characters/andy-renard/front.svg",
  5784. extra: 1839/1726,
  5785. bottom: 134/1973
  5786. }
  5787. },
  5788. back: {
  5789. height: math.unit(8 + 4/12, "feet"),
  5790. name: "Back",
  5791. image: {
  5792. source: "./media/characters/andy-renard/back.svg",
  5793. extra: 1838/1710,
  5794. bottom: 105/1943
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Tall",
  5801. height: math.unit(8 + 4/12, "feet")
  5802. },
  5803. {
  5804. name: "Mini Macro",
  5805. height: math.unit(15, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(100, "feet")
  5811. },
  5812. {
  5813. name: "Mega Macro",
  5814. height: math.unit(1000, "feet")
  5815. },
  5816. {
  5817. name: "Giga Macro",
  5818. height: math.unit(10, "miles")
  5819. },
  5820. {
  5821. name: "God Macro",
  5822. height: math.unit(1, "multiverse")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(210, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/cimmaron/front-sfw.svg",
  5835. extra: 701 / 676,
  5836. bottom: 0.046
  5837. }
  5838. },
  5839. back: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Back",
  5843. image: {
  5844. source: "./media/characters/cimmaron/back-sfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. frontNsfw: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Front (NSFW)",
  5853. image: {
  5854. source: "./media/characters/cimmaron/front-nsfw.svg",
  5855. extra: 701 / 676,
  5856. bottom: 0.046
  5857. }
  5858. },
  5859. backNsfw: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(210, "lbs"),
  5862. name: "Back (NSFW)",
  5863. image: {
  5864. source: "./media/characters/cimmaron/back-nsfw.svg",
  5865. extra: 701 / 676,
  5866. bottom: 0.046
  5867. }
  5868. },
  5869. dick: {
  5870. height: math.unit(1.714, "feet"),
  5871. name: "Dick",
  5872. image: {
  5873. source: "./media/characters/cimmaron/dick.svg"
  5874. }
  5875. },
  5876. },
  5877. [
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(6, "feet"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Macro Mayor",
  5885. height: math.unit(350, "meters")
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(200, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/akari/front.svg",
  5898. extra: 962 / 901,
  5899. bottom: 0.04
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Micro",
  5906. height: math.unit(5, "inches"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(7, "feet")
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(140, "lbs"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/cynosura/front.svg",
  5924. extra: 896 / 847
  5925. }
  5926. },
  5927. back: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(140, "lbs"),
  5930. name: "Back",
  5931. image: {
  5932. source: "./media/characters/cynosura/back.svg",
  5933. extra: 1365 / 1250
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Micro",
  5940. height: math.unit(4, "inches")
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5.75, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Tall",
  5949. height: math.unit(10, "feet")
  5950. },
  5951. {
  5952. name: "Big",
  5953. height: math.unit(20, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(50, "feet")
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(13 + 2/12, "feet"),
  5966. weight: math.unit(800, "kg"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/gin/front.svg",
  5970. extra: 1312/1191,
  5971. bottom: 45/1357
  5972. }
  5973. },
  5974. mouth: {
  5975. height: math.unit(2.39 * 1.8, "feet"),
  5976. name: "Mouth",
  5977. image: {
  5978. source: "./media/characters/gin/mouth.svg"
  5979. }
  5980. },
  5981. hand: {
  5982. height: math.unit(1.57 * 2.19, "feet"),
  5983. name: "Hand",
  5984. image: {
  5985. source: "./media/characters/gin/hand.svg"
  5986. }
  5987. },
  5988. foot: {
  5989. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5990. name: "Foot",
  5991. image: {
  5992. source: "./media/characters/gin/foot.svg"
  5993. }
  5994. },
  5995. sole: {
  5996. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5997. name: "Sole",
  5998. image: {
  5999. source: "./media/characters/gin/sole.svg"
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Very Small",
  6006. height: math.unit(13 + 2 / 12, "feet")
  6007. },
  6008. {
  6009. name: "Micro",
  6010. height: math.unit(600, "miles")
  6011. },
  6012. {
  6013. name: "Regular",
  6014. height: math.unit(20, "earths"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(2.2, "solarradii")
  6020. },
  6021. {
  6022. name: "Teramacro",
  6023. height: math.unit(1.2, "galaxies")
  6024. },
  6025. {
  6026. name: "Omegamacro",
  6027. height: math.unit(200, "universes")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6 + 1 / 6, "feet"),
  6036. weight: math.unit(178, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/guy/front.svg"
  6040. }
  6041. }
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(6 + 1 / 6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Large",
  6051. height: math.unit(25 + 7 / 12, "feet")
  6052. },
  6053. {
  6054. name: "Macro",
  6055. height: math.unit(60 + 9 / 12, "feet")
  6056. },
  6057. {
  6058. name: "Macro+",
  6059. height: math.unit(246, "feet")
  6060. },
  6061. {
  6062. name: "Macro++",
  6063. height: math.unit(878, "feet")
  6064. }
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(9, "feet"),
  6072. weight: math.unit(800, "lbs"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/tiberius/front.svg",
  6076. extra: 2295 / 2071
  6077. }
  6078. },
  6079. back: {
  6080. height: math.unit(9, "feet"),
  6081. weight: math.unit(800, "lbs"),
  6082. name: "Back",
  6083. image: {
  6084. source: "./media/characters/tiberius/back.svg",
  6085. extra: 2373 / 2160
  6086. }
  6087. },
  6088. },
  6089. [
  6090. {
  6091. name: "Normal",
  6092. height: math.unit(9, "feet"),
  6093. default: true
  6094. }
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6099. {
  6100. front: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(600, "lbs"),
  6103. name: "Front",
  6104. image: {
  6105. source: "./media/characters/surgo/front.svg",
  6106. extra: 3591 / 2227
  6107. }
  6108. },
  6109. back: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(600, "lbs"),
  6112. name: "Back",
  6113. image: {
  6114. source: "./media/characters/surgo/back.svg",
  6115. extra: 3557 / 2228
  6116. }
  6117. },
  6118. laying: {
  6119. height: math.unit(6 * 0.85, "feet"),
  6120. weight: math.unit(600, "lbs"),
  6121. name: "Laying",
  6122. image: {
  6123. source: "./media/characters/surgo/laying.svg"
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(6, "feet"),
  6131. default: true
  6132. }
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6137. {
  6138. side: {
  6139. height: math.unit(6, "feet"),
  6140. weight: math.unit(150, "lbs"),
  6141. name: "Side",
  6142. image: {
  6143. source: "./media/characters/cibus/side.svg",
  6144. extra: 800 / 400
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(6, "feet"),
  6152. default: true
  6153. }
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(240, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/nibbles/front.svg"
  6165. }
  6166. },
  6167. side: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(240, "lbs"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/nibbles/side.svg"
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(9, "feet"),
  6180. default: true
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6186. {
  6187. side: {
  6188. height: math.unit(5 + 1 / 6, "feet"),
  6189. weight: math.unit(130, "lbs"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/rikky/side.svg",
  6193. extra: 851 / 801
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(5 + 1 / 6, "feet")
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(152, "feet"),
  6205. default: true
  6206. },
  6207. {
  6208. name: "Megamacro",
  6209. height: math.unit(7, "miles")
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6215. {
  6216. side: {
  6217. height: math.unit(370, "cm"),
  6218. weight: math.unit(350, "lbs"),
  6219. name: "Side",
  6220. image: {
  6221. source: "./media/characters/malfressa/side.svg"
  6222. }
  6223. },
  6224. walking: {
  6225. height: math.unit(370, "cm"),
  6226. weight: math.unit(350, "lbs"),
  6227. name: "Walking",
  6228. image: {
  6229. source: "./media/characters/malfressa/walking.svg"
  6230. }
  6231. },
  6232. feral: {
  6233. height: math.unit(2500, "cm"),
  6234. weight: math.unit(100000, "lbs"),
  6235. name: "Feral",
  6236. image: {
  6237. source: "./media/characters/malfressa/feral.svg",
  6238. extra: 2108 / 837,
  6239. bottom: 0.02
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(370, "cm")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(300, "meters"),
  6251. default: true
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6257. {
  6258. front: {
  6259. height: math.unit(6, "feet"),
  6260. weight: math.unit(60, "kg"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/jaro/front.svg"
  6264. }
  6265. },
  6266. back: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(60, "kg"),
  6269. name: "Back",
  6270. image: {
  6271. source: "./media/characters/jaro/back.svg"
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Micro",
  6278. height: math.unit(7, "inches")
  6279. },
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(5.5, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Minimacro",
  6287. height: math.unit(20, "feet")
  6288. },
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(200, "meters")
  6292. }
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(195, "lb"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/rogue/front.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(90, "feet"),
  6311. default: true
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(5 + 8 / 12, "feet"),
  6320. weight: math.unit(140, "lb"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/piper/front.svg",
  6324. extra: 3948/3655,
  6325. bottom: 0/3948
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Micro",
  6332. height: math.unit(2, "inches")
  6333. },
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(5 + 8 / 12, "feet")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(250, "feet"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Megamacro",
  6345. height: math.unit(7, "miles")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(220, "lb"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/gemini/front.svg"
  6358. }
  6359. },
  6360. back: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(220, "lb"),
  6363. name: "Back",
  6364. image: {
  6365. source: "./media/characters/gemini/back.svg"
  6366. }
  6367. },
  6368. kneeling: {
  6369. height: math.unit(6 / 1.5, "feet"),
  6370. weight: math.unit(220, "lb"),
  6371. name: "Kneeling",
  6372. image: {
  6373. source: "./media/characters/gemini/kneeling.svg",
  6374. bottom: 0.02
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(300, "meters"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(6900, "meters")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6392. {
  6393. anthro: {
  6394. height: math.unit(2.35, "meters"),
  6395. weight: math.unit(73, "kg"),
  6396. name: "Anthro",
  6397. image: {
  6398. source: "./media/characters/alicia/anthro.svg",
  6399. extra: 2571 / 2385,
  6400. bottom: 75 / 2648
  6401. }
  6402. },
  6403. paw: {
  6404. height: math.unit(1.32, "feet"),
  6405. name: "Paw",
  6406. image: {
  6407. source: "./media/characters/alicia/paw.svg"
  6408. }
  6409. },
  6410. feral: {
  6411. height: math.unit(1.69, "meters"),
  6412. weight: math.unit(73, "kg"),
  6413. name: "Feral",
  6414. image: {
  6415. source: "./media/characters/alicia/feral.svg",
  6416. extra: 2123 / 1715,
  6417. bottom: 222 / 2349
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(2.35, "meters")
  6425. },
  6426. {
  6427. name: "Macro",
  6428. height: math.unit(60, "meters"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Megamacro",
  6433. height: math.unit(10000, "kilometers")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(7, "feet"),
  6442. weight: math.unit(250, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/archy/front.svg"
  6446. }
  6447. }
  6448. },
  6449. [
  6450. {
  6451. name: "Micro",
  6452. height: math.unit(1, "inch")
  6453. },
  6454. {
  6455. name: "Shorty",
  6456. height: math.unit(5, "feet")
  6457. },
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(7, "feet")
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(600, "meters"),
  6465. default: true
  6466. },
  6467. {
  6468. name: "Megamacro",
  6469. height: math.unit(1, "mile")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6475. {
  6476. front: {
  6477. height: math.unit(1.65, "meters"),
  6478. weight: math.unit(74, "kg"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/berri/front.svg",
  6482. extra: 857 / 837,
  6483. bottom: 18 / 877
  6484. }
  6485. },
  6486. bum: {
  6487. height: math.unit(1.46, "feet"),
  6488. name: "Bum",
  6489. image: {
  6490. source: "./media/characters/berri/bum.svg"
  6491. }
  6492. },
  6493. mouth: {
  6494. height: math.unit(0.44, "feet"),
  6495. name: "Mouth",
  6496. image: {
  6497. source: "./media/characters/berri/mouth.svg"
  6498. }
  6499. },
  6500. paw: {
  6501. height: math.unit(0.826, "feet"),
  6502. name: "Paw",
  6503. image: {
  6504. source: "./media/characters/berri/paw.svg"
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Normal",
  6511. height: math.unit(1.65, "meters")
  6512. },
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(60, "m"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Megamacro",
  6520. height: math.unit(9.213, "km")
  6521. },
  6522. {
  6523. name: "Planet Eater",
  6524. height: math.unit(489, "megameters")
  6525. },
  6526. {
  6527. name: "Teramacro",
  6528. height: math.unit(2471635000000, "meters")
  6529. },
  6530. {
  6531. name: "Examacro",
  6532. height: math.unit(8.0624e+26, "meters")
  6533. }
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(1.72, "meters"),
  6541. weight: math.unit(68, "kg"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/lexi/front.svg"
  6545. }
  6546. }
  6547. },
  6548. [
  6549. {
  6550. name: "Very Smol",
  6551. height: math.unit(10, "mm")
  6552. },
  6553. {
  6554. name: "Micro",
  6555. height: math.unit(6.8, "cm"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(1.72, "m")
  6561. }
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6566. {
  6567. front: {
  6568. height: math.unit(1.69, "meters"),
  6569. weight: math.unit(68, "kg"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/martin/front.svg",
  6573. extra: 596 / 581
  6574. }
  6575. }
  6576. },
  6577. [
  6578. {
  6579. name: "Micro",
  6580. height: math.unit(6.85, "cm"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(1.69, "m")
  6586. }
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(1.69, "meters"),
  6594. weight: math.unit(68, "kg"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/juno/front.svg"
  6598. }
  6599. }
  6600. },
  6601. [
  6602. {
  6603. name: "Micro",
  6604. height: math.unit(7, "cm")
  6605. },
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(1.89, "m")
  6609. },
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(353, "meters"),
  6613. default: true
  6614. }
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(1.93, "meters"),
  6622. weight: math.unit(83, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/samantha/front.svg"
  6626. }
  6627. },
  6628. frontClothed: {
  6629. height: math.unit(1.93, "meters"),
  6630. weight: math.unit(83, "kg"),
  6631. name: "Front (Clothed)",
  6632. image: {
  6633. source: "./media/characters/samantha/front-clothed.svg"
  6634. }
  6635. },
  6636. back: {
  6637. height: math.unit(1.93, "meters"),
  6638. weight: math.unit(83, "kg"),
  6639. name: "Back",
  6640. image: {
  6641. source: "./media/characters/samantha/back.svg"
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(1.93, "m")
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(74, "meters"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Macro+",
  6657. height: math.unit(223, "meters"),
  6658. },
  6659. {
  6660. name: "Megamacro",
  6661. height: math.unit(8381, "meters"),
  6662. },
  6663. {
  6664. name: "Megamacro+",
  6665. height: math.unit(12000, "kilometers")
  6666. },
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(1.92, "meters"),
  6674. weight: math.unit(80, "kg"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/dr-clay/front.svg"
  6678. }
  6679. },
  6680. frontClothed: {
  6681. height: math.unit(1.92, "meters"),
  6682. weight: math.unit(80, "kg"),
  6683. name: "Front (Clothed)",
  6684. image: {
  6685. source: "./media/characters/dr-clay/front-clothed.svg"
  6686. }
  6687. }
  6688. },
  6689. [
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(1.92, "m")
  6693. },
  6694. {
  6695. name: "Macro",
  6696. height: math.unit(214, "meters"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Macro+",
  6701. height: math.unit(12.237, "meters"),
  6702. },
  6703. {
  6704. name: "Megamacro",
  6705. height: math.unit(557, "megameters"),
  6706. },
  6707. {
  6708. name: "Unimaginable",
  6709. height: math.unit(120e9, "lightyears")
  6710. },
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6715. {
  6716. front: {
  6717. height: math.unit(2, "meters"),
  6718. weight: math.unit(80, "kg"),
  6719. name: "Front",
  6720. image: {
  6721. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6722. }
  6723. }
  6724. },
  6725. [
  6726. {
  6727. name: "Teramacro",
  6728. height: math.unit(500000, "lightyears"),
  6729. default: true
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6735. {
  6736. crux: {
  6737. height: math.unit(2, "meters"),
  6738. weight: math.unit(150, "kg"),
  6739. name: "Crux",
  6740. image: {
  6741. source: "./media/characters/vemus/crux.svg",
  6742. extra: 1074/936,
  6743. bottom: 23/1097
  6744. }
  6745. },
  6746. skunkTanuki: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Skunk-Tanuki",
  6750. image: {
  6751. source: "./media/characters/vemus/skunk-tanuki.svg",
  6752. extra: 926/893,
  6753. bottom: 20/946
  6754. }
  6755. },
  6756. },
  6757. [
  6758. {
  6759. name: "Normal",
  6760. height: math.unit(3.75, "meters"),
  6761. default: true
  6762. },
  6763. {
  6764. name: "Big",
  6765. height: math.unit(8, "meters")
  6766. },
  6767. {
  6768. name: "Macro",
  6769. height: math.unit(100, "meters")
  6770. },
  6771. {
  6772. name: "Macro+",
  6773. height: math.unit(1500, "meters")
  6774. },
  6775. {
  6776. name: "Stellar",
  6777. height: math.unit(14e8, "meters")
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6783. {
  6784. front: {
  6785. height: math.unit(2, "meters"),
  6786. weight: math.unit(70, "kg"),
  6787. name: "Front",
  6788. image: {
  6789. source: "./media/characters/beherit/front.svg",
  6790. extra: 1408 / 1242
  6791. }
  6792. }
  6793. },
  6794. [
  6795. {
  6796. name: "Normal",
  6797. height: math.unit(6, "feet")
  6798. },
  6799. {
  6800. name: "Lorg",
  6801. height: math.unit(25, "feet"),
  6802. default: true
  6803. },
  6804. {
  6805. name: "Lorger",
  6806. height: math.unit(75, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(200, "meters")
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(2, "meters"),
  6819. weight: math.unit(150, "kg"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/everett/front.svg",
  6823. extra: 2038 / 1737,
  6824. bottom: 0.03
  6825. }
  6826. },
  6827. paw: {
  6828. height: math.unit(2 / 3.6, "meters"),
  6829. name: "Paw",
  6830. image: {
  6831. source: "./media/characters/everett/paw.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(15, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Lorg",
  6843. height: math.unit(70, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Lorger",
  6848. height: math.unit(250, "feet")
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(500, "meters")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(2, "meters"),
  6861. weight: math.unit(86, "kg"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/rose/front.svg",
  6865. extra: 1785/1636,
  6866. bottom: 30/1815
  6867. }
  6868. },
  6869. frontSporty: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86, "kg"),
  6872. name: "Front (Sporty)",
  6873. image: {
  6874. source: "./media/characters/rose/front-sporty.svg",
  6875. extra: 350/335,
  6876. bottom: 10/360
  6877. }
  6878. },
  6879. frontAlt: {
  6880. height: math.unit(1.6, "meters"),
  6881. weight: math.unit(86, "kg"),
  6882. name: "Front (Alt)",
  6883. image: {
  6884. source: "./media/characters/rose/front-alt.svg",
  6885. extra: 299/283,
  6886. bottom: 3/302
  6887. }
  6888. },
  6889. plush: {
  6890. height: math.unit(2, "meters"),
  6891. weight: math.unit(86/3, "kg"),
  6892. name: "Plush",
  6893. image: {
  6894. source: "./media/characters/rose/plush.svg",
  6895. extra: 361/337,
  6896. bottom: 11/372
  6897. }
  6898. },
  6899. },
  6900. [
  6901. {
  6902. name: "True Micro",
  6903. height: math.unit(9, "cm")
  6904. },
  6905. {
  6906. name: "Micro",
  6907. height: math.unit(16, "cm")
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(1.85, "meters"),
  6912. default: true
  6913. },
  6914. {
  6915. name: "Mini-Macro",
  6916. height: math.unit(5, "meters")
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(15, "meters")
  6921. },
  6922. {
  6923. name: "True Macro",
  6924. height: math.unit(40, "meters")
  6925. },
  6926. {
  6927. name: "City Scale",
  6928. height: math.unit(1, "km")
  6929. },
  6930. ]
  6931. ))
  6932. characterMakers.push(() => makeCharacter(
  6933. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6934. {
  6935. front: {
  6936. height: math.unit(2, "meters"),
  6937. weight: math.unit(350, "lbs"),
  6938. name: "Front",
  6939. image: {
  6940. source: "./media/characters/regal/front.svg"
  6941. }
  6942. },
  6943. back: {
  6944. height: math.unit(2, "meters"),
  6945. weight: math.unit(350, "lbs"),
  6946. name: "Back",
  6947. image: {
  6948. source: "./media/characters/regal/back.svg"
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(350, "feet"),
  6956. default: true
  6957. }
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(4 + 11 / 12, "feet"),
  6965. weight: math.unit(100, "lbs"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/opal/front.svg"
  6969. }
  6970. },
  6971. frontAlt: {
  6972. height: math.unit(4 + 11 / 12, "feet"),
  6973. weight: math.unit(100, "lbs"),
  6974. name: "Front (Alt)",
  6975. image: {
  6976. source: "./media/characters/opal/front-alt.svg"
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Small",
  6983. height: math.unit(4 + 11 / 12, "feet")
  6984. },
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(20, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(120, "feet")
  6993. },
  6994. {
  6995. name: "Megamacro",
  6996. height: math.unit(80, "miles")
  6997. },
  6998. {
  6999. name: "True Size",
  7000. height: math.unit(100000, "lightyears")
  7001. },
  7002. ]
  7003. ))
  7004. characterMakers.push(() => makeCharacter(
  7005. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7006. {
  7007. front: {
  7008. height: math.unit(6, "feet"),
  7009. weight: math.unit(200, "lbs"),
  7010. name: "Front",
  7011. image: {
  7012. source: "./media/characters/vector-wuff/front.svg"
  7013. }
  7014. }
  7015. },
  7016. [
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(2.8, "meters")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(450, "meters"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Megamacro",
  7028. height: math.unit(15, "kilometers")
  7029. }
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(256, "lbs"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/dannik/front.svg"
  7041. }
  7042. }
  7043. },
  7044. [
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(69.57, "meters"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7054. {
  7055. front: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(120, "lbs"),
  7058. name: "Front",
  7059. image: {
  7060. source: "./media/characters/azura-saharah/front.svg"
  7061. }
  7062. },
  7063. back: {
  7064. height: math.unit(6, "feet"),
  7065. weight: math.unit(120, "lbs"),
  7066. name: "Back",
  7067. image: {
  7068. source: "./media/characters/azura-saharah/back.svg"
  7069. }
  7070. },
  7071. },
  7072. [
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(100, "feet"),
  7076. default: true
  7077. },
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7082. {
  7083. side: {
  7084. height: math.unit(5 + 4 / 12, "feet"),
  7085. weight: math.unit(163, "lbs"),
  7086. name: "Side",
  7087. image: {
  7088. source: "./media/characters/kennedy/side.svg"
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Standard Doggo",
  7095. height: math.unit(5 + 4 / 12, "feet")
  7096. },
  7097. {
  7098. name: "Big Doggo",
  7099. height: math.unit(25 + 3 / 12, "feet"),
  7100. default: true
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(90, "lbs"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/odi-lunar/front.svg"
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Micro",
  7119. height: math.unit(3, "inches"),
  7120. default: true
  7121. },
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(5.5, "feet")
  7125. }
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7130. {
  7131. back: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(220, "lbs"),
  7134. name: "Back",
  7135. image: {
  7136. source: "./media/characters/mandake/back.svg"
  7137. }
  7138. }
  7139. },
  7140. [
  7141. {
  7142. name: "Normal",
  7143. height: math.unit(7, "feet"),
  7144. default: true
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(78, "feet")
  7149. },
  7150. {
  7151. name: "Macro+",
  7152. height: math.unit(300, "meters")
  7153. },
  7154. {
  7155. name: "Macro++",
  7156. height: math.unit(2400, "feet")
  7157. },
  7158. {
  7159. name: "Megamacro",
  7160. height: math.unit(5167, "meters")
  7161. },
  7162. {
  7163. name: "Gigamacro",
  7164. height: math.unit(41769, "miles")
  7165. },
  7166. ]
  7167. ))
  7168. characterMakers.push(() => makeCharacter(
  7169. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7170. {
  7171. front: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(120, "lbs"),
  7174. name: "Front",
  7175. image: {
  7176. source: "./media/characters/yozey/front.svg"
  7177. }
  7178. },
  7179. frontAlt: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(120, "lbs"),
  7182. name: "Front (Alt)",
  7183. image: {
  7184. source: "./media/characters/yozey/front-alt.svg"
  7185. }
  7186. },
  7187. side: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lbs"),
  7190. name: "Side",
  7191. image: {
  7192. source: "./media/characters/yozey/side.svg"
  7193. }
  7194. },
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(3, "inches"),
  7200. default: true
  7201. },
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(6, "feet")
  7205. }
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7210. {
  7211. front: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(103, "lbs"),
  7214. name: "Front",
  7215. image: {
  7216. source: "./media/characters/valeska-voss/front.svg"
  7217. }
  7218. }
  7219. },
  7220. [
  7221. {
  7222. name: "Mini-Sized Sub",
  7223. height: math.unit(3.1, "inches")
  7224. },
  7225. {
  7226. name: "Mid-Sized Sub",
  7227. height: math.unit(6.2, "inches")
  7228. },
  7229. {
  7230. name: "Full-Sized Sub",
  7231. height: math.unit(9.3, "inches")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(5 + 2 / 12, "foot"),
  7236. default: true
  7237. },
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(160, "lbs"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/gene-zeta/front.svg",
  7249. extra: 3006 / 2826,
  7250. bottom: 182 / 3188
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Micro",
  7257. height: math.unit(6, "inches")
  7258. },
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(5 + 11 / 12, "foot"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(140, "feet")
  7267. },
  7268. {
  7269. name: "Supercharged",
  7270. height: math.unit(2500, "feet")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(350, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/razinox/front.svg",
  7283. extra: 1686 / 1548,
  7284. bottom: 28.2 / 1868
  7285. }
  7286. },
  7287. back: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(350, "lbs"),
  7290. name: "Back",
  7291. image: {
  7292. source: "./media/characters/razinox/back.svg",
  7293. extra: 1660 / 1590,
  7294. bottom: 15 / 1665
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(10 + 8 / 12, "foot")
  7302. },
  7303. {
  7304. name: "Minimacro",
  7305. height: math.unit(15, "foot")
  7306. },
  7307. {
  7308. name: "Macro",
  7309. height: math.unit(60, "foot"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Megamacro",
  7314. height: math.unit(5, "miles")
  7315. },
  7316. {
  7317. name: "Gigamacro",
  7318. height: math.unit(6000, "miles")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(150, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/cobalt/front.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(8 + 1 / 12, "foot")
  7338. },
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(111, "foot"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Supracosmic",
  7346. height: math.unit(1e42, "feet")
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(140, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/amanda/front.svg"
  7359. }
  7360. }
  7361. },
  7362. [
  7363. {
  7364. name: "Micro",
  7365. height: math.unit(5, "inches"),
  7366. default: true
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(2.75, "meters"),
  7375. weight: math.unit(1200, "lb"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/teal/front.svg",
  7379. extra: 2463 / 2320,
  7380. bottom: 166 / 2629
  7381. }
  7382. },
  7383. back: {
  7384. height: math.unit(2.75, "meters"),
  7385. weight: math.unit(1200, "lb"),
  7386. name: "Back",
  7387. image: {
  7388. source: "./media/characters/teal/back.svg",
  7389. extra: 2580 / 2489,
  7390. bottom: 151 / 2731
  7391. }
  7392. },
  7393. sitting: {
  7394. height: math.unit(1.9, "meters"),
  7395. weight: math.unit(1200, "lb"),
  7396. name: "Sitting",
  7397. image: {
  7398. source: "./media/characters/teal/sitting.svg",
  7399. extra: 623 / 590,
  7400. bottom: 121 / 744
  7401. }
  7402. },
  7403. standing: {
  7404. height: math.unit(2.75, "meters"),
  7405. weight: math.unit(1200, "lb"),
  7406. name: "Standing",
  7407. image: {
  7408. source: "./media/characters/teal/standing.svg",
  7409. extra: 923 / 893,
  7410. bottom: 60 / 983
  7411. }
  7412. },
  7413. stretching: {
  7414. height: math.unit(3.65, "meters"),
  7415. weight: math.unit(1200, "lb"),
  7416. name: "Stretching",
  7417. image: {
  7418. source: "./media/characters/teal/stretching.svg",
  7419. extra: 1276 / 1244,
  7420. bottom: 0 / 1276
  7421. }
  7422. },
  7423. legged: {
  7424. height: math.unit(1.3, "meters"),
  7425. weight: math.unit(100, "lb"),
  7426. name: "Legged",
  7427. image: {
  7428. source: "./media/characters/teal/legged.svg",
  7429. extra: 462 / 437,
  7430. bottom: 24 / 486
  7431. }
  7432. },
  7433. naga: {
  7434. height: math.unit(5.4, "meters"),
  7435. weight: math.unit(4000, "lb"),
  7436. name: "Naga",
  7437. image: {
  7438. source: "./media/characters/teal/naga.svg",
  7439. extra: 1902 / 1858,
  7440. bottom: 0 / 1902
  7441. }
  7442. },
  7443. hand: {
  7444. height: math.unit(0.52, "meters"),
  7445. name: "Hand",
  7446. image: {
  7447. source: "./media/characters/teal/hand.svg"
  7448. }
  7449. },
  7450. maw: {
  7451. height: math.unit(0.43, "meters"),
  7452. name: "Maw",
  7453. image: {
  7454. source: "./media/characters/teal/maw.svg"
  7455. }
  7456. },
  7457. slit: {
  7458. height: math.unit(0.25, "meters"),
  7459. name: "Slit",
  7460. image: {
  7461. source: "./media/characters/teal/slit.svg"
  7462. }
  7463. },
  7464. },
  7465. [
  7466. {
  7467. name: "Normal",
  7468. height: math.unit(2.75, "meters"),
  7469. default: true
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(300, "feet")
  7474. },
  7475. {
  7476. name: "Macro+",
  7477. height: math.unit(2000, "feet")
  7478. },
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7483. {
  7484. frontCat: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(180, "lbs"),
  7487. name: "Front (Cat)",
  7488. image: {
  7489. source: "./media/characters/ravin-amulet/front-cat.svg"
  7490. }
  7491. },
  7492. frontCatAlt: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(180, "lbs"),
  7495. name: "Front (Alt, Cat)",
  7496. image: {
  7497. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7498. }
  7499. },
  7500. frontWerewolf: {
  7501. height: math.unit(6 * 1.2, "feet"),
  7502. weight: math.unit(225, "lbs"),
  7503. name: "Front (Werewolf)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7506. }
  7507. },
  7508. backWerewolf: {
  7509. height: math.unit(6 * 1.2, "feet"),
  7510. weight: math.unit(225, "lbs"),
  7511. name: "Back (Werewolf)",
  7512. image: {
  7513. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7514. }
  7515. },
  7516. },
  7517. [
  7518. {
  7519. name: "Nano",
  7520. height: math.unit(1, "micrometer")
  7521. },
  7522. {
  7523. name: "Micro",
  7524. height: math.unit(1, "inch")
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(6, "feet"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(60, "feet")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(165, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/fluoresce/front.svg"
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(6, "cm")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 7 / 12, "feet"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(56, "feet")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(1.9, "miles")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(9 + 6 / 12, "feet"),
  7574. weight: math.unit(523, "lbs"),
  7575. name: "Side",
  7576. image: {
  7577. source: "./media/characters/aurora/side.svg"
  7578. }
  7579. }
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(9 + 6 / 12, "feet")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(96, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro+",
  7593. height: math.unit(243, "feet")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(194, "cm"),
  7602. weight: math.unit(90, "kg"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/ranek/front.svg"
  7606. }
  7607. },
  7608. side: {
  7609. height: math.unit(194, "cm"),
  7610. weight: math.unit(90, "kg"),
  7611. name: "Side",
  7612. image: {
  7613. source: "./media/characters/ranek/side.svg"
  7614. }
  7615. },
  7616. back: {
  7617. height: math.unit(194, "cm"),
  7618. weight: math.unit(90, "kg"),
  7619. name: "Back",
  7620. image: {
  7621. source: "./media/characters/ranek/back.svg"
  7622. }
  7623. },
  7624. feral: {
  7625. height: math.unit(30, "cm"),
  7626. weight: math.unit(1.6, "lbs"),
  7627. name: "Feral",
  7628. image: {
  7629. source: "./media/characters/ranek/feral.svg"
  7630. }
  7631. },
  7632. },
  7633. [
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(194, "cm"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(100, "meters")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(5 + 6 / 12, "feet"),
  7650. weight: math.unit(153, "lbs"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/andrew-cooper/front.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Nano",
  7660. height: math.unit(1, "mm")
  7661. },
  7662. {
  7663. name: "Micro",
  7664. height: math.unit(2, "inches")
  7665. },
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(5 + 6 / 12, "feet"),
  7669. default: true
  7670. }
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(180, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/akane-sato/front.svg",
  7682. extra: 1219 / 1140
  7683. }
  7684. },
  7685. back: {
  7686. height: math.unit(6, "feet"),
  7687. weight: math.unit(180, "lbs"),
  7688. name: "Back",
  7689. image: {
  7690. source: "./media/characters/akane-sato/back.svg",
  7691. extra: 1219 / 1170
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(2.5, "meters")
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(250, "meters"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Megamacro",
  7707. height: math.unit(25, "km")
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(65, "kg"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/rook/front.svg",
  7720. extra: 960 / 950
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(8.8, "feet")
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(88, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Megamacro",
  7736. height: math.unit(8, "miles")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(12 + 2 / 12, "feet"),
  7745. weight: math.unit(808, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/prodigy/front.svg"
  7749. }
  7750. }
  7751. },
  7752. [
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(12 + 2 / 12, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(143, "feet")
  7761. },
  7762. {
  7763. name: "Macro+",
  7764. height: math.unit(400, "feet")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(225, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/daniel/front.svg"
  7777. }
  7778. },
  7779. leaning: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(225, "lbs"),
  7782. name: "Leaning",
  7783. image: {
  7784. source: "./media/characters/daniel/leaning.svg"
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(1000, "feet"),
  7792. default: true
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(88, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/chiros/front.svg",
  7805. extra: 306 / 226
  7806. }
  7807. },
  7808. side: {
  7809. height: math.unit(6, "feet"),
  7810. weight: math.unit(88, "lbs"),
  7811. name: "Side",
  7812. image: {
  7813. source: "./media/characters/chiros/side.svg",
  7814. extra: 306 / 226
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(6, "cm"),
  7822. default: true
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7828. {
  7829. front: {
  7830. height: math.unit(6, "feet"),
  7831. weight: math.unit(100, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/selka/front.svg",
  7835. extra: 947 / 887
  7836. }
  7837. }
  7838. },
  7839. [
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(5, "cm"),
  7843. default: true
  7844. },
  7845. ]
  7846. ))
  7847. characterMakers.push(() => makeCharacter(
  7848. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7849. {
  7850. front: {
  7851. height: math.unit(8 + 3 / 12, "feet"),
  7852. weight: math.unit(424, "lbs"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/verin/front.svg",
  7856. extra: 1845 / 1550
  7857. }
  7858. },
  7859. frontArmored: {
  7860. height: math.unit(8 + 3 / 12, "feet"),
  7861. weight: math.unit(424, "lbs"),
  7862. name: "Front (Armored)",
  7863. image: {
  7864. source: "./media/characters/verin/front-armor.svg",
  7865. extra: 1845 / 1550,
  7866. bottom: 0.01
  7867. }
  7868. },
  7869. back: {
  7870. height: math.unit(8 + 3 / 12, "feet"),
  7871. weight: math.unit(424, "lbs"),
  7872. name: "Back",
  7873. image: {
  7874. source: "./media/characters/verin/back.svg",
  7875. bottom: 0.1,
  7876. extra: 1
  7877. }
  7878. },
  7879. foot: {
  7880. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7881. name: "Foot",
  7882. image: {
  7883. source: "./media/characters/verin/foot.svg"
  7884. }
  7885. },
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(8 + 3 / 12, "feet")
  7891. },
  7892. {
  7893. name: "Minimacro",
  7894. height: math.unit(21, "feet"),
  7895. default: true
  7896. },
  7897. {
  7898. name: "Macro",
  7899. height: math.unit(626, "feet")
  7900. },
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7905. {
  7906. front: {
  7907. height: math.unit(2.718, "meters"),
  7908. weight: math.unit(150, "lbs"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/sovrim-terraquian/front.svg"
  7912. }
  7913. },
  7914. back: {
  7915. height: math.unit(2.718, "meters"),
  7916. weight: math.unit(150, "lbs"),
  7917. name: "Back",
  7918. image: {
  7919. source: "./media/characters/sovrim-terraquian/back.svg"
  7920. }
  7921. }
  7922. },
  7923. [
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(2, "inches")
  7927. },
  7928. {
  7929. name: "Small",
  7930. height: math.unit(1, "meter")
  7931. },
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(Math.E, "meters"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(20, "meters")
  7940. },
  7941. {
  7942. name: "Macro+",
  7943. height: math.unit(400, "meters")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(7, "feet"),
  7952. weight: math.unit(489, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/reece-silvermane/front.svg",
  7956. bottom: 0.02,
  7957. extra: 1
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(1.5, "miles"),
  7965. default: true
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(78, "kg"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/kane/front.svg",
  7978. extra: 978 / 899
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(2.1, "m"),
  7986. },
  7987. {
  7988. name: "Macro",
  7989. height: math.unit(1, "km"),
  7990. default: true
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(200, "kg"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/tegon/front.svg",
  8003. bottom: 0.01,
  8004. extra: 1
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(1, "inch")
  8012. },
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(6 + 3 / 12, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(300, "feet")
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(69, "miles")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8030. {
  8031. side: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(2304, "lbs"),
  8034. name: "Side",
  8035. image: {
  8036. source: "./media/characters/arcturax/side.svg",
  8037. extra: 790 / 376,
  8038. bottom: 0.01
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Micro",
  8045. height: math.unit(2, "inch")
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(6, "feet")
  8050. },
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(39, "feet"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Megamacro",
  8058. height: math.unit(7, "miles")
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(50, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/sentri/front.svg",
  8071. extra: 1750 / 1570,
  8072. bottom: 0.025
  8073. }
  8074. },
  8075. frontAlt: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(50, "lbs"),
  8078. name: "Front (Alt)",
  8079. image: {
  8080. source: "./media/characters/sentri/front-alt.svg",
  8081. extra: 1750 / 1570,
  8082. bottom: 0.025
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(15, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(2500, "feet")
  8095. }
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(5 + 8 / 12, "feet"),
  8103. weight: math.unit(130, "lbs"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/corvin/front.svg",
  8107. extra: 1803 / 1629
  8108. }
  8109. },
  8110. frontShirt: {
  8111. height: math.unit(5 + 8 / 12, "feet"),
  8112. weight: math.unit(130, "lbs"),
  8113. name: "Front (Shirt)",
  8114. image: {
  8115. source: "./media/characters/corvin/front-shirt.svg",
  8116. extra: 1803 / 1629
  8117. }
  8118. },
  8119. frontPoncho: {
  8120. height: math.unit(5 + 8 / 12, "feet"),
  8121. weight: math.unit(130, "lbs"),
  8122. name: "Front (Poncho)",
  8123. image: {
  8124. source: "./media/characters/corvin/front-poncho.svg",
  8125. extra: 1803 / 1629
  8126. }
  8127. },
  8128. side: {
  8129. height: math.unit(5 + 8 / 12, "feet"),
  8130. weight: math.unit(130, "lbs"),
  8131. name: "Side",
  8132. image: {
  8133. source: "./media/characters/corvin/side.svg",
  8134. extra: 1012 / 945
  8135. }
  8136. },
  8137. back: {
  8138. height: math.unit(5 + 8 / 12, "feet"),
  8139. weight: math.unit(130, "lbs"),
  8140. name: "Back",
  8141. image: {
  8142. source: "./media/characters/corvin/back.svg",
  8143. extra: 1803 / 1629
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Micro",
  8150. height: math.unit(3, "inches")
  8151. },
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(5 + 8 / 12, "feet")
  8155. },
  8156. {
  8157. name: "Macro",
  8158. height: math.unit(300, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(500, "miles")
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(135, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/q/front.svg",
  8176. extra: 854 / 752,
  8177. bottom: 0.005
  8178. }
  8179. },
  8180. back: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(130, "lbs"),
  8183. name: "Back",
  8184. image: {
  8185. source: "./media/characters/q/back.svg",
  8186. extra: 854 / 752
  8187. }
  8188. },
  8189. },
  8190. [
  8191. {
  8192. name: "Macro",
  8193. height: math.unit(90, "feet"),
  8194. default: true
  8195. },
  8196. {
  8197. name: "Extra Macro",
  8198. height: math.unit(300, "feet"),
  8199. },
  8200. {
  8201. name: "BIG WALF",
  8202. height: math.unit(750, "feet"),
  8203. },
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8208. {
  8209. front: {
  8210. height: math.unit(6, "feet"),
  8211. weight: math.unit(150, "lbs"),
  8212. name: "Front",
  8213. image: {
  8214. source: "./media/characters/carley/front.svg",
  8215. extra: 3927 / 3540,
  8216. bottom: 29.2 / 735
  8217. }
  8218. }
  8219. },
  8220. [
  8221. {
  8222. name: "Normal",
  8223. height: math.unit(6 + 3 / 12, "feet")
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(185, "feet"),
  8228. default: true
  8229. },
  8230. {
  8231. name: "Megamacro",
  8232. height: math.unit(8, "miles"),
  8233. },
  8234. ]
  8235. ))
  8236. characterMakers.push(() => makeCharacter(
  8237. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8238. {
  8239. front: {
  8240. height: math.unit(3, "feet"),
  8241. weight: math.unit(28, "lbs"),
  8242. name: "Front",
  8243. image: {
  8244. source: "./media/characters/citrine/front.svg"
  8245. }
  8246. }
  8247. },
  8248. [
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(3, "feet"),
  8252. default: true
  8253. }
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8258. {
  8259. front: {
  8260. height: math.unit(14, "feet"),
  8261. weight: math.unit(1450, "kg"),
  8262. capacity: math.unit(15, "people"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/aura-starwind/front.svg",
  8266. extra: 1440/1327,
  8267. bottom: 11/1451
  8268. }
  8269. },
  8270. side: {
  8271. height: math.unit(14, "feet"),
  8272. weight: math.unit(1450, "kg"),
  8273. capacity: math.unit(15, "people"),
  8274. name: "Side",
  8275. image: {
  8276. source: "./media/characters/aura-starwind/side.svg",
  8277. extra: 1654 / 1497
  8278. }
  8279. },
  8280. taur: {
  8281. height: math.unit(18, "feet"),
  8282. weight: math.unit(5500, "kg"),
  8283. capacity: math.unit(50, "people"),
  8284. name: "Taur",
  8285. image: {
  8286. source: "./media/characters/aura-starwind/taur.svg",
  8287. extra: 1760 / 1650
  8288. }
  8289. },
  8290. feral: {
  8291. height: math.unit(46, "feet"),
  8292. weight: math.unit(25000, "kg"),
  8293. capacity: math.unit(120, "people"),
  8294. name: "Feral",
  8295. image: {
  8296. source: "./media/characters/aura-starwind/feral.svg"
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(14, "feet"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(50, "meters")
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(5000, "meters")
  8313. },
  8314. {
  8315. name: "Gigamacro",
  8316. height: math.unit(100000, "kilometers")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(2 + 7 / 12, "feet"),
  8325. weight: math.unit(32, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/rivet/front.svg",
  8329. extra: 1716 / 1658,
  8330. bottom: 0.03
  8331. }
  8332. },
  8333. foot: {
  8334. height: math.unit(0.551, "feet"),
  8335. name: "Rivet's Foot",
  8336. image: {
  8337. source: "./media/characters/rivet/foot.svg"
  8338. },
  8339. rename: true
  8340. }
  8341. },
  8342. [
  8343. {
  8344. name: "Micro",
  8345. height: math.unit(1.5, "inches"),
  8346. },
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(2 + 7 / 12, "feet"),
  8350. default: true
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(85, "feet")
  8355. },
  8356. {
  8357. name: "Megamacro",
  8358. height: math.unit(2.2, "km")
  8359. }
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(5 + 9 / 12, "feet"),
  8367. weight: math.unit(150, "lbs"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/coffee/front.svg",
  8371. extra: 3666 / 3032,
  8372. bottom: 0.04
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(1.29, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/coffee/foot.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(2, "inches"),
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(5 + 9 / 12, "feet"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(800, "feet")
  8396. },
  8397. {
  8398. name: "Megamacro",
  8399. height: math.unit(25, "miles")
  8400. }
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(200, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/chari-gal/front.svg",
  8412. extra: 1568 / 1385,
  8413. bottom: 0.047
  8414. }
  8415. },
  8416. gigantamax: {
  8417. height: math.unit(6 * 16, "feet"),
  8418. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8419. name: "Gigantamax",
  8420. image: {
  8421. source: "./media/characters/chari-gal/gigantamax.svg",
  8422. extra: 1124 / 888,
  8423. bottom: 0.03
  8424. }
  8425. },
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(5 + 7 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(200, "feet"),
  8435. default: true
  8436. }
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(150, "lbs"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/nova/front.svg",
  8448. extra: 5000 / 4722,
  8449. bottom: 0.02
  8450. }
  8451. }
  8452. },
  8453. [
  8454. {
  8455. name: "Micro-",
  8456. height: math.unit(0.8, "inches")
  8457. },
  8458. {
  8459. name: "Micro",
  8460. height: math.unit(2, "inches"),
  8461. default: true
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8467. {
  8468. front: {
  8469. height: math.unit(3 + 1 / 12, "feet"),
  8470. weight: math.unit(21.7, "lbs"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/argent/front.svg",
  8474. extra: 1471 / 1331,
  8475. bottom: 100.8 / 1575.5
  8476. }
  8477. }
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(2, "inches")
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(3 + 1 / 12, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(120, "feet")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8497. {
  8498. lamp: {
  8499. height: math.unit(7 * 1559 / 989, "feet"),
  8500. name: "Magic Lamp",
  8501. image: {
  8502. source: "./media/characters/mira-al-cul/lamp.svg",
  8503. extra: 1617 / 1559
  8504. }
  8505. },
  8506. front: {
  8507. height: math.unit(7, "feet"),
  8508. name: "Front",
  8509. image: {
  8510. source: "./media/characters/mira-al-cul/front.svg",
  8511. extra: 1044 / 990
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Heavily Restricted",
  8518. height: math.unit(7 * 1559 / 989, "feet")
  8519. },
  8520. {
  8521. name: "Freshly Freed",
  8522. height: math.unit(50 * 1559 / 989, "feet")
  8523. },
  8524. {
  8525. name: "World Encompassing",
  8526. height: math.unit(10000 * 1559 / 989, "miles")
  8527. },
  8528. {
  8529. name: "Galactic",
  8530. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8531. },
  8532. {
  8533. name: "Palmed Universe",
  8534. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Multiversal Matriarch",
  8539. height: math.unit(8.87e10, "yottameters")
  8540. },
  8541. {
  8542. name: "Void Mother",
  8543. height: math.unit(3.14e110, "yottaparsecs")
  8544. },
  8545. {
  8546. name: "Toying with Transcendence",
  8547. height: math.unit(1e307, "meters")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8553. {
  8554. front: {
  8555. height: math.unit(17 + 1 / 12, "feet"),
  8556. weight: math.unit(476.2 * 5, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/kuro-shi-uchū/front.svg",
  8560. extra: 2329 / 1835,
  8561. bottom: 0.02
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Micro",
  8568. height: math.unit(2, "inches")
  8569. },
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(12, "meters")
  8573. },
  8574. {
  8575. name: "Planetary",
  8576. height: math.unit(0.00929, "AU"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Universal",
  8581. height: math.unit(20, "gigaparsecs")
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(5 + 2 / 12, "feet"),
  8590. weight: math.unit(120, "lbs"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/katherine/front.svg",
  8594. extra: 2075 / 1969
  8595. }
  8596. },
  8597. dress: {
  8598. height: math.unit(5 + 2 / 12, "feet"),
  8599. weight: math.unit(120, "lbs"),
  8600. name: "Dress",
  8601. image: {
  8602. source: "./media/characters/katherine/dress.svg",
  8603. extra: 2258 / 2064
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Micro",
  8610. height: math.unit(1, "inches"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(5 + 2 / 12, "feet")
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(100, "meters")
  8620. },
  8621. {
  8622. name: "Megamacro",
  8623. height: math.unit(80, "miles")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(7 + 8 / 12, "feet"),
  8632. weight: math.unit(250, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/yevis/front.svg",
  8636. extra: 1938 / 1755
  8637. }
  8638. }
  8639. },
  8640. [
  8641. {
  8642. name: "Mortal",
  8643. height: math.unit(7 + 8 / 12, "feet")
  8644. },
  8645. {
  8646. name: "Battle",
  8647. height: math.unit(25 + 11 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Wrath",
  8651. height: math.unit(1654 + 11 / 12, "feet")
  8652. },
  8653. {
  8654. name: "Planet Destroyer",
  8655. height: math.unit(12000, "miles")
  8656. },
  8657. {
  8658. name: "Galaxy Conqueror",
  8659. height: math.unit(1.45, "zettameters"),
  8660. default: true
  8661. },
  8662. {
  8663. name: "Universal War",
  8664. height: math.unit(184, "gigaparsecs")
  8665. },
  8666. {
  8667. name: "Eternity War",
  8668. height: math.unit(1.98e55, "yottaparsecs")
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5 + 8 / 12, "feet"),
  8677. weight: math.unit(63, "kg"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/xavier/front.svg",
  8681. extra: 944 / 883
  8682. }
  8683. },
  8684. frontStretch: {
  8685. height: math.unit(5 + 8 / 12, "feet"),
  8686. weight: math.unit(63, "kg"),
  8687. name: "Stretching",
  8688. image: {
  8689. source: "./media/characters/xavier/front-stretch.svg",
  8690. extra: 962 / 820
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(5 + 8 / 12, "feet")
  8698. },
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(100, "meters"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "McLargeHuge",
  8706. height: math.unit(10, "miles")
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(5 + 5 / 12, "feet"),
  8715. weight: math.unit(150, "lb"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/joshii/front.svg",
  8719. extra: 765 / 653,
  8720. bottom: 51 / 816
  8721. }
  8722. },
  8723. foot: {
  8724. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8725. name: "Foot",
  8726. image: {
  8727. source: "./media/characters/joshii/foot.svg"
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Micro",
  8734. height: math.unit(2, "inches"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(5 + 5 / 12, "feet")
  8740. },
  8741. {
  8742. name: "Macro",
  8743. height: math.unit(785, "feet")
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(24.5, "miles")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(150, "lb"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/goddess-elizabeth/front.svg",
  8760. extra: 1800 / 1525,
  8761. bottom: 0.005
  8762. }
  8763. },
  8764. foot: {
  8765. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8766. name: "Foot",
  8767. image: {
  8768. source: "./media/characters/goddess-elizabeth/foot.svg"
  8769. }
  8770. },
  8771. mouth: {
  8772. height: math.unit(6, "feet"),
  8773. name: "Mouth",
  8774. image: {
  8775. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(12, "feet")
  8783. },
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(80, "miles"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(15000, "parsecs")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 9 / 12, "feet"),
  8800. weight: math.unit(144, "lb"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/kara/front.svg"
  8804. }
  8805. },
  8806. feet: {
  8807. height: math.unit(6 / 6.765, "feet"),
  8808. name: "Kara's Feet",
  8809. rename: true,
  8810. image: {
  8811. source: "./media/characters/kara/feet.svg"
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 9 / 12, "feet")
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(174, "feet"),
  8823. default: true
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(18, "feet"),
  8832. weight: math.unit(4050, "lb"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/tyrone/front.svg",
  8836. extra: 2405 / 2270,
  8837. bottom: 182 / 2587
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(18, "feet"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(300, "feet")
  8850. },
  8851. {
  8852. name: "Megamacro",
  8853. height: math.unit(15, "km")
  8854. },
  8855. {
  8856. name: "Gigamacro",
  8857. height: math.unit(500, "km")
  8858. },
  8859. {
  8860. name: "Teramacro",
  8861. height: math.unit(0.5, "gigameters")
  8862. },
  8863. {
  8864. name: "Omnimacro",
  8865. height: math.unit(1e252, "yottauniverse")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(7 + 8 / 12, "feet"),
  8874. weight: math.unit(120, "lb"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/danny/front.svg",
  8878. extra: 1490 / 1350
  8879. }
  8880. },
  8881. back: {
  8882. height: math.unit(7 + 8 / 12, "feet"),
  8883. weight: math.unit(120, "lb"),
  8884. name: "Back",
  8885. image: {
  8886. source: "./media/characters/danny/back.svg",
  8887. extra: 1490 / 1350
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(7 + 8 / 12, "feet"),
  8895. default: true
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(3.5, "inches"),
  8904. weight: math.unit(19, "grams"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/mallow/front.svg",
  8908. extra: 471 / 431
  8909. }
  8910. },
  8911. back: {
  8912. height: math.unit(3.5, "inches"),
  8913. weight: math.unit(19, "grams"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/mallow/back.svg",
  8917. extra: 471 / 431
  8918. }
  8919. },
  8920. },
  8921. [
  8922. {
  8923. name: "Normal",
  8924. height: math.unit(3.5, "inches"),
  8925. default: true
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(9, "feet"),
  8934. weight: math.unit(230, "kg"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/starry-aqua/front.svg"
  8938. }
  8939. },
  8940. back: {
  8941. height: math.unit(9, "feet"),
  8942. weight: math.unit(230, "kg"),
  8943. name: "Back",
  8944. image: {
  8945. source: "./media/characters/starry-aqua/back.svg"
  8946. }
  8947. },
  8948. hand: {
  8949. height: math.unit(9 * 0.1168, "feet"),
  8950. name: "Hand",
  8951. image: {
  8952. source: "./media/characters/starry-aqua/hand.svg"
  8953. }
  8954. },
  8955. foot: {
  8956. height: math.unit(9 * 0.18, "feet"),
  8957. name: "Foot",
  8958. image: {
  8959. source: "./media/characters/starry-aqua/foot.svg"
  8960. }
  8961. }
  8962. },
  8963. [
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(3, "inches")
  8967. },
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(9, "feet")
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(300, "feet"),
  8975. default: true
  8976. },
  8977. {
  8978. name: "Megamacro",
  8979. height: math.unit(3200, "feet")
  8980. }
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(15, "feet"),
  8988. weight: math.unit(5026, "lb"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/luka-towers/front.svg",
  8992. extra: 1269/1133,
  8993. bottom: 51/1320
  8994. }
  8995. },
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(15, "feet"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Minimacro",
  9005. height: math.unit(25, "feet")
  9006. },
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(320, "feet")
  9010. },
  9011. {
  9012. name: "Megamacro",
  9013. height: math.unit(35000, "feet")
  9014. },
  9015. {
  9016. name: "Gigamacro",
  9017. height: math.unit(4000, "miles")
  9018. },
  9019. {
  9020. name: "Teramacro",
  9021. height: math.unit(15000, "miles")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(150, "lb"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/natalie-nightring/front.svg",
  9034. extra: 1,
  9035. bottom: 0.06
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Uh Oh",
  9042. height: math.unit(0.1, "mm")
  9043. },
  9044. {
  9045. name: "Small",
  9046. height: math.unit(3, "inches")
  9047. },
  9048. {
  9049. name: "Human Scale",
  9050. height: math.unit(6, "feet")
  9051. },
  9052. {
  9053. name: "Librarian",
  9054. height: math.unit(50, "feet"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Immense",
  9059. height: math.unit(200, "miles")
  9060. },
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(180, "lbs"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/danni-rosie/front.svg",
  9072. extra: 1260 / 1128,
  9073. bottom: 0.022
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(2, "inches"),
  9081. default: true
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(5 + 9 / 12, "feet"),
  9090. weight: math.unit(220, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/samantha-kruse/front.svg",
  9094. extra: (985 / 935),
  9095. bottom: 0.03
  9096. }
  9097. },
  9098. frontUndressed: {
  9099. height: math.unit(5 + 9 / 12, "feet"),
  9100. weight: math.unit(220, "lb"),
  9101. name: "Front (Undressed)",
  9102. image: {
  9103. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9104. extra: (973 / 923),
  9105. bottom: 0.025
  9106. }
  9107. },
  9108. fat: {
  9109. height: math.unit(5 + 9 / 12, "feet"),
  9110. weight: math.unit(900, "lb"),
  9111. name: "Front (Fat)",
  9112. image: {
  9113. source: "./media/characters/samantha-kruse/fat.svg",
  9114. extra: 2688 / 2561
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(5 + 9 / 12, "feet"),
  9122. default: true
  9123. }
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9128. {
  9129. back: {
  9130. height: math.unit(5 + 4 / 12, "feet"),
  9131. weight: math.unit(4963, "lb"),
  9132. name: "Back",
  9133. image: {
  9134. source: "./media/characters/amelia-rosie/back.svg",
  9135. extra: 1113 / 963,
  9136. bottom: 0.01
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Level 0",
  9143. height: math.unit(5 + 4 / 12, "feet")
  9144. },
  9145. {
  9146. name: "Level 1",
  9147. height: math.unit(164597, "feet"),
  9148. default: true
  9149. },
  9150. {
  9151. name: "Level 2",
  9152. height: math.unit(956243, "miles")
  9153. },
  9154. {
  9155. name: "Level 3",
  9156. height: math.unit(29421709423, "miles")
  9157. },
  9158. {
  9159. name: "Level 4",
  9160. height: math.unit(154, "lightyears")
  9161. },
  9162. {
  9163. name: "Level 5",
  9164. height: math.unit(4738272, "lightyears")
  9165. },
  9166. {
  9167. name: "Level 6",
  9168. height: math.unit(145787152896, "lightyears")
  9169. },
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9174. {
  9175. front: {
  9176. height: math.unit(5 + 11 / 12, "feet"),
  9177. weight: math.unit(65, "kg"),
  9178. name: "Front",
  9179. image: {
  9180. source: "./media/characters/rook-kitara/front.svg",
  9181. extra: 1347 / 1274,
  9182. bottom: 0.005
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Totally Unfair",
  9189. height: math.unit(1.8, "mm")
  9190. },
  9191. {
  9192. name: "Lap Rookie",
  9193. height: math.unit(1.4, "feet")
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(5 + 11 / 12, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "How Did This Happen",
  9202. height: math.unit(80, "miles")
  9203. }
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9208. {
  9209. front: {
  9210. height: math.unit(7, "feet"),
  9211. weight: math.unit(300, "lb"),
  9212. name: "Front",
  9213. image: {
  9214. source: "./media/characters/pisces/front.svg",
  9215. extra: 2255 / 2115,
  9216. bottom: 0.03
  9217. }
  9218. },
  9219. back: {
  9220. height: math.unit(7, "feet"),
  9221. weight: math.unit(300, "lb"),
  9222. name: "Back",
  9223. image: {
  9224. source: "./media/characters/pisces/back.svg",
  9225. extra: 2146 / 2055,
  9226. bottom: 0.04
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(7, "feet"),
  9234. default: true
  9235. },
  9236. {
  9237. name: "Swimming Pool",
  9238. height: math.unit(12.2, "meters")
  9239. },
  9240. {
  9241. name: "Olympic Swimming Pool",
  9242. height: math.unit(56.3, "meters")
  9243. },
  9244. {
  9245. name: "Lake Superior",
  9246. height: math.unit(93900, "meters")
  9247. },
  9248. {
  9249. name: "Mediterranean Sea",
  9250. height: math.unit(644457, "meters")
  9251. },
  9252. {
  9253. name: "World's Oceans",
  9254. height: math.unit(4567491, "meters")
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(2.3, "meters"),
  9263. weight: math.unit(120, "kg"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/zelas/front.svg"
  9267. }
  9268. },
  9269. side: {
  9270. height: math.unit(2.3, "meters"),
  9271. weight: math.unit(120, "kg"),
  9272. name: "Side",
  9273. image: {
  9274. source: "./media/characters/zelas/side.svg"
  9275. }
  9276. },
  9277. back: {
  9278. height: math.unit(2.3, "meters"),
  9279. weight: math.unit(120, "kg"),
  9280. name: "Back",
  9281. image: {
  9282. source: "./media/characters/zelas/back.svg"
  9283. }
  9284. },
  9285. foot: {
  9286. height: math.unit(1.116, "feet"),
  9287. name: "Foot",
  9288. image: {
  9289. source: "./media/characters/zelas/foot.svg"
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(2.3, "meters")
  9297. },
  9298. {
  9299. name: "Macro",
  9300. height: math.unit(30, "meters"),
  9301. default: true
  9302. },
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9307. {
  9308. front: {
  9309. height: math.unit(1, "inch"),
  9310. weight: math.unit(0.21, "grams"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/talbot/front.svg",
  9314. extra: 594 / 544
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(1, "inch"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9328. {
  9329. front: {
  9330. height: math.unit(3 + 3 / 12, "feet"),
  9331. weight: math.unit(51.8, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/fliss/front.svg",
  9335. extra: 840 / 640
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Teeny Tiny",
  9342. height: math.unit(1, "mm")
  9343. },
  9344. {
  9345. name: "Small",
  9346. height: math.unit(1, "inch"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Standard Sylveon",
  9351. height: math.unit(3 + 3 / 12, "feet")
  9352. },
  9353. {
  9354. name: "Large Nuisance",
  9355. height: math.unit(33, "feet")
  9356. },
  9357. {
  9358. name: "City Filler",
  9359. height: math.unit(3000, "feet")
  9360. },
  9361. {
  9362. name: "New Horizon",
  9363. height: math.unit(6000, "miles")
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9369. {
  9370. front: {
  9371. height: math.unit(5, "cm"),
  9372. weight: math.unit(1.94, "g"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/fleta/front.svg",
  9376. extra: 835 / 803
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(5, "cm"),
  9381. weight: math.unit(1.94, "g"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/fleta/back.svg",
  9385. extra: 835 / 803
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Micro",
  9392. height: math.unit(5, "cm"),
  9393. default: true
  9394. },
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9399. {
  9400. front: {
  9401. height: math.unit(6, "feet"),
  9402. weight: math.unit(225, "lb"),
  9403. name: "Front",
  9404. image: {
  9405. source: "./media/characters/dominic/front.svg",
  9406. extra: 1770 / 1620,
  9407. bottom: 0.025
  9408. }
  9409. },
  9410. back: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(225, "lb"),
  9413. name: "Back",
  9414. image: {
  9415. source: "./media/characters/dominic/back.svg",
  9416. extra: 1745 / 1620,
  9417. bottom: 0.065
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Nano",
  9424. height: math.unit(0.1, "mm")
  9425. },
  9426. {
  9427. name: "Micro-",
  9428. height: math.unit(1, "mm")
  9429. },
  9430. {
  9431. name: "Micro",
  9432. height: math.unit(4, "inches")
  9433. },
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(6 + 4 / 12, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(115, "feet")
  9442. },
  9443. {
  9444. name: "Macro+",
  9445. height: math.unit(955, "feet")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(8990, "feet")
  9450. },
  9451. {
  9452. name: "Gigmacro",
  9453. height: math.unit(9310, "miles")
  9454. },
  9455. {
  9456. name: "Teramacro",
  9457. height: math.unit(1567005010, "miles")
  9458. },
  9459. {
  9460. name: "Examacro",
  9461. height: math.unit(1425, "parsecs")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(400, "feet"),
  9470. weight: math.unit(44444444, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/major-colonel/front.svg"
  9474. }
  9475. },
  9476. back: {
  9477. height: math.unit(400, "feet"),
  9478. weight: math.unit(44444444, "lb"),
  9479. name: "Back",
  9480. image: {
  9481. source: "./media/characters/major-colonel/back.svg"
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Macro",
  9488. height: math.unit(400, "feet"),
  9489. default: true
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9495. {
  9496. catFront: {
  9497. height: math.unit(6, "feet"),
  9498. weight: math.unit(120, "lb"),
  9499. name: "Front (Cat Side)",
  9500. image: {
  9501. source: "./media/characters/axel-lycan/cat-front.svg",
  9502. extra: 430 / 402,
  9503. bottom: 43 / 472.35
  9504. }
  9505. },
  9506. catBack: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(120, "lb"),
  9509. name: "Back (Cat Side)",
  9510. image: {
  9511. source: "./media/characters/axel-lycan/cat-back.svg",
  9512. extra: 447 / 419,
  9513. bottom: 23.3 / 469
  9514. }
  9515. },
  9516. wolfFront: {
  9517. height: math.unit(6, "feet"),
  9518. weight: math.unit(120, "lb"),
  9519. name: "Front (Wolf Side)",
  9520. image: {
  9521. source: "./media/characters/axel-lycan/wolf-front.svg",
  9522. extra: 485 / 456,
  9523. bottom: 19 / 504
  9524. }
  9525. },
  9526. wolfBack: {
  9527. height: math.unit(6, "feet"),
  9528. weight: math.unit(120, "lb"),
  9529. name: "Back (Wolf Side)",
  9530. image: {
  9531. source: "./media/characters/axel-lycan/wolf-back.svg",
  9532. extra: 475 / 438,
  9533. bottom: 39.2 / 514
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(1, "km"),
  9541. default: true
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9547. {
  9548. front: {
  9549. height: math.unit(5 + 9 / 12, "feet"),
  9550. weight: math.unit(175, "lb"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/vanrel-hyena/front.svg",
  9554. extra: 1086 / 1010,
  9555. bottom: 0.04
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(5 + 9 / 12, "feet"),
  9563. default: true
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(103, "lb"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/abbott-absol/front.svg",
  9576. extra: 2010 / 1842
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Megamicro",
  9583. height: math.unit(0.1, "mm")
  9584. },
  9585. {
  9586. name: "Micro",
  9587. height: math.unit(1, "inch")
  9588. },
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(6, "feet"),
  9592. default: true
  9593. },
  9594. ]
  9595. ))
  9596. characterMakers.push(() => makeCharacter(
  9597. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9598. {
  9599. front: {
  9600. height: math.unit(6, "feet"),
  9601. weight: math.unit(264, "lb"),
  9602. name: "Front",
  9603. image: {
  9604. source: "./media/characters/hector/front.svg",
  9605. extra: 2280 / 2130,
  9606. bottom: 0.07
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(12.25, "foot"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(160, "feet")
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9624. {
  9625. front: {
  9626. height: math.unit(6, "feet"),
  9627. weight: math.unit(150, "lb"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/sal/front.svg",
  9631. extra: 1846 / 1699,
  9632. bottom: 0.04
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(10, "miles"),
  9640. default: true
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9646. {
  9647. front: {
  9648. height: math.unit(3, "meters"),
  9649. weight: math.unit(450, "kg"),
  9650. name: "front",
  9651. image: {
  9652. source: "./media/characters/ranger/front.svg",
  9653. extra: 2401 / 2243,
  9654. bottom: 0.05
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(3, "meters"),
  9662. default: true
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(14, "feet"),
  9671. weight: math.unit(800, "kg"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/theresa/front.svg",
  9675. extra: 3575 / 3346,
  9676. bottom: 0.03
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(14, "feet"),
  9684. default: true
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9690. {
  9691. front: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(3, "kg"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/ine/front.svg",
  9697. extra: 678 / 539,
  9698. bottom: 0.023
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Normal",
  9705. height: math.unit(2.265, "feet"),
  9706. default: true
  9707. },
  9708. ]
  9709. ))
  9710. characterMakers.push(() => makeCharacter(
  9711. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9712. {
  9713. front: {
  9714. height: math.unit(5, "feet"),
  9715. weight: math.unit(30, "kg"),
  9716. name: "Front",
  9717. image: {
  9718. source: "./media/characters/vial/front.svg",
  9719. extra: 1365 / 1277,
  9720. bottom: 0.04
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Normal",
  9727. height: math.unit(5, "feet"),
  9728. default: true
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9734. {
  9735. side: {
  9736. height: math.unit(3.4, "meters"),
  9737. weight: math.unit(1000, "lb"),
  9738. name: "Side",
  9739. image: {
  9740. source: "./media/characters/rovoska/side.svg",
  9741. extra: 4403 / 1515
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(3.4, "meters"),
  9749. default: true
  9750. },
  9751. ]
  9752. ))
  9753. characterMakers.push(() => makeCharacter(
  9754. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9755. {
  9756. front: {
  9757. height: math.unit(8, "feet"),
  9758. weight: math.unit(315, "lb"),
  9759. name: "Front",
  9760. image: {
  9761. source: "./media/characters/gunner-rotthbauer/front.svg"
  9762. }
  9763. },
  9764. back: {
  9765. height: math.unit(8, "feet"),
  9766. weight: math.unit(315, "lb"),
  9767. name: "Back",
  9768. image: {
  9769. source: "./media/characters/gunner-rotthbauer/back.svg"
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Micro",
  9776. height: math.unit(3.5, "inches")
  9777. },
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(8, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(250, "feet")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(1, "AU")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(5 + 5 / 12, "feet"),
  9798. weight: math.unit(140, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/allatia/front.svg",
  9802. extra: 1227 / 1180,
  9803. bottom: 0.027
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(5 + 5 / 12, "feet")
  9811. },
  9812. {
  9813. name: "Macro",
  9814. height: math.unit(250, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Megamacro",
  9819. height: math.unit(8, "miles")
  9820. }
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(120, "lb"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/tene/front.svg",
  9832. extra: 1728 / 1578,
  9833. bottom: 0.022
  9834. }
  9835. },
  9836. stomping: {
  9837. height: math.unit(2.025, "meters"),
  9838. weight: math.unit(120, "lb"),
  9839. name: "Stomping",
  9840. image: {
  9841. source: "./media/characters/tene/stomping.svg",
  9842. extra: 938 / 873,
  9843. bottom: 0.01
  9844. }
  9845. },
  9846. sitting: {
  9847. height: math.unit(1, "meter"),
  9848. weight: math.unit(120, "lb"),
  9849. name: "Sitting",
  9850. image: {
  9851. source: "./media/characters/tene/sitting.svg",
  9852. extra: 437 / 415,
  9853. bottom: 0.1
  9854. }
  9855. },
  9856. feral: {
  9857. height: math.unit(3.9, "feet"),
  9858. weight: math.unit(250, "lb"),
  9859. name: "Feral",
  9860. image: {
  9861. source: "./media/characters/tene/feral.svg",
  9862. extra: 717 / 458,
  9863. bottom: 0.179
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(6, "feet")
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(300, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(5, "miles")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9885. {
  9886. side: {
  9887. height: math.unit(6, "feet"),
  9888. name: "Side",
  9889. image: {
  9890. source: "./media/characters/evander/side.svg",
  9891. extra: 877 / 477
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(0.83, "meters"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(12, "feet"),
  9908. weight: math.unit(1000, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9912. extra: 1762 / 1611
  9913. }
  9914. },
  9915. back: {
  9916. height: math.unit(12, "feet"),
  9917. weight: math.unit(1000, "lb"),
  9918. name: "Back",
  9919. image: {
  9920. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9921. extra: 1762 / 1611
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(12, "feet"),
  9929. default: true
  9930. },
  9931. {
  9932. name: "Kaiju",
  9933. height: math.unit(150, "feet")
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9939. {
  9940. front: {
  9941. height: math.unit(6, "feet"),
  9942. weight: math.unit(150, "lb"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/zero-alurus/front.svg"
  9946. }
  9947. },
  9948. back: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(150, "lb"),
  9951. name: "Back",
  9952. image: {
  9953. source: "./media/characters/zero-alurus/back.svg"
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(5 + 10 / 12, "feet")
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(60, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Macro+",
  9969. height: math.unit(450, "feet")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(6, "feet"),
  9978. weight: math.unit(200, "lb"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/mega-shi/front.svg",
  9982. extra: 1279 / 1250,
  9983. bottom: 0.02
  9984. }
  9985. },
  9986. back: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(200, "lb"),
  9989. name: "Back",
  9990. image: {
  9991. source: "./media/characters/mega-shi/back.svg",
  9992. extra: 1279 / 1250,
  9993. bottom: 0.02
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Micro",
  10000. height: math.unit(16 + 6 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Third Dimension",
  10004. height: math.unit(40, "meters")
  10005. },
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(660, "feet"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "Megamacro",
  10013. height: math.unit(10, "miles")
  10014. },
  10015. {
  10016. name: "Planetary Launch",
  10017. height: math.unit(500, "miles")
  10018. },
  10019. {
  10020. name: "Interstellar",
  10021. height: math.unit(1e9, "miles")
  10022. },
  10023. {
  10024. name: "Leaving the Universe",
  10025. height: math.unit(1, "gigaparsec")
  10026. },
  10027. {
  10028. name: "Travelling Universes",
  10029. height: math.unit(30e15, "parsecs")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(150, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/odyssey/front.svg",
  10042. extra: 1782 / 1582,
  10043. bottom: 0.01
  10044. }
  10045. },
  10046. side: {
  10047. height: math.unit(5.7, "feet"),
  10048. weight: math.unit(140, "lb"),
  10049. name: "Side",
  10050. image: {
  10051. source: "./media/characters/odyssey/side.svg",
  10052. extra: 6462 / 5700
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(5 + 4 / 12, "feet")
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(1, "km")
  10064. },
  10065. {
  10066. name: "Megamacro",
  10067. height: math.unit(3000, "km")
  10068. },
  10069. {
  10070. name: "Gigamacro",
  10071. height: math.unit(1, "AU"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Omniversal",
  10076. height: math.unit(100e14, "lightyears")
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(6, "feet"),
  10085. weight: math.unit(300, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/mekuto/front.svg",
  10089. extra: 921 / 832,
  10090. bottom: 0.03
  10091. }
  10092. },
  10093. hand: {
  10094. height: math.unit(6 / 10.24, "feet"),
  10095. name: "Hand",
  10096. image: {
  10097. source: "./media/characters/mekuto/hand.svg"
  10098. }
  10099. },
  10100. foot: {
  10101. height: math.unit(6 / 5.05, "feet"),
  10102. name: "Foot",
  10103. image: {
  10104. source: "./media/characters/mekuto/foot.svg"
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Minimicro",
  10111. height: math.unit(0.2, "inches")
  10112. },
  10113. {
  10114. name: "Micro",
  10115. height: math.unit(1.5, "inches")
  10116. },
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(5 + 11 / 12, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Minimacro",
  10124. height: math.unit(17 + 9 / 12, "feet")
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(177.5, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(152, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(6.5, "inches"),
  10141. weight: math.unit(13, "oz"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/dafydd-tomos/front.svg",
  10145. extra: 2990 / 2603,
  10146. bottom: 0.03
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(6.5, "inches"),
  10154. default: true
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/splinter/front.svg",
  10167. extra: 2990 / 2882,
  10168. bottom: 0.04
  10169. }
  10170. },
  10171. back: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(150, "lb"),
  10174. name: "Back",
  10175. image: {
  10176. source: "./media/characters/splinter/back.svg",
  10177. extra: 2990 / 2882,
  10178. bottom: 0.04
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(6, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(230, "meters"),
  10190. default: true
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10196. {
  10197. front: {
  10198. height: math.unit(4 + 10 / 12, "feet"),
  10199. weight: math.unit(480, "lb"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/snow-gabumon/front.svg",
  10203. extra: 1140 / 963,
  10204. bottom: 0.058
  10205. }
  10206. },
  10207. back: {
  10208. height: math.unit(4 + 10 / 12, "feet"),
  10209. weight: math.unit(480, "lb"),
  10210. name: "Back",
  10211. image: {
  10212. source: "./media/characters/snow-gabumon/back.svg",
  10213. extra: 1115 / 962,
  10214. bottom: 0.041
  10215. }
  10216. },
  10217. frontUndresed: {
  10218. height: math.unit(4 + 10 / 12, "feet"),
  10219. weight: math.unit(480, "lb"),
  10220. name: "Front (Undressed)",
  10221. image: {
  10222. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10223. extra: 1061 / 960,
  10224. bottom: 0.045
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Micro",
  10231. height: math.unit(1, "inch")
  10232. },
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(4 + 10 / 12, "feet"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(200, "feet")
  10241. },
  10242. {
  10243. name: "Megamacro",
  10244. height: math.unit(120, "miles")
  10245. },
  10246. {
  10247. name: "Gigamacro",
  10248. height: math.unit(9800, "miles")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(1.7, "meters"),
  10257. weight: math.unit(140, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/moody/front.svg",
  10261. extra: 3226 / 3007,
  10262. bottom: 0.087
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(1, "mm")
  10270. },
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(1.7, "meters"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Macro",
  10278. height: math.unit(80, "meters")
  10279. },
  10280. {
  10281. name: "Macro+",
  10282. height: math.unit(500, "meters")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(150, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/zyas/front.svg",
  10295. extra: 1180 / 1120,
  10296. bottom: 0.045
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(10, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(500, "feet")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(5, "miles")
  10313. },
  10314. {
  10315. name: "Teramacro",
  10316. height: math.unit(150000, "miles")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(150, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/cuon/front.svg",
  10329. extra: 1390 / 1320,
  10330. bottom: 0.008
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Micro",
  10337. height: math.unit(3, "inches")
  10338. },
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(18 + 9 / 12, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(360, "feet")
  10347. },
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(360, "miles")
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(2.4, "meters"),
  10359. weight: math.unit(70, "kg"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/nyanuxk/front.svg",
  10363. extra: 1172 / 1084,
  10364. bottom: 0.065
  10365. }
  10366. },
  10367. side: {
  10368. height: math.unit(2.4, "meters"),
  10369. weight: math.unit(70, "kg"),
  10370. name: "Side",
  10371. image: {
  10372. source: "./media/characters/nyanuxk/side.svg",
  10373. extra: 1190 / 1132,
  10374. bottom: 0.007
  10375. }
  10376. },
  10377. back: {
  10378. height: math.unit(2.4, "meters"),
  10379. weight: math.unit(70, "kg"),
  10380. name: "Back",
  10381. image: {
  10382. source: "./media/characters/nyanuxk/back.svg",
  10383. extra: 1200 / 1141,
  10384. bottom: 0.015
  10385. }
  10386. },
  10387. foot: {
  10388. height: math.unit(0.52, "meters"),
  10389. name: "Foot",
  10390. image: {
  10391. source: "./media/characters/nyanuxk/foot.svg"
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Micro",
  10398. height: math.unit(2, "cm")
  10399. },
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(2.4, "meters"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Smaller Macro",
  10407. height: math.unit(120, "meters")
  10408. },
  10409. {
  10410. name: "Bigger Macro",
  10411. height: math.unit(1.2, "km")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(15, "kilometers")
  10416. },
  10417. {
  10418. name: "Gigamacro",
  10419. height: math.unit(2000, "km")
  10420. },
  10421. {
  10422. name: "Teramacro",
  10423. height: math.unit(500000, "km")
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10429. {
  10430. side: {
  10431. height: math.unit(6, "feet"),
  10432. name: "Side",
  10433. image: {
  10434. source: "./media/characters/ailbhe/side.svg",
  10435. extra: 757 / 464,
  10436. bottom: 0.041
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(1.07, "meters"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(120, "kg"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/zevulfius/front.svg",
  10457. extra: 965 / 903
  10458. }
  10459. },
  10460. side: {
  10461. height: math.unit(6, "feet"),
  10462. weight: math.unit(120, "kg"),
  10463. name: "Side",
  10464. image: {
  10465. source: "./media/characters/zevulfius/side.svg",
  10466. extra: 939 / 900
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(120, "kg"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/zevulfius/back.svg",
  10475. extra: 918 / 854,
  10476. bottom: 0.005
  10477. }
  10478. },
  10479. foot: {
  10480. height: math.unit(6 / 3.72, "feet"),
  10481. name: "Foot",
  10482. image: {
  10483. source: "./media/characters/zevulfius/foot.svg"
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(750, "meters")
  10491. },
  10492. {
  10493. name: "Megamacro",
  10494. height: math.unit(20, "km"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Gigamacro",
  10499. height: math.unit(2000, "km")
  10500. },
  10501. {
  10502. name: "Teramacro",
  10503. height: math.unit(250000, "km")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(100, "feet"),
  10512. weight: math.unit(350, "kg"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/rikes/front.svg",
  10516. extra: 1565 / 1483,
  10517. bottom: 0.017
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(100, "feet"),
  10525. default: true
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(8, "feet"),
  10534. weight: math.unit(356, "lb"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/adam-silver-mane/front.svg",
  10538. extra: 1036/937,
  10539. bottom: 63/1099
  10540. }
  10541. },
  10542. side: {
  10543. height: math.unit(8, "feet"),
  10544. weight: math.unit(356, "lb"),
  10545. name: "Side",
  10546. image: {
  10547. source: "./media/characters/adam-silver-mane/side.svg",
  10548. extra: 997/901,
  10549. bottom: 59/1056
  10550. }
  10551. },
  10552. frontNsfw: {
  10553. height: math.unit(8, "feet"),
  10554. weight: math.unit(356, "lb"),
  10555. name: "Front (NSFW)",
  10556. image: {
  10557. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10558. extra: 1036/937,
  10559. bottom: 63/1099
  10560. }
  10561. },
  10562. sideNsfw: {
  10563. height: math.unit(8, "feet"),
  10564. weight: math.unit(356, "lb"),
  10565. name: "Side (NSFW)",
  10566. image: {
  10567. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10568. extra: 997/901,
  10569. bottom: 59/1056
  10570. }
  10571. },
  10572. dick: {
  10573. height: math.unit(2.1, "feet"),
  10574. name: "Dick",
  10575. image: {
  10576. source: "./media/characters/adam-silver-mane/dick.svg"
  10577. }
  10578. },
  10579. taur: {
  10580. height: math.unit(16, "feet"),
  10581. weight: math.unit(1500, "kg"),
  10582. name: "Taur",
  10583. image: {
  10584. source: "./media/characters/adam-silver-mane/taur.svg",
  10585. extra: 1713 / 1571,
  10586. bottom: 0.01
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(8, "feet")
  10594. },
  10595. {
  10596. name: "Minimacro",
  10597. height: math.unit(80, "feet")
  10598. },
  10599. {
  10600. name: "MDA",
  10601. height: math.unit(80, "meters")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(800, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(8000, "feet")
  10611. },
  10612. {
  10613. name: "Gigamacro",
  10614. height: math.unit(800, "miles")
  10615. },
  10616. {
  10617. name: "Teramacro",
  10618. height: math.unit(80000, "miles")
  10619. },
  10620. {
  10621. name: "Celestial",
  10622. height: math.unit(8e6, "miles")
  10623. },
  10624. {
  10625. name: "Star Dragon",
  10626. height: math.unit(800000, "parsecs")
  10627. },
  10628. {
  10629. name: "Godly",
  10630. height: math.unit(800, "teraparsecs")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10636. {
  10637. front: {
  10638. height: math.unit(6, "feet"),
  10639. weight: math.unit(150, "lb"),
  10640. name: "Front",
  10641. image: {
  10642. source: "./media/characters/ky'owin/front.svg",
  10643. extra: 3888 / 3068,
  10644. bottom: 0.015
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(6 + 8 / 12, "feet")
  10652. },
  10653. {
  10654. name: "Large",
  10655. height: math.unit(68, "feet")
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(132, "feet")
  10660. },
  10661. {
  10662. name: "Macro+",
  10663. height: math.unit(340, "feet")
  10664. },
  10665. {
  10666. name: "Macro++",
  10667. height: math.unit(680, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Megamacro",
  10672. height: math.unit(1, "mile")
  10673. },
  10674. {
  10675. name: "Megamacro+",
  10676. height: math.unit(10, "miles")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(4, "feet"),
  10685. weight: math.unit(50, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/mal/front.svg",
  10689. extra: 785 / 724,
  10690. bottom: 0.07
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Micro",
  10697. height: math.unit(4, "inches")
  10698. },
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(4, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(200, "feet")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/jordan-deware/front.svg",
  10719. extra: 1191 / 1012
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Nano",
  10726. height: math.unit(0.01, "mm")
  10727. },
  10728. {
  10729. name: "Minimicro",
  10730. height: math.unit(1, "mm")
  10731. },
  10732. {
  10733. name: "Micro",
  10734. height: math.unit(0.5, "inches")
  10735. },
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(4, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Minimacro",
  10743. height: math.unit(40, "meters")
  10744. },
  10745. {
  10746. name: "Small Macro",
  10747. height: math.unit(400, "meters")
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(4, "miles")
  10752. },
  10753. {
  10754. name: "Megamacro",
  10755. height: math.unit(40, "miles")
  10756. },
  10757. {
  10758. name: "Megamacro+",
  10759. height: math.unit(400, "miles")
  10760. },
  10761. {
  10762. name: "Gigamacro",
  10763. height: math.unit(400000, "miles")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10769. {
  10770. side: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(150, "lb"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/kimiko/side.svg",
  10776. extra: 600 / 358
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(15, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(220, "feet")
  10789. },
  10790. {
  10791. name: "Macro+",
  10792. height: math.unit(1450, "feet")
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(11500, "feet")
  10797. },
  10798. {
  10799. name: "Gigamacro",
  10800. height: math.unit(9500, "miles")
  10801. },
  10802. {
  10803. name: "Teramacro",
  10804. height: math.unit(2208005005, "miles")
  10805. },
  10806. {
  10807. name: "Examacro",
  10808. height: math.unit(2750, "parsecs")
  10809. },
  10810. {
  10811. name: "Zettamacro",
  10812. height: math.unit(101500, "parsecs")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(70, "kg"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/andrew-sleepy/front.svg"
  10825. }
  10826. },
  10827. side: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(70, "kg"),
  10830. name: "Side",
  10831. image: {
  10832. source: "./media/characters/andrew-sleepy/side.svg"
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Micro",
  10839. height: math.unit(1, "mm"),
  10840. default: true
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(6, "feet"),
  10849. weight: math.unit(150, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/judio/front.svg",
  10853. extra: 1258 / 1110
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(5 + 6 / 12, "feet")
  10861. },
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(1000, "feet"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Megamacro",
  10869. height: math.unit(10, "miles")
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10875. {
  10876. front: {
  10877. height: math.unit(6, "feet"),
  10878. weight: math.unit(68, "kg"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/nomaxice/front.svg",
  10882. extra: 1498 / 1073,
  10883. bottom: 0.075
  10884. }
  10885. },
  10886. foot: {
  10887. height: math.unit(1.1, "feet"),
  10888. name: "Foot",
  10889. image: {
  10890. source: "./media/characters/nomaxice/foot.svg"
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Micro",
  10897. height: math.unit(8, "cm")
  10898. },
  10899. {
  10900. name: "Norm",
  10901. height: math.unit(1.82, "m")
  10902. },
  10903. {
  10904. name: "Norm+",
  10905. height: math.unit(8.8, "feet")
  10906. },
  10907. {
  10908. name: "Big",
  10909. height: math.unit(8, "meters"),
  10910. default: true
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(18, "meters")
  10915. },
  10916. {
  10917. name: "Macro+",
  10918. height: math.unit(88, "meters")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(12, "feet"),
  10927. weight: math.unit(1.5, "tons"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/dydros/front.svg",
  10931. extra: 863 / 800,
  10932. bottom: 0.015
  10933. }
  10934. },
  10935. back: {
  10936. height: math.unit(12, "feet"),
  10937. weight: math.unit(1.5, "tons"),
  10938. name: "Back",
  10939. image: {
  10940. source: "./media/characters/dydros/back.svg",
  10941. extra: 900 / 843,
  10942. bottom: 0.005
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(12, "feet"),
  10950. default: true
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(100, "kg"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/riggi/front.svg",
  10963. extra: 5787 / 5303
  10964. }
  10965. },
  10966. hyper: {
  10967. height: math.unit(6 * 5 / 3, "feet"),
  10968. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10969. name: "Hyper",
  10970. image: {
  10971. source: "./media/characters/riggi/hyper.svg",
  10972. extra: 3595 / 3485
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Small Macro",
  10979. height: math.unit(50, "feet")
  10980. },
  10981. {
  10982. name: "Default",
  10983. height: math.unit(200, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Loom",
  10988. height: math.unit(10000, "feet")
  10989. },
  10990. {
  10991. name: "Cruising Altitude",
  10992. height: math.unit(30000, "feet")
  10993. },
  10994. {
  10995. name: "Megamacro",
  10996. height: math.unit(100, "miles")
  10997. },
  10998. {
  10999. name: "Continent Sized",
  11000. height: math.unit(2800, "miles")
  11001. },
  11002. {
  11003. name: "Earth Sized",
  11004. height: math.unit(8000, "miles")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(250, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/alexi/front.svg",
  11017. extra: 3483 / 3291,
  11018. bottom: 0.04
  11019. }
  11020. },
  11021. back: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(250, "lb"),
  11024. name: "Back",
  11025. image: {
  11026. source: "./media/characters/alexi/back.svg",
  11027. extra: 3533 / 3356,
  11028. bottom: 0.021
  11029. }
  11030. },
  11031. frontTransforming: {
  11032. height: math.unit(8.58, "feet"),
  11033. weight: math.unit(1300, "lb"),
  11034. name: "Transforming",
  11035. image: {
  11036. source: "./media/characters/alexi/front-transforming.svg",
  11037. extra: 437 / 409,
  11038. bottom: 19 / 458.66
  11039. }
  11040. },
  11041. frontTransformed: {
  11042. height: math.unit(12.5, "feet"),
  11043. weight: math.unit(4000, "lb"),
  11044. name: "Transformed",
  11045. image: {
  11046. source: "./media/characters/alexi/front-transformed.svg",
  11047. extra: 639 / 614,
  11048. bottom: 30.55 / 671
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(14, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Minimacro",
  11060. height: math.unit(30, "meters")
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(500, "meters")
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(9000, "km")
  11069. },
  11070. {
  11071. name: "Teramacro",
  11072. height: math.unit(384000, "km")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(150, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/kayroo/front.svg",
  11085. extra: 1153 / 1038,
  11086. bottom: 0.06
  11087. }
  11088. },
  11089. foot: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(150, "lb"),
  11092. name: "Foot",
  11093. image: {
  11094. source: "./media/characters/kayroo/foot.svg"
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(8, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Minimacro",
  11106. height: math.unit(250, "feet")
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(2800, "feet")
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(5200, "feet")
  11115. },
  11116. {
  11117. name: "Gigamacro",
  11118. height: math.unit(27000, "feet")
  11119. },
  11120. {
  11121. name: "Omega",
  11122. height: math.unit(45000, "feet")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(18, "feet"),
  11131. weight: math.unit(5800, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/rhys/front.svg",
  11135. extra: 3386 / 3090,
  11136. bottom: 0.07
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(18, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Working Size",
  11148. height: math.unit(200, "feet")
  11149. },
  11150. {
  11151. name: "Demolition Size",
  11152. height: math.unit(2000, "feet")
  11153. },
  11154. {
  11155. name: "Maximum Licensed Size",
  11156. height: math.unit(5, "miles")
  11157. },
  11158. {
  11159. name: "Maximum Observed Size",
  11160. height: math.unit(10, "yottameters")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(6, "feet"),
  11169. weight: math.unit(250, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/toto/front.svg",
  11173. extra: 527 / 479,
  11174. bottom: 0.05
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Micro",
  11181. height: math.unit(3, "feet")
  11182. },
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(10, "feet")
  11186. },
  11187. {
  11188. name: "Macro",
  11189. height: math.unit(150, "feet"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(1200, "feet")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "King", species: ["lion"], tags: ["anthro"] },
  11200. {
  11201. back: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Back",
  11205. image: {
  11206. source: "./media/characters/king/back.svg"
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Micro",
  11213. height: math.unit(2, "inches")
  11214. },
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(8, "feet")
  11218. },
  11219. {
  11220. name: "Macro",
  11221. height: math.unit(200, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(50, "miles")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(11, "feet"),
  11235. weight: math.unit(1400, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/cordite/front.svg",
  11239. extra: 1919/1827,
  11240. bottom: 40/1959
  11241. }
  11242. },
  11243. side: {
  11244. height: math.unit(11, "feet"),
  11245. weight: math.unit(1400, "lb"),
  11246. name: "Side",
  11247. image: {
  11248. source: "./media/characters/cordite/side.svg",
  11249. extra: 1908/1793,
  11250. bottom: 38/1946
  11251. }
  11252. },
  11253. back: {
  11254. height: math.unit(11, "feet"),
  11255. weight: math.unit(1400, "lb"),
  11256. name: "Back",
  11257. image: {
  11258. source: "./media/characters/cordite/back.svg",
  11259. extra: 1938/1837,
  11260. bottom: 10/1948
  11261. }
  11262. },
  11263. feral: {
  11264. height: math.unit(2, "feet"),
  11265. weight: math.unit(90, "lb"),
  11266. name: "Feral",
  11267. image: {
  11268. source: "./media/characters/cordite/feral.svg",
  11269. extra: 1260 / 755,
  11270. bottom: 0.05
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(11, "feet"),
  11278. default: true
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(150, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/pianostrong/front.svg",
  11291. extra: 6577 / 6254,
  11292. bottom: 0.02
  11293. }
  11294. },
  11295. side: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(150, "lb"),
  11298. name: "Side",
  11299. image: {
  11300. source: "./media/characters/pianostrong/side.svg",
  11301. extra: 6106 / 5730
  11302. }
  11303. },
  11304. back: {
  11305. height: math.unit(6, "feet"),
  11306. weight: math.unit(150, "lb"),
  11307. name: "Back",
  11308. image: {
  11309. source: "./media/characters/pianostrong/back.svg",
  11310. extra: 6085 / 5733,
  11311. bottom: 0.01
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(100, "feet")
  11319. },
  11320. {
  11321. name: "Macro+",
  11322. height: math.unit(300, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro++",
  11327. height: math.unit(1000, "feet")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(150, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/kona/front.svg",
  11340. extra: 2960 / 2629,
  11341. bottom: 0.005
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(11 + 8 / 12, "feet")
  11349. },
  11350. {
  11351. name: "Macro",
  11352. height: math.unit(850, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Macro+",
  11357. height: math.unit(1.5, "km"),
  11358. default: true
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(80, "miles")
  11363. },
  11364. {
  11365. name: "Gigamacro",
  11366. height: math.unit(3500, "miles")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11372. {
  11373. side: {
  11374. height: math.unit(1.9, "meters"),
  11375. weight: math.unit(326, "kg"),
  11376. name: "Side",
  11377. image: {
  11378. source: "./media/characters/levi/side.svg",
  11379. extra: 1704 / 1334,
  11380. bottom: 0.02
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(1.9, "meters"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(20, "meters")
  11393. },
  11394. {
  11395. name: "Macro+",
  11396. height: math.unit(200, "meters")
  11397. },
  11398. {
  11399. name: "Megamacro",
  11400. height: math.unit(2, "km")
  11401. },
  11402. {
  11403. name: "Megamacro+",
  11404. height: math.unit(20, "km")
  11405. },
  11406. {
  11407. name: "Gigamacro",
  11408. height: math.unit(2500, "km")
  11409. },
  11410. {
  11411. name: "Gigamacro+",
  11412. height: math.unit(120000, "km")
  11413. },
  11414. {
  11415. name: "Teramacro",
  11416. height: math.unit(7.77e6, "km")
  11417. },
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(6 + 4/12, "feet"),
  11425. weight: math.unit(190, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/bmc/front.svg",
  11429. extra: 1626/1472,
  11430. bottom: 79/1705
  11431. }
  11432. },
  11433. back: {
  11434. height: math.unit(6 + 4/12, "feet"),
  11435. weight: math.unit(190, "lb"),
  11436. name: "Back",
  11437. image: {
  11438. source: "./media/characters/bmc/back.svg",
  11439. extra: 1640/1479,
  11440. bottom: 45/1685
  11441. }
  11442. },
  11443. frontArmor: {
  11444. height: math.unit(6 + 4/12, "feet"),
  11445. weight: math.unit(190, "lb"),
  11446. name: "Front-armor",
  11447. image: {
  11448. source: "./media/characters/bmc/front-armor.svg",
  11449. extra: 1538/1468,
  11450. bottom: 79/1617
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Human-sized",
  11457. height: math.unit(6 + 4 / 12, "feet")
  11458. },
  11459. {
  11460. name: "Interactive Size",
  11461. height: math.unit(25, "feet")
  11462. },
  11463. {
  11464. name: "Small",
  11465. height: math.unit(250, "feet")
  11466. },
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(1250, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Good Day",
  11474. height: math.unit(88, "miles")
  11475. },
  11476. {
  11477. name: "Largest Measured Size",
  11478. height: math.unit(105.960, "galaxies")
  11479. },
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11484. {
  11485. front: {
  11486. height: math.unit(20, "feet"),
  11487. weight: math.unit(2016, "kg"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/sven-the-kaiju/front.svg",
  11491. extra: 1277/1250,
  11492. bottom: 35/1312
  11493. }
  11494. },
  11495. mouth: {
  11496. height: math.unit(1.85, "feet"),
  11497. name: "Mouth",
  11498. image: {
  11499. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Fairy",
  11506. height: math.unit(6, "inches")
  11507. },
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(20, "feet"),
  11511. default: true
  11512. },
  11513. {
  11514. name: "Rampage",
  11515. height: math.unit(200, "feet")
  11516. },
  11517. {
  11518. name: "Archfey Forest Guardian",
  11519. height: math.unit(1, "mile")
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11525. {
  11526. front: {
  11527. height: math.unit(4, "meters"),
  11528. weight: math.unit(2, "tons"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/marik/front.svg",
  11532. extra: 1057 / 1003,
  11533. bottom: 0.08
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(4, "meters"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(20, "meters")
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(50, "km")
  11550. },
  11551. {
  11552. name: "Gigamacro",
  11553. height: math.unit(100, "km")
  11554. },
  11555. {
  11556. name: "Alpha Macro",
  11557. height: math.unit(7.88e7, "yottameters")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(6, "feet"),
  11566. weight: math.unit(110, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/mel/front.svg",
  11570. extra: 736 / 617,
  11571. bottom: 0.017
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Pico",
  11578. height: math.unit(3, "pm")
  11579. },
  11580. {
  11581. name: "Nano",
  11582. height: math.unit(3, "nm")
  11583. },
  11584. {
  11585. name: "Micro",
  11586. height: math.unit(0.3, "mm"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Micro+",
  11591. height: math.unit(3, "mm")
  11592. },
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(5 + 10.5 / 12, "feet")
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11601. {
  11602. kaiju: {
  11603. height: math.unit(1.75, "meters"),
  11604. weight: math.unit(55, "kg"),
  11605. name: "Kaiju",
  11606. image: {
  11607. source: "./media/characters/lykonous/kaiju.svg",
  11608. extra: 1055 / 946,
  11609. bottom: 0.135
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Normal",
  11616. height: math.unit(2.5, "meters"),
  11617. default: true
  11618. },
  11619. {
  11620. name: "Kaiju Dragon",
  11621. height: math.unit(60, "meters")
  11622. },
  11623. {
  11624. name: "Mega Kaiju",
  11625. height: math.unit(120, "km")
  11626. },
  11627. {
  11628. name: "Giga Kaiju",
  11629. height: math.unit(200, "megameters")
  11630. },
  11631. {
  11632. name: "Terra Kaiju",
  11633. height: math.unit(400, "gigameters")
  11634. },
  11635. {
  11636. name: "Kaiju Dragon God",
  11637. height: math.unit(13000, "exaparsecs")
  11638. },
  11639. ]
  11640. ))
  11641. characterMakers.push(() => makeCharacter(
  11642. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11643. {
  11644. front: {
  11645. height: math.unit(6, "feet"),
  11646. weight: math.unit(150, "lb"),
  11647. name: "Front",
  11648. image: {
  11649. source: "./media/characters/blü/front.svg",
  11650. extra: 1883 / 1564,
  11651. bottom: 0.031
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(13, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Big Boi",
  11663. height: math.unit(150, "meters")
  11664. },
  11665. {
  11666. name: "Mini Stomper",
  11667. height: math.unit(300, "meters")
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(1000, "meters")
  11672. },
  11673. {
  11674. name: "Megamacro",
  11675. height: math.unit(11000, "meters")
  11676. },
  11677. {
  11678. name: "Gigamacro",
  11679. height: math.unit(11000, "km")
  11680. },
  11681. {
  11682. name: "Teramacro",
  11683. height: math.unit(420000, "km")
  11684. },
  11685. {
  11686. name: "Examacro",
  11687. height: math.unit(120, "parsecs")
  11688. },
  11689. {
  11690. name: "God Tho",
  11691. height: math.unit(98000000000, "parsecs")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11697. {
  11698. taurFront: {
  11699. height: math.unit(6, "feet"),
  11700. weight: math.unit(200, "lb"),
  11701. name: "Taur (Front)",
  11702. image: {
  11703. source: "./media/characters/scales/taur-front.svg",
  11704. extra: 1,
  11705. bottom: 0.05
  11706. }
  11707. },
  11708. taurBack: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(200, "lb"),
  11711. name: "Taur (Back)",
  11712. image: {
  11713. source: "./media/characters/scales/taur-back.svg",
  11714. extra: 1,
  11715. bottom: 0.08
  11716. }
  11717. },
  11718. anthro: {
  11719. height: math.unit(6 * 7 / 12, "feet"),
  11720. weight: math.unit(100, "lb"),
  11721. name: "Anthro",
  11722. image: {
  11723. source: "./media/characters/scales/anthro.svg",
  11724. extra: 1,
  11725. bottom: 0.06
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(12, "feet"),
  11733. default: true
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(6, "feet"),
  11742. weight: math.unit(150, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/koragos/front.svg",
  11746. extra: 841 / 794,
  11747. bottom: 0.035
  11748. }
  11749. },
  11750. back: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(150, "lb"),
  11753. name: "Back",
  11754. image: {
  11755. source: "./media/characters/koragos/back.svg",
  11756. extra: 841 / 810,
  11757. bottom: 0.022
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(6 + 11 / 12, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(490, "feet")
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(10, "miles")
  11774. },
  11775. {
  11776. name: "Gigamacro",
  11777. height: math.unit(50, "miles")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(250, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/xylrem/front.svg",
  11790. extra: 3323 / 3050,
  11791. bottom: 0.065
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Micro",
  11798. height: math.unit(4, "feet")
  11799. },
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(16, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(2720, "feet")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(25000, "miles")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(8, "feet"),
  11820. weight: math.unit(250, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/ikideru/front.svg",
  11824. extra: 930 / 870,
  11825. bottom: 0.087
  11826. }
  11827. },
  11828. back: {
  11829. height: math.unit(8, "feet"),
  11830. weight: math.unit(250, "kg"),
  11831. name: "Back",
  11832. image: {
  11833. source: "./media/characters/ikideru/back.svg",
  11834. extra: 919 / 852,
  11835. bottom: 0.055
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Rare",
  11842. height: math.unit(8, "feet"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Playful Loom",
  11847. height: math.unit(80, "feet")
  11848. },
  11849. {
  11850. name: "City Leaner",
  11851. height: math.unit(230, "feet")
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(2500, "feet")
  11856. },
  11857. {
  11858. name: "Gigamacro",
  11859. height: math.unit(26400, "feet")
  11860. },
  11861. {
  11862. name: "Tectonic Shifter",
  11863. height: math.unit(1.7, "megameters")
  11864. },
  11865. {
  11866. name: "Planet Carer",
  11867. height: math.unit(21, "megameters")
  11868. },
  11869. {
  11870. name: "God",
  11871. height: math.unit(11157.22, "parsecs")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(6, "feet"),
  11880. weight: math.unit(120, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/neo/front.svg"
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Micro",
  11890. height: math.unit(2, "inches"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Human Size",
  11895. height: math.unit(5 + 8 / 12, "feet")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(13 + 10 / 12, "feet"),
  11904. weight: math.unit(5320, "lb"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/chauncey-chantz/front.svg",
  11908. extra: 1587 / 1435,
  11909. bottom: 0.02
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(13 + 10 / 12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(45, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(250, "miles")
  11926. },
  11927. {
  11928. name: "Planetary",
  11929. height: math.unit(10000, "miles")
  11930. },
  11931. {
  11932. name: "Galactic",
  11933. height: math.unit(40000, "parsecs")
  11934. },
  11935. {
  11936. name: "Universal",
  11937. height: math.unit(1, "yottameter")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(150, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/epifox/front.svg",
  11950. extra: 1,
  11951. bottom: 0.075
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(6, "inches")
  11959. },
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(12, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(3810, "feet")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(500, "miles")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(1.8796, "m"),
  11980. weight: math.unit(230, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/colin-t/front.svg",
  11984. extra: 1272 / 1193,
  11985. bottom: 0.07
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Micro",
  11992. height: math.unit(0.571, "meters")
  11993. },
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(1.8796, "meters"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Tall",
  12001. height: math.unit(4, "meters")
  12002. },
  12003. {
  12004. name: "Macro",
  12005. height: math.unit(67.241, "meters")
  12006. },
  12007. {
  12008. name: "Megamacro",
  12009. height: math.unit(371.856, "meters")
  12010. },
  12011. {
  12012. name: "Planetary",
  12013. height: math.unit(12631.5689, "km")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(1.85, "meters"),
  12022. weight: math.unit(80, "kg"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/matvei/front.svg",
  12026. extra: 614 / 594,
  12027. bottom: 0.01
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(1.85, "meters"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(5 + 9 / 12, "feet"),
  12044. weight: math.unit(70, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/quincy/front.svg",
  12048. extra: 3041 / 2751
  12049. }
  12050. },
  12051. back: {
  12052. height: math.unit(5 + 9 / 12, "feet"),
  12053. weight: math.unit(70, "lb"),
  12054. name: "Back",
  12055. image: {
  12056. source: "./media/characters/quincy/back.svg",
  12057. extra: 3041 / 2751
  12058. }
  12059. },
  12060. flying: {
  12061. height: math.unit(5 + 4 / 12, "feet"),
  12062. weight: math.unit(70, "lb"),
  12063. name: "Flying",
  12064. image: {
  12065. source: "./media/characters/quincy/flying.svg",
  12066. extra: 1044 / 930
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Micro",
  12073. height: math.unit(3, "cm")
  12074. },
  12075. {
  12076. name: "Normal",
  12077. height: math.unit(5 + 9 / 12, "feet")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(200, "meters"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Megamacro",
  12086. height: math.unit(1000, "meters")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(3 + 11/12, "feet"),
  12095. weight: math.unit(50, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/vanrel/front.svg",
  12099. extra: 1104/949,
  12100. bottom: 52/1156
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(3 + 11/12, "feet"),
  12105. weight: math.unit(50, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/vanrel/back.svg",
  12109. extra: 1119/976,
  12110. bottom: 37/1156
  12111. }
  12112. },
  12113. tome: {
  12114. height: math.unit(1.35, "feet"),
  12115. weight: math.unit(10, "lb"),
  12116. name: "Vanrel's Tome",
  12117. rename: true,
  12118. image: {
  12119. source: "./media/characters/vanrel/tome.svg"
  12120. }
  12121. },
  12122. beans: {
  12123. height: math.unit(0.89, "feet"),
  12124. name: "Beans",
  12125. image: {
  12126. source: "./media/characters/vanrel/beans.svg"
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(3 + 11/12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(7 + 5 / 12, "feet"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/kuiper-vanrel/front.svg",
  12146. extra: 1219/1169,
  12147. bottom: 69/1288
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(7 + 5 / 12, "feet"),
  12152. name: "Back",
  12153. image: {
  12154. source: "./media/characters/kuiper-vanrel/back.svg",
  12155. extra: 1236/1193,
  12156. bottom: 27/1263
  12157. }
  12158. },
  12159. foot: {
  12160. height: math.unit(0.55, "meters"),
  12161. name: "Foot",
  12162. image: {
  12163. source: "./media/characters/kuiper-vanrel/foot.svg",
  12164. }
  12165. },
  12166. battle: {
  12167. height: math.unit(6.824, "feet"),
  12168. name: "Battle",
  12169. image: {
  12170. source: "./media/characters/kuiper-vanrel/battle.svg",
  12171. extra: 1466 / 1327,
  12172. bottom: 29 / 1492.5
  12173. }
  12174. },
  12175. meerkui: {
  12176. height: math.unit(18, "inches"),
  12177. name: "Meerkui",
  12178. image: {
  12179. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12180. extra: 1354/1289,
  12181. bottom: 69/1423
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(7 + 5 / 12, "feet"),
  12189. default: true
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(8 + 5 / 12, "feet"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/keset-vanrel/front.svg",
  12201. extra: 1231/1148,
  12202. bottom: 82/1313
  12203. }
  12204. },
  12205. back: {
  12206. height: math.unit(8 + 5 / 12, "feet"),
  12207. name: "Back",
  12208. image: {
  12209. source: "./media/characters/keset-vanrel/back.svg",
  12210. extra: 1240/1174,
  12211. bottom: 33/1273
  12212. }
  12213. },
  12214. hand: {
  12215. height: math.unit(0.6, "meters"),
  12216. name: "Hand",
  12217. image: {
  12218. source: "./media/characters/keset-vanrel/hand.svg"
  12219. }
  12220. },
  12221. foot: {
  12222. height: math.unit(0.94978, "meters"),
  12223. name: "Foot",
  12224. image: {
  12225. source: "./media/characters/keset-vanrel/foot.svg"
  12226. }
  12227. },
  12228. battle: {
  12229. height: math.unit(7.408, "feet"),
  12230. name: "Battle",
  12231. image: {
  12232. source: "./media/characters/keset-vanrel/battle.svg",
  12233. extra: 1890 / 1386,
  12234. bottom: 73.28 / 1970
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(8 + 5 / 12, "feet"),
  12242. default: true
  12243. },
  12244. ]
  12245. ))
  12246. characterMakers.push(() => makeCharacter(
  12247. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12248. {
  12249. front: {
  12250. height: math.unit(6, "feet"),
  12251. weight: math.unit(150, "lb"),
  12252. name: "Front",
  12253. image: {
  12254. source: "./media/characters/neos/front.svg",
  12255. extra: 1696 / 992,
  12256. bottom: 0.14
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Normal",
  12263. height: math.unit(54, "cm"),
  12264. default: true
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(100, "m")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(10, "km")
  12273. },
  12274. {
  12275. name: "Megamacro+",
  12276. height: math.unit(100, "km")
  12277. },
  12278. {
  12279. name: "Gigamacro",
  12280. height: math.unit(100, "Mm")
  12281. },
  12282. {
  12283. name: "Teramacro",
  12284. height: math.unit(100, "Gm")
  12285. },
  12286. {
  12287. name: "Examacro",
  12288. height: math.unit(100, "Em")
  12289. },
  12290. {
  12291. name: "Godly",
  12292. height: math.unit(10000, "Ym")
  12293. },
  12294. {
  12295. name: "Beyond Godly",
  12296. height: math.unit(25, "multiverses")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12302. {
  12303. feminine: {
  12304. height: math.unit(5, "feet"),
  12305. weight: math.unit(100, "lb"),
  12306. name: "Feminine",
  12307. image: {
  12308. source: "./media/characters/sammy-mouse/feminine.svg",
  12309. extra: 2526 / 2425,
  12310. bottom: 0.123
  12311. }
  12312. },
  12313. masculine: {
  12314. height: math.unit(5, "feet"),
  12315. weight: math.unit(100, "lb"),
  12316. name: "Masculine",
  12317. image: {
  12318. source: "./media/characters/sammy-mouse/masculine.svg",
  12319. extra: 2526 / 2425,
  12320. bottom: 0.123
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Micro",
  12327. height: math.unit(5, "inches")
  12328. },
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(5, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(60, "feet")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(4, "feet"),
  12345. weight: math.unit(50, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/kole/front.svg",
  12349. extra: 1423 / 1303,
  12350. bottom: 0.025
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(4, "feet"),
  12355. weight: math.unit(50, "lb"),
  12356. name: "Back",
  12357. image: {
  12358. source: "./media/characters/kole/back.svg",
  12359. extra: 1426 / 1280,
  12360. bottom: 0.02
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(4, "feet"),
  12368. default: true
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(2.5, "feet"),
  12377. weight: math.unit(32, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/rufran/front.svg",
  12381. extra: 1313/885,
  12382. bottom: 94/1407
  12383. }
  12384. },
  12385. side: {
  12386. height: math.unit(2.5, "feet"),
  12387. weight: math.unit(32, "lb"),
  12388. name: "Side",
  12389. image: {
  12390. source: "./media/characters/rufran/side.svg",
  12391. extra: 1109/852,
  12392. bottom: 118/1227
  12393. }
  12394. },
  12395. back: {
  12396. height: math.unit(2.5, "feet"),
  12397. weight: math.unit(32, "lb"),
  12398. name: "Back",
  12399. image: {
  12400. source: "./media/characters/rufran/back.svg",
  12401. extra: 1280/878,
  12402. bottom: 131/1411
  12403. }
  12404. },
  12405. mouth: {
  12406. height: math.unit(1.13, "feet"),
  12407. name: "Mouth",
  12408. image: {
  12409. source: "./media/characters/rufran/mouth.svg"
  12410. }
  12411. },
  12412. foot: {
  12413. height: math.unit(1.33, "feet"),
  12414. name: "Foot",
  12415. image: {
  12416. source: "./media/characters/rufran/foot.svg"
  12417. }
  12418. },
  12419. koboldFront: {
  12420. height: math.unit(2 + 6 / 12, "feet"),
  12421. weight: math.unit(20, "lb"),
  12422. name: "Front (Kobold)",
  12423. image: {
  12424. source: "./media/characters/rufran/kobold-front.svg",
  12425. extra: 2041 / 1839,
  12426. bottom: 0.055
  12427. }
  12428. },
  12429. koboldBack: {
  12430. height: math.unit(2 + 6 / 12, "feet"),
  12431. weight: math.unit(20, "lb"),
  12432. name: "Back (Kobold)",
  12433. image: {
  12434. source: "./media/characters/rufran/kobold-back.svg",
  12435. extra: 2054 / 1839,
  12436. bottom: 0.01
  12437. }
  12438. },
  12439. koboldHand: {
  12440. height: math.unit(0.2166, "meters"),
  12441. name: "Hand (Kobold)",
  12442. image: {
  12443. source: "./media/characters/rufran/kobold-hand.svg"
  12444. }
  12445. },
  12446. koboldFoot: {
  12447. height: math.unit(0.185, "meters"),
  12448. name: "Foot (Kobold)",
  12449. image: {
  12450. source: "./media/characters/rufran/kobold-foot.svg"
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Micro",
  12457. height: math.unit(1, "inch")
  12458. },
  12459. {
  12460. name: "Normal",
  12461. height: math.unit(2 + 6 / 12, "feet"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Big",
  12466. height: math.unit(60, "feet")
  12467. },
  12468. {
  12469. name: "Macro",
  12470. height: math.unit(325, "feet")
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12476. {
  12477. front: {
  12478. height: math.unit(0.3, "meters"),
  12479. weight: math.unit(3.5, "kg"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/chip/front.svg",
  12483. extra: 748 / 674
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Micro",
  12490. height: math.unit(1, "inch"),
  12491. default: true
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12497. {
  12498. side: {
  12499. height: math.unit(2.3, "meters"),
  12500. weight: math.unit(3500, "lb"),
  12501. name: "Side",
  12502. image: {
  12503. source: "./media/characters/torvid/side.svg",
  12504. extra: 1972 / 722,
  12505. bottom: 0.035
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(2.3, "meters"),
  12513. default: true
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12519. {
  12520. front: {
  12521. height: math.unit(2, "meters"),
  12522. weight: math.unit(150.5, "kg"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/susan/front.svg",
  12526. extra: 693 / 635,
  12527. bottom: 0.05
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Megamacro",
  12534. height: math.unit(505, "miles"),
  12535. default: true
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(6, "feet"),
  12544. weight: math.unit(150, "lb"),
  12545. name: "Front",
  12546. image: {
  12547. source: "./media/characters/raindrops/front.svg",
  12548. extra: 2655 / 2461,
  12549. bottom: 49 / 2705
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/raindrops/back.svg",
  12558. extra: 2574 / 2400,
  12559. bottom: 65 / 2634
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(6, "inches")
  12567. },
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(6 + 2 / 12, "feet")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(131, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(15, "miles")
  12580. },
  12581. {
  12582. name: "Gigamacro",
  12583. height: math.unit(4000, "miles")
  12584. },
  12585. {
  12586. name: "Teramacro",
  12587. height: math.unit(315000, "miles")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(2.794, "meters"),
  12596. weight: math.unit(325, "kg"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/tezwa/front.svg",
  12600. extra: 2083 / 1906,
  12601. bottom: 0.031
  12602. }
  12603. },
  12604. foot: {
  12605. height: math.unit(0.687, "meters"),
  12606. name: "Foot",
  12607. image: {
  12608. source: "./media/characters/tezwa/foot.svg"
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(9 + 2 / 12, "feet"),
  12616. default: true
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(58, "feet"),
  12625. weight: math.unit(89000, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/typhus/front.svg",
  12629. extra: 816 / 800,
  12630. bottom: 0.065
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Macro",
  12637. height: math.unit(58, "feet"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(12, "feet"),
  12647. weight: math.unit(6, "tonnes"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/lyra-von-wulf/front.svg",
  12651. extra: 1,
  12652. bottom: 0.10
  12653. }
  12654. },
  12655. frontMecha: {
  12656. height: math.unit(12, "feet"),
  12657. weight: math.unit(12, "tonnes"),
  12658. name: "Front (Mecha)",
  12659. image: {
  12660. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12661. extra: 1,
  12662. bottom: 0.042
  12663. }
  12664. },
  12665. maw: {
  12666. height: math.unit(2.2, "feet"),
  12667. name: "Maw",
  12668. image: {
  12669. source: "./media/characters/lyra-von-wulf/maw.svg"
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(12, "feet"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Classic",
  12681. height: math.unit(50, "feet")
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(500, "feet")
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(1, "mile")
  12690. },
  12691. {
  12692. name: "Gigamacro",
  12693. height: math.unit(400, "miles")
  12694. },
  12695. {
  12696. name: "Teramacro",
  12697. height: math.unit(22000, "miles")
  12698. },
  12699. {
  12700. name: "Solarmacro",
  12701. height: math.unit(8600000, "miles")
  12702. },
  12703. {
  12704. name: "Galactic",
  12705. height: math.unit(1057000, "lightyears")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12711. {
  12712. front: {
  12713. height: math.unit(6 + 10 / 12, "feet"),
  12714. weight: math.unit(150, "lb"),
  12715. name: "Front",
  12716. image: {
  12717. source: "./media/characters/dixon/front.svg",
  12718. extra: 3361 / 3209,
  12719. bottom: 0.01
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(6 + 10 / 12, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Big",
  12731. height: math.unit(12, "meters")
  12732. },
  12733. {
  12734. name: "Macro",
  12735. height: math.unit(500, "meters")
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(2, "km")
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12745. {
  12746. front: {
  12747. height: math.unit(185, "cm"),
  12748. weight: math.unit(68, "kg"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/kauko/front.svg",
  12752. extra: 1455 / 1421,
  12753. bottom: 0.03
  12754. }
  12755. },
  12756. back: {
  12757. height: math.unit(185, "cm"),
  12758. weight: math.unit(68, "kg"),
  12759. name: "Back",
  12760. image: {
  12761. source: "./media/characters/kauko/back.svg",
  12762. extra: 1455 / 1421,
  12763. bottom: 0.004
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Normal",
  12770. height: math.unit(185, "cm"),
  12771. default: true
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(150, "kg"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/varg/front.svg",
  12784. extra: 1108 / 1018,
  12785. bottom: 0.0375
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(5, "meters")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(200, "meters")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(20, "kilometers")
  12801. },
  12802. {
  12803. name: "True Size",
  12804. height: math.unit(211, "km"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Gigamacro",
  12809. height: math.unit(1000, "km")
  12810. },
  12811. {
  12812. name: "Gigamacro+",
  12813. height: math.unit(8000, "km")
  12814. },
  12815. {
  12816. name: "Teramacro",
  12817. height: math.unit(1000000, "km")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(7 + 7 / 12, "feet"),
  12826. weight: math.unit(267, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/dayza/front.svg",
  12830. extra: 1262 / 1200,
  12831. bottom: 0.035
  12832. }
  12833. },
  12834. side: {
  12835. height: math.unit(7 + 7 / 12, "feet"),
  12836. weight: math.unit(267, "lb"),
  12837. name: "Side",
  12838. image: {
  12839. source: "./media/characters/dayza/side.svg",
  12840. extra: 1295 / 1245,
  12841. bottom: 0.05
  12842. }
  12843. },
  12844. back: {
  12845. height: math.unit(7 + 7 / 12, "feet"),
  12846. weight: math.unit(267, "lb"),
  12847. name: "Back",
  12848. image: {
  12849. source: "./media/characters/dayza/back.svg",
  12850. extra: 1241 / 1170
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Normal",
  12857. height: math.unit(7 + 7 / 12, "feet"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Macro",
  12862. height: math.unit(155, "feet")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6 + 5 / 12, "feet"),
  12871. weight: math.unit(160, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/xanthos/front.svg",
  12875. extra: 1,
  12876. bottom: 0.04
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(6 + 5 / 12, "feet"),
  12881. weight: math.unit(160, "lb"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/xanthos/back.svg",
  12885. extra: 1,
  12886. bottom: 0.03
  12887. }
  12888. },
  12889. hand: {
  12890. height: math.unit(0.928, "feet"),
  12891. name: "Hand",
  12892. image: {
  12893. source: "./media/characters/xanthos/hand.svg"
  12894. }
  12895. },
  12896. foot: {
  12897. height: math.unit(1.286, "feet"),
  12898. name: "Foot",
  12899. image: {
  12900. source: "./media/characters/xanthos/foot.svg"
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(6 + 5 / 12, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Normal+",
  12912. height: math.unit(6, "meters")
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(40, "feet")
  12917. },
  12918. {
  12919. name: "Macro+",
  12920. height: math.unit(200, "meters")
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(20, "km")
  12925. },
  12926. {
  12927. name: "Megamacro+",
  12928. height: math.unit(100, "km")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(200, "megameters")
  12933. },
  12934. {
  12935. name: "Gigamacro+",
  12936. height: math.unit(1.5, "gigameters")
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(6 + 3 / 12, "feet"),
  12945. weight: math.unit(215, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/grynn/front.svg",
  12949. extra: 4627 / 4209,
  12950. bottom: 0.047
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Micro",
  12957. height: math.unit(6, "inches")
  12958. },
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(6 + 3 / 12, "feet"),
  12962. default: true
  12963. },
  12964. {
  12965. name: "Big",
  12966. height: math.unit(104, "feet")
  12967. },
  12968. {
  12969. name: "Macro",
  12970. height: math.unit(944, "feet")
  12971. },
  12972. {
  12973. name: "Macro+",
  12974. height: math.unit(9480, "feet")
  12975. },
  12976. {
  12977. name: "Megamacro",
  12978. height: math.unit(78752, "feet")
  12979. },
  12980. {
  12981. name: "Megamacro+",
  12982. height: math.unit(630128, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro++",
  12986. height: math.unit(3150695, "feet")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12992. {
  12993. front: {
  12994. height: math.unit(7 + 5 / 12, "feet"),
  12995. weight: math.unit(450, "lb"),
  12996. name: "Front",
  12997. image: {
  12998. source: "./media/characters/mocha-aura/front.svg",
  12999. extra: 1907 / 1817,
  13000. bottom: 0.04
  13001. }
  13002. },
  13003. back: {
  13004. height: math.unit(7 + 5 / 12, "feet"),
  13005. weight: math.unit(450, "lb"),
  13006. name: "Back",
  13007. image: {
  13008. source: "./media/characters/mocha-aura/back.svg",
  13009. extra: 1900 / 1825,
  13010. bottom: 0.045
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Nano",
  13017. height: math.unit(1, "nm")
  13018. },
  13019. {
  13020. name: "Megamicro",
  13021. height: math.unit(1, "mm")
  13022. },
  13023. {
  13024. name: "Micro",
  13025. height: math.unit(3, "inches")
  13026. },
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(7 + 5 / 12, "feet"),
  13030. default: true
  13031. },
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(30, "feet")
  13035. },
  13036. {
  13037. name: "Megamacro",
  13038. height: math.unit(3500, "feet")
  13039. },
  13040. {
  13041. name: "Teramacro",
  13042. height: math.unit(500000, "miles")
  13043. },
  13044. {
  13045. name: "Petamacro",
  13046. height: math.unit(50000000000000000, "parsecs")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(6, "feet"),
  13055. weight: math.unit(150, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/ilisha-devya/front.svg",
  13059. extra: 1,
  13060. bottom: 0.175
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(150, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/ilisha-devya/back.svg",
  13069. extra: 1,
  13070. bottom: 0.015
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(500, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(10, "miles")
  13083. },
  13084. {
  13085. name: "Gigamacro",
  13086. height: math.unit(100000, "miles")
  13087. },
  13088. {
  13089. name: "Examacro",
  13090. height: math.unit(1e9, "lightyears")
  13091. },
  13092. {
  13093. name: "Omniversal",
  13094. height: math.unit(1e33, "lightyears")
  13095. },
  13096. {
  13097. name: "Beyond Infinite",
  13098. height: math.unit(1e100, "lightyears")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13104. {
  13105. Side: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Side",
  13109. image: {
  13110. source: "./media/characters/mira/side.svg",
  13111. extra: 900 / 799,
  13112. bottom: 0.02
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Human Size",
  13119. height: math.unit(6, "feet")
  13120. },
  13121. {
  13122. name: "Macro",
  13123. height: math.unit(100, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Megamacro",
  13128. height: math.unit(10, "miles")
  13129. },
  13130. {
  13131. name: "Gigamacro",
  13132. height: math.unit(25000, "miles")
  13133. },
  13134. {
  13135. name: "Teramacro",
  13136. height: math.unit(300, "AU")
  13137. },
  13138. {
  13139. name: "Full Size",
  13140. height: math.unit(4.5e10, "lightyears")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(150, "lb"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/holly/front.svg",
  13153. extra: 639 / 606
  13154. }
  13155. },
  13156. back: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Back",
  13160. image: {
  13161. source: "./media/characters/holly/back.svg",
  13162. extra: 623 / 598
  13163. }
  13164. },
  13165. frontWorking: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Front (Working)",
  13169. image: {
  13170. source: "./media/characters/holly/front-working.svg",
  13171. extra: 607 / 577,
  13172. bottom: 0.048
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(12 + 3 / 12, "feet"),
  13180. default: true
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/porter/front.svg",
  13193. extra: 1,
  13194. bottom: 0.01
  13195. }
  13196. },
  13197. frontRobes: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Front (Robes)",
  13201. image: {
  13202. source: "./media/characters/porter/front-robes.svg",
  13203. extra: 1.01,
  13204. bottom: 0.01
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(11 + 9 / 12, "feet"),
  13212. default: true
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13218. {
  13219. legendary: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Legendary",
  13223. image: {
  13224. source: "./media/characters/lucy/legendary.svg",
  13225. extra: 1355 / 1100,
  13226. bottom: 0.045
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Legendary",
  13233. height: math.unit(86882 * 2, "miles"),
  13234. default: true
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(150, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/drusilla/front.svg",
  13247. extra: 678 / 635,
  13248. bottom: 0.03
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/drusilla/back.svg",
  13257. extra: 678 / 635,
  13258. bottom: 0.005
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Macro",
  13265. height: math.unit(100, "feet")
  13266. },
  13267. {
  13268. name: "Canon Height",
  13269. height: math.unit(2000, "feet"),
  13270. default: true
  13271. },
  13272. ]
  13273. ))
  13274. characterMakers.push(() => makeCharacter(
  13275. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13276. {
  13277. front: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(180, "lb"),
  13280. name: "Front",
  13281. image: {
  13282. source: "./media/characters/renard-thatch/front.svg",
  13283. extra: 2411 / 2275,
  13284. bottom: 0.01
  13285. }
  13286. },
  13287. frontPosing: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(180, "lb"),
  13290. name: "Front (Posing)",
  13291. image: {
  13292. source: "./media/characters/renard-thatch/front-posing.svg",
  13293. extra: 2381 / 2261,
  13294. bottom: 0.01
  13295. }
  13296. },
  13297. back: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(180, "lb"),
  13300. name: "Back",
  13301. image: {
  13302. source: "./media/characters/renard-thatch/back.svg",
  13303. extra: 2428 / 2288
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Micro",
  13310. height: math.unit(3, "inches")
  13311. },
  13312. {
  13313. name: "Default",
  13314. height: math.unit(6, "feet"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(75, "feet")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(1450, "feet"),
  13328. weight: math.unit(1.21e6, "tons"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/sekvra/front.svg",
  13332. extra: 1,
  13333. bottom: 0.03
  13334. }
  13335. },
  13336. frontClothed: {
  13337. height: math.unit(1450, "feet"),
  13338. weight: math.unit(1.21e6, "tons"),
  13339. name: "Front (Clothed)",
  13340. image: {
  13341. source: "./media/characters/sekvra/front-clothed.svg",
  13342. extra: 1,
  13343. bottom: 0.03
  13344. }
  13345. },
  13346. side: {
  13347. height: math.unit(1450, "feet"),
  13348. weight: math.unit(1.21e6, "tons"),
  13349. name: "Side",
  13350. image: {
  13351. source: "./media/characters/sekvra/side.svg",
  13352. extra: 1,
  13353. bottom: 0.025
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(1450, "feet"),
  13358. weight: math.unit(1.21e6, "tons"),
  13359. name: "Back",
  13360. image: {
  13361. source: "./media/characters/sekvra/back.svg",
  13362. extra: 1,
  13363. bottom: 0.005
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Macro",
  13370. height: math.unit(1450, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(15000, "feet")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(150, "lb"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/carmine/front.svg",
  13388. extra: 1,
  13389. bottom: 0.035
  13390. }
  13391. },
  13392. frontArmor: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Front (Armor)",
  13396. image: {
  13397. source: "./media/characters/carmine/front-armor.svg",
  13398. extra: 1,
  13399. bottom: 0.035
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Large",
  13406. height: math.unit(1, "mile")
  13407. },
  13408. {
  13409. name: "Huge",
  13410. height: math.unit(40, "miles"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Colossal",
  13415. height: math.unit(2500, "miles")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/elyssia/front.svg",
  13428. extra: 2201 / 2035,
  13429. bottom: 0.05
  13430. }
  13431. },
  13432. frontClothed: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Front (Clothed)",
  13436. image: {
  13437. source: "./media/characters/elyssia/front-clothed.svg",
  13438. extra: 2201 / 2035,
  13439. bottom: 0.05
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/elyssia/back.svg",
  13448. extra: 2201 / 2035,
  13449. bottom: 0.013
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Smaller",
  13456. height: math.unit(150, "feet")
  13457. },
  13458. {
  13459. name: "Standard",
  13460. height: math.unit(1400, "feet"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Distracted",
  13465. height: math.unit(15000, "feet")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(7 + 4 / 12, "feet"),
  13474. weight: math.unit(500, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/geno-maxwell/front.svg",
  13478. extra: 2207 / 2040,
  13479. bottom: 0.015
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "Micro",
  13486. height: math.unit(3, "inches")
  13487. },
  13488. {
  13489. name: "Normal",
  13490. height: math.unit(7 + 4 / 12, "feet"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Macro",
  13495. height: math.unit(220, "feet")
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(11, "miles")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(7 + 4 / 12, "feet"),
  13508. weight: math.unit(500, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/regena-maxwell/front.svg",
  13512. extra: 3115 / 2770,
  13513. bottom: 0.02
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(7 + 4 / 12, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Macro",
  13525. height: math.unit(220, "feet")
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(11, "miles")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(150, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13542. extra: 860 / 690,
  13543. bottom: 0.03
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(1.7, "meters"),
  13551. default: true
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(6, "feet"),
  13560. weight: math.unit(150, "lb"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/quilly/front.svg",
  13564. extra: 890 / 776
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Gigamacro",
  13571. height: math.unit(404090, "miles"),
  13572. default: true
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(7 + 8 / 12, "feet"),
  13581. weight: math.unit(350, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/tempest/front.svg",
  13585. extra: 1175 / 1086,
  13586. bottom: 0.02
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(7 + 8 / 12, "feet"),
  13594. default: true
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13600. {
  13601. side: {
  13602. height: math.unit(4 + 5 / 12, "feet"),
  13603. weight: math.unit(80, "lb"),
  13604. name: "Side",
  13605. image: {
  13606. source: "./media/characters/rodger/side.svg",
  13607. extra: 1235 / 1118
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Micro",
  13614. height: math.unit(1, "inch")
  13615. },
  13616. {
  13617. name: "Normal",
  13618. height: math.unit(4 + 5 / 12, "feet"),
  13619. default: true
  13620. },
  13621. {
  13622. name: "Macro",
  13623. height: math.unit(120, "feet")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13629. {
  13630. front: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(150, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/danyel/front.svg",
  13636. extra: 1185 / 1123,
  13637. bottom: 0.05
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Shrunken",
  13644. height: math.unit(0.5, "mm")
  13645. },
  13646. {
  13647. name: "Micro",
  13648. height: math.unit(1, "mm"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Upsized",
  13653. height: math.unit(5 + 5 / 12, "feet")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(5 + 6 / 12, "feet"),
  13662. weight: math.unit(200, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/vivian-bijoux/front.svg",
  13666. extra: 1,
  13667. bottom: 0.072
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(5 + 6 / 12, "feet"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Bad Dream",
  13679. height: math.unit(500, "feet")
  13680. },
  13681. {
  13682. name: "Nightmare",
  13683. height: math.unit(500, "miles")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(6 + 1 / 12, "feet"),
  13692. weight: math.unit(260, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/zeta/front.svg",
  13696. extra: 1968 / 1889,
  13697. bottom: 0.06
  13698. }
  13699. },
  13700. back: {
  13701. height: math.unit(6 + 1 / 12, "feet"),
  13702. weight: math.unit(260, "lb"),
  13703. name: "Back",
  13704. image: {
  13705. source: "./media/characters/zeta/back.svg",
  13706. extra: 1944 / 1858,
  13707. bottom: 0.03
  13708. }
  13709. },
  13710. hand: {
  13711. height: math.unit(1.112, "feet"),
  13712. name: "Hand",
  13713. image: {
  13714. source: "./media/characters/zeta/hand.svg"
  13715. }
  13716. },
  13717. foot: {
  13718. height: math.unit(1.48, "feet"),
  13719. name: "Foot",
  13720. image: {
  13721. source: "./media/characters/zeta/foot.svg"
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Micro",
  13728. height: math.unit(6, "inches")
  13729. },
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(6 + 1 / 12, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(20, "feet")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/jamie-larsen/front.svg",
  13750. extra: 962 / 933,
  13751. bottom: 0.02
  13752. }
  13753. },
  13754. back: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Back",
  13758. image: {
  13759. source: "./media/characters/jamie-larsen/back.svg",
  13760. extra: 997 / 946
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Macro",
  13767. height: math.unit(28 + 7 / 12, "feet"),
  13768. default: true
  13769. },
  13770. {
  13771. name: "Macro+",
  13772. height: math.unit(180, "feet")
  13773. },
  13774. {
  13775. name: "Megamacro",
  13776. height: math.unit(10, "miles")
  13777. },
  13778. {
  13779. name: "Gigamacro",
  13780. height: math.unit(200000, "miles")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(120, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/vance/front.svg",
  13793. extra: 1980 / 1890,
  13794. bottom: 0.09
  13795. }
  13796. },
  13797. back: {
  13798. height: math.unit(6, "feet"),
  13799. weight: math.unit(120, "lb"),
  13800. name: "Back",
  13801. image: {
  13802. source: "./media/characters/vance/back.svg",
  13803. extra: 2081 / 1994,
  13804. bottom: 0.014
  13805. }
  13806. },
  13807. hand: {
  13808. height: math.unit(0.88, "feet"),
  13809. name: "Hand",
  13810. image: {
  13811. source: "./media/characters/vance/hand.svg"
  13812. }
  13813. },
  13814. foot: {
  13815. height: math.unit(0.64, "feet"),
  13816. name: "Foot",
  13817. image: {
  13818. source: "./media/characters/vance/foot.svg"
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Small",
  13825. height: math.unit(90, "feet"),
  13826. default: true
  13827. },
  13828. {
  13829. name: "Macro",
  13830. height: math.unit(100, "meters")
  13831. },
  13832. {
  13833. name: "Megamacro",
  13834. height: math.unit(15, "miles")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(180, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/xochitl/front.svg",
  13847. extra: 2297 / 2261,
  13848. bottom: 0.065
  13849. }
  13850. },
  13851. back: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(180, "lb"),
  13854. name: "Back",
  13855. image: {
  13856. source: "./media/characters/xochitl/back.svg",
  13857. extra: 2386 / 2354,
  13858. bottom: 0.01
  13859. }
  13860. },
  13861. foot: {
  13862. height: math.unit(6 / 5 * 1.15, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Foot",
  13865. image: {
  13866. source: "./media/characters/xochitl/foot.svg"
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(80, "feet")
  13874. },
  13875. {
  13876. name: "Macro+",
  13877. height: math.unit(400, "feet"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Gigamacro",
  13882. height: math.unit(80000, "miles")
  13883. },
  13884. {
  13885. name: "Gigamacro+",
  13886. height: math.unit(400000, "miles")
  13887. },
  13888. {
  13889. name: "Teramacro",
  13890. height: math.unit(300, "AU")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/vincent/front.svg",
  13903. extra: 1130 / 1080,
  13904. bottom: 0.055
  13905. }
  13906. },
  13907. beak: {
  13908. height: math.unit(6 * 0.1, "feet"),
  13909. name: "Beak",
  13910. image: {
  13911. source: "./media/characters/vincent/beak.svg"
  13912. }
  13913. },
  13914. hand: {
  13915. height: math.unit(6 * 0.85, "feet"),
  13916. weight: math.unit(150, "lb"),
  13917. name: "Hand",
  13918. image: {
  13919. source: "./media/characters/vincent/hand.svg"
  13920. }
  13921. },
  13922. foot: {
  13923. height: math.unit(6 * 0.19, "feet"),
  13924. weight: math.unit(150, "lb"),
  13925. name: "Foot",
  13926. image: {
  13927. source: "./media/characters/vincent/foot.svg"
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Base",
  13934. height: math.unit(6 + 5 / 12, "feet"),
  13935. default: true
  13936. },
  13937. {
  13938. name: "Macro",
  13939. height: math.unit(300, "feet")
  13940. },
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(2, "miles")
  13944. },
  13945. {
  13946. name: "Gigamacro",
  13947. height: math.unit(1000, "miles")
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13953. {
  13954. front: {
  13955. height: math.unit(2, "meters"),
  13956. weight: math.unit(500, "kg"),
  13957. name: "Front",
  13958. image: {
  13959. source: "./media/characters/coatl/front.svg",
  13960. extra: 3948 / 3500,
  13961. bottom: 0.082
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Normal",
  13968. height: math.unit(4, "meters")
  13969. },
  13970. {
  13971. name: "Macro",
  13972. height: math.unit(100, "meters"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Macro+",
  13977. height: math.unit(300, "meters")
  13978. },
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(3, "gigameters")
  13982. },
  13983. {
  13984. name: "Megamacro+",
  13985. height: math.unit(300, "terameters")
  13986. },
  13987. {
  13988. name: "Megamacro++",
  13989. height: math.unit(3, "lightyears")
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13995. {
  13996. front: {
  13997. height: math.unit(6, "feet"),
  13998. weight: math.unit(50, "kg"),
  13999. name: "front",
  14000. image: {
  14001. source: "./media/characters/shiroryu/front.svg",
  14002. extra: 1990 / 1935
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Mortal Mingling",
  14009. height: math.unit(3, "meters")
  14010. },
  14011. {
  14012. name: "Kaiju-ish",
  14013. height: math.unit(250, "meters")
  14014. },
  14015. {
  14016. name: "Somewhat Godly",
  14017. height: math.unit(400, "km"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Planetary",
  14022. height: math.unit(300, "megameters")
  14023. },
  14024. {
  14025. name: "Galaxy-dwarfing",
  14026. height: math.unit(450, "kiloparsecs")
  14027. },
  14028. {
  14029. name: "Universe Eater",
  14030. height: math.unit(150, "gigaparsecs")
  14031. },
  14032. {
  14033. name: "Almost Immeasurable",
  14034. height: math.unit(1.3e266, "yottaparsecs")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(150, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/umeko/front.svg",
  14047. extra: 1,
  14048. bottom: 0.019
  14049. }
  14050. },
  14051. frontArmored: {
  14052. height: math.unit(6, "feet"),
  14053. weight: math.unit(150, "lb"),
  14054. name: "Front (Armored)",
  14055. image: {
  14056. source: "./media/characters/umeko/front-armored.svg",
  14057. extra: 1,
  14058. bottom: 0.021
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Macro",
  14065. height: math.unit(220, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Guardian Dragon",
  14070. height: math.unit(50, "miles")
  14071. },
  14072. {
  14073. name: "Cosmic",
  14074. height: math.unit(800000, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/cassidy/front.svg",
  14087. extra: 1,
  14088. bottom: 0.043
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Canon Height",
  14095. height: math.unit(120, "feet"),
  14096. default: true
  14097. },
  14098. {
  14099. name: "Macro+",
  14100. height: math.unit(400, "feet")
  14101. },
  14102. {
  14103. name: "Macro++",
  14104. height: math.unit(4000, "feet")
  14105. },
  14106. {
  14107. name: "Megamacro",
  14108. height: math.unit(3, "miles")
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(6, "feet"),
  14117. weight: math.unit(150, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/isaac/front.svg",
  14121. extra: 896 / 815,
  14122. bottom: 0.11
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Human Size",
  14129. height: math.unit(8, "feet"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Macro",
  14134. height: math.unit(400, "feet")
  14135. },
  14136. {
  14137. name: "Megamacro",
  14138. height: math.unit(50, "miles")
  14139. },
  14140. {
  14141. name: "Canon Height",
  14142. height: math.unit(200, "AU")
  14143. },
  14144. ]
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(72, "kg"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/sleekit/front.svg",
  14155. extra: 4693 / 4487,
  14156. bottom: 0.012
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Minimum Height",
  14163. height: math.unit(10, "meters")
  14164. },
  14165. {
  14166. name: "Smaller",
  14167. height: math.unit(25, "meters")
  14168. },
  14169. {
  14170. name: "Larger",
  14171. height: math.unit(38, "meters"),
  14172. default: true
  14173. },
  14174. {
  14175. name: "Maximum height",
  14176. height: math.unit(100, "meters")
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/nillia/front.svg",
  14189. extra: 2195 / 2037,
  14190. bottom: 0.005
  14191. }
  14192. },
  14193. back: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(150, "lb"),
  14196. name: "Back",
  14197. image: {
  14198. source: "./media/characters/nillia/back.svg",
  14199. extra: 2195 / 2037,
  14200. bottom: 0.005
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Canon Height",
  14207. height: math.unit(489, "feet"),
  14208. default: true
  14209. }
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(6, "feet"),
  14217. weight: math.unit(150, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/mesmyriza/front.svg",
  14221. extra: 2067 / 1784,
  14222. bottom: 0.035
  14223. }
  14224. },
  14225. foot: {
  14226. height: math.unit(6 / (250 / 35), "feet"),
  14227. name: "Foot",
  14228. image: {
  14229. source: "./media/characters/mesmyriza/foot.svg"
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Macro",
  14236. height: math.unit(457, "meters"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Megamacro",
  14241. height: math.unit(8, "megameters")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(250, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/saudade/front.svg",
  14254. extra: 1172 / 1139,
  14255. bottom: 0.035
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Micro",
  14262. height: math.unit(3, "inches")
  14263. },
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(6, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(50, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(2800, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(5 + 4 / 12, "feet"),
  14284. weight: math.unit(100, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/keireer/front.svg",
  14288. extra: 716 / 666,
  14289. bottom: 0.05
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(5 + 4 / 12, "feet"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(90, "kg"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/mirja/front.svg",
  14310. extra: 1789 / 1683,
  14311. bottom: 0.05
  14312. }
  14313. },
  14314. frontDressed: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(90, "lb"),
  14317. name: "Front (Dressed)",
  14318. image: {
  14319. source: "./media/characters/mirja/front-dressed.svg",
  14320. extra: 1789 / 1683,
  14321. bottom: 0.05
  14322. }
  14323. },
  14324. back: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(90, "lb"),
  14327. name: "Back",
  14328. image: {
  14329. source: "./media/characters/mirja/back.svg",
  14330. extra: 953 / 917,
  14331. bottom: 0.017
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "\"Incognito\"",
  14338. height: math.unit(3, "meters")
  14339. },
  14340. {
  14341. name: "Strolling Size",
  14342. height: math.unit(15, "km")
  14343. },
  14344. {
  14345. name: "Larger Strolling Size",
  14346. height: math.unit(400, "km")
  14347. },
  14348. {
  14349. name: "Preferred Size",
  14350. height: math.unit(5000, "km")
  14351. },
  14352. {
  14353. name: "True Size",
  14354. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14355. default: true
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14361. {
  14362. front: {
  14363. height: math.unit(15, "feet"),
  14364. weight: math.unit(880, "kg"),
  14365. name: "Front",
  14366. image: {
  14367. source: "./media/characters/nightraver/front.svg",
  14368. extra: 2444 / 2160,
  14369. bottom: 0.027
  14370. }
  14371. },
  14372. back: {
  14373. height: math.unit(15, "feet"),
  14374. weight: math.unit(880, "kg"),
  14375. name: "Back",
  14376. image: {
  14377. source: "./media/characters/nightraver/back.svg",
  14378. extra: 2309 / 2180,
  14379. bottom: 0.005
  14380. }
  14381. },
  14382. sole: {
  14383. height: math.unit(2.878, "feet"),
  14384. name: "Sole",
  14385. image: {
  14386. source: "./media/characters/nightraver/sole.svg"
  14387. }
  14388. },
  14389. foot: {
  14390. height: math.unit(2.285, "feet"),
  14391. name: "Foot",
  14392. image: {
  14393. source: "./media/characters/nightraver/foot.svg"
  14394. }
  14395. },
  14396. maw: {
  14397. height: math.unit(2.67, "feet"),
  14398. name: "Maw",
  14399. image: {
  14400. source: "./media/characters/nightraver/maw.svg"
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Micro",
  14407. height: math.unit(1, "cm")
  14408. },
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(15, "feet"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Macro",
  14416. height: math.unit(300, "feet")
  14417. },
  14418. {
  14419. name: "Megamacro",
  14420. height: math.unit(300, "miles")
  14421. },
  14422. {
  14423. name: "Gigamacro",
  14424. height: math.unit(10000, "miles")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14430. {
  14431. side: {
  14432. height: math.unit(2, "inches"),
  14433. weight: math.unit(5, "grams"),
  14434. name: "Side",
  14435. image: {
  14436. source: "./media/characters/arc/side.svg"
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Micro",
  14443. height: math.unit(2, "inches"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(1.1938, "meters"),
  14453. weight: math.unit(54, "kg"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/nebula-shahar/front.svg",
  14457. extra: 1642 / 1436,
  14458. bottom: 0.06
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Megamicro",
  14465. height: math.unit(0.3, "mm")
  14466. },
  14467. {
  14468. name: "Micro",
  14469. height: math.unit(3, "cm")
  14470. },
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(138, "cm"),
  14474. default: true
  14475. },
  14476. {
  14477. name: "Macro",
  14478. height: math.unit(30, "m")
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(5.24, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/shayla/front.svg",
  14491. extra: 1512 / 1414,
  14492. bottom: 0.01
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(5.24, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/shayla/back.svg",
  14501. extra: 1512 / 1414
  14502. }
  14503. },
  14504. hand: {
  14505. height: math.unit(0.7781496062992126, "feet"),
  14506. name: "Hand",
  14507. image: {
  14508. source: "./media/characters/shayla/hand.svg"
  14509. }
  14510. },
  14511. foot: {
  14512. height: math.unit(1.4206036745406823, "feet"),
  14513. name: "Foot",
  14514. image: {
  14515. source: "./media/characters/shayla/foot.svg"
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Micro",
  14522. height: math.unit(0.32, "feet")
  14523. },
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(5.24, "feet"),
  14527. default: true
  14528. },
  14529. {
  14530. name: "Macro",
  14531. height: math.unit(492.12, "feet")
  14532. },
  14533. {
  14534. name: "Megamacro",
  14535. height: math.unit(186.41, "miles")
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(2.2, "m"),
  14544. weight: math.unit(120, "kg"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/pia-jr/front.svg",
  14548. extra: 1000 / 970,
  14549. bottom: 0.035
  14550. }
  14551. },
  14552. hand: {
  14553. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14554. name: "Hand",
  14555. image: {
  14556. source: "./media/characters/pia-jr/hand.svg"
  14557. }
  14558. },
  14559. paw: {
  14560. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14561. name: "Paw",
  14562. image: {
  14563. source: "./media/characters/pia-jr/paw.svg"
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Micro",
  14570. height: math.unit(1.2, "cm")
  14571. },
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(2.2, "m"),
  14575. default: true
  14576. },
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(180, "m")
  14580. },
  14581. {
  14582. name: "Megamacro",
  14583. height: math.unit(420, "km")
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(2, "m"),
  14592. weight: math.unit(115, "kg"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/pia-sr/front.svg",
  14596. extra: 760 / 730,
  14597. bottom: 0.015
  14598. }
  14599. },
  14600. back: {
  14601. height: math.unit(2, "m"),
  14602. weight: math.unit(115, "kg"),
  14603. name: "Back",
  14604. image: {
  14605. source: "./media/characters/pia-sr/back.svg",
  14606. extra: 760 / 730,
  14607. bottom: 0.01
  14608. }
  14609. },
  14610. hand: {
  14611. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14612. name: "Hand",
  14613. image: {
  14614. source: "./media/characters/pia-sr/hand.svg"
  14615. }
  14616. },
  14617. foot: {
  14618. height: math.unit(1.83, "feet"),
  14619. name: "Foot",
  14620. image: {
  14621. source: "./media/characters/pia-sr/foot.svg"
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Micro",
  14628. height: math.unit(88, "mm")
  14629. },
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(2, "m"),
  14633. default: true
  14634. },
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(200, "m")
  14638. },
  14639. {
  14640. name: "Megamacro",
  14641. height: math.unit(420, "km")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(8 + 2 / 12, "feet"),
  14650. weight: math.unit(300, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/kibibyte/front.svg",
  14654. extra: 2221 / 2098,
  14655. bottom: 0.04
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(8 + 2 / 12, "feet"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Socialable Macro",
  14667. height: math.unit(50, "feet")
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(300, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(500, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/felix/front.svg",
  14688. extra: 762 / 722,
  14689. bottom: 0.02
  14690. }
  14691. },
  14692. frontClothed: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front (Clothed)",
  14696. image: {
  14697. source: "./media/characters/felix/front-clothed.svg",
  14698. extra: 762 / 722,
  14699. bottom: 0.02
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(6 + 8 / 12, "feet"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Macro",
  14711. height: math.unit(2600, "feet")
  14712. },
  14713. {
  14714. name: "Megamacro",
  14715. height: math.unit(450, "miles")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(6 + 1 / 12, "feet"),
  14724. weight: math.unit(250, "lb"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/tobo/front.svg",
  14728. extra: 608 / 586,
  14729. bottom: 0.023
  14730. }
  14731. },
  14732. back: {
  14733. height: math.unit(6 + 1 / 12, "feet"),
  14734. weight: math.unit(250, "lb"),
  14735. name: "Back",
  14736. image: {
  14737. source: "./media/characters/tobo/back.svg",
  14738. extra: 608 / 586
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Nano",
  14745. height: math.unit(2, "nm")
  14746. },
  14747. {
  14748. name: "Megamicro",
  14749. height: math.unit(0.1, "mm")
  14750. },
  14751. {
  14752. name: "Micro",
  14753. height: math.unit(1, "inch"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Human-sized",
  14758. height: math.unit(6 + 1 / 12, "feet")
  14759. },
  14760. {
  14761. name: "Macro",
  14762. height: math.unit(250, "feet")
  14763. },
  14764. {
  14765. name: "Megamacro",
  14766. height: math.unit(75, "miles")
  14767. },
  14768. {
  14769. name: "Texas-sized",
  14770. height: math.unit(750, "miles")
  14771. },
  14772. {
  14773. name: "Teramacro",
  14774. height: math.unit(50000, "miles")
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(269, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/danny-kapowsky/front.svg",
  14787. extra: 766 / 736,
  14788. bottom: 0.044
  14789. }
  14790. },
  14791. back: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(269, "lb"),
  14794. name: "Back",
  14795. image: {
  14796. source: "./media/characters/danny-kapowsky/back.svg",
  14797. extra: 797 / 760,
  14798. bottom: 0.025
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(150, "feet"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Macro+",
  14810. height: math.unit(200, "feet")
  14811. },
  14812. {
  14813. name: "Macro++",
  14814. height: math.unit(300, "feet")
  14815. },
  14816. {
  14817. name: "Macro+++",
  14818. height: math.unit(400, "feet")
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14824. {
  14825. side: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(170, "lb"),
  14828. name: "Side",
  14829. image: {
  14830. source: "./media/characters/finn/side.svg",
  14831. extra: 1953 / 1807,
  14832. bottom: 0.057
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Megamacro",
  14839. height: math.unit(14445, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(5 + 6 / 12, "feet"),
  14849. weight: math.unit(125, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/roy/front.svg",
  14853. extra: 1,
  14854. bottom: 0.11
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Micro",
  14861. height: math.unit(3, "inches"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Normal",
  14866. height: math.unit(5 + 6 / 12, "feet")
  14867. },
  14868. {
  14869. name: "Lesser Macro",
  14870. height: math.unit(60, "feet")
  14871. },
  14872. {
  14873. name: "Greater Macro",
  14874. height: math.unit(120, "feet")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(100, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/aevsivs/front.svg",
  14887. extra: 1,
  14888. bottom: 0.03
  14889. }
  14890. },
  14891. back: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(100, "lb"),
  14894. name: "Back",
  14895. image: {
  14896. source: "./media/characters/aevsivs/back.svg"
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Micro",
  14903. height: math.unit(2, "inches"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(5, "feet")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(5 + 7 / 12, "feet"),
  14917. weight: math.unit(159, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/hildegard/front.svg",
  14921. extra: 289 / 269,
  14922. bottom: 7.63 / 297.8
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(5 + 7 / 12, "feet"),
  14927. weight: math.unit(159, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/hildegard/back.svg",
  14931. extra: 280 / 260,
  14932. bottom: 2.3 / 282
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(5 + 7 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14946. {
  14947. bernard: {
  14948. height: math.unit(2 + 7 / 12, "feet"),
  14949. weight: math.unit(66, "lb"),
  14950. name: "Bernard",
  14951. rename: true,
  14952. image: {
  14953. source: "./media/characters/bernard-wilder/bernard.svg",
  14954. extra: 192 / 128,
  14955. bottom: 0.05
  14956. }
  14957. },
  14958. wilder: {
  14959. height: math.unit(5 + 8 / 12, "feet"),
  14960. weight: math.unit(143, "lb"),
  14961. name: "Wilder",
  14962. rename: true,
  14963. image: {
  14964. source: "./media/characters/bernard-wilder/wilder.svg",
  14965. extra: 361 / 312,
  14966. bottom: 0.02
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(2 + 7 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14980. {
  14981. anthro: {
  14982. height: math.unit(6 + 1 / 12, "feet"),
  14983. weight: math.unit(155, "lb"),
  14984. name: "Anthro",
  14985. image: {
  14986. source: "./media/characters/hearth/anthro.svg",
  14987. extra: 260 / 250,
  14988. bottom: 0.02
  14989. }
  14990. },
  14991. feral: {
  14992. height: math.unit(3.78, "feet"),
  14993. weight: math.unit(35, "kg"),
  14994. name: "Feral",
  14995. image: {
  14996. source: "./media/characters/hearth/feral.svg",
  14997. extra: 153 / 135,
  14998. bottom: 0.03
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(6 + 1 / 12, "feet"),
  15006. default: true
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(182, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/ingrid/front.svg",
  15019. extra: 294 / 268,
  15020. bottom: 0.027
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(6, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15034. {
  15035. eevee: {
  15036. height: math.unit(2 + 10 / 12, "feet"),
  15037. weight: math.unit(86, "lb"),
  15038. name: "Malgam",
  15039. image: {
  15040. source: "./media/characters/malgam/eevee.svg",
  15041. extra: 218 / 180,
  15042. bottom: 0.2
  15043. }
  15044. },
  15045. sylveon: {
  15046. height: math.unit(4, "feet"),
  15047. weight: math.unit(101, "lb"),
  15048. name: "Future Malgam",
  15049. rename: true,
  15050. image: {
  15051. source: "./media/characters/malgam/sylveon.svg",
  15052. extra: 371 / 325,
  15053. bottom: 0.015
  15054. }
  15055. },
  15056. gigantamax: {
  15057. height: math.unit(50, "feet"),
  15058. name: "Gigantamax Malgam",
  15059. rename: true,
  15060. image: {
  15061. source: "./media/characters/malgam/gigantamax.svg"
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(2 + 10 / 12, "feet"),
  15069. default: true
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(5 + 11 / 12, "feet"),
  15078. weight: math.unit(188, "lb"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/fleur/front.svg",
  15082. extra: 309 / 283,
  15083. bottom: 0.007
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(5 + 11 / 12, "feet"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(5 + 4 / 12, "feet"),
  15100. weight: math.unit(122, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/jude/front.svg",
  15104. extra: 288 / 273,
  15105. bottom: 0.03
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Normal",
  15112. height: math.unit(5 + 4 / 12, "feet"),
  15113. default: true
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(5 + 11 / 12, "feet"),
  15122. weight: math.unit(190, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/seara/front.svg",
  15126. extra: 1,
  15127. bottom: 0.05
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(5 + 11 / 12, "feet"),
  15135. default: true
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(16 + 5 / 12, "feet"),
  15144. weight: math.unit(524, "lb"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/caspian/front.svg",
  15148. extra: 1,
  15149. bottom: 0.04
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Normal",
  15156. height: math.unit(16 + 5 / 12, "feet"),
  15157. default: true
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(5 + 7 / 12, "feet"),
  15166. weight: math.unit(170, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/mika/front.svg",
  15170. extra: 1,
  15171. bottom: 0.016
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(5 + 7 / 12, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(6 + 2 / 12, "feet"),
  15188. weight: math.unit(268, "lb"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/sol/front.svg",
  15192. extra: 247 / 231,
  15193. bottom: 0.05
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(6 + 2 / 12, "feet"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15207. {
  15208. buizel: {
  15209. height: math.unit(2 + 5 / 12, "feet"),
  15210. weight: math.unit(87, "lb"),
  15211. name: "Buizel",
  15212. image: {
  15213. source: "./media/characters/umiko/buizel.svg",
  15214. extra: 172 / 157,
  15215. bottom: 0.01
  15216. }
  15217. },
  15218. floatzel: {
  15219. height: math.unit(5 + 9 / 12, "feet"),
  15220. weight: math.unit(250, "lb"),
  15221. name: "Floatzel",
  15222. image: {
  15223. source: "./media/characters/umiko/floatzel.svg",
  15224. extra: 262 / 248
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(2 + 5 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6 + 2 / 12, "feet"),
  15241. weight: math.unit(146, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/iliac/front.svg",
  15245. extra: 389 / 365,
  15246. bottom: 0.035
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(6 + 2 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(170, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/topaz/front.svg",
  15267. extra: 317 / 303,
  15268. bottom: 0.055
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(6, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(5 + 11 / 12, "feet"),
  15285. weight: math.unit(144, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/gabriel/front.svg",
  15289. extra: 285 / 262,
  15290. bottom: 0.004
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(5 + 11 / 12, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15304. {
  15305. side: {
  15306. height: math.unit(6 + 5 / 12, "feet"),
  15307. weight: math.unit(300, "lb"),
  15308. name: "Side",
  15309. image: {
  15310. source: "./media/characters/tempest-suicune/side.svg",
  15311. extra: 195 / 154,
  15312. bottom: 0.04
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(6 + 5 / 12, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(7 + 2 / 12, "feet"),
  15329. weight: math.unit(322, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/vulcan/front.svg",
  15333. extra: 154 / 147,
  15334. bottom: 0.04
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(7 + 2 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(5 + 10 / 12, "feet"),
  15351. weight: math.unit(264, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/gault/front.svg",
  15355. extra: 161 / 140,
  15356. bottom: 0.028
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(5 + 10 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/shard/front.svg",
  15377. extra: 273 / 238,
  15378. bottom: 0.02
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(3 + 6 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(5 + 11 / 12, "feet"),
  15395. weight: math.unit(146, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/ashe/front.svg",
  15399. extra: 400 / 373,
  15400. bottom: 0.01
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(5 + 11 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(5 + 5 / 12, "feet"),
  15417. weight: math.unit(135, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/beatrix/front.svg",
  15421. extra: 392 / 379,
  15422. bottom: 0.01
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(6, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/ignatius/front.svg",
  15443. extra: 245 / 222,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 5 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6 + 2 / 12, "feet"),
  15461. weight: math.unit(138, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/mei-li/front.svg",
  15465. extra: 237 / 229,
  15466. bottom: 0.03
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(6 + 2 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(2 + 4 / 12, "feet"),
  15483. weight: math.unit(62, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/puru/front.svg",
  15487. extra: 206 / 149,
  15488. bottom: 0.06
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(2 + 4 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15502. {
  15503. anthro: {
  15504. height: math.unit(5 + 8/12, "feet"),
  15505. weight: math.unit(200, "lb"),
  15506. energyNeed: math.unit(2000, "kcal"),
  15507. name: "Anthro",
  15508. image: {
  15509. source: "./media/characters/kee/anthro.svg",
  15510. extra: 3251/3184,
  15511. bottom: 250/3501
  15512. }
  15513. },
  15514. taur: {
  15515. height: math.unit(11, "feet"),
  15516. weight: math.unit(500, "lb"),
  15517. energyNeed: math.unit(5000, "kcal"),
  15518. name: "Taur",
  15519. image: {
  15520. source: "./media/characters/kee/taur.svg",
  15521. extra: 1362/1320,
  15522. bottom: 83/1445
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(5 + 8/12, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(35, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15540. {
  15541. anthro: {
  15542. height: math.unit(7, "feet"),
  15543. weight: math.unit(190, "lb"),
  15544. name: "Anthro",
  15545. image: {
  15546. source: "./media/characters/cobalt-dracha/anthro.svg",
  15547. extra: 231 / 225,
  15548. bottom: 0.04
  15549. }
  15550. },
  15551. feral: {
  15552. height: math.unit(9 + 7 / 12, "feet"),
  15553. weight: math.unit(294, "lb"),
  15554. name: "Feral",
  15555. image: {
  15556. source: "./media/characters/cobalt-dracha/feral.svg",
  15557. extra: 692 / 633,
  15558. bottom: 0.05
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(7, "feet"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15572. {
  15573. fallen: {
  15574. height: math.unit(11 + 8 / 12, "feet"),
  15575. weight: math.unit(485, "lb"),
  15576. name: "Java (Fallen)",
  15577. rename: true,
  15578. image: {
  15579. source: "./media/characters/java/fallen.svg",
  15580. extra: 226 / 208,
  15581. bottom: 0.005
  15582. }
  15583. },
  15584. godkin: {
  15585. height: math.unit(10 + 6 / 12, "feet"),
  15586. weight: math.unit(328, "lb"),
  15587. name: "Java (Godkin)",
  15588. rename: true,
  15589. image: {
  15590. source: "./media/characters/java/godkin.svg",
  15591. extra: 270 / 262,
  15592. bottom: 0.02
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Normal",
  15599. height: math.unit(11 + 8 / 12, "feet"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15606. {
  15607. front: {
  15608. height: math.unit(7 + 8 / 12, "feet"),
  15609. weight: math.unit(320, "lb"),
  15610. name: "Front",
  15611. image: {
  15612. source: "./media/characters/skoll/front.svg",
  15613. extra: 232 / 220,
  15614. bottom: 0.02
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(7 + 8 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(5 + 9 / 12, "feet"),
  15631. weight: math.unit(170, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/purna/front.svg",
  15635. extra: 239 / 229,
  15636. bottom: 0.01
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Normal",
  15643. height: math.unit(5 + 9 / 12, "feet"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(5 + 9 / 12, "feet"),
  15653. weight: math.unit(142, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/kuva/front.svg",
  15657. extra: 281 / 271,
  15658. bottom: 0.006
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(5 + 9 / 12, "feet"),
  15666. default: true
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15672. {
  15673. anthro: {
  15674. height: math.unit(9 + 2 / 12, "feet"),
  15675. weight: math.unit(270, "lb"),
  15676. name: "Anthro",
  15677. image: {
  15678. source: "./media/characters/embra/anthro.svg",
  15679. extra: 200 / 187,
  15680. bottom: 0.02
  15681. }
  15682. },
  15683. feral: {
  15684. height: math.unit(18 + 8 / 12, "feet"),
  15685. weight: math.unit(576, "lb"),
  15686. name: "Feral",
  15687. image: {
  15688. source: "./media/characters/embra/feral.svg",
  15689. extra: 152 / 137,
  15690. bottom: 0.037
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(9 + 2 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15704. {
  15705. anthro: {
  15706. height: math.unit(10 + 9 / 12, "feet"),
  15707. weight: math.unit(224, "lb"),
  15708. name: "Anthro",
  15709. image: {
  15710. source: "./media/characters/grottos/anthro.svg",
  15711. extra: 350 / 332,
  15712. bottom: 0.045
  15713. }
  15714. },
  15715. feral: {
  15716. height: math.unit(20 + 7 / 12, "feet"),
  15717. weight: math.unit(629, "lb"),
  15718. name: "Feral",
  15719. image: {
  15720. source: "./media/characters/grottos/feral.svg",
  15721. extra: 207 / 190,
  15722. bottom: 0.05
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(10 + 9 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15736. {
  15737. anthro: {
  15738. height: math.unit(9 + 6 / 12, "feet"),
  15739. weight: math.unit(298, "lb"),
  15740. name: "Anthro",
  15741. image: {
  15742. source: "./media/characters/frifna/anthro.svg",
  15743. extra: 282 / 269,
  15744. bottom: 0.015
  15745. }
  15746. },
  15747. feral: {
  15748. height: math.unit(16 + 2 / 12, "feet"),
  15749. weight: math.unit(624, "lb"),
  15750. name: "Feral",
  15751. image: {
  15752. source: "./media/characters/frifna/feral.svg"
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(9 + 6 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. weight: math.unit(168, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/elise/front.svg",
  15773. extra: 276 / 271
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(6 + 2 / 12, "feet"),
  15781. default: true
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(5 + 10 / 12, "feet"),
  15790. weight: math.unit(210, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/glade/front.svg",
  15794. extra: 258 / 247,
  15795. bottom: 0.008
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(5 + 10 / 12, "feet"),
  15803. default: true
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(5 + 10 / 12, "feet"),
  15812. weight: math.unit(129, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/rina/front.svg",
  15816. extra: 266 / 255,
  15817. bottom: 0.005
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(5 + 10 / 12, "feet"),
  15825. default: true
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6 + 1 / 12, "feet"),
  15834. weight: math.unit(192, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/veronica/front.svg",
  15838. extra: 319 / 309,
  15839. bottom: 0.005
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(6 + 1 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(9 + 3 / 12, "feet"),
  15856. weight: math.unit(1100, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/braxton/front.svg",
  15860. extra: 1057 / 984,
  15861. bottom: 0.05
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(9 + 3 / 12, "feet")
  15869. },
  15870. {
  15871. name: "Giant",
  15872. height: math.unit(300, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(700, "feet")
  15878. },
  15879. {
  15880. name: "Megamacro",
  15881. height: math.unit(6000, "feet")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(6 + 7 / 12, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/blue-feyonics/front.svg",
  15894. extra: 1403 / 1306,
  15895. bottom: 0.047
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(6 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(1.8, "meters"),
  15912. weight: math.unit(60, "kg"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/maxwell/front.svg",
  15916. extra: 2060 / 1873
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Micro",
  15923. height: math.unit(1, "mm")
  15924. },
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(1.8, "meter"),
  15928. default: true
  15929. },
  15930. {
  15931. name: "Macro",
  15932. height: math.unit(30, "meters")
  15933. },
  15934. {
  15935. name: "Megamacro",
  15936. height: math.unit(10, "km")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/jack/front.svg",
  15949. extra: 1754 / 1640,
  15950. bottom: 0.01
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(80000, "feet"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Max size",
  15962. height: math.unit(10, "lightyears")
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15968. {
  15969. urban: {
  15970. height: math.unit(5, "feet"),
  15971. weight: math.unit(240, "lb"),
  15972. name: "Urban",
  15973. image: {
  15974. source: "./media/characters/cafat/urban.svg",
  15975. extra: 1223/1126,
  15976. bottom: 205/1428
  15977. }
  15978. },
  15979. summer: {
  15980. height: math.unit(5, "feet"),
  15981. weight: math.unit(240, "lb"),
  15982. name: "Summer",
  15983. image: {
  15984. source: "./media/characters/cafat/summer.svg",
  15985. extra: 1223/1126,
  15986. bottom: 205/1428
  15987. }
  15988. },
  15989. winter: {
  15990. height: math.unit(5, "feet"),
  15991. weight: math.unit(240, "lb"),
  15992. name: "Winter",
  15993. image: {
  15994. source: "./media/characters/cafat/winter.svg",
  15995. extra: 1223/1126,
  15996. bottom: 205/1428
  15997. }
  15998. },
  15999. lingerie: {
  16000. height: math.unit(5, "feet"),
  16001. weight: math.unit(240, "lb"),
  16002. name: "Lingerie",
  16003. image: {
  16004. source: "./media/characters/cafat/lingerie.svg",
  16005. extra: 1223/1126,
  16006. bottom: 205/1428
  16007. }
  16008. },
  16009. upright: {
  16010. height: math.unit(6.3, "feet"),
  16011. weight: math.unit(240, "lb"),
  16012. name: "Upright",
  16013. image: {
  16014. source: "./media/characters/cafat/upright.svg",
  16015. bottom: 0.01
  16016. }
  16017. },
  16018. uprightFull: {
  16019. height: math.unit(6.3, "feet"),
  16020. weight: math.unit(240, "lb"),
  16021. name: "Upright (Full)",
  16022. image: {
  16023. source: "./media/characters/cafat/upright-full.svg",
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Small",
  16031. height: math.unit(5, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Large",
  16036. height: math.unit(13, "feet")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6, "feet"),
  16045. weight: math.unit(150, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/verin-raharra/front.svg",
  16049. extra: 5019 / 4835,
  16050. bottom: 0.023
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(7 + 5 / 12, "feet"),
  16058. default: true
  16059. },
  16060. {
  16061. name: "Upsized",
  16062. height: math.unit(20, "feet")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(7, "feet"),
  16071. weight: math.unit(230, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/nakata/front.svg",
  16075. extra: 1.005,
  16076. bottom: 0.01
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(7, "feet"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Big",
  16088. height: math.unit(14, "feet")
  16089. },
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(400, "feet")
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(4.91, "feet"),
  16101. weight: math.unit(100, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/lily/front.svg",
  16105. extra: 1585 / 1415,
  16106. bottom: 0.02
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(4.91, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16120. {
  16121. laying: {
  16122. height: math.unit(4 + 4 / 12, "feet"),
  16123. weight: math.unit(600, "lb"),
  16124. name: "Laying",
  16125. image: {
  16126. source: "./media/characters/sheila/laying.svg",
  16127. extra: 1333 / 1265,
  16128. bottom: 0.16
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(4 + 4 / 12, "feet"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(190, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/sax/front.svg",
  16149. extra: 1187 / 973,
  16150. bottom: 0.042
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(4, "inches"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/pandora/front.svg",
  16171. extra: 2720 / 2556,
  16172. bottom: 0.015
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/pandora/back.svg",
  16181. extra: 2720 / 2556,
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. beans: {
  16186. height: math.unit(6 / 8, "feet"),
  16187. name: "Beans",
  16188. image: {
  16189. source: "./media/characters/pandora/beans.svg"
  16190. }
  16191. },
  16192. collar: {
  16193. height: math.unit(0.31, "feet"),
  16194. name: "Collar",
  16195. image: {
  16196. source: "./media/characters/pandora/collar.svg"
  16197. }
  16198. },
  16199. skirt: {
  16200. height: math.unit(6, "feet"),
  16201. weight: math.unit(150, "lb"),
  16202. name: "Skirt",
  16203. image: {
  16204. source: "./media/characters/pandora/skirt.svg",
  16205. extra: 1622 / 1525,
  16206. bottom: 0.015
  16207. }
  16208. },
  16209. hoodie: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(150, "lb"),
  16212. name: "Hoodie",
  16213. image: {
  16214. source: "./media/characters/pandora/hoodie.svg",
  16215. extra: 1622 / 1525,
  16216. bottom: 0.015
  16217. }
  16218. },
  16219. casual: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(150, "lb"),
  16222. name: "Casual",
  16223. image: {
  16224. source: "./media/characters/pandora/casual.svg",
  16225. extra: 1622 / 1525,
  16226. bottom: 0.015
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(6, "feet")
  16234. },
  16235. {
  16236. name: "Big Steppy",
  16237. height: math.unit(1, "km"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Galactic Steppy",
  16242. height: math.unit(2, "gigameters")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16248. {
  16249. side: {
  16250. height: math.unit(10, "feet"),
  16251. weight: math.unit(800, "kg"),
  16252. name: "Side",
  16253. image: {
  16254. source: "./media/characters/venio-darcony/side.svg",
  16255. extra: 1373 / 1003,
  16256. bottom: 0.037
  16257. }
  16258. },
  16259. front: {
  16260. height: math.unit(19, "feet"),
  16261. weight: math.unit(800, "kg"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/venio-darcony/front.svg"
  16265. }
  16266. },
  16267. back: {
  16268. height: math.unit(19, "feet"),
  16269. weight: math.unit(800, "kg"),
  16270. name: "Back",
  16271. image: {
  16272. source: "./media/characters/venio-darcony/back.svg"
  16273. }
  16274. },
  16275. sideNsfw: {
  16276. height: math.unit(10, "feet"),
  16277. weight: math.unit(800, "kg"),
  16278. name: "Side (NSFW)",
  16279. image: {
  16280. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16281. extra: 1373 / 1003,
  16282. bottom: 0.037
  16283. }
  16284. },
  16285. frontNsfw: {
  16286. height: math.unit(19, "feet"),
  16287. weight: math.unit(800, "kg"),
  16288. name: "Front (NSFW)",
  16289. image: {
  16290. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16291. }
  16292. },
  16293. backNsfw: {
  16294. height: math.unit(19, "feet"),
  16295. weight: math.unit(800, "kg"),
  16296. name: "Back (NSFW)",
  16297. image: {
  16298. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16299. }
  16300. },
  16301. sideArmored: {
  16302. height: math.unit(10, "feet"),
  16303. weight: math.unit(800, "kg"),
  16304. name: "Side (Armored)",
  16305. image: {
  16306. source: "./media/characters/venio-darcony/side-armored.svg",
  16307. extra: 1373 / 1003,
  16308. bottom: 0.037
  16309. }
  16310. },
  16311. frontArmored: {
  16312. height: math.unit(19, "feet"),
  16313. weight: math.unit(900, "kg"),
  16314. name: "Front (Armored)",
  16315. image: {
  16316. source: "./media/characters/venio-darcony/front-armored.svg"
  16317. }
  16318. },
  16319. backArmored: {
  16320. height: math.unit(19, "feet"),
  16321. weight: math.unit(900, "kg"),
  16322. name: "Back (Armored)",
  16323. image: {
  16324. source: "./media/characters/venio-darcony/back-armored.svg"
  16325. }
  16326. },
  16327. sword: {
  16328. height: math.unit(10, "feet"),
  16329. weight: math.unit(50, "lb"),
  16330. name: "Sword",
  16331. image: {
  16332. source: "./media/characters/venio-darcony/sword.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(10, "feet")
  16340. },
  16341. {
  16342. name: "Macro",
  16343. height: math.unit(130, "feet"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Macro+",
  16348. height: math.unit(240, "feet")
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(6, "feet"),
  16357. weight: math.unit(150, "lb"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/veski/front.svg",
  16361. extra: 1299 / 1225,
  16362. bottom: 0.04
  16363. }
  16364. },
  16365. back: {
  16366. height: math.unit(6, "feet"),
  16367. weight: math.unit(150, "lb"),
  16368. name: "Back",
  16369. image: {
  16370. source: "./media/characters/veski/back.svg",
  16371. extra: 1299 / 1225,
  16372. bottom: 0.008
  16373. }
  16374. },
  16375. maw: {
  16376. height: math.unit(1.5 * 1.21, "feet"),
  16377. name: "Maw",
  16378. image: {
  16379. source: "./media/characters/veski/maw.svg"
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(2, "km"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(5 + 7 / 12, "feet"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/isabelle/front.svg",
  16399. extra: 2130 / 1976,
  16400. bottom: 0.05
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Supermicro",
  16407. height: math.unit(10, "micrometers")
  16408. },
  16409. {
  16410. name: "Micro",
  16411. height: math.unit(1, "inch")
  16412. },
  16413. {
  16414. name: "Tiny",
  16415. height: math.unit(5, "inches")
  16416. },
  16417. {
  16418. name: "Standard",
  16419. height: math.unit(5 + 7 / 12, "inches")
  16420. },
  16421. {
  16422. name: "Macro",
  16423. height: math.unit(80, "meters"),
  16424. default: true
  16425. },
  16426. {
  16427. name: "Megamacro",
  16428. height: math.unit(250, "meters")
  16429. },
  16430. {
  16431. name: "Gigamacro",
  16432. height: math.unit(5, "km")
  16433. },
  16434. {
  16435. name: "Cosmic",
  16436. height: math.unit(2.5e6, "miles")
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(6, "feet"),
  16445. weight: math.unit(150, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/hanzo/front.svg",
  16449. extra: 374 / 344,
  16450. bottom: 0.02
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(8, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(7, "feet"),
  16467. weight: math.unit(130, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/anna/front.svg",
  16471. extra: 169 / 145,
  16472. bottom: 0.06
  16473. }
  16474. },
  16475. full: {
  16476. height: math.unit(4.96, "feet"),
  16477. weight: math.unit(220, "lb"),
  16478. name: "Full",
  16479. image: {
  16480. source: "./media/characters/anna/full.svg",
  16481. extra: 138 / 114,
  16482. bottom: 0.15
  16483. }
  16484. },
  16485. tongue: {
  16486. height: math.unit(2.53, "feet"),
  16487. name: "Tongue",
  16488. image: {
  16489. source: "./media/characters/anna/tongue.svg"
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Normal",
  16496. height: math.unit(7, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(7, "feet"),
  16506. weight: math.unit(150, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/ian-corvid/front.svg",
  16510. extra: 150 / 142,
  16511. bottom: 0.02
  16512. }
  16513. },
  16514. back: {
  16515. height: math.unit(7, "feet"),
  16516. weight: math.unit(150, "lb"),
  16517. name: "Back",
  16518. image: {
  16519. source: "./media/characters/ian-corvid/back.svg",
  16520. extra: 150 / 143,
  16521. bottom: 0.01
  16522. }
  16523. },
  16524. stomping: {
  16525. height: math.unit(7, "feet"),
  16526. weight: math.unit(150, "lb"),
  16527. name: "Stomping",
  16528. image: {
  16529. source: "./media/characters/ian-corvid/stomping.svg",
  16530. extra: 76 / 72
  16531. }
  16532. },
  16533. sitting: {
  16534. height: math.unit(7 / 1.8, "feet"),
  16535. weight: math.unit(150, "lb"),
  16536. name: "Sitting",
  16537. image: {
  16538. source: "./media/characters/ian-corvid/sitting.svg",
  16539. extra: 1400 / 1269,
  16540. bottom: 0.15
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Tiny Microw",
  16547. height: math.unit(1, "inch")
  16548. },
  16549. {
  16550. name: "Microw",
  16551. height: math.unit(6, "inches")
  16552. },
  16553. {
  16554. name: "Crow",
  16555. height: math.unit(7 + 1 / 12, "feet"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Macrow",
  16560. height: math.unit(176, "feet")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(5 + 7 / 12, "feet"),
  16569. weight: math.unit(147, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/natalie-kellon/front.svg",
  16573. extra: 1214 / 1141,
  16574. bottom: 0.02
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Micro",
  16581. height: math.unit(1 / 16, "inch")
  16582. },
  16583. {
  16584. name: "Tiny",
  16585. height: math.unit(4, "inches")
  16586. },
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(5 + 7 / 12, "feet"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Amazon",
  16594. height: math.unit(12, "feet")
  16595. },
  16596. {
  16597. name: "Giantess",
  16598. height: math.unit(160, "meters")
  16599. },
  16600. {
  16601. name: "Titaness",
  16602. height: math.unit(800, "meters")
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6, "feet"),
  16611. weight: math.unit(150, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/alluria/front.svg",
  16615. extra: 806 / 738,
  16616. bottom: 0.01
  16617. }
  16618. },
  16619. side: {
  16620. height: math.unit(6, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Side",
  16623. image: {
  16624. source: "./media/characters/alluria/side.svg",
  16625. extra: 800 / 750,
  16626. }
  16627. },
  16628. back: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(150, "lb"),
  16631. name: "Back",
  16632. image: {
  16633. source: "./media/characters/alluria/back.svg",
  16634. extra: 806 / 738,
  16635. }
  16636. },
  16637. frontMaid: {
  16638. height: math.unit(6, "feet"),
  16639. weight: math.unit(150, "lb"),
  16640. name: "Front (Maid)",
  16641. image: {
  16642. source: "./media/characters/alluria/front-maid.svg",
  16643. extra: 806 / 738,
  16644. bottom: 0.01
  16645. }
  16646. },
  16647. sideMaid: {
  16648. height: math.unit(6, "feet"),
  16649. weight: math.unit(150, "lb"),
  16650. name: "Side (Maid)",
  16651. image: {
  16652. source: "./media/characters/alluria/side-maid.svg",
  16653. extra: 800 / 750,
  16654. bottom: 0.005
  16655. }
  16656. },
  16657. backMaid: {
  16658. height: math.unit(6, "feet"),
  16659. weight: math.unit(150, "lb"),
  16660. name: "Back (Maid)",
  16661. image: {
  16662. source: "./media/characters/alluria/back-maid.svg",
  16663. extra: 806 / 738,
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Micro",
  16670. height: math.unit(6, "inches"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16677. {
  16678. front: {
  16679. height: math.unit(6, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Front",
  16682. image: {
  16683. source: "./media/characters/kyle/front.svg",
  16684. extra: 1069 / 962,
  16685. bottom: 77.228 / 1727.45
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(150, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(6, "feet"),
  16702. weight: math.unit(300, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/duncan/front.svg",
  16706. extra: 1650 / 1482,
  16707. bottom: 0.05
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Macro",
  16714. height: math.unit(100, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(5 + 4 / 12, "feet"),
  16724. weight: math.unit(220, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/memory/front.svg",
  16728. extra: 3641 / 3545,
  16729. bottom: 0.03
  16730. }
  16731. },
  16732. back: {
  16733. height: math.unit(5 + 4 / 12, "feet"),
  16734. weight: math.unit(220, "lb"),
  16735. name: "Back",
  16736. image: {
  16737. source: "./media/characters/memory/back.svg",
  16738. extra: 3641 / 3545,
  16739. bottom: 0.025
  16740. }
  16741. },
  16742. frontSkirt: {
  16743. height: math.unit(5 + 4 / 12, "feet"),
  16744. weight: math.unit(220, "lb"),
  16745. name: "Front (Skirt)",
  16746. image: {
  16747. source: "./media/characters/memory/front-skirt.svg",
  16748. extra: 3641 / 3545,
  16749. bottom: 0.03
  16750. }
  16751. },
  16752. frontDress: {
  16753. height: math.unit(5 + 4 / 12, "feet"),
  16754. weight: math.unit(220, "lb"),
  16755. name: "Front (Dress)",
  16756. image: {
  16757. source: "./media/characters/memory/front-dress.svg",
  16758. extra: 3641 / 3545,
  16759. bottom: 0.03
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Micro",
  16766. height: math.unit(6, "inches"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 4 / 12, "feet")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(4 + 11 / 12, "feet"),
  16780. weight: math.unit(100, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/luno/front.svg",
  16784. extra: 1535 / 1487,
  16785. bottom: 0.03
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Micro",
  16792. height: math.unit(3, "inches")
  16793. },
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(4 + 11 / 12, "feet"),
  16797. default: true
  16798. },
  16799. {
  16800. name: "Macro",
  16801. height: math.unit(300, "feet")
  16802. },
  16803. {
  16804. name: "Megamacro",
  16805. height: math.unit(700, "miles")
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(6 + 2 / 12, "feet"),
  16814. weight: math.unit(170, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/jamesy/front.svg",
  16818. extra: 440 / 382,
  16819. bottom: 0.005
  16820. }
  16821. },
  16822. },
  16823. [
  16824. {
  16825. name: "Micro",
  16826. height: math.unit(3, "inches")
  16827. },
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. default: true
  16832. },
  16833. {
  16834. name: "Macro",
  16835. height: math.unit(300, "feet")
  16836. },
  16837. {
  16838. name: "Megamacro",
  16839. height: math.unit(700, "miles")
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(6, "feet"),
  16848. weight: math.unit(160, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/mark/front.svg",
  16852. extra: 3300 / 3100,
  16853. bottom: 136.42 / 3440.47
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(120, "meters")
  16861. },
  16862. {
  16863. name: "Bigger Macro",
  16864. height: math.unit(350, "meters")
  16865. },
  16866. {
  16867. name: "Megamacro",
  16868. height: math.unit(8, "km"),
  16869. default: true
  16870. },
  16871. {
  16872. name: "Continental",
  16873. height: math.unit(4550, "km")
  16874. },
  16875. {
  16876. name: "Planetary",
  16877. height: math.unit(65000, "km")
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6, "feet"),
  16886. weight: math.unit(400, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/mac/front.svg",
  16890. extra: 1048 / 987.7,
  16891. bottom: 60 / 1107.6,
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Macro",
  16898. height: math.unit(500, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. weight: math.unit(190, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/bari/front.svg",
  16912. extra: 3156 / 2880,
  16913. bottom: 0.03
  16914. }
  16915. },
  16916. back: {
  16917. height: math.unit(5 + 2 / 12, "feet"),
  16918. weight: math.unit(190, "lb"),
  16919. name: "Back",
  16920. image: {
  16921. source: "./media/characters/bari/back.svg",
  16922. extra: 3260 / 2834,
  16923. bottom: 0.025
  16924. }
  16925. },
  16926. frontPlush: {
  16927. height: math.unit(5 + 2 / 12, "feet"),
  16928. weight: math.unit(190, "lb"),
  16929. name: "Front (Plush)",
  16930. image: {
  16931. source: "./media/characters/bari/front-plush.svg",
  16932. extra: 1112 / 1061,
  16933. bottom: 0.002
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Micro",
  16940. height: math.unit(3, "inches")
  16941. },
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(5 + 2 / 12, "feet"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Macro",
  16949. height: math.unit(20, "feet")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(6 + 1 / 12, "feet"),
  16958. weight: math.unit(275, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/hunter-misha-raven/front.svg"
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Mortal",
  16968. height: math.unit(6 + 1 / 12, "feet")
  16969. },
  16970. {
  16971. name: "Divine",
  16972. height: math.unit(1.12134e34, "parsecs"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(6 + 3 / 12, "feet"),
  16982. weight: math.unit(220, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/max-calore/front.svg",
  16986. extra: 1700 / 1648,
  16987. bottom: 0.01
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(6 + 3 / 12, "feet"),
  16992. weight: math.unit(220, "lb"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/max-calore/back.svg",
  16996. extra: 1700 / 1648,
  16997. bottom: 0.01
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(6 + 3 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17011. {
  17012. side: {
  17013. height: math.unit(2 + 8 / 12, "feet"),
  17014. weight: math.unit(99, "lb"),
  17015. name: "Side",
  17016. image: {
  17017. source: "./media/characters/aspen/side.svg",
  17018. extra: 152 / 138,
  17019. bottom: 0.032
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(2 + 8 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17033. {
  17034. side: {
  17035. height: math.unit(3 + 2 / 12, "feet"),
  17036. weight: math.unit(224, "lb"),
  17037. name: "Side",
  17038. image: {
  17039. source: "./media/characters/sheila-feral-wolf/side.svg",
  17040. extra: 179 / 166,
  17041. bottom: 0.03
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(3 + 2 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17055. {
  17056. side: {
  17057. height: math.unit(1 + 9 / 12, "feet"),
  17058. weight: math.unit(38, "lb"),
  17059. name: "Side",
  17060. image: {
  17061. source: "./media/characters/michelle/side.svg",
  17062. extra: 147 / 136.7,
  17063. bottom: 0.03
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(1 + 9 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(1 + 1 / 12, "feet"),
  17080. weight: math.unit(18, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/nino/front.svg"
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(1 + 1 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(1, "feet"),
  17100. weight: math.unit(16, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/viola/front.svg"
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(1, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(6 + 5 / 12, "feet"),
  17120. weight: math.unit(580, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/atlas/front.svg",
  17124. extra: 298.5 / 290,
  17125. bottom: 0.015
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(6 + 5 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17139. {
  17140. side: {
  17141. height: math.unit(1 + 10 / 12, "feet"),
  17142. weight: math.unit(25, "lb"),
  17143. name: "Side",
  17144. image: {
  17145. source: "./media/characters/davy/side.svg",
  17146. extra: 200 / 170,
  17147. bottom: 0.01
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(1 + 10 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17161. {
  17162. side: {
  17163. height: math.unit(4 + 8 / 12, "feet"),
  17164. weight: math.unit(166, "lb"),
  17165. name: "Side",
  17166. image: {
  17167. source: "./media/characters/fiona/side.svg",
  17168. extra: 232 / 220,
  17169. bottom: 0.03
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(4 + 8 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17183. {
  17184. front: {
  17185. height: math.unit(2, "feet"),
  17186. weight: math.unit(62, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/lyla/front.svg",
  17190. bottom: 0.1
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(2, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17204. {
  17205. side: {
  17206. height: math.unit(1.8, "feet"),
  17207. weight: math.unit(44, "lb"),
  17208. name: "Side",
  17209. image: {
  17210. source: "./media/characters/perseus/side.svg",
  17211. bottom: 0.21
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(1.8, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17225. {
  17226. side: {
  17227. height: math.unit(4 + 2 / 12, "feet"),
  17228. weight: math.unit(20, "lb"),
  17229. name: "Side",
  17230. image: {
  17231. source: "./media/characters/remus/side.svg"
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(4 + 2 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(4 + 11 / 12, "feet"),
  17248. weight: math.unit(114, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/raf/front.svg",
  17252. extra: 1504/1339,
  17253. bottom: 26/1530
  17254. }
  17255. },
  17256. side: {
  17257. height: math.unit(4 + 11 / 12, "feet"),
  17258. weight: math.unit(114, "lb"),
  17259. name: "Side",
  17260. image: {
  17261. source: "./media/characters/raf/side.svg",
  17262. extra: 1466/1316,
  17263. bottom: 29/1495
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Micro",
  17270. height: math.unit(2, "inches")
  17271. },
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(4 + 11 / 12, "feet"),
  17275. default: true
  17276. },
  17277. {
  17278. name: "Macro",
  17279. height: math.unit(70, "feet")
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(1.5, "meters"),
  17288. weight: math.unit(68, "kg"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/liam-einarr/front.svg",
  17292. extra: 2822 / 2666
  17293. }
  17294. },
  17295. back: {
  17296. height: math.unit(1.5, "meters"),
  17297. weight: math.unit(68, "kg"),
  17298. name: "Back",
  17299. image: {
  17300. source: "./media/characters/liam-einarr/back.svg",
  17301. extra: 2822 / 2666,
  17302. bottom: 0.015
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(1.5, "meters"),
  17310. default: true
  17311. },
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(150, "meters")
  17315. },
  17316. {
  17317. name: "Megamacro",
  17318. height: math.unit(35, "km")
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(6, "feet"),
  17327. weight: math.unit(75, "kg"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/linda/front.svg",
  17331. extra: 930 / 874,
  17332. bottom: 0.004
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(6, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(6 + 8 / 12, "feet"),
  17349. weight: math.unit(220, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/caylex/front.svg",
  17353. extra: 821 / 772,
  17354. bottom: 0.07
  17355. }
  17356. },
  17357. back: {
  17358. height: math.unit(6 + 8 / 12, "feet"),
  17359. weight: math.unit(220, "lb"),
  17360. name: "Back",
  17361. image: {
  17362. source: "./media/characters/caylex/back.svg",
  17363. extra: 821 / 772,
  17364. bottom: 0.022
  17365. }
  17366. },
  17367. hand: {
  17368. height: math.unit(1.25, "feet"),
  17369. name: "Hand",
  17370. image: {
  17371. source: "./media/characters/caylex/hand.svg"
  17372. }
  17373. },
  17374. foot: {
  17375. height: math.unit(1.6, "feet"),
  17376. name: "Foot",
  17377. image: {
  17378. source: "./media/characters/caylex/foot.svg"
  17379. }
  17380. },
  17381. armored: {
  17382. height: math.unit(6 + 8 / 12, "feet"),
  17383. weight: math.unit(250, "lb"),
  17384. name: "Armored",
  17385. image: {
  17386. source: "./media/characters/caylex/armored.svg",
  17387. extra: 1420 / 1310,
  17388. bottom: 0.045
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(6 + 8 / 12, "feet"),
  17396. default: true
  17397. },
  17398. {
  17399. name: "Normal+",
  17400. height: math.unit(12, "feet")
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(7 + 6 / 12, "feet"),
  17409. weight: math.unit(288, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/alana/front.svg",
  17413. extra: 679 / 653,
  17414. bottom: 22.5 / 701
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(7 + 6 / 12, "feet")
  17422. },
  17423. {
  17424. name: "Large",
  17425. height: math.unit(50, "feet")
  17426. },
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(100, "feet"),
  17430. default: true
  17431. },
  17432. {
  17433. name: "Macro+",
  17434. height: math.unit(200, "feet")
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(6 + 1 / 12, "feet"),
  17443. weight: math.unit(210, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/hasani/front.svg",
  17447. extra: 244 / 232,
  17448. bottom: 0.01
  17449. }
  17450. },
  17451. back: {
  17452. height: math.unit(6 + 1 / 12, "feet"),
  17453. weight: math.unit(210, "lb"),
  17454. name: "Back",
  17455. image: {
  17456. source: "./media/characters/hasani/back.svg",
  17457. extra: 244 / 232,
  17458. bottom: 0.01
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Normal",
  17465. height: math.unit(6 + 1 / 12, "feet")
  17466. },
  17467. {
  17468. name: "Macro",
  17469. height: math.unit(175, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(1.82, "meters"),
  17479. weight: math.unit(140, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/nita/front.svg",
  17483. extra: 2473 / 2363,
  17484. bottom: 0.01
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(1.82, "m")
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(300, "m")
  17496. },
  17497. {
  17498. name: "Mistake Canon",
  17499. height: math.unit(0.5, "miles"),
  17500. default: true
  17501. },
  17502. {
  17503. name: "Big Mistake",
  17504. height: math.unit(13, "miles")
  17505. },
  17506. {
  17507. name: "Playing God",
  17508. height: math.unit(2450, "miles")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(4, "feet"),
  17517. weight: math.unit(120, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/shiriko/front.svg",
  17521. extra: 970/934,
  17522. bottom: 5/975
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(4, "feet"),
  17530. default: true
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6, "feet"),
  17539. name: "front",
  17540. image: {
  17541. source: "./media/characters/deja/front.svg",
  17542. extra: 926 / 840,
  17543. bottom: 0.07
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Planck Length",
  17550. height: math.unit(1.6e-35, "meters")
  17551. },
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(30.48, "meters"),
  17555. default: true
  17556. },
  17557. {
  17558. name: "Universal",
  17559. height: math.unit(8.8e26, "meters")
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17565. {
  17566. side: {
  17567. height: math.unit(8, "feet"),
  17568. weight: math.unit(6300, "lb"),
  17569. name: "Side",
  17570. image: {
  17571. source: "./media/characters/anima/side.svg",
  17572. bottom: 0.035
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(8, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(8, "feet"),
  17589. weight: math.unit(350, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/bianca/front.svg",
  17593. extra: 234 / 225,
  17594. bottom: 0.03
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(8, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(6, "feet"),
  17611. weight: math.unit(150, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/adinia/front.svg",
  17615. extra: 1845 / 1672,
  17616. bottom: 0.02
  17617. }
  17618. },
  17619. back: {
  17620. height: math.unit(6, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Back",
  17623. image: {
  17624. source: "./media/characters/adinia/back.svg",
  17625. extra: 1845 / 1672,
  17626. bottom: 0.002
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(11 + 5 / 12, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(3, "meters"),
  17643. weight: math.unit(200, "kg"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/lykasa/front.svg",
  17647. extra: 1076 / 976,
  17648. bottom: 0.06
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(3, "meters")
  17656. },
  17657. {
  17658. name: "Kaiju",
  17659. height: math.unit(120, "meters"),
  17660. default: true
  17661. },
  17662. {
  17663. name: "Mega Kaiju",
  17664. height: math.unit(240, "km")
  17665. },
  17666. {
  17667. name: "Giga Kaiju",
  17668. height: math.unit(400, "megameters")
  17669. },
  17670. {
  17671. name: "Tera Kaiju",
  17672. height: math.unit(800, "gigameters")
  17673. },
  17674. {
  17675. name: "Kaiju Dragon Goddess",
  17676. height: math.unit(26, "zettaparsecs")
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17682. {
  17683. side: {
  17684. height: math.unit(283 / 124 * 6, "feet"),
  17685. weight: math.unit(35000, "lb"),
  17686. name: "Side",
  17687. image: {
  17688. source: "./media/characters/malfaren/side.svg",
  17689. extra: 2500 / 1010,
  17690. bottom: 0.01
  17691. }
  17692. },
  17693. front: {
  17694. height: math.unit(22.36, "feet"),
  17695. weight: math.unit(35000, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/malfaren/front.svg",
  17699. extra: 1631 / 1476,
  17700. bottom: 0.01
  17701. }
  17702. },
  17703. maw: {
  17704. height: math.unit(6.9, "feet"),
  17705. name: "Maw",
  17706. image: {
  17707. source: "./media/characters/malfaren/maw.svg"
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Big",
  17714. height: math.unit(283 / 162 * 6, "feet"),
  17715. },
  17716. {
  17717. name: "Bigger",
  17718. height: math.unit(283 / 124 * 6, "feet")
  17719. },
  17720. {
  17721. name: "Massive",
  17722. height: math.unit(283 / 92 * 6, "feet"),
  17723. default: true
  17724. },
  17725. {
  17726. name: "👀💦",
  17727. height: math.unit(283 / 73 * 6, "feet"),
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(1.7, "m"),
  17736. weight: math.unit(70, "kg"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/kernel/front.svg",
  17740. extra: 222 / 210,
  17741. bottom: 0.007
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Nano",
  17748. height: math.unit(17, "micrometers")
  17749. },
  17750. {
  17751. name: "Micro",
  17752. height: math.unit(1.7, "mm")
  17753. },
  17754. {
  17755. name: "Small",
  17756. height: math.unit(1.7, "cm")
  17757. },
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(1.7, "m"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(1.75, "meters"),
  17770. weight: math.unit(65, "kg"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/jayne-folest/front.svg",
  17774. extra: 2115 / 2007,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(1.75, "meters"),
  17780. weight: math.unit(65, "kg"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/jayne-folest/back.svg",
  17784. extra: 2115 / 2007,
  17785. bottom: 0.005
  17786. }
  17787. },
  17788. frontClothed: {
  17789. height: math.unit(1.75, "meters"),
  17790. weight: math.unit(65, "kg"),
  17791. name: "Front (Clothed)",
  17792. image: {
  17793. source: "./media/characters/jayne-folest/front-clothed.svg",
  17794. extra: 2115 / 2007,
  17795. bottom: 0.035
  17796. }
  17797. },
  17798. hand: {
  17799. height: math.unit(1 / 1.260, "feet"),
  17800. name: "Hand",
  17801. image: {
  17802. source: "./media/characters/jayne-folest/hand.svg"
  17803. }
  17804. },
  17805. foot: {
  17806. height: math.unit(1 / 0.918, "feet"),
  17807. name: "Foot",
  17808. image: {
  17809. source: "./media/characters/jayne-folest/foot.svg"
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Micro",
  17816. height: math.unit(4, "cm")
  17817. },
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(1.75, "meters")
  17821. },
  17822. {
  17823. name: "Macro",
  17824. height: math.unit(47.5, "meters"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(180, "cm"),
  17834. weight: math.unit(70, "kg"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/algier/front.svg",
  17838. extra: 596 / 572,
  17839. bottom: 0.04
  17840. }
  17841. },
  17842. back: {
  17843. height: math.unit(180, "cm"),
  17844. weight: math.unit(70, "kg"),
  17845. name: "Back",
  17846. image: {
  17847. source: "./media/characters/algier/back.svg",
  17848. extra: 596 / 572,
  17849. bottom: 0.025
  17850. }
  17851. },
  17852. frontdressed: {
  17853. height: math.unit(180, "cm"),
  17854. weight: math.unit(150, "kg"),
  17855. name: "Front-dressed",
  17856. image: {
  17857. source: "./media/characters/algier/front-dressed.svg",
  17858. extra: 596 / 572,
  17859. bottom: 0.038
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Micro",
  17866. height: math.unit(5, "cm")
  17867. },
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(180, "cm"),
  17871. default: true
  17872. },
  17873. {
  17874. name: "Macro",
  17875. height: math.unit(64, "m")
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17881. {
  17882. upright: {
  17883. height: math.unit(7, "feet"),
  17884. weight: math.unit(300, "lb"),
  17885. name: "Upright",
  17886. image: {
  17887. source: "./media/characters/pretzel/upright.svg",
  17888. extra: 534 / 522,
  17889. bottom: 0.065
  17890. }
  17891. },
  17892. sprawling: {
  17893. height: math.unit(3.75, "feet"),
  17894. weight: math.unit(300, "lb"),
  17895. name: "Sprawling",
  17896. image: {
  17897. source: "./media/characters/pretzel/sprawling.svg",
  17898. extra: 314 / 281,
  17899. bottom: 0.1
  17900. }
  17901. },
  17902. tongue: {
  17903. height: math.unit(2, "feet"),
  17904. name: "Tongue",
  17905. image: {
  17906. source: "./media/characters/pretzel/tongue.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(7, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Oversized",
  17918. height: math.unit(15, "feet")
  17919. },
  17920. {
  17921. name: "Huge",
  17922. height: math.unit(30, "feet")
  17923. },
  17924. {
  17925. name: "Macro",
  17926. height: math.unit(250, "feet")
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17932. {
  17933. sideFront: {
  17934. height: math.unit(5 + 2 / 12, "feet"),
  17935. weight: math.unit(120, "lb"),
  17936. name: "Front Side",
  17937. image: {
  17938. source: "./media/characters/roxi/side-front.svg",
  17939. extra: 2924 / 2717,
  17940. bottom: 0.08
  17941. }
  17942. },
  17943. sideBack: {
  17944. height: math.unit(5 + 2 / 12, "feet"),
  17945. weight: math.unit(120, "lb"),
  17946. name: "Back Side",
  17947. image: {
  17948. source: "./media/characters/roxi/side-back.svg",
  17949. extra: 2904 / 2693,
  17950. bottom: 0.06
  17951. }
  17952. },
  17953. front: {
  17954. height: math.unit(5 + 2 / 12, "feet"),
  17955. weight: math.unit(120, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/roxi/front.svg",
  17959. extra: 2028 / 1907,
  17960. bottom: 0.01
  17961. }
  17962. },
  17963. frontAlt: {
  17964. height: math.unit(5 + 2 / 12, "feet"),
  17965. weight: math.unit(120, "lb"),
  17966. name: "Front (Alt)",
  17967. image: {
  17968. source: "./media/characters/roxi/front-alt.svg",
  17969. extra: 1828 / 1798,
  17970. bottom: 0.01
  17971. }
  17972. },
  17973. sitting: {
  17974. height: math.unit(2.8, "feet"),
  17975. weight: math.unit(120, "lb"),
  17976. name: "Sitting",
  17977. image: {
  17978. source: "./media/characters/roxi/sitting.svg",
  17979. extra: 2660 / 2462,
  17980. bottom: 0.1
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(5 + 2 / 12, "feet"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17994. {
  17995. side: {
  17996. height: math.unit(55, "feet"),
  17997. weight: math.unit(153, "tons"),
  17998. name: "Side",
  17999. image: {
  18000. source: "./media/characters/shadow/side.svg",
  18001. extra: 701 / 628,
  18002. bottom: 0.02
  18003. }
  18004. },
  18005. flying: {
  18006. height: math.unit(145, "feet"),
  18007. weight: math.unit(153, "tons"),
  18008. name: "Flying",
  18009. image: {
  18010. source: "./media/characters/shadow/flying.svg"
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(55, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(6, "feet"),
  18027. weight: math.unit(200, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/marcie/front.svg",
  18031. extra: 960 / 876,
  18032. bottom: 58 / 1017.87
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Macro",
  18039. height: math.unit(1, "mile"),
  18040. default: true
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(7, "feet"),
  18049. weight: math.unit(200, "lb"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/kachina/front.svg",
  18053. extra: 1290.68 / 1119,
  18054. bottom: 36.5 / 1327.18
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(7, "feet"),
  18062. default: true
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18068. {
  18069. looking: {
  18070. height: math.unit(2, "meters"),
  18071. weight: math.unit(300, "kg"),
  18072. name: "Looking",
  18073. image: {
  18074. source: "./media/characters/kash/looking.svg",
  18075. extra: 474 / 344,
  18076. bottom: 0.03
  18077. }
  18078. },
  18079. side: {
  18080. height: math.unit(2, "meters"),
  18081. weight: math.unit(300, "kg"),
  18082. name: "Side",
  18083. image: {
  18084. source: "./media/characters/kash/side.svg",
  18085. extra: 302 / 251,
  18086. bottom: 0.03
  18087. }
  18088. },
  18089. front: {
  18090. height: math.unit(2, "meters"),
  18091. weight: math.unit(300, "kg"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/kash/front.svg",
  18095. extra: 495 / 360,
  18096. bottom: 0.015
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(2, "meters"),
  18104. default: true
  18105. },
  18106. {
  18107. name: "Big",
  18108. height: math.unit(3, "meters")
  18109. },
  18110. {
  18111. name: "Large",
  18112. height: math.unit(5, "meters")
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18118. {
  18119. feeding: {
  18120. height: math.unit(6.7, "feet"),
  18121. weight: math.unit(350, "lb"),
  18122. name: "Feeding",
  18123. image: {
  18124. source: "./media/characters/lalim/feeding.svg",
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(6.7, "feet"),
  18132. default: true
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(9.5, "feet"),
  18141. weight: math.unit(600, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/de'vout/front.svg",
  18145. extra: 1443 / 1328,
  18146. bottom: 0.025
  18147. }
  18148. },
  18149. back: {
  18150. height: math.unit(9.5, "feet"),
  18151. weight: math.unit(600, "lb"),
  18152. name: "Back",
  18153. image: {
  18154. source: "./media/characters/de'vout/back.svg",
  18155. extra: 1443 / 1328
  18156. }
  18157. },
  18158. frontDressed: {
  18159. height: math.unit(9.5, "feet"),
  18160. weight: math.unit(600, "lb"),
  18161. name: "Front (Dressed",
  18162. image: {
  18163. source: "./media/characters/de'vout/front-dressed.svg",
  18164. extra: 1443 / 1328,
  18165. bottom: 0.025
  18166. }
  18167. },
  18168. backDressed: {
  18169. height: math.unit(9.5, "feet"),
  18170. weight: math.unit(600, "lb"),
  18171. name: "Back (Dressed",
  18172. image: {
  18173. source: "./media/characters/de'vout/back-dressed.svg",
  18174. extra: 1443 / 1328
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(9.5, "feet"),
  18182. default: true
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(8, "feet"),
  18191. weight: math.unit(225, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/talana/front.svg",
  18195. extra: 1410 / 1300,
  18196. bottom: 0.015
  18197. }
  18198. },
  18199. frontDressed: {
  18200. height: math.unit(8, "feet"),
  18201. weight: math.unit(225, "lb"),
  18202. name: "Front (Dressed",
  18203. image: {
  18204. source: "./media/characters/talana/front-dressed.svg",
  18205. extra: 1410 / 1300,
  18206. bottom: 0.015
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(8, "feet"),
  18214. default: true
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18220. {
  18221. side: {
  18222. height: math.unit(7.2, "feet"),
  18223. weight: math.unit(150, "lb"),
  18224. name: "Side",
  18225. image: {
  18226. source: "./media/characters/xeauvok/side.svg",
  18227. extra: 1975 / 1523,
  18228. bottom: 0.07
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(7.2, "feet"),
  18236. default: true
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18242. {
  18243. side: {
  18244. height: math.unit(10, "feet"),
  18245. weight: math.unit(900, "kg"),
  18246. name: "Side",
  18247. image: {
  18248. source: "./media/characters/zara/side.svg",
  18249. extra: 504 / 498
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(10, "feet"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18263. {
  18264. side: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Side",
  18268. image: {
  18269. source: "./media/characters/richard-dragon/side.svg",
  18270. extra: 845 / 340,
  18271. bottom: 0.017
  18272. }
  18273. },
  18274. maw: {
  18275. height: math.unit(2.97, "feet"),
  18276. name: "Maw",
  18277. image: {
  18278. source: "./media/characters/richard-dragon/maw.svg"
  18279. }
  18280. },
  18281. },
  18282. [
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18287. {
  18288. front: {
  18289. height: math.unit(4, "feet"),
  18290. weight: math.unit(100, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/richard-smeargle/front.svg",
  18294. extra: 2952 / 2820,
  18295. bottom: 0.028
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(4, "feet"),
  18303. default: true
  18304. },
  18305. {
  18306. name: "Dynamax",
  18307. height: math.unit(20, "meters")
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(110, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/klay/front.svg",
  18320. extra: 962 / 883,
  18321. bottom: 0.04
  18322. }
  18323. },
  18324. back: {
  18325. height: math.unit(6, "feet"),
  18326. weight: math.unit(110, "lb"),
  18327. name: "Back",
  18328. image: {
  18329. source: "./media/characters/klay/back.svg",
  18330. extra: 962 / 883
  18331. }
  18332. },
  18333. beans: {
  18334. height: math.unit(1.15, "feet"),
  18335. name: "Beans",
  18336. image: {
  18337. source: "./media/characters/klay/beans.svg"
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Micro",
  18344. height: math.unit(6, "inches")
  18345. },
  18346. {
  18347. name: "Mini",
  18348. height: math.unit(3, "feet")
  18349. },
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6, "feet"),
  18353. default: true
  18354. },
  18355. {
  18356. name: "Big",
  18357. height: math.unit(25, "feet")
  18358. },
  18359. {
  18360. name: "Macro",
  18361. height: math.unit(100, "feet")
  18362. },
  18363. {
  18364. name: "Megamacro",
  18365. height: math.unit(400, "feet")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(6, "feet"),
  18374. weight: math.unit(160, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/marcus/front.svg",
  18378. extra: 734 / 676,
  18379. bottom: 0.03
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Little",
  18386. height: math.unit(6, "feet")
  18387. },
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(110, "feet"),
  18391. default: true
  18392. },
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(250, "feet")
  18396. },
  18397. {
  18398. name: "Megamacro",
  18399. height: math.unit(1000, "feet")
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(7, "feet"),
  18408. weight: math.unit(275, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/claude-delroute/front.svg",
  18412. extra: 230 / 214,
  18413. bottom: 0.007
  18414. }
  18415. },
  18416. side: {
  18417. height: math.unit(7, "feet"),
  18418. weight: math.unit(275, "lb"),
  18419. name: "Side",
  18420. image: {
  18421. source: "./media/characters/claude-delroute/side.svg",
  18422. extra: 222 / 214,
  18423. bottom: 0.01
  18424. }
  18425. },
  18426. back: {
  18427. height: math.unit(7, "feet"),
  18428. weight: math.unit(275, "lb"),
  18429. name: "Back",
  18430. image: {
  18431. source: "./media/characters/claude-delroute/back.svg",
  18432. extra: 230 / 214,
  18433. bottom: 0.015
  18434. }
  18435. },
  18436. maw: {
  18437. height: math.unit(0.6407, "meters"),
  18438. name: "Maw",
  18439. image: {
  18440. source: "./media/characters/claude-delroute/maw.svg"
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(7, "feet"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Lorge",
  18452. height: math.unit(20, "feet")
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(8 + 4 / 12, "feet"),
  18461. weight: math.unit(600, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/dragonien/front.svg",
  18465. extra: 100 / 94,
  18466. bottom: 3.3 / 103.3445
  18467. }
  18468. },
  18469. back: {
  18470. height: math.unit(8 + 4 / 12, "feet"),
  18471. weight: math.unit(600, "lb"),
  18472. name: "Back",
  18473. image: {
  18474. source: "./media/characters/dragonien/back.svg",
  18475. extra: 776 / 746,
  18476. bottom: 6.4 / 782.0616
  18477. }
  18478. },
  18479. foot: {
  18480. height: math.unit(1.54, "feet"),
  18481. name: "Foot",
  18482. image: {
  18483. source: "./media/characters/dragonien/foot.svg",
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(8 + 4 / 12, "feet"),
  18491. default: true
  18492. },
  18493. {
  18494. name: "Macro",
  18495. height: math.unit(200, "feet")
  18496. },
  18497. {
  18498. name: "Megamacro",
  18499. height: math.unit(1, "mile")
  18500. },
  18501. {
  18502. name: "Gigamacro",
  18503. height: math.unit(1000, "miles")
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(5 + 2 / 12, "feet"),
  18512. weight: math.unit(110, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/desta/front.svg",
  18516. extra: 767 / 726,
  18517. bottom: 11.7 / 779
  18518. }
  18519. },
  18520. back: {
  18521. height: math.unit(5 + 2 / 12, "feet"),
  18522. weight: math.unit(110, "lb"),
  18523. name: "Back",
  18524. image: {
  18525. source: "./media/characters/desta/back.svg",
  18526. extra: 777 / 728,
  18527. bottom: 6 / 784
  18528. }
  18529. },
  18530. frontAlt: {
  18531. height: math.unit(5 + 2 / 12, "feet"),
  18532. weight: math.unit(110, "lb"),
  18533. name: "Front",
  18534. image: {
  18535. source: "./media/characters/desta/front-alt.svg",
  18536. extra: 1482 / 1417
  18537. }
  18538. },
  18539. side: {
  18540. height: math.unit(5 + 2 / 12, "feet"),
  18541. weight: math.unit(110, "lb"),
  18542. name: "Side",
  18543. image: {
  18544. source: "./media/characters/desta/side.svg",
  18545. extra: 2579 / 2491,
  18546. bottom: 0.053
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Micro",
  18553. height: math.unit(6, "inches")
  18554. },
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(5 + 2 / 12, "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(62, "feet")
  18563. },
  18564. {
  18565. name: "Megamacro",
  18566. height: math.unit(1800, "feet")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(10, "feet"),
  18575. weight: math.unit(700, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/storm-alystar/front.svg",
  18579. extra: 2112 / 1898,
  18580. bottom: 0.034
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Micro",
  18587. height: math.unit(3.5, "inches")
  18588. },
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(10, "feet"),
  18592. default: true
  18593. },
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(400, "feet")
  18597. },
  18598. {
  18599. name: "Deific",
  18600. height: math.unit(60, "miles")
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(2.35, "meters"),
  18609. weight: math.unit(119, "kg"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/ilia/front.svg",
  18613. extra: 1285 / 1255,
  18614. bottom: 0.06
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(2.35, "meters")
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(140, "meters"),
  18626. default: true
  18627. },
  18628. {
  18629. name: "Megamacro",
  18630. height: math.unit(100, "miles")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(6 + 5 / 12, "feet"),
  18639. weight: math.unit(190, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/kingdead/front.svg",
  18643. extra: 1228 / 1177
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Micro",
  18650. height: math.unit(7, "inches")
  18651. },
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6 + 5 / 12, "feet")
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(150, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Megamacro",
  18663. height: math.unit(200, "miles")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(8, "feet"),
  18672. weight: math.unit(600, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/kyrehx/front.svg",
  18676. extra: 1195 / 1095,
  18677. bottom: 0.034
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Micro",
  18684. height: math.unit(2, "inches")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(8, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(255, "feet")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18702. weight: math.unit(184, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/xang/front.svg",
  18706. extra: 845 / 755
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Macro",
  18718. height: math.unit(0.935 * 146, "feet")
  18719. },
  18720. {
  18721. name: "Megamacro",
  18722. height: math.unit(0.935 * 3, "miles")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18728. {
  18729. frontDressed: {
  18730. height: math.unit(5 + 7 / 12, "feet"),
  18731. weight: math.unit(140, "lb"),
  18732. name: "Front (Dressed)",
  18733. image: {
  18734. source: "./media/characters/doc-weardno/front-dressed.svg",
  18735. extra: 263 / 234
  18736. }
  18737. },
  18738. backDressed: {
  18739. height: math.unit(5 + 7 / 12, "feet"),
  18740. weight: math.unit(140, "lb"),
  18741. name: "Back (Dressed)",
  18742. image: {
  18743. source: "./media/characters/doc-weardno/back-dressed.svg",
  18744. extra: 266 / 238
  18745. }
  18746. },
  18747. front: {
  18748. height: math.unit(5 + 7 / 12, "feet"),
  18749. weight: math.unit(140, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/doc-weardno/front.svg",
  18753. extra: 254 / 233
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Micro",
  18760. height: math.unit(3, "inches")
  18761. },
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(5 + 7 / 12, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Macro",
  18769. height: math.unit(25, "feet")
  18770. },
  18771. {
  18772. name: "Megamacro",
  18773. height: math.unit(2, "miles")
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(6 + 2 / 12, "feet"),
  18782. weight: math.unit(153, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/seth-whilst/front.svg",
  18786. bottom: 0.07
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Micro",
  18793. height: math.unit(5, "inches")
  18794. },
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(6 + 2 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(3, "inches"),
  18807. weight: math.unit(8, "grams"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/pocket-jabari/front.svg",
  18811. extra: 1024 / 974,
  18812. bottom: 0.039
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Minimicro",
  18819. height: math.unit(8, "mm")
  18820. },
  18821. {
  18822. name: "Micro",
  18823. height: math.unit(3, "inches"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(3, "feet")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(15, "feet"),
  18837. weight: math.unit(3280, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/sapphy/front.svg",
  18841. extra: 671 / 577,
  18842. bottom: 0.085
  18843. }
  18844. },
  18845. back: {
  18846. height: math.unit(15, "feet"),
  18847. weight: math.unit(3280, "lb"),
  18848. name: "Back",
  18849. image: {
  18850. source: "./media/characters/sapphy/back.svg",
  18851. extra: 631 / 607,
  18852. bottom: 0.045
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Normal",
  18859. height: math.unit(15, "feet")
  18860. },
  18861. {
  18862. name: "Casual Macro",
  18863. height: math.unit(120, "feet")
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(2150, "feet"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Megamacro",
  18872. height: math.unit(8, "miles")
  18873. },
  18874. {
  18875. name: "Galaxy Mom",
  18876. height: math.unit(6, "megalightyears")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6, "feet"),
  18885. weight: math.unit(170, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/kiro/front.svg",
  18889. extra: 1064 / 1012,
  18890. bottom: 0.052
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Micro",
  18897. height: math.unit(6, "inches")
  18898. },
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(6, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(72, "feet")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(5 + 9 / 12, "feet"),
  18915. weight: math.unit(175, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/irishfox/front.svg",
  18919. extra: 1912 / 1680,
  18920. bottom: 0.02
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Nano",
  18927. height: math.unit(1, "mm")
  18928. },
  18929. {
  18930. name: "Micro",
  18931. height: math.unit(2, "inches")
  18932. },
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(5 + 9 / 12, "feet"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Macro",
  18940. height: math.unit(45, "feet")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6 + 1 / 12, "feet"),
  18949. weight: math.unit(75, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/aronai-sieyes/front.svg",
  18953. extra: 1556 / 1480,
  18954. bottom: 0.015
  18955. }
  18956. },
  18957. side: {
  18958. height: math.unit(6 + 1 / 12, "feet"),
  18959. weight: math.unit(75, "lb"),
  18960. name: "Side",
  18961. image: {
  18962. source: "./media/characters/aronai-sieyes/side.svg",
  18963. extra: 1433 / 1390,
  18964. bottom: 0.0393
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(6 + 1 / 12, "feet"),
  18969. weight: math.unit(75, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/aronai-sieyes/back.svg",
  18973. extra: 1544 / 1494,
  18974. bottom: 0.02
  18975. }
  18976. },
  18977. frontClothed: {
  18978. height: math.unit(6 + 1 / 12, "feet"),
  18979. weight: math.unit(75, "lb"),
  18980. name: "Front (Clothed)",
  18981. image: {
  18982. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18983. extra: 1582 / 1527
  18984. }
  18985. },
  18986. feral: {
  18987. height: math.unit(18, "feet"),
  18988. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18989. name: "Feral",
  18990. image: {
  18991. source: "./media/characters/aronai-sieyes/feral.svg",
  18992. extra: 1530 / 1240,
  18993. bottom: 0.035
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Micro",
  19000. height: math.unit(2, "inches")
  19001. },
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(6 + 1 / 12, "feet"),
  19005. default: true
  19006. }
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(12, "feet"),
  19014. weight: math.unit(410, "kg"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/xuna/front.svg",
  19018. extra: 2184 / 1980
  19019. }
  19020. },
  19021. side: {
  19022. height: math.unit(12, "feet"),
  19023. weight: math.unit(410, "kg"),
  19024. name: "Side",
  19025. image: {
  19026. source: "./media/characters/xuna/side.svg",
  19027. extra: 2184 / 1980
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(12, "feet"),
  19032. weight: math.unit(410, "kg"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/xuna/back.svg",
  19036. extra: 2184 / 1980
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Nano glow",
  19043. height: math.unit(10, "nm")
  19044. },
  19045. {
  19046. name: "Micro floof",
  19047. height: math.unit(0.3, "m")
  19048. },
  19049. {
  19050. name: "Huggable softy boi",
  19051. height: math.unit(3.6576, "m"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Admirable floof",
  19056. height: math.unit(80, "meters")
  19057. },
  19058. {
  19059. name: "Gentle macro",
  19060. height: math.unit(300, "meters")
  19061. },
  19062. {
  19063. name: "Very careful floof",
  19064. height: math.unit(3200, "meters")
  19065. },
  19066. {
  19067. name: "The mega floof",
  19068. height: math.unit(36000, "meters")
  19069. },
  19070. {
  19071. name: "Giga-fur-Wicker",
  19072. height: math.unit(4800000, "meters")
  19073. },
  19074. {
  19075. name: "Licky world",
  19076. height: math.unit(20000000, "meters")
  19077. },
  19078. {
  19079. name: "Floofy cyan sun",
  19080. height: math.unit(1500000000, "meters")
  19081. },
  19082. {
  19083. name: "Milky Wicker",
  19084. height: math.unit(1000000000000000000000, "meters")
  19085. },
  19086. {
  19087. name: "The observing Wicker",
  19088. height: math.unit(999999999999999999999999999, "meters")
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(5 + 9 / 12, "feet"),
  19097. weight: math.unit(150, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/arokha-sieyes/front.svg",
  19101. extra: 1425 / 1284,
  19102. bottom: 0.05
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(5 + 9 / 12, "feet")
  19110. },
  19111. {
  19112. name: "Macro",
  19113. height: math.unit(30, "meters"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(6, "feet"),
  19123. weight: math.unit(180, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/arokh-sieyes/front.svg",
  19127. extra: 1830 / 1769,
  19128. bottom: 0.01
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(6, "feet")
  19136. },
  19137. {
  19138. name: "Macro",
  19139. height: math.unit(30, "meters"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19146. {
  19147. side: {
  19148. height: math.unit(13 + 1 / 12, "feet"),
  19149. weight: math.unit(8.5, "tonnes"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/goldeneye/side.svg",
  19153. extra: 1182 / 778,
  19154. bottom: 0.067
  19155. }
  19156. },
  19157. paw: {
  19158. height: math.unit(3.4, "feet"),
  19159. name: "Paw",
  19160. image: {
  19161. source: "./media/characters/goldeneye/paw.svg"
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(13 + 1 / 12, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19175. {
  19176. front: {
  19177. height: math.unit(6 + 1 / 12, "feet"),
  19178. weight: math.unit(210, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/leonardo-lycheborne/front.svg",
  19182. extra: 776/723,
  19183. bottom: 34/810
  19184. }
  19185. },
  19186. side: {
  19187. height: math.unit(6 + 1 / 12, "feet"),
  19188. weight: math.unit(210, "lb"),
  19189. name: "Side",
  19190. image: {
  19191. source: "./media/characters/leonardo-lycheborne/side.svg",
  19192. extra: 780/728,
  19193. bottom: 12/792
  19194. }
  19195. },
  19196. back: {
  19197. height: math.unit(6 + 1 / 12, "feet"),
  19198. weight: math.unit(210, "lb"),
  19199. name: "Back",
  19200. image: {
  19201. source: "./media/characters/leonardo-lycheborne/back.svg",
  19202. extra: 775/721,
  19203. bottom: 17/792
  19204. }
  19205. },
  19206. hand: {
  19207. height: math.unit(1.08, "feet"),
  19208. name: "Hand",
  19209. image: {
  19210. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19211. }
  19212. },
  19213. foot: {
  19214. height: math.unit(1.32, "feet"),
  19215. name: "Foot",
  19216. image: {
  19217. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19218. }
  19219. },
  19220. maw: {
  19221. height: math.unit(1, "feet"),
  19222. name: "Maw",
  19223. image: {
  19224. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19225. }
  19226. },
  19227. were: {
  19228. height: math.unit(20, "feet"),
  19229. weight: math.unit(7800, "lb"),
  19230. name: "Were",
  19231. image: {
  19232. source: "./media/characters/leonardo-lycheborne/were.svg",
  19233. extra: 1224/1165,
  19234. bottom: 72/1296
  19235. }
  19236. },
  19237. feral: {
  19238. height: math.unit(7.5, "feet"),
  19239. weight: math.unit(600, "lb"),
  19240. name: "Feral",
  19241. image: {
  19242. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19243. extra: 797/702,
  19244. bottom: 139/936
  19245. }
  19246. },
  19247. taur: {
  19248. height: math.unit(11, "feet"),
  19249. weight: math.unit(3300, "lb"),
  19250. name: "Taur",
  19251. image: {
  19252. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19253. extra: 1271/1197,
  19254. bottom: 47/1318
  19255. }
  19256. },
  19257. barghest: {
  19258. height: math.unit(11, "feet"),
  19259. weight: math.unit(1300, "lb"),
  19260. name: "Barghest",
  19261. image: {
  19262. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19263. extra: 1291/1204,
  19264. bottom: 37/1328
  19265. }
  19266. },
  19267. dick: {
  19268. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19269. name: "Dick",
  19270. image: {
  19271. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19272. }
  19273. },
  19274. dickWere: {
  19275. height: math.unit((20) / 3.8, "feet"),
  19276. name: "Dick (Were)",
  19277. image: {
  19278. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(6 + 1 / 12, "feet"),
  19286. default: true
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(10, "feet"),
  19295. weight: math.unit(350, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/jet/front.svg",
  19299. extra: 2050 / 1980,
  19300. bottom: 0.013
  19301. }
  19302. },
  19303. back: {
  19304. height: math.unit(10, "feet"),
  19305. weight: math.unit(350, "lb"),
  19306. name: "Back",
  19307. image: {
  19308. source: "./media/characters/jet/back.svg",
  19309. extra: 2050 / 1980,
  19310. bottom: 0.013
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Micro",
  19317. height: math.unit(6, "inches")
  19318. },
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(10, "feet"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Macro",
  19326. height: math.unit(100, "feet")
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19332. {
  19333. front: {
  19334. height: math.unit(15, "feet"),
  19335. weight: math.unit(2800, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/tanarath/front.svg",
  19339. extra: 2392 / 2220,
  19340. bottom: 0.03
  19341. }
  19342. },
  19343. back: {
  19344. height: math.unit(15, "feet"),
  19345. weight: math.unit(2800, "lb"),
  19346. name: "Back",
  19347. image: {
  19348. source: "./media/characters/tanarath/back.svg",
  19349. extra: 2392 / 2220,
  19350. bottom: 0.03
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(15, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(7 + 1 / 12, "feet"),
  19367. weight: math.unit(175, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/patty-cattybatty/front.svg",
  19371. extra: 908 / 874,
  19372. bottom: 0.025
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Micro",
  19379. height: math.unit(1, "inch")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(7 + 1 / 12, "feet")
  19384. },
  19385. {
  19386. name: "Mini Macro",
  19387. height: math.unit(155, "feet")
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(1077, "feet")
  19392. },
  19393. {
  19394. name: "Mega Macro",
  19395. height: math.unit(47650, "feet"),
  19396. default: true
  19397. },
  19398. {
  19399. name: "Giga Macro",
  19400. height: math.unit(440, "miles")
  19401. },
  19402. {
  19403. name: "Tera Macro",
  19404. height: math.unit(8700, "miles")
  19405. },
  19406. {
  19407. name: "Planetary Macro",
  19408. height: math.unit(32700, "miles")
  19409. },
  19410. {
  19411. name: "Solar Macro",
  19412. height: math.unit(550000, "miles")
  19413. },
  19414. {
  19415. name: "Celestial Macro",
  19416. height: math.unit(2.5, "AU")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(4 + 5 / 12, "feet"),
  19425. weight: math.unit(90, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/cappu/front.svg",
  19429. extra: 1247 / 1152,
  19430. bottom: 0.012
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Normal",
  19437. height: math.unit(4 + 5 / 12, "feet"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19444. {
  19445. frontDressed: {
  19446. height: math.unit(70, "cm"),
  19447. weight: math.unit(6, "kg"),
  19448. name: "Front (Dressed)",
  19449. image: {
  19450. source: "./media/characters/sebi/front-dressed.svg",
  19451. extra: 713.5 / 686.5,
  19452. bottom: 0.003
  19453. }
  19454. },
  19455. front: {
  19456. height: math.unit(70, "cm"),
  19457. weight: math.unit(5, "kg"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/sebi/front.svg",
  19461. extra: 713.5 / 686.5,
  19462. bottom: 0.003
  19463. }
  19464. }
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(70, "cm"),
  19470. default: true
  19471. },
  19472. {
  19473. name: "Macro",
  19474. height: math.unit(8, "meters")
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(6, "feet"),
  19483. weight: math.unit(150, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/typhek/front.svg",
  19487. extra: 1948 / 1929,
  19488. bottom: 0.025
  19489. }
  19490. },
  19491. side: {
  19492. height: math.unit(6, "feet"),
  19493. weight: math.unit(150, "lb"),
  19494. name: "Side",
  19495. image: {
  19496. source: "./media/characters/typhek/side.svg",
  19497. extra: 2034 / 2010,
  19498. bottom: 0.003
  19499. }
  19500. },
  19501. back: {
  19502. height: math.unit(6, "feet"),
  19503. weight: math.unit(150, "lb"),
  19504. name: "Back",
  19505. image: {
  19506. source: "./media/characters/typhek/back.svg",
  19507. extra: 2005 / 1978,
  19508. bottom: 0.004
  19509. }
  19510. },
  19511. palm: {
  19512. height: math.unit(1.2, "feet"),
  19513. name: "Palm",
  19514. image: {
  19515. source: "./media/characters/typhek/palm.svg"
  19516. }
  19517. },
  19518. fist: {
  19519. height: math.unit(1.1, "feet"),
  19520. name: "Fist",
  19521. image: {
  19522. source: "./media/characters/typhek/fist.svg"
  19523. }
  19524. },
  19525. foot: {
  19526. height: math.unit(1.57, "feet"),
  19527. name: "Foot",
  19528. image: {
  19529. source: "./media/characters/typhek/foot.svg"
  19530. }
  19531. },
  19532. sole: {
  19533. height: math.unit(2.05, "feet"),
  19534. name: "Sole",
  19535. image: {
  19536. source: "./media/characters/typhek/sole.svg"
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(40, "stories"),
  19544. default: true
  19545. },
  19546. {
  19547. name: "Megamacro",
  19548. height: math.unit(1, "mile")
  19549. },
  19550. {
  19551. name: "Gigamacro",
  19552. height: math.unit(4000, "solarradii")
  19553. },
  19554. {
  19555. name: "Universal",
  19556. height: math.unit(1.1, "universes")
  19557. }
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19562. {
  19563. side: {
  19564. height: math.unit(5 + 7 / 12, "feet"),
  19565. weight: math.unit(150, "lb"),
  19566. name: "Side",
  19567. image: {
  19568. source: "./media/characters/kassy/side.svg",
  19569. extra: 1280 / 1225,
  19570. bottom: 0.002
  19571. }
  19572. },
  19573. front: {
  19574. height: math.unit(5 + 7 / 12, "feet"),
  19575. weight: math.unit(150, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/kassy/front.svg",
  19579. extra: 1280 / 1225,
  19580. bottom: 0.025
  19581. }
  19582. },
  19583. back: {
  19584. height: math.unit(5 + 7 / 12, "feet"),
  19585. weight: math.unit(150, "lb"),
  19586. name: "Back",
  19587. image: {
  19588. source: "./media/characters/kassy/back.svg",
  19589. extra: 1280 / 1225,
  19590. bottom: 0.002
  19591. }
  19592. },
  19593. foot: {
  19594. height: math.unit(1.266, "feet"),
  19595. name: "Foot",
  19596. image: {
  19597. source: "./media/characters/kassy/foot.svg"
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(5 + 7 / 12, "feet")
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(137, "feet"),
  19609. default: true
  19610. },
  19611. {
  19612. name: "Megamacro",
  19613. height: math.unit(1, "mile")
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(6 + 1 / 12, "feet"),
  19622. weight: math.unit(200, "lb"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/neil/front.svg",
  19626. extra: 1326 / 1250,
  19627. bottom: 0.023
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(6 + 1 / 12, "feet"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Macro",
  19639. height: math.unit(200, "feet")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19645. {
  19646. front: {
  19647. height: math.unit(5 + 9 / 12, "feet"),
  19648. weight: math.unit(190, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/atticus/front.svg",
  19652. extra: 2934 / 2785,
  19653. bottom: 0.025
  19654. }
  19655. },
  19656. },
  19657. [
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(5 + 9 / 12, "feet"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(180, "feet")
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19671. {
  19672. side: {
  19673. height: math.unit(9, "feet"),
  19674. weight: math.unit(650, "lb"),
  19675. name: "Side",
  19676. image: {
  19677. source: "./media/characters/milo/side.svg",
  19678. extra: 2644 / 2310,
  19679. bottom: 0.032
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(9, "feet"),
  19687. default: true
  19688. },
  19689. {
  19690. name: "Macro",
  19691. height: math.unit(300, "feet")
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19697. {
  19698. side: {
  19699. height: math.unit(8, "meters"),
  19700. weight: math.unit(90000, "kg"),
  19701. name: "Side",
  19702. image: {
  19703. source: "./media/characters/ijzer/side.svg",
  19704. extra: 2756 / 1600,
  19705. bottom: 0.01
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Small",
  19712. height: math.unit(3, "meters")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(8, "meters"),
  19717. default: true
  19718. },
  19719. {
  19720. name: "Normal+",
  19721. height: math.unit(10, "meters")
  19722. },
  19723. {
  19724. name: "Bigger",
  19725. height: math.unit(24, "meters")
  19726. },
  19727. {
  19728. name: "Huge",
  19729. height: math.unit(80, "meters")
  19730. },
  19731. ]
  19732. ))
  19733. characterMakers.push(() => makeCharacter(
  19734. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19735. {
  19736. front: {
  19737. height: math.unit(6 + 2 / 12, "feet"),
  19738. weight: math.unit(153, "lb"),
  19739. name: "Front",
  19740. image: {
  19741. source: "./media/characters/luca-cervicum/front.svg",
  19742. extra: 370 / 327,
  19743. bottom: 0.015
  19744. }
  19745. },
  19746. back: {
  19747. height: math.unit(6 + 2 / 12, "feet"),
  19748. weight: math.unit(153, "lb"),
  19749. name: "Back",
  19750. image: {
  19751. source: "./media/characters/luca-cervicum/back.svg",
  19752. extra: 367 / 333,
  19753. bottom: 0.005
  19754. }
  19755. },
  19756. frontGear: {
  19757. height: math.unit(6 + 2 / 12, "feet"),
  19758. weight: math.unit(173, "lb"),
  19759. name: "Front (Gear)",
  19760. image: {
  19761. source: "./media/characters/luca-cervicum/front-gear.svg",
  19762. extra: 377 / 333,
  19763. bottom: 0.006
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(6 + 2 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19777. {
  19778. front: {
  19779. height: math.unit(6 + 1 / 12, "feet"),
  19780. weight: math.unit(304, "lb"),
  19781. name: "Front",
  19782. image: {
  19783. source: "./media/characters/oliver/front.svg",
  19784. extra: 157 / 143,
  19785. bottom: 0.08
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(6 + 1 / 12, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(5 + 7 / 12, "feet"),
  19802. weight: math.unit(140, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/shane/front.svg",
  19806. extra: 304 / 289,
  19807. bottom: 0.005
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(5 + 7 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(5 + 9 / 12, "feet"),
  19824. weight: math.unit(178, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/shin/front.svg",
  19828. extra: 159 / 151,
  19829. bottom: 0.015
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5 + 9 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(5 + 10 / 12, "feet"),
  19846. weight: math.unit(168, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/xerxes/front.svg",
  19850. extra: 282 / 260,
  19851. bottom: 0.045
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(5 + 10 / 12, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6 + 7 / 12, "feet"),
  19868. weight: math.unit(208, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/chaska/front.svg",
  19872. extra: 332 / 319,
  19873. bottom: 0.015
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(6 + 7 / 12, "feet"),
  19881. default: true
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(5 + 8 / 12, "feet"),
  19890. weight: math.unit(208, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/enuk/front.svg",
  19894. extra: 437 / 406,
  19895. bottom: 0.02
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(5 + 8 / 12, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(5 + 10 / 12, "feet"),
  19912. weight: math.unit(252, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/bruun/front.svg",
  19916. extra: 197 / 187,
  19917. bottom: 0.012
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(5 + 10 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(6 + 10 / 12, "feet"),
  19934. weight: math.unit(255, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/alexeev/front.svg",
  19938. extra: 213 / 200,
  19939. bottom: 0.05
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(6 + 10 / 12, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19953. {
  19954. front: {
  19955. height: math.unit(2 + 8 / 12, "feet"),
  19956. weight: math.unit(22, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/evelyn/front.svg",
  19960. extra: 208 / 180
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(2 + 8 / 12, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(5 + 9 / 12, "feet"),
  19977. weight: math.unit(139, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/inca/front.svg",
  19981. extra: 294 / 291,
  19982. bottom: 0.03
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 9 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(5 + 1 / 12, "feet"),
  19999. weight: math.unit(84, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/magdalene/front.svg",
  20003. extra: 293 / 273
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(5 + 1 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6 + 3 / 12, "feet"),
  20020. weight: math.unit(185, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/mera/front.svg",
  20024. extra: 291 / 277,
  20025. bottom: 0.03
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(6 + 3 / 12, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(6 + 7 / 12, "feet"),
  20042. weight: math.unit(160, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/ceres/front.svg",
  20046. extra: 1023 / 950,
  20047. bottom: 0.027
  20048. }
  20049. },
  20050. back: {
  20051. height: math.unit(6 + 7 / 12, "feet"),
  20052. weight: math.unit(160, "lb"),
  20053. name: "Back",
  20054. image: {
  20055. source: "./media/characters/ceres/back.svg",
  20056. extra: 1023 / 950
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(6 + 7 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(5 + 10 / 12, "feet"),
  20073. weight: math.unit(150, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/kris/front.svg",
  20077. extra: 885 / 803,
  20078. bottom: 0.03
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(5 + 10 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(7, "feet"),
  20095. weight: math.unit(120, "kg"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/taluthus/front.svg",
  20099. extra: 903 / 833,
  20100. bottom: 0.015
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(7, "feet"),
  20108. default: true
  20109. },
  20110. {
  20111. name: "Macro",
  20112. height: math.unit(300, "feet")
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(5 + 9 / 12, "feet"),
  20121. weight: math.unit(145, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/dawn/front.svg",
  20125. extra: 2094 / 2016,
  20126. bottom: 0.025
  20127. }
  20128. },
  20129. back: {
  20130. height: math.unit(5 + 9 / 12, "feet"),
  20131. weight: math.unit(160, "lb"),
  20132. name: "Back",
  20133. image: {
  20134. source: "./media/characters/dawn/back.svg",
  20135. extra: 2112 / 2080,
  20136. bottom: 0.005
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(6 + 7 / 12, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20150. {
  20151. anthro: {
  20152. height: math.unit(8 + 3 / 12, "feet"),
  20153. weight: math.unit(450, "lb"),
  20154. name: "Anthro",
  20155. image: {
  20156. source: "./media/characters/arador/anthro.svg",
  20157. extra: 1835 / 1718,
  20158. bottom: 0.025
  20159. }
  20160. },
  20161. feral: {
  20162. height: math.unit(4, "feet"),
  20163. weight: math.unit(200, "lb"),
  20164. name: "Feral",
  20165. image: {
  20166. source: "./media/characters/arador/feral.svg",
  20167. extra: 1683 / 1514,
  20168. bottom: 0.07
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(8 + 3 / 12, "feet")
  20176. },
  20177. {
  20178. name: "Macro",
  20179. height: math.unit(82.5, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(5 + 10 / 12, "feet"),
  20189. weight: math.unit(125, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/dharsi/front.svg",
  20193. extra: 716 / 630,
  20194. bottom: 0.035
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Nano",
  20201. height: math.unit(100, "nm")
  20202. },
  20203. {
  20204. name: "Micro",
  20205. height: math.unit(2, "inches")
  20206. },
  20207. {
  20208. name: "Normal",
  20209. height: math.unit(5 + 10 / 12, "feet"),
  20210. default: true
  20211. },
  20212. {
  20213. name: "Macro",
  20214. height: math.unit(1000, "feet")
  20215. },
  20216. {
  20217. name: "Megamacro",
  20218. height: math.unit(10, "miles")
  20219. },
  20220. {
  20221. name: "Gigamacro",
  20222. height: math.unit(3000, "miles")
  20223. },
  20224. {
  20225. name: "Teramacro",
  20226. height: math.unit(500000, "miles")
  20227. },
  20228. {
  20229. name: "Teramacro+",
  20230. height: math.unit(30, "galaxies")
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(6, "feet"),
  20239. weight: math.unit(150, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/deathy/front.svg",
  20243. extra: 1552 / 1463,
  20244. bottom: 0.025
  20245. }
  20246. },
  20247. side: {
  20248. height: math.unit(6, "feet"),
  20249. weight: math.unit(150, "lb"),
  20250. name: "Side",
  20251. image: {
  20252. source: "./media/characters/deathy/side.svg",
  20253. extra: 1604 / 1455,
  20254. bottom: 0.025
  20255. }
  20256. },
  20257. back: {
  20258. height: math.unit(6, "feet"),
  20259. weight: math.unit(150, "lb"),
  20260. name: "Back",
  20261. image: {
  20262. source: "./media/characters/deathy/back.svg",
  20263. extra: 1580 / 1463,
  20264. bottom: 0.005
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Micro",
  20271. height: math.unit(5, "millimeters")
  20272. },
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(6 + 5 / 12, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20282. {
  20283. front: {
  20284. height: math.unit(16, "feet"),
  20285. weight: math.unit(4000, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/juniper/front.svg",
  20289. bottom: 0.04
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(16, "feet"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20303. {
  20304. front: {
  20305. height: math.unit(6, "feet"),
  20306. weight: math.unit(150, "lb"),
  20307. name: "Front",
  20308. image: {
  20309. source: "./media/characters/hipster/front.svg",
  20310. extra: 1312 / 1209,
  20311. bottom: 0.025
  20312. }
  20313. },
  20314. back: {
  20315. height: math.unit(6, "feet"),
  20316. weight: math.unit(150, "lb"),
  20317. name: "Back",
  20318. image: {
  20319. source: "./media/characters/hipster/back.svg",
  20320. extra: 1281 / 1196,
  20321. bottom: 0.01
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Micro",
  20328. height: math.unit(1, "mm")
  20329. },
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(4, "inches"),
  20333. default: true
  20334. },
  20335. {
  20336. name: "Macro",
  20337. height: math.unit(500, "feet")
  20338. },
  20339. {
  20340. name: "Megamacro",
  20341. height: math.unit(1000, "miles")
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20347. {
  20348. front: {
  20349. height: math.unit(6, "feet"),
  20350. weight: math.unit(150, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/tendirmuldr/front.svg",
  20354. extra: 1878 / 1772,
  20355. bottom: 0.015
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Megamacro",
  20362. height: math.unit(1500, "miles"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20369. {
  20370. front: {
  20371. height: math.unit(14, "feet"),
  20372. weight: math.unit(12000, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/mort/front.svg",
  20376. extra: 365 / 318,
  20377. bottom: 0.01
  20378. }
  20379. },
  20380. side: {
  20381. height: math.unit(14, "feet"),
  20382. weight: math.unit(12000, "lb"),
  20383. name: "Side",
  20384. image: {
  20385. source: "./media/characters/mort/side.svg",
  20386. extra: 365 / 318,
  20387. bottom: 0.052
  20388. },
  20389. default: true
  20390. },
  20391. back: {
  20392. height: math.unit(14, "feet"),
  20393. weight: math.unit(12000, "lb"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/mort/back.svg",
  20397. extra: 371 / 332,
  20398. bottom: 0.18
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(14, "feet"),
  20406. default: true
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20412. {
  20413. front: {
  20414. height: math.unit(8, "feet"),
  20415. weight: math.unit(1, "ton"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/lycoa/front.svg",
  20419. extra: 1875 / 1789,
  20420. bottom: 0.022
  20421. }
  20422. },
  20423. back: {
  20424. height: math.unit(8, "feet"),
  20425. weight: math.unit(1, "ton"),
  20426. name: "Back",
  20427. image: {
  20428. source: "./media/characters/lycoa/back.svg",
  20429. extra: 1835 / 1781,
  20430. bottom: 0.03
  20431. }
  20432. },
  20433. head: {
  20434. height: math.unit(2.1, "feet"),
  20435. name: "Head",
  20436. image: {
  20437. source: "./media/characters/lycoa/head.svg"
  20438. }
  20439. },
  20440. tailmaw: {
  20441. height: math.unit(1.9, "feet"),
  20442. name: "Tailmaw",
  20443. image: {
  20444. source: "./media/characters/lycoa/tailmaw.svg"
  20445. }
  20446. },
  20447. tentacles: {
  20448. height: math.unit(2.1, "feet"),
  20449. name: "Tentacles",
  20450. image: {
  20451. source: "./media/characters/lycoa/tentacles.svg"
  20452. }
  20453. },
  20454. dick: {
  20455. height: math.unit(1.73, "feet"),
  20456. name: "Dick",
  20457. image: {
  20458. source: "./media/characters/lycoa/dick.svg"
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(8, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Macro",
  20470. height: math.unit(30, "feet")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20476. {
  20477. front: {
  20478. height: math.unit(4 + 2 / 12, "feet"),
  20479. weight: math.unit(70, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/naldara/front.svg",
  20483. extra: 841 / 720,
  20484. bottom: 0.04
  20485. }
  20486. },
  20487. naga: {
  20488. height: math.unit(23, "feet"),
  20489. weight: math.unit(15000, "kg"),
  20490. name: "Naga",
  20491. image: {
  20492. source: "./media/characters/naldara/naga.svg",
  20493. extra: 3290 / 2959,
  20494. bottom: 124 / 3432
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(4 + 2 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(13 + 7 / 12, "feet"),
  20511. weight: math.unit(1500, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/briar/front.svg",
  20515. extra: 626 / 596,
  20516. bottom: 0.08
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(13 + 7 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20530. {
  20531. side: {
  20532. height: math.unit(10, "feet"),
  20533. weight: math.unit(500, "lb"),
  20534. name: "Side",
  20535. image: {
  20536. source: "./media/characters/vanguard/side.svg",
  20537. extra: 502 / 425,
  20538. bottom: 0.087
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(10, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(7.5, "feet"),
  20555. weight: math.unit(2, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/artemis/front.svg",
  20559. extra: 1192 / 1075,
  20560. bottom: 0.07
  20561. }
  20562. },
  20563. frontNsfw: {
  20564. height: math.unit(7.5, "feet"),
  20565. weight: math.unit(2, "lb"),
  20566. name: "Front (NSFW)",
  20567. image: {
  20568. source: "./media/characters/artemis/front-nsfw.svg",
  20569. extra: 1192 / 1075,
  20570. bottom: 0.07
  20571. }
  20572. },
  20573. frontNsfwer: {
  20574. height: math.unit(7.5, "feet"),
  20575. weight: math.unit(2, "lb"),
  20576. name: "Front (NSFW-er)",
  20577. image: {
  20578. source: "./media/characters/artemis/front-nsfwer.svg",
  20579. extra: 1192 / 1075,
  20580. bottom: 0.07
  20581. }
  20582. },
  20583. side: {
  20584. height: math.unit(7.5, "feet"),
  20585. weight: math.unit(2, "lb"),
  20586. name: "Side",
  20587. image: {
  20588. source: "./media/characters/artemis/side.svg",
  20589. extra: 1192 / 1075,
  20590. bottom: 0.07
  20591. }
  20592. },
  20593. sideNsfw: {
  20594. height: math.unit(7.5, "feet"),
  20595. weight: math.unit(2, "lb"),
  20596. name: "Side (NSFW)",
  20597. image: {
  20598. source: "./media/characters/artemis/side-nsfw.svg",
  20599. extra: 1192 / 1075,
  20600. bottom: 0.07
  20601. }
  20602. },
  20603. sideNsfwer: {
  20604. height: math.unit(7.5, "feet"),
  20605. weight: math.unit(2, "lb"),
  20606. name: "Side (NSFW-er)",
  20607. image: {
  20608. source: "./media/characters/artemis/side-nsfwer.svg",
  20609. extra: 1192 / 1075,
  20610. bottom: 0.07
  20611. }
  20612. },
  20613. maw: {
  20614. height: math.unit(1.1, "feet"),
  20615. name: "Maw",
  20616. image: {
  20617. source: "./media/characters/artemis/maw.svg"
  20618. }
  20619. },
  20620. stomach: {
  20621. height: math.unit(0.95, "feet"),
  20622. name: "Stomach",
  20623. image: {
  20624. source: "./media/characters/artemis/stomach.svg"
  20625. }
  20626. },
  20627. dickCanine: {
  20628. height: math.unit(1, "feet"),
  20629. name: "Dick (Canine)",
  20630. image: {
  20631. source: "./media/characters/artemis/dick-canine.svg"
  20632. }
  20633. },
  20634. dickEquine: {
  20635. height: math.unit(0.85, "feet"),
  20636. name: "Dick (Equine)",
  20637. image: {
  20638. source: "./media/characters/artemis/dick-equine.svg"
  20639. }
  20640. },
  20641. dickExotic: {
  20642. height: math.unit(0.85, "feet"),
  20643. name: "Dick (Exotic)",
  20644. image: {
  20645. source: "./media/characters/artemis/dick-exotic.svg"
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(7.5, "feet"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Enlarged",
  20657. height: math.unit(12, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5 + 3 / 12, "feet"),
  20666. weight: math.unit(160, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/kira/front.svg",
  20670. extra: 906 / 786,
  20671. bottom: 0.01
  20672. }
  20673. },
  20674. back: {
  20675. height: math.unit(5 + 3 / 12, "feet"),
  20676. weight: math.unit(160, "lb"),
  20677. name: "Back",
  20678. image: {
  20679. source: "./media/characters/kira/back.svg",
  20680. extra: 882 / 757,
  20681. bottom: 0.005
  20682. }
  20683. },
  20684. frontDressed: {
  20685. height: math.unit(5 + 3 / 12, "feet"),
  20686. weight: math.unit(160, "lb"),
  20687. name: "Front (Dressed)",
  20688. image: {
  20689. source: "./media/characters/kira/front-dressed.svg",
  20690. extra: 906 / 786,
  20691. bottom: 0.01
  20692. }
  20693. },
  20694. beans: {
  20695. height: math.unit(0.92, "feet"),
  20696. name: "Beans",
  20697. image: {
  20698. source: "./media/characters/kira/beans.svg"
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(5 + 3 / 12, "feet"),
  20706. default: true
  20707. },
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20712. {
  20713. front: {
  20714. height: math.unit(5 + 4 / 12, "feet"),
  20715. weight: math.unit(145, "lb"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/scramble/front.svg",
  20719. extra: 763 / 727,
  20720. bottom: 0.05
  20721. }
  20722. },
  20723. back: {
  20724. height: math.unit(5 + 4 / 12, "feet"),
  20725. weight: math.unit(145, "lb"),
  20726. name: "Back",
  20727. image: {
  20728. source: "./media/characters/scramble/back.svg",
  20729. extra: 826 / 737,
  20730. bottom: 0.002
  20731. }
  20732. },
  20733. },
  20734. [
  20735. {
  20736. name: "Normal",
  20737. height: math.unit(5 + 4 / 12, "feet"),
  20738. default: true
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20744. {
  20745. side: {
  20746. height: math.unit(6 + 2 / 12, "feet"),
  20747. weight: math.unit(190, "lb"),
  20748. name: "Side",
  20749. image: {
  20750. source: "./media/characters/biscuit/side.svg",
  20751. extra: 858 / 791,
  20752. bottom: 0.044
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(6 + 2 / 12, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(5 + 2 / 12, "feet"),
  20769. weight: math.unit(120, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/poffin/front.svg",
  20773. extra: 786 / 680,
  20774. bottom: 0.005
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(5 + 2 / 12, "feet"),
  20782. default: true
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(6 + 3 / 12, "feet"),
  20791. weight: math.unit(519, "lb"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/dhari/front.svg",
  20795. extra: 1048 / 946,
  20796. bottom: 0.015
  20797. }
  20798. },
  20799. back: {
  20800. height: math.unit(6 + 3 / 12, "feet"),
  20801. weight: math.unit(519, "lb"),
  20802. name: "Back",
  20803. image: {
  20804. source: "./media/characters/dhari/back.svg",
  20805. extra: 1048 / 931,
  20806. bottom: 0.005
  20807. }
  20808. },
  20809. frontDressed: {
  20810. height: math.unit(6 + 3 / 12, "feet"),
  20811. weight: math.unit(519, "lb"),
  20812. name: "Front (Dressed)",
  20813. image: {
  20814. source: "./media/characters/dhari/front-dressed.svg",
  20815. extra: 1713 / 1546,
  20816. bottom: 0.02
  20817. }
  20818. },
  20819. backDressed: {
  20820. height: math.unit(6 + 3 / 12, "feet"),
  20821. weight: math.unit(519, "lb"),
  20822. name: "Back (Dressed)",
  20823. image: {
  20824. source: "./media/characters/dhari/back-dressed.svg",
  20825. extra: 1699 / 1537,
  20826. bottom: 0.01
  20827. }
  20828. },
  20829. maw: {
  20830. height: math.unit(0.95, "feet"),
  20831. name: "Maw",
  20832. image: {
  20833. source: "./media/characters/dhari/maw.svg"
  20834. }
  20835. },
  20836. wereFront: {
  20837. height: math.unit(12 + 8 / 12, "feet"),
  20838. weight: math.unit(4000, "lb"),
  20839. name: "Front (Were)",
  20840. image: {
  20841. source: "./media/characters/dhari/were-front.svg",
  20842. extra: 1065 / 969,
  20843. bottom: 0.015
  20844. }
  20845. },
  20846. wereBack: {
  20847. height: math.unit(12 + 8 / 12, "feet"),
  20848. weight: math.unit(4000, "lb"),
  20849. name: "Back (Were)",
  20850. image: {
  20851. source: "./media/characters/dhari/were-back.svg",
  20852. extra: 1065 / 969,
  20853. bottom: 0.012
  20854. }
  20855. },
  20856. wereMaw: {
  20857. height: math.unit(0.625, "meters"),
  20858. name: "Maw (Were)",
  20859. image: {
  20860. source: "./media/characters/dhari/were-maw.svg"
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(6 + 3 / 12, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20874. {
  20875. anthro: {
  20876. height: math.unit(5 + 7 / 12, "feet"),
  20877. weight: math.unit(175, "lb"),
  20878. name: "Anthro",
  20879. image: {
  20880. source: "./media/characters/rena-dyne/anthro.svg",
  20881. extra: 1849 / 1785,
  20882. bottom: 0.005
  20883. }
  20884. },
  20885. taur: {
  20886. height: math.unit(15 + 6 / 12, "feet"),
  20887. weight: math.unit(8000, "lb"),
  20888. name: "Taur",
  20889. image: {
  20890. source: "./media/characters/rena-dyne/taur.svg",
  20891. extra: 2315 / 2234,
  20892. bottom: 0.033
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(5 + 7 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(8, "feet"),
  20909. weight: math.unit(600, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/weremeep/front.svg",
  20913. extra: 967 / 862,
  20914. bottom: 0.01
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(8, "feet"),
  20922. default: true
  20923. },
  20924. {
  20925. name: "Lorg",
  20926. height: math.unit(12, "feet")
  20927. },
  20928. {
  20929. name: "Oh Lawd She Comin'",
  20930. height: math.unit(20, "feet")
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20936. {
  20937. front: {
  20938. height: math.unit(4, "feet"),
  20939. weight: math.unit(90, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/reza/front.svg",
  20943. extra: 1183 / 1111,
  20944. bottom: 0.017
  20945. }
  20946. },
  20947. back: {
  20948. height: math.unit(4, "feet"),
  20949. weight: math.unit(90, "lb"),
  20950. name: "Back",
  20951. image: {
  20952. source: "./media/characters/reza/back.svg",
  20953. extra: 1183 / 1111,
  20954. bottom: 0.01
  20955. }
  20956. },
  20957. drake: {
  20958. height: math.unit(30, "feet"),
  20959. weight: math.unit(246960, "lb"),
  20960. name: "Drake",
  20961. image: {
  20962. source: "./media/characters/reza/drake.svg",
  20963. extra: 2350 / 2024,
  20964. bottom: 60.7 / 2403
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(4, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20978. {
  20979. side: {
  20980. height: math.unit(15, "feet"),
  20981. weight: math.unit(14, "tons"),
  20982. name: "Side",
  20983. image: {
  20984. source: "./media/characters/athea/side.svg",
  20985. extra: 960 / 540,
  20986. bottom: 0.003
  20987. }
  20988. },
  20989. sitting: {
  20990. height: math.unit(6 * 2.85, "feet"),
  20991. weight: math.unit(14, "tons"),
  20992. name: "Sitting",
  20993. image: {
  20994. source: "./media/characters/athea/sitting.svg",
  20995. extra: 621 / 581,
  20996. bottom: 0.075
  20997. }
  20998. },
  20999. maw: {
  21000. height: math.unit(7.59498031496063, "feet"),
  21001. name: "Maw",
  21002. image: {
  21003. source: "./media/characters/athea/maw.svg"
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Lap Cat",
  21010. height: math.unit(2.5, "feet")
  21011. },
  21012. {
  21013. name: "Minimacro",
  21014. height: math.unit(15, "feet"),
  21015. default: true
  21016. },
  21017. {
  21018. name: "Macro",
  21019. height: math.unit(120, "feet")
  21020. },
  21021. {
  21022. name: "Macro+",
  21023. height: math.unit(640, "feet")
  21024. },
  21025. {
  21026. name: "Colossus",
  21027. height: math.unit(2.2, "miles")
  21028. },
  21029. ]
  21030. ))
  21031. characterMakers.push(() => makeCharacter(
  21032. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21033. {
  21034. front: {
  21035. height: math.unit(8 + 8 / 12, "feet"),
  21036. weight: math.unit(130, "kg"),
  21037. name: "Front",
  21038. image: {
  21039. source: "./media/characters/seroko/front.svg",
  21040. extra: 1385 / 1280,
  21041. bottom: 0.025
  21042. }
  21043. },
  21044. back: {
  21045. height: math.unit(8 + 8 / 12, "feet"),
  21046. weight: math.unit(130, "kg"),
  21047. name: "Back",
  21048. image: {
  21049. source: "./media/characters/seroko/back.svg",
  21050. extra: 1369 / 1238,
  21051. bottom: 0.018
  21052. }
  21053. },
  21054. frontDressed: {
  21055. height: math.unit(8 + 8 / 12, "feet"),
  21056. weight: math.unit(130, "kg"),
  21057. name: "Front (Dressed)",
  21058. image: {
  21059. source: "./media/characters/seroko/front-dressed.svg",
  21060. extra: 1366 / 1275,
  21061. bottom: 0.03
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(8 + 8 / 12, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21075. {
  21076. front: {
  21077. height: math.unit(5.5, "feet"),
  21078. weight: math.unit(160, "lb"),
  21079. name: "Front",
  21080. image: {
  21081. source: "./media/characters/quatzi/front.svg",
  21082. extra: 2346 / 2242,
  21083. bottom: 0.015
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(5.5, "feet"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Big",
  21095. height: math.unit(7.7, "feet")
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(5 + 11 / 12, "feet"),
  21104. weight: math.unit(180, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/sen/front.svg",
  21108. extra: 1321 / 1254,
  21109. bottom: 0.015
  21110. }
  21111. },
  21112. side: {
  21113. height: math.unit(5 + 11 / 12, "feet"),
  21114. weight: math.unit(180, "lb"),
  21115. name: "Side",
  21116. image: {
  21117. source: "./media/characters/sen/side.svg",
  21118. extra: 1321 / 1254,
  21119. bottom: 0.007
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(5 + 11 / 12, "feet"),
  21124. weight: math.unit(180, "lb"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/sen/back.svg",
  21128. extra: 1321 / 1254
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5 + 11 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(166.6, "cm"),
  21145. weight: math.unit(66.6, "kg"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/fruity/front.svg",
  21149. extra: 1510 / 1386,
  21150. bottom: 0.04
  21151. }
  21152. },
  21153. back: {
  21154. height: math.unit(166.6, "cm"),
  21155. weight: math.unit(66.6, "lb"),
  21156. name: "Back",
  21157. image: {
  21158. source: "./media/characters/fruity/back.svg",
  21159. extra: 1563 / 1435,
  21160. bottom: 0.005
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(166.6, "cm"),
  21168. default: true
  21169. },
  21170. {
  21171. name: "Demonic",
  21172. height: math.unit(166.6, "feet")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21178. {
  21179. side: {
  21180. height: math.unit(10, "feet"),
  21181. weight: math.unit(500, "lb"),
  21182. name: "Side",
  21183. image: {
  21184. source: "./media/characters/zost/side.svg",
  21185. extra: 966 / 880,
  21186. bottom: 0.075
  21187. }
  21188. },
  21189. mawFront: {
  21190. height: math.unit(1.08, "meters"),
  21191. name: "Maw (Front)",
  21192. image: {
  21193. source: "./media/characters/zost/maw-front.svg"
  21194. }
  21195. },
  21196. mawSide: {
  21197. height: math.unit(2.66, "feet"),
  21198. name: "Maw (Side)",
  21199. image: {
  21200. source: "./media/characters/zost/maw-side.svg"
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(10, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(5 + 4 / 12, "feet"),
  21217. weight: math.unit(120, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/luci/front.svg",
  21221. extra: 1985 / 1884,
  21222. bottom: 0.04
  21223. }
  21224. },
  21225. back: {
  21226. height: math.unit(5 + 4 / 12, "feet"),
  21227. weight: math.unit(120, "lb"),
  21228. name: "Back",
  21229. image: {
  21230. source: "./media/characters/luci/back.svg",
  21231. extra: 1892 / 1791,
  21232. bottom: 0.002
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(5 + 4 / 12, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(1500, "feet"),
  21249. weight: math.unit(3.8e6, "tons"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/2th/front.svg",
  21253. extra: 3489 / 3350,
  21254. bottom: 0.1
  21255. }
  21256. },
  21257. foot: {
  21258. height: math.unit(461, "feet"),
  21259. name: "Foot",
  21260. image: {
  21261. source: "./media/characters/2th/foot.svg"
  21262. }
  21263. },
  21264. },
  21265. [
  21266. {
  21267. name: "\"Micro\"",
  21268. height: math.unit(15 + 7 / 12, "feet")
  21269. },
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(1500, "feet"),
  21273. default: true
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(5000, "feet")
  21278. },
  21279. {
  21280. name: "Megamacro",
  21281. height: math.unit(15, "miles")
  21282. },
  21283. {
  21284. name: "Gigamacro",
  21285. height: math.unit(4000, "miles")
  21286. },
  21287. {
  21288. name: "Galactic",
  21289. height: math.unit(50, "AU")
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21295. {
  21296. front: {
  21297. height: math.unit(5 + 6 / 12, "feet"),
  21298. weight: math.unit(220, "lb"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/amethyst/front.svg",
  21302. extra: 2078 / 2040,
  21303. bottom: 0.045
  21304. }
  21305. },
  21306. back: {
  21307. height: math.unit(5 + 6 / 12, "feet"),
  21308. weight: math.unit(220, "lb"),
  21309. name: "Back",
  21310. image: {
  21311. source: "./media/characters/amethyst/back.svg",
  21312. extra: 2021 / 1989,
  21313. bottom: 0.02
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(5 + 6 / 12, "feet"),
  21321. default: true
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21327. {
  21328. front: {
  21329. height: math.unit(4 + 11 / 12, "feet"),
  21330. weight: math.unit(120, "lb"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/yumi-akiyama/front.svg",
  21334. extra: 1327 / 1235,
  21335. bottom: 0.02
  21336. }
  21337. },
  21338. back: {
  21339. height: math.unit(4 + 11 / 12, "feet"),
  21340. weight: math.unit(120, "lb"),
  21341. name: "Back",
  21342. image: {
  21343. source: "./media/characters/yumi-akiyama/back.svg",
  21344. extra: 1287 / 1245,
  21345. bottom: 0.002
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Galactic",
  21352. height: math.unit(50, "galaxies"),
  21353. default: true
  21354. },
  21355. {
  21356. name: "Universal",
  21357. height: math.unit(100, "universes")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(8, "feet"),
  21366. weight: math.unit(500, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/rifter-yrmori/front.svg",
  21370. extra: 1180 / 1125,
  21371. bottom: 0.02
  21372. }
  21373. },
  21374. back: {
  21375. height: math.unit(8, "feet"),
  21376. weight: math.unit(500, "lb"),
  21377. name: "Back",
  21378. image: {
  21379. source: "./media/characters/rifter-yrmori/back.svg",
  21380. extra: 1190 / 1145,
  21381. bottom: 0.001
  21382. }
  21383. },
  21384. wings: {
  21385. height: math.unit(7.75, "feet"),
  21386. weight: math.unit(500, "lb"),
  21387. name: "Wings",
  21388. image: {
  21389. source: "./media/characters/rifter-yrmori/wings.svg",
  21390. extra: 1357 / 1285
  21391. }
  21392. },
  21393. maw: {
  21394. height: math.unit(0.8, "feet"),
  21395. name: "Maw",
  21396. image: {
  21397. source: "./media/characters/rifter-yrmori/maw.svg"
  21398. }
  21399. },
  21400. mawfront: {
  21401. height: math.unit(1.45, "feet"),
  21402. name: "Maw (Front)",
  21403. image: {
  21404. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(8, "feet"),
  21412. default: true
  21413. },
  21414. {
  21415. name: "Macro",
  21416. height: math.unit(42, "meters")
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21422. {
  21423. were: {
  21424. height: math.unit(25 + 6 / 12, "feet"),
  21425. weight: math.unit(10000, "lb"),
  21426. name: "Were",
  21427. image: {
  21428. source: "./media/characters/tahajin/were.svg",
  21429. extra: 801 / 770,
  21430. bottom: 0.042
  21431. }
  21432. },
  21433. aquatic: {
  21434. height: math.unit(6 + 4 / 12, "feet"),
  21435. weight: math.unit(160, "lb"),
  21436. name: "Aquatic",
  21437. image: {
  21438. source: "./media/characters/tahajin/aquatic.svg",
  21439. extra: 572 / 542,
  21440. bottom: 0.04
  21441. }
  21442. },
  21443. chow: {
  21444. height: math.unit(8 + 11 / 12, "feet"),
  21445. weight: math.unit(450, "lb"),
  21446. name: "Chow",
  21447. image: {
  21448. source: "./media/characters/tahajin/chow.svg",
  21449. extra: 660 / 640,
  21450. bottom: 0.015
  21451. }
  21452. },
  21453. demiNaga: {
  21454. height: math.unit(6 + 8 / 12, "feet"),
  21455. weight: math.unit(300, "lb"),
  21456. name: "Demi Naga",
  21457. image: {
  21458. source: "./media/characters/tahajin/demi-naga.svg",
  21459. extra: 643 / 615,
  21460. bottom: 0.1
  21461. }
  21462. },
  21463. data: {
  21464. height: math.unit(5, "inches"),
  21465. weight: math.unit(0.1, "lb"),
  21466. name: "Data",
  21467. image: {
  21468. source: "./media/characters/tahajin/data.svg"
  21469. }
  21470. },
  21471. fluu: {
  21472. height: math.unit(5 + 7 / 12, "feet"),
  21473. weight: math.unit(140, "lb"),
  21474. name: "Fluu",
  21475. image: {
  21476. source: "./media/characters/tahajin/fluu.svg",
  21477. extra: 628 / 592,
  21478. bottom: 0.02
  21479. }
  21480. },
  21481. starWarrior: {
  21482. height: math.unit(4 + 5 / 12, "feet"),
  21483. weight: math.unit(50, "lb"),
  21484. name: "Star Warrior",
  21485. image: {
  21486. source: "./media/characters/tahajin/star-warrior.svg"
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(25 + 6 / 12, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(8, "feet"),
  21503. weight: math.unit(350, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/gabira/front.svg",
  21507. extra: 608 / 580,
  21508. bottom: 0.03
  21509. }
  21510. },
  21511. back: {
  21512. height: math.unit(8, "feet"),
  21513. weight: math.unit(350, "lb"),
  21514. name: "Back",
  21515. image: {
  21516. source: "./media/characters/gabira/back.svg",
  21517. extra: 608 / 580,
  21518. bottom: 0.03
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(8, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(5 + 3 / 12, "feet"),
  21535. weight: math.unit(137, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/sasha-katraine/front.svg",
  21539. bottom: 0.045
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Micro",
  21546. height: math.unit(5, "inches")
  21547. },
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(5 + 3 / 12, "feet"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21557. {
  21558. side: {
  21559. height: math.unit(4, "inches"),
  21560. weight: math.unit(200, "grams"),
  21561. name: "Side",
  21562. image: {
  21563. source: "./media/characters/der/side.svg",
  21564. extra: 719 / 400,
  21565. bottom: 30.6 / 749.9187
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Micro",
  21572. height: math.unit(4, "inches"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21579. {
  21580. side: {
  21581. height: math.unit(30, "meters"),
  21582. weight: math.unit(700, "tonnes"),
  21583. name: "Side",
  21584. image: {
  21585. source: "./media/characters/fixerdragon/side.svg",
  21586. extra: (1293.0514 - 116.03) / 1106.86,
  21587. bottom: 116.03 / 1293.0514
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Planck",
  21594. height: math.unit(1.6e-35, "meters")
  21595. },
  21596. {
  21597. name: "Micro",
  21598. height: math.unit(0.4, "meters")
  21599. },
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(30, "meters"),
  21603. default: true
  21604. },
  21605. {
  21606. name: "Megamacro",
  21607. height: math.unit(1.2, "megameters")
  21608. },
  21609. {
  21610. name: "Teramacro",
  21611. height: math.unit(130, "terameters")
  21612. },
  21613. {
  21614. name: "Yottamacro",
  21615. height: math.unit(6200, "yottameters")
  21616. },
  21617. ]
  21618. ));
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(8, "feet"),
  21624. weight: math.unit(250, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/kite/front.svg",
  21628. extra: 2796 / 2659,
  21629. bottom: 0.002
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Normal",
  21636. height: math.unit(8, "feet"),
  21637. default: true
  21638. },
  21639. {
  21640. name: "Macro",
  21641. height: math.unit(360, "feet")
  21642. },
  21643. {
  21644. name: "Megamacro",
  21645. height: math.unit(1500, "feet")
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(5 + 11/12, "feet"),
  21654. weight: math.unit(170, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/poojawa-vynar/front.svg",
  21658. extra: 1735/1585,
  21659. bottom: 96/1831
  21660. }
  21661. },
  21662. back: {
  21663. height: math.unit(5 + 11/12, "feet"),
  21664. weight: math.unit(170, "lb"),
  21665. name: "Back",
  21666. image: {
  21667. source: "./media/characters/poojawa-vynar/back.svg",
  21668. extra: 1749/1607,
  21669. bottom: 28/1777
  21670. }
  21671. },
  21672. male: {
  21673. height: math.unit(5 + 11/12, "feet"),
  21674. weight: math.unit(170, "lb"),
  21675. name: "Male",
  21676. image: {
  21677. source: "./media/characters/poojawa-vynar/male.svg",
  21678. extra: 1855/1713,
  21679. bottom: 63/1918
  21680. }
  21681. },
  21682. taur: {
  21683. height: math.unit(5 + 11/12, "feet"),
  21684. weight: math.unit(170, "lb"),
  21685. name: "Taur",
  21686. image: {
  21687. source: "./media/characters/poojawa-vynar/taur.svg",
  21688. extra: 1151/1059,
  21689. bottom: 356/1507
  21690. }
  21691. },
  21692. frontDressed: {
  21693. height: math.unit(5 + 11/12, "feet"),
  21694. weight: math.unit(170, "lb"),
  21695. name: "Front (Dressed)",
  21696. image: {
  21697. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21698. extra: 1735/1585,
  21699. bottom: 96/1831
  21700. }
  21701. },
  21702. backDressed: {
  21703. height: math.unit(5 + 11/12, "feet"),
  21704. weight: math.unit(170, "lb"),
  21705. name: "Back (Dressed)",
  21706. image: {
  21707. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21708. extra: 1749/1607,
  21709. bottom: 28/1777
  21710. }
  21711. },
  21712. maleDressed: {
  21713. height: math.unit(5 + 11/12, "feet"),
  21714. weight: math.unit(170, "lb"),
  21715. name: "Male (Dressed)",
  21716. image: {
  21717. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21718. extra: 1855/1713,
  21719. bottom: 63/1918
  21720. }
  21721. },
  21722. taurDressed: {
  21723. height: math.unit(5 + 11/12, "feet"),
  21724. weight: math.unit(170, "lb"),
  21725. name: "Taur (Dressed)",
  21726. image: {
  21727. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21728. extra: 1151/1059,
  21729. bottom: 356/1507
  21730. }
  21731. },
  21732. maw: {
  21733. height: math.unit(1.46, "feet"),
  21734. name: "Maw",
  21735. image: {
  21736. source: "./media/characters/poojawa-vynar/maw.svg"
  21737. }
  21738. },
  21739. head: {
  21740. height: math.unit(2.34, "feet"),
  21741. name: "Head",
  21742. image: {
  21743. source: "./media/characters/poojawa-vynar/head.svg"
  21744. }
  21745. },
  21746. paw: {
  21747. height: math.unit(1.61, "feet"),
  21748. name: "Paw",
  21749. image: {
  21750. source: "./media/characters/poojawa-vynar/paw.svg"
  21751. }
  21752. },
  21753. pawToering: {
  21754. height: math.unit(1.72, "feet"),
  21755. name: "Paw (Toering)",
  21756. image: {
  21757. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21758. }
  21759. },
  21760. toering: {
  21761. height: math.unit(2.9, "inches"),
  21762. name: "Toering",
  21763. image: {
  21764. source: "./media/characters/poojawa-vynar/toering.svg"
  21765. }
  21766. },
  21767. shaft: {
  21768. height: math.unit(0.625, "feet"),
  21769. name: "Shaft",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/shaft.svg"
  21772. }
  21773. },
  21774. spade: {
  21775. height: math.unit(0.42, "feet"),
  21776. name: "Spade",
  21777. image: {
  21778. source: "./media/characters/poojawa-vynar/spade.svg"
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Shortstack",
  21785. height: math.unit(4, "feet")
  21786. },
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(5 + 11 / 12, "feet"),
  21790. default: true
  21791. },
  21792. {
  21793. name: "Tauric",
  21794. height: math.unit(4, "meters")
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(293, "meters"),
  21803. weight: math.unit(70400, "tons"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/violette/front.svg",
  21807. extra: 1227 / 1180,
  21808. bottom: 0.005
  21809. }
  21810. },
  21811. back: {
  21812. height: math.unit(293, "meters"),
  21813. weight: math.unit(70400, "tons"),
  21814. name: "Back",
  21815. image: {
  21816. source: "./media/characters/violette/back.svg",
  21817. extra: 1227 / 1180,
  21818. bottom: 0.005
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(293, "meters"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(1050, "feet"),
  21835. weight: math.unit(200000, "tons"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/alessandra/front.svg",
  21839. extra: 960 / 912,
  21840. bottom: 0.06
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Macro",
  21847. height: math.unit(1050, "feet")
  21848. },
  21849. {
  21850. name: "Macro+",
  21851. height: math.unit(900, "meters"),
  21852. default: true
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(5, "feet"),
  21861. weight: math.unit(187, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/person/front.svg",
  21865. extra: 3087 / 2945,
  21866. bottom: 91 / 3181
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Micro",
  21873. height: math.unit(3, "inches")
  21874. },
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(5, "feet"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Macro",
  21882. height: math.unit(90, "feet")
  21883. },
  21884. {
  21885. name: "Max Size",
  21886. height: math.unit(280, "feet")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(4.5, "meters"),
  21895. weight: math.unit(3200, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/ty/front.svg",
  21899. extra: 1038 / 960,
  21900. bottom: 31.156 / 1068
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(4.5, "meters"),
  21905. weight: math.unit(3200, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/ty/back.svg",
  21909. extra: 1044 / 966,
  21910. bottom: 7.48 / 1049
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(4.5, "meters"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(5 + 4 / 12, "feet"),
  21927. weight: math.unit(115, "lb"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/rocky/front.svg",
  21931. extra: 1012 / 975,
  21932. bottom: 54 / 1066
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Normal",
  21939. height: math.unit(5 + 4 / 12, "feet"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21946. {
  21947. upright: {
  21948. height: math.unit(6, "meters"),
  21949. weight: math.unit(4000, "kg"),
  21950. name: "Upright",
  21951. image: {
  21952. source: "./media/characters/ruin/upright.svg",
  21953. extra: 668 / 661,
  21954. bottom: 42 / 799.8396
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(6, "meters"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(5, "feet"),
  21971. weight: math.unit(106, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/robin/front.svg",
  21975. extra: 862 / 799,
  21976. bottom: 42.4 / 914.8856
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(5, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21990. {
  21991. side: {
  21992. height: math.unit(3, "feet"),
  21993. weight: math.unit(225, "lb"),
  21994. name: "Side",
  21995. image: {
  21996. source: "./media/characters/saian/side.svg",
  21997. extra: 566 / 356,
  21998. bottom: 79.7 / 643
  21999. }
  22000. },
  22001. maw: {
  22002. height: math.unit(2.85, "feet"),
  22003. name: "Maw",
  22004. image: {
  22005. source: "./media/characters/saian/maw.svg"
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(3, "feet"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22019. {
  22020. side: {
  22021. height: math.unit(8, "feet"),
  22022. weight: math.unit(300, "lb"),
  22023. name: "Side",
  22024. image: {
  22025. source: "./media/characters/equus-silvermane/side.svg",
  22026. extra: 2176 / 2050,
  22027. bottom: 65.7 / 2245
  22028. }
  22029. },
  22030. front: {
  22031. height: math.unit(8, "feet"),
  22032. weight: math.unit(300, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/equus-silvermane/front.svg",
  22036. extra: 4633 / 4400,
  22037. bottom: 71.3 / 4706.915
  22038. }
  22039. },
  22040. sideStepping: {
  22041. height: math.unit(8, "feet"),
  22042. weight: math.unit(300, "lb"),
  22043. name: "Side (Stepping)",
  22044. image: {
  22045. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22046. extra: 1968 / 1860,
  22047. bottom: 16.4 / 1989
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(8, "feet")
  22055. },
  22056. {
  22057. name: "Minimacro",
  22058. height: math.unit(75, "feet"),
  22059. default: true
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(150, "feet")
  22064. },
  22065. {
  22066. name: "Macro+",
  22067. height: math.unit(1000, "feet")
  22068. },
  22069. {
  22070. name: "Megamacro",
  22071. height: math.unit(1, "mile")
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22077. {
  22078. side: {
  22079. height: math.unit(20, "feet"),
  22080. weight: math.unit(30000, "kg"),
  22081. name: "Side",
  22082. image: {
  22083. source: "./media/characters/windar/side.svg",
  22084. extra: 1491 / 1248,
  22085. bottom: 82.56 / 1568
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(20, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22099. {
  22100. side: {
  22101. height: math.unit(15.66, "feet"),
  22102. weight: math.unit(150, "lb"),
  22103. name: "Side",
  22104. image: {
  22105. source: "./media/characters/melody/side.svg",
  22106. extra: 1097 / 944,
  22107. bottom: 11.8 / 1109
  22108. }
  22109. },
  22110. sideOutfit: {
  22111. height: math.unit(15.66, "feet"),
  22112. weight: math.unit(150, "lb"),
  22113. name: "Side (Outfit)",
  22114. image: {
  22115. source: "./media/characters/melody/side-outfit.svg",
  22116. extra: 1097 / 944,
  22117. bottom: 11.8 / 1109
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(15.66, "feet"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(8, "feet"),
  22134. weight: math.unit(325, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/windera/front.svg",
  22138. extra: 3180 / 2845,
  22139. bottom: 178 / 3365
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(8, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22153. {
  22154. front: {
  22155. height: math.unit(28.75, "feet"),
  22156. weight: math.unit(2000, "kg"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/sonear/front.svg",
  22160. extra: 1041.1 / 964.9,
  22161. bottom: 53.7 / 1096.6
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(28.75, "feet"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22175. {
  22176. side: {
  22177. height: math.unit(25.5, "feet"),
  22178. weight: math.unit(23000, "kg"),
  22179. name: "Side",
  22180. image: {
  22181. source: "./media/characters/kanara/side.svg"
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(25.5, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22195. {
  22196. side: {
  22197. height: math.unit(10, "feet"),
  22198. weight: math.unit(1000, "kg"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/ereus/side.svg",
  22202. extra: 1157 / 959,
  22203. bottom: 153 / 1312.5
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(10, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22217. {
  22218. side: {
  22219. height: math.unit(4.5, "feet"),
  22220. weight: math.unit(500, "lb"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/e-ter/side.svg",
  22224. extra: 1550 / 1248,
  22225. bottom: 146 / 1694
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(4.5, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22239. {
  22240. side: {
  22241. height: math.unit(9.7, "feet"),
  22242. weight: math.unit(4000, "kg"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/yamie/side.svg"
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(9.7, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(50, "feet"),
  22262. weight: math.unit(50000, "kg"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/anders/front.svg",
  22266. extra: 570 / 539,
  22267. bottom: 14.7 / 586.7
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Large",
  22274. height: math.unit(50, "feet")
  22275. },
  22276. {
  22277. name: "Macro",
  22278. height: math.unit(2000, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Megamacro",
  22283. height: math.unit(12, "miles")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(7 + 2 / 12, "feet"),
  22292. weight: math.unit(300, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/reban/front.svg",
  22296. extra: 516 / 487,
  22297. bottom: 42.82 / 558.356
  22298. }
  22299. },
  22300. dick: {
  22301. height: math.unit(7 / 5, "feet"),
  22302. name: "Dick",
  22303. image: {
  22304. source: "./media/characters/reban/dick.svg"
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Natural Height",
  22311. height: math.unit(7 + 2 / 12, "feet")
  22312. },
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(500, "feet"),
  22316. default: true
  22317. },
  22318. {
  22319. name: "Canon Height",
  22320. height: math.unit(50, "AU")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(6, "feet"),
  22329. weight: math.unit(150, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/terrance-keayes/front.svg",
  22333. extra: 1.005,
  22334. bottom: 151 / 1615
  22335. }
  22336. },
  22337. side: {
  22338. height: math.unit(6, "feet"),
  22339. weight: math.unit(150, "lb"),
  22340. name: "Side",
  22341. image: {
  22342. source: "./media/characters/terrance-keayes/side.svg",
  22343. extra: 1.005,
  22344. bottom: 129.4 / 1544
  22345. }
  22346. },
  22347. back: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Back",
  22351. image: {
  22352. source: "./media/characters/terrance-keayes/back.svg",
  22353. extra: 1.005,
  22354. bottom: 58.4 / 1557.3
  22355. }
  22356. },
  22357. dick: {
  22358. height: math.unit(6 * 0.208, "feet"),
  22359. name: "Dick",
  22360. image: {
  22361. source: "./media/characters/terrance-keayes/dick.svg"
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Canon Height",
  22368. height: math.unit(35, "miles"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(6, "feet"),
  22378. weight: math.unit(150, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/ofelia/front.svg",
  22382. extra: 546 / 541,
  22383. bottom: 39 / 583
  22384. }
  22385. },
  22386. back: {
  22387. height: math.unit(6, "feet"),
  22388. weight: math.unit(150, "lb"),
  22389. name: "Back",
  22390. image: {
  22391. source: "./media/characters/ofelia/back.svg",
  22392. extra: 564 / 559.5,
  22393. bottom: 8.69 / 573.02
  22394. }
  22395. },
  22396. maw: {
  22397. height: math.unit(1, "feet"),
  22398. name: "Maw",
  22399. image: {
  22400. source: "./media/characters/ofelia/maw.svg"
  22401. }
  22402. },
  22403. foot: {
  22404. height: math.unit(1.949, "feet"),
  22405. name: "Foot",
  22406. image: {
  22407. source: "./media/characters/ofelia/foot.svg"
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Canon Height",
  22414. height: math.unit(2000, "miles"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(6, "feet"),
  22424. weight: math.unit(150, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/samuel/front.svg",
  22428. extra: 265 / 258,
  22429. bottom: 2 / 266.1566
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(100, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Full Size",
  22441. height: math.unit(1000, "miles")
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(6, "feet"),
  22450. weight: math.unit(300, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/beishir-kiel/front.svg",
  22454. extra: 569 / 547,
  22455. bottom: 41.9 / 609
  22456. }
  22457. },
  22458. maw: {
  22459. height: math.unit(6 * 0.202, "feet"),
  22460. name: "Maw",
  22461. image: {
  22462. source: "./media/characters/beishir-kiel/maw.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Macro",
  22469. height: math.unit(300, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(5 + 7/12, "feet"),
  22479. weight: math.unit(120, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/logan-grey/front.svg",
  22483. extra: 1836/1738,
  22484. bottom: 108/1944
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(5 + 7/12, "feet"),
  22489. weight: math.unit(120, "lb"),
  22490. name: "Back",
  22491. image: {
  22492. source: "./media/characters/logan-grey/back.svg",
  22493. extra: 1880/1794,
  22494. bottom: 24/1904
  22495. }
  22496. },
  22497. frontSfw: {
  22498. height: math.unit(5 + 7/12, "feet"),
  22499. weight: math.unit(120, "lb"),
  22500. name: "Front (SFW)",
  22501. image: {
  22502. source: "./media/characters/logan-grey/front-sfw.svg",
  22503. extra: 1836/1738,
  22504. bottom: 108/1944
  22505. }
  22506. },
  22507. backSfw: {
  22508. height: math.unit(5 + 7/12, "feet"),
  22509. weight: math.unit(120, "lb"),
  22510. name: "Back (SFW)",
  22511. image: {
  22512. source: "./media/characters/logan-grey/back-sfw.svg",
  22513. extra: 1880/1794,
  22514. bottom: 24/1904
  22515. }
  22516. },
  22517. hands: {
  22518. height: math.unit(0.84, "feet"),
  22519. name: "Hands",
  22520. image: {
  22521. source: "./media/characters/logan-grey/hands.svg"
  22522. }
  22523. },
  22524. paws: {
  22525. height: math.unit(0.72, "feet"),
  22526. name: "Paws",
  22527. image: {
  22528. source: "./media/characters/logan-grey/paws.svg"
  22529. }
  22530. },
  22531. cock: {
  22532. height: math.unit(1.45, "feet"),
  22533. name: "Cock",
  22534. image: {
  22535. source: "./media/characters/logan-grey/cock.svg"
  22536. }
  22537. },
  22538. cockAlt: {
  22539. height: math.unit(1.437, "feet"),
  22540. name: "Cock (alt)",
  22541. image: {
  22542. source: "./media/characters/logan-grey/cock-alt.svg"
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(5 + 8 / 12, "feet")
  22550. },
  22551. {
  22552. name: "The 500 Foot Femboy",
  22553. height: math.unit(500, "feet"),
  22554. default: true
  22555. },
  22556. {
  22557. name: "Megmacro",
  22558. height: math.unit(20, "miles")
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22564. {
  22565. front: {
  22566. height: math.unit(8 + 2 / 12, "feet"),
  22567. weight: math.unit(275, "lb"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/draganta/front.svg",
  22571. extra: 1177 / 1135,
  22572. bottom: 33.46 / 1212.1
  22573. }
  22574. },
  22575. },
  22576. [
  22577. {
  22578. name: "Normal",
  22579. height: math.unit(8 + 6 / 12, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Macro",
  22584. height: math.unit(150, "feet")
  22585. },
  22586. {
  22587. name: "Megamacro",
  22588. height: math.unit(1000, "miles")
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(1.72, "m"),
  22597. weight: math.unit(80, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/voski/front.svg",
  22601. extra: 2076.22 / 2022.4,
  22602. bottom: 102.7 / 2177.3866
  22603. }
  22604. },
  22605. frontNsfw: {
  22606. height: math.unit(1.72, "m"),
  22607. weight: math.unit(80, "lb"),
  22608. name: "Front (NSFW)",
  22609. image: {
  22610. source: "./media/characters/voski/front-nsfw.svg",
  22611. extra: 2076.22 / 2022.4,
  22612. bottom: 102.7 / 2177.3866
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(1.72, "m"),
  22617. weight: math.unit(80, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/voski/back.svg",
  22621. extra: 2104 / 2051,
  22622. bottom: 10.45 / 2113.63
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(1.72, "m")
  22630. },
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(55, "m"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Macro+",
  22638. height: math.unit(300, "m")
  22639. },
  22640. {
  22641. name: "Macro++",
  22642. height: math.unit(700, "m")
  22643. },
  22644. {
  22645. name: "Macro+++",
  22646. height: math.unit(4500, "m")
  22647. },
  22648. {
  22649. name: "Macro++++",
  22650. height: math.unit(45, "km")
  22651. },
  22652. {
  22653. name: "Macro+++++",
  22654. height: math.unit(1220, "km")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(2.3, "m"),
  22663. weight: math.unit(304, "kg"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/icowom-lee/front.svg",
  22667. extra: 985 / 955,
  22668. bottom: 25.4 / 1012
  22669. }
  22670. },
  22671. fronttentacles: {
  22672. height: math.unit(2.3, "m"),
  22673. weight: math.unit(304, "kg"),
  22674. name: "Front-tentacles",
  22675. image: {
  22676. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22677. extra: 985 / 955,
  22678. bottom: 25.4 / 1012
  22679. }
  22680. },
  22681. back: {
  22682. height: math.unit(2.3, "m"),
  22683. weight: math.unit(304, "kg"),
  22684. name: "Back",
  22685. image: {
  22686. source: "./media/characters/icowom-lee/back.svg",
  22687. extra: 975 / 954,
  22688. bottom: 9.5 / 985
  22689. }
  22690. },
  22691. backtentacles: {
  22692. height: math.unit(2.3, "m"),
  22693. weight: math.unit(304, "kg"),
  22694. name: "Back-tentacles",
  22695. image: {
  22696. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22697. extra: 975 / 954,
  22698. bottom: 9.5 / 985
  22699. }
  22700. },
  22701. frontDressed: {
  22702. height: math.unit(2.3, "m"),
  22703. weight: math.unit(304, "kg"),
  22704. name: "Front (Dressed)",
  22705. image: {
  22706. source: "./media/characters/icowom-lee/front-dressed.svg",
  22707. extra: 3076 / 2933,
  22708. bottom: 51.4 / 3125.1889
  22709. }
  22710. },
  22711. rump: {
  22712. height: math.unit(0.776, "meters"),
  22713. name: "Rump",
  22714. image: {
  22715. source: "./media/characters/icowom-lee/rump.svg"
  22716. }
  22717. },
  22718. genitals: {
  22719. height: math.unit(0.78, "meters"),
  22720. name: "Genitals",
  22721. image: {
  22722. source: "./media/characters/icowom-lee/genitals.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(2.3, "meters"),
  22730. default: true
  22731. },
  22732. {
  22733. name: "Macro",
  22734. height: math.unit(94, "meters"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(22, "meters"),
  22744. weight: math.unit(21000, "kg"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/shock-diamond/front.svg",
  22748. extra: 2204 / 2053,
  22749. bottom: 65 / 2239.47
  22750. }
  22751. },
  22752. frontNude: {
  22753. height: math.unit(22, "meters"),
  22754. weight: math.unit(21000, "kg"),
  22755. name: "Front (Nude)",
  22756. image: {
  22757. source: "./media/characters/shock-diamond/front-nude.svg",
  22758. extra: 2514 / 2285,
  22759. bottom: 13 / 2527.56
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(3, "meters")
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(22, "meters"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(5 + 4 / 12, "feet"),
  22780. weight: math.unit(120, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/rory/front.svg",
  22784. extra: 1318/1241,
  22785. bottom: 42/1360
  22786. }
  22787. },
  22788. back: {
  22789. height: math.unit(5 + 4 / 12, "feet"),
  22790. weight: math.unit(120, "lb"),
  22791. name: "Back",
  22792. image: {
  22793. source: "./media/characters/rory/back.svg",
  22794. extra: 1318/1241,
  22795. bottom: 42/1360
  22796. }
  22797. },
  22798. butt: {
  22799. height: math.unit(1.74, "feet"),
  22800. name: "Butt",
  22801. image: {
  22802. source: "./media/characters/rory/butt.svg"
  22803. }
  22804. },
  22805. dick: {
  22806. height: math.unit(1.02, "feet"),
  22807. name: "Dick",
  22808. image: {
  22809. source: "./media/characters/rory/dick.svg"
  22810. }
  22811. },
  22812. paws: {
  22813. height: math.unit(1, "feet"),
  22814. name: "Paws",
  22815. image: {
  22816. source: "./media/characters/rory/paws.svg"
  22817. }
  22818. },
  22819. frontAlt: {
  22820. height: math.unit(5 + 4 / 12, "feet"),
  22821. weight: math.unit(120, "lb"),
  22822. name: "Front (Alt)",
  22823. image: {
  22824. source: "./media/characters/rory/front-alt.svg",
  22825. extra: 589 / 556,
  22826. bottom: 45.7 / 635.76
  22827. }
  22828. },
  22829. frontAltNude: {
  22830. height: math.unit(5 + 4 / 12, "feet"),
  22831. weight: math.unit(120, "lb"),
  22832. name: "Front (Alt, Nude)",
  22833. image: {
  22834. source: "./media/characters/rory/front-alt-nude.svg",
  22835. extra: 589 / 556,
  22836. bottom: 45.7 / 635.76
  22837. }
  22838. },
  22839. side: {
  22840. height: math.unit(5 + 4 / 12, "feet"),
  22841. weight: math.unit(120, "lb"),
  22842. name: "Side",
  22843. image: {
  22844. source: "./media/characters/rory/side.svg",
  22845. extra: 597 / 564,
  22846. bottom: 55 / 653
  22847. }
  22848. },
  22849. backAlt: {
  22850. height: math.unit(5 + 4 / 12, "feet"),
  22851. weight: math.unit(120, "lb"),
  22852. name: "Back (Alt)",
  22853. image: {
  22854. source: "./media/characters/rory/back-alt.svg",
  22855. extra: 620 / 585,
  22856. bottom: 8.86 / 630.43
  22857. }
  22858. },
  22859. dickAlt: {
  22860. height: math.unit(0.86, "feet"),
  22861. name: "Dick (Alt)",
  22862. image: {
  22863. source: "./media/characters/rory/dick-alt.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(5 + 4 / 12, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(100, "feet")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(140, "feet")
  22880. },
  22881. {
  22882. name: "Macro++",
  22883. height: math.unit(300, "feet")
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(5 + 9 / 12, "feet"),
  22892. weight: math.unit(190, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/sprisk/front.svg",
  22896. extra: 1225 / 1180,
  22897. bottom: 42.7 / 1266.4
  22898. }
  22899. },
  22900. frontNsfw: {
  22901. height: math.unit(5 + 9 / 12, "feet"),
  22902. weight: math.unit(190, "lb"),
  22903. name: "Front (NSFW)",
  22904. image: {
  22905. source: "./media/characters/sprisk/front-nsfw.svg",
  22906. extra: 1225 / 1180,
  22907. bottom: 42.7 / 1266.4
  22908. }
  22909. },
  22910. back: {
  22911. height: math.unit(5 + 9 / 12, "feet"),
  22912. weight: math.unit(190, "lb"),
  22913. name: "Back",
  22914. image: {
  22915. source: "./media/characters/sprisk/back.svg",
  22916. extra: 1247 / 1200,
  22917. bottom: 5.6 / 1253.04
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Tiny",
  22924. height: math.unit(2, "inches")
  22925. },
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(5 + 9 / 12, "feet"),
  22929. default: true
  22930. },
  22931. {
  22932. name: "Mini Macro",
  22933. height: math.unit(18, "feet")
  22934. },
  22935. {
  22936. name: "Macro",
  22937. height: math.unit(100, "feet")
  22938. },
  22939. {
  22940. name: "MACRO",
  22941. height: math.unit(50, "miles")
  22942. },
  22943. {
  22944. name: "M A C R O",
  22945. height: math.unit(300, "miles")
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22951. {
  22952. side: {
  22953. height: math.unit(15.6, "meters"),
  22954. weight: math.unit(700000, "kg"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/bunsen/side.svg",
  22958. extra: 1644 / 358
  22959. }
  22960. },
  22961. foot: {
  22962. height: math.unit(1.611 * 1644 / 358, "meter"),
  22963. name: "Foot",
  22964. image: {
  22965. source: "./media/characters/bunsen/foot.svg"
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Small",
  22972. height: math.unit(10, "feet")
  22973. },
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(15.6, "meters"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22983. {
  22984. front: {
  22985. height: math.unit(4 + 11 / 12, "feet"),
  22986. weight: math.unit(140, "lb"),
  22987. name: "Front",
  22988. image: {
  22989. source: "./media/characters/sesh/front.svg",
  22990. extra: 3420 / 3231,
  22991. bottom: 72 / 3949.5
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Normal",
  22998. height: math.unit(4 + 11 / 12, "feet")
  22999. },
  23000. {
  23001. name: "Grown",
  23002. height: math.unit(15, "feet"),
  23003. default: true
  23004. },
  23005. {
  23006. name: "Macro",
  23007. height: math.unit(1500, "feet")
  23008. },
  23009. {
  23010. name: "Megamacro",
  23011. height: math.unit(30, "miles")
  23012. },
  23013. {
  23014. name: "Continental",
  23015. height: math.unit(3000, "miles")
  23016. },
  23017. {
  23018. name: "Gravity Mass",
  23019. height: math.unit(300000, "miles")
  23020. },
  23021. {
  23022. name: "Planet Buster",
  23023. height: math.unit(30000000, "miles")
  23024. },
  23025. {
  23026. name: "Big",
  23027. height: math.unit(3000000000, "miles")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(9, "feet"),
  23036. weight: math.unit(350, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/pepper/front.svg",
  23040. extra: 1448 / 1312,
  23041. bottom: 9.4 / 1457.88
  23042. }
  23043. },
  23044. back: {
  23045. height: math.unit(9, "feet"),
  23046. weight: math.unit(350, "lb"),
  23047. name: "Back",
  23048. image: {
  23049. source: "./media/characters/pepper/back.svg",
  23050. extra: 1423 / 1300,
  23051. bottom: 4.6 / 1429
  23052. }
  23053. },
  23054. maw: {
  23055. height: math.unit(0.932, "feet"),
  23056. name: "Maw",
  23057. image: {
  23058. source: "./media/characters/pepper/maw.svg"
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(9, "feet"),
  23066. default: true
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(6, "feet"),
  23075. weight: math.unit(150, "lb"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/maelstrom/front.svg",
  23079. extra: 2100 / 1883,
  23080. bottom: 94 / 2196.7
  23081. }
  23082. },
  23083. },
  23084. [
  23085. {
  23086. name: "Less Kaiju",
  23087. height: math.unit(200, "feet")
  23088. },
  23089. {
  23090. name: "Kaiju",
  23091. height: math.unit(400, "feet"),
  23092. default: true
  23093. },
  23094. {
  23095. name: "Kaiju-er",
  23096. height: math.unit(600, "feet")
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23102. {
  23103. front: {
  23104. height: math.unit(6 + 5 / 12, "feet"),
  23105. weight: math.unit(180, "lb"),
  23106. name: "Front",
  23107. image: {
  23108. source: "./media/characters/lexir/front.svg",
  23109. extra: 180 / 172,
  23110. bottom: 12 / 192
  23111. }
  23112. },
  23113. back: {
  23114. height: math.unit(6 + 5 / 12, "feet"),
  23115. weight: math.unit(180, "lb"),
  23116. name: "Back",
  23117. image: {
  23118. source: "./media/characters/lexir/back.svg",
  23119. extra: 183.84 / 175.5,
  23120. bottom: 3.1 / 187
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Very Smal",
  23127. height: math.unit(1, "nm")
  23128. },
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(6 + 5 / 12, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Macro",
  23136. height: math.unit(1, "mile")
  23137. },
  23138. {
  23139. name: "Megamacro",
  23140. height: math.unit(50, "miles")
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(1.5, "meters"),
  23149. weight: math.unit(100, "lb"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/maksio/front.svg",
  23153. extra: 1549 / 1531,
  23154. bottom: 123.7 / 1674.5429
  23155. }
  23156. },
  23157. back: {
  23158. height: math.unit(1.5, "meters"),
  23159. weight: math.unit(100, "lb"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/maksio/back.svg",
  23163. extra: 1541 / 1509,
  23164. bottom: 97 / 1639
  23165. }
  23166. },
  23167. hand: {
  23168. height: math.unit(0.621, "feet"),
  23169. name: "Hand",
  23170. image: {
  23171. source: "./media/characters/maksio/hand.svg"
  23172. }
  23173. },
  23174. foot: {
  23175. height: math.unit(1.611, "feet"),
  23176. name: "Foot",
  23177. image: {
  23178. source: "./media/characters/maksio/foot.svg"
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Shrunken",
  23185. height: math.unit(10, "cm")
  23186. },
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(150, "cm"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(100, "feet"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/erza-bear/front.svg",
  23202. extra: 2449 / 2390,
  23203. bottom: 46 / 2494
  23204. }
  23205. },
  23206. back: {
  23207. height: math.unit(100, "feet"),
  23208. name: "Back",
  23209. image: {
  23210. source: "./media/characters/erza-bear/back.svg",
  23211. extra: 2489 / 2430,
  23212. bottom: 85.4 / 2480
  23213. }
  23214. },
  23215. tail: {
  23216. height: math.unit(42, "feet"),
  23217. name: "Tail",
  23218. image: {
  23219. source: "./media/characters/erza-bear/tail.svg"
  23220. }
  23221. },
  23222. tongue: {
  23223. height: math.unit(8, "feet"),
  23224. name: "Tongue",
  23225. image: {
  23226. source: "./media/characters/erza-bear/tongue.svg"
  23227. }
  23228. },
  23229. dick: {
  23230. height: math.unit(10.5, "feet"),
  23231. name: "Dick",
  23232. image: {
  23233. source: "./media/characters/erza-bear/dick.svg"
  23234. }
  23235. },
  23236. dickVertical: {
  23237. height: math.unit(16.9, "feet"),
  23238. name: "Dick (Vertical)",
  23239. image: {
  23240. source: "./media/characters/erza-bear/dick-vertical.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Macro",
  23247. height: math.unit(100, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(172, "cm"),
  23257. weight: math.unit(73, "kg"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/violet-flor/front.svg",
  23261. extra: 1530 / 1442,
  23262. bottom: 61.9 / 1588.8
  23263. }
  23264. },
  23265. back: {
  23266. height: math.unit(180, "cm"),
  23267. weight: math.unit(73, "kg"),
  23268. name: "Back",
  23269. image: {
  23270. source: "./media/characters/violet-flor/back.svg",
  23271. extra: 1692 / 1630,
  23272. bottom: 20 / 1712
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(172, "cm"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(6, "feet"),
  23289. weight: math.unit(220, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/lynn-rhea/front.svg",
  23293. extra: 310 / 273
  23294. }
  23295. },
  23296. back: {
  23297. height: math.unit(6, "feet"),
  23298. weight: math.unit(220, "lb"),
  23299. name: "Back",
  23300. image: {
  23301. source: "./media/characters/lynn-rhea/back.svg",
  23302. extra: 310 / 273
  23303. }
  23304. },
  23305. dicks: {
  23306. height: math.unit(0.9, "feet"),
  23307. name: "Dicks",
  23308. image: {
  23309. source: "./media/characters/lynn-rhea/dicks.svg"
  23310. }
  23311. },
  23312. slit: {
  23313. height: math.unit(0.4, "feet"),
  23314. name: "Slit",
  23315. image: {
  23316. source: "./media/characters/lynn-rhea/slit.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Micro",
  23323. height: math.unit(1, "inch")
  23324. },
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(60, "feet"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Megamacro",
  23332. height: math.unit(2, "miles")
  23333. },
  23334. {
  23335. name: "Gigamacro",
  23336. height: math.unit(3, "earths")
  23337. },
  23338. {
  23339. name: "Galactic",
  23340. height: math.unit(0.8, "galaxies")
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23346. {
  23347. front: {
  23348. height: math.unit(1600, "feet"),
  23349. weight: math.unit(85758785169, "kg"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/valathos/front.svg",
  23353. extra: 1451 / 1339
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Macro",
  23360. height: math.unit(1600, "feet"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(7 + 5 / 12, "feet"),
  23370. weight: math.unit(300, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/azula/front.svg",
  23374. extra: 3208 / 2880,
  23375. bottom: 80.2 / 3277
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(7 + 5 / 12, "feet"),
  23380. weight: math.unit(300, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/azula/back.svg",
  23384. extra: 3169 / 2822,
  23385. bottom: 150.6 / 3321
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(7 + 5 / 12, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Big",
  23397. height: math.unit(20, "feet")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(5 + 1 / 12, "feet"),
  23406. weight: math.unit(110, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/rupert/front.svg",
  23410. extra: 1549 / 1495,
  23411. bottom: 54.2 / 1604.4
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(5 + 1 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8 + 4 / 12, "feet"),
  23428. weight: math.unit(350, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/sheera-castellar/front.svg",
  23432. extra: 1957 / 1894,
  23433. bottom: 26.97 / 1975.017
  23434. }
  23435. },
  23436. side: {
  23437. height: math.unit(8 + 4 / 12, "feet"),
  23438. weight: math.unit(350, "lb"),
  23439. name: "Side",
  23440. image: {
  23441. source: "./media/characters/sheera-castellar/side.svg",
  23442. extra: 1957 / 1894
  23443. }
  23444. },
  23445. back: {
  23446. height: math.unit(8 + 4 / 12, "feet"),
  23447. weight: math.unit(350, "lb"),
  23448. name: "Back",
  23449. image: {
  23450. source: "./media/characters/sheera-castellar/back.svg",
  23451. extra: 1957 / 1894
  23452. }
  23453. },
  23454. angled: {
  23455. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23456. weight: math.unit(350, "lb"),
  23457. name: "Angled",
  23458. image: {
  23459. source: "./media/characters/sheera-castellar/angled.svg",
  23460. extra: 1807 / 1707,
  23461. bottom: 68 / 1875
  23462. }
  23463. },
  23464. genitals: {
  23465. height: math.unit(2.2, "feet"),
  23466. name: "Genitals",
  23467. image: {
  23468. source: "./media/characters/sheera-castellar/genitals.svg"
  23469. }
  23470. },
  23471. taur: {
  23472. height: math.unit(10 + 6/12, "feet"),
  23473. name: "Taur",
  23474. image: {
  23475. source: "./media/characters/sheera-castellar/taur.svg",
  23476. extra: 2017/1909,
  23477. bottom: 185/2202
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(8 + 4 / 12, "feet")
  23485. },
  23486. {
  23487. name: "Macro",
  23488. height: math.unit(150, "feet"),
  23489. default: true
  23490. },
  23491. {
  23492. name: "Macro+",
  23493. height: math.unit(800, "feet")
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(6, "feet"),
  23502. weight: math.unit(150, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/jaipur/front.svg",
  23506. extra: 3860 / 3731,
  23507. bottom: 287 / 4140
  23508. }
  23509. },
  23510. back: {
  23511. height: math.unit(6, "feet"),
  23512. weight: math.unit(150, "lb"),
  23513. name: "Back",
  23514. image: {
  23515. source: "./media/characters/jaipur/back.svg",
  23516. extra: 4060 / 3930,
  23517. bottom: 151 / 4200
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(1.85, "meters"),
  23525. default: true
  23526. },
  23527. {
  23528. name: "Macro",
  23529. height: math.unit(150, "meters")
  23530. },
  23531. {
  23532. name: "Macro+",
  23533. height: math.unit(0.5, "miles")
  23534. },
  23535. {
  23536. name: "Macro++",
  23537. height: math.unit(2.5, "miles")
  23538. },
  23539. {
  23540. name: "Macro+++",
  23541. height: math.unit(12, "miles")
  23542. },
  23543. {
  23544. name: "Macro++++",
  23545. height: math.unit(120, "miles")
  23546. },
  23547. {
  23548. name: "Macro+++++",
  23549. height: math.unit(1200, "miles")
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(6, "feet"),
  23558. weight: math.unit(150, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/sheila-wolf/front.svg",
  23562. extra: 1931 / 1808,
  23563. bottom: 29.5 / 1960
  23564. }
  23565. },
  23566. dick: {
  23567. height: math.unit(1.464, "feet"),
  23568. name: "Dick",
  23569. image: {
  23570. source: "./media/characters/sheila-wolf/dick.svg"
  23571. }
  23572. },
  23573. muzzle: {
  23574. height: math.unit(0.513, "feet"),
  23575. name: "Muzzle",
  23576. image: {
  23577. source: "./media/characters/sheila-wolf/muzzle.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(70, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(32, "meters"),
  23594. weight: math.unit(300000, "kg"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/almor/front.svg",
  23598. extra: 1408 / 1322,
  23599. bottom: 94.6 / 1506.5
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Macro",
  23606. height: math.unit(32, "meters"),
  23607. default: true
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(7, "feet"),
  23616. weight: math.unit(200, "lb"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/silver/front.svg",
  23620. extra: 472.1 / 450.5,
  23621. bottom: 26.5 / 499.424
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(7, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(800, "feet")
  23634. },
  23635. {
  23636. name: "Megamacro",
  23637. height: math.unit(250, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(6, "feet"),
  23646. weight: math.unit(150, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/pliskin/front.svg",
  23650. extra: 1469 / 1359,
  23651. bottom: 70 / 1540
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Micro",
  23658. height: math.unit(3, "inches")
  23659. },
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(5 + 11 / 12, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Macro",
  23667. height: math.unit(120, "feet")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(6, "feet"),
  23676. weight: math.unit(150, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/sammy/front.svg",
  23680. extra: 1193 / 1089,
  23681. bottom: 30.5 / 1226
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(1700, "feet"),
  23689. default: true
  23690. },
  23691. {
  23692. name: "Examacro",
  23693. height: math.unit(2.5e9, "lightyears")
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23699. {
  23700. front: {
  23701. height: math.unit(21, "meters"),
  23702. weight: math.unit(12, "tonnes"),
  23703. name: "Front",
  23704. image: {
  23705. source: "./media/characters/kuru/front.svg",
  23706. extra: 4301 / 3785,
  23707. bottom: 371.3 / 4691
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(21, "meters"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(23, "meters"),
  23724. weight: math.unit(12.2, "tonnes"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/rakka/front.svg",
  23728. extra: 4670 / 4169,
  23729. bottom: 301 / 4968.7
  23730. }
  23731. },
  23732. },
  23733. [
  23734. {
  23735. name: "Macro",
  23736. height: math.unit(23, "meters"),
  23737. default: true
  23738. },
  23739. ]
  23740. ))
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(6, "feet"),
  23746. weight: math.unit(150, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/rhys-feline/front.svg",
  23750. extra: 2488 / 2308,
  23751. bottom: 35.67 / 2519.19
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Really Small",
  23758. height: math.unit(1, "nm")
  23759. },
  23760. {
  23761. name: "Micro",
  23762. height: math.unit(4, "inches")
  23763. },
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(4 + 10 / 12, "feet"),
  23767. default: true
  23768. },
  23769. {
  23770. name: "Macro",
  23771. height: math.unit(100, "feet")
  23772. },
  23773. {
  23774. name: "Megamacto",
  23775. height: math.unit(50, "miles")
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23781. {
  23782. side: {
  23783. height: math.unit(30, "feet"),
  23784. weight: math.unit(35000, "kg"),
  23785. name: "Side",
  23786. image: {
  23787. source: "./media/characters/alydar/side.svg",
  23788. extra: 234 / 222,
  23789. bottom: 6.5 / 241
  23790. }
  23791. },
  23792. front: {
  23793. height: math.unit(30, "feet"),
  23794. weight: math.unit(35000, "kg"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/alydar/front.svg",
  23798. extra: 223.37 / 210.2,
  23799. bottom: 22.3 / 246.76
  23800. }
  23801. },
  23802. top: {
  23803. height: math.unit(64.54, "feet"),
  23804. weight: math.unit(35000, "kg"),
  23805. name: "Top",
  23806. image: {
  23807. source: "./media/characters/alydar/top.svg"
  23808. }
  23809. },
  23810. anthro: {
  23811. height: math.unit(30, "feet"),
  23812. weight: math.unit(9000, "kg"),
  23813. name: "Anthro",
  23814. image: {
  23815. source: "./media/characters/alydar/anthro.svg",
  23816. extra: 432 / 421,
  23817. bottom: 7.18 / 440
  23818. }
  23819. },
  23820. maw: {
  23821. height: math.unit(11.693, "feet"),
  23822. name: "Maw",
  23823. image: {
  23824. source: "./media/characters/alydar/maw.svg"
  23825. }
  23826. },
  23827. head: {
  23828. height: math.unit(11.693, "feet"),
  23829. name: "Head",
  23830. image: {
  23831. source: "./media/characters/alydar/head.svg"
  23832. }
  23833. },
  23834. headAlt: {
  23835. height: math.unit(12.861, "feet"),
  23836. name: "Head (Alt)",
  23837. image: {
  23838. source: "./media/characters/alydar/head-alt.svg"
  23839. }
  23840. },
  23841. wing: {
  23842. height: math.unit(20.712, "feet"),
  23843. name: "Wing",
  23844. image: {
  23845. source: "./media/characters/alydar/wing.svg"
  23846. }
  23847. },
  23848. wingFeather: {
  23849. height: math.unit(9.662, "feet"),
  23850. name: "Wing Feather",
  23851. image: {
  23852. source: "./media/characters/alydar/wing-feather.svg"
  23853. }
  23854. },
  23855. countourFeather: {
  23856. height: math.unit(4.154, "feet"),
  23857. name: "Contour Feather",
  23858. image: {
  23859. source: "./media/characters/alydar/contour-feather.svg"
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Diplomatic",
  23866. height: math.unit(13, "feet"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Small",
  23871. height: math.unit(30, "feet")
  23872. },
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(95, "feet"),
  23876. default: true
  23877. },
  23878. {
  23879. name: "Large",
  23880. height: math.unit(285, "feet")
  23881. },
  23882. {
  23883. name: "Incomprehensible",
  23884. height: math.unit(450, "megameters")
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23890. {
  23891. side: {
  23892. height: math.unit(11, "feet"),
  23893. weight: math.unit(1750, "kg"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/selicia/side.svg",
  23897. extra: 440 / 396,
  23898. bottom: 24.8 / 465.979
  23899. }
  23900. },
  23901. maw: {
  23902. height: math.unit(4.665, "feet"),
  23903. name: "Maw",
  23904. image: {
  23905. source: "./media/characters/selicia/maw.svg"
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(11, "feet"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23919. {
  23920. side: {
  23921. height: math.unit(2 + 6 / 12, "feet"),
  23922. weight: math.unit(30, "lb"),
  23923. name: "Side",
  23924. image: {
  23925. source: "./media/characters/layla/side.svg",
  23926. extra: 244 / 188,
  23927. bottom: 18.2 / 262.1
  23928. }
  23929. },
  23930. back: {
  23931. height: math.unit(2 + 6 / 12, "feet"),
  23932. weight: math.unit(30, "lb"),
  23933. name: "Back",
  23934. image: {
  23935. source: "./media/characters/layla/back.svg",
  23936. extra: 308 / 241.5,
  23937. bottom: 8.9 / 316.8
  23938. }
  23939. },
  23940. cumming: {
  23941. height: math.unit(2 + 6 / 12, "feet"),
  23942. weight: math.unit(30, "lb"),
  23943. name: "Cumming",
  23944. image: {
  23945. source: "./media/characters/layla/cumming.svg",
  23946. extra: 342 / 279,
  23947. bottom: 595 / 938
  23948. }
  23949. },
  23950. dickFlaccid: {
  23951. height: math.unit(2.595, "feet"),
  23952. name: "Flaccid Genitals",
  23953. image: {
  23954. source: "./media/characters/layla/dick-flaccid.svg"
  23955. }
  23956. },
  23957. dickErect: {
  23958. height: math.unit(2.359, "feet"),
  23959. name: "Erect Genitals",
  23960. image: {
  23961. source: "./media/characters/layla/dick-erect.svg"
  23962. }
  23963. },
  23964. dragon: {
  23965. height: math.unit(40, "feet"),
  23966. name: "Dragon",
  23967. image: {
  23968. source: "./media/characters/layla/dragon.svg",
  23969. extra: 610/535,
  23970. bottom: 367/977
  23971. }
  23972. },
  23973. taur: {
  23974. height: math.unit(30, "feet"),
  23975. name: "Taur",
  23976. image: {
  23977. source: "./media/characters/layla/taur.svg",
  23978. extra: 1268/1199,
  23979. bottom: 112/1380
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Micro",
  23986. height: math.unit(1, "inch")
  23987. },
  23988. {
  23989. name: "Small",
  23990. height: math.unit(1, "foot")
  23991. },
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(2 + 6 / 12, "feet"),
  23995. default: true
  23996. },
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(200, "feet")
  24000. },
  24001. {
  24002. name: "Megamacro",
  24003. height: math.unit(1000, "miles")
  24004. },
  24005. {
  24006. name: "Planetary",
  24007. height: math.unit(8000, "miles")
  24008. },
  24009. {
  24010. name: "True Layla",
  24011. height: math.unit(200000 * 7, "multiverses")
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24017. {
  24018. back: {
  24019. height: math.unit(10.5, "feet"),
  24020. weight: math.unit(800, "lb"),
  24021. name: "Back",
  24022. image: {
  24023. source: "./media/characters/knox/back.svg",
  24024. extra: 1486 / 1089,
  24025. bottom: 107 / 1601.4
  24026. }
  24027. },
  24028. side: {
  24029. height: math.unit(10.5, "feet"),
  24030. weight: math.unit(800, "lb"),
  24031. name: "Side",
  24032. image: {
  24033. source: "./media/characters/knox/side.svg",
  24034. extra: 244 / 218,
  24035. bottom: 14 / 260
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Compact",
  24042. height: math.unit(10.5, "feet"),
  24043. default: true
  24044. },
  24045. {
  24046. name: "Dynamax",
  24047. height: math.unit(210, "feet")
  24048. },
  24049. {
  24050. name: "Full Macro",
  24051. height: math.unit(850, "feet")
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24057. {
  24058. front: {
  24059. height: math.unit(28, "feet"),
  24060. weight: math.unit(10500, "lb"),
  24061. name: "Front",
  24062. image: {
  24063. source: "./media/characters/kayda/front.svg",
  24064. extra: 1536 / 1428,
  24065. bottom: 68.7 / 1603
  24066. }
  24067. },
  24068. back: {
  24069. height: math.unit(28, "feet"),
  24070. weight: math.unit(10500, "lb"),
  24071. name: "Back",
  24072. image: {
  24073. source: "./media/characters/kayda/back.svg",
  24074. extra: 1557 / 1464,
  24075. bottom: 39.5 / 1597.49
  24076. }
  24077. },
  24078. dick: {
  24079. height: math.unit(3.858, "feet"),
  24080. name: "Dick",
  24081. image: {
  24082. source: "./media/characters/kayda/dick.svg"
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Macro",
  24089. height: math.unit(28, "feet"),
  24090. default: true
  24091. },
  24092. ]
  24093. ))
  24094. characterMakers.push(() => makeCharacter(
  24095. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24096. {
  24097. front: {
  24098. height: math.unit(10 + 11 / 12, "feet"),
  24099. weight: math.unit(1400, "lb"),
  24100. name: "Front",
  24101. image: {
  24102. source: "./media/characters/brian/front.svg",
  24103. extra: 737 / 692,
  24104. bottom: 55.4 / 785
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Normal",
  24111. height: math.unit(10 + 11 / 12, "feet"),
  24112. default: true
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(5 + 8 / 12, "feet"),
  24121. weight: math.unit(140, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/khemri/front.svg",
  24125. extra: 4780 / 4059,
  24126. bottom: 80.1 / 4859.25
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Micro",
  24133. height: math.unit(6, "inches")
  24134. },
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(5 + 8 / 12, "feet"),
  24138. default: true
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24144. {
  24145. front: {
  24146. height: math.unit(13, "feet"),
  24147. weight: math.unit(1700, "lb"),
  24148. name: "Front",
  24149. image: {
  24150. source: "./media/characters/felix-braveheart/front.svg",
  24151. extra: 1222 / 1157,
  24152. bottom: 53.2 / 1280
  24153. }
  24154. },
  24155. back: {
  24156. height: math.unit(13, "feet"),
  24157. weight: math.unit(1700, "lb"),
  24158. name: "Back",
  24159. image: {
  24160. source: "./media/characters/felix-braveheart/back.svg",
  24161. extra: 1277 / 1203,
  24162. bottom: 50.2 / 1327
  24163. }
  24164. },
  24165. feral: {
  24166. height: math.unit(6, "feet"),
  24167. weight: math.unit(400, "lb"),
  24168. name: "Feral",
  24169. image: {
  24170. source: "./media/characters/felix-braveheart/feral.svg",
  24171. extra: 682 / 625,
  24172. bottom: 6.9 / 688
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(13, "feet"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24186. {
  24187. side: {
  24188. height: math.unit(5 + 11 / 12, "feet"),
  24189. weight: math.unit(1400, "lb"),
  24190. name: "Side",
  24191. image: {
  24192. source: "./media/characters/shadow-blade/side.svg",
  24193. extra: 1726 / 1267,
  24194. bottom: 58.4 / 1785
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 11 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(1 + 6 / 12, "feet"),
  24211. weight: math.unit(25, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/karla-halldor/front.svg",
  24215. extra: 1459 / 1383,
  24216. bottom: 12 / 1472
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(1 + 6 / 12, "feet"),
  24224. default: true
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(6 + 2 / 12, "feet"),
  24233. weight: math.unit(160, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/ariam/front.svg",
  24237. extra: 1073/976,
  24238. bottom: 52/1125
  24239. }
  24240. },
  24241. back: {
  24242. height: math.unit(6 + 2/12, "feet"),
  24243. weight: math.unit(160, "lb"),
  24244. name: "Back",
  24245. image: {
  24246. source: "./media/characters/ariam/back.svg",
  24247. extra: 1103/1023,
  24248. bottom: 9/1112
  24249. }
  24250. },
  24251. dressed: {
  24252. height: math.unit(6 + 2/12, "feet"),
  24253. weight: math.unit(160, "lb"),
  24254. name: "Dressed",
  24255. image: {
  24256. source: "./media/characters/ariam/dressed.svg",
  24257. extra: 1099/1009,
  24258. bottom: 25/1124
  24259. }
  24260. },
  24261. squatting: {
  24262. height: math.unit(4.1, "feet"),
  24263. weight: math.unit(160, "lb"),
  24264. name: "Squatting",
  24265. image: {
  24266. source: "./media/characters/ariam/squatting.svg",
  24267. extra: 2617 / 2112,
  24268. bottom: 61.2 / 2681,
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(6 + 2 / 12, "feet"),
  24276. default: true
  24277. },
  24278. {
  24279. name: "Normal+",
  24280. height: math.unit(4, "meters")
  24281. },
  24282. {
  24283. name: "Macro",
  24284. height: math.unit(50, "meters")
  24285. },
  24286. {
  24287. name: "Macro+",
  24288. height: math.unit(100, "meters")
  24289. },
  24290. {
  24291. name: "Megamacro",
  24292. height: math.unit(20, "km")
  24293. },
  24294. {
  24295. name: "Caretaker",
  24296. height: math.unit(444, "megameters")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(1.67, "meters"),
  24305. weight: math.unit(140, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24309. extra: 438 / 410,
  24310. bottom: 0.75 / 439
  24311. }
  24312. },
  24313. },
  24314. [
  24315. {
  24316. name: "Shrunken",
  24317. height: math.unit(7.6, "cm")
  24318. },
  24319. {
  24320. name: "Human Scale",
  24321. height: math.unit(1.67, "meters")
  24322. },
  24323. {
  24324. name: "Wolxi Scale",
  24325. height: math.unit(36.7, "meters"),
  24326. default: true
  24327. },
  24328. ]
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24332. {
  24333. front: {
  24334. height: math.unit(1.73, "meters"),
  24335. weight: math.unit(240, "lb"),
  24336. name: "Front",
  24337. image: {
  24338. source: "./media/characters/izue-two-mothers/front.svg",
  24339. extra: 469 / 437,
  24340. bottom: 1.24 / 470.6
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Shrunken",
  24347. height: math.unit(7.86, "cm")
  24348. },
  24349. {
  24350. name: "Human Scale",
  24351. height: math.unit(1.73, "meters")
  24352. },
  24353. {
  24354. name: "Wolxi Scale",
  24355. height: math.unit(38, "meters"),
  24356. default: true
  24357. },
  24358. ]
  24359. ))
  24360. characterMakers.push(() => makeCharacter(
  24361. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24362. {
  24363. front: {
  24364. height: math.unit(1.55, "meters"),
  24365. weight: math.unit(120, "lb"),
  24366. name: "Front",
  24367. image: {
  24368. source: "./media/characters/teeku-love-shack/front.svg",
  24369. extra: 387 / 362,
  24370. bottom: 1.51 / 388
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Shrunken",
  24377. height: math.unit(7, "cm")
  24378. },
  24379. {
  24380. name: "Human Scale",
  24381. height: math.unit(1.55, "meters")
  24382. },
  24383. {
  24384. name: "Wolxi Scale",
  24385. height: math.unit(34.1, "meters"),
  24386. default: true
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(1.83, "meters"),
  24395. weight: math.unit(135, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/dejma-the-red/front.svg",
  24399. extra: 480 / 458,
  24400. bottom: 1.8 / 482
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Shrunken",
  24407. height: math.unit(8.3, "cm")
  24408. },
  24409. {
  24410. name: "Human Scale",
  24411. height: math.unit(1.83, "meters")
  24412. },
  24413. {
  24414. name: "Wolxi Scale",
  24415. height: math.unit(40, "meters"),
  24416. default: true
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(1.78, "meters"),
  24425. weight: math.unit(65, "kg"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/aki/front.svg",
  24429. extra: 452 / 415
  24430. }
  24431. },
  24432. frontNsfw: {
  24433. height: math.unit(1.78, "meters"),
  24434. weight: math.unit(65, "kg"),
  24435. name: "Front (NSFW)",
  24436. image: {
  24437. source: "./media/characters/aki/front-nsfw.svg",
  24438. extra: 452 / 415
  24439. }
  24440. },
  24441. back: {
  24442. height: math.unit(1.78, "meters"),
  24443. weight: math.unit(65, "kg"),
  24444. name: "Back",
  24445. image: {
  24446. source: "./media/characters/aki/back.svg",
  24447. extra: 452 / 415
  24448. }
  24449. },
  24450. rump: {
  24451. height: math.unit(2.05, "feet"),
  24452. name: "Rump",
  24453. image: {
  24454. source: "./media/characters/aki/rump.svg"
  24455. }
  24456. },
  24457. dick: {
  24458. height: math.unit(0.95, "feet"),
  24459. name: "Dick",
  24460. image: {
  24461. source: "./media/characters/aki/dick.svg"
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Micro",
  24468. height: math.unit(15, "cm")
  24469. },
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(178, "cm"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(214, "m")
  24478. },
  24479. {
  24480. name: "Macro+",
  24481. height: math.unit(534, "m")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(5 + 5 / 12, "feet"),
  24490. weight: math.unit(120, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/ari/front.svg",
  24494. extra: 714.5 / 682,
  24495. bottom: 8 / 722.5
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(5 + 5 / 12, "feet")
  24503. },
  24504. {
  24505. name: "Macro",
  24506. height: math.unit(100, "feet"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Megamacro",
  24511. height: math.unit(100, "miles")
  24512. },
  24513. {
  24514. name: "Gigamacro",
  24515. height: math.unit(80000, "miles")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24521. {
  24522. side: {
  24523. height: math.unit(9, "feet"),
  24524. weight: math.unit(400, "kg"),
  24525. name: "Side",
  24526. image: {
  24527. source: "./media/characters/bolt/side.svg",
  24528. extra: 1126 / 896,
  24529. bottom: 60 / 1187.3,
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Micro",
  24536. height: math.unit(5, "inches")
  24537. },
  24538. {
  24539. name: "Normal",
  24540. height: math.unit(9, "feet"),
  24541. default: true
  24542. },
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(700, "feet")
  24546. },
  24547. {
  24548. name: "Max Size",
  24549. height: math.unit(1.52e22, "yottameters")
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(4.53, "meters"),
  24558. weight: math.unit(3, "tons"),
  24559. name: "Front",
  24560. image: {
  24561. source: "./media/characters/draekon-sylviar/front.svg",
  24562. extra: 1228 / 1068,
  24563. bottom: 41 / 1270
  24564. }
  24565. },
  24566. tail: {
  24567. height: math.unit(1.772, "meter"),
  24568. name: "Tail",
  24569. image: {
  24570. source: "./media/characters/draekon-sylviar/tail.svg"
  24571. }
  24572. },
  24573. head: {
  24574. height: math.unit(1.331, "meter"),
  24575. name: "Head",
  24576. image: {
  24577. source: "./media/characters/draekon-sylviar/head.svg"
  24578. }
  24579. },
  24580. hand: {
  24581. height: math.unit(0.564, "meter"),
  24582. name: "Hand",
  24583. image: {
  24584. source: "./media/characters/draekon-sylviar/hand.svg"
  24585. }
  24586. },
  24587. foot: {
  24588. height: math.unit(0.621, "meter"),
  24589. name: "Foot",
  24590. image: {
  24591. source: "./media/characters/draekon-sylviar/foot.svg",
  24592. bottom: 32 / 324
  24593. }
  24594. },
  24595. dick: {
  24596. height: math.unit(61, "cm"),
  24597. name: "Dick",
  24598. image: {
  24599. source: "./media/characters/draekon-sylviar/dick.svg"
  24600. }
  24601. },
  24602. dickseparated: {
  24603. height: math.unit(61, "cm"),
  24604. name: "Dick-separated",
  24605. image: {
  24606. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Small",
  24613. height: math.unit(4.53 / 2, "meters"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(4.53, "meters"),
  24619. default: true
  24620. },
  24621. {
  24622. name: "Large",
  24623. height: math.unit(4.53 * 2, "meters"),
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(6 + 2 / 12, "feet"),
  24632. weight: math.unit(180, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/brawler/front.svg",
  24636. extra: 3301 / 3027,
  24637. bottom: 138 / 3439
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(6 + 2 / 12, "feet"),
  24645. default: true
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(11, "feet"),
  24654. weight: math.unit(1000, "lb"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/alex/front.svg",
  24658. bottom: 44.5 / 620
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Micro",
  24665. height: math.unit(5, "inches")
  24666. },
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(11, "feet"),
  24670. default: true
  24671. },
  24672. {
  24673. name: "Macro",
  24674. height: math.unit(9.5e9, "feet")
  24675. },
  24676. {
  24677. name: "Max Size",
  24678. height: math.unit(1.4e283, "yottameters")
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24684. {
  24685. female: {
  24686. height: math.unit(29.9, "m"),
  24687. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24688. name: "Female",
  24689. image: {
  24690. source: "./media/characters/zenari/female.svg",
  24691. extra: 3281.6 / 3217,
  24692. bottom: 72.2 / 3353
  24693. }
  24694. },
  24695. male: {
  24696. height: math.unit(27.7, "m"),
  24697. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24698. name: "Male",
  24699. image: {
  24700. source: "./media/characters/zenari/male.svg",
  24701. extra: 3008 / 2991,
  24702. bottom: 54.6 / 3069
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Macro",
  24709. height: math.unit(29.7, "meters"),
  24710. default: true
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24716. {
  24717. female: {
  24718. height: math.unit(23.8, "m"),
  24719. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24720. name: "Female",
  24721. image: {
  24722. source: "./media/characters/mactarian/female.svg",
  24723. extra: 2662 / 2569,
  24724. bottom: 73 / 2736
  24725. }
  24726. },
  24727. male: {
  24728. height: math.unit(23.8, "m"),
  24729. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24730. name: "Male",
  24731. image: {
  24732. source: "./media/characters/mactarian/male.svg",
  24733. extra: 2673 / 2600,
  24734. bottom: 76 / 2750
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(23.8, "meters"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24748. {
  24749. female: {
  24750. height: math.unit(19.3, "m"),
  24751. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24752. name: "Female",
  24753. image: {
  24754. source: "./media/characters/umok/female.svg",
  24755. extra: 2186 / 2078,
  24756. bottom: 87 / 2277
  24757. }
  24758. },
  24759. male: {
  24760. height: math.unit(19.5, "m"),
  24761. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24762. name: "Male",
  24763. image: {
  24764. source: "./media/characters/umok/male.svg",
  24765. extra: 2233 / 2140,
  24766. bottom: 24.4 / 2258
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Macro",
  24773. height: math.unit(19.3, "meters"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24780. {
  24781. female: {
  24782. height: math.unit(26.15, "m"),
  24783. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24784. name: "Female",
  24785. image: {
  24786. source: "./media/characters/joraxian/female.svg",
  24787. extra: 2912 / 2824,
  24788. bottom: 36 / 2956
  24789. }
  24790. },
  24791. male: {
  24792. height: math.unit(25.4, "m"),
  24793. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24794. name: "Male",
  24795. image: {
  24796. source: "./media/characters/joraxian/male.svg",
  24797. extra: 2877 / 2721,
  24798. bottom: 82 / 2967
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(26.15, "meters"),
  24806. default: true
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24812. {
  24813. female: {
  24814. height: math.unit(21.6, "m"),
  24815. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24816. name: "Female",
  24817. image: {
  24818. source: "./media/characters/sthara/female.svg",
  24819. extra: 2516 / 2347,
  24820. bottom: 21.5 / 2537
  24821. }
  24822. },
  24823. male: {
  24824. height: math.unit(24, "m"),
  24825. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24826. name: "Male",
  24827. image: {
  24828. source: "./media/characters/sthara/male.svg",
  24829. extra: 2732 / 2607,
  24830. bottom: 23 / 2732
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(21.6, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(6 + 4 / 12, "feet"),
  24847. weight: math.unit(175, "lb"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/luka-bryzant/front.svg",
  24851. extra: 311 / 289,
  24852. bottom: 4 / 315
  24853. }
  24854. },
  24855. back: {
  24856. height: math.unit(6 + 4 / 12, "feet"),
  24857. weight: math.unit(175, "lb"),
  24858. name: "Back",
  24859. image: {
  24860. source: "./media/characters/luka-bryzant/back.svg",
  24861. extra: 311 / 289,
  24862. bottom: 3.8 / 313.7
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Micro",
  24869. height: math.unit(10, "inches")
  24870. },
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(6 + 4 / 12, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Large",
  24878. height: math.unit(12, "feet")
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(5 + 7 / 12, "feet"),
  24887. weight: math.unit(185, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/aman-aquila/front.svg",
  24891. extra: 1013 / 976,
  24892. bottom: 45.6 / 1057
  24893. }
  24894. },
  24895. side: {
  24896. height: math.unit(5 + 7 / 12, "feet"),
  24897. weight: math.unit(185, "lb"),
  24898. name: "Side",
  24899. image: {
  24900. source: "./media/characters/aman-aquila/side.svg",
  24901. extra: 1054 / 1011,
  24902. bottom: 15 / 1070
  24903. }
  24904. },
  24905. back: {
  24906. height: math.unit(5 + 7 / 12, "feet"),
  24907. weight: math.unit(185, "lb"),
  24908. name: "Back",
  24909. image: {
  24910. source: "./media/characters/aman-aquila/back.svg",
  24911. extra: 1026 / 970,
  24912. bottom: 12 / 1039
  24913. }
  24914. },
  24915. head: {
  24916. height: math.unit(1.211, "feet"),
  24917. name: "Head",
  24918. image: {
  24919. source: "./media/characters/aman-aquila/head.svg",
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Minimicro",
  24926. height: math.unit(0.057, "inches")
  24927. },
  24928. {
  24929. name: "Micro",
  24930. height: math.unit(7, "inches")
  24931. },
  24932. {
  24933. name: "Mini",
  24934. height: math.unit(3 + 7 / 12, "feet")
  24935. },
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(5 + 7 / 12, "feet"),
  24939. default: true
  24940. },
  24941. {
  24942. name: "Macro",
  24943. height: math.unit(157 + 7 / 12, "feet")
  24944. },
  24945. {
  24946. name: "Megamacro",
  24947. height: math.unit(1557 + 7 / 12, "feet")
  24948. },
  24949. {
  24950. name: "Gigamacro",
  24951. height: math.unit(15557 + 7 / 12, "feet")
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(3 + 2 / 12, "inches"),
  24960. weight: math.unit(0.3, "ounces"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/hiphae/front.svg",
  24964. extra: 1931 / 1683,
  24965. bottom: 24 / 1955
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(3 + 1 / 2, "inches"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(5 + 10 / 12, "feet"),
  24982. weight: math.unit(165, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/nicky/front.svg",
  24986. extra: 3144 / 2886,
  24987. bottom: 45.6 / 3192
  24988. }
  24989. },
  24990. back: {
  24991. height: math.unit(5 + 10 / 12, "feet"),
  24992. weight: math.unit(165, "lb"),
  24993. name: "Back",
  24994. image: {
  24995. source: "./media/characters/nicky/back.svg",
  24996. extra: 3055 / 2804,
  24997. bottom: 28.4 / 3087
  24998. }
  24999. },
  25000. frontclothed: {
  25001. height: math.unit(5 + 10 / 12, "feet"),
  25002. weight: math.unit(165, "lb"),
  25003. name: "Front-clothed",
  25004. image: {
  25005. source: "./media/characters/nicky/front-clothed.svg",
  25006. extra: 3184.9 / 2926.9,
  25007. bottom: 86.5 / 3239.9
  25008. }
  25009. },
  25010. foot: {
  25011. height: math.unit(1.16, "feet"),
  25012. name: "Foot",
  25013. image: {
  25014. source: "./media/characters/nicky/foot.svg"
  25015. }
  25016. },
  25017. feet: {
  25018. height: math.unit(1.34, "feet"),
  25019. name: "Feet",
  25020. image: {
  25021. source: "./media/characters/nicky/feet.svg"
  25022. }
  25023. },
  25024. maw: {
  25025. height: math.unit(0.9, "feet"),
  25026. name: "Maw",
  25027. image: {
  25028. source: "./media/characters/nicky/maw.svg"
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(5 + 10 / 12, "feet"),
  25036. default: true
  25037. },
  25038. {
  25039. name: "Macro",
  25040. height: math.unit(60, "feet")
  25041. },
  25042. {
  25043. name: "Megamacro",
  25044. height: math.unit(1, "mile")
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25050. {
  25051. side: {
  25052. height: math.unit(10, "feet"),
  25053. weight: math.unit(600, "lb"),
  25054. name: "Side",
  25055. image: {
  25056. source: "./media/characters/blair/side.svg",
  25057. bottom: 16.6 / 475,
  25058. extra: 458 / 431
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Micro",
  25065. height: math.unit(8, "inches")
  25066. },
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(10, "feet"),
  25070. default: true
  25071. },
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(180, "feet")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(5 + 4 / 12, "feet"),
  25083. weight: math.unit(125, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/fisher/front.svg",
  25087. extra: 444 / 390,
  25088. bottom: 2 / 444.8
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Micro",
  25095. height: math.unit(4, "inches")
  25096. },
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(5 + 4 / 12, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Macro",
  25104. height: math.unit(100, "feet")
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(6.71, "feet"),
  25113. weight: math.unit(200, "lb"),
  25114. capacity: math.unit(1000000, "people"),
  25115. name: "Front",
  25116. image: {
  25117. source: "./media/characters/gliss/front.svg",
  25118. extra: 2347 / 2231,
  25119. bottom: 113 / 2462
  25120. }
  25121. },
  25122. hammerspaceSize: {
  25123. height: math.unit(6.71 * 717, "feet"),
  25124. weight: math.unit(200, "lb"),
  25125. capacity: math.unit(1000000, "people"),
  25126. name: "Hammerspace Size",
  25127. image: {
  25128. source: "./media/characters/gliss/front.svg",
  25129. extra: 2347 / 2231,
  25130. bottom: 113 / 2462
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(6.71, "feet"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25144. {
  25145. side: {
  25146. height: math.unit(1.44, "m"),
  25147. weight: math.unit(80, "kg"),
  25148. name: "Side",
  25149. image: {
  25150. source: "./media/characters/dune-anderson/side.svg",
  25151. bottom: 49 / 1426
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Wolf-sized",
  25158. height: math.unit(1.44, "meters")
  25159. },
  25160. {
  25161. name: "Normal",
  25162. height: math.unit(5.05, "meters"),
  25163. default: true
  25164. },
  25165. {
  25166. name: "Big",
  25167. height: math.unit(14.4, "meters")
  25168. },
  25169. {
  25170. name: "Huge",
  25171. height: math.unit(144, "meters")
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(7, "feet"),
  25180. weight: math.unit(425, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/hind/front.svg",
  25184. extra: 2091 / 1860,
  25185. bottom: 129 / 2220
  25186. }
  25187. },
  25188. back: {
  25189. height: math.unit(7, "feet"),
  25190. weight: math.unit(425, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/hind/back.svg",
  25194. extra: 2091 / 1860,
  25195. bottom: 24.6 / 2309
  25196. }
  25197. },
  25198. tail: {
  25199. height: math.unit(2.8, "feet"),
  25200. name: "Tail",
  25201. image: {
  25202. source: "./media/characters/hind/tail.svg"
  25203. }
  25204. },
  25205. head: {
  25206. height: math.unit(2.55, "feet"),
  25207. name: "Head",
  25208. image: {
  25209. source: "./media/characters/hind/head.svg"
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "XS",
  25216. height: math.unit(0.7, "feet")
  25217. },
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(7, "feet"),
  25221. default: true
  25222. },
  25223. {
  25224. name: "XL",
  25225. height: math.unit(70, "feet")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(2.1, "meters"),
  25234. weight: math.unit(150, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/tharquench-sizestealer/front.svg",
  25238. extra: 1605/1470,
  25239. bottom: 36/1641
  25240. }
  25241. },
  25242. frontAlt: {
  25243. height: math.unit(2.1, "meters"),
  25244. weight: math.unit(150, "lb"),
  25245. name: "Front (Alt)",
  25246. image: {
  25247. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25248. extra: 2318 / 2063,
  25249. bottom: 93.4 / 2410
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Nano",
  25256. height: math.unit(1, "mm")
  25257. },
  25258. {
  25259. name: "Micro",
  25260. height: math.unit(1, "cm")
  25261. },
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(2.1, "meters"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(7 + 5 / 12, "feet"),
  25274. weight: math.unit(357, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/solex-draconov/front.svg",
  25278. extra: 1993 / 1865,
  25279. bottom: 117 / 2111
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Natural Height",
  25286. height: math.unit(7 + 5 / 12, "feet"),
  25287. default: true
  25288. },
  25289. {
  25290. name: "Macro",
  25291. height: math.unit(350, "feet")
  25292. },
  25293. {
  25294. name: "Macro+",
  25295. height: math.unit(1000, "feet")
  25296. },
  25297. {
  25298. name: "Megamacro",
  25299. height: math.unit(20, "km")
  25300. },
  25301. {
  25302. name: "Megamacro+",
  25303. height: math.unit(1000, "km")
  25304. },
  25305. {
  25306. name: "Gigamacro",
  25307. height: math.unit(2.5, "Gm")
  25308. },
  25309. {
  25310. name: "Teramacro",
  25311. height: math.unit(15, "Tm")
  25312. },
  25313. {
  25314. name: "Galactic",
  25315. height: math.unit(30, "Zm")
  25316. },
  25317. {
  25318. name: "Universal",
  25319. height: math.unit(21000, "Ym")
  25320. },
  25321. {
  25322. name: "Omniversal",
  25323. height: math.unit(9.861e50, "Ym")
  25324. },
  25325. {
  25326. name: "Existential",
  25327. height: math.unit(1e300, "meters")
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25333. {
  25334. side: {
  25335. height: math.unit(25, "feet"),
  25336. weight: math.unit(90000, "lb"),
  25337. name: "Side",
  25338. image: {
  25339. source: "./media/characters/mandarax/side.svg",
  25340. extra: 614 / 332,
  25341. bottom: 55 / 630
  25342. }
  25343. },
  25344. head: {
  25345. height: math.unit(11.4, "feet"),
  25346. name: "Head",
  25347. image: {
  25348. source: "./media/characters/mandarax/head.svg"
  25349. }
  25350. },
  25351. belly: {
  25352. height: math.unit(33, "feet"),
  25353. name: "Belly",
  25354. capacity: math.unit(500, "people"),
  25355. image: {
  25356. source: "./media/characters/mandarax/belly.svg"
  25357. }
  25358. },
  25359. dick: {
  25360. height: math.unit(8.46, "feet"),
  25361. name: "Dick",
  25362. image: {
  25363. source: "./media/characters/mandarax/dick.svg"
  25364. }
  25365. },
  25366. top: {
  25367. height: math.unit(28, "meters"),
  25368. name: "Top",
  25369. image: {
  25370. source: "./media/characters/mandarax/top.svg"
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(25, "feet"),
  25378. default: true
  25379. },
  25380. ]
  25381. ))
  25382. characterMakers.push(() => makeCharacter(
  25383. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25384. {
  25385. front: {
  25386. height: math.unit(5, "feet"),
  25387. weight: math.unit(90, "lb"),
  25388. name: "Front",
  25389. image: {
  25390. source: "./media/characters/pixil/front.svg",
  25391. extra: 2000 / 1618,
  25392. bottom: 12.3 / 2011
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(5, "feet"),
  25400. default: true
  25401. },
  25402. {
  25403. name: "Megamacro",
  25404. height: math.unit(10, "miles"),
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(7 + 2 / 12, "feet"),
  25413. weight: math.unit(200, "lb"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/angel/front.svg",
  25417. extra: 1830 / 1737,
  25418. bottom: 22.6 / 1854,
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(7 + 2 / 12, "feet"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Macro",
  25430. height: math.unit(1000, "feet")
  25431. },
  25432. {
  25433. name: "Megamacro",
  25434. height: math.unit(2, "miles")
  25435. },
  25436. {
  25437. name: "Gigamacro",
  25438. height: math.unit(20, "earths")
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(5, "feet"),
  25447. weight: math.unit(180, "lb"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/mekana/front.svg",
  25451. extra: 1671 / 1605,
  25452. bottom: 3.5 / 1691
  25453. }
  25454. },
  25455. side: {
  25456. height: math.unit(5, "feet"),
  25457. weight: math.unit(180, "lb"),
  25458. name: "Side",
  25459. image: {
  25460. source: "./media/characters/mekana/side.svg",
  25461. extra: 1671 / 1605,
  25462. bottom: 3.5 / 1691
  25463. }
  25464. },
  25465. back: {
  25466. height: math.unit(5, "feet"),
  25467. weight: math.unit(180, "lb"),
  25468. name: "Back",
  25469. image: {
  25470. source: "./media/characters/mekana/back.svg",
  25471. extra: 1671 / 1605,
  25472. bottom: 3.5 / 1691
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(5, "feet"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(4 + 6 / 12, "feet"),
  25489. weight: math.unit(80, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/pixie/front.svg",
  25493. extra: 1924 / 1825,
  25494. bottom: 22.4 / 1946
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(4 + 6 / 12, "feet"),
  25502. default: true
  25503. },
  25504. {
  25505. name: "Macro",
  25506. height: math.unit(40, "feet")
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(2.1, "meters"),
  25515. weight: math.unit(200, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/the-lascivious/front.svg",
  25519. extra: 1 / 0.893,
  25520. bottom: 3.5 / 573.7
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Human Scale",
  25527. height: math.unit(2.1, "meters")
  25528. },
  25529. {
  25530. name: "Wolxi Scale",
  25531. height: math.unit(46.2, "m"),
  25532. default: true
  25533. },
  25534. {
  25535. name: "Boinker of Buildings",
  25536. height: math.unit(10, "km")
  25537. },
  25538. {
  25539. name: "Shagger of Skyscrapers",
  25540. height: math.unit(40, "km")
  25541. },
  25542. {
  25543. name: "Banger of Boroughs",
  25544. height: math.unit(4000, "km")
  25545. },
  25546. {
  25547. name: "Screwer of States",
  25548. height: math.unit(100000, "km")
  25549. },
  25550. {
  25551. name: "Pounder of Planets",
  25552. height: math.unit(2000000, "km")
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(6, "feet"),
  25561. weight: math.unit(150, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/aj/front.svg",
  25565. extra: 2039 / 1562,
  25566. bottom: 40 / 2079
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(11 + 6 / 12, "feet"),
  25574. default: true
  25575. },
  25576. {
  25577. name: "Megamacro",
  25578. height: math.unit(60, "megameters")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25584. {
  25585. side: {
  25586. height: math.unit(31 + 8 / 12, "feet"),
  25587. weight: math.unit(75000, "kg"),
  25588. name: "Side",
  25589. image: {
  25590. source: "./media/characters/koros/side.svg",
  25591. extra: 1442 / 1297,
  25592. bottom: 122.7 / 1562
  25593. }
  25594. },
  25595. dicksKingsCrown: {
  25596. height: math.unit(6, "feet"),
  25597. name: "Dicks (King's Crown)",
  25598. image: {
  25599. source: "./media/characters/koros/dicks-kings-crown.svg"
  25600. }
  25601. },
  25602. dicksTailSet: {
  25603. height: math.unit(3, "feet"),
  25604. name: "Dicks (Tail Set)",
  25605. image: {
  25606. source: "./media/characters/koros/dicks-tail-set.svg"
  25607. }
  25608. },
  25609. dickCumming: {
  25610. height: math.unit(7.98, "feet"),
  25611. name: "Dick (Cumming)",
  25612. image: {
  25613. source: "./media/characters/koros/dick-cumming.svg"
  25614. }
  25615. },
  25616. dicksBack: {
  25617. height: math.unit(5.9, "feet"),
  25618. name: "Dicks (Back)",
  25619. image: {
  25620. source: "./media/characters/koros/dicks-back.svg"
  25621. }
  25622. },
  25623. dicksFront: {
  25624. height: math.unit(3.72, "feet"),
  25625. name: "Dicks (Front)",
  25626. image: {
  25627. source: "./media/characters/koros/dicks-front.svg"
  25628. }
  25629. },
  25630. dicksPeeking: {
  25631. height: math.unit(3.0, "feet"),
  25632. name: "Dicks (Peeking)",
  25633. image: {
  25634. source: "./media/characters/koros/dicks-peeking.svg"
  25635. }
  25636. },
  25637. eye: {
  25638. height: math.unit(1.7, "feet"),
  25639. name: "Eye",
  25640. image: {
  25641. source: "./media/characters/koros/eye.svg"
  25642. }
  25643. },
  25644. headFront: {
  25645. height: math.unit(11.69, "feet"),
  25646. name: "Head (Front)",
  25647. image: {
  25648. source: "./media/characters/koros/head-front.svg"
  25649. }
  25650. },
  25651. headSide: {
  25652. height: math.unit(14, "feet"),
  25653. name: "Head (Side)",
  25654. image: {
  25655. source: "./media/characters/koros/head-side.svg"
  25656. }
  25657. },
  25658. leg: {
  25659. height: math.unit(17, "feet"),
  25660. name: "Leg",
  25661. image: {
  25662. source: "./media/characters/koros/leg.svg"
  25663. }
  25664. },
  25665. mawSide: {
  25666. height: math.unit(12.8, "feet"),
  25667. name: "Maw (Side)",
  25668. image: {
  25669. source: "./media/characters/koros/maw-side.svg"
  25670. }
  25671. },
  25672. mawSpitting: {
  25673. height: math.unit(17, "feet"),
  25674. name: "Maw (Spitting)",
  25675. image: {
  25676. source: "./media/characters/koros/maw-spitting.svg"
  25677. }
  25678. },
  25679. slit: {
  25680. height: math.unit(2.8, "feet"),
  25681. name: "Slit",
  25682. image: {
  25683. source: "./media/characters/koros/slit.svg"
  25684. }
  25685. },
  25686. stomach: {
  25687. height: math.unit(6.8, "feet"),
  25688. capacity: math.unit(20, "people"),
  25689. name: "Stomach",
  25690. image: {
  25691. source: "./media/characters/koros/stomach.svg"
  25692. }
  25693. },
  25694. wingspanBottom: {
  25695. height: math.unit(114, "feet"),
  25696. name: "Wingspan (Bottom)",
  25697. image: {
  25698. source: "./media/characters/koros/wingspan-bottom.svg"
  25699. }
  25700. },
  25701. wingspanTop: {
  25702. height: math.unit(104, "feet"),
  25703. name: "Wingspan (Top)",
  25704. image: {
  25705. source: "./media/characters/koros/wingspan-top.svg"
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(31 + 8 / 12, "feet"),
  25713. default: true
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(18 + 5 / 12, "feet"),
  25722. weight: math.unit(3750, "kg"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/vexx/front.svg",
  25726. extra: 426 / 396,
  25727. bottom: 31.5 / 458
  25728. }
  25729. },
  25730. maw: {
  25731. height: math.unit(6, "feet"),
  25732. name: "Maw",
  25733. image: {
  25734. source: "./media/characters/vexx/maw.svg"
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(18 + 5 / 12, "feet"),
  25742. default: true
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(17 + 6 / 12, "feet"),
  25751. weight: math.unit(150, "lb"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/baadra/front.svg",
  25755. extra: 3137 / 2890,
  25756. bottom: 168.4 / 3305
  25757. }
  25758. },
  25759. back: {
  25760. height: math.unit(17 + 6 / 12, "feet"),
  25761. weight: math.unit(150, "lb"),
  25762. name: "Back",
  25763. image: {
  25764. source: "./media/characters/baadra/back.svg",
  25765. extra: 3142 / 2890,
  25766. bottom: 220 / 3371
  25767. }
  25768. },
  25769. head: {
  25770. height: math.unit(5.45, "feet"),
  25771. name: "Head",
  25772. image: {
  25773. source: "./media/characters/baadra/head.svg"
  25774. }
  25775. },
  25776. headAngry: {
  25777. height: math.unit(4.95, "feet"),
  25778. name: "Head (Angry)",
  25779. image: {
  25780. source: "./media/characters/baadra/head-angry.svg"
  25781. }
  25782. },
  25783. headOpen: {
  25784. height: math.unit(6, "feet"),
  25785. name: "Head (Open)",
  25786. image: {
  25787. source: "./media/characters/baadra/head-open.svg"
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(17 + 6 / 12, "feet"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(7 + 3 / 12, "feet"),
  25804. weight: math.unit(180, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/juri/front.svg",
  25808. extra: 1401 / 1237,
  25809. bottom: 18.5 / 1418
  25810. }
  25811. },
  25812. side: {
  25813. height: math.unit(7 + 3 / 12, "feet"),
  25814. weight: math.unit(180, "lb"),
  25815. name: "Side",
  25816. image: {
  25817. source: "./media/characters/juri/side.svg",
  25818. extra: 1424 / 1242,
  25819. bottom: 18.5 / 1447
  25820. }
  25821. },
  25822. sitting: {
  25823. height: math.unit(6, "feet"),
  25824. weight: math.unit(180, "lb"),
  25825. name: "Sitting",
  25826. image: {
  25827. source: "./media/characters/juri/sitting.svg",
  25828. extra: 1270 / 1143,
  25829. bottom: 100 / 1343
  25830. }
  25831. },
  25832. back: {
  25833. height: math.unit(7 + 3 / 12, "feet"),
  25834. weight: math.unit(180, "lb"),
  25835. name: "Back",
  25836. image: {
  25837. source: "./media/characters/juri/back.svg",
  25838. extra: 1377 / 1240,
  25839. bottom: 23.7 / 1405
  25840. }
  25841. },
  25842. maw: {
  25843. height: math.unit(2.8, "feet"),
  25844. name: "Maw",
  25845. image: {
  25846. source: "./media/characters/juri/maw.svg"
  25847. }
  25848. },
  25849. stomach: {
  25850. height: math.unit(0.89, "feet"),
  25851. capacity: math.unit(4, "liters"),
  25852. name: "Stomach",
  25853. image: {
  25854. source: "./media/characters/juri/stomach.svg"
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(7 + 3 / 12, "feet"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25868. {
  25869. fox: {
  25870. height: math.unit(5 + 6 / 12, "feet"),
  25871. weight: math.unit(140, "lb"),
  25872. name: "Fox",
  25873. image: {
  25874. source: "./media/characters/maxene-sita/fox.svg",
  25875. extra: 146 / 138,
  25876. bottom: 2.1 / 148.19
  25877. }
  25878. },
  25879. foxLaying: {
  25880. height: math.unit(1.70, "feet"),
  25881. weight: math.unit(140, "lb"),
  25882. name: "Fox (Laying)",
  25883. image: {
  25884. source: "./media/characters/maxene-sita/fox-laying.svg",
  25885. extra: 910 / 572,
  25886. bottom: 71 / 981
  25887. }
  25888. },
  25889. kitsune: {
  25890. height: math.unit(10, "feet"),
  25891. weight: math.unit(800, "lb"),
  25892. name: "Kitsune",
  25893. image: {
  25894. source: "./media/characters/maxene-sita/kitsune.svg",
  25895. extra: 185 / 176,
  25896. bottom: 4.7 / 189.9
  25897. }
  25898. },
  25899. hellhound: {
  25900. height: math.unit(10, "feet"),
  25901. weight: math.unit(700, "lb"),
  25902. name: "Hellhound",
  25903. image: {
  25904. source: "./media/characters/maxene-sita/hellhound.svg",
  25905. extra: 1600 / 1545,
  25906. bottom: 81 / 1681
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(5 + 6 / 12, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25920. {
  25921. front: {
  25922. height: math.unit(3 + 4 / 12, "feet"),
  25923. weight: math.unit(70, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/maia/front.svg",
  25927. extra: 227 / 219.5,
  25928. bottom: 40 / 267
  25929. }
  25930. },
  25931. back: {
  25932. height: math.unit(3 + 4 / 12, "feet"),
  25933. weight: math.unit(70, "lb"),
  25934. name: "Back",
  25935. image: {
  25936. source: "./media/characters/maia/back.svg",
  25937. extra: 237 / 225
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(3 + 4 / 12, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(5 + 10 / 12, "feet"),
  25954. weight: math.unit(197, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/jabaro/front.svg",
  25958. extra: 225 / 216,
  25959. bottom: 5.06 / 230
  25960. }
  25961. },
  25962. back: {
  25963. height: math.unit(5 + 10 / 12, "feet"),
  25964. weight: math.unit(197, "lb"),
  25965. name: "Back",
  25966. image: {
  25967. source: "./media/characters/jabaro/back.svg",
  25968. extra: 225 / 219,
  25969. bottom: 1.9 / 227
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(5 + 10 / 12, "feet"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(5 + 8 / 12, "feet"),
  25986. weight: math.unit(139, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/risa/front.svg",
  25990. extra: 270 / 260,
  25991. bottom: 11.2 / 282
  25992. }
  25993. },
  25994. back: {
  25995. height: math.unit(5 + 8 / 12, "feet"),
  25996. weight: math.unit(139, "lb"),
  25997. name: "Back",
  25998. image: {
  25999. source: "./media/characters/risa/back.svg",
  26000. extra: 264 / 255,
  26001. bottom: 4 / 268
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(5 + 8 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26015. {
  26016. front: {
  26017. height: math.unit(2 + 11 / 12, "feet"),
  26018. weight: math.unit(30, "lb"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/weatley/front.svg",
  26022. bottom: 10.7 / 414,
  26023. extra: 403.5 / 362
  26024. }
  26025. },
  26026. back: {
  26027. height: math.unit(2 + 11 / 12, "feet"),
  26028. weight: math.unit(30, "lb"),
  26029. name: "Back",
  26030. image: {
  26031. source: "./media/characters/weatley/back.svg",
  26032. bottom: 10.7 / 414,
  26033. extra: 403.5 / 362
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(2 + 11 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(5 + 2 / 12, "feet"),
  26050. weight: math.unit(50, "kg"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/mercury-crescent/front.svg",
  26054. extra: 1088 / 1033,
  26055. bottom: 18.9 / 1109
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(5 + 2 / 12, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(2, "feet"),
  26072. weight: math.unit(15, "kg"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/diamond-jones/front.svg",
  26076. extra: 727/723,
  26077. bottom: 46/773
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(2, "feet"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26091. {
  26092. front: {
  26093. height: math.unit(3, "feet"),
  26094. weight: math.unit(30, "kg"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/sweet-bit/front.svg",
  26098. extra: 675 / 567,
  26099. bottom: 27.7 / 703
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(3, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26113. {
  26114. side: {
  26115. height: math.unit(9.178, "feet"),
  26116. weight: math.unit(500, "lb"),
  26117. name: "Side",
  26118. image: {
  26119. source: "./media/characters/umbrazen/side.svg",
  26120. extra: 1730 / 1473,
  26121. bottom: 34.6 / 1765
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Normal",
  26128. height: math.unit(9.178, "feet"),
  26129. default: true
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(10, "feet"),
  26138. weight: math.unit(750, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/arlist/front.svg",
  26142. extra: 961 / 778,
  26143. bottom: 6.2 / 986
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(10, "feet"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(5 + 1 / 12, "feet"),
  26160. weight: math.unit(110, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/aradel/front.svg",
  26164. extra: 324 / 303,
  26165. bottom: 3.6 / 329.4
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(5 + 1 / 12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(3 + 8 / 12, "feet"),
  26182. weight: math.unit(50, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/serryn/front.svg",
  26186. extra: 1792 / 1656,
  26187. bottom: 43.5 / 1840
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(3 + 8 / 12, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(7 + 10 / 12, "feet"),
  26204. weight: math.unit(255, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/xavier-thyme/front.svg",
  26208. extra: 3733 / 3642,
  26209. bottom: 131 / 3869
  26210. }
  26211. },
  26212. frontRaven: {
  26213. height: math.unit(7 + 10 / 12, "feet"),
  26214. weight: math.unit(255, "lb"),
  26215. name: "Front (Raven)",
  26216. image: {
  26217. source: "./media/characters/xavier-thyme/front-raven.svg",
  26218. extra: 4385 / 3642,
  26219. bottom: 131 / 4517
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(7 + 10 / 12, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(1.6, "m"),
  26236. weight: math.unit(50, "kg"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/kiki/front.svg",
  26240. extra: 4682 / 3610,
  26241. bottom: 115 / 4777
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(1.6, "meters"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(50, "m"),
  26258. weight: math.unit(500, "tonnes"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/ryoko/front.svg",
  26262. extra: 4632 / 3926,
  26263. bottom: 193 / 4823
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(50, "meters"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(30, "m"),
  26280. weight: math.unit(22, "tonnes"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/elio/front.svg",
  26284. extra: 4582 / 3720,
  26285. bottom: 236 / 4828
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(30, "meters"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(6 + 3 / 12, "feet"),
  26302. weight: math.unit(120, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/azura/front.svg",
  26306. extra: 1149 / 1135,
  26307. bottom: 45 / 1194
  26308. }
  26309. },
  26310. frontClothed: {
  26311. height: math.unit(6 + 3 / 12, "feet"),
  26312. weight: math.unit(120, "lb"),
  26313. name: "Front (Clothed)",
  26314. image: {
  26315. source: "./media/characters/azura/front-clothed.svg",
  26316. extra: 1149 / 1135,
  26317. bottom: 45 / 1194
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(6 + 3 / 12, "feet"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(20 + 6 / 12, "feet")
  26330. },
  26331. {
  26332. name: "Megamacro",
  26333. height: math.unit(12, "miles")
  26334. },
  26335. {
  26336. name: "Gigamacro",
  26337. height: math.unit(10000, "miles")
  26338. },
  26339. {
  26340. name: "Teramacro",
  26341. height: math.unit(900000, "miles")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(12, "feet"),
  26350. weight: math.unit(1, "ton"),
  26351. capacity: math.unit(660000, "gallons"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/zeus/front.svg",
  26355. extra: 5005 / 4717,
  26356. bottom: 363 / 5388
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(12, "feet")
  26364. },
  26365. {
  26366. name: "Preferred Size",
  26367. height: math.unit(0.5, "miles"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Giga Horse",
  26372. height: math.unit(300, "miles")
  26373. },
  26374. {
  26375. name: "Riding Planets",
  26376. height: math.unit(30, "megameters")
  26377. },
  26378. {
  26379. name: "Cosmic Giant",
  26380. height: math.unit(3, "zettameters")
  26381. },
  26382. {
  26383. name: "Breeding God",
  26384. height: math.unit(9.92e22, "yottameters")
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26390. {
  26391. side: {
  26392. height: math.unit(9, "feet"),
  26393. weight: math.unit(1500, "kg"),
  26394. name: "Side",
  26395. image: {
  26396. source: "./media/characters/fang/side.svg",
  26397. extra: 924 / 866,
  26398. bottom: 47.5 / 972.3
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(9, "feet"),
  26406. default: true
  26407. },
  26408. {
  26409. name: "Macro",
  26410. height: math.unit(75 + 6 / 12, "feet")
  26411. },
  26412. {
  26413. name: "Teramacro",
  26414. height: math.unit(50000, "miles")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(10, "feet"),
  26423. weight: math.unit(2, "tons"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/rekhit/front.svg",
  26427. extra: 2796 / 2590,
  26428. bottom: 225 / 3022
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(10, "feet"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Macro",
  26440. height: math.unit(500, "feet")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(7 + 6.451 / 12, "feet"),
  26449. weight: math.unit(310, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/dahlia-verrick/front.svg",
  26453. extra: 1488 / 1365,
  26454. bottom: 6.2 / 1495
  26455. }
  26456. },
  26457. back: {
  26458. height: math.unit(7 + 6.451 / 12, "feet"),
  26459. weight: math.unit(310, "lb"),
  26460. name: "Back",
  26461. image: {
  26462. source: "./media/characters/dahlia-verrick/back.svg",
  26463. extra: 1472 / 1351,
  26464. bottom: 5.28 / 1477
  26465. }
  26466. },
  26467. frontBusiness: {
  26468. height: math.unit(7 + 6.451 / 12, "feet"),
  26469. weight: math.unit(200, "lb"),
  26470. name: "Front (Business)",
  26471. image: {
  26472. source: "./media/characters/dahlia-verrick/front-business.svg",
  26473. extra: 1478 / 1381,
  26474. bottom: 5.5 / 1484
  26475. }
  26476. },
  26477. frontCasual: {
  26478. height: math.unit(7 + 6.451 / 12, "feet"),
  26479. weight: math.unit(200, "lb"),
  26480. name: "Front (Casual)",
  26481. image: {
  26482. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26483. extra: 1478 / 1381,
  26484. bottom: 5.5 / 1484
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Travel-Sized",
  26491. height: math.unit(7.45, "inches")
  26492. },
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(7 + 6.451 / 12, "feet"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Hitting the Town",
  26500. height: math.unit(37 + 8 / 12, "feet")
  26501. },
  26502. {
  26503. name: "Stomp in the Suburbs",
  26504. height: math.unit(964 + 9.728 / 12, "feet")
  26505. },
  26506. {
  26507. name: "Sit on the City",
  26508. height: math.unit(61747 + 10.592 / 12, "feet")
  26509. },
  26510. {
  26511. name: "Glomp the Globe",
  26512. height: math.unit(252919327 + 4.832 / 12, "feet")
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(6 + 4 / 12, "feet"),
  26521. weight: math.unit(320, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/balina-mahigan/front.svg",
  26525. extra: 447 / 428,
  26526. bottom: 18 / 466
  26527. }
  26528. },
  26529. back: {
  26530. height: math.unit(6 + 4 / 12, "feet"),
  26531. weight: math.unit(320, "lb"),
  26532. name: "Back",
  26533. image: {
  26534. source: "./media/characters/balina-mahigan/back.svg",
  26535. extra: 445 / 428,
  26536. bottom: 4.07 / 448
  26537. }
  26538. },
  26539. arm: {
  26540. height: math.unit(1.88, "feet"),
  26541. name: "Arm",
  26542. image: {
  26543. source: "./media/characters/balina-mahigan/arm.svg"
  26544. }
  26545. },
  26546. backPort: {
  26547. height: math.unit(0.685, "feet"),
  26548. name: "Back Port",
  26549. image: {
  26550. source: "./media/characters/balina-mahigan/back-port.svg"
  26551. }
  26552. },
  26553. hoofpaw: {
  26554. height: math.unit(1.41, "feet"),
  26555. name: "Hoofpaw",
  26556. image: {
  26557. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26558. }
  26559. },
  26560. leftHandBack: {
  26561. height: math.unit(0.938, "feet"),
  26562. name: "Left Hand (Back)",
  26563. image: {
  26564. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26565. }
  26566. },
  26567. leftHandFront: {
  26568. height: math.unit(0.938, "feet"),
  26569. name: "Left Hand (Front)",
  26570. image: {
  26571. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26572. }
  26573. },
  26574. rightHandBack: {
  26575. height: math.unit(0.95, "feet"),
  26576. name: "Right Hand (Back)",
  26577. image: {
  26578. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26579. }
  26580. },
  26581. rightHandFront: {
  26582. height: math.unit(0.95, "feet"),
  26583. name: "Right Hand (Front)",
  26584. image: {
  26585. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26586. }
  26587. },
  26588. },
  26589. [
  26590. {
  26591. name: "Normal",
  26592. height: math.unit(6 + 4 / 12, "feet"),
  26593. default: true
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(6, "feet"),
  26602. weight: math.unit(320, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/balina-mejeri/front.svg",
  26606. extra: 517 / 488,
  26607. bottom: 44.2 / 561
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(6 + 4 / 12, "feet")
  26615. },
  26616. {
  26617. name: "Business",
  26618. height: math.unit(155, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26625. {
  26626. kneeling: {
  26627. height: math.unit(6 + 4 / 12, "feet"),
  26628. weight: math.unit(300 * 20, "lb"),
  26629. name: "Kneeling",
  26630. image: {
  26631. source: "./media/characters/balbarian/kneeling.svg",
  26632. extra: 922 / 862,
  26633. bottom: 42.4 / 965
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(6 + 4 / 12, "feet")
  26641. },
  26642. {
  26643. name: "Treasured",
  26644. height: math.unit(18 + 9 / 12, "feet"),
  26645. default: true
  26646. },
  26647. {
  26648. name: "Macro",
  26649. height: math.unit(900, "feet")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(6 + 4 / 12, "feet"),
  26658. weight: math.unit(325, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/balina-amarini/front.svg",
  26662. extra: 415 / 403,
  26663. bottom: 19 / 433.4
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(6 + 4 / 12, "feet"),
  26668. weight: math.unit(325, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/balina-amarini/back.svg",
  26672. extra: 415 / 403,
  26673. bottom: 13.5 / 432
  26674. }
  26675. },
  26676. overdrive: {
  26677. height: math.unit(6 + 4 / 12, "feet"),
  26678. weight: math.unit(400, "lb"),
  26679. name: "Overdrive",
  26680. image: {
  26681. source: "./media/characters/balina-amarini/overdrive.svg",
  26682. extra: 269 / 259,
  26683. bottom: 12 / 282
  26684. }
  26685. },
  26686. },
  26687. [
  26688. {
  26689. name: "Boom",
  26690. height: math.unit(9 + 10 / 12, "feet"),
  26691. default: true
  26692. },
  26693. {
  26694. name: "Macro",
  26695. height: math.unit(280, "feet")
  26696. },
  26697. ]
  26698. ))
  26699. characterMakers.push(() => makeCharacter(
  26700. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26701. {
  26702. goddess: {
  26703. height: math.unit(600, "feet"),
  26704. weight: math.unit(2000000, "tons"),
  26705. name: "Goddess",
  26706. image: {
  26707. source: "./media/characters/lady-kubwa/goddess.svg",
  26708. extra: 1240.5 / 1223,
  26709. bottom: 22 / 1263
  26710. }
  26711. },
  26712. goddesser: {
  26713. height: math.unit(900, "feet"),
  26714. weight: math.unit(20000000, "lb"),
  26715. name: "Goddess-er",
  26716. image: {
  26717. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26718. extra: 899 / 888,
  26719. bottom: 12.6 / 912
  26720. }
  26721. },
  26722. },
  26723. [
  26724. {
  26725. name: "Macro",
  26726. height: math.unit(600, "feet"),
  26727. default: true
  26728. },
  26729. {
  26730. name: "Megamacro",
  26731. height: math.unit(250, "miles")
  26732. },
  26733. ]
  26734. ))
  26735. characterMakers.push(() => makeCharacter(
  26736. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26737. {
  26738. front: {
  26739. height: math.unit(7 + 7 / 12, "feet"),
  26740. weight: math.unit(250, "lb"),
  26741. name: "Front",
  26742. image: {
  26743. source: "./media/characters/tala-grovehorn/front.svg",
  26744. extra: 2636 / 2525,
  26745. bottom: 147 / 2781
  26746. }
  26747. },
  26748. back: {
  26749. height: math.unit(7 + 7 / 12, "feet"),
  26750. weight: math.unit(250, "lb"),
  26751. name: "Back",
  26752. image: {
  26753. source: "./media/characters/tala-grovehorn/back.svg",
  26754. extra: 2635 / 2539,
  26755. bottom: 100 / 2732.8
  26756. }
  26757. },
  26758. mouth: {
  26759. height: math.unit(1.15, "feet"),
  26760. name: "Mouth",
  26761. image: {
  26762. source: "./media/characters/tala-grovehorn/mouth.svg"
  26763. }
  26764. },
  26765. dick: {
  26766. height: math.unit(2.36, "feet"),
  26767. name: "Dick",
  26768. image: {
  26769. source: "./media/characters/tala-grovehorn/dick.svg"
  26770. }
  26771. },
  26772. slit: {
  26773. height: math.unit(0.61, "feet"),
  26774. name: "Slit",
  26775. image: {
  26776. source: "./media/characters/tala-grovehorn/slit.svg"
  26777. }
  26778. },
  26779. },
  26780. [
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(7 + 7 / 12, "feet"),
  26788. weight: math.unit(225, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/epona/front.svg",
  26792. extra: 2445 / 2290,
  26793. bottom: 251 / 2696
  26794. }
  26795. },
  26796. back: {
  26797. height: math.unit(7 + 7 / 12, "feet"),
  26798. weight: math.unit(225, "lb"),
  26799. name: "Back",
  26800. image: {
  26801. source: "./media/characters/epona/back.svg",
  26802. extra: 2546 / 2408,
  26803. bottom: 44 / 2589
  26804. }
  26805. },
  26806. genitals: {
  26807. height: math.unit(1.5, "feet"),
  26808. name: "Genitals",
  26809. image: {
  26810. source: "./media/characters/epona/genitals.svg"
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(7 + 7 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(7, "feet"),
  26827. weight: math.unit(518, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/avia-bloodbourn/front.svg",
  26831. extra: 1466 / 1350,
  26832. bottom: 65 / 1527
  26833. }
  26834. },
  26835. },
  26836. [
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(9.35, "feet"),
  26844. weight: math.unit(600, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/amera/front.svg",
  26848. extra: 891 / 818,
  26849. bottom: 30 / 922.7
  26850. }
  26851. },
  26852. back: {
  26853. height: math.unit(9.35, "feet"),
  26854. weight: math.unit(600, "lb"),
  26855. name: "Back",
  26856. image: {
  26857. source: "./media/characters/amera/back.svg",
  26858. extra: 876 / 824,
  26859. bottom: 6.8 / 884
  26860. }
  26861. },
  26862. dick: {
  26863. height: math.unit(2.14, "feet"),
  26864. name: "Dick",
  26865. image: {
  26866. source: "./media/characters/amera/dick.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(9.35, "feet"),
  26874. default: true
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26880. {
  26881. kneeling: {
  26882. height: math.unit(3 + 4 / 12, "feet"),
  26883. weight: math.unit(90, "lb"),
  26884. name: "Kneeling",
  26885. image: {
  26886. source: "./media/characters/rosewen/kneeling.svg",
  26887. extra: 1835 / 1571,
  26888. bottom: 27.7 / 1862
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(3 + 4 / 12, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26902. {
  26903. front: {
  26904. height: math.unit(5 + 10 / 12, "feet"),
  26905. weight: math.unit(200, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/sabah/front.svg",
  26909. extra: 849 / 763,
  26910. bottom: 33.9 / 881
  26911. }
  26912. },
  26913. },
  26914. [
  26915. {
  26916. name: "Normal",
  26917. height: math.unit(5 + 10 / 12, "feet"),
  26918. default: true
  26919. },
  26920. ]
  26921. ))
  26922. characterMakers.push(() => makeCharacter(
  26923. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26924. {
  26925. front: {
  26926. height: math.unit(3 + 5 / 12, "feet"),
  26927. weight: math.unit(40, "kg"),
  26928. name: "Front",
  26929. image: {
  26930. source: "./media/characters/purple-flame/front.svg",
  26931. extra: 1577 / 1412,
  26932. bottom: 97 / 1694
  26933. }
  26934. },
  26935. frontDressed: {
  26936. height: math.unit(3 + 5 / 12, "feet"),
  26937. weight: math.unit(40, "kg"),
  26938. name: "Front (Dressed)",
  26939. image: {
  26940. source: "./media/characters/purple-flame/front-dressed.svg",
  26941. extra: 1577 / 1412,
  26942. bottom: 97 / 1694
  26943. }
  26944. },
  26945. headphones: {
  26946. height: math.unit(0.85, "feet"),
  26947. name: "Headphones",
  26948. image: {
  26949. source: "./media/characters/purple-flame/headphones.svg"
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Really Small",
  26956. height: math.unit(5, "cm")
  26957. },
  26958. {
  26959. name: "Micro",
  26960. height: math.unit(1 + 5 / 12, "feet")
  26961. },
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(3 + 5 / 12, "feet"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Minimacro",
  26969. height: math.unit(125, "feet")
  26970. },
  26971. {
  26972. name: "Macro",
  26973. height: math.unit(0.5, "miles")
  26974. },
  26975. {
  26976. name: "Megamacro",
  26977. height: math.unit(50, "miles")
  26978. },
  26979. {
  26980. name: "Gigantic",
  26981. height: math.unit(750, "miles")
  26982. },
  26983. {
  26984. name: "Planetary",
  26985. height: math.unit(15000, "miles")
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(14, "feet"),
  26994. weight: math.unit(959, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/arsenal/front.svg",
  26998. extra: 2357 / 2157,
  26999. bottom: 93 / 2458
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Normal",
  27006. height: math.unit(14, "feet"),
  27007. default: true
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27013. {
  27014. front: {
  27015. height: math.unit(6, "feet"),
  27016. weight: math.unit(150, "lb"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/adira/front.svg",
  27020. extra: 1078 / 1029,
  27021. bottom: 87 / 1166
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Micro",
  27028. height: math.unit(4, "inches"),
  27029. default: true
  27030. },
  27031. {
  27032. name: "Macro",
  27033. height: math.unit(50, "feet")
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(16, "feet"),
  27042. weight: math.unit(1000, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/grim/front.svg",
  27046. extra: 622 / 614,
  27047. bottom: 18.1 / 642
  27048. }
  27049. },
  27050. back: {
  27051. height: math.unit(16, "feet"),
  27052. weight: math.unit(1000, "lb"),
  27053. name: "Back",
  27054. image: {
  27055. source: "./media/characters/grim/back.svg",
  27056. extra: 610.6 / 602,
  27057. bottom: 40.8 / 652
  27058. }
  27059. },
  27060. hunched: {
  27061. height: math.unit(9.75, "feet"),
  27062. weight: math.unit(1000, "lb"),
  27063. name: "Hunched",
  27064. image: {
  27065. source: "./media/characters/grim/hunched.svg",
  27066. extra: 304 / 297,
  27067. bottom: 35.4 / 394
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(16, "feet"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(2.3, "meters"),
  27084. weight: math.unit(300, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/sinja/front-sfw.svg",
  27088. extra: 1393 / 1294,
  27089. bottom: 70 / 1463
  27090. }
  27091. },
  27092. frontNsfw: {
  27093. height: math.unit(2.3, "meters"),
  27094. weight: math.unit(300, "lb"),
  27095. name: "Front (NSFW)",
  27096. image: {
  27097. source: "./media/characters/sinja/front-nsfw.svg",
  27098. extra: 1393 / 1294,
  27099. bottom: 70 / 1463
  27100. }
  27101. },
  27102. back: {
  27103. height: math.unit(2.3, "meters"),
  27104. weight: math.unit(300, "lb"),
  27105. name: "Back",
  27106. image: {
  27107. source: "./media/characters/sinja/back.svg",
  27108. extra: 1393 / 1294,
  27109. bottom: 70 / 1463
  27110. }
  27111. },
  27112. head: {
  27113. height: math.unit(1.771, "feet"),
  27114. name: "Head",
  27115. image: {
  27116. source: "./media/characters/sinja/head.svg"
  27117. }
  27118. },
  27119. slit: {
  27120. height: math.unit(0.8, "feet"),
  27121. name: "Slit",
  27122. image: {
  27123. source: "./media/characters/sinja/slit.svg"
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(2.3, "meters")
  27131. },
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(91, "meters"),
  27135. default: true
  27136. },
  27137. {
  27138. name: "Megamacro",
  27139. height: math.unit(91440, "meters")
  27140. },
  27141. {
  27142. name: "Gigamacro",
  27143. height: math.unit(60960000, "meters")
  27144. },
  27145. {
  27146. name: "Teramacro",
  27147. height: math.unit(9144000000, "meters")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27153. {
  27154. front: {
  27155. height: math.unit(1.7, "meters"),
  27156. weight: math.unit(130, "lb"),
  27157. name: "Front",
  27158. image: {
  27159. source: "./media/characters/kyu/front.svg",
  27160. extra: 415 / 395,
  27161. bottom: 5 / 420
  27162. }
  27163. },
  27164. head: {
  27165. height: math.unit(1.75, "feet"),
  27166. name: "Head",
  27167. image: {
  27168. source: "./media/characters/kyu/head.svg"
  27169. }
  27170. },
  27171. foot: {
  27172. height: math.unit(0.81, "feet"),
  27173. name: "Foot",
  27174. image: {
  27175. source: "./media/characters/kyu/foot.svg"
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(1.7, "meters")
  27183. },
  27184. {
  27185. name: "Macro",
  27186. height: math.unit(131, "feet"),
  27187. default: true
  27188. },
  27189. {
  27190. name: "Megamacro",
  27191. height: math.unit(91440, "meters")
  27192. },
  27193. {
  27194. name: "Gigamacro",
  27195. height: math.unit(60960000, "meters")
  27196. },
  27197. {
  27198. name: "Teramacro",
  27199. height: math.unit(9144000000, "meters")
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(7 + 1 / 12, "feet"),
  27208. weight: math.unit(250, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/joey/front.svg",
  27212. extra: 1791 / 1537,
  27213. bottom: 28 / 1816
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Micro",
  27220. height: math.unit(3, "inches")
  27221. },
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(7 + 1 / 12, "feet"),
  27225. default: true
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(165, "cm"),
  27234. weight: math.unit(140, "lb"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/sam-evans/front.svg",
  27238. extra: 3417 / 3230,
  27239. bottom: 41.3 / 3417
  27240. }
  27241. },
  27242. frontSixTails: {
  27243. height: math.unit(165, "cm"),
  27244. weight: math.unit(140, "lb"),
  27245. name: "Front-six-tails",
  27246. image: {
  27247. source: "./media/characters/sam-evans/front-six-tails.svg",
  27248. extra: 3417 / 3230,
  27249. bottom: 41.3 / 3417
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(165, "cm"),
  27254. weight: math.unit(140, "lb"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/sam-evans/back.svg",
  27258. extra: 3227 / 3032,
  27259. bottom: 6.8 / 3234
  27260. }
  27261. },
  27262. face: {
  27263. height: math.unit(0.68, "feet"),
  27264. name: "Face",
  27265. image: {
  27266. source: "./media/characters/sam-evans/face.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(165, "cm"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Macro",
  27278. height: math.unit(100, "meters")
  27279. },
  27280. {
  27281. name: "Macro+",
  27282. height: math.unit(800, "meters")
  27283. },
  27284. {
  27285. name: "Macro++",
  27286. height: math.unit(3, "km")
  27287. },
  27288. {
  27289. name: "Macro+++",
  27290. height: math.unit(30, "km")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(10, "feet"),
  27299. weight: math.unit(750, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/juliet-a/front.svg",
  27303. extra: 1766 / 1720,
  27304. bottom: 43 / 1809
  27305. }
  27306. },
  27307. back: {
  27308. height: math.unit(10, "feet"),
  27309. weight: math.unit(750, "lb"),
  27310. name: "Back",
  27311. image: {
  27312. source: "./media/characters/juliet-a/back.svg",
  27313. extra: 1781 / 1734,
  27314. bottom: 35 / 1810,
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(10, "feet"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Dragon Form",
  27326. height: math.unit(250, "feet")
  27327. },
  27328. {
  27329. name: "Macro",
  27330. height: math.unit(1000, "feet")
  27331. },
  27332. {
  27333. name: "Megamacro",
  27334. height: math.unit(10000, "feet")
  27335. }
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27340. {
  27341. regular: {
  27342. height: math.unit(7 + 3 / 12, "feet"),
  27343. weight: math.unit(260, "lb"),
  27344. name: "Regular",
  27345. image: {
  27346. source: "./media/characters/wild/regular.svg",
  27347. extra: 97.45 / 92,
  27348. bottom: 6.8 / 104.3
  27349. }
  27350. },
  27351. biggums: {
  27352. height: math.unit(8 + 6 / 12, "feet"),
  27353. weight: math.unit(425, "lb"),
  27354. name: "Biggums",
  27355. image: {
  27356. source: "./media/characters/wild/biggums.svg",
  27357. extra: 97.45 / 92,
  27358. bottom: 7.5 / 132.34
  27359. }
  27360. },
  27361. mawRegular: {
  27362. height: math.unit(1.24, "feet"),
  27363. name: "Maw (Regular)",
  27364. image: {
  27365. source: "./media/characters/wild/maw.svg"
  27366. }
  27367. },
  27368. mawBiggums: {
  27369. height: math.unit(1.47, "feet"),
  27370. name: "Maw (Biggums)",
  27371. image: {
  27372. source: "./media/characters/wild/maw.svg"
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(7 + 3 / 12, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27386. {
  27387. front: {
  27388. height: math.unit(2.5, "meters"),
  27389. weight: math.unit(200, "kg"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/vidar/front.svg",
  27393. extra: 2994 / 2795,
  27394. bottom: 56 / 3061
  27395. }
  27396. },
  27397. back: {
  27398. height: math.unit(2.5, "meters"),
  27399. weight: math.unit(200, "kg"),
  27400. name: "Back",
  27401. image: {
  27402. source: "./media/characters/vidar/back.svg",
  27403. extra: 3131 / 2928,
  27404. bottom: 13.5 / 3141.5
  27405. }
  27406. },
  27407. feral: {
  27408. height: math.unit(2.5, "meters"),
  27409. weight: math.unit(2000, "kg"),
  27410. name: "Feral",
  27411. image: {
  27412. source: "./media/characters/vidar/feral.svg",
  27413. extra: 2790 / 1765,
  27414. bottom: 6 / 2796
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(2.5, "meters"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Macro",
  27426. height: math.unit(100, "meters")
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(5 + 9 / 12, "feet"),
  27435. weight: math.unit(120, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/ash/front.svg",
  27439. extra: 2189 / 1961,
  27440. bottom: 5.2 / 2194
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(5 + 9 / 12, "feet"),
  27448. default: true
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(9, "feet"),
  27457. weight: math.unit(10000, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/gygabite/front.svg",
  27461. bottom: 31.7 / 537.8,
  27462. extra: 505 / 370
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(9, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(12, "feet"),
  27479. weight: math.unit(35000, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/p0tat0/front.svg",
  27483. extra: 1065 / 921,
  27484. bottom: 55.7 / 1121.25
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(12, "feet"),
  27492. default: true
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27498. {
  27499. side: {
  27500. height: math.unit(6.5, "feet"),
  27501. weight: math.unit(800, "lb"),
  27502. name: "Side",
  27503. image: {
  27504. source: "./media/characters/dusk/side.svg",
  27505. extra: 615 / 373,
  27506. bottom: 53 / 664
  27507. }
  27508. },
  27509. sitting: {
  27510. height: math.unit(7, "feet"),
  27511. weight: math.unit(800, "lb"),
  27512. name: "Sitting",
  27513. image: {
  27514. source: "./media/characters/dusk/sitting.svg",
  27515. extra: 753 / 425,
  27516. bottom: 33 / 774
  27517. }
  27518. },
  27519. head: {
  27520. height: math.unit(6.1, "feet"),
  27521. name: "Head",
  27522. image: {
  27523. source: "./media/characters/dusk/head.svg"
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(7, "feet"),
  27531. default: true
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(15, "feet"),
  27540. weight: math.unit(7000, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/jay-direwolf/front.svg",
  27544. extra: 1810 / 1732,
  27545. bottom: 66 / 1892
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(15, "feet"),
  27553. default: true
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27559. {
  27560. front: {
  27561. height: math.unit(4 + 9 / 12, "feet"),
  27562. weight: math.unit(130, "lb"),
  27563. name: "Front",
  27564. image: {
  27565. source: "./media/characters/anchovie/front.svg",
  27566. extra: 382 / 350,
  27567. bottom: 25 / 409
  27568. }
  27569. },
  27570. back: {
  27571. height: math.unit(4 + 9 / 12, "feet"),
  27572. weight: math.unit(130, "lb"),
  27573. name: "Back",
  27574. image: {
  27575. source: "./media/characters/anchovie/back.svg",
  27576. extra: 385 / 352,
  27577. bottom: 16.6 / 402
  27578. }
  27579. },
  27580. frontDressed: {
  27581. height: math.unit(4 + 9 / 12, "feet"),
  27582. weight: math.unit(130, "lb"),
  27583. name: "Front (Dressed)",
  27584. image: {
  27585. source: "./media/characters/anchovie/front-dressed.svg",
  27586. extra: 382 / 350,
  27587. bottom: 25 / 409
  27588. }
  27589. },
  27590. backDressed: {
  27591. height: math.unit(4 + 9 / 12, "feet"),
  27592. weight: math.unit(130, "lb"),
  27593. name: "Back (Dressed)",
  27594. image: {
  27595. source: "./media/characters/anchovie/back-dressed.svg",
  27596. extra: 385 / 352,
  27597. bottom: 16.6 / 402
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Micro",
  27604. height: math.unit(6.4, "inches")
  27605. },
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(4 + 9 / 12, "feet"),
  27609. default: true
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(2, "meters"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/acidrenamon/front.svg",
  27622. extra: 987 / 890,
  27623. bottom: 22.8 / 1009
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(2, "meters"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/acidrenamon/back.svg",
  27632. extra: 983 / 891,
  27633. bottom: 8.4 / 992
  27634. }
  27635. },
  27636. head: {
  27637. height: math.unit(1.92, "feet"),
  27638. name: "Head",
  27639. image: {
  27640. source: "./media/characters/acidrenamon/head.svg"
  27641. }
  27642. },
  27643. rump: {
  27644. height: math.unit(1.72, "feet"),
  27645. name: "Rump",
  27646. image: {
  27647. source: "./media/characters/acidrenamon/rump.svg"
  27648. }
  27649. },
  27650. tail: {
  27651. height: math.unit(4.2, "feet"),
  27652. name: "Tail",
  27653. image: {
  27654. source: "./media/characters/acidrenamon/tail.svg"
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(2, "meters"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Minimacro",
  27666. height: math.unit(7, "meters")
  27667. },
  27668. {
  27669. name: "Macro",
  27670. height: math.unit(200, "meters")
  27671. },
  27672. {
  27673. name: "Gigamacro",
  27674. height: math.unit(0.2, "earths")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(6, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/kenzie-lee/front.svg",
  27687. extra: 1525 / 1465,
  27688. bottom: 45 / 1570
  27689. }
  27690. },
  27691. side: {
  27692. height: math.unit(6, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Side",
  27695. image: {
  27696. source: "./media/characters/kenzie-lee/side.svg",
  27697. extra: 5505 / 5383,
  27698. bottom: 60 / 5573
  27699. }
  27700. },
  27701. paw: {
  27702. height: math.unit(0.57, "feet"),
  27703. name: "Paw",
  27704. image: {
  27705. source: "./media/characters/kenzie-lee/paw.svg"
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Normal",
  27712. height: math.unit(152, "feet"),
  27713. default: true
  27714. },
  27715. {
  27716. name: "Megamacro",
  27717. height: math.unit(7, "miles")
  27718. },
  27719. {
  27720. name: "Gigamacro",
  27721. height: math.unit(8000, "miles")
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27727. {
  27728. side: {
  27729. height: math.unit(6, "feet"),
  27730. weight: math.unit(150, "lb"),
  27731. name: "Side",
  27732. image: {
  27733. source: "./media/characters/withers/side.svg",
  27734. extra: 1830 / 1728,
  27735. bottom: 96 / 1927
  27736. }
  27737. },
  27738. front: {
  27739. height: math.unit(6, "feet"),
  27740. weight: math.unit(150, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/withers/front.svg",
  27744. extra: 1514 / 1438,
  27745. bottom: 118 / 1632
  27746. }
  27747. },
  27748. },
  27749. [
  27750. {
  27751. name: "Macro",
  27752. height: math.unit(168, "feet"),
  27753. default: true
  27754. },
  27755. {
  27756. name: "Megamacro",
  27757. height: math.unit(15, "miles")
  27758. }
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(6 + 7 / 12, "feet"),
  27766. weight: math.unit(250, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/nemoskii/front.svg",
  27770. extra: 2270 / 1734,
  27771. bottom: 86 / 2354
  27772. }
  27773. },
  27774. back: {
  27775. height: math.unit(6 + 7 / 12, "feet"),
  27776. weight: math.unit(250, "lb"),
  27777. name: "Back",
  27778. image: {
  27779. source: "./media/characters/nemoskii/back.svg",
  27780. extra: 1845 / 1788,
  27781. bottom: 10.5 / 1852
  27782. }
  27783. },
  27784. head: {
  27785. height: math.unit(1.31, "feet"),
  27786. name: "Head",
  27787. image: {
  27788. source: "./media/characters/nemoskii/head.svg"
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Micro",
  27795. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27796. },
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 7 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit((6 + 7 / 12) * 150, "feet")
  27805. },
  27806. {
  27807. name: "Macro+",
  27808. height: math.unit((6 + 7 / 12) * 500, "feet")
  27809. },
  27810. {
  27811. name: "Megamacro",
  27812. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(1, "mile"),
  27821. weight: math.unit(265261.9, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/shui/front.svg",
  27825. extra: 1633 / 1564,
  27826. bottom: 91.5 / 1726
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Macro",
  27833. height: math.unit(1, "mile"),
  27834. default: true
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(12 + 6 / 12, "feet"),
  27843. weight: math.unit(1342, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/arokh-takakura/front.svg",
  27847. extra: 1089 / 1043,
  27848. bottom: 77.4 / 1176.7
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(12 + 6 / 12, "feet"),
  27853. weight: math.unit(1342, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/arokh-takakura/back.svg",
  27857. extra: 1046 / 1019,
  27858. bottom: 102 / 1150
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Big",
  27865. height: math.unit(12 + 6 / 12, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(5 + 6 / 12, "feet"),
  27875. weight: math.unit(150, "lb"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/theo/front.svg",
  27879. extra: 1184 / 1131,
  27880. bottom: 7.4 / 1191
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Micro",
  27887. height: math.unit(5, "inches")
  27888. },
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(5 + 6 / 12, "feet"),
  27892. default: true
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(5 + 9 / 12, "feet"),
  27901. weight: math.unit(130, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/cecelia-swift/front.svg",
  27905. extra: 502 / 484,
  27906. bottom: 23 / 523
  27907. }
  27908. },
  27909. back: {
  27910. height: math.unit(5 + 9 / 12, "feet"),
  27911. weight: math.unit(130, "lb"),
  27912. name: "Back",
  27913. image: {
  27914. source: "./media/characters/cecelia-swift/back.svg",
  27915. extra: 499 / 485,
  27916. bottom: 12 / 511
  27917. }
  27918. },
  27919. head: {
  27920. height: math.unit(0.90, "feet"),
  27921. name: "Head",
  27922. image: {
  27923. source: "./media/characters/cecelia-swift/head.svg"
  27924. }
  27925. },
  27926. rump: {
  27927. height: math.unit(1.75, "feet"),
  27928. name: "Rump",
  27929. image: {
  27930. source: "./media/characters/cecelia-swift/rump.svg"
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(5 + 9 / 12, "feet"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Big",
  27942. height: math.unit(50, "feet")
  27943. },
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(100, "feet")
  27947. },
  27948. {
  27949. name: "Macro+",
  27950. height: math.unit(500, "feet")
  27951. },
  27952. {
  27953. name: "Macro++",
  27954. height: math.unit(1000, "feet")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(6, "feet"),
  27963. weight: math.unit(150, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/kaunan/front.svg",
  27967. extra: 2890 / 2523,
  27968. bottom: 49 / 2939
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Macro",
  27975. height: math.unit(150, "feet"),
  27976. default: true
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(175, "cm"),
  27985. weight: math.unit(60, "kg"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/fei/front.svg",
  27989. extra: 1873/1723,
  27990. bottom: 53/1926
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Mortal",
  27997. height: math.unit(175, "cm")
  27998. },
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(3500, "m"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Stroll",
  28006. height: math.unit(17.5, "km")
  28007. },
  28008. {
  28009. name: "Showoff",
  28010. height: math.unit(175, "km")
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(7, "feet"),
  28019. weight: math.unit(1000, "kg"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/edrax/front.svg",
  28023. extra: 2838 / 2550,
  28024. bottom: 130 / 2968
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Small",
  28031. height: math.unit(7, "feet")
  28032. },
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(1500, "meters")
  28036. },
  28037. {
  28038. name: "Mega",
  28039. height: math.unit(12000000, "km"),
  28040. default: true
  28041. },
  28042. {
  28043. name: "Megamacro",
  28044. height: math.unit(10600000, "lightyears")
  28045. },
  28046. {
  28047. name: "Hypermacro",
  28048. height: math.unit(256, "yottameters")
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28054. {
  28055. front: {
  28056. height: math.unit(10, "feet"),
  28057. weight: math.unit(750, "lb"),
  28058. name: "Front",
  28059. image: {
  28060. source: "./media/characters/clove/front.svg",
  28061. extra: 2031 / 1860,
  28062. bottom: 47.8 / 2080
  28063. }
  28064. },
  28065. back: {
  28066. height: math.unit(10, "feet"),
  28067. weight: math.unit(750, "lb"),
  28068. name: "Back",
  28069. image: {
  28070. source: "./media/characters/clove/back.svg",
  28071. extra: 2025 / 1859,
  28072. bottom: 46 / 2071
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Normal",
  28079. height: math.unit(10, "feet"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(4, "feet"),
  28089. weight: math.unit(50, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/alex-rabbit/front.svg",
  28093. extra: 507 / 458,
  28094. bottom: 18.5 / 527
  28095. }
  28096. },
  28097. back: {
  28098. height: math.unit(4, "feet"),
  28099. weight: math.unit(50, "lb"),
  28100. name: "Back",
  28101. image: {
  28102. source: "./media/characters/alex-rabbit/back.svg",
  28103. extra: 502 / 460,
  28104. bottom: 18.9 / 521
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(4, "feet"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(1 + 3 / 12, "feet"),
  28121. weight: math.unit(80, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/zander-rose/front.svg",
  28125. extra: 916 / 797,
  28126. bottom: 17 / 933
  28127. }
  28128. },
  28129. back: {
  28130. height: math.unit(1 + 3 / 12, "feet"),
  28131. weight: math.unit(80, "lb"),
  28132. name: "Back",
  28133. image: {
  28134. source: "./media/characters/zander-rose/back.svg",
  28135. extra: 903 / 779,
  28136. bottom: 31 / 934
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(1 + 3 / 12, "feet"),
  28144. default: true
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28150. {
  28151. anthro: {
  28152. height: math.unit(6, "feet"),
  28153. weight: math.unit(150, "lb"),
  28154. name: "Anthro",
  28155. image: {
  28156. source: "./media/characters/razz/anthro.svg",
  28157. extra: 1437 / 1343,
  28158. bottom: 48 / 1485
  28159. }
  28160. },
  28161. feral: {
  28162. height: math.unit(6, "feet"),
  28163. weight: math.unit(150, "lb"),
  28164. name: "Feral",
  28165. image: {
  28166. source: "./media/characters/razz/feral.svg",
  28167. extra: 2569 / 1385,
  28168. bottom: 95 / 2664
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(6, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(9 + 4 / 12, "feet"),
  28185. weight: math.unit(500, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/morrigan/front.svg",
  28189. extra: 2707 / 2579,
  28190. bottom: 156 / 2863
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(9 + 4 / 12, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(5, "stories"),
  28207. weight: math.unit(4000, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/jenene/front.svg",
  28211. extra: 1780 / 1710,
  28212. bottom: 57 / 1837
  28213. }
  28214. },
  28215. },
  28216. [
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(5, "stories"),
  28220. default: true
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28226. {
  28227. taurSfw: {
  28228. height: math.unit(10, "meters"),
  28229. weight: math.unit(17500, "kg"),
  28230. name: "Taur",
  28231. image: {
  28232. source: "./media/characters/faey/taur-sfw.svg",
  28233. extra: 1200 / 968,
  28234. bottom: 41 / 1241
  28235. }
  28236. },
  28237. chestmaw: {
  28238. height: math.unit(2.01, "meters"),
  28239. name: "Chestmaw",
  28240. image: {
  28241. source: "./media/characters/faey/chestmaw.svg"
  28242. }
  28243. },
  28244. foot: {
  28245. height: math.unit(2.43, "meters"),
  28246. name: "Foot",
  28247. image: {
  28248. source: "./media/characters/faey/foot.svg"
  28249. }
  28250. },
  28251. jaws: {
  28252. height: math.unit(1.66, "meters"),
  28253. name: "Jaws",
  28254. image: {
  28255. source: "./media/characters/faey/jaws.svg"
  28256. }
  28257. },
  28258. tongues: {
  28259. height: math.unit(2.01, "meters"),
  28260. name: "Tongues",
  28261. image: {
  28262. source: "./media/characters/faey/tongues.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Small",
  28269. height: math.unit(10, "meters"),
  28270. default: true
  28271. },
  28272. {
  28273. name: "Big",
  28274. height: math.unit(500000, "km")
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(7, "feet"),
  28283. weight: math.unit(275, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/roku/front.svg",
  28287. extra: 903 / 878,
  28288. bottom: 37 / 940
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(7, "feet"),
  28296. default: true
  28297. },
  28298. {
  28299. name: "Macro",
  28300. height: math.unit(500, "feet")
  28301. },
  28302. {
  28303. name: "Megamacro",
  28304. height: math.unit(200, "miles")
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(6 + 2 / 12, "feet"),
  28313. weight: math.unit(150, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/lira/front.svg",
  28317. extra: 1727 / 1605,
  28318. bottom: 26 / 1753
  28319. }
  28320. },
  28321. back: {
  28322. height: math.unit(6 + 2 / 12, "feet"),
  28323. weight: math.unit(150, "lb"),
  28324. name: "Back",
  28325. image: {
  28326. source: "./media/characters/lira/back.svg",
  28327. extra: 1713/1621,
  28328. bottom: 20/1733
  28329. }
  28330. },
  28331. hand: {
  28332. height: math.unit(0.75, "feet"),
  28333. name: "Hand",
  28334. image: {
  28335. source: "./media/characters/lira/hand.svg"
  28336. }
  28337. },
  28338. maw: {
  28339. height: math.unit(0.65, "feet"),
  28340. name: "Maw",
  28341. image: {
  28342. source: "./media/characters/lira/maw.svg"
  28343. }
  28344. },
  28345. pawDigi: {
  28346. height: math.unit(1.6, "feet"),
  28347. name: "Paw Digi",
  28348. image: {
  28349. source: "./media/characters/lira/paw-digi.svg"
  28350. }
  28351. },
  28352. pawPlanti: {
  28353. height: math.unit(1.4, "feet"),
  28354. name: "Paw Planti",
  28355. image: {
  28356. source: "./media/characters/lira/paw-planti.svg"
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(6 + 2 / 12, "feet"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(100, "feet")
  28369. },
  28370. {
  28371. name: "Macro²",
  28372. height: math.unit(1600, "feet")
  28373. },
  28374. {
  28375. name: "Planetary",
  28376. height: math.unit(20, "earths")
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(6, "feet"),
  28385. weight: math.unit(150, "lb"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/hadjet/front.svg",
  28389. extra: 1480 / 1346,
  28390. bottom: 26 / 1506
  28391. }
  28392. },
  28393. frontNsfw: {
  28394. height: math.unit(6, "feet"),
  28395. weight: math.unit(150, "lb"),
  28396. name: "Front (NSFW)",
  28397. image: {
  28398. source: "./media/characters/hadjet/front-nsfw.svg",
  28399. extra: 1440 / 1358,
  28400. bottom: 52 / 1492
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Macro",
  28407. height: math.unit(10, "stories"),
  28408. default: true
  28409. },
  28410. {
  28411. name: "Megamacro",
  28412. height: math.unit(1.5, "miles")
  28413. },
  28414. {
  28415. name: "Megamacro+",
  28416. height: math.unit(5, "miles")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28422. {
  28423. side: {
  28424. height: math.unit(106, "feet"),
  28425. weight: math.unit(500, "tonnes"),
  28426. name: "Side",
  28427. image: {
  28428. source: "./media/characters/kodran/side.svg",
  28429. extra: 553 / 480,
  28430. bottom: 33 / 586
  28431. }
  28432. },
  28433. front: {
  28434. height: math.unit(132, "feet"),
  28435. weight: math.unit(500, "tonnes"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/kodran/front.svg",
  28439. extra: 667 / 643,
  28440. bottom: 42 / 709
  28441. }
  28442. },
  28443. flying: {
  28444. height: math.unit(350, "feet"),
  28445. weight: math.unit(500, "tonnes"),
  28446. name: "Flying",
  28447. image: {
  28448. source: "./media/characters/kodran/flying.svg"
  28449. }
  28450. },
  28451. foot: {
  28452. height: math.unit(33, "feet"),
  28453. name: "Foot",
  28454. image: {
  28455. source: "./media/characters/kodran/foot.svg"
  28456. }
  28457. },
  28458. footFront: {
  28459. height: math.unit(19, "feet"),
  28460. name: "Foot (Front)",
  28461. image: {
  28462. source: "./media/characters/kodran/foot-front.svg",
  28463. extra: 261 / 261,
  28464. bottom: 91 / 352
  28465. }
  28466. },
  28467. headFront: {
  28468. height: math.unit(53, "feet"),
  28469. name: "Head (Front)",
  28470. image: {
  28471. source: "./media/characters/kodran/head-front.svg"
  28472. }
  28473. },
  28474. headSide: {
  28475. height: math.unit(65, "feet"),
  28476. name: "Head (Side)",
  28477. image: {
  28478. source: "./media/characters/kodran/head-side.svg"
  28479. }
  28480. },
  28481. throat: {
  28482. height: math.unit(79, "feet"),
  28483. name: "Throat",
  28484. image: {
  28485. source: "./media/characters/kodran/throat.svg"
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Large",
  28492. height: math.unit(106, "feet"),
  28493. default: true
  28494. },
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28499. {
  28500. side: {
  28501. height: math.unit(11, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Side",
  28504. image: {
  28505. source: "./media/characters/pyxaron/side.svg",
  28506. extra: 305 / 195,
  28507. bottom: 17 / 322
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(11, "feet"),
  28515. default: true
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(6, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/meep/front.svg",
  28528. extra: 88 / 80,
  28529. bottom: 6 / 94
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Fun Sized",
  28536. height: math.unit(2, "inches"),
  28537. default: true
  28538. },
  28539. {
  28540. name: "Friend Sized",
  28541. height: math.unit(8, "inches")
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(15, "feet"),
  28550. weight: math.unit(2500, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/holly-rabbit/front.svg",
  28554. extra: 1433 / 1233,
  28555. bottom: 125 / 1558
  28556. }
  28557. },
  28558. dick: {
  28559. height: math.unit(4.6, "feet"),
  28560. name: "Dick",
  28561. image: {
  28562. source: "./media/characters/holly-rabbit/dick.svg"
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(15, "feet"),
  28570. default: true
  28571. },
  28572. {
  28573. name: "Macro",
  28574. height: math.unit(250, "feet")
  28575. },
  28576. {
  28577. name: "Macro+",
  28578. height: math.unit(2500, "feet")
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(3.02, "meters"),
  28587. weight: math.unit(500, "kg"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/drena/front.svg",
  28591. extra: 282 / 243,
  28592. bottom: 8 / 290
  28593. }
  28594. },
  28595. side: {
  28596. height: math.unit(3.02, "meters"),
  28597. weight: math.unit(500, "kg"),
  28598. name: "Side",
  28599. image: {
  28600. source: "./media/characters/drena/side.svg",
  28601. extra: 280 / 245,
  28602. bottom: 10 / 290
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(3.02, "meters"),
  28607. weight: math.unit(500, "kg"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/drena/back.svg",
  28611. extra: 278 / 243,
  28612. bottom: 2 / 280
  28613. }
  28614. },
  28615. foot: {
  28616. height: math.unit(0.75, "meters"),
  28617. name: "Foot",
  28618. image: {
  28619. source: "./media/characters/drena/foot.svg"
  28620. }
  28621. },
  28622. maw: {
  28623. height: math.unit(0.82, "meters"),
  28624. name: "Maw",
  28625. image: {
  28626. source: "./media/characters/drena/maw.svg"
  28627. }
  28628. },
  28629. rump: {
  28630. height: math.unit(0.93, "meters"),
  28631. name: "Rump",
  28632. image: {
  28633. source: "./media/characters/drena/rump.svg"
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(3.02, "meters"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(6 + 4 / 12, "feet"),
  28650. weight: math.unit(250, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/remmyzilla/front.svg",
  28654. extra: 4033 / 3588,
  28655. bottom: 123 / 4156
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(6 + 4 / 12, "feet"),
  28660. weight: math.unit(250, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/remmyzilla/back.svg",
  28664. extra: 2687 / 2555,
  28665. bottom: 48 / 2735
  28666. }
  28667. },
  28668. paw: {
  28669. height: math.unit(1.73, "feet"),
  28670. name: "Paw",
  28671. image: {
  28672. source: "./media/characters/remmyzilla/paw.svg"
  28673. }
  28674. },
  28675. maw: {
  28676. height: math.unit(1.73, "feet"),
  28677. name: "Maw",
  28678. image: {
  28679. source: "./media/characters/remmyzilla/maw.svg"
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(6 + 4 / 12, "feet")
  28687. },
  28688. {
  28689. name: "Minimacro",
  28690. height: math.unit(12 + 8 / 12, "feet")
  28691. },
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(640, "feet"),
  28695. default: true
  28696. },
  28697. {
  28698. name: "Megamacro",
  28699. height: math.unit(6400, "feet")
  28700. },
  28701. {
  28702. name: "Gigamacro",
  28703. height: math.unit(64000, "miles")
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(2.5, "meters"),
  28712. weight: math.unit(300, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/lawrence/front.svg",
  28716. extra: 357 / 335,
  28717. bottom: 30 / 387
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(2.5, "meters"),
  28722. weight: math.unit(300, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/lawrence/back.svg",
  28726. extra: 357 / 338,
  28727. bottom: 16 / 373
  28728. }
  28729. },
  28730. head: {
  28731. height: math.unit(0.9, "meter"),
  28732. name: "Head",
  28733. image: {
  28734. source: "./media/characters/lawrence/head.svg"
  28735. }
  28736. },
  28737. maw: {
  28738. height: math.unit(0.7, "meter"),
  28739. name: "Maw",
  28740. image: {
  28741. source: "./media/characters/lawrence/maw.svg"
  28742. }
  28743. },
  28744. footBottom: {
  28745. height: math.unit(0.5, "meter"),
  28746. name: "Foot (Bottom)",
  28747. image: {
  28748. source: "./media/characters/lawrence/foot-bottom.svg"
  28749. }
  28750. },
  28751. footTop: {
  28752. height: math.unit(0.5, "meter"),
  28753. name: "Foot (Top)",
  28754. image: {
  28755. source: "./media/characters/lawrence/foot-top.svg"
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(2.5, "meters"),
  28763. default: true
  28764. },
  28765. {
  28766. name: "Macro",
  28767. height: math.unit(95, "meters")
  28768. },
  28769. {
  28770. name: "Megamacro",
  28771. height: math.unit(150, "km")
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28777. {
  28778. front: {
  28779. height: math.unit(4.2, "meters"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/sydney/front.svg",
  28783. extra: 1323 / 1277,
  28784. bottom: 111 / 1434
  28785. }
  28786. },
  28787. },
  28788. [
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(4.2, "meters"),
  28792. default: true
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28798. {
  28799. back: {
  28800. height: math.unit(201, "feet"),
  28801. name: "Back",
  28802. image: {
  28803. source: "./media/characters/jessica/back.svg",
  28804. extra: 273 / 259,
  28805. bottom: 7 / 280
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(201, "feet"),
  28813. default: true
  28814. },
  28815. {
  28816. name: "Megamacro",
  28817. height: math.unit(8, "miles")
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28823. {
  28824. side: {
  28825. height: math.unit(320, "cm"),
  28826. name: "Side",
  28827. image: {
  28828. source: "./media/characters/victoria/side.svg",
  28829. extra: 778 / 346,
  28830. bottom: 56 / 834
  28831. }
  28832. },
  28833. maw: {
  28834. height: math.unit(5.9, "feet"),
  28835. name: "Maw",
  28836. image: {
  28837. source: "./media/characters/victoria/maw.svg"
  28838. }
  28839. },
  28840. },
  28841. [
  28842. {
  28843. name: "Normal",
  28844. height: math.unit(320, "cm"),
  28845. default: true
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28851. {
  28852. front: {
  28853. height: math.unit(5 + 6 / 12, "feet"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/cat/front.svg",
  28857. extra: 1449/1295,
  28858. bottom: 34/1483
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(5 + 6 / 12, "feet"),
  28863. name: "Back",
  28864. image: {
  28865. source: "./media/characters/cat/back.svg",
  28866. extra: 1466/1301,
  28867. bottom: 19/1485
  28868. }
  28869. },
  28870. taur: {
  28871. height: math.unit(7, "feet"),
  28872. name: "Taur",
  28873. image: {
  28874. source: "./media/characters/cat/taur.svg",
  28875. extra: 1389/1233,
  28876. bottom: 83/1472
  28877. }
  28878. },
  28879. lucarioFront: {
  28880. height: math.unit(4, "feet"),
  28881. name: "Lucario (Front)",
  28882. image: {
  28883. source: "./media/characters/cat/lucario-front.svg",
  28884. extra: 1149/1019,
  28885. bottom: 84/1233
  28886. }
  28887. },
  28888. lucarioBack: {
  28889. height: math.unit(4, "feet"),
  28890. name: "Lucario (Back)",
  28891. image: {
  28892. source: "./media/characters/cat/lucario-back.svg",
  28893. extra: 1190/1059,
  28894. bottom: 33/1223
  28895. }
  28896. },
  28897. megaLucario: {
  28898. height: math.unit(4, "feet"),
  28899. name: "Mega Lucario",
  28900. image: {
  28901. source: "./media/characters/cat/mega-lucario.svg",
  28902. extra: 1515 / 1319,
  28903. bottom: 63 / 1578
  28904. }
  28905. },
  28906. nickit: {
  28907. height: math.unit(2, "feet"),
  28908. name: "Nickit",
  28909. image: {
  28910. source: "./media/characters/cat/nickit.svg",
  28911. extra: 1980 / 1585,
  28912. bottom: 102 / 2082
  28913. }
  28914. },
  28915. lopunnyFront: {
  28916. height: math.unit(5, "feet"),
  28917. name: "Lopunny (Front)",
  28918. image: {
  28919. source: "./media/characters/cat/lopunny-front.svg",
  28920. extra: 1782 / 1469,
  28921. bottom: 38 / 1820
  28922. }
  28923. },
  28924. lopunnyBack: {
  28925. height: math.unit(5, "feet"),
  28926. name: "Lopunny (Back)",
  28927. image: {
  28928. source: "./media/characters/cat/lopunny-back.svg",
  28929. extra: 1660 / 1490,
  28930. bottom: 25 / 1685
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Really small",
  28937. height: math.unit(1, "nm")
  28938. },
  28939. {
  28940. name: "Micro",
  28941. height: math.unit(5, "inches")
  28942. },
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(5 + 6 / 12, "feet"),
  28946. default: true
  28947. },
  28948. {
  28949. name: "Macro",
  28950. height: math.unit(50, "feet")
  28951. },
  28952. {
  28953. name: "Macro+",
  28954. height: math.unit(150, "feet")
  28955. },
  28956. {
  28957. name: "Megamacro",
  28958. height: math.unit(100, "miles")
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28964. {
  28965. front: {
  28966. height: math.unit(63.4, "meters"),
  28967. weight: math.unit(3.28349e+6, "kilograms"),
  28968. name: "Front",
  28969. image: {
  28970. source: "./media/characters/kirina-violet/front.svg",
  28971. extra: 2812 / 2725,
  28972. bottom: 0 / 2812
  28973. }
  28974. },
  28975. back: {
  28976. height: math.unit(63.4, "meters"),
  28977. weight: math.unit(3.28349e+6, "kilograms"),
  28978. name: "Back",
  28979. image: {
  28980. source: "./media/characters/kirina-violet/back.svg",
  28981. extra: 2812 / 2725,
  28982. bottom: 0 / 2812
  28983. }
  28984. },
  28985. mouth: {
  28986. height: math.unit(4.35, "meters"),
  28987. name: "Mouth",
  28988. image: {
  28989. source: "./media/characters/kirina-violet/mouth.svg"
  28990. }
  28991. },
  28992. paw: {
  28993. height: math.unit(5.6, "meters"),
  28994. name: "Paw",
  28995. image: {
  28996. source: "./media/characters/kirina-violet/paw.svg"
  28997. }
  28998. },
  28999. tail: {
  29000. height: math.unit(18, "meters"),
  29001. name: "Tail",
  29002. image: {
  29003. source: "./media/characters/kirina-violet/tail.svg"
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Macro",
  29010. height: math.unit(63.4, "meters"),
  29011. default: true
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(75, "feet"),
  29020. name: "Front",
  29021. image: {
  29022. source: "./media/characters/cat-gigachu/front.svg",
  29023. extra: 1239/1027,
  29024. bottom: 32/1271
  29025. }
  29026. },
  29027. back: {
  29028. height: math.unit(75, "feet"),
  29029. name: "Back",
  29030. image: {
  29031. source: "./media/characters/cat-gigachu/back.svg",
  29032. extra: 1229/1030,
  29033. bottom: 9/1238
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Dynamax",
  29040. height: math.unit(75, "feet"),
  29041. default: true
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(6, "feet"),
  29050. weight: math.unit(150, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/sfaiyan/front.svg",
  29054. extra: 999 / 978,
  29055. bottom: 5 / 1004
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Normal",
  29062. height: math.unit(1.82, "meters")
  29063. },
  29064. {
  29065. name: "Giant",
  29066. height: math.unit(2.27, "km"),
  29067. default: true
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(179, "cm"),
  29076. weight: math.unit(100, "kg"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/raunehkeli/front.svg",
  29080. extra: 1934 / 1926,
  29081. bottom: 0 / 1934
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(179, "cm")
  29089. },
  29090. {
  29091. name: "Maximum",
  29092. height: math.unit(575, "meters"),
  29093. default: true
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29099. {
  29100. front: {
  29101. height: math.unit(6, "feet"),
  29102. weight: math.unit(150, "lb"),
  29103. name: "Front",
  29104. image: {
  29105. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29106. extra: 2625 / 2518,
  29107. bottom: 60 / 2685
  29108. }
  29109. },
  29110. },
  29111. [
  29112. {
  29113. name: "Normal",
  29114. height: math.unit(6 + 2 / 12, "feet")
  29115. },
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(1180, "feet"),
  29119. default: true
  29120. },
  29121. ]
  29122. ))
  29123. characterMakers.push(() => makeCharacter(
  29124. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29125. {
  29126. front: {
  29127. height: math.unit(5 + 6 / 12, "feet"),
  29128. weight: math.unit(108, "lb"),
  29129. name: "Front",
  29130. image: {
  29131. source: "./media/characters/lilith-zott/front.svg",
  29132. extra: 2510 / 2238,
  29133. bottom: 100 / 2610
  29134. }
  29135. },
  29136. frontDressed: {
  29137. height: math.unit(5 + 6 / 12, "feet"),
  29138. weight: math.unit(108, "lb"),
  29139. name: "Front (Dressed)",
  29140. image: {
  29141. source: "./media/characters/lilith-zott/front-dressed.svg",
  29142. extra: 2510 / 2238,
  29143. bottom: 100 / 2610
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(5 + 6 / 12, "feet")
  29151. },
  29152. {
  29153. name: "Macro",
  29154. height: math.unit(1030, "feet"),
  29155. default: true
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(6, "feet"),
  29164. weight: math.unit(150, "lb"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29168. extra: 2567 / 2435,
  29169. bottom: 39 / 2606
  29170. }
  29171. },
  29172. frontSuper: {
  29173. height: math.unit(6, "feet"),
  29174. name: "Front (Super)",
  29175. image: {
  29176. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29177. extra: 2567 / 2435,
  29178. bottom: 39 / 2606
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(5 + 10 / 12, "feet")
  29186. },
  29187. {
  29188. name: "Macro",
  29189. height: math.unit(1100, "feet"),
  29190. default: true
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29196. {
  29197. front: {
  29198. height: math.unit(100, "miles"),
  29199. name: "Front",
  29200. image: {
  29201. source: "./media/characters/sona/front.svg",
  29202. extra: 2433 / 2201,
  29203. bottom: 53 / 2486
  29204. }
  29205. },
  29206. foot: {
  29207. height: math.unit(16.1, "miles"),
  29208. name: "Foot",
  29209. image: {
  29210. source: "./media/characters/sona/foot.svg"
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Macro",
  29217. height: math.unit(100, "miles"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(6, "feet"),
  29227. weight: math.unit(150, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/bailey/front.svg",
  29231. extra: 1778 / 1724,
  29232. bottom: 30 / 1808
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Micro",
  29239. height: math.unit(4, "inches")
  29240. },
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(5 + 5 / 12, "feet"),
  29244. default: true
  29245. },
  29246. {
  29247. name: "Macro",
  29248. height: math.unit(250, "feet")
  29249. },
  29250. {
  29251. name: "Megamacro",
  29252. height: math.unit(100, "miles")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(5 + 2 / 12, "feet"),
  29261. weight: math.unit(120, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/snaps/front.svg",
  29265. extra: 2370 / 2177,
  29266. bottom: 48 / 2418
  29267. }
  29268. },
  29269. back: {
  29270. height: math.unit(5 + 2 / 12, "feet"),
  29271. weight: math.unit(120, "lb"),
  29272. name: "Back",
  29273. image: {
  29274. source: "./media/characters/snaps/back.svg",
  29275. extra: 2408 / 2258,
  29276. bottom: 15 / 2423
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Micro",
  29283. height: math.unit(9, "inches")
  29284. },
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(5 + 2 / 12, "feet"),
  29288. default: true
  29289. },
  29290. {
  29291. name: "Mini Macro",
  29292. height: math.unit(10, "feet")
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(1.8, "meters"),
  29301. weight: math.unit(85, "kg"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/azteck/front.svg",
  29305. extra: 2815 / 2625,
  29306. bottom: 89 / 2904
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(1.8, "meters"),
  29311. weight: math.unit(85, "kg"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/azteck/back.svg",
  29315. extra: 2856 / 2648,
  29316. bottom: 85 / 2941
  29317. }
  29318. },
  29319. frontDressed: {
  29320. height: math.unit(1.8, "meters"),
  29321. weight: math.unit(85, "kg"),
  29322. name: "Front (Dressed)",
  29323. image: {
  29324. source: "./media/characters/azteck/front-dressed.svg",
  29325. extra: 2147 / 2003,
  29326. bottom: 68 / 2215
  29327. }
  29328. },
  29329. head: {
  29330. height: math.unit(0.47, "meters"),
  29331. weight: math.unit(85, "kg"),
  29332. name: "Head",
  29333. image: {
  29334. source: "./media/characters/azteck/head.svg"
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Bite sized",
  29341. height: math.unit(16, "cm")
  29342. },
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(1.8, "meters"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(6, "feet"),
  29355. weight: math.unit(150, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/pidge/front.svg",
  29359. extra: 620 / 588,
  29360. bottom: 9 / 629
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(6, "feet"),
  29365. weight: math.unit(150, "lb"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/pidge/back.svg",
  29369. extra: 620 / 588,
  29370. bottom: 9 / 629
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Macro",
  29377. height: math.unit(1, "mile"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(6, "feet"),
  29387. weight: math.unit(150, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/en/front.svg",
  29391. extra: 1697 / 1563,
  29392. bottom: 103 / 1800
  29393. }
  29394. },
  29395. back: {
  29396. height: math.unit(6, "feet"),
  29397. weight: math.unit(150, "lb"),
  29398. name: "Back",
  29399. image: {
  29400. source: "./media/characters/en/back.svg",
  29401. extra: 1700 / 1570,
  29402. bottom: 51 / 1751
  29403. }
  29404. },
  29405. frontDressed: {
  29406. height: math.unit(6, "feet"),
  29407. weight: math.unit(150, "lb"),
  29408. name: "Front (Dressed)",
  29409. image: {
  29410. source: "./media/characters/en/front-dressed.svg",
  29411. extra: 1697 / 1563,
  29412. bottom: 103 / 1800
  29413. }
  29414. },
  29415. backDressed: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(150, "lb"),
  29418. name: "Back (Dressed)",
  29419. image: {
  29420. source: "./media/characters/en/back-dressed.svg",
  29421. extra: 1700 / 1570,
  29422. bottom: 51 / 1751
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Macro",
  29429. height: math.unit(210, "feet"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(6, "feet"),
  29439. weight: math.unit(150, "lb"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/haze-orris/front.svg",
  29443. extra: 3975 / 3525,
  29444. bottom: 137 / 4112
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Micro",
  29451. height: math.unit(150, "mm"),
  29452. default: true
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29458. {
  29459. front: {
  29460. height: math.unit(6, "feet"),
  29461. weight: math.unit(150, "lb"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/casselene-yaro/front.svg",
  29465. extra: 4721 / 4541,
  29466. bottom: 82 / 4803
  29467. }
  29468. },
  29469. back: {
  29470. height: math.unit(6, "feet"),
  29471. weight: math.unit(150, "lb"),
  29472. name: "Back",
  29473. image: {
  29474. source: "./media/characters/casselene-yaro/back.svg",
  29475. extra: 4569 / 4377,
  29476. bottom: 69 / 4638
  29477. }
  29478. },
  29479. frontDressed: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(150, "lb"),
  29482. name: "Front-dressed",
  29483. image: {
  29484. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29485. extra: 4721 / 4541,
  29486. bottom: 82 / 4803
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Macro",
  29493. height: math.unit(190, "feet"),
  29494. default: true
  29495. },
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(6, "feet"),
  29503. weight: math.unit(150, "lb"),
  29504. name: "Front",
  29505. image: {
  29506. source: "./media/characters/myra-rue-delore/front.svg",
  29507. extra: 1340 / 1308,
  29508. bottom: 67 / 1407
  29509. }
  29510. },
  29511. back: {
  29512. height: math.unit(6, "feet"),
  29513. weight: math.unit(150, "lb"),
  29514. name: "Back",
  29515. image: {
  29516. source: "./media/characters/myra-rue-delore/back.svg",
  29517. extra: 1341 / 1310,
  29518. bottom: 40 / 1381
  29519. }
  29520. },
  29521. frontDressed: {
  29522. height: math.unit(6, "feet"),
  29523. weight: math.unit(150, "lb"),
  29524. name: "Front (Dressed)",
  29525. image: {
  29526. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29527. extra: 1340 / 1308,
  29528. bottom: 67 / 1407
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Macro",
  29535. height: math.unit(150, "feet"),
  29536. default: true
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(10, "feet"),
  29545. weight: math.unit(15015, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/fem!plat/front.svg",
  29549. extra: 2799 / 2604,
  29550. bottom: 149 / 2948
  29551. }
  29552. },
  29553. },
  29554. [
  29555. {
  29556. name: "Normal",
  29557. height: math.unit(10, "feet"),
  29558. default: true
  29559. },
  29560. {
  29561. name: "Macro",
  29562. height: math.unit(100, "feet")
  29563. },
  29564. {
  29565. name: "Megamacro",
  29566. height: math.unit(1000, "feet")
  29567. },
  29568. ]
  29569. ))
  29570. characterMakers.push(() => makeCharacter(
  29571. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29572. {
  29573. front: {
  29574. height: math.unit(15 + 5 / 12, "feet"),
  29575. weight: math.unit(4600, "lb"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/neapolitan-ananassa/front.svg",
  29579. extra: 2903 / 2736,
  29580. bottom: 0 / 2903
  29581. }
  29582. },
  29583. side: {
  29584. height: math.unit(15 + 5 / 12, "feet"),
  29585. weight: math.unit(4600, "lb"),
  29586. name: "Side",
  29587. image: {
  29588. source: "./media/characters/neapolitan-ananassa/side.svg",
  29589. extra: 2925 / 2719,
  29590. bottom: 0 / 2925
  29591. }
  29592. },
  29593. back: {
  29594. height: math.unit(15 + 5 / 12, "feet"),
  29595. weight: math.unit(4600, "lb"),
  29596. name: "Back",
  29597. image: {
  29598. source: "./media/characters/neapolitan-ananassa/back.svg",
  29599. extra: 2903 / 2736,
  29600. bottom: 0 / 2903
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(15 + 5 / 12, "feet"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Post-Millenium",
  29612. height: math.unit(35 + 5 / 12, "feet")
  29613. },
  29614. {
  29615. name: "Post-Era",
  29616. height: math.unit(450 + 5 / 12, "feet")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(300, "meters"),
  29625. weight: math.unit(125000, "tonnes"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/pazuzu/front.svg",
  29629. extra: 877 / 794,
  29630. bottom: 47 / 924
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(300, "meters"),
  29638. default: true
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29644. {
  29645. side: {
  29646. height: math.unit(10 + 7 / 12, "feet"),
  29647. weight: math.unit(2.5, "tons"),
  29648. name: "Side",
  29649. image: {
  29650. source: "./media/characters/aasha/side.svg",
  29651. extra: 1345 / 1245,
  29652. bottom: 111 / 1456
  29653. }
  29654. },
  29655. back: {
  29656. height: math.unit(10 + 7 / 12, "feet"),
  29657. weight: math.unit(2.5, "tons"),
  29658. name: "Back",
  29659. image: {
  29660. source: "./media/characters/aasha/back.svg",
  29661. extra: 1133 / 1057,
  29662. bottom: 257 / 1390
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(10 + 7 / 12, "feet"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(6 + 3 / 12, "feet"),
  29679. name: "Front",
  29680. image: {
  29681. source: "./media/characters/nevan/front.svg",
  29682. extra: 704 / 704,
  29683. bottom: 28 / 732
  29684. }
  29685. },
  29686. back: {
  29687. height: math.unit(6 + 3 / 12, "feet"),
  29688. name: "Back",
  29689. image: {
  29690. source: "./media/characters/nevan/back.svg",
  29691. extra: 714 / 714,
  29692. bottom: 21 / 735
  29693. }
  29694. },
  29695. frontFlaccid: {
  29696. height: math.unit(6 + 3 / 12, "feet"),
  29697. name: "Front (Flaccid)",
  29698. image: {
  29699. source: "./media/characters/nevan/front-flaccid.svg",
  29700. extra: 704 / 704,
  29701. bottom: 28 / 732
  29702. }
  29703. },
  29704. frontErect: {
  29705. height: math.unit(6 + 3 / 12, "feet"),
  29706. name: "Front (Erect)",
  29707. image: {
  29708. source: "./media/characters/nevan/front-erect.svg",
  29709. extra: 704 / 704,
  29710. bottom: 28 / 732
  29711. }
  29712. },
  29713. backFlaccid: {
  29714. height: math.unit(6 + 3 / 12, "feet"),
  29715. name: "Back (Flaccid)",
  29716. image: {
  29717. source: "./media/characters/nevan/back-flaccid.svg",
  29718. extra: 714 / 714,
  29719. bottom: 21 / 735
  29720. }
  29721. },
  29722. },
  29723. [
  29724. {
  29725. name: "Normal",
  29726. height: math.unit(6 + 3 / 12, "feet"),
  29727. default: true
  29728. },
  29729. ]
  29730. ))
  29731. characterMakers.push(() => makeCharacter(
  29732. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29733. {
  29734. front: {
  29735. height: math.unit(4, "feet"),
  29736. name: "Front",
  29737. image: {
  29738. source: "./media/characters/arhan/front.svg",
  29739. extra: 3368 / 3133,
  29740. bottom: 0 / 3368
  29741. }
  29742. },
  29743. side: {
  29744. height: math.unit(4, "feet"),
  29745. name: "Side",
  29746. image: {
  29747. source: "./media/characters/arhan/side.svg",
  29748. extra: 3347 / 3105,
  29749. bottom: 0 / 3347
  29750. }
  29751. },
  29752. tongue: {
  29753. height: math.unit(1.42, "feet"),
  29754. name: "Tongue",
  29755. image: {
  29756. source: "./media/characters/arhan/tongue.svg"
  29757. }
  29758. },
  29759. head: {
  29760. height: math.unit(0.85, "feet"),
  29761. name: "Head",
  29762. image: {
  29763. source: "./media/characters/arhan/head.svg"
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(4, "feet"),
  29771. default: true
  29772. },
  29773. ]
  29774. ))
  29775. characterMakers.push(() => makeCharacter(
  29776. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29777. {
  29778. front: {
  29779. height: math.unit(5 + 7.5 / 12, "feet"),
  29780. weight: math.unit(120, "lb"),
  29781. name: "Front",
  29782. image: {
  29783. source: "./media/characters/digi-duncan/front.svg",
  29784. extra: 330 / 326,
  29785. bottom: 16 / 346
  29786. }
  29787. },
  29788. side: {
  29789. height: math.unit(5 + 7.5 / 12, "feet"),
  29790. weight: math.unit(120, "lb"),
  29791. name: "Side",
  29792. image: {
  29793. source: "./media/characters/digi-duncan/side.svg",
  29794. extra: 341 / 337,
  29795. bottom: 1 / 342
  29796. }
  29797. },
  29798. back: {
  29799. height: math.unit(5 + 7.5 / 12, "feet"),
  29800. weight: math.unit(120, "lb"),
  29801. name: "Back",
  29802. image: {
  29803. source: "./media/characters/digi-duncan/back.svg",
  29804. extra: 330 / 326,
  29805. bottom: 12 / 342
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Speck",
  29812. height: math.unit(0.25, "mm")
  29813. },
  29814. {
  29815. name: "Micro",
  29816. height: math.unit(5, "mm")
  29817. },
  29818. {
  29819. name: "Tiny",
  29820. height: math.unit(0.5, "inches"),
  29821. default: true
  29822. },
  29823. {
  29824. name: "Human",
  29825. height: math.unit(5 + 7.5 / 12, "feet")
  29826. },
  29827. {
  29828. name: "Minigiant",
  29829. height: math.unit(8 + 5.25, "feet")
  29830. },
  29831. {
  29832. name: "Giant",
  29833. height: math.unit(2000, "feet")
  29834. },
  29835. {
  29836. name: "Mega",
  29837. height: math.unit(371.1, "miles")
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(2, "meters"),
  29846. weight: math.unit(350, "kg"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29850. extra: 898 / 838,
  29851. bottom: 9 / 907
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Micro",
  29858. height: math.unit(8, "meters")
  29859. },
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(50, "meters"),
  29863. default: true
  29864. },
  29865. {
  29866. name: "Macro",
  29867. height: math.unit(500, "meters")
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29873. {
  29874. front: {
  29875. height: math.unit(6 + 6 / 12, "feet"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/khardesh/front.svg",
  29879. extra: 888 / 797,
  29880. bottom: 25 / 913
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(6 + 6 / 12, "feet"),
  29888. default: true
  29889. },
  29890. {
  29891. name: "Normal+",
  29892. height: math.unit(4, "meters")
  29893. },
  29894. {
  29895. name: "Macro",
  29896. height: math.unit(50, "meters")
  29897. },
  29898. {
  29899. name: "Macro+",
  29900. height: math.unit(100, "meters")
  29901. },
  29902. {
  29903. name: "Megamacro",
  29904. height: math.unit(20, "km")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(6, "feet"),
  29913. weight: math.unit(150, "lb"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/kosho/front.svg",
  29917. extra: 1847 / 1847,
  29918. bottom: 86 / 1933
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Second-stage micro",
  29925. height: math.unit(0.5, "inches")
  29926. },
  29927. {
  29928. name: "First-stage micro",
  29929. height: math.unit(6, "inches")
  29930. },
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(6, "feet"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "First-stage macro",
  29938. height: math.unit(72, "feet")
  29939. },
  29940. {
  29941. name: "Second-stage macro",
  29942. height: math.unit(864, "feet")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29948. {
  29949. normal: {
  29950. height: math.unit(4 + 6 / 12, "feet"),
  29951. name: "Normal",
  29952. image: {
  29953. source: "./media/characters/hydra/normal.svg",
  29954. extra: 2833 / 2634,
  29955. bottom: 68 / 2901
  29956. }
  29957. },
  29958. smol: {
  29959. height: math.unit(0.705, "inches"),
  29960. name: "Smol",
  29961. image: {
  29962. source: "./media/characters/hydra/smol.svg",
  29963. extra: 2715 / 2540,
  29964. bottom: 0 / 2715
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(4 + 6 / 12, "feet"),
  29972. default: true
  29973. }
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29978. {
  29979. front: {
  29980. height: math.unit(0.6, "cm"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/daz/front.svg",
  29984. extra: 1682 / 1164,
  29985. bottom: 42 / 1724
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(0.6, "cm"),
  29993. default: true
  29994. },
  29995. ]
  29996. ))
  29997. characterMakers.push(() => makeCharacter(
  29998. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29999. {
  30000. front: {
  30001. height: math.unit(6, "feet"),
  30002. weight: math.unit(235, "lb"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/theo-pangolin/front.svg",
  30006. extra: 1996 / 1969,
  30007. bottom: 115 / 2111
  30008. }
  30009. },
  30010. back: {
  30011. height: math.unit(6, "feet"),
  30012. weight: math.unit(235, "lb"),
  30013. name: "Back",
  30014. image: {
  30015. source: "./media/characters/theo-pangolin/back.svg",
  30016. extra: 1979 / 1979,
  30017. bottom: 40 / 2019
  30018. }
  30019. },
  30020. feral: {
  30021. height: math.unit(2, "feet"),
  30022. weight: math.unit(30, "lb"),
  30023. name: "Feral",
  30024. image: {
  30025. source: "./media/characters/theo-pangolin/feral.svg",
  30026. extra: 803 / 791,
  30027. bottom: 181 / 984
  30028. }
  30029. },
  30030. footFive: {
  30031. height: math.unit(1.43, "feet"),
  30032. name: "Foot (Five Toes)",
  30033. image: {
  30034. source: "./media/characters/theo-pangolin/foot-five.svg"
  30035. }
  30036. },
  30037. footFour: {
  30038. height: math.unit(1.43, "feet"),
  30039. name: "Foot (Four Toes)",
  30040. image: {
  30041. source: "./media/characters/theo-pangolin/foot-four.svg"
  30042. }
  30043. },
  30044. handFour: {
  30045. height: math.unit(0.81, "feet"),
  30046. name: "Hand (Four Fingers)",
  30047. image: {
  30048. source: "./media/characters/theo-pangolin/hand-four.svg"
  30049. }
  30050. },
  30051. handThree: {
  30052. height: math.unit(0.81, "feet"),
  30053. name: "Hand (Three Fingers)",
  30054. image: {
  30055. source: "./media/characters/theo-pangolin/hand-three.svg"
  30056. }
  30057. },
  30058. headFront: {
  30059. height: math.unit(1.37, "feet"),
  30060. name: "Head (Front)",
  30061. image: {
  30062. source: "./media/characters/theo-pangolin/head-front.svg"
  30063. }
  30064. },
  30065. headSide: {
  30066. height: math.unit(1.43, "feet"),
  30067. name: "Head (Side)",
  30068. image: {
  30069. source: "./media/characters/theo-pangolin/head-side.svg"
  30070. }
  30071. },
  30072. tongue: {
  30073. height: math.unit(2.29, "feet"),
  30074. name: "Tongue",
  30075. image: {
  30076. source: "./media/characters/theo-pangolin/tongue.svg"
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(6, "feet")
  30084. },
  30085. {
  30086. name: "Macro",
  30087. height: math.unit(400, "feet"),
  30088. default: true
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30094. {
  30095. front: {
  30096. height: math.unit(6, "inches"),
  30097. weight: math.unit(0.036, "kg"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/renée/front.svg",
  30101. extra: 900 / 886,
  30102. bottom: 8 / 908
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Nano",
  30109. height: math.unit(1, "nm")
  30110. },
  30111. {
  30112. name: "Micro",
  30113. height: math.unit(1, "mm")
  30114. },
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(6, "inches")
  30118. },
  30119. {
  30120. name: "Macro",
  30121. height: math.unit(2000, "feet"),
  30122. default: true
  30123. },
  30124. {
  30125. name: "Megamacro",
  30126. height: math.unit(2, "km")
  30127. },
  30128. {
  30129. name: "Gigamacro",
  30130. height: math.unit(2000, "km")
  30131. },
  30132. {
  30133. name: "Teramacro",
  30134. height: math.unit(250000, "km")
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(4, "meters"),
  30143. weight: math.unit(150, "kg"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/caledvwlch/front.svg",
  30147. extra: 1760 / 1551,
  30148. bottom: 28 / 1788
  30149. }
  30150. },
  30151. side: {
  30152. height: math.unit(4, "meters"),
  30153. weight: math.unit(150, "kg"),
  30154. name: "Side",
  30155. image: {
  30156. source: "./media/characters/caledvwlch/side.svg",
  30157. extra: 1605 / 1536,
  30158. bottom: 31 / 1636
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(4, "meters"),
  30163. weight: math.unit(150, "kg"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/caledvwlch/back.svg",
  30167. extra: 1635 / 1565,
  30168. bottom: 27 / 1662
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "\"Incognito\"",
  30175. height: math.unit(4, "meters")
  30176. },
  30177. {
  30178. name: "Small rampage",
  30179. height: math.unit(600, "meters")
  30180. },
  30181. {
  30182. name: "Mega",
  30183. height: math.unit(30, "km")
  30184. },
  30185. {
  30186. name: "Home-size",
  30187. height: math.unit(50, "km"),
  30188. default: true
  30189. },
  30190. {
  30191. name: "Giga",
  30192. height: math.unit(300, "km")
  30193. },
  30194. {
  30195. name: "Lounging",
  30196. height: math.unit(11000, "km")
  30197. },
  30198. {
  30199. name: "Planet snacking",
  30200. height: math.unit(2000000, "km")
  30201. },
  30202. ]
  30203. ))
  30204. characterMakers.push(() => makeCharacter(
  30205. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30206. {
  30207. front: {
  30208. height: math.unit(6, "feet"),
  30209. weight: math.unit(215, "lb"),
  30210. name: "Front",
  30211. image: {
  30212. source: "./media/characters/sapphire-svell/front.svg",
  30213. extra: 495 / 455,
  30214. bottom: 20 / 515
  30215. }
  30216. },
  30217. back: {
  30218. height: math.unit(6, "feet"),
  30219. weight: math.unit(216, "lb"),
  30220. name: "Back",
  30221. image: {
  30222. source: "./media/characters/sapphire-svell/back.svg",
  30223. extra: 497 / 477,
  30224. bottom: 7 / 504
  30225. }
  30226. },
  30227. maw: {
  30228. height: math.unit(1.57, "feet"),
  30229. name: "Maw",
  30230. image: {
  30231. source: "./media/characters/sapphire-svell/maw.svg"
  30232. }
  30233. },
  30234. foot: {
  30235. height: math.unit(1.07, "feet"),
  30236. name: "Foot",
  30237. image: {
  30238. source: "./media/characters/sapphire-svell/foot.svg"
  30239. }
  30240. },
  30241. toering: {
  30242. height: math.unit(1.7, "inch"),
  30243. name: "Toering",
  30244. image: {
  30245. source: "./media/characters/sapphire-svell/toering.svg"
  30246. }
  30247. },
  30248. },
  30249. [
  30250. {
  30251. name: "Normal",
  30252. height: math.unit(300, "feet"),
  30253. default: true
  30254. },
  30255. {
  30256. name: "Augmented",
  30257. height: math.unit(1250, "feet")
  30258. },
  30259. {
  30260. name: "Unleashed",
  30261. height: math.unit(3000, "feet")
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30267. {
  30268. side: {
  30269. height: math.unit(2 + 3 / 12, "feet"),
  30270. weight: math.unit(110, "lb"),
  30271. name: "Side",
  30272. image: {
  30273. source: "./media/characters/glitch-flux/side.svg",
  30274. extra: 997 / 805,
  30275. bottom: 20 / 1017
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(2 + 3 / 12, "feet"),
  30283. default: true
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(4, "meters"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/mid/front.svg",
  30295. extra: 507 / 476,
  30296. bottom: 17 / 524
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(4, "meters"),
  30301. name: "Back",
  30302. image: {
  30303. source: "./media/characters/mid/back.svg",
  30304. extra: 519 / 487,
  30305. bottom: 7 / 526
  30306. }
  30307. },
  30308. stuck: {
  30309. height: math.unit(2.2, "meters"),
  30310. name: "Stuck",
  30311. image: {
  30312. source: "./media/characters/mid/stuck.svg",
  30313. extra: 1951 / 1869,
  30314. bottom: 88 / 2039
  30315. }
  30316. }
  30317. },
  30318. [
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(4, "meters"),
  30322. default: true
  30323. },
  30324. {
  30325. name: "Big",
  30326. height: math.unit(10, "meters")
  30327. },
  30328. {
  30329. name: "Macro",
  30330. height: math.unit(800, "meters")
  30331. },
  30332. {
  30333. name: "Megamacro",
  30334. height: math.unit(100, "km")
  30335. },
  30336. {
  30337. name: "Overgrown",
  30338. height: math.unit(1, "parsec")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(2.5, "meters"),
  30347. weight: math.unit(225, "kg"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/iris/front.svg",
  30351. extra: 3348 / 3251,
  30352. bottom: 205 / 3553
  30353. }
  30354. },
  30355. maw: {
  30356. height: math.unit(0.56, "meter"),
  30357. name: "Maw",
  30358. image: {
  30359. source: "./media/characters/iris/maw.svg"
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Mewter cat",
  30366. height: math.unit(1.2, "meters")
  30367. },
  30368. {
  30369. name: "Minimacro",
  30370. height: math.unit(2.5, "meters"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "Macro",
  30375. height: math.unit(180, "meters")
  30376. },
  30377. {
  30378. name: "Megamacro",
  30379. height: math.unit(2746, "meters")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(6, "feet"),
  30388. weight: math.unit(135, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/axel/front.svg",
  30392. extra: 908 / 908,
  30393. bottom: 58 / 966
  30394. }
  30395. },
  30396. side: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(135, "lb"),
  30399. name: "Side",
  30400. image: {
  30401. source: "./media/characters/axel/side.svg",
  30402. extra: 958 / 958,
  30403. bottom: 11 / 969
  30404. }
  30405. },
  30406. back: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(135, "lb"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/axel/back.svg",
  30412. extra: 887 / 887,
  30413. bottom: 34 / 921
  30414. }
  30415. },
  30416. head: {
  30417. height: math.unit(1.07, "feet"),
  30418. name: "Head",
  30419. image: {
  30420. source: "./media/characters/axel/head.svg"
  30421. }
  30422. },
  30423. beak: {
  30424. height: math.unit(1.4, "feet"),
  30425. name: "Beak",
  30426. image: {
  30427. source: "./media/characters/axel/beak.svg"
  30428. }
  30429. },
  30430. beakSide: {
  30431. height: math.unit(1.4, "feet"),
  30432. name: "Beak Side",
  30433. image: {
  30434. source: "./media/characters/axel/beak-side.svg"
  30435. }
  30436. },
  30437. sheath: {
  30438. height: math.unit(0.5, "feet"),
  30439. name: "Sheath",
  30440. image: {
  30441. source: "./media/characters/axel/sheath.svg"
  30442. }
  30443. },
  30444. dick: {
  30445. height: math.unit(0.98, "feet"),
  30446. name: "Dick",
  30447. image: {
  30448. source: "./media/characters/axel/dick.svg"
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Macro",
  30455. height: math.unit(68, "meters"),
  30456. default: true
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(3.5, "meters"),
  30465. weight: math.unit(1200, "kg"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/joanna/front.svg",
  30469. extra: 1596 / 1488,
  30470. bottom: 29 / 1625
  30471. }
  30472. },
  30473. back: {
  30474. height: math.unit(3.5, "meters"),
  30475. weight: math.unit(1200, "kg"),
  30476. name: "Back",
  30477. image: {
  30478. source: "./media/characters/joanna/back.svg",
  30479. extra: 1594 / 1495,
  30480. bottom: 26 / 1620
  30481. }
  30482. },
  30483. frontShorts: {
  30484. height: math.unit(3.5, "meters"),
  30485. weight: math.unit(1200, "kg"),
  30486. name: "Front (Shorts)",
  30487. image: {
  30488. source: "./media/characters/joanna/front-shorts.svg",
  30489. extra: 1596 / 1488,
  30490. bottom: 29 / 1625
  30491. }
  30492. },
  30493. frontBiker: {
  30494. height: math.unit(3.5, "meters"),
  30495. weight: math.unit(1200, "kg"),
  30496. name: "Front (Biker)",
  30497. image: {
  30498. source: "./media/characters/joanna/front-biker.svg",
  30499. extra: 1596 / 1488,
  30500. bottom: 29 / 1625
  30501. }
  30502. },
  30503. backBiker: {
  30504. height: math.unit(3.5, "meters"),
  30505. weight: math.unit(1200, "kg"),
  30506. name: "Back (Biker)",
  30507. image: {
  30508. source: "./media/characters/joanna/back-biker.svg",
  30509. extra: 1594 / 1495,
  30510. bottom: 88 / 1682
  30511. }
  30512. },
  30513. bikeLeft: {
  30514. height: math.unit(2.4, "meters"),
  30515. weight: math.unit(1600, "kg"),
  30516. name: "Bike (Left)",
  30517. image: {
  30518. source: "./media/characters/joanna/bike-left.svg",
  30519. extra: 720 / 720,
  30520. bottom: 8 / 728
  30521. }
  30522. },
  30523. bikeRight: {
  30524. height: math.unit(2.4, "meters"),
  30525. weight: math.unit(1600, "kg"),
  30526. name: "Bike (Right)",
  30527. image: {
  30528. source: "./media/characters/joanna/bike-right.svg",
  30529. extra: 720 / 720,
  30530. bottom: 8 / 728
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Incognito",
  30537. height: math.unit(3.5, "meters")
  30538. },
  30539. {
  30540. name: "Casual Big",
  30541. height: math.unit(200, "meters")
  30542. },
  30543. {
  30544. name: "Macro",
  30545. height: math.unit(600, "meters")
  30546. },
  30547. {
  30548. name: "Original",
  30549. height: math.unit(20, "km"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Giga",
  30554. height: math.unit(400, "km")
  30555. },
  30556. {
  30557. name: "Lounging",
  30558. height: math.unit(1500, "km")
  30559. },
  30560. {
  30561. name: "Planetary",
  30562. height: math.unit(200000, "km")
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(6, "feet"),
  30571. weight: math.unit(150, "lb"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/hugo-sigil/front.svg",
  30575. extra: 522 / 500,
  30576. bottom: 2 / 524
  30577. }
  30578. },
  30579. back: {
  30580. height: math.unit(6, "feet"),
  30581. weight: math.unit(150, "lb"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/hugo-sigil/back.svg",
  30585. extra: 519 / 495,
  30586. bottom: 5 / 524
  30587. }
  30588. },
  30589. maw: {
  30590. height: math.unit(1.4, "feet"),
  30591. weight: math.unit(150, "lb"),
  30592. name: "Maw",
  30593. image: {
  30594. source: "./media/characters/hugo-sigil/maw.svg"
  30595. }
  30596. },
  30597. feet: {
  30598. height: math.unit(1.56, "feet"),
  30599. weight: math.unit(150, "lb"),
  30600. name: "Feet",
  30601. image: {
  30602. source: "./media/characters/hugo-sigil/feet.svg",
  30603. extra: 177 / 177,
  30604. bottom: 12 / 189
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(6, "feet")
  30612. },
  30613. {
  30614. name: "Macro",
  30615. height: math.unit(200, "feet"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(150, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/peri/front.svg",
  30629. extra: 2354 / 2233,
  30630. bottom: 49 / 2403
  30631. }
  30632. },
  30633. },
  30634. [
  30635. {
  30636. name: "Really Small",
  30637. height: math.unit(1, "nm")
  30638. },
  30639. {
  30640. name: "Micro",
  30641. height: math.unit(4, "inches")
  30642. },
  30643. {
  30644. name: "Normal",
  30645. height: math.unit(7, "inches"),
  30646. default: true
  30647. },
  30648. {
  30649. name: "Macro",
  30650. height: math.unit(400, "feet")
  30651. },
  30652. {
  30653. name: "Megamacro",
  30654. height: math.unit(100, "miles")
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30660. {
  30661. frontSlim: {
  30662. height: math.unit(7, "feet"),
  30663. name: "Front (Slim)",
  30664. image: {
  30665. source: "./media/characters/issilora/front-slim.svg",
  30666. extra: 529 / 449,
  30667. bottom: 53 / 582
  30668. }
  30669. },
  30670. sideSlim: {
  30671. height: math.unit(7, "feet"),
  30672. name: "Side (Slim)",
  30673. image: {
  30674. source: "./media/characters/issilora/side-slim.svg",
  30675. extra: 570 / 480,
  30676. bottom: 30 / 600
  30677. }
  30678. },
  30679. backSlim: {
  30680. height: math.unit(7, "feet"),
  30681. name: "Back (Slim)",
  30682. image: {
  30683. source: "./media/characters/issilora/back-slim.svg",
  30684. extra: 537 / 455,
  30685. bottom: 46 / 583
  30686. }
  30687. },
  30688. frontBuff: {
  30689. height: math.unit(7, "feet"),
  30690. name: "Front (Buff)",
  30691. image: {
  30692. source: "./media/characters/issilora/front-buff.svg",
  30693. extra: 2310 / 2035,
  30694. bottom: 335 / 2645
  30695. }
  30696. },
  30697. head: {
  30698. height: math.unit(1.94, "feet"),
  30699. name: "Head",
  30700. image: {
  30701. source: "./media/characters/issilora/head.svg"
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Minimum",
  30708. height: math.unit(7, "feet")
  30709. },
  30710. {
  30711. name: "Comfortable",
  30712. height: math.unit(17, "feet")
  30713. },
  30714. {
  30715. name: "Fun Size",
  30716. height: math.unit(47, "feet")
  30717. },
  30718. {
  30719. name: "Natural Macro",
  30720. height: math.unit(137, "feet"),
  30721. default: true
  30722. },
  30723. {
  30724. name: "Maximum Kaiju",
  30725. height: math.unit(397, "feet")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30731. {
  30732. front: {
  30733. height: math.unit(50 + 9/12, "feet"),
  30734. weight: math.unit(32.8, "tons"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/irb'iiritaahn/front.svg",
  30738. extra: 1878/1826,
  30739. bottom: 326/2204
  30740. }
  30741. },
  30742. back: {
  30743. height: math.unit(50 + 9/12, "feet"),
  30744. weight: math.unit(32.8, "tons"),
  30745. name: "Back",
  30746. image: {
  30747. source: "./media/characters/irb'iiritaahn/back.svg",
  30748. extra: 2052/2018,
  30749. bottom: 152/2204
  30750. }
  30751. },
  30752. head: {
  30753. height: math.unit(12.86, "feet"),
  30754. name: "Head",
  30755. image: {
  30756. source: "./media/characters/irb'iiritaahn/head.svg"
  30757. }
  30758. },
  30759. maw: {
  30760. height: math.unit(9.66, "feet"),
  30761. name: "Maw",
  30762. image: {
  30763. source: "./media/characters/irb'iiritaahn/maw.svg"
  30764. }
  30765. },
  30766. frontDick: {
  30767. height: math.unit(8.78461, "feet"),
  30768. name: "Front Dick",
  30769. image: {
  30770. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30771. }
  30772. },
  30773. rearDick: {
  30774. height: math.unit(8.78461, "feet"),
  30775. name: "Rear Dick",
  30776. image: {
  30777. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30778. }
  30779. },
  30780. rearDickUnfolded: {
  30781. height: math.unit(8.78, "feet"),
  30782. name: "Rear Dick (Unfolded)",
  30783. image: {
  30784. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30785. }
  30786. },
  30787. wings: {
  30788. height: math.unit(43, "feet"),
  30789. name: "Wings",
  30790. image: {
  30791. source: "./media/characters/irb'iiritaahn/wings.svg"
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Macro",
  30798. height: math.unit(50 + 9/12, "feet"),
  30799. default: true
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(205, "cm"),
  30808. weight: math.unit(102, "kg"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/irbisgreif/front.svg",
  30812. extra: 785/706,
  30813. bottom: 13/798
  30814. }
  30815. },
  30816. back: {
  30817. height: math.unit(205, "cm"),
  30818. weight: math.unit(102, "kg"),
  30819. name: "Back",
  30820. image: {
  30821. source: "./media/characters/irbisgreif/back.svg",
  30822. extra: 713/701,
  30823. bottom: 26/739
  30824. }
  30825. },
  30826. frontDressed: {
  30827. height: math.unit(216, "cm"),
  30828. weight: math.unit(102, "kg"),
  30829. name: "Front-dressed",
  30830. image: {
  30831. source: "./media/characters/irbisgreif/front-dressed.svg",
  30832. extra: 902/776,
  30833. bottom: 14/916
  30834. }
  30835. },
  30836. sideDressed: {
  30837. height: math.unit(195, "cm"),
  30838. weight: math.unit(102, "kg"),
  30839. name: "Side-dressed",
  30840. image: {
  30841. source: "./media/characters/irbisgreif/side-dressed.svg",
  30842. extra: 788/688,
  30843. bottom: 21/809
  30844. }
  30845. },
  30846. backDressed: {
  30847. height: math.unit(216, "cm"),
  30848. weight: math.unit(102, "kg"),
  30849. name: "Back-dressed",
  30850. image: {
  30851. source: "./media/characters/irbisgreif/back-dressed.svg",
  30852. extra: 901/783,
  30853. bottom: 10/911
  30854. }
  30855. },
  30856. dick: {
  30857. height: math.unit(0.49, "feet"),
  30858. name: "Dick",
  30859. image: {
  30860. source: "./media/characters/irbisgreif/dick.svg"
  30861. }
  30862. },
  30863. wingTop: {
  30864. height: math.unit(1.93 , "feet"),
  30865. name: "Wing-top",
  30866. image: {
  30867. source: "./media/characters/irbisgreif/wing-top.svg"
  30868. }
  30869. },
  30870. wingBottom: {
  30871. height: math.unit(1.93 , "feet"),
  30872. name: "Wing-bottom",
  30873. image: {
  30874. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30875. }
  30876. },
  30877. },
  30878. [
  30879. {
  30880. name: "Normal",
  30881. height: math.unit(216, "cm"),
  30882. default: true
  30883. },
  30884. ]
  30885. ))
  30886. characterMakers.push(() => makeCharacter(
  30887. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30888. {
  30889. front: {
  30890. height: math.unit(6, "feet"),
  30891. weight: math.unit(150, "lb"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/pride/front.svg",
  30895. extra: 1299/1230,
  30896. bottom: 18/1317
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Normal",
  30903. height: math.unit(7, "feet")
  30904. },
  30905. {
  30906. name: "Mini-macro",
  30907. height: math.unit(11, "feet")
  30908. },
  30909. {
  30910. name: "Macro",
  30911. height: math.unit(15, "meters"),
  30912. default: true
  30913. },
  30914. {
  30915. name: "Macro+",
  30916. height: math.unit(40, "meters")
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30922. {
  30923. front: {
  30924. height: math.unit(4 + 2 / 12, "feet"),
  30925. weight: math.unit(95, "lb"),
  30926. name: "Front",
  30927. image: {
  30928. source: "./media/characters/vaelophis-nyx/front.svg",
  30929. extra: 2532/2330,
  30930. bottom: 0/2532
  30931. }
  30932. },
  30933. back: {
  30934. height: math.unit(4 + 2 / 12, "feet"),
  30935. weight: math.unit(95, "lb"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/vaelophis-nyx/back.svg",
  30939. extra: 2484/2361,
  30940. bottom: 0/2484
  30941. }
  30942. },
  30943. feralSide: {
  30944. height: math.unit(2 + 1/12, "feet"),
  30945. weight: math.unit(20, "lb"),
  30946. name: "Feral (Side)",
  30947. image: {
  30948. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30949. extra: 1721/1581,
  30950. bottom: 70/1791
  30951. }
  30952. },
  30953. feralLazing: {
  30954. height: math.unit(1.08, "feet"),
  30955. weight: math.unit(20, "lb"),
  30956. name: "Feral (Lazing)",
  30957. image: {
  30958. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30959. extra: 822/822,
  30960. bottom: 248/1070
  30961. }
  30962. },
  30963. ear: {
  30964. height: math.unit(0.416, "feet"),
  30965. name: "Ear",
  30966. image: {
  30967. source: "./media/characters/vaelophis-nyx/ear.svg"
  30968. }
  30969. },
  30970. eye: {
  30971. height: math.unit(0.0748, "feet"),
  30972. name: "Eye",
  30973. image: {
  30974. source: "./media/characters/vaelophis-nyx/eye.svg"
  30975. }
  30976. },
  30977. mouth: {
  30978. height: math.unit(0.378, "feet"),
  30979. name: "Mouth",
  30980. image: {
  30981. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30982. }
  30983. },
  30984. spade: {
  30985. height: math.unit(0.55, "feet"),
  30986. name: "Spade",
  30987. image: {
  30988. source: "./media/characters/vaelophis-nyx/spade.svg"
  30989. }
  30990. },
  30991. },
  30992. [
  30993. {
  30994. name: "Normal",
  30995. height: math.unit(4 + 2/12, "feet"),
  30996. default: true
  30997. },
  30998. ]
  30999. ))
  31000. characterMakers.push(() => makeCharacter(
  31001. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31002. {
  31003. front: {
  31004. height: math.unit(7, "feet"),
  31005. weight: math.unit(231, "lb"),
  31006. name: "Front",
  31007. image: {
  31008. source: "./media/characters/flux/front.svg",
  31009. extra: 919/871,
  31010. bottom: 0/919
  31011. }
  31012. },
  31013. back: {
  31014. height: math.unit(7, "feet"),
  31015. weight: math.unit(231, "lb"),
  31016. name: "Back",
  31017. image: {
  31018. source: "./media/characters/flux/back.svg",
  31019. extra: 1040/992,
  31020. bottom: 0/1040
  31021. }
  31022. },
  31023. frontDressed: {
  31024. height: math.unit(7, "feet"),
  31025. weight: math.unit(231, "lb"),
  31026. name: "Front (Dressed)",
  31027. image: {
  31028. source: "./media/characters/flux/front-dressed.svg",
  31029. extra: 919/871,
  31030. bottom: 0/919
  31031. }
  31032. },
  31033. feralSide: {
  31034. height: math.unit(5, "feet"),
  31035. weight: math.unit(150, "lb"),
  31036. name: "Feral (Side)",
  31037. image: {
  31038. source: "./media/characters/flux/feral-side.svg",
  31039. extra: 598/528,
  31040. bottom: 28/626
  31041. }
  31042. },
  31043. head: {
  31044. height: math.unit(1.585, "feet"),
  31045. name: "Head",
  31046. image: {
  31047. source: "./media/characters/flux/head.svg"
  31048. }
  31049. },
  31050. headSide: {
  31051. height: math.unit(1.74, "feet"),
  31052. name: "Head (Side)",
  31053. image: {
  31054. source: "./media/characters/flux/head-side.svg"
  31055. }
  31056. },
  31057. headSideFire: {
  31058. height: math.unit(1.76, "feet"),
  31059. name: "Head (Side, Fire)",
  31060. image: {
  31061. source: "./media/characters/flux/head-side-fire.svg"
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(7, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(9, "feet"),
  31078. weight: math.unit(1012, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/ulfra-lupae/front.svg",
  31082. extra: 1083/1011,
  31083. bottom: 67/1150
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Micro",
  31090. height: math.unit(6, "inches")
  31091. },
  31092. {
  31093. name: "Socializing",
  31094. height: math.unit(6 + 5/12, "feet")
  31095. },
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(9, "feet"),
  31099. default: true
  31100. },
  31101. {
  31102. name: "Macro",
  31103. height: math.unit(150, "feet")
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(5 + 2/12, "feet"),
  31112. weight: math.unit(120, "lb"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/timber/front.svg",
  31116. extra: 2814/2705,
  31117. bottom: 181/2995
  31118. }
  31119. },
  31120. },
  31121. [
  31122. {
  31123. name: "Normal",
  31124. height: math.unit(5 + 2/12, "feet"),
  31125. default: true
  31126. },
  31127. ]
  31128. ))
  31129. characterMakers.push(() => makeCharacter(
  31130. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31131. {
  31132. front: {
  31133. height: math.unit(5 + 7/12, "feet"),
  31134. weight: math.unit(220, "lb"),
  31135. name: "Front",
  31136. image: {
  31137. source: "./media/characters/nicki/front.svg",
  31138. extra: 453/419,
  31139. bottom: 7/460
  31140. }
  31141. },
  31142. frontAlt: {
  31143. height: math.unit(5 + 7/12, "feet"),
  31144. weight: math.unit(220, "lb"),
  31145. name: "Front-alt",
  31146. image: {
  31147. source: "./media/characters/nicki/front-alt.svg",
  31148. extra: 435/411,
  31149. bottom: 12/447
  31150. }
  31151. },
  31152. back: {
  31153. height: math.unit(5 + 7/12, "feet"),
  31154. weight: math.unit(220, "lb"),
  31155. name: "Back",
  31156. image: {
  31157. source: "./media/characters/nicki/back.svg",
  31158. extra: 440/413,
  31159. bottom: 19/459
  31160. }
  31161. },
  31162. taur: {
  31163. height: math.unit(7 + 6/12, "feet"),
  31164. weight: math.unit(700, "lb"),
  31165. name: "Taur",
  31166. image: {
  31167. source: "./media/characters/nicki/taur.svg",
  31168. extra: 975/773,
  31169. bottom: 0/975
  31170. }
  31171. },
  31172. frontNsfw: {
  31173. height: math.unit(5 + 7/12, "feet"),
  31174. weight: math.unit(220, "lb"),
  31175. name: "Front (NSFW)",
  31176. image: {
  31177. source: "./media/characters/nicki/front-nsfw.svg",
  31178. extra: 453/419,
  31179. bottom: 7/460
  31180. }
  31181. },
  31182. frontNsfwAlt: {
  31183. height: math.unit(5 + 7/12, "feet"),
  31184. weight: math.unit(220, "lb"),
  31185. name: "Front (Alt, NSFW)",
  31186. image: {
  31187. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31188. extra: 435/411,
  31189. bottom: 12/447
  31190. }
  31191. },
  31192. backNsfw: {
  31193. height: math.unit(5 + 7/12, "feet"),
  31194. weight: math.unit(220, "lb"),
  31195. name: "Back (NSFW)",
  31196. image: {
  31197. source: "./media/characters/nicki/back-nsfw.svg",
  31198. extra: 440/413,
  31199. bottom: 19/459
  31200. }
  31201. },
  31202. head: {
  31203. height: math.unit(2.1, "feet"),
  31204. name: "Head",
  31205. image: {
  31206. source: "./media/characters/nicki/head.svg"
  31207. }
  31208. },
  31209. paw: {
  31210. height: math.unit(1.88, "feet"),
  31211. name: "Paw",
  31212. image: {
  31213. source: "./media/characters/nicki/paw.svg"
  31214. }
  31215. },
  31216. },
  31217. [
  31218. {
  31219. name: "Normal",
  31220. height: math.unit(5 + 7/12, "feet"),
  31221. default: true
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(7 + 10/12, "feet"),
  31230. weight: math.unit(3.5, "tons"),
  31231. name: "Front",
  31232. image: {
  31233. source: "./media/characters/lee/front.svg",
  31234. extra: 1773/1615,
  31235. bottom: 86/1859
  31236. }
  31237. },
  31238. hand: {
  31239. height: math.unit(1.78, "feet"),
  31240. name: "Hand",
  31241. image: {
  31242. source: "./media/characters/lee/hand.svg"
  31243. }
  31244. },
  31245. maw: {
  31246. height: math.unit(1.18, "feet"),
  31247. name: "Maw",
  31248. image: {
  31249. source: "./media/characters/lee/maw.svg"
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Normal",
  31256. height: math.unit(7 + 10/12, "feet"),
  31257. default: true
  31258. },
  31259. ]
  31260. ))
  31261. characterMakers.push(() => makeCharacter(
  31262. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31263. {
  31264. front: {
  31265. height: math.unit(9, "feet"),
  31266. name: "Front",
  31267. image: {
  31268. source: "./media/characters/guti/front.svg",
  31269. extra: 4551/4355,
  31270. bottom: 123/4674
  31271. }
  31272. },
  31273. tongue: {
  31274. height: math.unit(1, "feet"),
  31275. name: "Tongue",
  31276. image: {
  31277. source: "./media/characters/guti/tongue.svg"
  31278. }
  31279. },
  31280. paw: {
  31281. height: math.unit(1.18, "feet"),
  31282. name: "Paw",
  31283. image: {
  31284. source: "./media/characters/guti/paw.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(9, "feet"),
  31292. default: true
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31298. {
  31299. side: {
  31300. height: math.unit(5, "meters"),
  31301. name: "Side",
  31302. image: {
  31303. source: "./media/characters/vesper/side.svg",
  31304. extra: 1605/1518,
  31305. bottom: 0/1605
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Small",
  31312. height: math.unit(5, "meters")
  31313. },
  31314. {
  31315. name: "Sage",
  31316. height: math.unit(100, "meters"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "Fun Size",
  31321. height: math.unit(600, "meters")
  31322. },
  31323. {
  31324. name: "Goddess",
  31325. height: math.unit(20000, "km")
  31326. },
  31327. {
  31328. name: "Maximum",
  31329. height: math.unit(5, "galaxies")
  31330. },
  31331. ]
  31332. ))
  31333. characterMakers.push(() => makeCharacter(
  31334. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31335. {
  31336. front: {
  31337. height: math.unit(6 + 3/12, "feet"),
  31338. weight: math.unit(190, "lb"),
  31339. name: "Front",
  31340. image: {
  31341. source: "./media/characters/gawain/front.svg",
  31342. extra: 2222/2139,
  31343. bottom: 90/2312
  31344. }
  31345. },
  31346. back: {
  31347. height: math.unit(6 + 3/12, "feet"),
  31348. weight: math.unit(190, "lb"),
  31349. name: "Back",
  31350. image: {
  31351. source: "./media/characters/gawain/back.svg",
  31352. extra: 2199/2111,
  31353. bottom: 73/2272
  31354. }
  31355. },
  31356. },
  31357. [
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(6 + 3/12, "feet"),
  31361. default: true
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31367. {
  31368. side: {
  31369. height: math.unit(3.5, "meters"),
  31370. weight: math.unit(16000, "lb"),
  31371. name: "Side",
  31372. image: {
  31373. source: "./media/characters/dascalti/side.svg",
  31374. extra: 392/273,
  31375. bottom: 47/439
  31376. }
  31377. },
  31378. breath: {
  31379. height: math.unit(7.4, "feet"),
  31380. name: "Breath",
  31381. image: {
  31382. source: "./media/characters/dascalti/breath.svg"
  31383. }
  31384. },
  31385. fed: {
  31386. height: math.unit(3.6, "meters"),
  31387. weight: math.unit(16000, "lb"),
  31388. name: "Fed",
  31389. image: {
  31390. source: "./media/characters/dascalti/fed.svg",
  31391. extra: 1419/820,
  31392. bottom: 95/1514
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(3.5, "meters"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(3 + 5/12, "feet"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/mauve/front.svg",
  31412. extra: 1126/1033,
  31413. bottom: 65/1191
  31414. }
  31415. },
  31416. side: {
  31417. height: math.unit(3 + 5/12, "feet"),
  31418. name: "Side",
  31419. image: {
  31420. source: "./media/characters/mauve/side.svg",
  31421. extra: 1089/1001,
  31422. bottom: 29/1118
  31423. }
  31424. },
  31425. back: {
  31426. height: math.unit(3 + 5/12, "feet"),
  31427. name: "Back",
  31428. image: {
  31429. source: "./media/characters/mauve/back.svg",
  31430. extra: 1173/1053,
  31431. bottom: 109/1282
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(3 + 5/12, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(6 + 3/12, "feet"),
  31448. weight: math.unit(430, "lb"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/carlos/front.svg",
  31452. extra: 1964/1913,
  31453. bottom: 70/2034
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(6 + 3/12, "feet"),
  31461. default: true
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31467. {
  31468. back: {
  31469. height: math.unit(5 + 10/12, "feet"),
  31470. weight: math.unit(200, "lb"),
  31471. name: "Back",
  31472. image: {
  31473. source: "./media/characters/jax/back.svg",
  31474. extra: 764/739,
  31475. bottom: 25/789
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(5 + 10/12, "feet"),
  31483. default: true
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31489. {
  31490. front: {
  31491. height: math.unit(8, "feet"),
  31492. weight: math.unit(250, "lb"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/eikthynir/front.svg",
  31496. extra: 1332/1166,
  31497. bottom: 82/1414
  31498. }
  31499. },
  31500. back: {
  31501. height: math.unit(8, "feet"),
  31502. weight: math.unit(250, "lb"),
  31503. name: "Back",
  31504. image: {
  31505. source: "./media/characters/eikthynir/back.svg",
  31506. extra: 1342/1190,
  31507. bottom: 19/1361
  31508. }
  31509. },
  31510. dick: {
  31511. height: math.unit(2.35, "feet"),
  31512. name: "Dick",
  31513. image: {
  31514. source: "./media/characters/eikthynir/dick.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(8, "feet"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(99, "meters"),
  31531. weight: math.unit(13000, "tons"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/zlmos/front.svg",
  31535. extra: 2202/1992,
  31536. bottom: 315/2517
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Macro",
  31543. height: math.unit(99, "meters"),
  31544. default: true
  31545. },
  31546. ]
  31547. ))
  31548. characterMakers.push(() => makeCharacter(
  31549. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31550. {
  31551. front: {
  31552. height: math.unit(6 + 5/12, "feet"),
  31553. name: "Front",
  31554. image: {
  31555. source: "./media/characters/purri/front.svg",
  31556. extra: 1698/1610,
  31557. bottom: 32/1730
  31558. }
  31559. },
  31560. frontAlt: {
  31561. height: math.unit(6 + 5/12, "feet"),
  31562. name: "Front (Alt)",
  31563. image: {
  31564. source: "./media/characters/purri/front-alt.svg",
  31565. extra: 450/420,
  31566. bottom: 26/476
  31567. }
  31568. },
  31569. boots: {
  31570. height: math.unit(5.5, "feet"),
  31571. name: "Boots",
  31572. image: {
  31573. source: "./media/characters/purri/boots.svg",
  31574. extra: 905/853,
  31575. bottom: 18/923
  31576. }
  31577. },
  31578. lying: {
  31579. height: math.unit(2, "feet"),
  31580. name: "Lying",
  31581. image: {
  31582. source: "./media/characters/purri/lying.svg",
  31583. extra: 940/843,
  31584. bottom: 146/1086
  31585. }
  31586. },
  31587. devious: {
  31588. height: math.unit(1.77, "feet"),
  31589. name: "Devious",
  31590. image: {
  31591. source: "./media/characters/purri/devious.svg",
  31592. extra: 1440/1155,
  31593. bottom: 147/1587
  31594. }
  31595. },
  31596. bean: {
  31597. height: math.unit(1.94, "feet"),
  31598. name: "Bean",
  31599. image: {
  31600. source: "./media/characters/purri/bean.svg"
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Micro",
  31607. height: math.unit(1, "mm")
  31608. },
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(6 + 5/12, "feet"),
  31612. default: true
  31613. },
  31614. {
  31615. name: "Macro :3c",
  31616. height: math.unit(2, "miles")
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31622. {
  31623. front: {
  31624. height: math.unit(6 + 2/12, "feet"),
  31625. weight: math.unit(250, "lb"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/moonlight/front.svg",
  31629. extra: 1044/908,
  31630. bottom: 56/1100
  31631. }
  31632. },
  31633. feral: {
  31634. height: math.unit(3 + 1/12, "feet"),
  31635. weight: math.unit(50, "kg"),
  31636. name: "Feral",
  31637. image: {
  31638. source: "./media/characters/moonlight/feral.svg",
  31639. extra: 3705/2791,
  31640. bottom: 145/3850
  31641. }
  31642. },
  31643. paw: {
  31644. height: math.unit(1, "feet"),
  31645. name: "Paw",
  31646. image: {
  31647. source: "./media/characters/moonlight/paw.svg"
  31648. }
  31649. },
  31650. paws: {
  31651. height: math.unit(0.98, "feet"),
  31652. name: "Paws",
  31653. image: {
  31654. source: "./media/characters/moonlight/paws.svg",
  31655. extra: 939/939,
  31656. bottom: 50/989
  31657. }
  31658. },
  31659. mouth: {
  31660. height: math.unit(0.48, "feet"),
  31661. name: "Mouth",
  31662. image: {
  31663. source: "./media/characters/moonlight/mouth.svg"
  31664. }
  31665. },
  31666. dick: {
  31667. height: math.unit(1.46, "feet"),
  31668. name: "Dick",
  31669. image: {
  31670. source: "./media/characters/moonlight/dick.svg"
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(6 + 2/12, "feet"),
  31678. default: true
  31679. },
  31680. {
  31681. name: "Macro",
  31682. height: math.unit(300, "feet")
  31683. },
  31684. {
  31685. name: "Macro+",
  31686. height: math.unit(1, "mile")
  31687. },
  31688. {
  31689. name: "Mt. Moon",
  31690. height: math.unit(5, "miles")
  31691. },
  31692. {
  31693. name: "Megamacro",
  31694. height: math.unit(15, "miles")
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31700. {
  31701. back: {
  31702. height: math.unit(6, "feet"),
  31703. weight: math.unit(150, "lb"),
  31704. name: "Back",
  31705. image: {
  31706. source: "./media/characters/sylen/back.svg",
  31707. extra: 1335/1273,
  31708. bottom: 107/1442
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Normal",
  31715. height: math.unit(5 + 5/12, "feet")
  31716. },
  31717. {
  31718. name: "Megamacro",
  31719. height: math.unit(3, "miles"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31726. {
  31727. front: {
  31728. height: math.unit(6, "feet"),
  31729. weight: math.unit(190, "lb"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/huttser/front.svg",
  31733. extra: 1152/1058,
  31734. bottom: 23/1175
  31735. }
  31736. },
  31737. side: {
  31738. height: math.unit(6, "feet"),
  31739. weight: math.unit(190, "lb"),
  31740. name: "Side",
  31741. image: {
  31742. source: "./media/characters/huttser/side.svg",
  31743. extra: 1174/1065,
  31744. bottom: 18/1192
  31745. }
  31746. },
  31747. back: {
  31748. height: math.unit(6, "feet"),
  31749. weight: math.unit(190, "lb"),
  31750. name: "Back",
  31751. image: {
  31752. source: "./media/characters/huttser/back.svg",
  31753. extra: 1158/1056,
  31754. bottom: 12/1170
  31755. }
  31756. },
  31757. },
  31758. [
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31763. {
  31764. side: {
  31765. height: math.unit(12 + 9/12, "feet"),
  31766. weight: math.unit(15000, "lb"),
  31767. name: "Side",
  31768. image: {
  31769. source: "./media/characters/faan/side.svg",
  31770. extra: 2747/2697,
  31771. bottom: 0/2747
  31772. }
  31773. },
  31774. front: {
  31775. height: math.unit(12 + 9/12, "feet"),
  31776. weight: math.unit(15000, "lb"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/faan/front.svg",
  31780. extra: 607/571,
  31781. bottom: 24/631
  31782. }
  31783. },
  31784. head: {
  31785. height: math.unit(2.85, "feet"),
  31786. name: "Head",
  31787. image: {
  31788. source: "./media/characters/faan/head.svg"
  31789. }
  31790. },
  31791. headAlt: {
  31792. height: math.unit(3.13, "feet"),
  31793. name: "Head-alt",
  31794. image: {
  31795. source: "./media/characters/faan/head-alt.svg"
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(12 + 9/12, "feet"),
  31803. default: true
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31809. {
  31810. front: {
  31811. height: math.unit(6, "feet"),
  31812. weight: math.unit(300, "lb"),
  31813. name: "Front",
  31814. image: {
  31815. source: "./media/characters/tanio/front.svg",
  31816. extra: 711/673,
  31817. bottom: 25/736
  31818. }
  31819. },
  31820. },
  31821. [
  31822. {
  31823. name: "Normal",
  31824. height: math.unit(6, "feet"),
  31825. default: true
  31826. },
  31827. ]
  31828. ))
  31829. characterMakers.push(() => makeCharacter(
  31830. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31831. {
  31832. front: {
  31833. height: math.unit(3, "inches"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/noboru/front.svg",
  31837. extra: 1039/932,
  31838. bottom: 18/1057
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Micro",
  31845. height: math.unit(3, "inches"),
  31846. default: true
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(1.85, "meters"),
  31855. weight: math.unit(80, "kg"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/daniel-barrett/front.svg",
  31859. extra: 355/337,
  31860. bottom: 9/364
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Pico",
  31867. height: math.unit(0.0433, "mm")
  31868. },
  31869. {
  31870. name: "Nano",
  31871. height: math.unit(1.5, "mm")
  31872. },
  31873. {
  31874. name: "Micro",
  31875. height: math.unit(5.3, "cm"),
  31876. default: true
  31877. },
  31878. {
  31879. name: "Normal",
  31880. height: math.unit(1.85, "meters")
  31881. },
  31882. {
  31883. name: "Macro",
  31884. height: math.unit(64.7, "meters")
  31885. },
  31886. {
  31887. name: "Megamacro",
  31888. height: math.unit(2.26, "km")
  31889. },
  31890. {
  31891. name: "Gigamacro",
  31892. height: math.unit(79, "km")
  31893. },
  31894. {
  31895. name: "Teramacro",
  31896. height: math.unit(2765, "km")
  31897. },
  31898. {
  31899. name: "Petamacro",
  31900. height: math.unit(96678, "km")
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(30, "meters"),
  31909. weight: math.unit(400, "tons"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/zeel/front.svg",
  31913. extra: 2599/2599,
  31914. bottom: 226/2825
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(30, "meters"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(6 + 7/12, "feet"),
  31931. weight: math.unit(210, "lb"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/tarn/front.svg",
  31935. extra: 3517/3220,
  31936. bottom: 91/3608
  31937. }
  31938. },
  31939. back: {
  31940. height: math.unit(6 + 7/12, "feet"),
  31941. weight: math.unit(210, "lb"),
  31942. name: "Back",
  31943. image: {
  31944. source: "./media/characters/tarn/back.svg",
  31945. extra: 3566/3241,
  31946. bottom: 34/3600
  31947. }
  31948. },
  31949. dick: {
  31950. height: math.unit(1.65, "feet"),
  31951. name: "Dick",
  31952. image: {
  31953. source: "./media/characters/tarn/dick.svg"
  31954. }
  31955. },
  31956. paw: {
  31957. height: math.unit(1.80, "feet"),
  31958. name: "Paw",
  31959. image: {
  31960. source: "./media/characters/tarn/paw.svg"
  31961. }
  31962. },
  31963. tongue: {
  31964. height: math.unit(0.97, "feet"),
  31965. name: "Tongue",
  31966. image: {
  31967. source: "./media/characters/tarn/tongue.svg"
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Micro",
  31974. height: math.unit(4, "inches")
  31975. },
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(6 + 7/12, "feet"),
  31979. default: true
  31980. },
  31981. {
  31982. name: "Macro",
  31983. height: math.unit(300, "feet")
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(5 + 7/12, "feet"),
  31992. weight: math.unit(80, "kg"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31996. extra: 3023/2865,
  31997. bottom: 33/3056
  31998. }
  31999. },
  32000. back: {
  32001. height: math.unit(5 + 7/12, "feet"),
  32002. weight: math.unit(80, "kg"),
  32003. name: "Back",
  32004. image: {
  32005. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32006. extra: 3020/2886,
  32007. bottom: 30/3050
  32008. }
  32009. },
  32010. dick: {
  32011. height: math.unit(0.98, "feet"),
  32012. name: "Dick",
  32013. image: {
  32014. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32015. }
  32016. },
  32017. anatomy: {
  32018. height: math.unit(2.86, "feet"),
  32019. name: "Anatomy",
  32020. image: {
  32021. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Really Small",
  32028. height: math.unit(2, "inches")
  32029. },
  32030. {
  32031. name: "Micro",
  32032. height: math.unit(5.583, "inches")
  32033. },
  32034. {
  32035. name: "Normal",
  32036. height: math.unit(5 + 7/12, "feet"),
  32037. default: true
  32038. },
  32039. {
  32040. name: "Macro",
  32041. height: math.unit(67, "feet")
  32042. },
  32043. {
  32044. name: "Megamacro",
  32045. height: math.unit(134, "feet")
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32051. {
  32052. front: {
  32053. height: math.unit(9, "feet"),
  32054. weight: math.unit(120, "lb"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/sally/front.svg",
  32058. extra: 1506/1349,
  32059. bottom: 66/1572
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(9, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(8, "feet"),
  32076. weight: math.unit(900, "lb"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/owen/front.svg",
  32080. extra: 1761/1657,
  32081. bottom: 74/1835
  32082. }
  32083. },
  32084. side: {
  32085. height: math.unit(8, "feet"),
  32086. weight: math.unit(900, "lb"),
  32087. name: "Side",
  32088. image: {
  32089. source: "./media/characters/owen/side.svg",
  32090. extra: 1797/1734,
  32091. bottom: 30/1827
  32092. }
  32093. },
  32094. back: {
  32095. height: math.unit(8, "feet"),
  32096. weight: math.unit(900, "lb"),
  32097. name: "Back",
  32098. image: {
  32099. source: "./media/characters/owen/back.svg",
  32100. extra: 1796/1706,
  32101. bottom: 59/1855
  32102. }
  32103. },
  32104. maw: {
  32105. height: math.unit(1.76, "feet"),
  32106. name: "Maw",
  32107. image: {
  32108. source: "./media/characters/owen/maw.svg"
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(8, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32122. {
  32123. front: {
  32124. height: math.unit(4, "feet"),
  32125. weight: math.unit(400, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/ryth/front.svg",
  32129. extra: 1920/1748,
  32130. bottom: 42/1962
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(4, "feet"),
  32135. weight: math.unit(400, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/ryth/back.svg",
  32139. extra: 1897/1690,
  32140. bottom: 89/1986
  32141. }
  32142. },
  32143. mouth: {
  32144. height: math.unit(1.39, "feet"),
  32145. name: "Mouth",
  32146. image: {
  32147. source: "./media/characters/ryth/mouth.svg"
  32148. }
  32149. },
  32150. tailmaw: {
  32151. height: math.unit(1.23, "feet"),
  32152. name: "Tailmaw",
  32153. image: {
  32154. source: "./media/characters/ryth/tailmaw.svg"
  32155. }
  32156. },
  32157. goia: {
  32158. height: math.unit(4, "meters"),
  32159. weight: math.unit(10800, "lb"),
  32160. name: "Goia",
  32161. image: {
  32162. source: "./media/characters/ryth/goia.svg",
  32163. extra: 745/640,
  32164. bottom: 107/852
  32165. }
  32166. },
  32167. goiaFront: {
  32168. height: math.unit(4, "meters"),
  32169. weight: math.unit(10800, "lb"),
  32170. name: "Goia (Front)",
  32171. image: {
  32172. source: "./media/characters/ryth/goia-front.svg",
  32173. extra: 750/586,
  32174. bottom: 114/864
  32175. }
  32176. },
  32177. goiaMaw: {
  32178. height: math.unit(5.55, "feet"),
  32179. name: "Goia Maw",
  32180. image: {
  32181. source: "./media/characters/ryth/goia-maw.svg"
  32182. }
  32183. },
  32184. goiaForepaw: {
  32185. height: math.unit(3.5, "feet"),
  32186. name: "Goia Forepaw",
  32187. image: {
  32188. source: "./media/characters/ryth/goia-forepaw.svg"
  32189. }
  32190. },
  32191. goiaHindpaw: {
  32192. height: math.unit(5.55, "feet"),
  32193. name: "Goia Hindpaw",
  32194. image: {
  32195. source: "./media/characters/ryth/goia-hindpaw.svg"
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Normal",
  32202. height: math.unit(4, "feet"),
  32203. default: true
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32209. {
  32210. front: {
  32211. height: math.unit(7, "feet"),
  32212. weight: math.unit(180, "lb"),
  32213. name: "Front",
  32214. image: {
  32215. source: "./media/characters/necrolance/front.svg",
  32216. extra: 1062/947,
  32217. bottom: 41/1103
  32218. }
  32219. },
  32220. back: {
  32221. height: math.unit(7, "feet"),
  32222. weight: math.unit(180, "lb"),
  32223. name: "Back",
  32224. image: {
  32225. source: "./media/characters/necrolance/back.svg",
  32226. extra: 1045/984,
  32227. bottom: 14/1059
  32228. }
  32229. },
  32230. wing: {
  32231. height: math.unit(2.67, "feet"),
  32232. name: "Wing",
  32233. image: {
  32234. source: "./media/characters/necrolance/wing.svg"
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Normal",
  32241. height: math.unit(7, "feet"),
  32242. default: true
  32243. },
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32248. {
  32249. front: {
  32250. height: math.unit(76, "meters"),
  32251. weight: math.unit(30000, "tons"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/tyler/front.svg",
  32255. extra: 1640/1640,
  32256. bottom: 114/1754
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Macro",
  32263. height: math.unit(76, "meters"),
  32264. default: true
  32265. },
  32266. ]
  32267. ))
  32268. characterMakers.push(() => makeCharacter(
  32269. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32270. {
  32271. front: {
  32272. height: math.unit(4 + 11/12, "feet"),
  32273. weight: math.unit(132, "lb"),
  32274. name: "Front",
  32275. image: {
  32276. source: "./media/characters/icey/front.svg",
  32277. extra: 2750/2550,
  32278. bottom: 33/2783
  32279. }
  32280. },
  32281. back: {
  32282. height: math.unit(4 + 11/12, "feet"),
  32283. weight: math.unit(132, "lb"),
  32284. name: "Back",
  32285. image: {
  32286. source: "./media/characters/icey/back.svg",
  32287. extra: 2624/2481,
  32288. bottom: 35/2659
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(4 + 11/12, "feet"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(100, "feet"),
  32305. weight: math.unit(0, "lb"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/smile/front.svg",
  32309. extra: 2983/2912,
  32310. bottom: 162/3145
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(100, "feet"),
  32315. weight: math.unit(0, "lb"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/smile/back.svg",
  32319. extra: 3143/3031,
  32320. bottom: 91/3234
  32321. }
  32322. },
  32323. head: {
  32324. height: math.unit(26.3, "feet"),
  32325. weight: math.unit(0, "lb"),
  32326. name: "Head",
  32327. image: {
  32328. source: "./media/characters/smile/head.svg"
  32329. }
  32330. },
  32331. collar: {
  32332. height: math.unit(5.3, "feet"),
  32333. weight: math.unit(0, "lb"),
  32334. name: "Collar",
  32335. image: {
  32336. source: "./media/characters/smile/collar.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Macro",
  32343. height: math.unit(100, "feet"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32350. {
  32351. dragon: {
  32352. height: math.unit(26, "feet"),
  32353. weight: math.unit(36, "tons"),
  32354. name: "Dragon",
  32355. image: {
  32356. source: "./media/characters/arimphae/dragon.svg",
  32357. extra: 1574/983,
  32358. bottom: 357/1931
  32359. }
  32360. },
  32361. drake: {
  32362. height: math.unit(9, "feet"),
  32363. weight: math.unit(1.5, "tons"),
  32364. name: "Drake",
  32365. image: {
  32366. source: "./media/characters/arimphae/drake.svg",
  32367. extra: 1120/925,
  32368. bottom: 435/1555
  32369. }
  32370. },
  32371. },
  32372. [
  32373. {
  32374. name: "Small",
  32375. height: math.unit(26*5/9, "feet")
  32376. },
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(26, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(8 + 9/12, "feet"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/xander/front.svg",
  32392. extra: 1237/974,
  32393. bottom: 94/1331
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(8 + 9/12, "feet"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Gaze Grabber",
  32405. height: math.unit(13 + 8/12, "feet")
  32406. },
  32407. {
  32408. name: "Jaw Dropper",
  32409. height: math.unit(27, "feet")
  32410. },
  32411. {
  32412. name: "Show Stopper",
  32413. height: math.unit(136, "feet")
  32414. },
  32415. {
  32416. name: "Superstar",
  32417. height: math.unit(1.9e6, "miles")
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32423. {
  32424. side: {
  32425. height: math.unit(2100, "feet"),
  32426. name: "Side",
  32427. image: {
  32428. source: "./media/characters/osiris/side.svg",
  32429. extra: 1105/939,
  32430. bottom: 167/1272
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Macro",
  32437. height: math.unit(2100, "feet"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(6 + 8/12, "feet"),
  32447. weight: math.unit(225, "lb"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/rhys-londe/front.svg",
  32451. extra: 2258/2141,
  32452. bottom: 188/2446
  32453. }
  32454. },
  32455. back: {
  32456. height: math.unit(6 + 8/12, "feet"),
  32457. weight: math.unit(225, "lb"),
  32458. name: "Back",
  32459. image: {
  32460. source: "./media/characters/rhys-londe/back.svg",
  32461. extra: 2237/2137,
  32462. bottom: 63/2300
  32463. }
  32464. },
  32465. frontNsfw: {
  32466. height: math.unit(6 + 8/12, "feet"),
  32467. weight: math.unit(225, "lb"),
  32468. name: "Front (NSFW)",
  32469. image: {
  32470. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32471. extra: 2258/2141,
  32472. bottom: 188/2446
  32473. }
  32474. },
  32475. backNsfw: {
  32476. height: math.unit(6 + 8/12, "feet"),
  32477. weight: math.unit(225, "lb"),
  32478. name: "Back (NSFW)",
  32479. image: {
  32480. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32481. extra: 2237/2137,
  32482. bottom: 63/2300
  32483. }
  32484. },
  32485. dick: {
  32486. height: math.unit(30, "inches"),
  32487. name: "Dick",
  32488. image: {
  32489. source: "./media/characters/rhys-londe/dick.svg"
  32490. }
  32491. },
  32492. maw: {
  32493. height: math.unit(1.6, "feet"),
  32494. name: "Maw",
  32495. image: {
  32496. source: "./media/characters/rhys-londe/maw.svg"
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(6 + 8/12, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(3 + 10/12, "feet"),
  32513. weight: math.unit(90, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/taivas-ensim/front.svg",
  32517. extra: 1327/1216,
  32518. bottom: 96/1423
  32519. }
  32520. },
  32521. back: {
  32522. height: math.unit(3 + 10/12, "feet"),
  32523. weight: math.unit(90, "lb"),
  32524. name: "Back",
  32525. image: {
  32526. source: "./media/characters/taivas-ensim/back.svg",
  32527. extra: 1355/1247,
  32528. bottom: 11/1366
  32529. }
  32530. },
  32531. frontNsfw: {
  32532. height: math.unit(3 + 10/12, "feet"),
  32533. weight: math.unit(90, "lb"),
  32534. name: "Front (NSFW)",
  32535. image: {
  32536. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32537. extra: 1327/1216,
  32538. bottom: 96/1423
  32539. }
  32540. },
  32541. backNsfw: {
  32542. height: math.unit(3 + 10/12, "feet"),
  32543. weight: math.unit(90, "lb"),
  32544. name: "Back (NSFW)",
  32545. image: {
  32546. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32547. extra: 1355/1247,
  32548. bottom: 11/1366
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(3 + 10/12, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32562. {
  32563. front: {
  32564. height: math.unit(9 + 6/12, "feet"),
  32565. weight: math.unit(940, "lb"),
  32566. name: "Front",
  32567. image: {
  32568. source: "./media/characters/byliss/front.svg",
  32569. extra: 1327/1290,
  32570. bottom: 82/1409
  32571. }
  32572. },
  32573. back: {
  32574. height: math.unit(9 + 6/12, "feet"),
  32575. weight: math.unit(940, "lb"),
  32576. name: "Back",
  32577. image: {
  32578. source: "./media/characters/byliss/back.svg",
  32579. extra: 1376/1349,
  32580. bottom: 9/1385
  32581. }
  32582. },
  32583. frontNsfw: {
  32584. height: math.unit(9 + 6/12, "feet"),
  32585. weight: math.unit(940, "lb"),
  32586. name: "Front (NSFW)",
  32587. image: {
  32588. source: "./media/characters/byliss/front-nsfw.svg",
  32589. extra: 1327/1290,
  32590. bottom: 82/1409
  32591. }
  32592. },
  32593. backNsfw: {
  32594. height: math.unit(9 + 6/12, "feet"),
  32595. weight: math.unit(940, "lb"),
  32596. name: "Back (NSFW)",
  32597. image: {
  32598. source: "./media/characters/byliss/back-nsfw.svg",
  32599. extra: 1376/1349,
  32600. bottom: 9/1385
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Normal",
  32607. height: math.unit(9 + 6/12, "feet"),
  32608. default: true
  32609. },
  32610. ]
  32611. ))
  32612. characterMakers.push(() => makeCharacter(
  32613. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32614. {
  32615. front: {
  32616. height: math.unit(5 + 2/12, "feet"),
  32617. weight: math.unit(200, "lb"),
  32618. name: "Front",
  32619. image: {
  32620. source: "./media/characters/noraly/front.svg",
  32621. extra: 4985/4773,
  32622. bottom: 150/5135
  32623. }
  32624. },
  32625. full: {
  32626. height: math.unit(5 + 2/12, "feet"),
  32627. weight: math.unit(164, "lb"),
  32628. name: "Full",
  32629. image: {
  32630. source: "./media/characters/noraly/full.svg",
  32631. extra: 1114/1059,
  32632. bottom: 35/1149
  32633. }
  32634. },
  32635. fuller: {
  32636. height: math.unit(5 + 2/12, "feet"),
  32637. weight: math.unit(230, "lb"),
  32638. name: "Fuller",
  32639. image: {
  32640. source: "./media/characters/noraly/fuller.svg",
  32641. extra: 1114/1059,
  32642. bottom: 35/1149
  32643. }
  32644. },
  32645. fullest: {
  32646. height: math.unit(5 + 2/12, "feet"),
  32647. weight: math.unit(300, "lb"),
  32648. name: "Fullest",
  32649. image: {
  32650. source: "./media/characters/noraly/fullest.svg",
  32651. extra: 1114/1059,
  32652. bottom: 35/1149
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Normal",
  32659. height: math.unit(5 + 2/12, "feet"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32666. {
  32667. front: {
  32668. height: math.unit(5 + 2/12, "feet"),
  32669. weight: math.unit(210, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/pera/front.svg",
  32673. extra: 1560/1531,
  32674. bottom: 165/1725
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(5 + 2/12, "feet"),
  32679. weight: math.unit(210, "lb"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/pera/back.svg",
  32683. extra: 1523/1493,
  32684. bottom: 152/1675
  32685. }
  32686. },
  32687. dick: {
  32688. height: math.unit(2.4, "feet"),
  32689. name: "Dick",
  32690. image: {
  32691. source: "./media/characters/pera/dick.svg"
  32692. }
  32693. },
  32694. },
  32695. [
  32696. {
  32697. name: "Normal",
  32698. height: math.unit(5 + 2/12, "feet"),
  32699. default: true
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32705. {
  32706. front: {
  32707. height: math.unit(12, "feet"),
  32708. weight: math.unit(3200, "lb"),
  32709. name: "Front",
  32710. image: {
  32711. source: "./media/characters/julian/front.svg",
  32712. extra: 2962/2701,
  32713. bottom: 184/3146
  32714. }
  32715. },
  32716. maw: {
  32717. height: math.unit(5.35, "feet"),
  32718. name: "Maw",
  32719. image: {
  32720. source: "./media/characters/julian/maw.svg"
  32721. }
  32722. },
  32723. paw: {
  32724. height: math.unit(3.07, "feet"),
  32725. name: "Paw",
  32726. image: {
  32727. source: "./media/characters/julian/paw.svg"
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Default",
  32734. height: math.unit(12, "feet"),
  32735. default: true
  32736. },
  32737. {
  32738. name: "Big",
  32739. height: math.unit(50, "feet")
  32740. },
  32741. {
  32742. name: "Really Big",
  32743. height: math.unit(1, "mile")
  32744. },
  32745. {
  32746. name: "Extremely Big",
  32747. height: math.unit(100, "miles")
  32748. },
  32749. {
  32750. name: "Planet Hugger",
  32751. height: math.unit(200, "megameters")
  32752. },
  32753. {
  32754. name: "Unreasonably Big",
  32755. height: math.unit(1e300, "meters")
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32761. {
  32762. solgooleo: {
  32763. height: math.unit(4, "meters"),
  32764. weight: math.unit(6000*1.5, "kg"),
  32765. volume: math.unit(6000, "liters"),
  32766. name: "Solgooleo",
  32767. image: {
  32768. source: "./media/characters/pi/solgooleo.svg",
  32769. extra: 388/331,
  32770. bottom: 29/417
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(4, "meters"),
  32778. default: true
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(8, "feet"),
  32787. weight: math.unit(4, "tons"),
  32788. name: "Front",
  32789. image: {
  32790. source: "./media/characters/shaun/front.svg",
  32791. extra: 503/495,
  32792. bottom: 20/523
  32793. }
  32794. },
  32795. back: {
  32796. height: math.unit(8, "feet"),
  32797. weight: math.unit(4, "tons"),
  32798. name: "Back",
  32799. image: {
  32800. source: "./media/characters/shaun/back.svg",
  32801. extra: 487/480,
  32802. bottom: 20/507
  32803. }
  32804. },
  32805. },
  32806. [
  32807. {
  32808. name: "Lorg",
  32809. height: math.unit(8, "feet"),
  32810. default: true
  32811. },
  32812. ]
  32813. ))
  32814. characterMakers.push(() => makeCharacter(
  32815. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32816. {
  32817. front: {
  32818. height: math.unit(7, "feet"),
  32819. name: "Front",
  32820. image: {
  32821. source: "./media/characters/sini/front.svg",
  32822. extra: 726/678,
  32823. bottom: 35/761
  32824. }
  32825. },
  32826. back: {
  32827. height: math.unit(7, "feet"),
  32828. name: "Back",
  32829. image: {
  32830. source: "./media/characters/sini/back.svg",
  32831. extra: 743/701,
  32832. bottom: 12/755
  32833. }
  32834. },
  32835. mawAnthro: {
  32836. height: math.unit(2.14, "feet"),
  32837. name: "Maw (Anthro)",
  32838. image: {
  32839. source: "./media/characters/sini/maw-anthro.svg"
  32840. }
  32841. },
  32842. dick: {
  32843. height: math.unit(1.45, "feet"),
  32844. name: "Dick (Anthro)",
  32845. image: {
  32846. source: "./media/characters/sini/dick-anthro.svg"
  32847. }
  32848. },
  32849. feral: {
  32850. height: math.unit(16, "feet"),
  32851. name: "Feral",
  32852. image: {
  32853. source: "./media/characters/sini/feral.svg",
  32854. extra: 814/605,
  32855. bottom: 11/825
  32856. }
  32857. },
  32858. mawFeral: {
  32859. height: math.unit(5.66, "feet"),
  32860. name: "Maw-feral",
  32861. image: {
  32862. source: "./media/characters/sini/maw-feral.svg"
  32863. }
  32864. },
  32865. footFeral: {
  32866. height: math.unit(5.17, "feet"),
  32867. name: "Foot-feral",
  32868. image: {
  32869. source: "./media/characters/sini/foot-feral.svg"
  32870. }
  32871. },
  32872. },
  32873. [
  32874. {
  32875. name: "Normal",
  32876. height: math.unit(7, "feet"),
  32877. default: true
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32883. {
  32884. side: {
  32885. height: math.unit(13, "meters"),
  32886. weight: math.unit(9072, "kg"),
  32887. name: "Side",
  32888. image: {
  32889. source: "./media/characters/raylldo/side.svg",
  32890. extra: 403/344,
  32891. bottom: 42/445
  32892. }
  32893. },
  32894. leaping: {
  32895. height: math.unit(12.3, "meters"),
  32896. weight: math.unit(9072, "kg"),
  32897. name: "Leaping",
  32898. image: {
  32899. source: "./media/characters/raylldo/leaping.svg",
  32900. extra: 470/249,
  32901. bottom: 13/483
  32902. }
  32903. },
  32904. flying: {
  32905. height: math.unit(18, "meters"),
  32906. weight: math.unit(9072, "kg"),
  32907. name: "Flying",
  32908. image: {
  32909. source: "./media/characters/raylldo/flying.svg"
  32910. }
  32911. },
  32912. head: {
  32913. height: math.unit(5.85, "meters"),
  32914. name: "Head",
  32915. image: {
  32916. source: "./media/characters/raylldo/head.svg"
  32917. }
  32918. },
  32919. maw: {
  32920. height: math.unit(5.32, "meters"),
  32921. name: "Maw",
  32922. image: {
  32923. source: "./media/characters/raylldo/maw.svg"
  32924. }
  32925. },
  32926. eye: {
  32927. height: math.unit(0.54, "meters"),
  32928. name: "Eye",
  32929. image: {
  32930. source: "./media/characters/raylldo/eye.svg"
  32931. }
  32932. },
  32933. },
  32934. [
  32935. {
  32936. name: "Normal",
  32937. height: math.unit(13, "meters"),
  32938. default: true
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32944. {
  32945. anthroFront: {
  32946. height: math.unit(9, "feet"),
  32947. weight: math.unit(600, "lb"),
  32948. name: "Anthro (Front)",
  32949. image: {
  32950. source: "./media/characters/glint/anthro-front.svg",
  32951. extra: 1097/1018,
  32952. bottom: 28/1125
  32953. }
  32954. },
  32955. anthroBack: {
  32956. height: math.unit(9, "feet"),
  32957. weight: math.unit(600, "lb"),
  32958. name: "Anthro (Back)",
  32959. image: {
  32960. source: "./media/characters/glint/anthro-back.svg",
  32961. extra: 1154/997,
  32962. bottom: 36/1190
  32963. }
  32964. },
  32965. feral: {
  32966. height: math.unit(11, "feet"),
  32967. weight: math.unit(50000, "lb"),
  32968. name: "Feral",
  32969. image: {
  32970. source: "./media/characters/glint/feral.svg",
  32971. extra: 3035/1585,
  32972. bottom: 1169/4204
  32973. }
  32974. },
  32975. dickAnthro: {
  32976. height: math.unit(0.7, "meters"),
  32977. name: "Dick (Anthro)",
  32978. image: {
  32979. source: "./media/characters/glint/dick-anthro.svg"
  32980. }
  32981. },
  32982. dickFeral: {
  32983. height: math.unit(2.65, "meters"),
  32984. name: "Dick (Feral)",
  32985. image: {
  32986. source: "./media/characters/glint/dick-feral.svg"
  32987. }
  32988. },
  32989. slitHidden: {
  32990. height: math.unit(5.85, "meters"),
  32991. name: "Slit (Hidden)",
  32992. image: {
  32993. source: "./media/characters/glint/slit-hidden.svg"
  32994. }
  32995. },
  32996. slitErect: {
  32997. height: math.unit(5.85, "meters"),
  32998. name: "Slit (Erect)",
  32999. image: {
  33000. source: "./media/characters/glint/slit-erect.svg"
  33001. }
  33002. },
  33003. mawAnthro: {
  33004. height: math.unit(0.63, "meters"),
  33005. name: "Maw (Anthro)",
  33006. image: {
  33007. source: "./media/characters/glint/maw.svg"
  33008. }
  33009. },
  33010. mawFeral: {
  33011. height: math.unit(2.89, "meters"),
  33012. name: "Maw (Feral)",
  33013. image: {
  33014. source: "./media/characters/glint/maw.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(9, "feet"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33028. {
  33029. side: {
  33030. height: math.unit(15, "feet"),
  33031. weight: math.unit(5000, "kg"),
  33032. name: "Side",
  33033. image: {
  33034. source: "./media/characters/kairne/side.svg",
  33035. extra: 979/811,
  33036. bottom: 13/992
  33037. }
  33038. },
  33039. front: {
  33040. height: math.unit(15, "feet"),
  33041. weight: math.unit(5000, "kg"),
  33042. name: "Front",
  33043. image: {
  33044. source: "./media/characters/kairne/front.svg",
  33045. extra: 908/814,
  33046. bottom: 26/934
  33047. }
  33048. },
  33049. sideNsfw: {
  33050. height: math.unit(15, "feet"),
  33051. weight: math.unit(5000, "kg"),
  33052. name: "Side (NSFW)",
  33053. image: {
  33054. source: "./media/characters/kairne/side-nsfw.svg",
  33055. extra: 979/811,
  33056. bottom: 13/992
  33057. }
  33058. },
  33059. frontNsfw: {
  33060. height: math.unit(15, "feet"),
  33061. weight: math.unit(5000, "kg"),
  33062. name: "Front (NSFW)",
  33063. image: {
  33064. source: "./media/characters/kairne/front-nsfw.svg",
  33065. extra: 908/814,
  33066. bottom: 26/934
  33067. }
  33068. },
  33069. dickCaged: {
  33070. height: math.unit(0.65, "meters"),
  33071. name: "Dick-caged",
  33072. image: {
  33073. source: "./media/characters/kairne/dick-caged.svg"
  33074. }
  33075. },
  33076. dick: {
  33077. height: math.unit(0.79, "meters"),
  33078. name: "Dick",
  33079. image: {
  33080. source: "./media/characters/kairne/dick.svg"
  33081. }
  33082. },
  33083. genitals: {
  33084. height: math.unit(1.29, "meters"),
  33085. name: "Genitals",
  33086. image: {
  33087. source: "./media/characters/kairne/genitals.svg"
  33088. }
  33089. },
  33090. maw: {
  33091. height: math.unit(1.73, "meters"),
  33092. name: "Maw",
  33093. image: {
  33094. source: "./media/characters/kairne/maw.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(15, "feet"),
  33102. default: true
  33103. },
  33104. ]
  33105. ))
  33106. characterMakers.push(() => makeCharacter(
  33107. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33108. {
  33109. front: {
  33110. height: math.unit(5 + 8/12, "feet"),
  33111. weight: math.unit(139, "lb"),
  33112. name: "Front",
  33113. image: {
  33114. source: "./media/characters/biscuit-jackal/front.svg",
  33115. extra: 2106/1961,
  33116. bottom: 58/2164
  33117. }
  33118. },
  33119. back: {
  33120. height: math.unit(5 + 8/12, "feet"),
  33121. weight: math.unit(139, "lb"),
  33122. name: "Back",
  33123. image: {
  33124. source: "./media/characters/biscuit-jackal/back.svg",
  33125. extra: 2132/1976,
  33126. bottom: 57/2189
  33127. }
  33128. },
  33129. werejackal: {
  33130. height: math.unit(6 + 3/12, "feet"),
  33131. weight: math.unit(188, "lb"),
  33132. name: "Werejackal",
  33133. image: {
  33134. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33135. extra: 2373/2178,
  33136. bottom: 53/2426
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(5 + 8/12, "feet"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(140, "cm"),
  33153. weight: math.unit(45, "kg"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/tayra-white/front.svg",
  33157. extra: 2229/2192,
  33158. bottom: 75/2304
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(140, "cm"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(4 + 5/12, "feet"),
  33175. name: "Front",
  33176. image: {
  33177. source: "./media/characters/scoop/front.svg",
  33178. extra: 1257/1136,
  33179. bottom: 69/1326
  33180. }
  33181. },
  33182. back: {
  33183. height: math.unit(4 + 5/12, "feet"),
  33184. name: "Back",
  33185. image: {
  33186. source: "./media/characters/scoop/back.svg",
  33187. extra: 1321/1152,
  33188. bottom: 32/1353
  33189. }
  33190. },
  33191. maw: {
  33192. height: math.unit(0.68, "feet"),
  33193. name: "Maw",
  33194. image: {
  33195. source: "./media/characters/scoop/maw.svg"
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Really Small",
  33202. height: math.unit(1, "mm")
  33203. },
  33204. {
  33205. name: "Micro",
  33206. height: math.unit(1, "inch")
  33207. },
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(4 + 5/12, "feet"),
  33211. default: true
  33212. },
  33213. {
  33214. name: "Macro",
  33215. height: math.unit(200, "feet")
  33216. },
  33217. {
  33218. name: "Megamacro",
  33219. height: math.unit(3240, "feet")
  33220. },
  33221. {
  33222. name: "Teramacro",
  33223. height: math.unit(2500, "miles")
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33229. {
  33230. front: {
  33231. height: math.unit(15 + 7/12, "feet"),
  33232. name: "Front",
  33233. image: {
  33234. source: "./media/characters/saphinara/front.svg",
  33235. extra: 604/546,
  33236. bottom: 19/623
  33237. }
  33238. },
  33239. side: {
  33240. height: math.unit(15 + 7/12, "feet"),
  33241. name: "Side",
  33242. image: {
  33243. source: "./media/characters/saphinara/side.svg",
  33244. extra: 605/547,
  33245. bottom: 6/611
  33246. }
  33247. },
  33248. back: {
  33249. height: math.unit(15 + 7/12, "feet"),
  33250. name: "Back",
  33251. image: {
  33252. source: "./media/characters/saphinara/back.svg",
  33253. extra: 591/531,
  33254. bottom: 13/604
  33255. }
  33256. },
  33257. frontTail: {
  33258. height: math.unit(15 + 7/12, "feet"),
  33259. name: "Front (Full Tail)",
  33260. image: {
  33261. source: "./media/characters/saphinara/front-tail.svg",
  33262. extra: 748/547,
  33263. bottom: 66/814
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Normal",
  33270. height: math.unit(15 + 7/12, "feet"),
  33271. default: true
  33272. },
  33273. {
  33274. name: "Angry",
  33275. height: math.unit(30 + 6/12, "feet")
  33276. },
  33277. {
  33278. name: "Enraged",
  33279. height: math.unit(102 + 1/12, "feet")
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(6 + 8/12, "feet"),
  33288. weight: math.unit(300, "lb"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/jrain/front.svg",
  33292. extra: 3039/2865,
  33293. bottom: 399/3438
  33294. }
  33295. },
  33296. back: {
  33297. height: math.unit(6 + 8/12, "feet"),
  33298. weight: math.unit(300, "lb"),
  33299. name: "Back",
  33300. image: {
  33301. source: "./media/characters/jrain/back.svg",
  33302. extra: 3089/2938,
  33303. bottom: 172/3261
  33304. }
  33305. },
  33306. head: {
  33307. height: math.unit(2.14, "feet"),
  33308. name: "Head",
  33309. image: {
  33310. source: "./media/characters/jrain/head.svg"
  33311. }
  33312. },
  33313. maw: {
  33314. height: math.unit(1.77, "feet"),
  33315. name: "Maw",
  33316. image: {
  33317. source: "./media/characters/jrain/maw.svg"
  33318. }
  33319. },
  33320. leftHand: {
  33321. height: math.unit(1.1, "feet"),
  33322. name: "Left Hand",
  33323. image: {
  33324. source: "./media/characters/jrain/left-hand.svg"
  33325. }
  33326. },
  33327. rightHand: {
  33328. height: math.unit(1.1, "feet"),
  33329. name: "Right Hand",
  33330. image: {
  33331. source: "./media/characters/jrain/right-hand.svg"
  33332. }
  33333. },
  33334. eye: {
  33335. height: math.unit(0.35, "feet"),
  33336. name: "Eye",
  33337. image: {
  33338. source: "./media/characters/jrain/eye.svg"
  33339. }
  33340. },
  33341. },
  33342. [
  33343. {
  33344. name: "Normal",
  33345. height: math.unit(6 + 8/12, "feet"),
  33346. default: true
  33347. },
  33348. {
  33349. name: "Casually Large",
  33350. height: math.unit(25, "feet")
  33351. },
  33352. {
  33353. name: "Giant",
  33354. height: math.unit(100, "feet")
  33355. },
  33356. {
  33357. name: "Kaiju",
  33358. height: math.unit(300, "feet")
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33364. {
  33365. dragon: {
  33366. height: math.unit(5, "meters"),
  33367. name: "Dragon",
  33368. image: {
  33369. source: "./media/characters/sabrina/dragon.svg",
  33370. extra: 3670 / 2365,
  33371. bottom: 333 / 4003
  33372. }
  33373. },
  33374. gryphon: {
  33375. height: math.unit(3, "meters"),
  33376. name: "Gryphon",
  33377. image: {
  33378. source: "./media/characters/sabrina/gryphon.svg",
  33379. extra: 1576 / 945,
  33380. bottom: 71 / 1647
  33381. }
  33382. },
  33383. snake: {
  33384. height: math.unit(12, "meters"),
  33385. name: "Snake",
  33386. image: {
  33387. source: "./media/characters/sabrina/snake.svg",
  33388. extra: 1758 / 1320,
  33389. bottom: 186 / 1944
  33390. }
  33391. },
  33392. collar: {
  33393. height: math.unit(1.86, "meters"),
  33394. name: "Collar",
  33395. image: {
  33396. source: "./media/characters/sabrina/collar.svg"
  33397. }
  33398. },
  33399. eye: {
  33400. height: math.unit(0.53, "meters"),
  33401. name: "Eye",
  33402. image: {
  33403. source: "./media/characters/sabrina/eye.svg"
  33404. }
  33405. },
  33406. foot: {
  33407. height: math.unit(1.86, "meters"),
  33408. name: "Foot",
  33409. image: {
  33410. source: "./media/characters/sabrina/foot.svg"
  33411. }
  33412. },
  33413. hand: {
  33414. height: math.unit(1.32, "meters"),
  33415. name: "Hand",
  33416. image: {
  33417. source: "./media/characters/sabrina/hand.svg"
  33418. }
  33419. },
  33420. head: {
  33421. height: math.unit(2.44, "meters"),
  33422. name: "Head",
  33423. image: {
  33424. source: "./media/characters/sabrina/head.svg"
  33425. }
  33426. },
  33427. headAngry: {
  33428. height: math.unit(2.44, "meters"),
  33429. name: "Head (Angry))",
  33430. image: {
  33431. source: "./media/characters/sabrina/head-angry.svg"
  33432. }
  33433. },
  33434. maw: {
  33435. height: math.unit(1.65, "meters"),
  33436. name: "Maw",
  33437. image: {
  33438. source: "./media/characters/sabrina/maw.svg"
  33439. }
  33440. },
  33441. spikes: {
  33442. height: math.unit(1.69, "meters"),
  33443. name: "Spikes",
  33444. image: {
  33445. source: "./media/characters/sabrina/spikes.svg"
  33446. }
  33447. },
  33448. stomach: {
  33449. height: math.unit(1.15, "meters"),
  33450. name: "Stomach",
  33451. image: {
  33452. source: "./media/characters/sabrina/stomach.svg"
  33453. }
  33454. },
  33455. tongue: {
  33456. height: math.unit(1.27, "meters"),
  33457. name: "Tongue",
  33458. image: {
  33459. source: "./media/characters/sabrina/tongue.svg"
  33460. }
  33461. },
  33462. wingDorsal: {
  33463. height: math.unit(4.85, "meters"),
  33464. name: "Wing (Dorsal)",
  33465. image: {
  33466. source: "./media/characters/sabrina/wing-dorsal.svg"
  33467. }
  33468. },
  33469. wingVentral: {
  33470. height: math.unit(4.85, "meters"),
  33471. name: "Wing (Ventral)",
  33472. image: {
  33473. source: "./media/characters/sabrina/wing-ventral.svg"
  33474. }
  33475. },
  33476. },
  33477. [
  33478. {
  33479. name: "Normal",
  33480. height: math.unit(5, "meters"),
  33481. default: true
  33482. },
  33483. ]
  33484. ))
  33485. characterMakers.push(() => makeCharacter(
  33486. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33487. {
  33488. frontMaid: {
  33489. height: math.unit(5 + 5/12, "feet"),
  33490. weight: math.unit(130, "lb"),
  33491. name: "Front (Maid)",
  33492. image: {
  33493. source: "./media/characters/midnight-tales/front-maid.svg",
  33494. extra: 489/454,
  33495. bottom: 61/550
  33496. }
  33497. },
  33498. frontFormal: {
  33499. height: math.unit(5 + 5/12, "feet"),
  33500. weight: math.unit(130, "lb"),
  33501. name: "Front (Formal)",
  33502. image: {
  33503. source: "./media/characters/midnight-tales/front-formal.svg",
  33504. extra: 489/454,
  33505. bottom: 61/550
  33506. }
  33507. },
  33508. back: {
  33509. height: math.unit(5 + 5/12, "feet"),
  33510. weight: math.unit(130, "lb"),
  33511. name: "Back",
  33512. image: {
  33513. source: "./media/characters/midnight-tales/back.svg",
  33514. extra: 498/456,
  33515. bottom: 33/531
  33516. }
  33517. },
  33518. frontBeast: {
  33519. height: math.unit(40, "feet"),
  33520. weight: math.unit(64000, "lb"),
  33521. name: "Front (Beast)",
  33522. image: {
  33523. source: "./media/characters/midnight-tales/front-beast.svg",
  33524. extra: 927/860,
  33525. bottom: 53/980
  33526. }
  33527. },
  33528. backBeast: {
  33529. height: math.unit(40, "feet"),
  33530. weight: math.unit(64000, "lb"),
  33531. name: "Back (Beast)",
  33532. image: {
  33533. source: "./media/characters/midnight-tales/back-beast.svg",
  33534. extra: 929/855,
  33535. bottom: 16/945
  33536. }
  33537. },
  33538. footBeast: {
  33539. height: math.unit(6.7, "feet"),
  33540. name: "Foot (Beast)",
  33541. image: {
  33542. source: "./media/characters/midnight-tales/foot-beast.svg"
  33543. }
  33544. },
  33545. headBeast: {
  33546. height: math.unit(8, "feet"),
  33547. name: "Head (Beast)",
  33548. image: {
  33549. source: "./media/characters/midnight-tales/head-beast.svg"
  33550. }
  33551. },
  33552. },
  33553. [
  33554. {
  33555. name: "Normal",
  33556. height: math.unit(5 + 5 / 12, "feet"),
  33557. default: true
  33558. },
  33559. {
  33560. name: "Macro",
  33561. height: math.unit(25, "feet")
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(5 + 10/12, "feet"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/argon/front.svg",
  33573. extra: 2009/1935,
  33574. bottom: 118/2127
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(5 + 10/12, "feet"),
  33579. name: "Back",
  33580. image: {
  33581. source: "./media/characters/argon/back.svg",
  33582. extra: 2047/1992,
  33583. bottom: 20/2067
  33584. }
  33585. },
  33586. frontDressed: {
  33587. height: math.unit(5 + 10/12, "feet"),
  33588. name: "Front (Dressed)",
  33589. image: {
  33590. source: "./media/characters/argon/front-dressed.svg",
  33591. extra: 2009/1935,
  33592. bottom: 118/2127
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Normal",
  33599. height: math.unit(5 + 10/12, "feet"),
  33600. default: true
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33606. {
  33607. front: {
  33608. height: math.unit(8 + 6/12, "feet"),
  33609. weight: math.unit(1150, "lb"),
  33610. name: "Front",
  33611. image: {
  33612. source: "./media/characters/kichi/front.svg",
  33613. extra: 1267/1164,
  33614. bottom: 61/1328
  33615. }
  33616. },
  33617. back: {
  33618. height: math.unit(8 + 6/12, "feet"),
  33619. weight: math.unit(1150, "lb"),
  33620. name: "Back",
  33621. image: {
  33622. source: "./media/characters/kichi/back.svg",
  33623. extra: 1273/1166,
  33624. bottom: 33/1306
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(8 + 6/12, "feet"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33638. {
  33639. front: {
  33640. height: math.unit(6, "feet"),
  33641. weight: math.unit(210, "lb"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/manetel-greyscale/front.svg",
  33645. extra: 350/312,
  33646. bottom: 8/358
  33647. }
  33648. },
  33649. },
  33650. [
  33651. {
  33652. name: "Micro",
  33653. height: math.unit(2, "inches")
  33654. },
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(6, "feet"),
  33658. default: true
  33659. },
  33660. {
  33661. name: "Minimacro",
  33662. height: math.unit(17, "feet")
  33663. },
  33664. {
  33665. name: "Macro",
  33666. height: math.unit(117, "feet")
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33672. {
  33673. side: {
  33674. height: math.unit(5 + 1/12, "feet"),
  33675. weight: math.unit(418, "lb"),
  33676. name: "Side",
  33677. image: {
  33678. source: "./media/characters/softpurr/side.svg",
  33679. extra: 1993/1945,
  33680. bottom: 134/2127
  33681. }
  33682. },
  33683. front: {
  33684. height: math.unit(5 + 1/12, "feet"),
  33685. weight: math.unit(418, "lb"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/softpurr/front.svg",
  33689. extra: 1950/1856,
  33690. bottom: 174/2124
  33691. }
  33692. },
  33693. paw: {
  33694. height: math.unit(1, "feet"),
  33695. name: "Paw",
  33696. image: {
  33697. source: "./media/characters/softpurr/paw.svg"
  33698. }
  33699. },
  33700. },
  33701. [
  33702. {
  33703. name: "Normal",
  33704. height: math.unit(5 + 1/12, "feet"),
  33705. default: true
  33706. },
  33707. ]
  33708. ))
  33709. characterMakers.push(() => makeCharacter(
  33710. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33711. {
  33712. front: {
  33713. height: math.unit(260, "meters"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/anahita/front.svg",
  33717. extra: 665/635,
  33718. bottom: 89/754
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Macro",
  33725. height: math.unit(260, "meters"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(4 + 10/12, "feet"),
  33735. weight: math.unit(160, "lb"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/chip-mouse/front.svg",
  33739. extra: 3528/3408,
  33740. bottom: 0/3528
  33741. }
  33742. },
  33743. frontNsfw: {
  33744. height: math.unit(4 + 10/12, "feet"),
  33745. weight: math.unit(160, "lb"),
  33746. name: "Front (NSFW)",
  33747. image: {
  33748. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33749. extra: 3528/3408,
  33750. bottom: 0/3528
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(4 + 10/12, "feet"),
  33758. default: true
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33764. {
  33765. side: {
  33766. height: math.unit(10, "feet"),
  33767. weight: math.unit(14000, "lb"),
  33768. name: "Side",
  33769. image: {
  33770. source: "./media/characters/kremm/side.svg",
  33771. extra: 1390/1053,
  33772. bottom: 90/1480
  33773. }
  33774. },
  33775. gut: {
  33776. height: math.unit(5.8, "feet"),
  33777. name: "Gut",
  33778. image: {
  33779. source: "./media/characters/kremm/gut.svg"
  33780. }
  33781. },
  33782. ass: {
  33783. height: math.unit(6.1, "feet"),
  33784. name: "Ass",
  33785. image: {
  33786. source: "./media/characters/kremm/ass.svg"
  33787. }
  33788. },
  33789. jaws: {
  33790. height: math.unit(2.2, "feet"),
  33791. name: "Jaws",
  33792. image: {
  33793. source: "./media/characters/kremm/jaws.svg"
  33794. }
  33795. },
  33796. dick: {
  33797. height: math.unit(4.26, "feet"),
  33798. name: "Dick",
  33799. image: {
  33800. source: "./media/characters/kremm/dick.svg"
  33801. }
  33802. },
  33803. },
  33804. [
  33805. {
  33806. name: "Normal",
  33807. height: math.unit(10, "feet"),
  33808. default: true
  33809. },
  33810. ]
  33811. ))
  33812. characterMakers.push(() => makeCharacter(
  33813. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33814. {
  33815. front: {
  33816. height: math.unit(30, "stories"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/kai/front.svg",
  33820. extra: 1892/1718,
  33821. bottom: 162/2054
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Macro",
  33828. height: math.unit(30, "stories"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(6 + 4/12, "feet"),
  33838. weight: math.unit(145, "lb"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/sykes/front.svg",
  33842. extra: 1321 / 1187,
  33843. bottom: 66 / 1387
  33844. }
  33845. },
  33846. back: {
  33847. height: math.unit(6 + 4/12, "feet"),
  33848. weight: math.unit(145, "lb"),
  33849. name: "Back",
  33850. image: {
  33851. source: "./media/characters/sykes/back.svg",
  33852. extra: 1326/1181,
  33853. bottom: 31/1357
  33854. }
  33855. },
  33856. handBack: {
  33857. height: math.unit(0.9, "feet"),
  33858. name: "Hand (Back)",
  33859. image: {
  33860. source: "./media/characters/sykes/hand-back.svg"
  33861. }
  33862. },
  33863. handFront: {
  33864. height: math.unit(0.839, "feet"),
  33865. name: "Hand (Front)",
  33866. image: {
  33867. source: "./media/characters/sykes/hand-front.svg"
  33868. }
  33869. },
  33870. leftFoot: {
  33871. height: math.unit(1.2, "feet"),
  33872. name: "Foot (Left)",
  33873. image: {
  33874. source: "./media/characters/sykes/foot-left.svg"
  33875. }
  33876. },
  33877. rightFoot: {
  33878. height: math.unit(1.2, "feet"),
  33879. name: "Foot (Right)",
  33880. image: {
  33881. source: "./media/characters/sykes/foot-right.svg"
  33882. }
  33883. },
  33884. maw: {
  33885. height: math.unit(1.93, "feet"),
  33886. name: "Maw",
  33887. image: {
  33888. source: "./media/characters/sykes/maw.svg"
  33889. }
  33890. },
  33891. teeth: {
  33892. height: math.unit(0.51, "feet"),
  33893. name: "Teeth",
  33894. image: {
  33895. source: "./media/characters/sykes/teeth.svg"
  33896. }
  33897. },
  33898. tongue: {
  33899. height: math.unit(2.13, "feet"),
  33900. name: "Tongue",
  33901. image: {
  33902. source: "./media/characters/sykes/tongue.svg"
  33903. }
  33904. },
  33905. uvula: {
  33906. height: math.unit(0.16, "feet"),
  33907. name: "Uvula",
  33908. image: {
  33909. source: "./media/characters/sykes/uvula.svg"
  33910. }
  33911. },
  33912. collar: {
  33913. height: math.unit(0.287, "feet"),
  33914. name: "Collar",
  33915. image: {
  33916. source: "./media/characters/sykes/collar.svg"
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Shrunken",
  33923. height: math.unit(5, "inches")
  33924. },
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(6 + 4 / 12, "feet"),
  33928. default: true
  33929. },
  33930. {
  33931. name: "Big",
  33932. height: math.unit(15, "feet")
  33933. },
  33934. ]
  33935. ))
  33936. characterMakers.push(() => makeCharacter(
  33937. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33938. {
  33939. front: {
  33940. height: math.unit(5 + 8/12, "feet"),
  33941. weight: math.unit(190, "lb"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/oven-otter/front.svg",
  33945. extra: 1809/1740,
  33946. bottom: 181/1990
  33947. }
  33948. },
  33949. back: {
  33950. height: math.unit(5 + 8/12, "feet"),
  33951. weight: math.unit(190, "lb"),
  33952. name: "Back",
  33953. image: {
  33954. source: "./media/characters/oven-otter/back.svg",
  33955. extra: 1709/1635,
  33956. bottom: 118/1827
  33957. }
  33958. },
  33959. hand: {
  33960. height: math.unit(1.07, "feet"),
  33961. name: "Hand",
  33962. image: {
  33963. source: "./media/characters/oven-otter/hand.svg"
  33964. }
  33965. },
  33966. beans: {
  33967. height: math.unit(1.74, "feet"),
  33968. name: "Beans",
  33969. image: {
  33970. source: "./media/characters/oven-otter/beans.svg"
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Micro",
  33977. height: math.unit(0.5, "inches")
  33978. },
  33979. {
  33980. name: "Normal",
  33981. height: math.unit(5 + 8/12, "feet"),
  33982. default: true
  33983. },
  33984. {
  33985. name: "Macro",
  33986. height: math.unit(250, "feet")
  33987. },
  33988. {
  33989. name: "Really High",
  33990. height: math.unit(420, "feet")
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(5, "meters"),
  33999. weight: math.unit(292000000000000, "kg"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/devourer/front.svg",
  34003. extra: 1800/1733,
  34004. bottom: 211/2011
  34005. }
  34006. },
  34007. maw: {
  34008. height: math.unit(1.1, "meter"),
  34009. name: "Maw",
  34010. image: {
  34011. source: "./media/characters/devourer/maw.svg"
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Small",
  34018. height: math.unit(3, "meters")
  34019. },
  34020. {
  34021. name: "Large",
  34022. height: math.unit(5, "meters"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34029. {
  34030. front: {
  34031. height: math.unit(6, "feet"),
  34032. weight: math.unit(400, "lb"),
  34033. name: "Front",
  34034. image: {
  34035. source: "./media/characters/ellarby/front.svg",
  34036. extra: 1909/1763,
  34037. bottom: 80/1989
  34038. }
  34039. },
  34040. back: {
  34041. height: math.unit(6, "feet"),
  34042. weight: math.unit(400, "lb"),
  34043. name: "Back",
  34044. image: {
  34045. source: "./media/characters/ellarby/back.svg",
  34046. extra: 1914/1784,
  34047. bottom: 172/2086
  34048. }
  34049. },
  34050. },
  34051. [
  34052. {
  34053. name: "Mischief",
  34054. height: math.unit(18, "inches")
  34055. },
  34056. {
  34057. name: "Trouble",
  34058. height: math.unit(12, "feet")
  34059. },
  34060. {
  34061. name: "Havoc",
  34062. height: math.unit(200, "feet"),
  34063. default: true
  34064. },
  34065. {
  34066. name: "Pandemonium",
  34067. height: math.unit(1, "mile")
  34068. },
  34069. {
  34070. name: "Catastrophe",
  34071. height: math.unit(100, "miles")
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34077. {
  34078. front: {
  34079. height: math.unit(4.7, "meters"),
  34080. weight: math.unit(6500, "kg"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/vex/front.svg",
  34084. extra: 1288/1140,
  34085. bottom: 100/1388
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(4.7, "meters"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34099. {
  34100. normal: {
  34101. height: math.unit(6, "feet"),
  34102. weight: math.unit(350, "lb"),
  34103. name: "Normal",
  34104. image: {
  34105. source: "./media/characters/teshy/normal.svg",
  34106. extra: 1795/1735,
  34107. bottom: 16/1811
  34108. }
  34109. },
  34110. monsterFront: {
  34111. height: math.unit(12, "feet"),
  34112. weight: math.unit(4700, "lb"),
  34113. name: "Monster (Front)",
  34114. image: {
  34115. source: "./media/characters/teshy/monster-front.svg",
  34116. extra: 2042/2034,
  34117. bottom: 128/2170
  34118. }
  34119. },
  34120. monsterSide: {
  34121. height: math.unit(12, "feet"),
  34122. weight: math.unit(4700, "lb"),
  34123. name: "Monster (Side)",
  34124. image: {
  34125. source: "./media/characters/teshy/monster-side.svg",
  34126. extra: 2067/2056,
  34127. bottom: 70/2137
  34128. }
  34129. },
  34130. monsterBack: {
  34131. height: math.unit(12, "feet"),
  34132. weight: math.unit(4700, "lb"),
  34133. name: "Monster (Back)",
  34134. image: {
  34135. source: "./media/characters/teshy/monster-back.svg",
  34136. extra: 1921/1914,
  34137. bottom: 171/2092
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Normal",
  34144. height: math.unit(6, "feet"),
  34145. default: true
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(6, "feet"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/ramey/front.svg",
  34157. extra: 790/787,
  34158. bottom: 27/817
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(6, "feet"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34172. {
  34173. front: {
  34174. height: math.unit(5 + 5/12, "feet"),
  34175. weight: math.unit(120, "lb"),
  34176. name: "Front",
  34177. image: {
  34178. source: "./media/characters/phirae/front.svg",
  34179. extra: 2491/2436,
  34180. bottom: 38/2529
  34181. }
  34182. },
  34183. },
  34184. [
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(5 + 5/12, "feet"),
  34188. default: true
  34189. },
  34190. ]
  34191. ))
  34192. characterMakers.push(() => makeCharacter(
  34193. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34194. {
  34195. front: {
  34196. height: math.unit(5 + 3/12, "feet"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/stagglas/front.svg",
  34200. extra: 962/882,
  34201. bottom: 53/1015
  34202. }
  34203. },
  34204. feral: {
  34205. height: math.unit(335, "cm"),
  34206. name: "Feral",
  34207. image: {
  34208. source: "./media/characters/stagglas/feral.svg",
  34209. extra: 1732/1090,
  34210. bottom: 48/1780
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(5 + 3/12, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(5 + 4/12, "feet"),
  34227. weight: math.unit(145, "lb"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/starra/front.svg",
  34231. extra: 1790/1691,
  34232. bottom: 91/1881
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(5 + 4/12, "feet"),
  34240. default: true
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34246. {
  34247. front: {
  34248. height: math.unit(2.2, "meters"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34252. extra: 1194/1005,
  34253. bottom: 25/1219
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Normal",
  34260. height: math.unit(2.2, "meters"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34267. {
  34268. side: {
  34269. height: math.unit(8 + 2/12, "feet"),
  34270. weight: math.unit(1240, "lb"),
  34271. name: "Side",
  34272. image: {
  34273. source: "./media/characters/mika-valentine/side.svg",
  34274. extra: 2670/2501,
  34275. bottom: 250/2920
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(8 + 2/12, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(7 + 2/12, "feet"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/xoltol/front.svg",
  34295. extra: 2212/2124,
  34296. bottom: 84/2296
  34297. }
  34298. },
  34299. side: {
  34300. height: math.unit(7 + 2/12, "feet"),
  34301. name: "Side",
  34302. image: {
  34303. source: "./media/characters/xoltol/side.svg",
  34304. extra: 2273/2197,
  34305. bottom: 26/2299
  34306. }
  34307. },
  34308. hand: {
  34309. height: math.unit(2.5, "feet"),
  34310. name: "Hand",
  34311. image: {
  34312. source: "./media/characters/xoltol/hand.svg"
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Small-ish",
  34319. height: math.unit(5 + 11/12, "feet")
  34320. },
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(7 + 2/12, "feet")
  34324. },
  34325. {
  34326. name: "\"Macro\"",
  34327. height: math.unit(14 + 9/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Alternate Height",
  34332. height: math.unit(20, "feet")
  34333. },
  34334. {
  34335. name: "Actually Macro",
  34336. height: math.unit(100, "feet")
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(5 + 2/12, "feet"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/kotetsu-redwood/front.svg",
  34348. extra: 1053/942,
  34349. bottom: 60/1113
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(5 + 2/12, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(2.4, "meters"),
  34366. weight: math.unit(125, "kg"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/lilith/front.svg",
  34370. extra: 1590/1513,
  34371. bottom: 203/1793
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Humanoid",
  34378. height: math.unit(2.4, "meters")
  34379. },
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(6, "meters"),
  34383. default: true
  34384. },
  34385. {
  34386. name: "Largest",
  34387. height: math.unit(55, "meters")
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(8 + 4/12, "feet"),
  34396. weight: math.unit(535, "lb"),
  34397. name: "Front",
  34398. image: {
  34399. source: "./media/characters/beh'kah-bolger/front.svg",
  34400. extra: 1660/1603,
  34401. bottom: 37/1697
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(8 + 4/12, "feet"),
  34409. default: true
  34410. },
  34411. {
  34412. name: "Kaiju",
  34413. height: math.unit(250, "feet")
  34414. },
  34415. {
  34416. name: "Still Growing",
  34417. height: math.unit(10, "miles")
  34418. },
  34419. {
  34420. name: "Continental",
  34421. height: math.unit(5000, "miles")
  34422. },
  34423. {
  34424. name: "Final Form",
  34425. height: math.unit(2500000, "miles")
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(7 + 2/12, "feet"),
  34434. weight: math.unit(230, "kg"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/tatyana-milewska/front.svg",
  34438. extra: 1199/1150,
  34439. bottom: 86/1285
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(7 + 2/12, "feet"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Big",
  34451. height: math.unit(12, "feet")
  34452. },
  34453. {
  34454. name: "Minimacro",
  34455. height: math.unit(20, "feet")
  34456. },
  34457. {
  34458. name: "Macro",
  34459. height: math.unit(120, "feet")
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(7 + 8/12, "feet"),
  34468. weight: math.unit(152, "kg"),
  34469. name: "Front",
  34470. image: {
  34471. source: "./media/characters/helen-arri/front.svg",
  34472. extra: 440/423,
  34473. bottom: 14/454
  34474. }
  34475. },
  34476. back: {
  34477. height: math.unit(7 + 8/12, "feet"),
  34478. weight: math.unit(152, "kg"),
  34479. name: "Back",
  34480. image: {
  34481. source: "./media/characters/helen-arri/back.svg",
  34482. extra: 443/426,
  34483. bottom: 8/451
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(7 + 8/12, "feet"),
  34491. default: true
  34492. },
  34493. {
  34494. name: "Big",
  34495. height: math.unit(14, "feet")
  34496. },
  34497. {
  34498. name: "Minimacro",
  34499. height: math.unit(24, "feet")
  34500. },
  34501. {
  34502. name: "Macro",
  34503. height: math.unit(140, "feet")
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(6, "meters"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/ehanu-rehu/front.svg",
  34515. extra: 1800/1800,
  34516. bottom: 59/1859
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(6, "meters"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34530. {
  34531. front: {
  34532. height: math.unit(7 + 3/12, "feet"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/renholder/front.svg",
  34536. extra: 3096/2960,
  34537. bottom: 250/3346
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "Normal Bat",
  34544. height: math.unit(7 + 3/12, "feet"),
  34545. default: true
  34546. },
  34547. {
  34548. name: "Slightly Tall Bat",
  34549. height: math.unit(100, "feet")
  34550. },
  34551. {
  34552. name: "Big Bat",
  34553. height: math.unit(1000, "feet")
  34554. },
  34555. {
  34556. name: "City-Sized Bat",
  34557. height: math.unit(200000, "feet")
  34558. },
  34559. {
  34560. name: "Bigger Bat",
  34561. height: math.unit(10000, "miles")
  34562. },
  34563. {
  34564. name: "Solar Sized Bat",
  34565. height: math.unit(100, "AU")
  34566. },
  34567. {
  34568. name: "Galactic Bat",
  34569. height: math.unit(200000, "lightyears")
  34570. },
  34571. {
  34572. name: "Universally Known Bat",
  34573. height: math.unit(1, "universe")
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(6 + 11/12, "feet"),
  34582. weight: math.unit(250, "lb"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/cookiecat/front.svg",
  34586. extra: 893/827,
  34587. bottom: 14/907
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Micro",
  34594. height: math.unit(3, "inches")
  34595. },
  34596. {
  34597. name: "Normal",
  34598. height: math.unit(6 + 11/12, "feet"),
  34599. default: true
  34600. },
  34601. {
  34602. name: "Macro",
  34603. height: math.unit(100, "feet")
  34604. },
  34605. {
  34606. name: "Macro+",
  34607. height: math.unit(404, "feet")
  34608. },
  34609. {
  34610. name: "Megamacro",
  34611. height: math.unit(165, "miles")
  34612. },
  34613. {
  34614. name: "Planetary",
  34615. height: math.unit(4600, "miles")
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34621. {
  34622. front: {
  34623. height: math.unit(10 + 3/12, "feet"),
  34624. weight: math.unit(1500, "lb"),
  34625. name: "Front",
  34626. image: {
  34627. source: "./media/characters/tux-kusanagi/front.svg",
  34628. extra: 944/840,
  34629. bottom: 39/983
  34630. }
  34631. },
  34632. back: {
  34633. height: math.unit(10 + 3/12, "feet"),
  34634. weight: math.unit(1500, "lb"),
  34635. name: "Back",
  34636. image: {
  34637. source: "./media/characters/tux-kusanagi/back.svg",
  34638. extra: 941/842,
  34639. bottom: 28/969
  34640. }
  34641. },
  34642. rump: {
  34643. height: math.unit(5.25, "feet"),
  34644. name: "Rump",
  34645. image: {
  34646. source: "./media/characters/tux-kusanagi/rump.svg"
  34647. }
  34648. },
  34649. beak: {
  34650. height: math.unit(1.54, "feet"),
  34651. name: "Beak",
  34652. image: {
  34653. source: "./media/characters/tux-kusanagi/beak.svg"
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(10 + 3/12, "feet"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(58, "feet"),
  34670. weight: math.unit(200, "tons"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/uzarmazari/front.svg",
  34674. extra: 1575/1455,
  34675. bottom: 152/1727
  34676. }
  34677. },
  34678. back: {
  34679. height: math.unit(58, "feet"),
  34680. weight: math.unit(200, "tons"),
  34681. name: "Back",
  34682. image: {
  34683. source: "./media/characters/uzarmazari/back.svg",
  34684. extra: 1585/1510,
  34685. bottom: 157/1742
  34686. }
  34687. },
  34688. head: {
  34689. height: math.unit(26, "feet"),
  34690. name: "Head",
  34691. image: {
  34692. source: "./media/characters/uzarmazari/head.svg"
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(58, "feet"),
  34700. default: true
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34706. {
  34707. side: {
  34708. height: math.unit(15, "feet"),
  34709. name: "Side",
  34710. image: {
  34711. source: "./media/characters/akitu/side.svg",
  34712. extra: 1421/1321,
  34713. bottom: 157/1578
  34714. }
  34715. },
  34716. front: {
  34717. height: math.unit(15, "feet"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/akitu/front.svg",
  34721. extra: 1435/1326,
  34722. bottom: 232/1667
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(15, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(10 + 8/12, "feet"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/azalie-croixland/front.svg",
  34742. extra: 1972/1856,
  34743. bottom: 31/2003
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Original Height",
  34750. height: math.unit(5 + 4/12, "feet")
  34751. },
  34752. {
  34753. name: "Normal Height",
  34754. height: math.unit(10 + 8/12, "feet"),
  34755. default: true
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34761. {
  34762. side: {
  34763. height: math.unit(7 + 1/12, "feet"),
  34764. weight: math.unit(245, "lb"),
  34765. name: "Side",
  34766. image: {
  34767. source: "./media/characters/kavus-kazian/side.svg",
  34768. extra: 349/342,
  34769. bottom: 15/364
  34770. }
  34771. },
  34772. },
  34773. [
  34774. {
  34775. name: "Normal",
  34776. height: math.unit(7 + 1/12, "feet"),
  34777. default: true
  34778. },
  34779. ]
  34780. ))
  34781. characterMakers.push(() => makeCharacter(
  34782. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34783. {
  34784. normal: {
  34785. height: math.unit(5 + 11/12, "feet"),
  34786. name: "Normal",
  34787. image: {
  34788. source: "./media/characters/moonlight-rose/normal.svg",
  34789. extra: 1979/1835,
  34790. bottom: 14/1993
  34791. }
  34792. },
  34793. demon: {
  34794. height: math.unit(5, "km"),
  34795. name: "Demon",
  34796. image: {
  34797. source: "./media/characters/moonlight-rose/demon.svg",
  34798. extra: 986/916,
  34799. bottom: 28/1014
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "\"Natural\" height",
  34806. height: math.unit(5 + 11/12, "feet")
  34807. },
  34808. {
  34809. name: "Comfortable Size",
  34810. height: math.unit(40, "meters")
  34811. },
  34812. {
  34813. name: "Common Size",
  34814. height: math.unit(50, "km"),
  34815. default: true
  34816. },
  34817. {
  34818. name: "Demonic",
  34819. height: math.unit(1.24415e+21, "meters")
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(16, "feet"),
  34828. weight: math.unit(610, "kg"),
  34829. name: "Front",
  34830. image: {
  34831. source: "./media/characters/huckle/front.svg",
  34832. extra: 1731/1625,
  34833. bottom: 33/1764
  34834. }
  34835. },
  34836. back: {
  34837. height: math.unit(16, "feet"),
  34838. weight: math.unit(610, "kg"),
  34839. name: "Back",
  34840. image: {
  34841. source: "./media/characters/huckle/back.svg",
  34842. extra: 1738/1651,
  34843. bottom: 37/1775
  34844. }
  34845. },
  34846. laughing: {
  34847. height: math.unit(3.75, "feet"),
  34848. name: "Laughing",
  34849. image: {
  34850. source: "./media/characters/huckle/laughing.svg"
  34851. }
  34852. },
  34853. angry: {
  34854. height: math.unit(4.15, "feet"),
  34855. name: "Angry",
  34856. image: {
  34857. source: "./media/characters/huckle/angry.svg"
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(16, "feet"),
  34865. default: true
  34866. },
  34867. {
  34868. name: "Mini Macro",
  34869. height: math.unit(463, "feet")
  34870. },
  34871. {
  34872. name: "Macro",
  34873. height: math.unit(1680, "meters")
  34874. },
  34875. {
  34876. name: "Mega Macro",
  34877. height: math.unit(175, "km")
  34878. },
  34879. {
  34880. name: "Terra Macro",
  34881. height: math.unit(32, "gigameters")
  34882. },
  34883. {
  34884. name: "Multiverse+",
  34885. height: math.unit(2.56e23, "yottameters")
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(6 + 9/12, "feet"),
  34894. weight: math.unit(280, "lb"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/candy/front.svg",
  34898. extra: 234/217,
  34899. bottom: 11/245
  34900. }
  34901. },
  34902. },
  34903. [
  34904. {
  34905. name: "Really Small",
  34906. height: math.unit(0.1, "nm")
  34907. },
  34908. {
  34909. name: "Micro",
  34910. height: math.unit(2, "inches")
  34911. },
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(6 + 9/12, "feet"),
  34915. default: true
  34916. },
  34917. {
  34918. name: "Small Macro",
  34919. height: math.unit(69, "feet")
  34920. },
  34921. {
  34922. name: "Macro",
  34923. height: math.unit(160, "feet")
  34924. },
  34925. {
  34926. name: "Megamacro",
  34927. height: math.unit(22000, "miles")
  34928. },
  34929. {
  34930. name: "Gigamacro",
  34931. height: math.unit(50000, "miles")
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(4, "feet"),
  34940. weight: math.unit(90, "lb"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/joey-mcdonald/front.svg",
  34944. extra: 1059/852,
  34945. bottom: 33/1092
  34946. }
  34947. },
  34948. back: {
  34949. height: math.unit(4, "feet"),
  34950. weight: math.unit(90, "lb"),
  34951. name: "Back",
  34952. image: {
  34953. source: "./media/characters/joey-mcdonald/back.svg",
  34954. extra: 1077/879,
  34955. bottom: 5/1082
  34956. }
  34957. },
  34958. frontKobold: {
  34959. height: math.unit(4, "feet"),
  34960. weight: math.unit(100, "lb"),
  34961. name: "Front-kobold",
  34962. image: {
  34963. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34964. extra: 1480/1367,
  34965. bottom: 0/1480
  34966. }
  34967. },
  34968. backKobold: {
  34969. height: math.unit(4, "feet"),
  34970. weight: math.unit(100, "lb"),
  34971. name: "Back-kobold",
  34972. image: {
  34973. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34974. extra: 1449/1361,
  34975. bottom: 0/1449
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(4, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(12 + 6/12, "feet"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/kass-lockheed/front.svg",
  34995. extra: 354/343,
  34996. bottom: 9/363
  34997. }
  34998. },
  34999. back: {
  35000. height: math.unit(12 + 6/12, "feet"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/kass-lockheed/back.svg",
  35004. extra: 364/352,
  35005. bottom: 3/367
  35006. }
  35007. },
  35008. dick: {
  35009. height: math.unit(3.12, "feet"),
  35010. name: "Dick",
  35011. image: {
  35012. source: "./media/characters/kass-lockheed/dick.svg"
  35013. }
  35014. },
  35015. head: {
  35016. height: math.unit(2.6, "feet"),
  35017. name: "Head",
  35018. image: {
  35019. source: "./media/characters/kass-lockheed/head.svg"
  35020. }
  35021. },
  35022. bleh: {
  35023. height: math.unit(2.85, "feet"),
  35024. name: "Bleh",
  35025. image: {
  35026. source: "./media/characters/kass-lockheed/bleh.svg"
  35027. }
  35028. },
  35029. smug: {
  35030. height: math.unit(2.85, "feet"),
  35031. name: "Smug",
  35032. image: {
  35033. source: "./media/characters/kass-lockheed/smug.svg"
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(12 + 6/12, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(6 + 2/12, "feet"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/taylor/front.svg",
  35053. extra: 639/495,
  35054. bottom: 12/651
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(6 + 2/12, "feet"),
  35062. default: true
  35063. },
  35064. {
  35065. name: "Big",
  35066. height: math.unit(15, "feet")
  35067. },
  35068. {
  35069. name: "Lorg",
  35070. height: math.unit(80, "feet")
  35071. },
  35072. {
  35073. name: "Too Lorg",
  35074. height: math.unit(120, "feet")
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(15, "feet"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/kaizer/front.svg",
  35086. extra: 1612/1436,
  35087. bottom: 43/1655
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(15, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(2, "feet"),
  35104. weight: math.unit(30, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/sandy/front.svg",
  35108. extra: 1439/1307,
  35109. bottom: 194/1633
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(2, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(3, "feet"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/mellvi/front.svg",
  35129. extra: 1831/1630,
  35130. bottom: 58/1889
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(3, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(5 + 11/12, "feet"),
  35147. weight: math.unit(200, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/shirou/front.svg",
  35151. extra: 2491/2383,
  35152. bottom: 189/2680
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(5 + 11/12, "feet"),
  35157. weight: math.unit(200, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/shirou/back.svg",
  35161. extra: 2554/2450,
  35162. bottom: 76/2630
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(5 + 11/12, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(6 + 3/12, "feet"),
  35179. weight: math.unit(177, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/noryu/front.svg",
  35183. extra: 973/885,
  35184. bottom: 10/983
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(6 + 3/12, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(5 + 6/12, "feet"),
  35201. weight: math.unit(170, "lb"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/mevolas-rubenido/front.svg",
  35205. extra: 2109/1901,
  35206. bottom: 96/2205
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(5 + 6/12, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(100, "feet"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/dee/front.svg",
  35226. extra: 2153/2036,
  35227. bottom: 59/2212
  35228. }
  35229. },
  35230. back: {
  35231. height: math.unit(100, "feet"),
  35232. name: "Back",
  35233. image: {
  35234. source: "./media/characters/dee/back.svg",
  35235. extra: 2183/2058,
  35236. bottom: 75/2258
  35237. }
  35238. },
  35239. foot: {
  35240. height: math.unit(19.43, "feet"),
  35241. name: "Foot",
  35242. image: {
  35243. source: "./media/characters/dee/foot.svg"
  35244. }
  35245. },
  35246. hoof: {
  35247. height: math.unit(20.6, "feet"),
  35248. name: "Hoof",
  35249. image: {
  35250. source: "./media/characters/dee/hoof.svg"
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Macro",
  35257. height: math.unit(100, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(5 + 6/12, "feet"),
  35267. name: "Front",
  35268. image: {
  35269. source: "./media/characters/teh/front.svg",
  35270. extra: 1002/847,
  35271. bottom: 62/1064
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(5 + 6/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35285. {
  35286. side: {
  35287. height: math.unit(6 + 1/12, "feet"),
  35288. weight: math.unit(204, "lb"),
  35289. name: "Side",
  35290. image: {
  35291. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35292. extra: 974/775,
  35293. bottom: 169/1143
  35294. }
  35295. },
  35296. sitting: {
  35297. height: math.unit(6 + 2/12, "feet"),
  35298. weight: math.unit(204, "lb"),
  35299. name: "Sitting",
  35300. image: {
  35301. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35302. extra: 1175/964,
  35303. bottom: 378/1553
  35304. }
  35305. },
  35306. },
  35307. [
  35308. {
  35309. name: "Normal",
  35310. height: math.unit(6 + 1/12, "feet"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35317. {
  35318. front: {
  35319. height: math.unit(6, "inches"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/tululi/front.svg",
  35323. extra: 1997/1876,
  35324. bottom: 20/2017
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(6, "inches"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(4 + 1/12, "feet"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/star/front.svg",
  35344. extra: 1493/1189,
  35345. bottom: 48/1541
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(4 + 1/12, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(6 + 3/12, "feet"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/comet/front.svg",
  35365. extra: 1681/1462,
  35366. bottom: 26/1707
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(6 + 3/12, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(950, "feet"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/vortex/front.svg",
  35386. extra: 1497/1434,
  35387. bottom: 56/1553
  35388. }
  35389. },
  35390. maw: {
  35391. height: math.unit(285, "feet"),
  35392. name: "Maw",
  35393. image: {
  35394. source: "./media/characters/vortex/maw.svg"
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Macro",
  35401. height: math.unit(950, "feet"),
  35402. default: true
  35403. },
  35404. ]
  35405. ))
  35406. characterMakers.push(() => makeCharacter(
  35407. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35408. {
  35409. front: {
  35410. height: math.unit(600, "feet"),
  35411. weight: math.unit(0.02, "grams"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/doodle/front.svg",
  35415. extra: 1578/1413,
  35416. bottom: 37/1615
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Macro",
  35423. height: math.unit(600, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(6 + 6/12, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/jai/front.svg",
  35436. extra: 1645/1534,
  35437. bottom: 115/1760
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(6 + 6/12, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(6 + 8/12, "feet"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/pixel/front.svg",
  35457. extra: 1900/1735,
  35458. bottom: 63/1963
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(6 + 8/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35472. {
  35473. back: {
  35474. height: math.unit(4 + 1/12, "feet"),
  35475. weight: math.unit(75, "lb"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/rhett/back.svg",
  35479. extra: 930/878,
  35480. bottom: 25/955
  35481. }
  35482. },
  35483. front: {
  35484. height: math.unit(4 + 1/12, "feet"),
  35485. weight: math.unit(75, "lb"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/rhett/front.svg",
  35489. extra: 1682/1586,
  35490. bottom: 92/1774
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Micro",
  35497. height: math.unit(8, "inches")
  35498. },
  35499. {
  35500. name: "Tiny",
  35501. height: math.unit(2, "feet")
  35502. },
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(4 + 1/12, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(3 + 3/12, "feet"),
  35515. name: "Front",
  35516. image: {
  35517. source: "./media/characters/penny/front.svg",
  35518. extra: 1406/1311,
  35519. bottom: 26/1432
  35520. }
  35521. },
  35522. },
  35523. [
  35524. {
  35525. name: "Normal",
  35526. height: math.unit(3 + 3/12, "feet"),
  35527. default: true
  35528. },
  35529. ]
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35533. {
  35534. front: {
  35535. height: math.unit(4 + 11/12, "feet"),
  35536. name: "Front",
  35537. image: {
  35538. source: "./media/characters/monty/front.svg",
  35539. extra: 1479/1209,
  35540. bottom: 0/1479
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(4 + 11/12, "feet"),
  35548. default: true
  35549. },
  35550. ]
  35551. ))
  35552. characterMakers.push(() => makeCharacter(
  35553. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35554. {
  35555. front: {
  35556. height: math.unit(8 + 4/12, "feet"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/sterling/front.svg",
  35560. extra: 1420/1236,
  35561. bottom: 27/1447
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(8 + 4/12, "feet"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. characterMakers.push(() => makeCharacter(
  35574. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35575. {
  35576. front: {
  35577. height: math.unit(15, "feet"),
  35578. name: "Front",
  35579. image: {
  35580. source: "./media/characters/marble/front.svg",
  35581. extra: 973/937,
  35582. bottom: 32/1005
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(15, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35596. {
  35597. front: {
  35598. height: math.unit(3, "inches"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/powder/front.svg",
  35602. extra: 1504/1334,
  35603. bottom: 518/2022
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(3, "inches"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(4 + 5/12, "feet"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/joey-raccoon/front.svg",
  35623. extra: 1273/1197,
  35624. bottom: 0/1273
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(4 + 5/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(8 + 4/12, "feet"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/vick/front.svg",
  35644. extra: 2187/2118,
  35645. bottom: 47/2234
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(8 + 4/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(5 + 5/12, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/mitsy/front.svg",
  35665. extra: 1842/1695,
  35666. bottom: 0/1842
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(5 + 5/12, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35680. {
  35681. front: {
  35682. height: math.unit(6 + 3/12, "feet"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/silvy/front.svg",
  35686. extra: 1995/1836,
  35687. bottom: 225/2220
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(6 + 3/12, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(3 + 8/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/rodney/front.svg",
  35707. extra: 1956/1747,
  35708. bottom: 31/1987
  35709. }
  35710. },
  35711. frontDressed: {
  35712. height: math.unit(2.9, "feet"),
  35713. name: "Front (Dressed)",
  35714. image: {
  35715. source: "./media/characters/rodney/front-dressed.svg",
  35716. extra: 1382/1241,
  35717. bottom: 385/1767
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(3 + 8/12, "feet"),
  35725. default: true
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(5 + 9/12, "feet"),
  35734. weight: math.unit(194, "lbs"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/zakail-sudekai/front.svg",
  35738. extra: 2696/2533,
  35739. bottom: 248/2944
  35740. }
  35741. },
  35742. maw: {
  35743. height: math.unit(1.35, "feet"),
  35744. name: "Maw",
  35745. image: {
  35746. source: "./media/characters/zakail-sudekai/maw.svg"
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(5 + 9/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35760. {
  35761. front: {
  35762. height: math.unit(8 + 4/12, "feet"),
  35763. weight: math.unit(1200, "lb"),
  35764. name: "Front",
  35765. image: {
  35766. source: "./media/characters/eleanor/front.svg",
  35767. extra: 1226/1192,
  35768. bottom: 52/1278
  35769. }
  35770. },
  35771. back: {
  35772. height: math.unit(8 + 4/12, "feet"),
  35773. weight: math.unit(1200, "lb"),
  35774. name: "Back",
  35775. image: {
  35776. source: "./media/characters/eleanor/back.svg",
  35777. extra: 1242/1184,
  35778. bottom: 60/1302
  35779. }
  35780. },
  35781. head: {
  35782. height: math.unit(2.62, "feet"),
  35783. name: "Head",
  35784. image: {
  35785. source: "./media/characters/eleanor/head.svg"
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(8 + 4/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(8 + 4/12, "feet"),
  35802. weight: math.unit(750, "lb"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/tanya/front.svg",
  35806. extra: 1749/1615,
  35807. bottom: 33/1782
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Normal",
  35814. height: math.unit(8 + 4/12, "feet"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35821. {
  35822. front: {
  35823. height: math.unit(5, "feet"),
  35824. weight: math.unit(225, "lb"),
  35825. name: "Front",
  35826. image: {
  35827. source: "./media/characters/cindy/front.svg",
  35828. extra: 1320/1250,
  35829. bottom: 42/1362
  35830. }
  35831. },
  35832. frontDressed: {
  35833. height: math.unit(5, "feet"),
  35834. weight: math.unit(225, "lb"),
  35835. name: "Front (Dressed)",
  35836. image: {
  35837. source: "./media/characters/cindy/front-dressed.svg",
  35838. extra: 1320/1250,
  35839. bottom: 42/1362
  35840. }
  35841. },
  35842. back: {
  35843. height: math.unit(5, "feet"),
  35844. weight: math.unit(225, "lb"),
  35845. name: "Back",
  35846. image: {
  35847. source: "./media/characters/cindy/back.svg",
  35848. extra: 1384/1346,
  35849. bottom: 14/1398
  35850. }
  35851. },
  35852. },
  35853. [
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(5, "feet"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(6 + 9/12, "feet"),
  35866. weight: math.unit(440, "lb"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/wilbur-owen/front.svg",
  35870. extra: 1575/1448,
  35871. bottom: 72/1647
  35872. }
  35873. },
  35874. back: {
  35875. height: math.unit(6 + 9/12, "feet"),
  35876. weight: math.unit(440, "lb"),
  35877. name: "Back",
  35878. image: {
  35879. source: "./media/characters/wilbur-owen/back.svg",
  35880. extra: 1578/1445,
  35881. bottom: 36/1614
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(6 + 9/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(6 + 5/12, "feet"),
  35898. weight: math.unit(650, "lb"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/keegan/front.svg",
  35902. extra: 2387/2198,
  35903. bottom: 33/2420
  35904. }
  35905. },
  35906. side: {
  35907. height: math.unit(6 + 5/12, "feet"),
  35908. weight: math.unit(650, "lb"),
  35909. name: "Side",
  35910. image: {
  35911. source: "./media/characters/keegan/side.svg",
  35912. extra: 2390/2202,
  35913. bottom: 47/2437
  35914. }
  35915. },
  35916. back: {
  35917. height: math.unit(6 + 5/12, "feet"),
  35918. weight: math.unit(650, "lb"),
  35919. name: "Back",
  35920. image: {
  35921. source: "./media/characters/keegan/back.svg",
  35922. extra: 2418/2268,
  35923. bottom: 15/2433
  35924. }
  35925. },
  35926. frontSfw: {
  35927. height: math.unit(6 + 5/12, "feet"),
  35928. weight: math.unit(650, "lb"),
  35929. name: "Front (SFW)",
  35930. image: {
  35931. source: "./media/characters/keegan/front-sfw.svg",
  35932. extra: 2387/2198,
  35933. bottom: 33/2420
  35934. }
  35935. },
  35936. beans: {
  35937. height: math.unit(1.85, "feet"),
  35938. name: "Beans",
  35939. image: {
  35940. source: "./media/characters/keegan/beans.svg"
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(6 + 5/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(9, "feet"),
  35957. name: "Front",
  35958. image: {
  35959. source: "./media/characters/colton/front.svg",
  35960. extra: 1589/1326,
  35961. bottom: 139/1728
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(9, "feet"),
  35969. default: true
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35975. {
  35976. front: {
  35977. height: math.unit(2 + 9/12, "feet"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/bora/front.svg",
  35981. extra: 1265/1250,
  35982. bottom: 24/1289
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(2 + 9/12, "feet"),
  35990. default: true
  35991. },
  35992. ]
  35993. ))
  35994. characterMakers.push(() => makeCharacter(
  35995. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35996. {
  35997. front: {
  35998. height: math.unit(8, "feet"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/myu-myu/front.svg",
  36002. extra: 1949/1857,
  36003. bottom: 90/2039
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Normal",
  36010. height: math.unit(8, "feet"),
  36011. default: true
  36012. },
  36013. {
  36014. name: "Big",
  36015. height: math.unit(15, "feet")
  36016. },
  36017. {
  36018. name: "BIG",
  36019. height: math.unit(25, "feet")
  36020. },
  36021. ]
  36022. ))
  36023. characterMakers.push(() => makeCharacter(
  36024. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36025. {
  36026. side: {
  36027. height: math.unit(7 + 5/12, "feet"),
  36028. weight: math.unit(2800, "lb"),
  36029. name: "Side",
  36030. image: {
  36031. source: "./media/characters/haloren/side.svg",
  36032. extra: 1793/409,
  36033. bottom: 59/1852
  36034. }
  36035. },
  36036. frontPaw: {
  36037. height: math.unit(2.36, "feet"),
  36038. name: "Front paw",
  36039. image: {
  36040. source: "./media/characters/haloren/front-paw.svg"
  36041. }
  36042. },
  36043. hindPaw: {
  36044. height: math.unit(3.18, "feet"),
  36045. name: "Hind paw",
  36046. image: {
  36047. source: "./media/characters/haloren/hind-paw.svg"
  36048. }
  36049. },
  36050. maw: {
  36051. height: math.unit(5.05, "feet"),
  36052. name: "Maw",
  36053. image: {
  36054. source: "./media/characters/haloren/maw.svg"
  36055. }
  36056. },
  36057. dick: {
  36058. height: math.unit(2.90, "feet"),
  36059. name: "Dick",
  36060. image: {
  36061. source: "./media/characters/haloren/dick.svg"
  36062. }
  36063. },
  36064. },
  36065. [
  36066. {
  36067. name: "Normal",
  36068. height: math.unit(7 + 5/12, "feet"),
  36069. default: true
  36070. },
  36071. {
  36072. name: "Enhanced",
  36073. height: math.unit(14 + 3/12, "feet")
  36074. },
  36075. ]
  36076. ))
  36077. characterMakers.push(() => makeCharacter(
  36078. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36079. {
  36080. front: {
  36081. height: math.unit(171, "cm"),
  36082. name: "Front",
  36083. image: {
  36084. source: "./media/characters/kimmy/front.svg",
  36085. extra: 1491/1435,
  36086. bottom: 53/1544
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Small",
  36093. height: math.unit(9, "cm")
  36094. },
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(171, "cm"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(8, "feet"),
  36107. weight: math.unit(300, "lb"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/galeboomer/front.svg",
  36111. extra: 4651/4415,
  36112. bottom: 162/4813
  36113. }
  36114. },
  36115. back: {
  36116. height: math.unit(8, "feet"),
  36117. weight: math.unit(300, "lb"),
  36118. name: "Back",
  36119. image: {
  36120. source: "./media/characters/galeboomer/back.svg",
  36121. extra: 4544/4314,
  36122. bottom: 16/4560
  36123. }
  36124. },
  36125. frontAlt: {
  36126. height: math.unit(8, "feet"),
  36127. weight: math.unit(300, "lb"),
  36128. name: "Front (Alt)",
  36129. image: {
  36130. source: "./media/characters/galeboomer/front-alt.svg",
  36131. extra: 4458/4228,
  36132. bottom: 68/4526
  36133. }
  36134. },
  36135. maw: {
  36136. height: math.unit(1.2, "feet"),
  36137. name: "Maw",
  36138. image: {
  36139. source: "./media/characters/galeboomer/maw.svg"
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(8, "feet"),
  36147. default: true
  36148. },
  36149. ]
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36153. {
  36154. front: {
  36155. height: math.unit(5 + 9/12, "feet"),
  36156. weight: math.unit(120, "lb"),
  36157. name: "Front",
  36158. image: {
  36159. source: "./media/characters/chyr/front.svg",
  36160. extra: 1323/1254,
  36161. bottom: 63/1386
  36162. }
  36163. },
  36164. back: {
  36165. height: math.unit(5 + 9/12, "feet"),
  36166. weight: math.unit(120, "lb"),
  36167. name: "Back",
  36168. image: {
  36169. source: "./media/characters/chyr/back.svg",
  36170. extra: 1323/1252,
  36171. bottom: 48/1371
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(5 + 9/12, "feet"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36185. {
  36186. front: {
  36187. height: math.unit(7, "feet"),
  36188. weight: math.unit(310, "lb"),
  36189. name: "Front",
  36190. image: {
  36191. source: "./media/characters/solarus/front.svg",
  36192. extra: 2415/2021,
  36193. bottom: 103/2518
  36194. }
  36195. },
  36196. back: {
  36197. height: math.unit(7, "feet"),
  36198. weight: math.unit(310, "lb"),
  36199. name: "Back",
  36200. image: {
  36201. source: "./media/characters/solarus/back.svg",
  36202. extra: 2463/2089,
  36203. bottom: 79/2542
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(7, "feet"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36217. {
  36218. front: {
  36219. height: math.unit(16, "feet"),
  36220. name: "Front",
  36221. image: {
  36222. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36223. extra: 1844/1780,
  36224. bottom: 58/1902
  36225. }
  36226. },
  36227. winterCoat: {
  36228. height: math.unit(16, "feet"),
  36229. name: "Winter Coat",
  36230. image: {
  36231. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36232. extra: 1807/1775,
  36233. bottom: 69/1876
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(16, "feet"),
  36241. default: true
  36242. },
  36243. {
  36244. name: "Chicago Size",
  36245. height: math.unit(560, "feet")
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(11 + 6/12, "feet"),
  36254. weight: math.unit(1366, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/lexor/front.svg",
  36258. extra: 1560/1481,
  36259. bottom: 211/1771
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(11 + 6/12, "feet"),
  36264. weight: math.unit(1366, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/lexor/back.svg",
  36268. extra: 1614/1533,
  36269. bottom: 76/1690
  36270. }
  36271. },
  36272. maw: {
  36273. height: math.unit(3, "feet"),
  36274. name: "Maw",
  36275. image: {
  36276. source: "./media/characters/lexor/maw.svg"
  36277. }
  36278. },
  36279. dick: {
  36280. height: math.unit(2.59, "feet"),
  36281. name: "Dick",
  36282. image: {
  36283. source: "./media/characters/lexor/dick.svg"
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Normal",
  36290. height: math.unit(11 + 6/12, "feet"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(5 + 8/12, "feet"),
  36300. name: "Front",
  36301. image: {
  36302. source: "./media/characters/magnum/front.svg",
  36303. extra: 942/855,
  36304. bottom: 26/968
  36305. }
  36306. },
  36307. },
  36308. [
  36309. {
  36310. name: "Normal",
  36311. height: math.unit(5 + 8/12, "feet"),
  36312. default: true
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(18 + 4/12, "feet"),
  36321. weight: math.unit(1500, "kg"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/solas-sharpsman/front.svg",
  36325. extra: 1698/1589,
  36326. bottom: 0/1698
  36327. }
  36328. },
  36329. },
  36330. [
  36331. {
  36332. name: "Normal",
  36333. height: math.unit(18 + 4/12, "feet"),
  36334. default: true
  36335. },
  36336. ]
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(5 + 5/12, "feet"),
  36343. weight: math.unit(180, "lb"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/october/front.svg",
  36347. extra: 1800/1650,
  36348. bottom: 0/1800
  36349. }
  36350. },
  36351. frontNsfw: {
  36352. height: math.unit(5 + 5/12, "feet"),
  36353. weight: math.unit(180, "lb"),
  36354. name: "Front (NSFW)",
  36355. image: {
  36356. source: "./media/characters/october/front-nsfw.svg",
  36357. extra: 1392/1307,
  36358. bottom: 42/1434
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(5 + 5/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(8 + 6/12, "feet"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/essynkardi/front.svg",
  36378. extra: 1914/1846,
  36379. bottom: 22/1936
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(8 + 6/12, "feet"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(6 + 6/12, "feet"),
  36396. weight: math.unit(7, "lb"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/icky/front.svg",
  36400. extra: 813/782,
  36401. bottom: 66/879
  36402. }
  36403. },
  36404. back: {
  36405. height: math.unit(6 + 6/12, "feet"),
  36406. weight: math.unit(7, "lb"),
  36407. name: "Back",
  36408. image: {
  36409. source: "./media/characters/icky/back.svg",
  36410. extra: 754/735,
  36411. bottom: 56/810
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(6 + 6/12, "feet"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(15, "feet"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/rojas/front.svg",
  36431. extra: 1462/1408,
  36432. bottom: 95/1557
  36433. }
  36434. },
  36435. back: {
  36436. height: math.unit(15, "feet"),
  36437. name: "Back",
  36438. image: {
  36439. source: "./media/characters/rojas/back.svg",
  36440. extra: 1023/954,
  36441. bottom: 28/1051
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(15, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36455. {
  36456. frontHuman: {
  36457. height: math.unit(5 + 7/12, "feet"),
  36458. name: "Front (Human)",
  36459. image: {
  36460. source: "./media/characters/alek-dryagan/front-human.svg",
  36461. extra: 1687/1667,
  36462. bottom: 69/1756
  36463. }
  36464. },
  36465. backHuman: {
  36466. height: math.unit(5 + 7/12, "feet"),
  36467. name: "Back (Human)",
  36468. image: {
  36469. source: "./media/characters/alek-dryagan/back-human.svg",
  36470. extra: 1670/1649,
  36471. bottom: 65/1735
  36472. }
  36473. },
  36474. frontDemi: {
  36475. height: math.unit(65, "feet"),
  36476. name: "Front (Demi)",
  36477. image: {
  36478. source: "./media/characters/alek-dryagan/front-demi.svg",
  36479. extra: 1669/1642,
  36480. bottom: 49/1718
  36481. }
  36482. },
  36483. backDemi: {
  36484. height: math.unit(65, "feet"),
  36485. name: "Back (Demi)",
  36486. image: {
  36487. source: "./media/characters/alek-dryagan/back-demi.svg",
  36488. extra: 1658/1637,
  36489. bottom: 40/1698
  36490. }
  36491. },
  36492. mawHuman: {
  36493. height: math.unit(0.3, "feet"),
  36494. name: "Maw (Human)",
  36495. image: {
  36496. source: "./media/characters/alek-dryagan/maw-human.svg"
  36497. }
  36498. },
  36499. mawDemi: {
  36500. height: math.unit(3.8, "feet"),
  36501. name: "Maw (Demi)",
  36502. image: {
  36503. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(5 + 7/12, "feet"),
  36511. default: true
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36517. {
  36518. frontHuman: {
  36519. height: math.unit(5 + 2/12, "feet"),
  36520. name: "Front (Human)",
  36521. image: {
  36522. source: "./media/characters/gen/front-human.svg",
  36523. extra: 1627/1538,
  36524. bottom: 71/1698
  36525. }
  36526. },
  36527. backHuman: {
  36528. height: math.unit(5 + 2/12, "feet"),
  36529. name: "Back (Human)",
  36530. image: {
  36531. source: "./media/characters/gen/back-human.svg",
  36532. extra: 1638/1548,
  36533. bottom: 69/1707
  36534. }
  36535. },
  36536. frontDemi: {
  36537. height: math.unit(5 + 2/12, "feet"),
  36538. name: "Front (Demi)",
  36539. image: {
  36540. source: "./media/characters/gen/front-demi.svg",
  36541. extra: 1627/1538,
  36542. bottom: 71/1698
  36543. }
  36544. },
  36545. backDemi: {
  36546. height: math.unit(5 + 2/12, "feet"),
  36547. name: "Back (Demi)",
  36548. image: {
  36549. source: "./media/characters/gen/back-demi.svg",
  36550. extra: 1638/1548,
  36551. bottom: 69/1707
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(5 + 2/12, "feet"),
  36559. default: true
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36565. {
  36566. frontImp: {
  36567. height: math.unit(1 + 11/12, "feet"),
  36568. name: "Front (Imp)",
  36569. image: {
  36570. source: "./media/characters/max-kobold/front-imp.svg",
  36571. extra: 1238/1134,
  36572. bottom: 81/1319
  36573. }
  36574. },
  36575. backImp: {
  36576. height: math.unit(1 + 11/12, "feet"),
  36577. name: "Back (Imp)",
  36578. image: {
  36579. source: "./media/characters/max-kobold/back-imp.svg",
  36580. extra: 1334/1175,
  36581. bottom: 34/1368
  36582. }
  36583. },
  36584. frontDemi: {
  36585. height: math.unit(5 + 9/12, "feet"),
  36586. name: "Front (Demi)",
  36587. image: {
  36588. source: "./media/characters/max-kobold/front-demi.svg",
  36589. extra: 1715/1685,
  36590. bottom: 54/1769
  36591. }
  36592. },
  36593. backDemi: {
  36594. height: math.unit(5 + 9/12, "feet"),
  36595. name: "Back (Demi)",
  36596. image: {
  36597. source: "./media/characters/max-kobold/back-demi.svg",
  36598. extra: 1752/1729,
  36599. bottom: 41/1793
  36600. }
  36601. },
  36602. handImp: {
  36603. height: math.unit(0.45, "feet"),
  36604. name: "Hand (Imp)",
  36605. image: {
  36606. source: "./media/characters/max-kobold/hand.svg"
  36607. }
  36608. },
  36609. pawImp: {
  36610. height: math.unit(0.46, "feet"),
  36611. name: "Paw (Imp)",
  36612. image: {
  36613. source: "./media/characters/max-kobold/paw.svg"
  36614. }
  36615. },
  36616. handDemi: {
  36617. height: math.unit(0.80, "feet"),
  36618. name: "Hand (Demi)",
  36619. image: {
  36620. source: "./media/characters/max-kobold/hand.svg"
  36621. }
  36622. },
  36623. pawDemi: {
  36624. height: math.unit(1.1, "feet"),
  36625. name: "Paw (Demi)",
  36626. image: {
  36627. source: "./media/characters/max-kobold/paw.svg"
  36628. }
  36629. },
  36630. headImp: {
  36631. height: math.unit(1.33, "feet"),
  36632. name: "Head (Imp)",
  36633. image: {
  36634. source: "./media/characters/max-kobold/head-imp.svg"
  36635. }
  36636. },
  36637. mawImp: {
  36638. height: math.unit(0.75, "feet"),
  36639. name: "Maw (Imp)",
  36640. image: {
  36641. source: "./media/characters/max-kobold/maw-imp.svg"
  36642. }
  36643. },
  36644. mawDemi: {
  36645. height: math.unit(0.42, "feet"),
  36646. name: "Maw (Demi)",
  36647. image: {
  36648. source: "./media/characters/max-kobold/maw-demi.svg"
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(1 + 11/12, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(7 + 5/12, "feet"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/carbon/front.svg",
  36668. extra: 1754/1689,
  36669. bottom: 65/1819
  36670. }
  36671. },
  36672. back: {
  36673. height: math.unit(7 + 5/12, "feet"),
  36674. name: "Back",
  36675. image: {
  36676. source: "./media/characters/carbon/back.svg",
  36677. extra: 1762/1695,
  36678. bottom: 24/1786
  36679. }
  36680. },
  36681. frontGigantamax: {
  36682. height: math.unit(150, "feet"),
  36683. name: "Front (Gigantamax)",
  36684. image: {
  36685. source: "./media/characters/carbon/front-gigantamax.svg",
  36686. extra: 1826/1669,
  36687. bottom: 59/1885
  36688. }
  36689. },
  36690. backGigantamax: {
  36691. height: math.unit(150, "feet"),
  36692. name: "Back (Gigantamax)",
  36693. image: {
  36694. source: "./media/characters/carbon/back-gigantamax.svg",
  36695. extra: 1796/1653,
  36696. bottom: 53/1849
  36697. }
  36698. },
  36699. maw: {
  36700. height: math.unit(0.48, "feet"),
  36701. name: "Maw",
  36702. image: {
  36703. source: "./media/characters/carbon/maw.svg"
  36704. }
  36705. },
  36706. mawGigantamax: {
  36707. height: math.unit(7.5, "feet"),
  36708. name: "Maw (Gigantamax)",
  36709. image: {
  36710. source: "./media/characters/carbon/maw-gigantamax.svg"
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(7 + 5/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(6, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/maverick/front.svg",
  36730. extra: 1672/1661,
  36731. bottom: 85/1757
  36732. }
  36733. },
  36734. back: {
  36735. height: math.unit(6, "feet"),
  36736. name: "Back",
  36737. image: {
  36738. source: "./media/characters/maverick/back.svg",
  36739. extra: 1642/1631,
  36740. bottom: 38/1680
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(6, "feet"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(15, "feet"),
  36757. weight: math.unit(615, "lb"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/grockle/front.svg",
  36761. extra: 1535/1427,
  36762. bottom: 56/1591
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "Normal",
  36769. height: math.unit(15, "feet"),
  36770. default: true
  36771. },
  36772. {
  36773. name: "Large",
  36774. height: math.unit(150, "feet")
  36775. },
  36776. {
  36777. name: "Macro",
  36778. height: math.unit(1876, "feet")
  36779. },
  36780. {
  36781. name: "Mega Macro",
  36782. height: math.unit(121940, "feet")
  36783. },
  36784. {
  36785. name: "Giga Macro",
  36786. height: math.unit(750, "km")
  36787. },
  36788. {
  36789. name: "Tera Macro",
  36790. height: math.unit(750000, "km")
  36791. },
  36792. {
  36793. name: "Galactic",
  36794. height: math.unit(1.4e5, "km")
  36795. },
  36796. {
  36797. name: "Godlike",
  36798. height: math.unit(9.8e280, "galaxies")
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(11, "meters"),
  36807. weight: math.unit(20, "tonnes"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/alistair/front.svg",
  36811. extra: 1265/1009,
  36812. bottom: 93/1358
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(11, "meters"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(5 + 8/12, "feet"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/haruka/front.svg",
  36832. extra: 2012/1952,
  36833. bottom: 0/2012
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(5 + 8/12, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36847. {
  36848. back: {
  36849. height: math.unit(9, "feet"),
  36850. name: "Back",
  36851. image: {
  36852. source: "./media/characters/vivian-sylveon/back.svg",
  36853. extra: 1853/1714,
  36854. bottom: 0/1853
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(9, "feet"),
  36862. default: true
  36863. },
  36864. {
  36865. name: "Macro",
  36866. height: math.unit(500, "feet")
  36867. },
  36868. {
  36869. name: "Megamacro",
  36870. height: math.unit(600, "miles")
  36871. },
  36872. {
  36873. name: "Gigamacro",
  36874. height: math.unit(30000, "miles")
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36880. {
  36881. anthro: {
  36882. height: math.unit(5 + 10/12, "feet"),
  36883. weight: math.unit(100, "lb"),
  36884. name: "Anthro",
  36885. image: {
  36886. source: "./media/characters/daiki/anthro.svg",
  36887. extra: 1115/1027,
  36888. bottom: 69/1184
  36889. }
  36890. },
  36891. feral: {
  36892. height: math.unit(200, "feet"),
  36893. name: "Feral",
  36894. image: {
  36895. source: "./media/characters/daiki/feral.svg",
  36896. extra: 1256/313,
  36897. bottom: 39/1295
  36898. }
  36899. },
  36900. feralHead: {
  36901. height: math.unit(171, "feet"),
  36902. name: "Feral Head",
  36903. image: {
  36904. source: "./media/characters/daiki/feral-head.svg"
  36905. }
  36906. },
  36907. manaDragon: {
  36908. height: math.unit(170, "meters"),
  36909. name: "Mana-dragon",
  36910. image: {
  36911. source: "./media/characters/daiki/mana-dragon.svg",
  36912. extra: 763/420,
  36913. bottom: 97/860
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(5 + 10/12, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36927. {
  36928. fullyEquippedFront: {
  36929. height: math.unit(3 + 1/12, "feet"),
  36930. weight: math.unit(24, "lb"),
  36931. name: "Fully Equipped (Front)",
  36932. image: {
  36933. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36934. extra: 687/605,
  36935. bottom: 18/705
  36936. }
  36937. },
  36938. fullyEquippedBack: {
  36939. height: math.unit(3 + 1/12, "feet"),
  36940. weight: math.unit(24, "lb"),
  36941. name: "Fully Equipped (Back)",
  36942. image: {
  36943. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36944. extra: 689/590,
  36945. bottom: 18/707
  36946. }
  36947. },
  36948. dailyWear: {
  36949. height: math.unit(3 + 1/12, "feet"),
  36950. weight: math.unit(24, "lb"),
  36951. name: "Daily Wear",
  36952. image: {
  36953. source: "./media/characters/tea-spot/daily-wear.svg",
  36954. extra: 701/620,
  36955. bottom: 21/722
  36956. }
  36957. },
  36958. maidWork: {
  36959. height: math.unit(3 + 1/12, "feet"),
  36960. weight: math.unit(24, "lb"),
  36961. name: "Maid Work",
  36962. image: {
  36963. source: "./media/characters/tea-spot/maid-work.svg",
  36964. extra: 693/609,
  36965. bottom: 15/708
  36966. }
  36967. },
  36968. },
  36969. [
  36970. {
  36971. name: "Normal",
  36972. height: math.unit(3 + 1/12, "feet"),
  36973. default: true
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36979. {
  36980. front: {
  36981. height: math.unit(175, "cm"),
  36982. weight: math.unit(75, "kg"),
  36983. name: "Front",
  36984. image: {
  36985. source: "./media/characters/chee/front.svg",
  36986. extra: 1796/1740,
  36987. bottom: 40/1836
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Micro-Micro",
  36994. height: math.unit(1, "nm")
  36995. },
  36996. {
  36997. name: "Micro-erst",
  36998. height: math.unit(1, "micrometer")
  36999. },
  37000. {
  37001. name: "Micro-er",
  37002. height: math.unit(1, "cm")
  37003. },
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(175, "cm"),
  37007. default: true
  37008. },
  37009. {
  37010. name: "Macro",
  37011. height: math.unit(100, "m")
  37012. },
  37013. {
  37014. name: "Macro-er",
  37015. height: math.unit(1, "km")
  37016. },
  37017. {
  37018. name: "Macro-erst",
  37019. height: math.unit(10, "km")
  37020. },
  37021. {
  37022. name: "Macro-Macro",
  37023. height: math.unit(100, "km")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(11 + 9/12, "feet"),
  37032. weight: math.unit(935, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/kingsley/front.svg",
  37036. extra: 1803/1674,
  37037. bottom: 127/1930
  37038. }
  37039. },
  37040. frontNude: {
  37041. height: math.unit(11 + 9/12, "feet"),
  37042. weight: math.unit(935, "lb"),
  37043. name: "Front (Nude)",
  37044. image: {
  37045. source: "./media/characters/kingsley/front-nude.svg",
  37046. extra: 1803/1674,
  37047. bottom: 127/1930
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(11 + 9/12, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37061. {
  37062. side: {
  37063. height: math.unit(9, "feet"),
  37064. name: "Side",
  37065. image: {
  37066. source: "./media/characters/rymel/side.svg",
  37067. extra: 792/469,
  37068. bottom: 121/913
  37069. }
  37070. },
  37071. maw: {
  37072. height: math.unit(2.4, "meters"),
  37073. name: "Maw",
  37074. image: {
  37075. source: "./media/characters/rymel/maw.svg"
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "House Drake",
  37082. height: math.unit(2, "feet")
  37083. },
  37084. {
  37085. name: "Reduced",
  37086. height: math.unit(4.5, "feet")
  37087. },
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(9, "feet"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(1.74, "meters"),
  37100. weight: math.unit(55, "kg"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/rubus/front.svg",
  37104. extra: 1894/1742,
  37105. bottom: 44/1938
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(1.74, "meters"),
  37113. default: true
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(5 + 2/12, "feet"),
  37122. weight: math.unit(112, "lb"),
  37123. name: "Front",
  37124. image: {
  37125. source: "./media/characters/cassie-kingston/front.svg",
  37126. extra: 1438/1390,
  37127. bottom: 47/1485
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(5 + 2/12, "feet"),
  37135. default: true
  37136. },
  37137. {
  37138. name: "Macro",
  37139. height: math.unit(128, "feet")
  37140. },
  37141. {
  37142. name: "Megamacro",
  37143. height: math.unit(2.56, "miles")
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(7, "feet"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/fox/front.svg",
  37155. extra: 1798/1703,
  37156. bottom: 55/1853
  37157. }
  37158. },
  37159. back: {
  37160. height: math.unit(7, "feet"),
  37161. name: "Back",
  37162. image: {
  37163. source: "./media/characters/fox/back.svg",
  37164. extra: 1748/1649,
  37165. bottom: 32/1780
  37166. }
  37167. },
  37168. head: {
  37169. height: math.unit(1.95, "feet"),
  37170. name: "Head",
  37171. image: {
  37172. source: "./media/characters/fox/head.svg"
  37173. }
  37174. },
  37175. dick: {
  37176. height: math.unit(1.33, "feet"),
  37177. name: "Dick",
  37178. image: {
  37179. source: "./media/characters/fox/dick.svg"
  37180. }
  37181. },
  37182. foot: {
  37183. height: math.unit(1, "feet"),
  37184. name: "Foot",
  37185. image: {
  37186. source: "./media/characters/fox/foot.svg"
  37187. }
  37188. },
  37189. paw: {
  37190. height: math.unit(0.92, "feet"),
  37191. name: "Paw",
  37192. image: {
  37193. source: "./media/characters/fox/paw.svg"
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Small",
  37200. height: math.unit(3, "inches")
  37201. },
  37202. {
  37203. name: "\"Realistic\"",
  37204. height: math.unit(7, "feet")
  37205. },
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(150, "feet"),
  37209. default: true
  37210. },
  37211. {
  37212. name: "BIG",
  37213. height: math.unit(1200, "feet")
  37214. },
  37215. {
  37216. name: "👀",
  37217. height: math.unit(5, "miles")
  37218. },
  37219. {
  37220. name: "👀👀👀",
  37221. height: math.unit(64, "miles")
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(625, "feet"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/asonja-rossa/front.svg",
  37233. extra: 1833/1686,
  37234. bottom: 24/1857
  37235. }
  37236. },
  37237. back: {
  37238. height: math.unit(625, "feet"),
  37239. name: "Back",
  37240. image: {
  37241. source: "./media/characters/asonja-rossa/back.svg",
  37242. extra: 1852/1753,
  37243. bottom: 26/1878
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Macro",
  37250. height: math.unit(625, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37257. {
  37258. side: {
  37259. height: math.unit(8, "feet"),
  37260. name: "Side",
  37261. image: {
  37262. source: "./media/characters/rezukii/side.svg",
  37263. extra: 979/542,
  37264. bottom: 87/1066
  37265. }
  37266. },
  37267. sitting: {
  37268. height: math.unit(14.6, "feet"),
  37269. name: "Sitting",
  37270. image: {
  37271. source: "./media/characters/rezukii/sitting.svg",
  37272. extra: 1023/813,
  37273. bottom: 45/1068
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Tiny",
  37280. height: math.unit(2, "feet")
  37281. },
  37282. {
  37283. name: "Smol",
  37284. height: math.unit(4, "feet")
  37285. },
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(8, "feet"),
  37289. default: true
  37290. },
  37291. {
  37292. name: "Big",
  37293. height: math.unit(12, "feet")
  37294. },
  37295. {
  37296. name: "Macro",
  37297. height: math.unit(30, "feet")
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(14, "feet"),
  37306. weight: math.unit(9.5, "tonnes"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/dawnheart/front.svg",
  37310. extra: 2792/2675,
  37311. bottom: 64/2856
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(14, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37325. {
  37326. front: {
  37327. height: math.unit(1.7, "m"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/gladi/front.svg",
  37331. extra: 1460/1362,
  37332. bottom: 19/1479
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(1.7, "m"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/gladi/back.svg",
  37340. extra: 1459/1357,
  37341. bottom: 12/1471
  37342. }
  37343. },
  37344. feral: {
  37345. height: math.unit(2.05, "m"),
  37346. name: "Feral",
  37347. image: {
  37348. source: "./media/characters/gladi/feral.svg",
  37349. extra: 821/557,
  37350. bottom: 91/912
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Shortest",
  37357. height: math.unit(70, "cm")
  37358. },
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(1.7, "m")
  37362. },
  37363. {
  37364. name: "Macro",
  37365. height: math.unit(10, "m"),
  37366. default: true
  37367. },
  37368. {
  37369. name: "Tallest",
  37370. height: math.unit(200, "m")
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(5 + 7/12, "feet"),
  37379. weight: math.unit(2, "tons"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/erdno/front.svg",
  37383. extra: 1234/1129,
  37384. bottom: 35/1269
  37385. }
  37386. },
  37387. angled: {
  37388. height: math.unit(5 + 7/12, "feet"),
  37389. weight: math.unit(2, "tons"),
  37390. name: "Angled",
  37391. image: {
  37392. source: "./media/characters/erdno/angled.svg",
  37393. extra: 1185/1139,
  37394. bottom: 36/1221
  37395. }
  37396. },
  37397. side: {
  37398. height: math.unit(5 + 7/12, "feet"),
  37399. weight: math.unit(2, "tons"),
  37400. name: "Side",
  37401. image: {
  37402. source: "./media/characters/erdno/side.svg",
  37403. extra: 1191/1144,
  37404. bottom: 40/1231
  37405. }
  37406. },
  37407. back: {
  37408. height: math.unit(5 + 7/12, "feet"),
  37409. weight: math.unit(2, "tons"),
  37410. name: "Back",
  37411. image: {
  37412. source: "./media/characters/erdno/back.svg",
  37413. extra: 1202/1146,
  37414. bottom: 17/1219
  37415. }
  37416. },
  37417. frontNsfw: {
  37418. height: math.unit(5 + 7/12, "feet"),
  37419. weight: math.unit(2, "tons"),
  37420. name: "Front (NSFW)",
  37421. image: {
  37422. source: "./media/characters/erdno/front-nsfw.svg",
  37423. extra: 1234/1129,
  37424. bottom: 35/1269
  37425. }
  37426. },
  37427. angledNsfw: {
  37428. height: math.unit(5 + 7/12, "feet"),
  37429. weight: math.unit(2, "tons"),
  37430. name: "Angled (NSFW)",
  37431. image: {
  37432. source: "./media/characters/erdno/angled-nsfw.svg",
  37433. extra: 1185/1139,
  37434. bottom: 36/1221
  37435. }
  37436. },
  37437. sideNsfw: {
  37438. height: math.unit(5 + 7/12, "feet"),
  37439. weight: math.unit(2, "tons"),
  37440. name: "Side (NSFW)",
  37441. image: {
  37442. source: "./media/characters/erdno/side-nsfw.svg",
  37443. extra: 1191/1144,
  37444. bottom: 40/1231
  37445. }
  37446. },
  37447. backNsfw: {
  37448. height: math.unit(5 + 7/12, "feet"),
  37449. weight: math.unit(2, "tons"),
  37450. name: "Back (NSFW)",
  37451. image: {
  37452. source: "./media/characters/erdno/back-nsfw.svg",
  37453. extra: 1202/1146,
  37454. bottom: 17/1219
  37455. }
  37456. },
  37457. frontHyper: {
  37458. height: math.unit(5 + 7/12, "feet"),
  37459. weight: math.unit(2, "tons"),
  37460. name: "Front (Hyper)",
  37461. image: {
  37462. source: "./media/characters/erdno/front-hyper.svg",
  37463. extra: 1298/1136,
  37464. bottom: 35/1333
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(5 + 7/12, "feet"),
  37472. default: true
  37473. },
  37474. {
  37475. name: "Big",
  37476. height: math.unit(5.7, "meters")
  37477. },
  37478. {
  37479. name: "Macro",
  37480. height: math.unit(5.7, "kilometers")
  37481. },
  37482. {
  37483. name: "Megamacro",
  37484. height: math.unit(5.7, "earths")
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(5 + 10/12, "feet"),
  37493. weight: math.unit(150, "lb"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/jamie/front.svg",
  37497. extra: 1908/1768,
  37498. bottom: 19/1927
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Minimum",
  37505. height: math.unit(2, "cm")
  37506. },
  37507. {
  37508. name: "Micro",
  37509. height: math.unit(3, "inches")
  37510. },
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(5 + 10/12, "feet"),
  37514. default: true
  37515. },
  37516. {
  37517. name: "Macro",
  37518. height: math.unit(150, "feet")
  37519. },
  37520. {
  37521. name: "Megamacro",
  37522. height: math.unit(10000, "m")
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(2, "meters"),
  37531. weight: math.unit(100, "kg"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/shiron/front.svg",
  37535. extra: 2103/1985,
  37536. bottom: 98/2201
  37537. }
  37538. },
  37539. back: {
  37540. height: math.unit(2, "meters"),
  37541. weight: math.unit(100, "kg"),
  37542. name: "Back",
  37543. image: {
  37544. source: "./media/characters/shiron/back.svg",
  37545. extra: 2110/2015,
  37546. bottom: 89/2199
  37547. }
  37548. },
  37549. hand: {
  37550. height: math.unit(0.96, "feet"),
  37551. name: "Hand",
  37552. image: {
  37553. source: "./media/characters/shiron/hand.svg"
  37554. }
  37555. },
  37556. foot: {
  37557. height: math.unit(1.464, "feet"),
  37558. name: "Foot",
  37559. image: {
  37560. source: "./media/characters/shiron/foot.svg"
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(2, "meters")
  37568. },
  37569. {
  37570. name: "Macro",
  37571. height: math.unit(500, "meters"),
  37572. default: true
  37573. },
  37574. {
  37575. name: "Megamacro",
  37576. height: math.unit(20, "km")
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(6, "feet"),
  37585. name: "Front",
  37586. image: {
  37587. source: "./media/characters/sam/front.svg",
  37588. extra: 849/826,
  37589. bottom: 19/868
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(6, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(8 + 4/12, "feet"),
  37606. weight: math.unit(122, "kg"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/namori-kurogawa/front.svg",
  37610. extra: 1894/1576,
  37611. bottom: 34/1928
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(8 + 4/12, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(9, "feet"),
  37628. weight: math.unit(621, "lb"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/unmru/front.svg",
  37632. extra: 1853/1747,
  37633. bottom: 73/1926
  37634. }
  37635. },
  37636. side: {
  37637. height: math.unit(9, "feet"),
  37638. weight: math.unit(621, "lb"),
  37639. name: "Side",
  37640. image: {
  37641. source: "./media/characters/unmru/side.svg",
  37642. extra: 1781/1671,
  37643. bottom: 127/1908
  37644. }
  37645. },
  37646. back: {
  37647. height: math.unit(9, "feet"),
  37648. weight: math.unit(621, "lb"),
  37649. name: "Back",
  37650. image: {
  37651. source: "./media/characters/unmru/back.svg",
  37652. extra: 1894/1765,
  37653. bottom: 75/1969
  37654. }
  37655. },
  37656. dick: {
  37657. height: math.unit(3, "feet"),
  37658. weight: math.unit(35, "lb"),
  37659. name: "Dick",
  37660. image: {
  37661. source: "./media/characters/unmru/dick.svg"
  37662. }
  37663. },
  37664. },
  37665. [
  37666. {
  37667. name: "Normal",
  37668. height: math.unit(9, "feet")
  37669. },
  37670. {
  37671. name: "Natural",
  37672. height: math.unit(27, "feet"),
  37673. default: true
  37674. },
  37675. {
  37676. name: "Giant",
  37677. height: math.unit(90, "feet")
  37678. },
  37679. {
  37680. name: "Kaiju",
  37681. height: math.unit(270, "feet")
  37682. },
  37683. {
  37684. name: "Macro",
  37685. height: math.unit(900, "feet")
  37686. },
  37687. {
  37688. name: "Macro+",
  37689. height: math.unit(2700, "feet")
  37690. },
  37691. {
  37692. name: "Megamacro",
  37693. height: math.unit(9000, "feet")
  37694. },
  37695. {
  37696. name: "City-Crushing",
  37697. height: math.unit(27000, "feet")
  37698. },
  37699. {
  37700. name: "Mountain-Mashing",
  37701. height: math.unit(90000, "feet")
  37702. },
  37703. {
  37704. name: "Earth-Eclipsing",
  37705. height: math.unit(2.7e8, "feet")
  37706. },
  37707. {
  37708. name: "Sol-Swallowing",
  37709. height: math.unit(9e10, "feet")
  37710. },
  37711. {
  37712. name: "Majoris-Munching",
  37713. height: math.unit(2.7e13, "feet")
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37719. {
  37720. front: {
  37721. height: math.unit(1, "inch"),
  37722. name: "Front",
  37723. image: {
  37724. source: "./media/characters/squeaks-mouse/front.svg",
  37725. extra: 352/308,
  37726. bottom: 25/377
  37727. }
  37728. },
  37729. },
  37730. [
  37731. {
  37732. name: "Micro",
  37733. height: math.unit(1, "inch"),
  37734. default: true
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37740. {
  37741. side: {
  37742. height: math.unit(35, "feet"),
  37743. name: "Side",
  37744. image: {
  37745. source: "./media/characters/sayko/side.svg",
  37746. extra: 1697/1021,
  37747. bottom: 82/1779
  37748. }
  37749. },
  37750. head: {
  37751. height: math.unit(16, "feet"),
  37752. name: "Head",
  37753. image: {
  37754. source: "./media/characters/sayko/head.svg"
  37755. }
  37756. },
  37757. forepaw: {
  37758. height: math.unit(7.85, "feet"),
  37759. name: "Forepaw",
  37760. image: {
  37761. source: "./media/characters/sayko/forepaw.svg"
  37762. }
  37763. },
  37764. hindpaw: {
  37765. height: math.unit(8.8, "feet"),
  37766. name: "Hindpaw",
  37767. image: {
  37768. source: "./media/characters/sayko/hindpaw.svg"
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(35, "feet"),
  37776. default: true
  37777. },
  37778. {
  37779. name: "Colossus",
  37780. height: math.unit(100, "meters")
  37781. },
  37782. {
  37783. name: "\"Small\" Deity",
  37784. height: math.unit(1, "km")
  37785. },
  37786. {
  37787. name: "\"Large\" Deity",
  37788. height: math.unit(15, "km")
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(6, "feet"),
  37797. weight: math.unit(250, "lb"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/mukiro/front.svg",
  37801. extra: 1368/1310,
  37802. bottom: 34/1402
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(6, "feet"),
  37810. default: true
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(12 + 4/12, "feet"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37822. extra: 1346/1311,
  37823. bottom: 65/1411
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Base",
  37830. height: math.unit(12 + 4/12, "feet"),
  37831. default: true
  37832. },
  37833. {
  37834. name: "Macro",
  37835. height: math.unit(150, "feet")
  37836. },
  37837. {
  37838. name: "Mega",
  37839. height: math.unit(2, "miles")
  37840. },
  37841. {
  37842. name: "Demi God",
  37843. height: math.unit(4, "AU")
  37844. },
  37845. {
  37846. name: "God Size",
  37847. height: math.unit(1, "universe")
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37853. {
  37854. front: {
  37855. height: math.unit(3 + 3/12, "feet"),
  37856. weight: math.unit(88, "lb"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/trey/front.svg",
  37860. extra: 1815/1509,
  37861. bottom: 60/1875
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(3 + 3/12, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37875. {
  37876. front: {
  37877. height: math.unit(4, "meters"),
  37878. name: "Front",
  37879. image: {
  37880. source: "./media/characters/adelonda/front.svg",
  37881. extra: 1077/982,
  37882. bottom: 39/1116
  37883. }
  37884. },
  37885. back: {
  37886. height: math.unit(4, "meters"),
  37887. name: "Back",
  37888. image: {
  37889. source: "./media/characters/adelonda/back.svg",
  37890. extra: 1105/1003,
  37891. bottom: 25/1130
  37892. }
  37893. },
  37894. feral: {
  37895. height: math.unit(40/1.5, "meters"),
  37896. name: "Feral",
  37897. image: {
  37898. source: "./media/characters/adelonda/feral.svg",
  37899. extra: 597/271,
  37900. bottom: 387/984
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(4, "meters"),
  37908. default: true
  37909. },
  37910. ]
  37911. ))
  37912. characterMakers.push(() => makeCharacter(
  37913. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37914. {
  37915. front: {
  37916. height: math.unit(8 + 4/12, "feet"),
  37917. weight: math.unit(670, "lb"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/acadiel/front.svg",
  37921. extra: 1901/1595,
  37922. bottom: 142/2043
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(8 + 4/12, "feet"),
  37930. default: true
  37931. },
  37932. {
  37933. name: "Macro",
  37934. height: math.unit(200, "feet")
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(6 + 2/12, "feet"),
  37943. weight: math.unit(185, "lb"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/kayne-ein/front.svg",
  37947. extra: 1780/1560,
  37948. bottom: 81/1861
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(6 + 2/12, "feet"),
  37956. default: true
  37957. },
  37958. {
  37959. name: "Transformation Stage",
  37960. height: math.unit(15, "feet")
  37961. },
  37962. {
  37963. name: "Macro",
  37964. height: math.unit(150, "feet")
  37965. },
  37966. {
  37967. name: "Earth's Shadow",
  37968. height: math.unit(6200, "miles")
  37969. },
  37970. {
  37971. name: "Universal Demon",
  37972. height: math.unit(28e9, "parsecs")
  37973. },
  37974. {
  37975. name: "Multiverse God",
  37976. height: math.unit(3, "multiverses")
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(5 + 5/12, "feet"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/fawn/front.svg",
  37988. extra: 1873/1731,
  37989. bottom: 95/1968
  37990. }
  37991. },
  37992. back: {
  37993. height: math.unit(5 + 5/12, "feet"),
  37994. name: "Back",
  37995. image: {
  37996. source: "./media/characters/fawn/back.svg",
  37997. extra: 1813/1700,
  37998. bottom: 14/1827
  37999. }
  38000. },
  38001. hoof: {
  38002. height: math.unit(1.45, "feet"),
  38003. name: "Hoof",
  38004. image: {
  38005. source: "./media/characters/fawn/hoof.svg"
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(5 + 5/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(2 + 5/12, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/orion/front.svg",
  38025. extra: 1366/1304,
  38026. bottom: 43/1409
  38027. }
  38028. },
  38029. paw: {
  38030. height: math.unit(0.52, "feet"),
  38031. name: "Paw",
  38032. image: {
  38033. source: "./media/characters/orion/paw.svg"
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(2 + 5/12, "feet"),
  38041. default: true
  38042. },
  38043. ]
  38044. ))
  38045. characterMakers.push(() => makeCharacter(
  38046. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38047. {
  38048. front: {
  38049. height: math.unit(5 + 10/12, "feet"),
  38050. name: "Front",
  38051. image: {
  38052. source: "./media/characters/vera/front.svg",
  38053. extra: 1680/1575,
  38054. bottom: 49/1729
  38055. }
  38056. },
  38057. back: {
  38058. height: math.unit(5 + 10/12, "feet"),
  38059. name: "Back",
  38060. image: {
  38061. source: "./media/characters/vera/back.svg",
  38062. extra: 1700/1588,
  38063. bottom: 18/1718
  38064. }
  38065. },
  38066. arcanine: {
  38067. height: math.unit(6 + 8/12, "feet"),
  38068. name: "Arcanine",
  38069. image: {
  38070. source: "./media/characters/vera/arcanine.svg",
  38071. extra: 1590/1511,
  38072. bottom: 71/1661
  38073. }
  38074. },
  38075. maw: {
  38076. height: math.unit(0.82, "feet"),
  38077. name: "Maw",
  38078. image: {
  38079. source: "./media/characters/vera/maw.svg"
  38080. }
  38081. },
  38082. mawArcanine: {
  38083. height: math.unit(0.97, "feet"),
  38084. name: "Maw (Arcanine)",
  38085. image: {
  38086. source: "./media/characters/vera/maw-arcanine.svg"
  38087. }
  38088. },
  38089. paw: {
  38090. height: math.unit(0.75, "feet"),
  38091. name: "Paw",
  38092. image: {
  38093. source: "./media/characters/vera/paw.svg"
  38094. }
  38095. },
  38096. pawprint: {
  38097. height: math.unit(0.52, "feet"),
  38098. name: "Pawprint",
  38099. image: {
  38100. source: "./media/characters/vera/pawprint.svg"
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(5 + 10/12, "feet"),
  38108. default: true
  38109. },
  38110. {
  38111. name: "Macro",
  38112. height: math.unit(75, "feet")
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38118. {
  38119. front: {
  38120. height: math.unit(4, "feet"),
  38121. weight: math.unit(40, "lb"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/orvan-rabbit/front.svg",
  38125. extra: 1896/1642,
  38126. bottom: 29/1925
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(4, "feet"),
  38134. default: true
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38140. {
  38141. front: {
  38142. height: math.unit(6, "feet"),
  38143. weight: math.unit(168, "lb"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/lisa/front.svg",
  38147. extra: 2065/1867,
  38148. bottom: 46/2111
  38149. }
  38150. },
  38151. back: {
  38152. height: math.unit(6, "feet"),
  38153. weight: math.unit(168, "lb"),
  38154. name: "Back",
  38155. image: {
  38156. source: "./media/characters/lisa/back.svg",
  38157. extra: 1982/1838,
  38158. bottom: 29/2011
  38159. }
  38160. },
  38161. maw: {
  38162. height: math.unit(0.81, "feet"),
  38163. name: "Maw",
  38164. image: {
  38165. source: "./media/characters/lisa/maw.svg"
  38166. }
  38167. },
  38168. paw: {
  38169. height: math.unit(0.9, "feet"),
  38170. name: "Paw",
  38171. image: {
  38172. source: "./media/characters/lisa/paw.svg"
  38173. }
  38174. },
  38175. caribousune: {
  38176. height: math.unit(7 + 2/12, "feet"),
  38177. weight: math.unit(268, "lb"),
  38178. name: "Caribousune",
  38179. image: {
  38180. source: "./media/characters/lisa/caribousune.svg",
  38181. extra: 1843/1633,
  38182. bottom: 29/1872
  38183. }
  38184. },
  38185. frontCaribousune: {
  38186. height: math.unit(7 + 2/12, "feet"),
  38187. weight: math.unit(268, "lb"),
  38188. name: "Front (Caribousune)",
  38189. image: {
  38190. source: "./media/characters/lisa/front-caribousune.svg",
  38191. extra: 1818/1638,
  38192. bottom: 52/1870
  38193. }
  38194. },
  38195. sideCaribousune: {
  38196. height: math.unit(7 + 2/12, "feet"),
  38197. weight: math.unit(268, "lb"),
  38198. name: "Side (Caribousune)",
  38199. image: {
  38200. source: "./media/characters/lisa/side-caribousune.svg",
  38201. extra: 1851/1635,
  38202. bottom: 16/1867
  38203. }
  38204. },
  38205. backCaribousune: {
  38206. height: math.unit(7 + 2/12, "feet"),
  38207. weight: math.unit(268, "lb"),
  38208. name: "Back (Caribousune)",
  38209. image: {
  38210. source: "./media/characters/lisa/back-caribousune.svg",
  38211. extra: 1801/1604,
  38212. bottom: 44/1845
  38213. }
  38214. },
  38215. caribou: {
  38216. height: math.unit(7 + 2/12, "feet"),
  38217. weight: math.unit(268, "lb"),
  38218. name: "Caribou",
  38219. image: {
  38220. source: "./media/characters/lisa/caribou.svg",
  38221. extra: 1843/1633,
  38222. bottom: 29/1872
  38223. }
  38224. },
  38225. frontCaribou: {
  38226. height: math.unit(7 + 2/12, "feet"),
  38227. weight: math.unit(268, "lb"),
  38228. name: "Front (Caribou)",
  38229. image: {
  38230. source: "./media/characters/lisa/front-caribou.svg",
  38231. extra: 1818/1638,
  38232. bottom: 52/1870
  38233. }
  38234. },
  38235. sideCaribou: {
  38236. height: math.unit(7 + 2/12, "feet"),
  38237. weight: math.unit(268, "lb"),
  38238. name: "Side (Caribou)",
  38239. image: {
  38240. source: "./media/characters/lisa/side-caribou.svg",
  38241. extra: 1851/1635,
  38242. bottom: 16/1867
  38243. }
  38244. },
  38245. backCaribou: {
  38246. height: math.unit(7 + 2/12, "feet"),
  38247. weight: math.unit(268, "lb"),
  38248. name: "Back (Caribou)",
  38249. image: {
  38250. source: "./media/characters/lisa/back-caribou.svg",
  38251. extra: 1801/1604,
  38252. bottom: 44/1845
  38253. }
  38254. },
  38255. mawCaribou: {
  38256. height: math.unit(1.45, "feet"),
  38257. name: "Maw (Caribou)",
  38258. image: {
  38259. source: "./media/characters/lisa/maw-caribou.svg"
  38260. }
  38261. },
  38262. mawCaribousune: {
  38263. height: math.unit(1.45, "feet"),
  38264. name: "Maw (Caribousune)",
  38265. image: {
  38266. source: "./media/characters/lisa/maw-caribousune.svg"
  38267. }
  38268. },
  38269. pawCaribousune: {
  38270. height: math.unit(1.61, "feet"),
  38271. name: "Paw (Caribou)",
  38272. image: {
  38273. source: "./media/characters/lisa/paw-caribousune.svg"
  38274. }
  38275. },
  38276. },
  38277. [
  38278. {
  38279. name: "Normal",
  38280. height: math.unit(6, "feet")
  38281. },
  38282. {
  38283. name: "God Size",
  38284. height: math.unit(72, "feet"),
  38285. default: true
  38286. },
  38287. {
  38288. name: "Towering",
  38289. height: math.unit(288, "feet")
  38290. },
  38291. {
  38292. name: "City Size",
  38293. height: math.unit(48384, "feet")
  38294. },
  38295. {
  38296. name: "Continental",
  38297. height: math.unit(4200, "miles")
  38298. },
  38299. {
  38300. name: "Planet Eater",
  38301. height: math.unit(42, "earths")
  38302. },
  38303. {
  38304. name: "Star Swallower",
  38305. height: math.unit(42, "solarradii")
  38306. },
  38307. {
  38308. name: "System Swallower",
  38309. height: math.unit(84000, "AU")
  38310. },
  38311. {
  38312. name: "Galaxy Gobbler",
  38313. height: math.unit(42, "galaxies")
  38314. },
  38315. {
  38316. name: "Universe Devourer",
  38317. height: math.unit(42, "universes")
  38318. },
  38319. {
  38320. name: "Multiverse Muncher",
  38321. height: math.unit(42, "multiverses")
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(36, "feet"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/shadow-rat/front.svg",
  38333. extra: 1845/1758,
  38334. bottom: 83/1928
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Macro",
  38341. height: math.unit(36, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38348. {
  38349. side: {
  38350. height: math.unit(8, "feet"),
  38351. weight: math.unit(2630, "lb"),
  38352. name: "Side",
  38353. image: {
  38354. source: "./media/characters/torallia/side.svg",
  38355. extra: 2164/2021,
  38356. bottom: 371/2535
  38357. }
  38358. },
  38359. },
  38360. [
  38361. {
  38362. name: "Mortal Interaction",
  38363. height: math.unit(8, "feet")
  38364. },
  38365. {
  38366. name: "Natural",
  38367. height: math.unit(24, "feet"),
  38368. default: true
  38369. },
  38370. {
  38371. name: "Giant",
  38372. height: math.unit(80, "feet")
  38373. },
  38374. {
  38375. name: "Kaiju",
  38376. height: math.unit(240, "feet")
  38377. },
  38378. {
  38379. name: "Macro",
  38380. height: math.unit(800, "feet")
  38381. },
  38382. {
  38383. name: "Macro+",
  38384. height: math.unit(2400, "feet")
  38385. },
  38386. {
  38387. name: "Macro++",
  38388. height: math.unit(8000, "feet")
  38389. },
  38390. {
  38391. name: "City-Crushing",
  38392. height: math.unit(24000, "feet")
  38393. },
  38394. {
  38395. name: "Mountain-Mashing",
  38396. height: math.unit(80000, "feet")
  38397. },
  38398. {
  38399. name: "District Demolisher",
  38400. height: math.unit(240000, "feet")
  38401. },
  38402. {
  38403. name: "Tri-County Terror",
  38404. height: math.unit(800000, "feet")
  38405. },
  38406. {
  38407. name: "State Smasher",
  38408. height: math.unit(2.4e6, "feet")
  38409. },
  38410. {
  38411. name: "Nation Nemesis",
  38412. height: math.unit(8e6, "feet")
  38413. },
  38414. {
  38415. name: "Continent Cracker",
  38416. height: math.unit(2.4e7, "feet")
  38417. },
  38418. {
  38419. name: "Planet-Pillaging",
  38420. height: math.unit(8e7, "feet")
  38421. },
  38422. {
  38423. name: "Earth-Eclipsing",
  38424. height: math.unit(2.4e8, "feet")
  38425. },
  38426. {
  38427. name: "Jovian-Jostling",
  38428. height: math.unit(8e8, "feet")
  38429. },
  38430. {
  38431. name: "Gas Giant Gulper",
  38432. height: math.unit(2.4e9, "feet")
  38433. },
  38434. {
  38435. name: "Astral Annihilator",
  38436. height: math.unit(8e9, "feet")
  38437. },
  38438. {
  38439. name: "Celestial Conqueror",
  38440. height: math.unit(2.4e10, "feet")
  38441. },
  38442. {
  38443. name: "Sol-Swallowing",
  38444. height: math.unit(8e10, "feet")
  38445. },
  38446. {
  38447. name: "Hunter of the Heavens",
  38448. height: math.unit(2.4e13, "feet")
  38449. },
  38450. ]
  38451. ))
  38452. characterMakers.push(() => makeCharacter(
  38453. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38454. {
  38455. front: {
  38456. height: math.unit(6 + 8/12, "feet"),
  38457. name: "Front",
  38458. image: {
  38459. source: "./media/characters/rebecca-pawlson/front.svg",
  38460. extra: 1737/1596,
  38461. bottom: 107/1844
  38462. }
  38463. },
  38464. back: {
  38465. height: math.unit(6 + 8/12, "feet"),
  38466. name: "Back",
  38467. image: {
  38468. source: "./media/characters/rebecca-pawlson/back.svg",
  38469. extra: 1702/1523,
  38470. bottom: 86/1788
  38471. }
  38472. },
  38473. },
  38474. [
  38475. {
  38476. name: "Normal",
  38477. height: math.unit(6 + 8/12, "feet")
  38478. },
  38479. {
  38480. name: "Mini Macro",
  38481. height: math.unit(10, "feet"),
  38482. default: true
  38483. },
  38484. {
  38485. name: "Macro",
  38486. height: math.unit(100, "feet")
  38487. },
  38488. {
  38489. name: "Mega Macro",
  38490. height: math.unit(2500, "feet")
  38491. },
  38492. {
  38493. name: "Giga Macro",
  38494. height: math.unit(50, "miles")
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(7 + 6/12, "feet"),
  38503. weight: math.unit(600, "lb"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/moxie-nova/front.svg",
  38507. extra: 1734/1652,
  38508. bottom: 41/1775
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(7 + 6/12, "feet"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38522. {
  38523. goat: {
  38524. height: math.unit(4, "feet"),
  38525. weight: math.unit(180, "lb"),
  38526. name: "Goat",
  38527. image: {
  38528. source: "./media/characters/tiffany/goat.svg",
  38529. extra: 1845/1595,
  38530. bottom: 106/1951
  38531. }
  38532. },
  38533. front: {
  38534. height: math.unit(5, "feet"),
  38535. weight: math.unit(150, "lb"),
  38536. name: "Foxcoon",
  38537. image: {
  38538. source: "./media/characters/tiffany/foxcoon.svg",
  38539. extra: 1941/1845,
  38540. bottom: 58/1999
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Normal",
  38547. height: math.unit(5, "feet"),
  38548. default: true
  38549. },
  38550. ]
  38551. ))
  38552. characterMakers.push(() => makeCharacter(
  38553. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38554. {
  38555. front: {
  38556. height: math.unit(8, "feet"),
  38557. weight: math.unit(300, "lb"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/raxinath/front.svg",
  38561. extra: 1407/1309,
  38562. bottom: 39/1446
  38563. }
  38564. },
  38565. back: {
  38566. height: math.unit(8, "feet"),
  38567. weight: math.unit(300, "lb"),
  38568. name: "Back",
  38569. image: {
  38570. source: "./media/characters/raxinath/back.svg",
  38571. extra: 1405/1315,
  38572. bottom: 9/1414
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Speck",
  38579. height: math.unit(0.5, "nm")
  38580. },
  38581. {
  38582. name: "Micro",
  38583. height: math.unit(3, "inches")
  38584. },
  38585. {
  38586. name: "Kobold",
  38587. height: math.unit(3, "feet")
  38588. },
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(8, "feet"),
  38592. default: true
  38593. },
  38594. {
  38595. name: "Giant",
  38596. height: math.unit(50, "feet")
  38597. },
  38598. {
  38599. name: "Macro",
  38600. height: math.unit(1000, "feet")
  38601. },
  38602. {
  38603. name: "Megamacro",
  38604. height: math.unit(1, "mile")
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(10, "feet"),
  38613. weight: math.unit(1442, "lb"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/mal-dragon/front.svg",
  38617. extra: 1515/1444,
  38618. bottom: 113/1628
  38619. }
  38620. },
  38621. back: {
  38622. height: math.unit(10, "feet"),
  38623. weight: math.unit(1442, "lb"),
  38624. name: "Back",
  38625. image: {
  38626. source: "./media/characters/mal-dragon/back.svg",
  38627. extra: 1527/1434,
  38628. bottom: 25/1552
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Mortal Interaction",
  38635. height: math.unit(10, "feet"),
  38636. default: true
  38637. },
  38638. {
  38639. name: "Large",
  38640. height: math.unit(30, "feet")
  38641. },
  38642. {
  38643. name: "Kaiju",
  38644. height: math.unit(300, "feet")
  38645. },
  38646. {
  38647. name: "Megamacro",
  38648. height: math.unit(10000, "feet")
  38649. },
  38650. {
  38651. name: "Continent Cracker",
  38652. height: math.unit(30000000, "feet")
  38653. },
  38654. {
  38655. name: "Sol-Swallowing",
  38656. height: math.unit(1e11, "feet")
  38657. },
  38658. {
  38659. name: "Light Universal",
  38660. height: math.unit(5, "universes")
  38661. },
  38662. {
  38663. name: "Universe Atoms",
  38664. height: math.unit(1.829e9, "universes")
  38665. },
  38666. {
  38667. name: "Light Multiversal",
  38668. height: math.unit(5, "multiverses")
  38669. },
  38670. {
  38671. name: "Multiverse Atoms",
  38672. height: math.unit(1.829e9, "multiverses")
  38673. },
  38674. {
  38675. name: "Fabric of Time",
  38676. height: math.unit(1e262, "multiverses")
  38677. },
  38678. ]
  38679. ))
  38680. characterMakers.push(() => makeCharacter(
  38681. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38682. {
  38683. front: {
  38684. height: math.unit(9, "feet"),
  38685. weight: math.unit(1050, "lb"),
  38686. name: "Front",
  38687. image: {
  38688. source: "./media/characters/tabitha/front.svg",
  38689. extra: 2083/1994,
  38690. bottom: 68/2151
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Baseline",
  38697. height: math.unit(9, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Giant",
  38702. height: math.unit(90, "feet")
  38703. },
  38704. {
  38705. name: "Macro",
  38706. height: math.unit(900, "feet")
  38707. },
  38708. {
  38709. name: "Megamacro",
  38710. height: math.unit(9000, "feet")
  38711. },
  38712. {
  38713. name: "City-Crushing",
  38714. height: math.unit(27000, "feet")
  38715. },
  38716. {
  38717. name: "Mountain-Mashing",
  38718. height: math.unit(90000, "feet")
  38719. },
  38720. {
  38721. name: "Nation Nemesis",
  38722. height: math.unit(9e6, "feet")
  38723. },
  38724. {
  38725. name: "Continent Cracker",
  38726. height: math.unit(27e6, "feet")
  38727. },
  38728. {
  38729. name: "Earth-Eclipsing",
  38730. height: math.unit(2.7e8, "feet")
  38731. },
  38732. {
  38733. name: "Gas Giant Gulper",
  38734. height: math.unit(2.7e9, "feet")
  38735. },
  38736. {
  38737. name: "Sol-Swallowing",
  38738. height: math.unit(9e10, "feet")
  38739. },
  38740. {
  38741. name: "Galaxy Gulper",
  38742. height: math.unit(9, "galaxies")
  38743. },
  38744. {
  38745. name: "Cosmos Churner",
  38746. height: math.unit(9, "universes")
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(160, "cm"),
  38755. weight: math.unit(55, "kg"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/tow/front.svg",
  38759. extra: 1751/1722,
  38760. bottom: 74/1825
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Norm",
  38767. height: math.unit(160, "cm")
  38768. },
  38769. {
  38770. name: "Casual",
  38771. height: math.unit(3200, "m"),
  38772. default: true
  38773. },
  38774. {
  38775. name: "Show-Off",
  38776. height: math.unit(160, "km")
  38777. },
  38778. ]
  38779. ))
  38780. characterMakers.push(() => makeCharacter(
  38781. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38782. {
  38783. front: {
  38784. height: math.unit(7 + 11/12, "feet"),
  38785. weight: math.unit(342.8, "lb"),
  38786. name: "Front",
  38787. image: {
  38788. source: "./media/characters/vivian-orca-dragon/front.svg",
  38789. extra: 1890/1865,
  38790. bottom: 28/1918
  38791. }
  38792. },
  38793. },
  38794. [
  38795. {
  38796. name: "Micro",
  38797. height: math.unit(5, "inches")
  38798. },
  38799. {
  38800. name: "Normal",
  38801. height: math.unit(7 + 11/12, "feet"),
  38802. default: true
  38803. },
  38804. {
  38805. name: "Macro",
  38806. height: math.unit(395 + 7/12, "feet")
  38807. },
  38808. ]
  38809. ))
  38810. characterMakers.push(() => makeCharacter(
  38811. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38812. {
  38813. side: {
  38814. height: math.unit(10, "feet"),
  38815. weight: math.unit(1442, "lb"),
  38816. name: "Side",
  38817. image: {
  38818. source: "./media/characters/lotherakon/side.svg",
  38819. extra: 1604/1497,
  38820. bottom: 89/1693
  38821. }
  38822. },
  38823. },
  38824. [
  38825. {
  38826. name: "Mortal Interaction",
  38827. height: math.unit(10, "feet")
  38828. },
  38829. {
  38830. name: "Large",
  38831. height: math.unit(30, "feet"),
  38832. default: true
  38833. },
  38834. {
  38835. name: "Giant",
  38836. height: math.unit(100, "feet")
  38837. },
  38838. {
  38839. name: "Kaiju",
  38840. height: math.unit(300, "feet")
  38841. },
  38842. {
  38843. name: "Macro",
  38844. height: math.unit(1000, "feet")
  38845. },
  38846. {
  38847. name: "Macro+",
  38848. height: math.unit(3000, "feet")
  38849. },
  38850. {
  38851. name: "Megamacro",
  38852. height: math.unit(10000, "feet")
  38853. },
  38854. {
  38855. name: "City-Crushing",
  38856. height: math.unit(30000, "feet")
  38857. },
  38858. {
  38859. name: "Continent Cracker",
  38860. height: math.unit(30e6, "feet")
  38861. },
  38862. {
  38863. name: "Earth Eclipsing",
  38864. height: math.unit(3e8, "feet")
  38865. },
  38866. {
  38867. name: "Gas Giant Gulper",
  38868. height: math.unit(3e9, "feet")
  38869. },
  38870. {
  38871. name: "Sol-Swallowing",
  38872. height: math.unit(1e11, "feet")
  38873. },
  38874. {
  38875. name: "System Swallower",
  38876. height: math.unit(3e14, "feet")
  38877. },
  38878. {
  38879. name: "Galaxy Gulper",
  38880. height: math.unit(10, "galaxies")
  38881. },
  38882. {
  38883. name: "Light Universal",
  38884. height: math.unit(5, "universes")
  38885. },
  38886. {
  38887. name: "Universe Palm",
  38888. height: math.unit(20, "universes")
  38889. },
  38890. {
  38891. name: "Light Multiversal",
  38892. height: math.unit(5, "multiverses")
  38893. },
  38894. {
  38895. name: "Multiverse Palm",
  38896. height: math.unit(20, "multiverses")
  38897. },
  38898. {
  38899. name: "Inferno Incarnate",
  38900. height: math.unit(1e7, "multiverses")
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38906. {
  38907. front: {
  38908. height: math.unit(8, "feet"),
  38909. weight: math.unit(1200, "lb"),
  38910. name: "Front",
  38911. image: {
  38912. source: "./media/characters/malithee/front.svg",
  38913. extra: 1675/1640,
  38914. bottom: 162/1837
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Mortal Interaction",
  38921. height: math.unit(8, "feet"),
  38922. default: true
  38923. },
  38924. {
  38925. name: "Large",
  38926. height: math.unit(24, "feet")
  38927. },
  38928. {
  38929. name: "Kaiju",
  38930. height: math.unit(240, "feet")
  38931. },
  38932. {
  38933. name: "Megamacro",
  38934. height: math.unit(8000, "feet")
  38935. },
  38936. {
  38937. name: "Continent Cracker",
  38938. height: math.unit(24e6, "feet")
  38939. },
  38940. {
  38941. name: "Earth-Eclipsing",
  38942. height: math.unit(2.4e8, "feet")
  38943. },
  38944. {
  38945. name: "Sol-Swallowing",
  38946. height: math.unit(8e10, "feet")
  38947. },
  38948. {
  38949. name: "Galaxy Gulper",
  38950. height: math.unit(8, "galaxies")
  38951. },
  38952. {
  38953. name: "Light Universal",
  38954. height: math.unit(4, "universes")
  38955. },
  38956. {
  38957. name: "Universe Atoms",
  38958. height: math.unit(1.829e9, "universes")
  38959. },
  38960. {
  38961. name: "Light Multiversal",
  38962. height: math.unit(4, "multiverses")
  38963. },
  38964. {
  38965. name: "Multiverse Atoms",
  38966. height: math.unit(1.829e9, "multiverses")
  38967. },
  38968. {
  38969. name: "Nigh-Omnipresence",
  38970. height: math.unit(8e261, "multiverses")
  38971. },
  38972. ]
  38973. ))
  38974. characterMakers.push(() => makeCharacter(
  38975. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38976. {
  38977. front: {
  38978. height: math.unit(10, "feet"),
  38979. weight: math.unit(1500, "lb"),
  38980. name: "Front",
  38981. image: {
  38982. source: "./media/characters/miles-thestia/front.svg",
  38983. extra: 1812/1727,
  38984. bottom: 86/1898
  38985. }
  38986. },
  38987. back: {
  38988. height: math.unit(10, "feet"),
  38989. weight: math.unit(1500, "lb"),
  38990. name: "Back",
  38991. image: {
  38992. source: "./media/characters/miles-thestia/back.svg",
  38993. extra: 1799/1690,
  38994. bottom: 47/1846
  38995. }
  38996. },
  38997. frontNsfw: {
  38998. height: math.unit(10, "feet"),
  38999. weight: math.unit(1500, "lb"),
  39000. name: "Front (NSFW)",
  39001. image: {
  39002. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39003. extra: 1812/1727,
  39004. bottom: 86/1898
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Mini-Macro",
  39011. height: math.unit(10, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(25, "feet"),
  39021. name: "Front",
  39022. image: {
  39023. source: "./media/characters/titan-s-wulf/front.svg",
  39024. extra: 1560/1484,
  39025. bottom: 76/1636
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Smallest",
  39032. height: math.unit(25, "feet"),
  39033. default: true
  39034. },
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(200, "feet")
  39038. },
  39039. {
  39040. name: "Macro",
  39041. height: math.unit(200000, "feet")
  39042. },
  39043. {
  39044. name: "Multiversal Original",
  39045. height: math.unit(10000, "multiverses")
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(8, "feet"),
  39054. weight: math.unit(553, "lb"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/tawendeh/front.svg",
  39058. extra: 2365/2268,
  39059. bottom: 83/2448
  39060. }
  39061. },
  39062. frontClothed: {
  39063. height: math.unit(8, "feet"),
  39064. weight: math.unit(553, "lb"),
  39065. name: "Front (Clothed)",
  39066. image: {
  39067. source: "./media/characters/tawendeh/front-clothed.svg",
  39068. extra: 2365/2268,
  39069. bottom: 83/2448
  39070. }
  39071. },
  39072. back: {
  39073. height: math.unit(8, "feet"),
  39074. weight: math.unit(553, "lb"),
  39075. name: "Back",
  39076. image: {
  39077. source: "./media/characters/tawendeh/back.svg",
  39078. extra: 2397/2294,
  39079. bottom: 42/2439
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Mortal Interaction",
  39086. height: math.unit(8, "feet"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Giant",
  39091. height: math.unit(80, "feet")
  39092. },
  39093. {
  39094. name: "Macro",
  39095. height: math.unit(800, "feet")
  39096. },
  39097. {
  39098. name: "Megamacro",
  39099. height: math.unit(8000, "feet")
  39100. },
  39101. {
  39102. name: "City-Crushing",
  39103. height: math.unit(24000, "feet")
  39104. },
  39105. {
  39106. name: "Mountain-Mashing",
  39107. height: math.unit(80000, "feet")
  39108. },
  39109. {
  39110. name: "Nation Nemesis",
  39111. height: math.unit(8e6, "feet")
  39112. },
  39113. {
  39114. name: "Continent Cracker",
  39115. height: math.unit(24e6, "feet")
  39116. },
  39117. {
  39118. name: "Earth-Eclipsing",
  39119. height: math.unit(2.4e8, "feet")
  39120. },
  39121. {
  39122. name: "Gas Giant Gulper",
  39123. height: math.unit(2.4e9, "feet")
  39124. },
  39125. {
  39126. name: "Sol-Swallowing",
  39127. height: math.unit(8e10, "feet")
  39128. },
  39129. {
  39130. name: "Galaxy Gulper",
  39131. height: math.unit(8, "galaxies")
  39132. },
  39133. {
  39134. name: "Cosmos Churner",
  39135. height: math.unit(8, "universes")
  39136. },
  39137. {
  39138. name: "Omnipotent Otter",
  39139. height: math.unit(80, "universes")
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(2.6, "meters"),
  39148. weight: math.unit(900, "kg"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/neesha/front.svg",
  39152. extra: 1803/1653,
  39153. bottom: 128/1931
  39154. }
  39155. },
  39156. },
  39157. [
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(2.6, "meters"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "Macro",
  39165. height: math.unit(50, "meters")
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(5, "feet"),
  39174. weight: math.unit(185, "lb"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/kyera/front.svg",
  39178. extra: 1875/1790,
  39179. bottom: 96/1971
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Normal",
  39186. height: math.unit(5, "feet"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(7 + 6/12, "feet"),
  39196. weight: math.unit(540, "lb"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/yuko/front.svg",
  39200. extra: 1282/1222,
  39201. bottom: 101/1383
  39202. }
  39203. },
  39204. frontClothed: {
  39205. height: math.unit(7 + 6/12, "feet"),
  39206. weight: math.unit(540, "lb"),
  39207. name: "Front (Clothed)",
  39208. image: {
  39209. source: "./media/characters/yuko/front-clothed.svg",
  39210. extra: 1282/1222,
  39211. bottom: 101/1383
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(7 + 6/12, "feet"),
  39219. default: true
  39220. },
  39221. {
  39222. name: "Macro",
  39223. height: math.unit(26 + 9/12, "feet")
  39224. },
  39225. {
  39226. name: "Megamacro",
  39227. height: math.unit(300, "feet")
  39228. },
  39229. {
  39230. name: "Gigamacro",
  39231. height: math.unit(5000, "feet")
  39232. },
  39233. {
  39234. name: "Planetary",
  39235. height: math.unit(10000, "miles")
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(8 + 2/12, "feet"),
  39244. weight: math.unit(600, "lb"),
  39245. name: "Front",
  39246. image: {
  39247. source: "./media/characters/deam-nitrel/front.svg",
  39248. extra: 1308/1234,
  39249. bottom: 125/1433
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Normal",
  39256. height: math.unit(8 + 2/12, "feet"),
  39257. default: true
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(6.1, "feet"),
  39266. weight: math.unit(180, "lb"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/skyress/front.svg",
  39270. extra: 1045/915,
  39271. bottom: 28/1073
  39272. }
  39273. },
  39274. maw: {
  39275. height: math.unit(1, "feet"),
  39276. name: "Maw",
  39277. image: {
  39278. source: "./media/characters/skyress/maw.svg"
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(6.1, "feet"),
  39286. default: true
  39287. },
  39288. {
  39289. name: "Macro",
  39290. height: math.unit(200, "feet")
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(4 + 2/12, "feet"),
  39299. weight: math.unit(40, "kg"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/amethyst-jones/front.svg",
  39303. extra: 1220/1150,
  39304. bottom: 101/1321
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(4 + 2/12, "feet"),
  39312. default: true
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(1.7, "m"),
  39321. weight: math.unit(135, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/jade/front.svg",
  39325. extra: 1818/1767,
  39326. bottom: 32/1850
  39327. }
  39328. },
  39329. back: {
  39330. height: math.unit(1.7, "m"),
  39331. weight: math.unit(135, "lb"),
  39332. name: "Back",
  39333. image: {
  39334. source: "./media/characters/jade/back.svg",
  39335. extra: 1869/1809,
  39336. bottom: 35/1904
  39337. }
  39338. },
  39339. hand: {
  39340. height: math.unit(0.24, "m"),
  39341. name: "Hand",
  39342. image: {
  39343. source: "./media/characters/jade/hand.svg"
  39344. }
  39345. },
  39346. foot: {
  39347. height: math.unit(0.263, "m"),
  39348. name: "Foot",
  39349. image: {
  39350. source: "./media/characters/jade/foot.svg"
  39351. }
  39352. },
  39353. dick: {
  39354. height: math.unit(0.47, "m"),
  39355. name: "Dick",
  39356. image: {
  39357. source: "./media/characters/jade/dick.svg"
  39358. }
  39359. },
  39360. },
  39361. [
  39362. {
  39363. name: "Micro",
  39364. height: math.unit(22, "cm")
  39365. },
  39366. {
  39367. name: "Normal",
  39368. height: math.unit(1.7, "m"),
  39369. default: true
  39370. },
  39371. {
  39372. name: "Macro",
  39373. height: math.unit(152, "m")
  39374. },
  39375. ]
  39376. ))
  39377. characterMakers.push(() => makeCharacter(
  39378. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39379. {
  39380. front: {
  39381. height: math.unit(100, "miles"),
  39382. weight: math.unit(20000, "tons"),
  39383. name: "Front",
  39384. image: {
  39385. source: "./media/characters/cookie/front.svg",
  39386. extra: 1125/1070,
  39387. bottom: 30/1155
  39388. }
  39389. },
  39390. },
  39391. [
  39392. {
  39393. name: "Big",
  39394. height: math.unit(50, "feet")
  39395. },
  39396. {
  39397. name: "Macro",
  39398. height: math.unit(100, "miles"),
  39399. default: true
  39400. },
  39401. {
  39402. name: "Megamacro",
  39403. height: math.unit(90000, "miles")
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(6, "feet"),
  39412. weight: math.unit(145, "lb"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/farzian/front.svg",
  39416. extra: 1902/1693,
  39417. bottom: 108/2010
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Macro",
  39424. height: math.unit(500, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(3 + 6/12, "feet"),
  39434. weight: math.unit(50, "lb"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/kimberly-tilson/front.svg",
  39438. extra: 1400/1322,
  39439. bottom: 36/1436
  39440. }
  39441. },
  39442. back: {
  39443. height: math.unit(3 + 6/12, "feet"),
  39444. weight: math.unit(50, "lb"),
  39445. name: "Back",
  39446. image: {
  39447. source: "./media/characters/kimberly-tilson/back.svg",
  39448. extra: 1370/1307,
  39449. bottom: 20/1390
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(3 + 6/12, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(1148, "feet"),
  39466. weight: math.unit(34057, "lb"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/harthos/front.svg",
  39470. extra: 1391/1339,
  39471. bottom: 13/1404
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Macro",
  39478. height: math.unit(1148, "feet"),
  39479. default: true
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(15, "feet"),
  39488. name: "Front",
  39489. image: {
  39490. source: "./media/characters/hypatia/front.svg",
  39491. extra: 1653/1591,
  39492. bottom: 79/1732
  39493. }
  39494. },
  39495. },
  39496. [
  39497. {
  39498. name: "Normal",
  39499. height: math.unit(15, "feet")
  39500. },
  39501. {
  39502. name: "Small",
  39503. height: math.unit(300, "feet")
  39504. },
  39505. {
  39506. name: "Macro",
  39507. height: math.unit(2500, "feet"),
  39508. default: true
  39509. },
  39510. {
  39511. name: "Mega Macro",
  39512. height: math.unit(1500, "miles")
  39513. },
  39514. {
  39515. name: "Giga Macro",
  39516. height: math.unit(1.5e6, "miles")
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39522. {
  39523. front: {
  39524. height: math.unit(6, "feet"),
  39525. weight: math.unit(200, "lb"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/wulver/front.svg",
  39529. extra: 1724/1632,
  39530. bottom: 130/1854
  39531. }
  39532. },
  39533. frontNsfw: {
  39534. height: math.unit(6, "feet"),
  39535. weight: math.unit(200, "lb"),
  39536. name: "Front (NSFW)",
  39537. image: {
  39538. source: "./media/characters/wulver/front-nsfw.svg",
  39539. extra: 1724/1632,
  39540. bottom: 130/1854
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Human-Sized",
  39547. height: math.unit(6, "feet")
  39548. },
  39549. {
  39550. name: "Normal",
  39551. height: math.unit(4, "meters"),
  39552. default: true
  39553. },
  39554. {
  39555. name: "Large",
  39556. height: math.unit(6, "m")
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(7, "feet"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/maru/front.svg",
  39568. extra: 1595/1570,
  39569. bottom: 0/1595
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Normal",
  39576. height: math.unit(7, "feet"),
  39577. default: true
  39578. },
  39579. {
  39580. name: "Macro",
  39581. height: math.unit(700, "feet")
  39582. },
  39583. {
  39584. name: "Mega Macro",
  39585. height: math.unit(25, "miles")
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39591. {
  39592. front: {
  39593. height: math.unit(6, "feet"),
  39594. weight: math.unit(170, "lb"),
  39595. name: "Front",
  39596. image: {
  39597. source: "./media/characters/xenon/front.svg",
  39598. extra: 1376/1305,
  39599. bottom: 56/1432
  39600. }
  39601. },
  39602. back: {
  39603. height: math.unit(6, "feet"),
  39604. weight: math.unit(170, "lb"),
  39605. name: "Back",
  39606. image: {
  39607. source: "./media/characters/xenon/back.svg",
  39608. extra: 1328/1259,
  39609. bottom: 95/1423
  39610. }
  39611. },
  39612. maw: {
  39613. height: math.unit(0.52, "feet"),
  39614. name: "Maw",
  39615. image: {
  39616. source: "./media/characters/xenon/maw.svg"
  39617. }
  39618. },
  39619. hand: {
  39620. height: math.unit(0.82, "feet"),
  39621. name: "Hand",
  39622. image: {
  39623. source: "./media/characters/xenon/hand.svg"
  39624. }
  39625. },
  39626. foot: {
  39627. height: math.unit(1.13, "feet"),
  39628. name: "Foot",
  39629. image: {
  39630. source: "./media/characters/xenon/foot.svg"
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Micro",
  39637. height: math.unit(0.8, "inches")
  39638. },
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(6, "feet")
  39642. },
  39643. {
  39644. name: "Macro",
  39645. height: math.unit(50, "feet"),
  39646. default: true
  39647. },
  39648. {
  39649. name: "Macro+",
  39650. height: math.unit(250, "feet")
  39651. },
  39652. {
  39653. name: "Megamacro",
  39654. height: math.unit(1500, "feet")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(7 + 5/12, "feet"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/zane/front.svg",
  39666. extra: 1260/1203,
  39667. bottom: 94/1354
  39668. }
  39669. },
  39670. back: {
  39671. height: math.unit(5.05, "feet"),
  39672. name: "Back",
  39673. image: {
  39674. source: "./media/characters/zane/back.svg",
  39675. extra: 893/829,
  39676. bottom: 30/923
  39677. }
  39678. },
  39679. werewolf: {
  39680. height: math.unit(11, "feet"),
  39681. name: "Werewolf",
  39682. image: {
  39683. source: "./media/characters/zane/werewolf.svg",
  39684. extra: 1383/1323,
  39685. bottom: 89/1472
  39686. }
  39687. },
  39688. foot: {
  39689. height: math.unit(1.46, "feet"),
  39690. name: "Foot",
  39691. image: {
  39692. source: "./media/characters/zane/foot.svg"
  39693. }
  39694. },
  39695. footFront: {
  39696. height: math.unit(0.784, "feet"),
  39697. name: "Foot (Front)",
  39698. image: {
  39699. source: "./media/characters/zane/foot-front.svg"
  39700. }
  39701. },
  39702. dick: {
  39703. height: math.unit(1.95, "feet"),
  39704. name: "Dick",
  39705. image: {
  39706. source: "./media/characters/zane/dick.svg"
  39707. }
  39708. },
  39709. dickWerewolf: {
  39710. height: math.unit(3.77, "feet"),
  39711. name: "Dick (Werewolf)",
  39712. image: {
  39713. source: "./media/characters/zane/dick.svg"
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(7 + 5/12, "feet"),
  39721. default: true
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39727. {
  39728. front: {
  39729. height: math.unit(6 + 2/12, "feet"),
  39730. weight: math.unit(284, "lb"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/benni-desparque/front.svg",
  39734. extra: 1353/1126,
  39735. bottom: 69/1422
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Civilian",
  39742. height: math.unit(6 + 2/12, "feet")
  39743. },
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(98, "feet"),
  39747. default: true
  39748. },
  39749. {
  39750. name: "Kaiju Fighter",
  39751. height: math.unit(268, "feet")
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(5, "feet"),
  39760. weight: math.unit(105, "lb"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/maxine/front.svg",
  39764. extra: 1386/1250,
  39765. bottom: 71/1457
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Normal",
  39772. height: math.unit(5, "feet"),
  39773. default: true
  39774. },
  39775. ]
  39776. ))
  39777. characterMakers.push(() => makeCharacter(
  39778. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39779. {
  39780. front: {
  39781. height: math.unit(11 + 7/12, "feet"),
  39782. weight: math.unit(9576, "lb"),
  39783. name: "Front",
  39784. image: {
  39785. source: "./media/characters/scaly/front.svg",
  39786. extra: 888/867,
  39787. bottom: 36/924
  39788. }
  39789. },
  39790. },
  39791. [
  39792. {
  39793. name: "Normal",
  39794. height: math.unit(11 + 7/12, "feet"),
  39795. default: true
  39796. },
  39797. ]
  39798. ))
  39799. characterMakers.push(() => makeCharacter(
  39800. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39801. {
  39802. front: {
  39803. height: math.unit(9, "inches"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/saelria/front.svg",
  39807. extra: 662/621,
  39808. bottom: 12/674
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Tiny",
  39815. height: math.unit(9, "inches"),
  39816. default: true
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(80, "meters"),
  39825. weight: math.unit(7000, "tonnes"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/tef/front.svg",
  39829. extra: 2036/1991,
  39830. bottom: 54/2090
  39831. }
  39832. },
  39833. back: {
  39834. height: math.unit(80, "meters"),
  39835. weight: math.unit(7000, "tonnes"),
  39836. name: "Back",
  39837. image: {
  39838. source: "./media/characters/tef/back.svg",
  39839. extra: 2036/1991,
  39840. bottom: 54/2090
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Macro",
  39847. height: math.unit(80, "meters"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(13, "feet"),
  39857. weight: math.unit(6, "tons"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/rover/front.svg",
  39861. extra: 1233/1156,
  39862. bottom: 50/1283
  39863. }
  39864. },
  39865. back: {
  39866. height: math.unit(13, "feet"),
  39867. weight: math.unit(6, "tons"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/rover/back.svg",
  39871. extra: 1327/1258,
  39872. bottom: 39/1366
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(13, "feet"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Macro",
  39884. height: math.unit(1300, "feet")
  39885. },
  39886. {
  39887. name: "Megamacro",
  39888. height: math.unit(1300, "miles")
  39889. },
  39890. {
  39891. name: "Gigamacro",
  39892. height: math.unit(1300000, "miles")
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(6, "feet"),
  39901. weight: math.unit(150, "lb"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/ariz/front.svg",
  39905. extra: 1401/1346,
  39906. bottom: 5/1406
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(10, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(6, "feet"),
  39923. weight: math.unit(140, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/sigrun/front.svg",
  39927. extra: 1418/1359,
  39928. bottom: 27/1445
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Macro",
  39935. height: math.unit(35, "feet"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(6, "feet"),
  39945. weight: math.unit(150, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/numin/front.svg",
  39949. extra: 1433/1388,
  39950. bottom: 12/1445
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Macro",
  39957. height: math.unit(21.5, "km"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(6, "feet"),
  39967. weight: math.unit(463, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/melwa/front.svg",
  39971. extra: 1307/1248,
  39972. bottom: 93/1400
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(50, "meters"),
  39980. default: true
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(325, "feet"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/zorkaiju/front.svg",
  39992. extra: 1955/1814,
  39993. bottom: 40/1995
  39994. }
  39995. },
  39996. frontExtended: {
  39997. height: math.unit(325, "feet"),
  39998. name: "Front (Extended)",
  39999. image: {
  40000. source: "./media/characters/zorkaiju/front-extended.svg",
  40001. extra: 1955/1814,
  40002. bottom: 40/1995
  40003. }
  40004. },
  40005. side: {
  40006. height: math.unit(325, "feet"),
  40007. name: "Side",
  40008. image: {
  40009. source: "./media/characters/zorkaiju/side.svg",
  40010. extra: 1495/1396,
  40011. bottom: 17/1512
  40012. }
  40013. },
  40014. sideExtended: {
  40015. height: math.unit(325, "feet"),
  40016. name: "Side (Extended)",
  40017. image: {
  40018. source: "./media/characters/zorkaiju/side-extended.svg",
  40019. extra: 1495/1396,
  40020. bottom: 17/1512
  40021. }
  40022. },
  40023. back: {
  40024. height: math.unit(325, "feet"),
  40025. name: "Back",
  40026. image: {
  40027. source: "./media/characters/zorkaiju/back.svg",
  40028. extra: 1959/1821,
  40029. bottom: 31/1990
  40030. }
  40031. },
  40032. backExtended: {
  40033. height: math.unit(325, "feet"),
  40034. name: "Back (Extended)",
  40035. image: {
  40036. source: "./media/characters/zorkaiju/back-extended.svg",
  40037. extra: 1959/1821,
  40038. bottom: 31/1990
  40039. }
  40040. },
  40041. hand: {
  40042. height: math.unit(58.4, "feet"),
  40043. name: "Hand",
  40044. image: {
  40045. source: "./media/characters/zorkaiju/hand.svg"
  40046. }
  40047. },
  40048. handExtended: {
  40049. height: math.unit(61.4, "feet"),
  40050. name: "Hand (Extended)",
  40051. image: {
  40052. source: "./media/characters/zorkaiju/hand-extended.svg"
  40053. }
  40054. },
  40055. foot: {
  40056. height: math.unit(95, "feet"),
  40057. name: "Foot",
  40058. image: {
  40059. source: "./media/characters/zorkaiju/foot.svg"
  40060. }
  40061. },
  40062. leftArm: {
  40063. height: math.unit(59, "feet"),
  40064. name: "Left Arm",
  40065. image: {
  40066. source: "./media/characters/zorkaiju/left-arm.svg"
  40067. }
  40068. },
  40069. rightArm: {
  40070. height: math.unit(59, "feet"),
  40071. name: "Right Arm",
  40072. image: {
  40073. source: "./media/characters/zorkaiju/right-arm.svg"
  40074. }
  40075. },
  40076. tail: {
  40077. height: math.unit(104, "feet"),
  40078. name: "Tail",
  40079. image: {
  40080. source: "./media/characters/zorkaiju/tail.svg"
  40081. }
  40082. },
  40083. tailExtended: {
  40084. height: math.unit(104, "feet"),
  40085. name: "Tail (Extended)",
  40086. image: {
  40087. source: "./media/characters/zorkaiju/tail-extended.svg"
  40088. }
  40089. },
  40090. tailBottom: {
  40091. height: math.unit(104, "feet"),
  40092. name: "Tail Bottom",
  40093. image: {
  40094. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40095. }
  40096. },
  40097. crystal: {
  40098. height: math.unit(27.54, "feet"),
  40099. name: "Crystal",
  40100. image: {
  40101. source: "./media/characters/zorkaiju/crystal.svg"
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Kaiju",
  40108. height: math.unit(325, "feet"),
  40109. default: true
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(6 + 1/12, "feet"),
  40118. weight: math.unit(115, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/bailey-belfry/front.svg",
  40122. extra: 1240/1121,
  40123. bottom: 101/1341
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(6 + 1/12, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40137. {
  40138. side: {
  40139. height: math.unit(4, "meters"),
  40140. weight: math.unit(250, "kg"),
  40141. name: "Side",
  40142. image: {
  40143. source: "./media/characters/blacky/side.svg",
  40144. extra: 1027/919,
  40145. bottom: 43/1070
  40146. }
  40147. },
  40148. maw: {
  40149. height: math.unit(1, "meters"),
  40150. name: "Maw",
  40151. image: {
  40152. source: "./media/characters/blacky/maw.svg"
  40153. }
  40154. },
  40155. paw: {
  40156. height: math.unit(1, "meters"),
  40157. name: "Paw",
  40158. image: {
  40159. source: "./media/characters/blacky/paw.svg"
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Normal",
  40166. height: math.unit(4, "meters"),
  40167. default: true
  40168. },
  40169. ]
  40170. ))
  40171. characterMakers.push(() => makeCharacter(
  40172. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40173. {
  40174. front: {
  40175. height: math.unit(170, "cm"),
  40176. weight: math.unit(66, "kg"),
  40177. name: "Front",
  40178. image: {
  40179. source: "./media/characters/thux-ei/front.svg",
  40180. extra: 1109/1011,
  40181. bottom: 8/1117
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(170, "cm"),
  40189. default: true
  40190. },
  40191. ]
  40192. ))
  40193. characterMakers.push(() => makeCharacter(
  40194. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40195. {
  40196. front: {
  40197. height: math.unit(5, "feet"),
  40198. weight: math.unit(120, "lb"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/roxanne-voltaire/front.svg",
  40202. extra: 1901/1779,
  40203. bottom: 53/1954
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(5, "feet"),
  40211. default: true
  40212. },
  40213. {
  40214. name: "Giant",
  40215. height: math.unit(50, "feet")
  40216. },
  40217. {
  40218. name: "Titan",
  40219. height: math.unit(500, "feet")
  40220. },
  40221. {
  40222. name: "Macro",
  40223. height: math.unit(5000, "feet")
  40224. },
  40225. {
  40226. name: "Megamacro",
  40227. height: math.unit(50000, "feet")
  40228. },
  40229. {
  40230. name: "Gigamacro",
  40231. height: math.unit(500000, "feet")
  40232. },
  40233. {
  40234. name: "Teramacro",
  40235. height: math.unit(5e6, "feet")
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40241. {
  40242. front: {
  40243. height: math.unit(6 + 2/12, "feet"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/squeaks/front.svg",
  40247. extra: 1823/1768,
  40248. bottom: 138/1961
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Micro",
  40255. height: math.unit(0.5, "inches")
  40256. },
  40257. {
  40258. name: "Normal",
  40259. height: math.unit(6 + 2/12, "feet"),
  40260. default: true
  40261. },
  40262. {
  40263. name: "Macro",
  40264. height: math.unit(600, "feet")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(1.72, "meters"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/archinger/front.svg",
  40276. extra: 1861/1675,
  40277. bottom: 125/1986
  40278. }
  40279. },
  40280. back: {
  40281. height: math.unit(1.72, "meters"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/archinger/back.svg",
  40285. extra: 1844/1701,
  40286. bottom: 104/1948
  40287. }
  40288. },
  40289. cock: {
  40290. height: math.unit(0.59, "feet"),
  40291. name: "Cock",
  40292. image: {
  40293. source: "./media/characters/archinger/cock.svg"
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(1.72, "meters"),
  40301. default: true
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(84, "meters")
  40306. },
  40307. {
  40308. name: "Macro+",
  40309. height: math.unit(112, "meters")
  40310. },
  40311. {
  40312. name: "Macro++",
  40313. height: math.unit(960, "meters")
  40314. },
  40315. {
  40316. name: "Macro+++",
  40317. height: math.unit(4, "km")
  40318. },
  40319. {
  40320. name: "Macro++++",
  40321. height: math.unit(48, "km")
  40322. },
  40323. {
  40324. name: "Macro+++++",
  40325. height: math.unit(4500, "km")
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(5 + 5/12, "feet"),
  40334. name: "Front",
  40335. image: {
  40336. source: "./media/characters/alsnapz/front.svg",
  40337. extra: 1157/1065,
  40338. bottom: 42/1199
  40339. }
  40340. },
  40341. },
  40342. [
  40343. {
  40344. name: "Normal",
  40345. height: math.unit(5 + 5/12, "feet"),
  40346. default: true
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40352. {
  40353. side: {
  40354. height: math.unit(3.2, "earths"),
  40355. name: "Side",
  40356. image: {
  40357. source: "./media/characters/mag/side.svg",
  40358. extra: 1331/1008,
  40359. bottom: 52/1383
  40360. }
  40361. },
  40362. wing: {
  40363. height: math.unit(1.94, "earths"),
  40364. name: "Wing",
  40365. image: {
  40366. source: "./media/characters/mag/wing.svg"
  40367. }
  40368. },
  40369. dick: {
  40370. height: math.unit(1.8, "earths"),
  40371. name: "Dick",
  40372. image: {
  40373. source: "./media/characters/mag/dick.svg"
  40374. }
  40375. },
  40376. ass: {
  40377. height: math.unit(1.33, "earths"),
  40378. name: "Ass",
  40379. image: {
  40380. source: "./media/characters/mag/ass.svg"
  40381. }
  40382. },
  40383. head: {
  40384. height: math.unit(1.1, "earths"),
  40385. name: "Head",
  40386. image: {
  40387. source: "./media/characters/mag/head.svg"
  40388. }
  40389. },
  40390. maw: {
  40391. height: math.unit(1.62, "earths"),
  40392. name: "Maw",
  40393. image: {
  40394. source: "./media/characters/mag/maw.svg"
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Small",
  40401. height: math.unit(162, "feet")
  40402. },
  40403. {
  40404. name: "Normal",
  40405. height: math.unit(3.2, "earths"),
  40406. default: true
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40412. {
  40413. front: {
  40414. height: math.unit(512, "feet"),
  40415. weight: math.unit(63509, "tonnes"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/vorrel-harroc/front.svg",
  40419. extra: 1075/1063,
  40420. bottom: 62/1137
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(10, "feet")
  40428. },
  40429. {
  40430. name: "Macro",
  40431. height: math.unit(512, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Megamacro",
  40436. height: math.unit(256, "miles")
  40437. },
  40438. {
  40439. name: "Gigamacro",
  40440. height: math.unit(4096, "miles")
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40446. {
  40447. side: {
  40448. height: math.unit(50, "feet"),
  40449. name: "Side",
  40450. image: {
  40451. source: "./media/characters/froimar/side.svg",
  40452. extra: 855/638,
  40453. bottom: 99/954
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Macro",
  40460. height: math.unit(50, "feet"),
  40461. default: true
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(210, "miles"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/timothy/front.svg",
  40473. extra: 1007/943,
  40474. bottom: 62/1069
  40475. }
  40476. },
  40477. frontSkirt: {
  40478. height: math.unit(210, "miles"),
  40479. name: "Front (Skirt)",
  40480. image: {
  40481. source: "./media/characters/timothy/front-skirt.svg",
  40482. extra: 1007/943,
  40483. bottom: 62/1069
  40484. }
  40485. },
  40486. frontCoat: {
  40487. height: math.unit(210, "miles"),
  40488. name: "Front (Coat)",
  40489. image: {
  40490. source: "./media/characters/timothy/front-coat.svg",
  40491. extra: 1007/943,
  40492. bottom: 62/1069
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Macro",
  40499. height: math.unit(210, "miles"),
  40500. default: true
  40501. },
  40502. {
  40503. name: "Megamacro",
  40504. height: math.unit(210000, "miles")
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(188, "feet"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/pyotr/front.svg",
  40516. extra: 1912/1826,
  40517. bottom: 18/1930
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Macro",
  40524. height: math.unit(188, "feet"),
  40525. default: true
  40526. },
  40527. {
  40528. name: "Megamacro",
  40529. height: math.unit(8, "miles")
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40535. {
  40536. side: {
  40537. height: math.unit(10, "feet"),
  40538. weight: math.unit(4500, "lb"),
  40539. name: "Side",
  40540. image: {
  40541. source: "./media/characters/ackart/side.svg",
  40542. extra: 1776/1668,
  40543. bottom: 116/1892
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(10, "feet"),
  40551. default: true
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40557. {
  40558. side: {
  40559. height: math.unit(21, "feet"),
  40560. name: "Side",
  40561. image: {
  40562. source: "./media/characters/nolow/side.svg",
  40563. extra: 1484/1434,
  40564. bottom: 85/1569
  40565. }
  40566. },
  40567. sideErect: {
  40568. height: math.unit(21, "feet"),
  40569. name: "Side-erect",
  40570. image: {
  40571. source: "./media/characters/nolow/side-erect.svg",
  40572. extra: 1484/1434,
  40573. bottom: 85/1569
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Regular",
  40580. height: math.unit(12, "feet")
  40581. },
  40582. {
  40583. name: "Big Chee",
  40584. height: math.unit(21, "feet"),
  40585. default: true
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40591. {
  40592. front: {
  40593. height: math.unit(7, "feet"),
  40594. weight: math.unit(250, "lb"),
  40595. name: "Front",
  40596. image: {
  40597. source: "./media/characters/nines/front.svg",
  40598. extra: 1741/1607,
  40599. bottom: 41/1782
  40600. }
  40601. },
  40602. side: {
  40603. height: math.unit(7, "feet"),
  40604. weight: math.unit(250, "lb"),
  40605. name: "Side",
  40606. image: {
  40607. source: "./media/characters/nines/side.svg",
  40608. extra: 1854/1735,
  40609. bottom: 93/1947
  40610. }
  40611. },
  40612. back: {
  40613. height: math.unit(7, "feet"),
  40614. weight: math.unit(250, "lb"),
  40615. name: "Back",
  40616. image: {
  40617. source: "./media/characters/nines/back.svg",
  40618. extra: 1748/1615,
  40619. bottom: 20/1768
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Megamacro",
  40626. height: math.unit(99, "km"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(5 + 10/12, "feet"),
  40636. weight: math.unit(210, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/zenith/front.svg",
  40640. extra: 1531/1452,
  40641. bottom: 198/1729
  40642. }
  40643. },
  40644. back: {
  40645. height: math.unit(5 + 10/12, "feet"),
  40646. weight: math.unit(210, "lb"),
  40647. name: "Back",
  40648. image: {
  40649. source: "./media/characters/zenith/back.svg",
  40650. extra: 1571/1487,
  40651. bottom: 75/1646
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(5 + 10/12, "feet"),
  40659. default: true
  40660. }
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(4, "feet"),
  40668. weight: math.unit(60, "lb"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/jasper/front.svg",
  40672. extra: 1450/1379,
  40673. bottom: 19/1469
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Normal",
  40680. height: math.unit(4, "feet"),
  40681. default: true
  40682. },
  40683. ]
  40684. ))
  40685. characterMakers.push(() => makeCharacter(
  40686. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40687. {
  40688. front: {
  40689. height: math.unit(6 + 5/12, "feet"),
  40690. weight: math.unit(290, "lb"),
  40691. name: "Front",
  40692. image: {
  40693. source: "./media/characters/tiberius-thyben/front.svg",
  40694. extra: 757/739,
  40695. bottom: 39/796
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Micro",
  40702. height: math.unit(1.5, "inches")
  40703. },
  40704. {
  40705. name: "Normal",
  40706. height: math.unit(6 + 5/12, "feet"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "Macro",
  40711. height: math.unit(300, "feet")
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(5 + 6/12, "feet"),
  40720. weight: math.unit(60, "kg"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/sabre/front.svg",
  40724. extra: 738/671,
  40725. bottom: 27/765
  40726. }
  40727. },
  40728. },
  40729. [
  40730. {
  40731. name: "Teeny",
  40732. height: math.unit(2, "inches")
  40733. },
  40734. {
  40735. name: "Smol",
  40736. height: math.unit(8, "inches")
  40737. },
  40738. {
  40739. name: "Normal",
  40740. height: math.unit(5 + 6/12, "feet"),
  40741. default: true
  40742. },
  40743. {
  40744. name: "Mini-Macro",
  40745. height: math.unit(15, "feet")
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(50, "feet")
  40750. },
  40751. ]
  40752. ))
  40753. characterMakers.push(() => makeCharacter(
  40754. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40755. {
  40756. front: {
  40757. height: math.unit(6 + 4/12, "feet"),
  40758. weight: math.unit(170, "lb"),
  40759. name: "Front",
  40760. image: {
  40761. source: "./media/characters/charlie/front.svg",
  40762. extra: 1348/1228,
  40763. bottom: 15/1363
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(1700, "meters"),
  40771. default: true
  40772. },
  40773. {
  40774. name: "MegaMacro",
  40775. height: math.unit(20400, "meters")
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(6 + 3/12, "feet"),
  40784. weight: math.unit(185, "lb"),
  40785. name: "Front",
  40786. image: {
  40787. source: "./media/characters/susan-grant/front.svg",
  40788. extra: 1351/1327,
  40789. bottom: 26/1377
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(6 + 3/12, "feet"),
  40797. default: true
  40798. },
  40799. {
  40800. name: "Macro",
  40801. height: math.unit(225, "feet")
  40802. },
  40803. {
  40804. name: "Macro+",
  40805. height: math.unit(900, "feet")
  40806. },
  40807. {
  40808. name: "MegaMacro",
  40809. height: math.unit(14400, "feet")
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(5 + 4/12, "feet"),
  40818. weight: math.unit(110, "lb"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/axel-isanov/front.svg",
  40822. extra: 1096/1065,
  40823. bottom: 13/1109
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(5 + 4/12, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(9, "feet"),
  40840. weight: math.unit(467, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/necahual/front.svg",
  40844. extra: 920/873,
  40845. bottom: 26/946
  40846. }
  40847. },
  40848. back: {
  40849. height: math.unit(9, "feet"),
  40850. weight: math.unit(467, "lb"),
  40851. name: "Back",
  40852. image: {
  40853. source: "./media/characters/necahual/back.svg",
  40854. extra: 930/884,
  40855. bottom: 16/946
  40856. }
  40857. },
  40858. frontUnderwear: {
  40859. height: math.unit(9, "feet"),
  40860. weight: math.unit(467, "lb"),
  40861. name: "Front (Underwear)",
  40862. image: {
  40863. source: "./media/characters/necahual/front-underwear.svg",
  40864. extra: 920/873,
  40865. bottom: 26/946
  40866. }
  40867. },
  40868. frontDressed: {
  40869. height: math.unit(9, "feet"),
  40870. weight: math.unit(467, "lb"),
  40871. name: "Front (Dressed)",
  40872. image: {
  40873. source: "./media/characters/necahual/front-dressed.svg",
  40874. extra: 920/873,
  40875. bottom: 26/946
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Comprsesed",
  40882. height: math.unit(9, "feet")
  40883. },
  40884. {
  40885. name: "Natural",
  40886. height: math.unit(15, "feet"),
  40887. default: true
  40888. },
  40889. {
  40890. name: "Boosted",
  40891. height: math.unit(50, "feet")
  40892. },
  40893. {
  40894. name: "Boosted+",
  40895. height: math.unit(150, "feet")
  40896. },
  40897. {
  40898. name: "Max",
  40899. height: math.unit(500, "feet")
  40900. },
  40901. ]
  40902. ))
  40903. characterMakers.push(() => makeCharacter(
  40904. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40905. {
  40906. front: {
  40907. height: math.unit(22 + 1/12, "feet"),
  40908. weight: math.unit(3200, "lb"),
  40909. name: "Front",
  40910. image: {
  40911. source: "./media/characters/theo-acacia/front.svg",
  40912. extra: 1796/1741,
  40913. bottom: 83/1879
  40914. }
  40915. },
  40916. frontUnderwear: {
  40917. height: math.unit(22 + 1/12, "feet"),
  40918. weight: math.unit(3200, "lb"),
  40919. name: "Front (Underwear)",
  40920. image: {
  40921. source: "./media/characters/theo-acacia/front-underwear.svg",
  40922. extra: 1796/1741,
  40923. bottom: 83/1879
  40924. }
  40925. },
  40926. frontNude: {
  40927. height: math.unit(22 + 1/12, "feet"),
  40928. weight: math.unit(3200, "lb"),
  40929. name: "Front (Nude)",
  40930. image: {
  40931. source: "./media/characters/theo-acacia/front-nude.svg",
  40932. extra: 1796/1741,
  40933. bottom: 83/1879
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(22 + 1/12, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(20, "feet"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/astra/front.svg",
  40953. extra: 1850/1714,
  40954. bottom: 106/1956
  40955. }
  40956. },
  40957. frontUndressed: {
  40958. height: math.unit(20, "feet"),
  40959. name: "Front (Undressed)",
  40960. image: {
  40961. source: "./media/characters/astra/front-undressed.svg",
  40962. extra: 1926/1749,
  40963. bottom: 0/1926
  40964. }
  40965. },
  40966. hand: {
  40967. height: math.unit(1.53, "feet"),
  40968. name: "Hand",
  40969. image: {
  40970. source: "./media/characters/astra/hand.svg"
  40971. }
  40972. },
  40973. paw: {
  40974. height: math.unit(1.53, "feet"),
  40975. name: "Paw",
  40976. image: {
  40977. source: "./media/characters/astra/paw.svg"
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Smallest",
  40984. height: math.unit(20, "feet")
  40985. },
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(1e9, "miles"),
  40989. default: true
  40990. },
  40991. {
  40992. name: "Larger",
  40993. height: math.unit(5, "multiverses")
  40994. },
  40995. {
  40996. name: "Largest",
  40997. height: math.unit(1e9, "multiverses")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(8, "feet"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/breanna/front.svg",
  41009. extra: 1912/1632,
  41010. bottom: 33/1945
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Smallest",
  41017. height: math.unit(8, "feet")
  41018. },
  41019. {
  41020. name: "Normal",
  41021. height: math.unit(1, "mile"),
  41022. default: true
  41023. },
  41024. {
  41025. name: "Maximum",
  41026. height: math.unit(1500000000000, "lightyears")
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(5 + 11/12, "feet"),
  41035. weight: math.unit(155, "lb"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/cai/front.svg",
  41039. extra: 1823/1702,
  41040. bottom: 32/1855
  41041. }
  41042. },
  41043. back: {
  41044. height: math.unit(5 + 11/12, "feet"),
  41045. weight: math.unit(155, "lb"),
  41046. name: "Back",
  41047. image: {
  41048. source: "./media/characters/cai/back.svg",
  41049. extra: 1809/1708,
  41050. bottom: 31/1840
  41051. }
  41052. },
  41053. },
  41054. [
  41055. {
  41056. name: "Normal",
  41057. height: math.unit(5 + 11/12, "feet"),
  41058. default: true
  41059. },
  41060. {
  41061. name: "Big",
  41062. height: math.unit(15, "feet")
  41063. },
  41064. {
  41065. name: "Macro",
  41066. height: math.unit(200, "feet")
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(5 + 6/12, "feet"),
  41075. weight: math.unit(160, "lb"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41079. extra: 1227/1174,
  41080. bottom: 37/1264
  41081. }
  41082. },
  41083. },
  41084. [
  41085. {
  41086. name: "Macro",
  41087. height: math.unit(444, "meters"),
  41088. default: true
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(18 + 7/12, "feet"),
  41097. name: "Front",
  41098. image: {
  41099. source: "./media/characters/rex/front.svg",
  41100. extra: 1941/1807,
  41101. bottom: 66/2007
  41102. }
  41103. },
  41104. back: {
  41105. height: math.unit(18 + 7/12, "feet"),
  41106. name: "Back",
  41107. image: {
  41108. source: "./media/characters/rex/back.svg",
  41109. extra: 1937/1822,
  41110. bottom: 42/1979
  41111. }
  41112. },
  41113. boot: {
  41114. height: math.unit(3.45, "feet"),
  41115. name: "Boot",
  41116. image: {
  41117. source: "./media/characters/rex/boot.svg"
  41118. }
  41119. },
  41120. paw: {
  41121. height: math.unit(4.17, "feet"),
  41122. name: "Paw",
  41123. image: {
  41124. source: "./media/characters/rex/paw.svg"
  41125. }
  41126. },
  41127. head: {
  41128. height: math.unit(6.728, "feet"),
  41129. name: "Head",
  41130. image: {
  41131. source: "./media/characters/rex/head.svg"
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Nano",
  41138. height: math.unit(18 + 7/12, "feet")
  41139. },
  41140. {
  41141. name: "Micro",
  41142. height: math.unit(1.5, "megameters")
  41143. },
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(440, "megameters"),
  41147. default: true
  41148. },
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(2.5, "gigameters")
  41152. },
  41153. {
  41154. name: "Gigamacro",
  41155. height: math.unit(2, "galaxies")
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41161. {
  41162. side: {
  41163. height: math.unit(32, "feet"),
  41164. weight: math.unit(250000, "lb"),
  41165. name: "Side",
  41166. image: {
  41167. source: "./media/characters/silverwing/side.svg",
  41168. extra: 1100/1019,
  41169. bottom: 204/1304
  41170. }
  41171. },
  41172. },
  41173. [
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(32, "feet"),
  41177. default: true
  41178. },
  41179. ]
  41180. ))
  41181. characterMakers.push(() => makeCharacter(
  41182. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41183. {
  41184. front: {
  41185. height: math.unit(6 + 6/12, "feet"),
  41186. weight: math.unit(350, "lb"),
  41187. name: "Front",
  41188. image: {
  41189. source: "./media/characters/tristan-hawthorne/front.svg",
  41190. extra: 1159/1124,
  41191. bottom: 37/1196
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(6 + 6/12, "feet"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(5 + 11/12, "feet"),
  41208. weight: math.unit(190, "lb"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/mizu/front.svg",
  41212. extra: 1988/1788,
  41213. bottom: 14/2002
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(5 + 11/12, "feet"),
  41221. default: true
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(6, "feet"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/moonlight-rose-terra/front.svg",
  41233. extra: 1434/1252,
  41234. bottom: 48/1482
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "TRAPPIST-1D",
  41241. height: math.unit(4992*2, "km")
  41242. },
  41243. {
  41244. name: "Earth",
  41245. height: math.unit(6367*2, "km"),
  41246. default: true
  41247. },
  41248. {
  41249. name: "Kepler-22b",
  41250. height: math.unit(15282*2, "km")
  41251. },
  41252. ]
  41253. ))
  41254. characterMakers.push(() => makeCharacter(
  41255. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41256. {
  41257. front: {
  41258. height: math.unit(6, "feet"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41262. extra: 1851/1712,
  41263. bottom: 0/1851
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Enceladus",
  41270. height: math.unit(513*2, "km")
  41271. },
  41272. {
  41273. name: "Europe",
  41274. height: math.unit(1560*2, "km")
  41275. },
  41276. {
  41277. name: "Neptune",
  41278. height: math.unit(24622*2, "km"),
  41279. default: true
  41280. },
  41281. {
  41282. name: "CoRoT-9b",
  41283. height: math.unit(75067*2, "km")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(6, "feet"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41295. extra: 1367/1286,
  41296. bottom: 55/1422
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Saturn",
  41303. height: math.unit(58232*2, "km")
  41304. },
  41305. {
  41306. name: "Jupiter",
  41307. height: math.unit(69911*2, "km"),
  41308. default: true
  41309. },
  41310. {
  41311. name: "HD 100546 b",
  41312. height: math.unit(482938, "km")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(1.7, "feet"),
  41321. weight: math.unit(50, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/dechroma/front.svg",
  41325. extra: 1095/859,
  41326. bottom: 64/1159
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(1.7, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41340. {
  41341. side: {
  41342. height: math.unit(30, "feet"),
  41343. name: "Side",
  41344. image: {
  41345. source: "./media/characters/veluren-thanazel/side.svg",
  41346. extra: 1611/633,
  41347. bottom: 118/1729
  41348. }
  41349. },
  41350. front: {
  41351. height: math.unit(30, "feet"),
  41352. name: "Front",
  41353. image: {
  41354. source: "./media/characters/veluren-thanazel/front.svg",
  41355. extra: 1486/636,
  41356. bottom: 238/1724
  41357. }
  41358. },
  41359. head: {
  41360. height: math.unit(21.4, "feet"),
  41361. name: "Head",
  41362. image: {
  41363. source: "./media/characters/veluren-thanazel/head.svg"
  41364. }
  41365. },
  41366. genitals: {
  41367. height: math.unit(19.4, "feet"),
  41368. name: "Genitals",
  41369. image: {
  41370. source: "./media/characters/veluren-thanazel/genitals.svg"
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Social",
  41377. height: math.unit(6, "feet")
  41378. },
  41379. {
  41380. name: "Play",
  41381. height: math.unit(12, "feet")
  41382. },
  41383. {
  41384. name: "True",
  41385. height: math.unit(30, "feet"),
  41386. default: true
  41387. },
  41388. ]
  41389. ))
  41390. characterMakers.push(() => makeCharacter(
  41391. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41392. {
  41393. front: {
  41394. height: math.unit(7 + 6/12, "feet"),
  41395. weight: math.unit(500, "kg"),
  41396. name: "Front",
  41397. image: {
  41398. source: "./media/characters/arcturas/front.svg",
  41399. extra: 1700/1500,
  41400. bottom: 145/1845
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(7 + 6/12, "feet"),
  41408. default: true
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41414. {
  41415. side: {
  41416. height: math.unit(6, "feet"),
  41417. weight: math.unit(2, "tons"),
  41418. name: "Side",
  41419. image: {
  41420. source: "./media/characters/vitaen/side.svg",
  41421. extra: 1157/617,
  41422. bottom: 122/1279
  41423. }
  41424. },
  41425. },
  41426. [
  41427. {
  41428. name: "Normal",
  41429. height: math.unit(6, "feet"),
  41430. default: true
  41431. },
  41432. ]
  41433. ))
  41434. characterMakers.push(() => makeCharacter(
  41435. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41436. {
  41437. front: {
  41438. height: math.unit(19, "feet"),
  41439. name: "Front",
  41440. image: {
  41441. source: "./media/characters/fia-dreamweaver/front.svg",
  41442. extra: 1630/1504,
  41443. bottom: 25/1655
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Normal",
  41450. height: math.unit(19, "feet"),
  41451. default: true
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(5 + 4/12, "feet"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/artan/front.svg",
  41463. extra: 1618/1535,
  41464. bottom: 46/1664
  41465. }
  41466. },
  41467. back: {
  41468. height: math.unit(5 + 4/12, "feet"),
  41469. name: "Back",
  41470. image: {
  41471. source: "./media/characters/artan/back.svg",
  41472. extra: 1618/1543,
  41473. bottom: 31/1649
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Normal",
  41480. height: math.unit(5 + 4/12, "feet"),
  41481. default: true
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41487. {
  41488. side: {
  41489. height: math.unit(182, "cm"),
  41490. weight: math.unit(1000, "lb"),
  41491. name: "Side",
  41492. image: {
  41493. source: "./media/characters/silver-dragon/side.svg",
  41494. extra: 710/287,
  41495. bottom: 88/798
  41496. }
  41497. },
  41498. },
  41499. [
  41500. {
  41501. name: "Normal",
  41502. height: math.unit(182, "cm"),
  41503. default: true
  41504. },
  41505. ]
  41506. ))
  41507. characterMakers.push(() => makeCharacter(
  41508. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41509. {
  41510. side: {
  41511. height: math.unit(6 + 6/12, "feet"),
  41512. weight: math.unit(1.5, "tons"),
  41513. name: "Side",
  41514. image: {
  41515. source: "./media/characters/zephyr/side.svg",
  41516. extra: 1433/586,
  41517. bottom: 109/1542
  41518. }
  41519. },
  41520. },
  41521. [
  41522. {
  41523. name: "Normal",
  41524. height: math.unit(6 + 6/12, "feet"),
  41525. default: true
  41526. },
  41527. ]
  41528. ))
  41529. characterMakers.push(() => makeCharacter(
  41530. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41531. {
  41532. side: {
  41533. height: math.unit(1, "feet"),
  41534. name: "Side",
  41535. image: {
  41536. source: "./media/characters/vixye/side.svg",
  41537. extra: 632/541,
  41538. bottom: 0/632
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(1, "feet"),
  41546. default: true
  41547. },
  41548. {
  41549. name: "True",
  41550. height: math.unit(1e15, "multiverses")
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41556. {
  41557. front: {
  41558. height: math.unit(8 + 2/12, "feet"),
  41559. weight: math.unit(650, "lb"),
  41560. name: "Front",
  41561. image: {
  41562. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41563. extra: 1174/1137,
  41564. bottom: 82/1256
  41565. }
  41566. },
  41567. back: {
  41568. height: math.unit(8 + 2/12, "feet"),
  41569. weight: math.unit(650, "lb"),
  41570. name: "Back",
  41571. image: {
  41572. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41573. extra: 1204/1157,
  41574. bottom: 46/1250
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Wildform",
  41581. height: math.unit(8 + 2/12, "feet"),
  41582. default: true
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(18, "feet"),
  41591. name: "Front",
  41592. image: {
  41593. source: "./media/characters/cyphin/front.svg",
  41594. extra: 970/886,
  41595. bottom: 42/1012
  41596. }
  41597. },
  41598. back: {
  41599. height: math.unit(18, "feet"),
  41600. name: "Back",
  41601. image: {
  41602. source: "./media/characters/cyphin/back.svg",
  41603. extra: 1009/894,
  41604. bottom: 24/1033
  41605. }
  41606. },
  41607. head: {
  41608. height: math.unit(5.05, "feet"),
  41609. name: "Head",
  41610. image: {
  41611. source: "./media/characters/cyphin/head.svg"
  41612. }
  41613. },
  41614. tailbud: {
  41615. height: math.unit(5, "feet"),
  41616. name: "Tailbud",
  41617. image: {
  41618. source: "./media/characters/cyphin/tailbud.svg"
  41619. }
  41620. },
  41621. },
  41622. [
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41627. {
  41628. side: {
  41629. height: math.unit(10, "feet"),
  41630. weight: math.unit(6, "tons"),
  41631. name: "Side",
  41632. image: {
  41633. source: "./media/characters/raijin/side.svg",
  41634. extra: 1529/613,
  41635. bottom: 337/1866
  41636. }
  41637. },
  41638. },
  41639. [
  41640. {
  41641. name: "Normal",
  41642. height: math.unit(10, "feet"),
  41643. default: true
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41649. {
  41650. side: {
  41651. height: math.unit(9, "feet"),
  41652. name: "Side",
  41653. image: {
  41654. source: "./media/characters/nilghais/side.svg",
  41655. extra: 1047/744,
  41656. bottom: 91/1138
  41657. }
  41658. },
  41659. head: {
  41660. height: math.unit(3.14, "feet"),
  41661. name: "Head",
  41662. image: {
  41663. source: "./media/characters/nilghais/head.svg"
  41664. }
  41665. },
  41666. mouth: {
  41667. height: math.unit(4.6, "feet"),
  41668. name: "Mouth",
  41669. image: {
  41670. source: "./media/characters/nilghais/mouth.svg"
  41671. }
  41672. },
  41673. wings: {
  41674. height: math.unit(24, "feet"),
  41675. name: "Wings",
  41676. image: {
  41677. source: "./media/characters/nilghais/wings.svg"
  41678. }
  41679. },
  41680. ass: {
  41681. height: math.unit(6.12, "feet"),
  41682. name: "Ass",
  41683. image: {
  41684. source: "./media/characters/nilghais/ass.svg"
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Normal",
  41691. height: math.unit(9, "feet"),
  41692. default: true
  41693. },
  41694. ]
  41695. ))
  41696. characterMakers.push(() => makeCharacter(
  41697. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41698. {
  41699. regular: {
  41700. height: math.unit(16 + 2/12, "feet"),
  41701. weight: math.unit(2300, "lb"),
  41702. name: "Regular",
  41703. image: {
  41704. source: "./media/characters/zolgar/regular.svg",
  41705. extra: 1246/1004,
  41706. bottom: 124/1370
  41707. }
  41708. },
  41709. boxers: {
  41710. height: math.unit(16 + 2/12, "feet"),
  41711. weight: math.unit(2300, "lb"),
  41712. name: "Boxers",
  41713. image: {
  41714. source: "./media/characters/zolgar/boxers.svg",
  41715. extra: 1246/1004,
  41716. bottom: 124/1370
  41717. }
  41718. },
  41719. armored: {
  41720. height: math.unit(16 + 2/12, "feet"),
  41721. weight: math.unit(2300, "lb"),
  41722. name: "Armored",
  41723. image: {
  41724. source: "./media/characters/zolgar/armored.svg",
  41725. extra: 1246/1004,
  41726. bottom: 124/1370
  41727. }
  41728. },
  41729. goth: {
  41730. height: math.unit(16 + 2/12, "feet"),
  41731. weight: math.unit(2300, "lb"),
  41732. name: "Goth",
  41733. image: {
  41734. source: "./media/characters/zolgar/goth.svg",
  41735. extra: 1246/1004,
  41736. bottom: 124/1370
  41737. }
  41738. },
  41739. },
  41740. [
  41741. {
  41742. name: "Shrunken Down",
  41743. height: math.unit(9 + 2/12, "feet")
  41744. },
  41745. {
  41746. name: "Normal",
  41747. height: math.unit(16 + 2/12, "feet"),
  41748. default: true
  41749. },
  41750. ]
  41751. ))
  41752. characterMakers.push(() => makeCharacter(
  41753. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41754. {
  41755. front: {
  41756. height: math.unit(6, "feet"),
  41757. weight: math.unit(168, "lb"),
  41758. name: "Front",
  41759. image: {
  41760. source: "./media/characters/luca/front.svg",
  41761. extra: 841/667,
  41762. bottom: 102/943
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(6, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41776. {
  41777. side: {
  41778. height: math.unit(7 + 3/12, "feet"),
  41779. weight: math.unit(312, "lb"),
  41780. name: "Side",
  41781. image: {
  41782. source: "./media/characters/zezo/side.svg",
  41783. extra: 1192/1067,
  41784. bottom: 63/1255
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(7 + 3/12, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(5 + 5/12, "feet"),
  41801. weight: math.unit(170, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/mayso/front.svg",
  41805. extra: 1215/1108,
  41806. bottom: 16/1231
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(5 + 5/12, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41820. {
  41821. front: {
  41822. height: math.unit(4 + 3/12, "feet"),
  41823. weight: math.unit(80, "lb"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/hess/front.svg",
  41827. extra: 1200/1123,
  41828. bottom: 16/1216
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(4 + 3/12, "feet"),
  41836. default: true
  41837. },
  41838. ]
  41839. ))
  41840. characterMakers.push(() => makeCharacter(
  41841. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41842. {
  41843. front: {
  41844. height: math.unit(1.9, "meters"),
  41845. name: "Front",
  41846. image: {
  41847. source: "./media/characters/ashgar/front.svg",
  41848. extra: 1177/1146,
  41849. bottom: 99/1276
  41850. }
  41851. },
  41852. back: {
  41853. height: math.unit(1.9, "meters"),
  41854. name: "Back",
  41855. image: {
  41856. source: "./media/characters/ashgar/back.svg",
  41857. extra: 1201/1183,
  41858. bottom: 53/1254
  41859. }
  41860. },
  41861. feral: {
  41862. height: math.unit(1.4, "meters"),
  41863. name: "Feral",
  41864. image: {
  41865. source: "./media/characters/ashgar/feral.svg",
  41866. extra: 370/345,
  41867. bottom: 45/415
  41868. }
  41869. },
  41870. },
  41871. [
  41872. {
  41873. name: "Normal",
  41874. height: math.unit(1.9, "meters"),
  41875. default: true
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41881. {
  41882. regular: {
  41883. height: math.unit(6, "feet"),
  41884. weight: math.unit(220, "lb"),
  41885. name: "Regular",
  41886. image: {
  41887. source: "./media/characters/phillip/regular.svg",
  41888. extra: 1373/1277,
  41889. bottom: 75/1448
  41890. }
  41891. },
  41892. dressed: {
  41893. height: math.unit(6, "feet"),
  41894. weight: math.unit(220, "lb"),
  41895. name: "Dressed",
  41896. image: {
  41897. source: "./media/characters/phillip/dressed.svg",
  41898. extra: 1373/1277,
  41899. bottom: 75/1448
  41900. }
  41901. },
  41902. paw: {
  41903. height: math.unit(1.44, "feet"),
  41904. name: "Paw",
  41905. image: {
  41906. source: "./media/characters/phillip/paw.svg"
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Normal",
  41913. height: math.unit(6, "feet"),
  41914. default: true
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41920. {
  41921. side: {
  41922. height: math.unit(42, "feet"),
  41923. name: "Side",
  41924. image: {
  41925. source: "./media/characters/uvula/side.svg",
  41926. extra: 683/586,
  41927. bottom: 60/743
  41928. }
  41929. },
  41930. front: {
  41931. height: math.unit(42, "feet"),
  41932. name: "Front",
  41933. image: {
  41934. source: "./media/characters/uvula/front.svg",
  41935. extra: 705/613,
  41936. bottom: 54/759
  41937. }
  41938. },
  41939. maw: {
  41940. height: math.unit(23.5, "feet"),
  41941. name: "Maw",
  41942. image: {
  41943. source: "./media/characters/uvula/maw.svg"
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Original Size",
  41950. height: math.unit(14, "inches")
  41951. },
  41952. {
  41953. name: "Human Size",
  41954. height: math.unit(6, "feet")
  41955. },
  41956. {
  41957. name: "Big",
  41958. height: math.unit(42, "feet"),
  41959. default: true
  41960. },
  41961. {
  41962. name: "Bigger",
  41963. height: math.unit(100, "feet")
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41969. {
  41970. front: {
  41971. height: math.unit(5 + 11/12, "feet"),
  41972. name: "Front",
  41973. image: {
  41974. source: "./media/characters/lannah/front.svg",
  41975. extra: 1208/1113,
  41976. bottom: 97/1305
  41977. }
  41978. },
  41979. },
  41980. [
  41981. {
  41982. name: "Normal",
  41983. height: math.unit(5 + 11/12, "feet"),
  41984. default: true
  41985. },
  41986. ]
  41987. ))
  41988. characterMakers.push(() => makeCharacter(
  41989. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41990. {
  41991. front: {
  41992. height: math.unit(6 + 3/12, "feet"),
  41993. weight: math.unit(3.5, "tons"),
  41994. name: "Front",
  41995. image: {
  41996. source: "./media/characters/emberflame/front.svg",
  41997. extra: 1198/672,
  41998. bottom: 82/1280
  41999. }
  42000. },
  42001. side: {
  42002. height: math.unit(6 + 3/12, "feet"),
  42003. weight: math.unit(3.5, "tons"),
  42004. name: "Side",
  42005. image: {
  42006. source: "./media/characters/emberflame/side.svg",
  42007. extra: 938/527,
  42008. bottom: 56/994
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Normal",
  42015. height: math.unit(6 + 3/12, "feet"),
  42016. default: true
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42022. {
  42023. side: {
  42024. height: math.unit(17.5, "feet"),
  42025. weight: math.unit(35, "tons"),
  42026. name: "Side",
  42027. image: {
  42028. source: "./media/characters/sophie-ambrose/side.svg",
  42029. extra: 1573/1242,
  42030. bottom: 71/1644
  42031. }
  42032. },
  42033. maw: {
  42034. height: math.unit(7.4, "feet"),
  42035. name: "Maw",
  42036. image: {
  42037. source: "./media/characters/sophie-ambrose/maw.svg"
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(17.5, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(280, "feet"),
  42054. weight: math.unit(550, "tons"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/king-mugi/front.svg",
  42058. extra: 1102/947,
  42059. bottom: 104/1206
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "King Mugi",
  42066. height: math.unit(280, "feet"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(64, "meters"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/nova-fox/front.svg",
  42079. extra: 1310/1246,
  42080. bottom: 65/1375
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Macro",
  42087. height: math.unit(64, "meters"),
  42088. default: true
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(6 + 3/12, "feet"),
  42097. weight: math.unit(170, "lb"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/sam-bat/front.svg",
  42101. extra: 1601/1411,
  42102. bottom: 125/1726
  42103. }
  42104. },
  42105. back: {
  42106. height: math.unit(6 + 3/12, "feet"),
  42107. weight: math.unit(170, "lb"),
  42108. name: "Back",
  42109. image: {
  42110. source: "./media/characters/sam-bat/back.svg",
  42111. extra: 1577/1405,
  42112. bottom: 58/1635
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(6 + 3/12, "feet"),
  42120. default: true
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42126. {
  42127. front: {
  42128. height: math.unit(59, "feet"),
  42129. weight: math.unit(40000, "lb"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/inari/front.svg",
  42133. extra: 1884/1350,
  42134. bottom: 95/1979
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Gigantamax",
  42141. height: math.unit(59, "feet"),
  42142. default: true
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42148. {
  42149. front: {
  42150. height: math.unit(5 + 8/12, "feet"),
  42151. name: "Front",
  42152. image: {
  42153. source: "./media/characters/elizabeth/front.svg",
  42154. extra: 1395/1298,
  42155. bottom: 54/1449
  42156. }
  42157. },
  42158. mouth: {
  42159. height: math.unit(1.97, "feet"),
  42160. name: "Mouth",
  42161. image: {
  42162. source: "./media/characters/elizabeth/mouth.svg"
  42163. }
  42164. },
  42165. foot: {
  42166. height: math.unit(1.17, "feet"),
  42167. name: "Foot",
  42168. image: {
  42169. source: "./media/characters/elizabeth/foot.svg"
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Normal",
  42176. height: math.unit(5 + 8/12, "feet"),
  42177. default: true
  42178. },
  42179. {
  42180. name: "Minimacro",
  42181. height: math.unit(18, "feet")
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(180, "feet")
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(5 + 2/12, "feet"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/october-gossamer/front.svg",
  42197. extra: 505/454,
  42198. bottom: 7/512
  42199. }
  42200. },
  42201. back: {
  42202. height: math.unit(5 + 2/12, "feet"),
  42203. name: "Back",
  42204. image: {
  42205. source: "./media/characters/october-gossamer/back.svg",
  42206. extra: 501/454,
  42207. bottom: 11/512
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(5 + 2/12, "feet"),
  42215. default: true
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42221. {
  42222. front: {
  42223. height: math.unit(5, "feet"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/epiglottis/front.svg",
  42227. extra: 923/849,
  42228. bottom: 17/940
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Original Size",
  42235. height: math.unit(10, "inches")
  42236. },
  42237. {
  42238. name: "Human Size",
  42239. height: math.unit(5, "feet"),
  42240. default: true
  42241. },
  42242. {
  42243. name: "Big",
  42244. height: math.unit(25, "feet")
  42245. },
  42246. {
  42247. name: "Bigger",
  42248. height: math.unit(50, "feet")
  42249. },
  42250. {
  42251. name: "oh lawd",
  42252. height: math.unit(75, "feet")
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(2 + 4/12, "feet"),
  42261. weight: math.unit(60, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/lerm/front.svg",
  42265. extra: 796/790,
  42266. bottom: 79/875
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Normal",
  42273. height: math.unit(2 + 4/12, "feet"),
  42274. default: true
  42275. },
  42276. ]
  42277. ))
  42278. characterMakers.push(() => makeCharacter(
  42279. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42280. {
  42281. front: {
  42282. height: math.unit(5.5, "feet"),
  42283. weight: math.unit(130, "lb"),
  42284. name: "Front",
  42285. image: {
  42286. source: "./media/characters/xena-nebadon/front.svg",
  42287. extra: 1828/1730,
  42288. bottom: 79/1907
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Tiny Puppy",
  42295. height: math.unit(3, "inches")
  42296. },
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(5.5, "feet"),
  42300. default: true
  42301. },
  42302. {
  42303. name: "Lotta Lady",
  42304. height: math.unit(12, "feet")
  42305. },
  42306. {
  42307. name: "Pretty Big",
  42308. height: math.unit(100, "feet")
  42309. },
  42310. {
  42311. name: "Big",
  42312. height: math.unit(500, "feet")
  42313. },
  42314. {
  42315. name: "Skyscraper Toys",
  42316. height: math.unit(2500, "feet")
  42317. },
  42318. {
  42319. name: "Plane Catcher",
  42320. height: math.unit(8, "miles")
  42321. },
  42322. {
  42323. name: "Planet Toys",
  42324. height: math.unit(15, "earths")
  42325. },
  42326. {
  42327. name: "Stardust",
  42328. height: math.unit(0.25, "galaxies")
  42329. },
  42330. {
  42331. name: "Snacks",
  42332. height: math.unit(70, "universes")
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(1.6, "meters"),
  42341. weight: math.unit(60, "kg"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/bounty/front.svg",
  42345. extra: 1426/1308,
  42346. bottom: 15/1441
  42347. }
  42348. },
  42349. back: {
  42350. height: math.unit(1.6, "meters"),
  42351. weight: math.unit(60, "kg"),
  42352. name: "Back",
  42353. image: {
  42354. source: "./media/characters/bounty/back.svg",
  42355. extra: 1417/1307,
  42356. bottom: 8/1425
  42357. }
  42358. },
  42359. },
  42360. [
  42361. {
  42362. name: "Normal",
  42363. height: math.unit(1.6, "meters"),
  42364. default: true
  42365. },
  42366. {
  42367. name: "Macro",
  42368. height: math.unit(300, "meters")
  42369. },
  42370. ]
  42371. ))
  42372. characterMakers.push(() => makeCharacter(
  42373. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42374. {
  42375. front: {
  42376. height: math.unit(2 + 8/12, "feet"),
  42377. weight: math.unit(15, "lb"),
  42378. name: "Front",
  42379. image: {
  42380. source: "./media/characters/mochi/front.svg",
  42381. extra: 1022/852,
  42382. bottom: 435/1457
  42383. }
  42384. },
  42385. back: {
  42386. height: math.unit(2 + 8/12, "feet"),
  42387. weight: math.unit(15, "lb"),
  42388. name: "Back",
  42389. image: {
  42390. source: "./media/characters/mochi/back.svg",
  42391. extra: 1335/1119,
  42392. bottom: 39/1374
  42393. }
  42394. },
  42395. bird: {
  42396. height: math.unit(2 + 8/12, "feet"),
  42397. weight: math.unit(15, "lb"),
  42398. name: "Bird",
  42399. image: {
  42400. source: "./media/characters/mochi/bird.svg",
  42401. extra: 1251/1113,
  42402. bottom: 178/1429
  42403. }
  42404. },
  42405. kaiju: {
  42406. height: math.unit(154, "feet"),
  42407. weight: math.unit(1e7, "lb"),
  42408. name: "Kaiju",
  42409. image: {
  42410. source: "./media/characters/mochi/kaiju.svg",
  42411. extra: 460/324,
  42412. bottom: 40/500
  42413. }
  42414. },
  42415. head: {
  42416. height: math.unit(1.21, "feet"),
  42417. name: "Head",
  42418. image: {
  42419. source: "./media/characters/mochi/head.svg"
  42420. }
  42421. },
  42422. alternateTail: {
  42423. height: math.unit(2 + 8/12, "feet"),
  42424. weight: math.unit(45, "lb"),
  42425. name: "Alternate Tail",
  42426. image: {
  42427. source: "./media/characters/mochi/alternate-tail.svg",
  42428. extra: 139/76,
  42429. bottom: 45/184
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Micro",
  42436. height: math.unit(2, "inches")
  42437. },
  42438. {
  42439. name: "Normal",
  42440. height: math.unit(2 + 8/12, "feet"),
  42441. default: true
  42442. },
  42443. {
  42444. name: "Macro",
  42445. height: math.unit(106, "feet")
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(5.67, "feet"),
  42454. weight: math.unit(135, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/sarel/front.svg",
  42458. extra: 865/788,
  42459. bottom: 97/962
  42460. }
  42461. },
  42462. back: {
  42463. height: math.unit(5.67, "feet"),
  42464. weight: math.unit(135, "lb"),
  42465. name: "Back",
  42466. image: {
  42467. source: "./media/characters/sarel/back.svg",
  42468. extra: 857/777,
  42469. bottom: 32/889
  42470. }
  42471. },
  42472. chozoan: {
  42473. height: math.unit(5.67, "feet"),
  42474. weight: math.unit(135, "lb"),
  42475. name: "Chozoan",
  42476. image: {
  42477. source: "./media/characters/sarel/chozoan.svg",
  42478. extra: 865/788,
  42479. bottom: 97/962
  42480. }
  42481. },
  42482. current: {
  42483. height: math.unit(5.67, "feet"),
  42484. weight: math.unit(135, "lb"),
  42485. name: "Current",
  42486. image: {
  42487. source: "./media/characters/sarel/current.svg",
  42488. extra: 865/788,
  42489. bottom: 97/962
  42490. }
  42491. },
  42492. head: {
  42493. height: math.unit(1.77, "feet"),
  42494. name: "Head",
  42495. image: {
  42496. source: "./media/characters/sarel/head.svg"
  42497. }
  42498. },
  42499. claws: {
  42500. height: math.unit(1.8, "feet"),
  42501. name: "Claws",
  42502. image: {
  42503. source: "./media/characters/sarel/claws.svg"
  42504. }
  42505. },
  42506. clawsAlt: {
  42507. height: math.unit(1.8, "feet"),
  42508. name: "Claws-alt",
  42509. image: {
  42510. source: "./media/characters/sarel/claws-alt.svg"
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Normal",
  42517. height: math.unit(5.67, "feet"),
  42518. default: true
  42519. },
  42520. ]
  42521. ))
  42522. characterMakers.push(() => makeCharacter(
  42523. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42524. {
  42525. front: {
  42526. height: math.unit(5500, "feet"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/alyonia/front.svg",
  42530. extra: 1200/1135,
  42531. bottom: 29/1229
  42532. }
  42533. },
  42534. back: {
  42535. height: math.unit(5500, "feet"),
  42536. name: "Back",
  42537. image: {
  42538. source: "./media/characters/alyonia/back.svg",
  42539. extra: 1205/1138,
  42540. bottom: 10/1215
  42541. }
  42542. },
  42543. },
  42544. [
  42545. {
  42546. name: "Small",
  42547. height: math.unit(10, "feet")
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(500, "feet")
  42552. },
  42553. {
  42554. name: "Mega Macro",
  42555. height: math.unit(5500, "feet"),
  42556. default: true
  42557. },
  42558. {
  42559. name: "Mega Macro+",
  42560. height: math.unit(500000, "feet")
  42561. },
  42562. {
  42563. name: "Giga Macro",
  42564. height: math.unit(3000, "miles")
  42565. },
  42566. {
  42567. name: "Tera Macro",
  42568. height: math.unit(2.8e6, "miles")
  42569. },
  42570. {
  42571. name: "Galactic",
  42572. height: math.unit(120000, "lightyears")
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42578. {
  42579. werewolf: {
  42580. height: math.unit(8, "feet"),
  42581. weight: math.unit(425, "lb"),
  42582. name: "Werewolf",
  42583. image: {
  42584. source: "./media/characters/autumn/werewolf.svg",
  42585. extra: 2154/2031,
  42586. bottom: 160/2314
  42587. }
  42588. },
  42589. human: {
  42590. height: math.unit(5 + 8/12, "feet"),
  42591. weight: math.unit(150, "lb"),
  42592. name: "Human",
  42593. image: {
  42594. source: "./media/characters/autumn/human.svg",
  42595. extra: 1200/1149,
  42596. bottom: 30/1230
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(8, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(8 + 5/12, "feet"),
  42613. weight: math.unit(825, "lb"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/cobalt-charizard/front.svg",
  42617. extra: 1268/1155,
  42618. bottom: 122/1390
  42619. }
  42620. },
  42621. side: {
  42622. height: math.unit(8 + 5/12, "feet"),
  42623. weight: math.unit(825, "lb"),
  42624. name: "Side",
  42625. image: {
  42626. source: "./media/characters/cobalt-charizard/side.svg",
  42627. extra: 1348/1257,
  42628. bottom: 58/1406
  42629. }
  42630. },
  42631. gMax: {
  42632. height: math.unit(134 + 11/12, "feet"),
  42633. name: "G-Max",
  42634. image: {
  42635. source: "./media/characters/cobalt-charizard/g-max.svg",
  42636. extra: 1835/1541,
  42637. bottom: 151/1986
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(8 + 5/12, "feet"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(6 + 3/12, "feet"),
  42654. weight: math.unit(210, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/stella/front.svg",
  42658. extra: 3549/3335,
  42659. bottom: 51/3600
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(6 + 3/12, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(5, "feet"),
  42676. weight: math.unit(90, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/riley-bishop/front.svg",
  42680. extra: 1450/1428,
  42681. bottom: 152/1602
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(5, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42695. {
  42696. side: {
  42697. height: math.unit(8 + 2/12, "feet"),
  42698. weight: math.unit(500, "kg"),
  42699. name: "Side",
  42700. image: {
  42701. source: "./media/characters/theo-arcanine/side.svg",
  42702. extra: 1342/1074,
  42703. bottom: 111/1453
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(8 + 2/12, "feet"),
  42711. default: true
  42712. },
  42713. ]
  42714. ))
  42715. characterMakers.push(() => makeCharacter(
  42716. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42717. {
  42718. front: {
  42719. height: math.unit(4, "feet"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/kali/front.svg",
  42723. extra: 1921/1357,
  42724. bottom: 70/1991
  42725. }
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Normal",
  42731. height: math.unit(4, "feet"),
  42732. default: true
  42733. },
  42734. {
  42735. name: "Macro",
  42736. height: math.unit(32, "meters")
  42737. },
  42738. {
  42739. name: "Macro+",
  42740. height: math.unit(150, "meters")
  42741. },
  42742. {
  42743. name: "Megamacro",
  42744. height: math.unit(7500, "meters")
  42745. },
  42746. {
  42747. name: "Megamacro+",
  42748. height: math.unit(80, "kilometers")
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42754. {
  42755. side: {
  42756. height: math.unit(5 + 11/12, "feet"),
  42757. weight: math.unit(236, "lb"),
  42758. name: "Side",
  42759. image: {
  42760. source: "./media/characters/gapp/side.svg",
  42761. extra: 775/340,
  42762. bottom: 58/833
  42763. }
  42764. },
  42765. mouth: {
  42766. height: math.unit(2.98, "feet"),
  42767. name: "Mouth",
  42768. image: {
  42769. source: "./media/characters/gapp/mouth.svg"
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(5 + 1/12, "feet"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42783. {
  42784. front: {
  42785. height: math.unit(6, "feet"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/persephone/front.svg",
  42789. extra: 1895/1717,
  42790. bottom: 96/1991
  42791. }
  42792. },
  42793. back: {
  42794. height: math.unit(6, "feet"),
  42795. name: "Back",
  42796. image: {
  42797. source: "./media/characters/persephone/back.svg",
  42798. extra: 1868/1679,
  42799. bottom: 26/1894
  42800. }
  42801. },
  42802. casual: {
  42803. height: math.unit(6, "feet"),
  42804. name: "Casual",
  42805. image: {
  42806. source: "./media/characters/persephone/casual.svg",
  42807. extra: 1713/1541,
  42808. bottom: 76/1789
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Human Size",
  42815. height: math.unit(6, "feet")
  42816. },
  42817. {
  42818. name: "Big Steppy",
  42819. height: math.unit(600, "meters"),
  42820. default: true
  42821. },
  42822. {
  42823. name: "Galaxy Brain",
  42824. height: math.unit(1, "zettameter")
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42830. {
  42831. front: {
  42832. height: math.unit(1.85, "meters"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/riley-foxthing/front.svg",
  42836. extra: 1495/1354,
  42837. bottom: 122/1617
  42838. }
  42839. },
  42840. frontAlt: {
  42841. height: math.unit(1.85, "meters"),
  42842. name: "Front (Alt)",
  42843. image: {
  42844. source: "./media/characters/riley-foxthing/front-alt.svg",
  42845. extra: 1572/1389,
  42846. bottom: 116/1688
  42847. }
  42848. },
  42849. },
  42850. [
  42851. {
  42852. name: "Normal Sized",
  42853. height: math.unit(1.85, "meters"),
  42854. default: true
  42855. },
  42856. {
  42857. name: "Quite Sizable",
  42858. height: math.unit(5, "meters")
  42859. },
  42860. {
  42861. name: "Rather Large",
  42862. height: math.unit(20, "meters")
  42863. },
  42864. {
  42865. name: "Macro",
  42866. height: math.unit(450, "meters")
  42867. },
  42868. {
  42869. name: "Giga",
  42870. height: math.unit(5, "km")
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(6, "feet"),
  42879. weight: math.unit(200, "lb"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/blizzard/front.svg",
  42883. extra: 1136/990,
  42884. bottom: 136/1272
  42885. }
  42886. },
  42887. back: {
  42888. height: math.unit(6, "feet"),
  42889. weight: math.unit(200, "lb"),
  42890. name: "Back",
  42891. image: {
  42892. source: "./media/characters/blizzard/back.svg",
  42893. extra: 1175/1034,
  42894. bottom: 97/1272
  42895. }
  42896. },
  42897. sitting: {
  42898. height: math.unit(3.725, "feet"),
  42899. weight: math.unit(200, "lb"),
  42900. name: "Sitting",
  42901. image: {
  42902. source: "./media/characters/blizzard/sitting.svg",
  42903. extra: 581/485,
  42904. bottom: 90/671
  42905. }
  42906. },
  42907. frontWizard: {
  42908. height: math.unit(7.9, "feet"),
  42909. weight: math.unit(200, "lb"),
  42910. name: "Front (Wizard)",
  42911. image: {
  42912. source: "./media/characters/blizzard/front-wizard.svg"
  42913. }
  42914. },
  42915. backWizard: {
  42916. height: math.unit(7.9, "feet"),
  42917. weight: math.unit(200, "lb"),
  42918. name: "Back (Wizard)",
  42919. image: {
  42920. source: "./media/characters/blizzard/back-wizard.svg"
  42921. }
  42922. },
  42923. frontNsfw: {
  42924. height: math.unit(6, "feet"),
  42925. weight: math.unit(200, "lb"),
  42926. name: "Front (NSFW)",
  42927. image: {
  42928. source: "./media/characters/blizzard/front-nsfw.svg",
  42929. extra: 1136/990,
  42930. bottom: 136/1272
  42931. }
  42932. },
  42933. backNsfw: {
  42934. height: math.unit(6, "feet"),
  42935. weight: math.unit(200, "lb"),
  42936. name: "Back (NSFW)",
  42937. image: {
  42938. source: "./media/characters/blizzard/back-nsfw.svg",
  42939. extra: 1175/1034,
  42940. bottom: 97/1272
  42941. }
  42942. },
  42943. sittingNsfw: {
  42944. height: math.unit(3.725, "feet"),
  42945. weight: math.unit(200, "lb"),
  42946. name: "Sitting (NSFW)",
  42947. image: {
  42948. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42949. extra: 581/485,
  42950. bottom: 90/671
  42951. }
  42952. },
  42953. wizardFrontNsfw: {
  42954. height: math.unit(7.9, "feet"),
  42955. weight: math.unit(200, "lb"),
  42956. name: "Wizard (Front, NSFW)",
  42957. image: {
  42958. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(6, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(5 + 2/12, "feet"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/lumi/front.svg",
  42978. extra: 1328/1268,
  42979. bottom: 103/1431
  42980. }
  42981. },
  42982. back: {
  42983. height: math.unit(5 + 2/12, "feet"),
  42984. name: "Back",
  42985. image: {
  42986. source: "./media/characters/lumi/back.svg",
  42987. extra: 1381/1327,
  42988. bottom: 43/1424
  42989. }
  42990. },
  42991. },
  42992. [
  42993. {
  42994. name: "Normal",
  42995. height: math.unit(5 + 2/12, "feet"),
  42996. default: true
  42997. },
  42998. ]
  42999. ))
  43000. characterMakers.push(() => makeCharacter(
  43001. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43002. {
  43003. front: {
  43004. height: math.unit(5 + 9/12, "feet"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/aliya-cotton/front.svg",
  43008. extra: 577/564,
  43009. bottom: 29/606
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(5 + 9/12, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(2.7, "meters"),
  43026. weight: math.unit(25000, "lb"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/noah-luxray/front.svg",
  43030. extra: 1644/825,
  43031. bottom: 339/1983
  43032. }
  43033. },
  43034. side: {
  43035. height: math.unit(2.97, "meters"),
  43036. weight: math.unit(25000, "lb"),
  43037. name: "Side",
  43038. image: {
  43039. source: "./media/characters/noah-luxray/side.svg",
  43040. extra: 1319/650,
  43041. bottom: 163/1482
  43042. }
  43043. },
  43044. dick: {
  43045. height: math.unit(7.4, "feet"),
  43046. weight: math.unit(2500, "lb"),
  43047. name: "Dick",
  43048. image: {
  43049. source: "./media/characters/noah-luxray/dick.svg"
  43050. }
  43051. },
  43052. dickAlt: {
  43053. height: math.unit(10.83, "feet"),
  43054. weight: math.unit(2500, "lb"),
  43055. name: "Dick-alt",
  43056. image: {
  43057. source: "./media/characters/noah-luxray/dick-alt.svg"
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "BIG",
  43064. height: math.unit(2.7, "meters"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43071. {
  43072. standing: {
  43073. height: math.unit(183, "cm"),
  43074. weight: math.unit(68, "kg"),
  43075. name: "Standing",
  43076. image: {
  43077. source: "./media/characters/arion/standing.svg",
  43078. extra: 1869/1807,
  43079. bottom: 93/1962
  43080. }
  43081. },
  43082. reclining: {
  43083. height: math.unit(70.5, "cm"),
  43084. weight: math.unit(68, "lb"),
  43085. name: "Reclining",
  43086. image: {
  43087. source: "./media/characters/arion/reclining.svg",
  43088. extra: 937/870,
  43089. bottom: 63/1000
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Colossus Size, Low",
  43096. height: math.unit(33, "meters"),
  43097. default: true
  43098. },
  43099. {
  43100. name: "Colossus Size, Mid",
  43101. height: math.unit(52, "meters")
  43102. },
  43103. {
  43104. name: "Colossus Size, High",
  43105. height: math.unit(60, "meters")
  43106. },
  43107. {
  43108. name: "Titan Size, Low",
  43109. height: math.unit(91, "meters"),
  43110. },
  43111. {
  43112. name: "Titan Size, Mid",
  43113. height: math.unit(122, "meters")
  43114. },
  43115. {
  43116. name: "Titan Size, High",
  43117. height: math.unit(162, "meters")
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(53, "meters"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/stellar-marbey/front.svg",
  43129. extra: 1913/1805,
  43130. bottom: 92/2005
  43131. }
  43132. },
  43133. back: {
  43134. height: math.unit(53, "meters"),
  43135. name: "Back",
  43136. image: {
  43137. source: "./media/characters/stellar-marbey/back.svg",
  43138. extra: 1960/1851,
  43139. bottom: 28/1988
  43140. }
  43141. },
  43142. mouth: {
  43143. height: math.unit(3.5, "meters"),
  43144. name: "Mouth",
  43145. image: {
  43146. source: "./media/characters/stellar-marbey/mouth.svg"
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Macro",
  43153. height: math.unit(53, "meters"),
  43154. default: true
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43160. {
  43161. front: {
  43162. height: math.unit(8 + 1/12, "feet"),
  43163. weight: math.unit(233, "lb"),
  43164. name: "Front",
  43165. image: {
  43166. source: "./media/characters/matsu/front.svg",
  43167. extra: 832/772,
  43168. bottom: 40/872
  43169. }
  43170. },
  43171. back: {
  43172. height: math.unit(8 + 1/12, "feet"),
  43173. weight: math.unit(233, "lb"),
  43174. name: "Back",
  43175. image: {
  43176. source: "./media/characters/matsu/back.svg",
  43177. extra: 839/780,
  43178. bottom: 47/886
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(8 + 1/12, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(4, "feet"),
  43195. weight: math.unit(148, "lb"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/thiz/front.svg",
  43199. extra: 1913/1748,
  43200. bottom: 62/1975
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(4, "feet"),
  43208. default: true
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43214. {
  43215. front: {
  43216. height: math.unit(7 + 6/12, "feet"),
  43217. weight: math.unit(267, "lb"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/marcel/front.svg",
  43221. extra: 1221/1096,
  43222. bottom: 76/1297
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Normal",
  43229. height: math.unit(7 + 6/12, "feet"),
  43230. default: true
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43236. {
  43237. side: {
  43238. height: math.unit(42, "meters"),
  43239. name: "Side",
  43240. image: {
  43241. source: "./media/characters/flake/side.svg",
  43242. extra: 1525/1306,
  43243. bottom: 209/1734
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal",
  43250. height: math.unit(42, "meters"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43257. {
  43258. dressed: {
  43259. height: math.unit(6 + 4/12, "feet"),
  43260. weight: math.unit(520, "lb"),
  43261. name: "Dressed",
  43262. image: {
  43263. source: "./media/characters/someonne/dressed.svg",
  43264. extra: 1020/1010,
  43265. bottom: 178/1198
  43266. }
  43267. },
  43268. undressed: {
  43269. height: math.unit(6 + 4/12, "feet"),
  43270. weight: math.unit(520, "lb"),
  43271. name: "Undressed",
  43272. image: {
  43273. source: "./media/characters/someonne/undressed.svg",
  43274. extra: 1019/1014,
  43275. bottom: 169/1188
  43276. }
  43277. },
  43278. },
  43279. [
  43280. {
  43281. name: "Normal",
  43282. height: math.unit(6 + 4/12, "feet"),
  43283. default: true
  43284. },
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(3, "feet"),
  43292. weight: math.unit(30, "lb"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/till/front.svg",
  43296. extra: 892/823,
  43297. bottom: 55/947
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Normal",
  43304. height: math.unit(3, "feet"),
  43305. default: true
  43306. },
  43307. ]
  43308. ))
  43309. characterMakers.push(() => makeCharacter(
  43310. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43311. {
  43312. front: {
  43313. height: math.unit(9 + 8/12, "feet"),
  43314. weight: math.unit(800, "lb"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/sydney-heki/front.svg",
  43318. extra: 1360/1300,
  43319. bottom: 22/1382
  43320. }
  43321. },
  43322. back: {
  43323. height: math.unit(9 + 8/12, "feet"),
  43324. weight: math.unit(800, "lb"),
  43325. name: "Back",
  43326. image: {
  43327. source: "./media/characters/sydney-heki/back.svg",
  43328. extra: 1356/1293,
  43329. bottom: 12/1368
  43330. }
  43331. },
  43332. frontDressed: {
  43333. height: math.unit(9 + 8/12, "feet"),
  43334. weight: math.unit(800, "lb"),
  43335. name: "Front-dressed",
  43336. image: {
  43337. source: "./media/characters/sydney-heki/front-dressed.svg",
  43338. extra: 1360/1300,
  43339. bottom: 22/1382
  43340. }
  43341. },
  43342. },
  43343. [
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(9 + 8/12, "feet"),
  43347. default: true
  43348. },
  43349. {
  43350. name: "Macro",
  43351. height: math.unit(500, "feet")
  43352. },
  43353. {
  43354. name: "Megamacro",
  43355. height: math.unit(3.6, "miles")
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(200, "cm"),
  43364. weight: math.unit(250, "lb"),
  43365. name: "Front",
  43366. image: {
  43367. source: "./media/characters/fowler-karlsson/front.svg",
  43368. extra: 897/845,
  43369. bottom: 123/1020
  43370. }
  43371. },
  43372. back: {
  43373. height: math.unit(200, "cm"),
  43374. weight: math.unit(250, "lb"),
  43375. name: "Back",
  43376. image: {
  43377. source: "./media/characters/fowler-karlsson/back.svg",
  43378. extra: 999/944,
  43379. bottom: 26/1025
  43380. }
  43381. },
  43382. dick: {
  43383. height: math.unit(1.92, "feet"),
  43384. weight: math.unit(150, "lb"),
  43385. name: "Dick",
  43386. image: {
  43387. source: "./media/characters/fowler-karlsson/dick.svg"
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(200, "cm"),
  43395. default: true
  43396. },
  43397. {
  43398. name: "Smaller Macro",
  43399. height: math.unit(90, "m")
  43400. },
  43401. {
  43402. name: "Macro",
  43403. height: math.unit(150, "m")
  43404. },
  43405. {
  43406. name: "Bigger Macro",
  43407. height: math.unit(300, "m")
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43413. {
  43414. side: {
  43415. height: math.unit(8 + 2/12, "feet"),
  43416. weight: math.unit(1, "tonne"),
  43417. name: "Side",
  43418. image: {
  43419. source: "./media/characters/rylide/side.svg",
  43420. extra: 1318/1034,
  43421. bottom: 106/1424
  43422. }
  43423. },
  43424. sitting: {
  43425. height: math.unit(303, "cm"),
  43426. weight: math.unit(1, "tonne"),
  43427. name: "Sitting",
  43428. image: {
  43429. source: "./media/characters/rylide/sitting.svg",
  43430. extra: 1303/1103,
  43431. bottom: 36/1339
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(8 + 2/12, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(5 + 10/12, "feet"),
  43448. weight: math.unit(160, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/pudask/front.svg",
  43452. extra: 1616/1590,
  43453. bottom: 161/1777
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Ferret Height",
  43460. height: math.unit(2 + 5/12, "feet")
  43461. },
  43462. {
  43463. name: "Canon Height",
  43464. height: math.unit(5 + 10/12, "feet"),
  43465. default: true
  43466. },
  43467. ]
  43468. ))
  43469. characterMakers.push(() => makeCharacter(
  43470. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43471. {
  43472. front: {
  43473. height: math.unit(3 + 6/12, "feet"),
  43474. weight: math.unit(60, "lb"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/ramita/front.svg",
  43478. extra: 1402/1232,
  43479. bottom: 62/1464
  43480. }
  43481. },
  43482. dressed: {
  43483. height: math.unit(3 + 6/12, "feet"),
  43484. weight: math.unit(60, "lb"),
  43485. name: "Dressed",
  43486. image: {
  43487. source: "./media/characters/ramita/dressed.svg",
  43488. extra: 1534/1249,
  43489. bottom: 50/1584
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(3 + 6/12, "feet"),
  43497. default: true
  43498. },
  43499. ]
  43500. ))
  43501. characterMakers.push(() => makeCharacter(
  43502. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43503. {
  43504. front: {
  43505. height: math.unit(8, "feet"),
  43506. name: "Front",
  43507. image: {
  43508. source: "./media/characters/ark/front.svg",
  43509. extra: 772/693,
  43510. bottom: 45/817
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(8, "feet"),
  43518. default: true
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43524. {
  43525. front: {
  43526. height: math.unit(6, "feet"),
  43527. weight: math.unit(250, "lb"),
  43528. volume: math.unit(5/8, "gallons"),
  43529. name: "Front",
  43530. image: {
  43531. source: "./media/characters/ludwig-horn/front.svg",
  43532. extra: 1782/1635,
  43533. bottom: 96/1878
  43534. }
  43535. },
  43536. back: {
  43537. height: math.unit(6, "feet"),
  43538. weight: math.unit(250, "lb"),
  43539. volume: math.unit(5/8, "gallons"),
  43540. name: "Back",
  43541. image: {
  43542. source: "./media/characters/ludwig-horn/back.svg",
  43543. extra: 1874/1729,
  43544. bottom: 27/1901
  43545. }
  43546. },
  43547. dick: {
  43548. height: math.unit(1.05, "feet"),
  43549. weight: math.unit(15, "lb"),
  43550. volume: math.unit(5/8, "gallons"),
  43551. name: "Dick",
  43552. image: {
  43553. source: "./media/characters/ludwig-horn/dick.svg"
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Small",
  43560. height: math.unit(6, "feet")
  43561. },
  43562. {
  43563. name: "Typical",
  43564. height: math.unit(12, "feet"),
  43565. default: true
  43566. },
  43567. {
  43568. name: "Building",
  43569. height: math.unit(80, "feet")
  43570. },
  43571. {
  43572. name: "Town",
  43573. height: math.unit(800, "feet")
  43574. },
  43575. {
  43576. name: "Kingdom",
  43577. height: math.unit(80000, "feet")
  43578. },
  43579. {
  43580. name: "Planet",
  43581. height: math.unit(8000000, "feet")
  43582. },
  43583. {
  43584. name: "Universe",
  43585. height: math.unit(8000000000, "feet")
  43586. },
  43587. {
  43588. name: "Transcended",
  43589. height: math.unit(8e27, "feet")
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(5, "feet"),
  43598. weight: math.unit(50, "kg"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/biot-avery/front.svg",
  43602. extra: 1295/1232,
  43603. bottom: 86/1381
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(5, "feet"),
  43611. default: true
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43617. {
  43618. front: {
  43619. height: math.unit(6, "feet"),
  43620. name: "Front",
  43621. image: {
  43622. source: "./media/characters/kitsune-kiro/front.svg",
  43623. extra: 1270/1158,
  43624. bottom: 42/1312
  43625. }
  43626. },
  43627. frontAlt: {
  43628. height: math.unit(6, "feet"),
  43629. name: "Front-alt",
  43630. image: {
  43631. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43632. extra: 1130/1081,
  43633. bottom: 36/1166
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Smol",
  43640. height: math.unit(3, "feet")
  43641. },
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(6, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(6, "feet"),
  43654. weight: math.unit(125, "lb"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/jack-thatcher/front.svg",
  43658. extra: 1474/1370,
  43659. bottom: 26/1500
  43660. }
  43661. },
  43662. back: {
  43663. height: math.unit(6, "feet"),
  43664. weight: math.unit(125, "lb"),
  43665. name: "Back",
  43666. image: {
  43667. source: "./media/characters/jack-thatcher/back.svg",
  43668. extra: 1489/1384,
  43669. bottom: 18/1507
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(6, "feet"),
  43677. default: true
  43678. },
  43679. {
  43680. name: "Macro",
  43681. height: math.unit(75, "feet")
  43682. },
  43683. {
  43684. name: "Macro-er",
  43685. height: math.unit(250, "feet")
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(7, "feet"),
  43694. weight: math.unit(110, "kg"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/max-hyper/front.svg",
  43698. extra: 1969/1881,
  43699. bottom: 49/2018
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Normal",
  43706. height: math.unit(7, "feet"),
  43707. default: true
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43713. {
  43714. front: {
  43715. height: math.unit(5 + 5/12, "feet"),
  43716. weight: math.unit(160, "lb"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/spook/front.svg",
  43720. extra: 794/791,
  43721. bottom: 54/848
  43722. }
  43723. },
  43724. back: {
  43725. height: math.unit(5 + 5/12, "feet"),
  43726. weight: math.unit(160, "lb"),
  43727. name: "Back",
  43728. image: {
  43729. source: "./media/characters/spook/back.svg",
  43730. extra: 812/798,
  43731. bottom: 32/844
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(5 + 5/12, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(18, "feet"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/xeaduulix/front.svg",
  43751. extra: 1380/1166,
  43752. bottom: 110/1490
  43753. }
  43754. },
  43755. back: {
  43756. height: math.unit(18, "feet"),
  43757. name: "Back",
  43758. image: {
  43759. source: "./media/characters/xeaduulix/back.svg",
  43760. extra: 1592/1170,
  43761. bottom: 128/1720
  43762. }
  43763. },
  43764. frontNsfw: {
  43765. height: math.unit(18, "feet"),
  43766. name: "Front (NSFW)",
  43767. image: {
  43768. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43769. extra: 1380/1166,
  43770. bottom: 110/1490
  43771. }
  43772. },
  43773. backNsfw: {
  43774. height: math.unit(18, "feet"),
  43775. name: "Back (NSFW)",
  43776. image: {
  43777. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43778. extra: 1592/1170,
  43779. bottom: 128/1720
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Normal",
  43786. height: math.unit(18, "feet"),
  43787. default: true
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43793. {
  43794. spreadWings: {
  43795. height: math.unit(20, "feet"),
  43796. name: "Spread Wings",
  43797. image: {
  43798. source: "./media/characters/fledge/spread-wings.svg",
  43799. extra: 693/635,
  43800. bottom: 26/719
  43801. }
  43802. },
  43803. front: {
  43804. height: math.unit(20, "feet"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/fledge/front.svg",
  43808. extra: 684/637,
  43809. bottom: 18/702
  43810. }
  43811. },
  43812. frontAlt: {
  43813. height: math.unit(20, "feet"),
  43814. name: "Front (Alt)",
  43815. image: {
  43816. source: "./media/characters/fledge/front-alt.svg",
  43817. extra: 708/664,
  43818. bottom: 13/721
  43819. }
  43820. },
  43821. back: {
  43822. height: math.unit(20, "feet"),
  43823. name: "Back",
  43824. image: {
  43825. source: "./media/characters/fledge/back.svg",
  43826. extra: 718/634,
  43827. bottom: 22/740
  43828. }
  43829. },
  43830. head: {
  43831. height: math.unit(5.55, "feet"),
  43832. name: "Head",
  43833. image: {
  43834. source: "./media/characters/fledge/head.svg"
  43835. }
  43836. },
  43837. headAlt: {
  43838. height: math.unit(5.1, "feet"),
  43839. name: "Head (Alt)",
  43840. image: {
  43841. source: "./media/characters/fledge/head-alt.svg"
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Small",
  43848. height: math.unit(6 + 2/12, "feet")
  43849. },
  43850. {
  43851. name: "Big",
  43852. height: math.unit(20, "feet"),
  43853. default: true
  43854. },
  43855. {
  43856. name: "Giant",
  43857. height: math.unit(100, "feet")
  43858. },
  43859. {
  43860. name: "Macro",
  43861. height: math.unit(200, "feet")
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43867. {
  43868. front: {
  43869. height: math.unit(1, "meter"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/atlas-morenai/front.svg",
  43873. extra: 1275/1043,
  43874. bottom: 19/1294
  43875. }
  43876. },
  43877. back: {
  43878. height: math.unit(1, "meter"),
  43879. name: "Back",
  43880. image: {
  43881. source: "./media/characters/atlas-morenai/back.svg",
  43882. extra: 1141/1001,
  43883. bottom: 25/1166
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(1, "meter"),
  43891. default: true
  43892. },
  43893. {
  43894. name: "Magic-Infused",
  43895. height: math.unit(5, "meters")
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(5, "meters"),
  43904. name: "Front",
  43905. image: {
  43906. source: "./media/characters/cintia/front.svg",
  43907. extra: 1312/1228,
  43908. bottom: 38/1350
  43909. }
  43910. },
  43911. back: {
  43912. height: math.unit(5, "meters"),
  43913. name: "Back",
  43914. image: {
  43915. source: "./media/characters/cintia/back.svg",
  43916. extra: 1260/1166,
  43917. bottom: 98/1358
  43918. }
  43919. },
  43920. frontDick: {
  43921. height: math.unit(5, "meters"),
  43922. name: "Front (Dick)",
  43923. image: {
  43924. source: "./media/characters/cintia/front-dick.svg",
  43925. extra: 1312/1228,
  43926. bottom: 38/1350
  43927. }
  43928. },
  43929. backDick: {
  43930. height: math.unit(5, "meters"),
  43931. name: "Back (Dick)",
  43932. image: {
  43933. source: "./media/characters/cintia/back-dick.svg",
  43934. extra: 1260/1166,
  43935. bottom: 98/1358
  43936. }
  43937. },
  43938. bust: {
  43939. height: math.unit(1.97, "meters"),
  43940. name: "Bust",
  43941. image: {
  43942. source: "./media/characters/cintia/bust.svg",
  43943. extra: 617/565,
  43944. bottom: 0/617
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(5, "meters"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43958. {
  43959. side: {
  43960. height: math.unit(100, "feet"),
  43961. name: "Side",
  43962. image: {
  43963. source: "./media/characters/denora/side.svg",
  43964. extra: 875/803,
  43965. bottom: 9/884
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Standard",
  43972. height: math.unit(100, "feet"),
  43973. default: true
  43974. },
  43975. {
  43976. name: "Grand",
  43977. height: math.unit(1000, "feet")
  43978. },
  43979. {
  43980. name: "Conquering",
  43981. height: math.unit(10000, "feet")
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43987. {
  43988. dressed: {
  43989. height: math.unit(8 + 5/12, "feet"),
  43990. weight: math.unit(700, "lb"),
  43991. name: "Dressed",
  43992. image: {
  43993. source: "./media/characters/kiva/dressed.svg",
  43994. extra: 1102/1055,
  43995. bottom: 60/1162
  43996. }
  43997. },
  43998. nude: {
  43999. height: math.unit(8 + 5/12, "feet"),
  44000. weight: math.unit(700, "lb"),
  44001. name: "Nude",
  44002. image: {
  44003. source: "./media/characters/kiva/nude.svg",
  44004. extra: 1102/1055,
  44005. bottom: 60/1162
  44006. }
  44007. },
  44008. },
  44009. [
  44010. {
  44011. name: "Base Height",
  44012. height: math.unit(8 + 5/12, "feet"),
  44013. default: true
  44014. },
  44015. {
  44016. name: "Macro",
  44017. height: math.unit(100, "feet")
  44018. },
  44019. {
  44020. name: "Max",
  44021. height: math.unit(3280, "feet")
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(6 + 8/12, "feet"),
  44030. weight: math.unit(250, "lb"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/ztragon/front.svg",
  44034. extra: 1825/1684,
  44035. bottom: 98/1923
  44036. }
  44037. },
  44038. },
  44039. [
  44040. {
  44041. name: "Normal",
  44042. height: math.unit(6 + 8/12, "feet"),
  44043. default: true
  44044. },
  44045. {
  44046. name: "Macro",
  44047. height: math.unit(80, "feet")
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44053. {
  44054. front: {
  44055. height: math.unit(10.4, "feet"),
  44056. weight: math.unit(2, "tons"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/yesenia/front.svg",
  44060. extra: 1479/1474,
  44061. bottom: 233/1712
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(10.4, "feet"),
  44069. default: true
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44075. {
  44076. normal: {
  44077. height: math.unit(6 + 1/12, "feet"),
  44078. weight: math.unit(180, "lb"),
  44079. name: "Normal",
  44080. image: {
  44081. source: "./media/characters/leanne-lycheborne/normal.svg",
  44082. extra: 1748/1660,
  44083. bottom: 98/1846
  44084. }
  44085. },
  44086. were: {
  44087. height: math.unit(12, "feet"),
  44088. weight: math.unit(1600, "lb"),
  44089. name: "Were",
  44090. image: {
  44091. source: "./media/characters/leanne-lycheborne/were.svg",
  44092. extra: 1485/1432,
  44093. bottom: 66/1551
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(6 + 1/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44107. {
  44108. side: {
  44109. height: math.unit(13, "feet"),
  44110. name: "Side",
  44111. image: {
  44112. source: "./media/characters/kira-tyler/side.svg",
  44113. extra: 693/393,
  44114. bottom: 58/751
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Normal",
  44121. height: math.unit(13, "feet"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44128. {
  44129. front: {
  44130. height: math.unit(10.3, "feet"),
  44131. weight: math.unit(150, "lb"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/blaze/front.svg",
  44135. extra: 1378/1286,
  44136. bottom: 172/1550
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(10.3, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44150. {
  44151. side: {
  44152. height: math.unit(2, "meters"),
  44153. weight: math.unit(400, "kg"),
  44154. name: "Side",
  44155. image: {
  44156. source: "./media/characters/anu/side.svg",
  44157. extra: 506/394,
  44158. bottom: 18/524
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Humanoid",
  44165. height: math.unit(2, "meters")
  44166. },
  44167. {
  44168. name: "Normal",
  44169. height: math.unit(5, "meters"),
  44170. default: true
  44171. },
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(5 + 5/12, "feet"),
  44179. weight: math.unit(170, "lb"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/synx-the-lynx/front.svg",
  44183. extra: 1893/1745,
  44184. bottom: 17/1910
  44185. }
  44186. },
  44187. side: {
  44188. height: math.unit(5 + 5/12, "feet"),
  44189. weight: math.unit(170, "lb"),
  44190. name: "Side",
  44191. image: {
  44192. source: "./media/characters/synx-the-lynx/side.svg",
  44193. extra: 1884/1740,
  44194. bottom: 39/1923
  44195. }
  44196. },
  44197. back: {
  44198. height: math.unit(5 + 5/12, "feet"),
  44199. weight: math.unit(170, "lb"),
  44200. name: "Back",
  44201. image: {
  44202. source: "./media/characters/synx-the-lynx/back.svg",
  44203. extra: 1903/1755,
  44204. bottom: 14/1917
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(5 + 5/12, "feet"),
  44212. default: true
  44213. },
  44214. ]
  44215. ))
  44216. characterMakers.push(() => makeCharacter(
  44217. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44218. {
  44219. back: {
  44220. height: math.unit(15, "feet"),
  44221. name: "Back",
  44222. image: {
  44223. source: "./media/characters/nadezda-fex/back.svg",
  44224. extra: 1695/1481,
  44225. bottom: 25/1720
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Normal",
  44232. height: math.unit(15, "feet"),
  44233. default: true
  44234. },
  44235. {
  44236. name: "Macro",
  44237. height: math.unit(2.5, "miles")
  44238. },
  44239. {
  44240. name: "Goddess",
  44241. height: math.unit(2, "multiverses")
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(216, "cm"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/lev/front.svg",
  44253. extra: 1728/1670,
  44254. bottom: 82/1810
  44255. }
  44256. },
  44257. back: {
  44258. height: math.unit(216, "cm"),
  44259. name: "Back",
  44260. image: {
  44261. source: "./media/characters/lev/back.svg",
  44262. extra: 1738/1675,
  44263. bottom: 24/1762
  44264. }
  44265. },
  44266. dressed: {
  44267. height: math.unit(216, "cm"),
  44268. name: "Dressed",
  44269. image: {
  44270. source: "./media/characters/lev/dressed.svg",
  44271. extra: 1397/1351,
  44272. bottom: 73/1470
  44273. }
  44274. },
  44275. head: {
  44276. height: math.unit(0.51, "meter"),
  44277. name: "Head",
  44278. image: {
  44279. source: "./media/characters/lev/head.svg"
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(216, "cm"),
  44287. default: true
  44288. },
  44289. {
  44290. name: "Relatively Macro",
  44291. height: math.unit(80, "meters")
  44292. },
  44293. {
  44294. name: "Megamacro",
  44295. height: math.unit(21600, "meters")
  44296. },
  44297. {
  44298. name: "Megamacro+",
  44299. height: math.unit(64800, "meters")
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44305. {
  44306. front: {
  44307. height: math.unit(2, "meters"),
  44308. weight: math.unit(80, "kg"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/moka/front.svg",
  44312. extra: 1337/1255,
  44313. bottom: 58/1395
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Micro",
  44320. height: math.unit(15, "cm")
  44321. },
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(2, "meters"),
  44325. default: true
  44326. },
  44327. {
  44328. name: "Macro",
  44329. height: math.unit(20, "meters"),
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(9, "feet"),
  44338. weight: math.unit(240, "lb"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/kuzco/front.svg",
  44342. extra: 1593/1487,
  44343. bottom: 32/1625
  44344. }
  44345. },
  44346. side: {
  44347. height: math.unit(9, "feet"),
  44348. weight: math.unit(240, "lb"),
  44349. name: "Side",
  44350. image: {
  44351. source: "./media/characters/kuzco/side.svg",
  44352. extra: 1575/1485,
  44353. bottom: 30/1605
  44354. }
  44355. },
  44356. back: {
  44357. height: math.unit(9, "feet"),
  44358. weight: math.unit(240, "lb"),
  44359. name: "Back",
  44360. image: {
  44361. source: "./media/characters/kuzco/back.svg",
  44362. extra: 1603/1514,
  44363. bottom: 14/1617
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(9, "feet"),
  44371. default: true
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44377. {
  44378. side: {
  44379. height: math.unit(2, "meters"),
  44380. weight: math.unit(300, "kg"),
  44381. name: "Side",
  44382. image: {
  44383. source: "./media/characters/ceruleus/side.svg",
  44384. extra: 1068/974,
  44385. bottom: 126/1194
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Normal",
  44392. height: math.unit(16, "meters"),
  44393. default: true
  44394. },
  44395. ]
  44396. ))
  44397. characterMakers.push(() => makeCharacter(
  44398. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44399. {
  44400. front: {
  44401. height: math.unit(9, "feet"),
  44402. weight: math.unit(500, "kg"),
  44403. name: "Front",
  44404. image: {
  44405. source: "./media/characters/acouya/front.svg",
  44406. extra: 1660/1473,
  44407. bottom: 28/1688
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Normal",
  44414. height: math.unit(9, "feet"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44421. {
  44422. front: {
  44423. height: math.unit(5 + 6/12, "feet"),
  44424. weight: math.unit(195, "lb"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/vant/front.svg",
  44428. extra: 1396/1320,
  44429. bottom: 20/1416
  44430. }
  44431. },
  44432. back: {
  44433. height: math.unit(5 + 6/12, "feet"),
  44434. weight: math.unit(195, "lb"),
  44435. name: "Back",
  44436. image: {
  44437. source: "./media/characters/vant/back.svg",
  44438. extra: 1396/1320,
  44439. bottom: 20/1416
  44440. }
  44441. },
  44442. maw: {
  44443. height: math.unit(0.75, "feet"),
  44444. name: "Maw",
  44445. image: {
  44446. source: "./media/characters/vant/maw.svg"
  44447. }
  44448. },
  44449. paw: {
  44450. height: math.unit(1.07, "feet"),
  44451. name: "Paw",
  44452. image: {
  44453. source: "./media/characters/vant/paw.svg"
  44454. }
  44455. },
  44456. },
  44457. [
  44458. {
  44459. name: "Micro",
  44460. height: math.unit(0.25, "inches")
  44461. },
  44462. {
  44463. name: "Normal",
  44464. height: math.unit(5 + 6/12, "feet"),
  44465. default: true
  44466. },
  44467. {
  44468. name: "Macro",
  44469. height: math.unit(75, "feet")
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44475. {
  44476. front: {
  44477. height: math.unit(30, "meters"),
  44478. weight: math.unit(363, "tons"),
  44479. name: "Front",
  44480. image: {
  44481. source: "./media/characters/ahra/front.svg",
  44482. extra: 1914/1814,
  44483. bottom: 46/1960
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Macro",
  44490. height: math.unit(30, "meters"),
  44491. default: true
  44492. },
  44493. ]
  44494. ))
  44495. characterMakers.push(() => makeCharacter(
  44496. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44497. {
  44498. undressed: {
  44499. height: math.unit(2, "m"),
  44500. weight: math.unit(250, "kg"),
  44501. name: "Undressed",
  44502. image: {
  44503. source: "./media/characters/coriander/undressed.svg",
  44504. extra: 1757/1606,
  44505. bottom: 107/1864
  44506. }
  44507. },
  44508. dressed: {
  44509. height: math.unit(2, "m"),
  44510. weight: math.unit(250, "kg"),
  44511. name: "Dressed",
  44512. image: {
  44513. source: "./media/characters/coriander/dressed.svg",
  44514. extra: 1757/1606,
  44515. bottom: 107/1864
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Normal",
  44522. height: math.unit(4, "meters"),
  44523. default: true
  44524. },
  44525. {
  44526. name: "XL",
  44527. height: math.unit(6, "meters")
  44528. },
  44529. {
  44530. name: "XXL",
  44531. height: math.unit(8, "meters")
  44532. },
  44533. ]
  44534. ))
  44535. characterMakers.push(() => makeCharacter(
  44536. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44537. {
  44538. front: {
  44539. height: math.unit(6, "feet"),
  44540. name: "Front",
  44541. image: {
  44542. source: "./media/characters/syrinx/front.svg",
  44543. extra: 1557/1259,
  44544. bottom: 171/1728
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(6 + 3/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. //characters
  44557. function makeCharacters() {
  44558. const results = [];
  44559. characterMakers.forEach(character => {
  44560. results.push(character());
  44561. });
  44562. return results;
  44563. }