less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

42827 wiersze
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. }
  1739. //species
  1740. function getSpeciesInfo(speciesList) {
  1741. let result = new Set();
  1742. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1743. result.add(entry)
  1744. });
  1745. return Array.from(result);
  1746. };
  1747. function getSpeciesInfoHelper(species) {
  1748. if (!speciesData[species]) {
  1749. console.warn(species + " doesn't exist");
  1750. return [];
  1751. }
  1752. if (speciesData[species].parents) {
  1753. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1754. } else {
  1755. return [species];
  1756. }
  1757. }
  1758. characterMakers.push(() => makeCharacter(
  1759. {
  1760. name: "Fen",
  1761. species: ["crux"],
  1762. description: {
  1763. title: "Bio",
  1764. text: "Very furry. Sheds on everything."
  1765. },
  1766. tags: [
  1767. "anthro",
  1768. "goo"
  1769. ]
  1770. },
  1771. {
  1772. back: {
  1773. height: math.unit(2.2428, "meter"),
  1774. weight: math.unit(124.738, "kg"),
  1775. name: "Back",
  1776. image: {
  1777. source: "./media/characters/fen/back.svg",
  1778. },
  1779. info: {
  1780. description: {
  1781. mode: "append",
  1782. text: "\n\nHe is not currently looking at you."
  1783. }
  1784. }
  1785. },
  1786. full: {
  1787. height: math.unit(1.34, "meter"),
  1788. weight: math.unit(225, "kg"),
  1789. name: "Full",
  1790. image: {
  1791. source: "./media/characters/fen/full.svg"
  1792. },
  1793. info: {
  1794. description: {
  1795. mode: "append",
  1796. text: "\n\nMunch."
  1797. }
  1798. }
  1799. },
  1800. kneeling: {
  1801. height: math.unit(5.4, "feet"),
  1802. weight: math.unit(124.738, "kg"),
  1803. name: "Kneeling",
  1804. image: {
  1805. source: "./media/characters/fen/kneeling.svg",
  1806. extra: 563 / 507
  1807. }
  1808. },
  1809. goo: {
  1810. height: math.unit(2.8, "feet"),
  1811. weight: math.unit(125, "kg"),
  1812. capacity: math.unit(1, "people"),
  1813. name: "Goo",
  1814. image: {
  1815. source: "./media/characters/fen/goo.svg",
  1816. bottom: 116 / 613
  1817. }
  1818. },
  1819. lounging: {
  1820. height: math.unit(6.5, "feet"),
  1821. weight: math.unit(125, "kg"),
  1822. name: "Lounging",
  1823. image: {
  1824. source: "./media/characters/fen/lounging.svg"
  1825. }
  1826. },
  1827. },
  1828. [
  1829. {
  1830. name: "Normal",
  1831. height: math.unit(2.2428, "meter")
  1832. },
  1833. {
  1834. name: "Big",
  1835. height: math.unit(12, "feet")
  1836. },
  1837. {
  1838. name: "Minimacro",
  1839. height: math.unit(40, "feet"),
  1840. default: true,
  1841. info: {
  1842. description: {
  1843. mode: "append",
  1844. text: "\n\nTOO DAMN BIG"
  1845. }
  1846. }
  1847. },
  1848. {
  1849. name: "Macro",
  1850. height: math.unit(100, "feet"),
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nTOO DAMN BIG"
  1855. }
  1856. }
  1857. },
  1858. {
  1859. name: "Macro+",
  1860. height: math.unit(300, "feet")
  1861. },
  1862. {
  1863. name: "Megamacro",
  1864. height: math.unit(2, "miles")
  1865. }
  1866. ]
  1867. ))
  1868. characterMakers.push(() => makeCharacter(
  1869. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1870. {
  1871. front: {
  1872. height: math.unit(183, "cm"),
  1873. weight: math.unit(80, "kg"),
  1874. name: "Front",
  1875. image: {
  1876. source: "./media/characters/sofia-fluttertail/front.svg",
  1877. bottom: 0.01,
  1878. extra: 2154 / 2081
  1879. }
  1880. },
  1881. frontAlt: {
  1882. height: math.unit(183, "cm"),
  1883. weight: math.unit(80, "kg"),
  1884. name: "Front (alt)",
  1885. image: {
  1886. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1887. }
  1888. },
  1889. back: {
  1890. height: math.unit(183, "cm"),
  1891. weight: math.unit(80, "kg"),
  1892. name: "Back",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/back.svg"
  1895. }
  1896. },
  1897. kneeling: {
  1898. height: math.unit(125, "cm"),
  1899. weight: math.unit(80, "kg"),
  1900. name: "Kneeling",
  1901. image: {
  1902. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1903. extra: 1033 / 977,
  1904. bottom: 23.7 / 1057
  1905. }
  1906. },
  1907. maw: {
  1908. height: math.unit(183 / 5, "cm"),
  1909. name: "Maw",
  1910. image: {
  1911. source: "./media/characters/sofia-fluttertail/maw.svg"
  1912. }
  1913. },
  1914. mawcloseup: {
  1915. height: math.unit(183 / 5 * 0.41, "cm"),
  1916. name: "Maw (Closeup)",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1919. }
  1920. },
  1921. paws: {
  1922. height: math.unit(1.17, "feet"),
  1923. name: "Paws",
  1924. image: {
  1925. source: "./media/characters/sofia-fluttertail/paws.svg",
  1926. extra: 851 / 851,
  1927. bottom: 17 / 868
  1928. }
  1929. },
  1930. },
  1931. [
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(1.83, "meter")
  1935. },
  1936. {
  1937. name: "Size Thief",
  1938. height: math.unit(18, "feet")
  1939. },
  1940. {
  1941. name: "50 Foot Collie",
  1942. height: math.unit(50, "feet")
  1943. },
  1944. {
  1945. name: "Macro",
  1946. height: math.unit(96, "feet"),
  1947. default: true
  1948. },
  1949. {
  1950. name: "Megamerger",
  1951. height: math.unit(650, "feet")
  1952. },
  1953. ]
  1954. ))
  1955. characterMakers.push(() => makeCharacter(
  1956. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1957. {
  1958. front: {
  1959. height: math.unit(7, "feet"),
  1960. weight: math.unit(100, "kg"),
  1961. name: "Front",
  1962. image: {
  1963. source: "./media/characters/march/front.svg",
  1964. extra: 1992/1851,
  1965. bottom: 39/2031
  1966. }
  1967. },
  1968. foot: {
  1969. height: math.unit(0.9, "feet"),
  1970. name: "Foot",
  1971. image: {
  1972. source: "./media/characters/march/foot.svg"
  1973. }
  1974. },
  1975. },
  1976. [
  1977. {
  1978. name: "Normal",
  1979. height: math.unit(7.9, "feet")
  1980. },
  1981. {
  1982. name: "Macro",
  1983. height: math.unit(220, "meters")
  1984. },
  1985. {
  1986. name: "Megamacro",
  1987. height: math.unit(2.98, "km"),
  1988. default: true
  1989. },
  1990. {
  1991. name: "Gigamacro",
  1992. height: math.unit(15963, "km")
  1993. },
  1994. {
  1995. name: "Teramacro",
  1996. height: math.unit(2980000000, "km")
  1997. },
  1998. {
  1999. name: "Examacro",
  2000. height: math.unit(250, "parsecs")
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(6, "feet"),
  2009. weight: math.unit(60, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/noir/front.svg",
  2013. extra: 1,
  2014. bottom: 0.032
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(6.6, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(500, "feet")
  2026. },
  2027. {
  2028. name: "Megamacro",
  2029. height: math.unit(2.5, "km"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Gigamacro",
  2034. height: math.unit(22500, "km")
  2035. },
  2036. {
  2037. name: "Teramacro",
  2038. height: math.unit(2500000000, "km")
  2039. },
  2040. {
  2041. name: "Examacro",
  2042. height: math.unit(200, "parsecs")
  2043. },
  2044. ]
  2045. ))
  2046. characterMakers.push(() => makeCharacter(
  2047. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2048. {
  2049. front: {
  2050. height: math.unit(7, "feet"),
  2051. weight: math.unit(100, "kg"),
  2052. name: "Front",
  2053. image: {
  2054. source: "./media/characters/okuri/front.svg",
  2055. extra: 1,
  2056. bottom: 0.037
  2057. }
  2058. },
  2059. back: {
  2060. height: math.unit(7, "feet"),
  2061. weight: math.unit(100, "kg"),
  2062. name: "Back",
  2063. image: {
  2064. source: "./media/characters/okuri/back.svg",
  2065. extra: 1,
  2066. bottom: 0.007
  2067. }
  2068. },
  2069. },
  2070. [
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(100, "miles"),
  2074. default: true
  2075. },
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(100, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/manny/front.svg",
  2087. extra: 1,
  2088. bottom: 0.06
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(100, "kg"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/manny/back.svg",
  2097. extra: 1,
  2098. bottom: 0.014
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Normal",
  2105. height: math.unit(7, "feet"),
  2106. },
  2107. {
  2108. name: "Macro",
  2109. height: math.unit(78, "feet"),
  2110. default: true
  2111. },
  2112. {
  2113. name: "Macro+",
  2114. height: math.unit(300, "meters")
  2115. },
  2116. {
  2117. name: "Macro++",
  2118. height: math.unit(2400, "meters")
  2119. },
  2120. {
  2121. name: "Megamacro",
  2122. height: math.unit(5167, "meters")
  2123. },
  2124. {
  2125. name: "Gigamacro",
  2126. height: math.unit(41769, "miles")
  2127. },
  2128. ]
  2129. ))
  2130. characterMakers.push(() => makeCharacter(
  2131. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2132. {
  2133. front: {
  2134. height: math.unit(7, "feet"),
  2135. weight: math.unit(100, "kg"),
  2136. name: "Front",
  2137. image: {
  2138. source: "./media/characters/adake/front-1.svg"
  2139. }
  2140. },
  2141. frontAlt: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(100, "kg"),
  2144. name: "Front (Alt)",
  2145. image: {
  2146. source: "./media/characters/adake/front-2.svg",
  2147. extra: 1,
  2148. bottom: 0.01
  2149. }
  2150. },
  2151. back: {
  2152. height: math.unit(7, "feet"),
  2153. weight: math.unit(100, "kg"),
  2154. name: "Back",
  2155. image: {
  2156. source: "./media/characters/adake/back.svg",
  2157. }
  2158. },
  2159. kneel: {
  2160. height: math.unit(5.385, "feet"),
  2161. weight: math.unit(100, "kg"),
  2162. name: "Kneeling",
  2163. image: {
  2164. source: "./media/characters/adake/kneel.svg",
  2165. bottom: 0.052
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Normal",
  2172. height: math.unit(7, "feet"),
  2173. },
  2174. {
  2175. name: "Macro",
  2176. height: math.unit(78, "feet"),
  2177. default: true
  2178. },
  2179. {
  2180. name: "Macro+",
  2181. height: math.unit(300, "meters")
  2182. },
  2183. {
  2184. name: "Macro++",
  2185. height: math.unit(2400, "meters")
  2186. },
  2187. {
  2188. name: "Megamacro",
  2189. height: math.unit(5167, "meters")
  2190. },
  2191. {
  2192. name: "Gigamacro",
  2193. height: math.unit(41769, "miles")
  2194. },
  2195. ]
  2196. ))
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(1.65, "meters"),
  2202. weight: math.unit(50, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/elijah/front.svg",
  2206. extra: 858 / 830,
  2207. bottom: 95.5 / 953.8559
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(1.65, "meters"),
  2212. weight: math.unit(50, "kg"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/elijah/back.svg",
  2216. extra: 895 / 850,
  2217. bottom: 5.3 / 897.956
  2218. }
  2219. },
  2220. frontNsfw: {
  2221. height: math.unit(1.65, "meters"),
  2222. weight: math.unit(50, "kg"),
  2223. name: "Front (NSFW)",
  2224. image: {
  2225. source: "./media/characters/elijah/front-nsfw.svg",
  2226. extra: 858 / 830,
  2227. bottom: 95.5 / 953.8559
  2228. }
  2229. },
  2230. backNsfw: {
  2231. height: math.unit(1.65, "meters"),
  2232. weight: math.unit(50, "kg"),
  2233. name: "Back (NSFW)",
  2234. image: {
  2235. source: "./media/characters/elijah/back-nsfw.svg",
  2236. extra: 895 / 850,
  2237. bottom: 5.3 / 897.956
  2238. }
  2239. },
  2240. dick: {
  2241. height: math.unit(1, "feet"),
  2242. name: "Dick",
  2243. image: {
  2244. source: "./media/characters/elijah/dick.svg"
  2245. }
  2246. },
  2247. beakOpen: {
  2248. height: math.unit(1.25, "feet"),
  2249. name: "Beak (Open)",
  2250. image: {
  2251. source: "./media/characters/elijah/beak-open.svg"
  2252. }
  2253. },
  2254. beakShut: {
  2255. height: math.unit(1.25, "feet"),
  2256. name: "Beak (Shut)",
  2257. image: {
  2258. source: "./media/characters/elijah/beak-shut.svg"
  2259. }
  2260. },
  2261. footFlexing: {
  2262. height: math.unit(1.61, "feet"),
  2263. name: "Foot (Flexing)",
  2264. image: {
  2265. source: "./media/characters/elijah/foot-flexing.svg"
  2266. }
  2267. },
  2268. footStepping: {
  2269. height: math.unit(1.44, "feet"),
  2270. name: "Foot (Stepping)",
  2271. image: {
  2272. source: "./media/characters/elijah/foot-stepping.svg"
  2273. }
  2274. },
  2275. plantigradeLeg: {
  2276. height: math.unit(2.34, "feet"),
  2277. name: "Plantigrade Leg",
  2278. image: {
  2279. source: "./media/characters/elijah/plantigrade-leg.svg"
  2280. }
  2281. },
  2282. plantigradeFootLeft: {
  2283. height: math.unit(0.9, "feet"),
  2284. name: "Plantigrade Foot (Left)",
  2285. image: {
  2286. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2287. }
  2288. },
  2289. plantigradeFootRight: {
  2290. height: math.unit(0.9, "feet"),
  2291. name: "Plantigrade Foot (Right)",
  2292. image: {
  2293. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Normal",
  2300. height: math.unit(1.65, "meters")
  2301. },
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(55, "meters"),
  2305. default: true
  2306. },
  2307. {
  2308. name: "Macro+",
  2309. height: math.unit(105, "meters")
  2310. },
  2311. ]
  2312. ))
  2313. characterMakers.push(() => makeCharacter(
  2314. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2315. {
  2316. front: {
  2317. height: math.unit(11, "feet"),
  2318. weight: math.unit(320, "kg"),
  2319. name: "Front",
  2320. image: {
  2321. source: "./media/characters/rai/front.svg",
  2322. extra: 1802/1696,
  2323. bottom: 68/1870
  2324. }
  2325. },
  2326. frontDressed: {
  2327. height: math.unit(11, "feet"),
  2328. weight: math.unit(320, "kg"),
  2329. name: "Front (Dressed)",
  2330. image: {
  2331. source: "./media/characters/rai/front-dressed.svg",
  2332. extra: 1802/1696,
  2333. bottom: 68/1870
  2334. }
  2335. },
  2336. side: {
  2337. height: math.unit(11, "feet"),
  2338. weight: math.unit(320, "kg"),
  2339. name: "Side",
  2340. image: {
  2341. source: "./media/characters/rai/side.svg",
  2342. extra: 1789/1710,
  2343. bottom: 115/1904
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(11, "feet"),
  2348. weight: math.unit(320, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/rai/back.svg",
  2352. extra: 1770/1707,
  2353. bottom: 28/1798
  2354. }
  2355. },
  2356. feral: {
  2357. height: math.unit(11, "feet"),
  2358. weight: math.unit(640, "kg"),
  2359. name: "Feral",
  2360. image: {
  2361. source: "./media/characters/rai/feral.svg",
  2362. extra: 1035/642,
  2363. bottom: 86/1121
  2364. }
  2365. },
  2366. dragon: {
  2367. height: math.unit(23, "feet"),
  2368. weight: math.unit(50000, "lb"),
  2369. name: "Dragon",
  2370. image: {
  2371. source: "./media/characters/rai/dragon.svg",
  2372. extra: 2498 / 2030,
  2373. bottom: 85.2 / 2584
  2374. }
  2375. },
  2376. maw: {
  2377. height: math.unit(6 / 3.81416, "feet"),
  2378. name: "Maw",
  2379. image: {
  2380. source: "./media/characters/rai/maw.svg"
  2381. }
  2382. },
  2383. },
  2384. [
  2385. {
  2386. name: "Normal",
  2387. height: math.unit(11, "feet")
  2388. },
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(302, "feet"),
  2392. default: true
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2398. {
  2399. frontDressed: {
  2400. height: math.unit(216, "feet"),
  2401. weight: math.unit(7000000, "lb"),
  2402. name: "Front (Dressed)",
  2403. image: {
  2404. source: "./media/characters/jazzy/front-dressed.svg",
  2405. extra: 2738 / 2651,
  2406. bottom: 41.8 / 2786
  2407. }
  2408. },
  2409. backDressed: {
  2410. height: math.unit(216, "feet"),
  2411. weight: math.unit(7000000, "lb"),
  2412. name: "Back (Dressed)",
  2413. image: {
  2414. source: "./media/characters/jazzy/back-dressed.svg",
  2415. extra: 2775 / 2673,
  2416. bottom: 36.8 / 2817
  2417. }
  2418. },
  2419. front: {
  2420. height: math.unit(216, "feet"),
  2421. weight: math.unit(7000000, "lb"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/jazzy/front.svg",
  2425. extra: 2738 / 2651,
  2426. bottom: 41.8 / 2786
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(216, "feet"),
  2431. weight: math.unit(7000000, "lb"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/jazzy/back.svg",
  2435. extra: 2775 / 2673,
  2436. bottom: 36.8 / 2817
  2437. }
  2438. },
  2439. maw: {
  2440. height: math.unit(20, "feet"),
  2441. name: "Maw",
  2442. image: {
  2443. source: "./media/characters/jazzy/maw.svg"
  2444. }
  2445. },
  2446. paws: {
  2447. height: math.unit(27.5, "feet"),
  2448. name: "Paws",
  2449. image: {
  2450. source: "./media/characters/jazzy/paws.svg"
  2451. }
  2452. },
  2453. eye: {
  2454. height: math.unit(4.4, "feet"),
  2455. name: "Eye",
  2456. image: {
  2457. source: "./media/characters/jazzy/eye.svg"
  2458. }
  2459. },
  2460. droneOffense: {
  2461. height: math.unit(9.5, "inches"),
  2462. name: "Drone (Offense)",
  2463. image: {
  2464. source: "./media/characters/jazzy/drone-offense.svg"
  2465. }
  2466. },
  2467. droneRecon: {
  2468. height: math.unit(9.5, "inches"),
  2469. name: "Drone (Recon)",
  2470. image: {
  2471. source: "./media/characters/jazzy/drone-recon.svg"
  2472. }
  2473. },
  2474. droneDefense: {
  2475. height: math.unit(9.5, "inches"),
  2476. name: "Drone (Defense)",
  2477. image: {
  2478. source: "./media/characters/jazzy/drone-defense.svg"
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(216, "feet"),
  2486. default: true
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(9 + 6/12, "feet"),
  2495. weight: math.unit(700, "lb"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/flamm/front.svg",
  2499. extra: 1751/1632,
  2500. bottom: 46/1797
  2501. }
  2502. },
  2503. buff: {
  2504. height: math.unit(9 + 6/12, "feet"),
  2505. weight: math.unit(950, "lb"),
  2506. name: "Buff",
  2507. image: {
  2508. source: "./media/characters/flamm/buff.svg",
  2509. extra: 3018/2874,
  2510. bottom: 221/3239
  2511. }
  2512. },
  2513. },
  2514. [
  2515. {
  2516. name: "Normal",
  2517. height: math.unit(9.5, "feet")
  2518. },
  2519. {
  2520. name: "Macro",
  2521. height: math.unit(200, "feet"),
  2522. default: true
  2523. },
  2524. ]
  2525. ))
  2526. characterMakers.push(() => makeCharacter(
  2527. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2528. {
  2529. front: {
  2530. height: math.unit(5 + 3/12, "feet"),
  2531. weight: math.unit(60, "kg"),
  2532. name: "Front",
  2533. image: {
  2534. source: "./media/characters/zephiro/front.svg",
  2535. extra: 2309 / 2162,
  2536. bottom: 0.069
  2537. }
  2538. },
  2539. side: {
  2540. height: math.unit(5 + 3/12, "feet"),
  2541. weight: math.unit(60, "kg"),
  2542. name: "Side",
  2543. image: {
  2544. source: "./media/characters/zephiro/side.svg",
  2545. extra: 2403 / 2279,
  2546. bottom: 0.015
  2547. }
  2548. },
  2549. back: {
  2550. height: math.unit(5 + 3/12, "feet"),
  2551. weight: math.unit(60, "kg"),
  2552. name: "Back",
  2553. image: {
  2554. source: "./media/characters/zephiro/back.svg",
  2555. extra: 2373 / 2244,
  2556. bottom: 0.013
  2557. }
  2558. },
  2559. hand: {
  2560. height: math.unit(0.68, "feet"),
  2561. name: "Hand",
  2562. image: {
  2563. source: "./media/characters/zephiro/hand.svg"
  2564. }
  2565. },
  2566. paw: {
  2567. height: math.unit(1, "feet"),
  2568. name: "Paw",
  2569. image: {
  2570. source: "./media/characters/zephiro/paw.svg"
  2571. }
  2572. },
  2573. beans: {
  2574. height: math.unit(0.93, "feet"),
  2575. name: "Beans",
  2576. image: {
  2577. source: "./media/characters/zephiro/beans.svg"
  2578. }
  2579. },
  2580. },
  2581. [
  2582. {
  2583. name: "Micro",
  2584. height: math.unit(3, "inches")
  2585. },
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(5 + 3 / 12, "feet"),
  2589. default: true
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(118, "feet")
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(5, "feet"),
  2602. weight: math.unit(90, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/fory/front.svg",
  2606. extra: 2862 / 2674,
  2607. bottom: 180 / 3043.8
  2608. }
  2609. },
  2610. back: {
  2611. height: math.unit(5, "feet"),
  2612. weight: math.unit(90, "kg"),
  2613. name: "Back",
  2614. image: {
  2615. source: "./media/characters/fory/back.svg",
  2616. extra: 2962 / 2791,
  2617. bottom: 106 / 3071.8
  2618. }
  2619. },
  2620. foot: {
  2621. height: math.unit(2.14, "feet"),
  2622. name: "Foot",
  2623. image: {
  2624. source: "./media/characters/fory/foot.svg"
  2625. }
  2626. },
  2627. },
  2628. [
  2629. {
  2630. name: "Normal",
  2631. height: math.unit(5, "feet")
  2632. },
  2633. {
  2634. name: "Macro",
  2635. height: math.unit(50, "feet"),
  2636. default: true
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(10, "miles")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(5, "earths")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(90, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/kurrikage/front.svg",
  2657. extra: 1,
  2658. bottom: 0.035
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(7, "feet"),
  2663. weight: math.unit(90, "lb"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/kurrikage/back.svg"
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1.5, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/kurrikage/paw.svg"
  2674. }
  2675. },
  2676. staff: {
  2677. height: math.unit(6.7, "feet"),
  2678. name: "Staff",
  2679. image: {
  2680. source: "./media/characters/kurrikage/staff.svg"
  2681. }
  2682. },
  2683. peek: {
  2684. height: math.unit(1.05, "feet"),
  2685. name: "Peeking",
  2686. image: {
  2687. source: "./media/characters/kurrikage/peek.svg",
  2688. bottom: 0.08
  2689. }
  2690. },
  2691. },
  2692. [
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(12, "feet"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Big",
  2700. height: math.unit(20, "feet")
  2701. },
  2702. {
  2703. name: "Macro",
  2704. height: math.unit(500, "feet")
  2705. },
  2706. {
  2707. name: "Megamacro",
  2708. height: math.unit(20, "miles")
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(6, "feet"),
  2717. weight: math.unit(75, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/shingo/front.svg",
  2721. extra: 1900/1825,
  2722. bottom: 82/1982
  2723. }
  2724. },
  2725. side: {
  2726. height: math.unit(6, "feet"),
  2727. weight: math.unit(75, "kg"),
  2728. name: "Side",
  2729. image: {
  2730. source: "./media/characters/shingo/side.svg",
  2731. extra: 1930/1865,
  2732. bottom: 16/1946
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(6, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/shingo/back.svg",
  2741. extra: 1922/1852,
  2742. bottom: 16/1938
  2743. }
  2744. },
  2745. frontDressed: {
  2746. height: math.unit(6, "feet"),
  2747. weight: math.unit(150, "lb"),
  2748. name: "Front-dressed",
  2749. image: {
  2750. source: "./media/characters/shingo/front-dressed.svg",
  2751. extra: 1900/1825,
  2752. bottom: 82/1982
  2753. }
  2754. },
  2755. paw: {
  2756. height: math.unit(1.29, "feet"),
  2757. name: "Paw",
  2758. image: {
  2759. source: "./media/characters/shingo/paw.svg"
  2760. }
  2761. },
  2762. hand: {
  2763. height: math.unit(1.07, "feet"),
  2764. name: "Hand",
  2765. image: {
  2766. source: "./media/characters/shingo/hand.svg"
  2767. }
  2768. },
  2769. frontAlt: {
  2770. height: math.unit(6, "feet"),
  2771. weight: math.unit(75, "kg"),
  2772. name: "Front (Alt)",
  2773. image: {
  2774. source: "./media/characters/shingo/front-alt.svg",
  2775. extra: 3511 / 3338,
  2776. bottom: 0.005
  2777. }
  2778. },
  2779. frontAlt2: {
  2780. height: math.unit(6, "feet"),
  2781. weight: math.unit(75, "kg"),
  2782. name: "Front (Alt 2)",
  2783. image: {
  2784. source: "./media/characters/shingo/front-alt-2.svg",
  2785. extra: 706/681,
  2786. bottom: 11/717
  2787. }
  2788. },
  2789. pawAlt: {
  2790. height: math.unit(1, "feet"),
  2791. name: "Paw (Alt)",
  2792. image: {
  2793. source: "./media/characters/shingo/paw-alt.svg"
  2794. }
  2795. },
  2796. },
  2797. [
  2798. {
  2799. name: "Micro",
  2800. height: math.unit(4, "inches")
  2801. },
  2802. {
  2803. name: "Normal",
  2804. height: math.unit(6, "feet"),
  2805. default: true
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(108, "feet")
  2810. },
  2811. {
  2812. name: "Macro+",
  2813. height: math.unit(1500, "feet")
  2814. },
  2815. ]
  2816. ))
  2817. characterMakers.push(() => makeCharacter(
  2818. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2819. {
  2820. side: {
  2821. height: math.unit(6, "feet"),
  2822. weight: math.unit(75, "kg"),
  2823. name: "Side",
  2824. image: {
  2825. source: "./media/characters/aigey/side.svg"
  2826. }
  2827. },
  2828. },
  2829. [
  2830. {
  2831. name: "Macro",
  2832. height: math.unit(200, "feet"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Megamacro",
  2837. height: math.unit(100, "miles")
  2838. },
  2839. ]
  2840. )
  2841. )
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2844. {
  2845. front: {
  2846. height: math.unit(5 + 5 / 12, "feet"),
  2847. weight: math.unit(75, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/natasha/front.svg",
  2851. extra: 859 / 824,
  2852. bottom: 23 / 879.6
  2853. }
  2854. },
  2855. frontNsfw: {
  2856. height: math.unit(5 + 5 / 12, "feet"),
  2857. weight: math.unit(75, "kg"),
  2858. name: "Front (NSFW)",
  2859. image: {
  2860. source: "./media/characters/natasha/front-nsfw.svg",
  2861. extra: 859 / 824,
  2862. bottom: 23 / 879.6
  2863. }
  2864. },
  2865. frontErect: {
  2866. height: math.unit(5 + 5 / 12, "feet"),
  2867. weight: math.unit(75, "kg"),
  2868. name: "Front (Erect)",
  2869. image: {
  2870. source: "./media/characters/natasha/front-erect.svg",
  2871. extra: 859 / 824,
  2872. bottom: 23 / 879.6
  2873. }
  2874. },
  2875. back: {
  2876. height: math.unit(5 + 5 / 12, "feet"),
  2877. weight: math.unit(75, "kg"),
  2878. name: "Back",
  2879. image: {
  2880. source: "./media/characters/natasha/back.svg",
  2881. extra: 887.9 / 852.6,
  2882. bottom: 9.7 / 896.4
  2883. }
  2884. },
  2885. backAlt: {
  2886. height: math.unit(5 + 5 / 12, "feet"),
  2887. weight: math.unit(75, "kg"),
  2888. name: "Back (Alt)",
  2889. image: {
  2890. source: "./media/characters/natasha/back-alt.svg",
  2891. extra: 1236.7 / 1192,
  2892. bottom: 22.3 / 1258.2
  2893. }
  2894. },
  2895. dick: {
  2896. height: math.unit(1.772, "feet"),
  2897. name: "Dick",
  2898. image: {
  2899. source: "./media/characters/natasha/dick.svg"
  2900. }
  2901. },
  2902. paw: {
  2903. height: math.unit(0.250, "meters"),
  2904. name: "Paw",
  2905. image: {
  2906. source: "./media/characters/natasha/paw.svg"
  2907. }
  2908. },
  2909. },
  2910. [
  2911. {
  2912. name: "Normal",
  2913. height: math.unit(5 + 5 / 12, "feet")
  2914. },
  2915. {
  2916. name: "Large",
  2917. height: math.unit(12, "feet")
  2918. },
  2919. {
  2920. name: "Macro",
  2921. height: math.unit(100, "feet"),
  2922. default: true
  2923. },
  2924. {
  2925. name: "Macro+",
  2926. height: math.unit(260, "feet")
  2927. },
  2928. {
  2929. name: "Macro++",
  2930. height: math.unit(1, "mile")
  2931. },
  2932. ]
  2933. ))
  2934. characterMakers.push(() => makeCharacter(
  2935. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2936. {
  2937. front: {
  2938. height: math.unit(6, "feet"),
  2939. weight: math.unit(75, "kg"),
  2940. name: "Front",
  2941. image: {
  2942. source: "./media/characters/malik/front.svg"
  2943. }
  2944. },
  2945. side: {
  2946. height: math.unit(6, "feet"),
  2947. weight: math.unit(75, "kg"),
  2948. name: "Side",
  2949. image: {
  2950. source: "./media/characters/malik/side.svg",
  2951. extra: 1.1539
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(6, "feet"),
  2956. weight: math.unit(75, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/malik/back.svg"
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(156, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Macro+",
  2971. height: math.unit(1188, "feet")
  2972. },
  2973. ]
  2974. ))
  2975. characterMakers.push(() => makeCharacter(
  2976. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2977. {
  2978. front: {
  2979. height: math.unit(6, "feet"),
  2980. weight: math.unit(75, "kg"),
  2981. name: "Front",
  2982. image: {
  2983. source: "./media/characters/sefer/front.svg",
  2984. extra: 848 / 659,
  2985. bottom: 28.3 / 876.442
  2986. }
  2987. },
  2988. back: {
  2989. height: math.unit(6, "feet"),
  2990. weight: math.unit(75, "kg"),
  2991. name: "Back",
  2992. image: {
  2993. source: "./media/characters/sefer/back.svg",
  2994. extra: 864 / 695,
  2995. bottom: 10 / 871
  2996. }
  2997. },
  2998. frontDressed: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front (Dressed)",
  3002. image: {
  3003. source: "./media/characters/sefer/front-dressed.svg",
  3004. extra: 839 / 653,
  3005. bottom: 37.6 / 878
  3006. }
  3007. },
  3008. },
  3009. [
  3010. {
  3011. name: "Normal",
  3012. height: math.unit(6, "feet"),
  3013. default: true
  3014. },
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3019. {
  3020. body: {
  3021. height: math.unit(2.2428, "meter"),
  3022. weight: math.unit(124.738, "kg"),
  3023. name: "Body",
  3024. image: {
  3025. extra: 1225 / 1050,
  3026. source: "./media/characters/north/front.svg"
  3027. }
  3028. }
  3029. },
  3030. [
  3031. {
  3032. name: "Micro",
  3033. height: math.unit(4, "inches")
  3034. },
  3035. {
  3036. name: "Macro",
  3037. height: math.unit(63, "meters")
  3038. },
  3039. {
  3040. name: "Megamacro",
  3041. height: math.unit(101, "miles"),
  3042. default: true
  3043. }
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3048. {
  3049. angled: {
  3050. height: math.unit(4, "meter"),
  3051. weight: math.unit(150, "kg"),
  3052. name: "Angled",
  3053. image: {
  3054. source: "./media/characters/talan/angled-sfw.svg",
  3055. bottom: 29 / 3734
  3056. }
  3057. },
  3058. angledNsfw: {
  3059. height: math.unit(4, "meter"),
  3060. weight: math.unit(150, "kg"),
  3061. name: "Angled (NSFW)",
  3062. image: {
  3063. source: "./media/characters/talan/angled-nsfw.svg",
  3064. bottom: 29 / 3734
  3065. }
  3066. },
  3067. frontNsfw: {
  3068. height: math.unit(4, "meter"),
  3069. weight: math.unit(150, "kg"),
  3070. name: "Front (NSFW)",
  3071. image: {
  3072. source: "./media/characters/talan/front-nsfw.svg",
  3073. bottom: 29 / 3734
  3074. }
  3075. },
  3076. sideNsfw: {
  3077. height: math.unit(4, "meter"),
  3078. weight: math.unit(150, "kg"),
  3079. name: "Side (NSFW)",
  3080. image: {
  3081. source: "./media/characters/talan/side-nsfw.svg",
  3082. bottom: 29 / 3734
  3083. }
  3084. },
  3085. back: {
  3086. height: math.unit(4, "meter"),
  3087. weight: math.unit(150, "kg"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/talan/back.svg"
  3091. }
  3092. },
  3093. dickBottom: {
  3094. height: math.unit(0.621, "meter"),
  3095. name: "Dick (Bottom)",
  3096. image: {
  3097. source: "./media/characters/talan/dick-bottom.svg"
  3098. }
  3099. },
  3100. dickTop: {
  3101. height: math.unit(0.621, "meter"),
  3102. name: "Dick (Top)",
  3103. image: {
  3104. source: "./media/characters/talan/dick-top.svg"
  3105. }
  3106. },
  3107. dickSide: {
  3108. height: math.unit(0.305, "meter"),
  3109. name: "Dick (Side)",
  3110. image: {
  3111. source: "./media/characters/talan/dick-side.svg"
  3112. }
  3113. },
  3114. dickFront: {
  3115. height: math.unit(0.305, "meter"),
  3116. name: "Dick (Front)",
  3117. image: {
  3118. source: "./media/characters/talan/dick-front.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Normal",
  3125. height: math.unit(4, "meters")
  3126. },
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(100, "meters")
  3130. },
  3131. {
  3132. name: "Megamacro",
  3133. height: math.unit(2, "miles"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Gigamacro",
  3138. height: math.unit(5000, "miles")
  3139. },
  3140. {
  3141. name: "Teramacro",
  3142. height: math.unit(100, "parsecs")
  3143. }
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(2, "meter"),
  3151. weight: math.unit(90, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/gael'rathus/front.svg"
  3155. }
  3156. },
  3157. frontAlt: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(90, "kg"),
  3160. name: "Front (alt)",
  3161. image: {
  3162. source: "./media/characters/gael'rathus/front-alt.svg"
  3163. }
  3164. },
  3165. frontAlt2: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(90, "kg"),
  3168. name: "Front (alt 2)",
  3169. image: {
  3170. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3171. }
  3172. }
  3173. },
  3174. [
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9, "feet"),
  3178. default: true
  3179. },
  3180. {
  3181. name: "Large",
  3182. height: math.unit(25, "feet")
  3183. },
  3184. {
  3185. name: "Macro",
  3186. height: math.unit(0.25, "miles")
  3187. },
  3188. {
  3189. name: "Megamacro",
  3190. height: math.unit(10, "miles")
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3196. {
  3197. side: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(140, "kg"),
  3200. name: "Side",
  3201. image: {
  3202. source: "./media/characters/sosha/side.svg",
  3203. bottom: 0.042
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Normal",
  3210. height: math.unit(12, "feet"),
  3211. default: true
  3212. }
  3213. ]
  3214. ))
  3215. characterMakers.push(() => makeCharacter(
  3216. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3217. {
  3218. side: {
  3219. height: math.unit(5 + 5 / 12, "feet"),
  3220. weight: math.unit(170, "kg"),
  3221. name: "Side",
  3222. image: {
  3223. source: "./media/characters/runnola/side.svg",
  3224. extra: 741 / 448,
  3225. bottom: 0.05
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Small",
  3232. height: math.unit(3, "feet")
  3233. },
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(5 + 5 / 12, "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Big",
  3241. height: math.unit(10, "feet")
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(50, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/kurribird/front.svg",
  3254. bottom: 0.015
  3255. }
  3256. },
  3257. frontAlt: {
  3258. height: math.unit(1.5, "meter"),
  3259. weight: math.unit(50, "kg"),
  3260. name: "Front (Alt)",
  3261. image: {
  3262. source: "./media/characters/kurribird/front-alt.svg",
  3263. extra: 1.45
  3264. }
  3265. },
  3266. },
  3267. [
  3268. {
  3269. name: "Normal",
  3270. height: math.unit(7, "feet")
  3271. },
  3272. {
  3273. name: "Big",
  3274. height: math.unit(12, "feet"),
  3275. default: true
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(1500, "feet")
  3280. },
  3281. {
  3282. name: "Megamacro",
  3283. height: math.unit(2, "miles")
  3284. }
  3285. ]
  3286. ))
  3287. characterMakers.push(() => makeCharacter(
  3288. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3289. {
  3290. front: {
  3291. height: math.unit(2, "meter"),
  3292. weight: math.unit(80, "kg"),
  3293. name: "Front",
  3294. image: {
  3295. source: "./media/characters/elbial/front.svg",
  3296. extra: 1643 / 1556,
  3297. bottom: 60.2 / 1696
  3298. }
  3299. },
  3300. side: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(80, "kg"),
  3303. name: "Side",
  3304. image: {
  3305. source: "./media/characters/elbial/side.svg",
  3306. extra: 1630 / 1565,
  3307. bottom: 71.5 / 1697
  3308. }
  3309. },
  3310. back: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(80, "kg"),
  3313. name: "Back",
  3314. image: {
  3315. source: "./media/characters/elbial/back.svg",
  3316. extra: 1668 / 1595,
  3317. bottom: 5.6 / 1672
  3318. }
  3319. },
  3320. frontDressed: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(80, "kg"),
  3323. name: "Front (Dressed)",
  3324. image: {
  3325. source: "./media/characters/elbial/front-dressed.svg",
  3326. extra: 1653 / 1584,
  3327. bottom: 57 / 1708
  3328. }
  3329. },
  3330. genitals: {
  3331. height: math.unit(2 / 3.367, "meter"),
  3332. name: "Genitals",
  3333. image: {
  3334. source: "./media/characters/elbial/genitals.svg"
  3335. }
  3336. },
  3337. },
  3338. [
  3339. {
  3340. name: "Large",
  3341. height: math.unit(100, "feet")
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(500, "feet"),
  3346. default: true
  3347. },
  3348. {
  3349. name: "Megamacro",
  3350. height: math.unit(10, "miles")
  3351. },
  3352. {
  3353. name: "Gigamacro",
  3354. height: math.unit(25000, "miles")
  3355. },
  3356. {
  3357. name: "Full-Size",
  3358. height: math.unit(8000000, "gigaparsecs")
  3359. }
  3360. ]
  3361. ))
  3362. characterMakers.push(() => makeCharacter(
  3363. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3364. {
  3365. front: {
  3366. height: math.unit(2, "meter"),
  3367. weight: math.unit(60, "kg"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/noah/front.svg"
  3371. }
  3372. },
  3373. talons: {
  3374. height: math.unit(0.315, "meter"),
  3375. name: "Talons",
  3376. image: {
  3377. source: "./media/characters/noah/talons.svg"
  3378. }
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Large",
  3384. height: math.unit(50, "feet")
  3385. },
  3386. {
  3387. name: "Macro",
  3388. height: math.unit(750, "feet"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(50, "miles")
  3394. },
  3395. {
  3396. name: "Gigamacro",
  3397. height: math.unit(100000, "miles")
  3398. },
  3399. {
  3400. name: "Full-Size",
  3401. height: math.unit(3000000000, "miles")
  3402. }
  3403. ]
  3404. ))
  3405. characterMakers.push(() => makeCharacter(
  3406. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3407. {
  3408. front: {
  3409. height: math.unit(2, "meter"),
  3410. weight: math.unit(80, "kg"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/natalya/front.svg"
  3414. }
  3415. },
  3416. back: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(80, "kg"),
  3419. name: "Back",
  3420. image: {
  3421. source: "./media/characters/natalya/back.svg"
  3422. }
  3423. }
  3424. },
  3425. [
  3426. {
  3427. name: "Normal",
  3428. height: math.unit(150, "feet"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Megamacro",
  3433. height: math.unit(5, "miles")
  3434. },
  3435. {
  3436. name: "Full-Size",
  3437. height: math.unit(600, "kiloparsecs")
  3438. }
  3439. ]
  3440. ))
  3441. characterMakers.push(() => makeCharacter(
  3442. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3443. {
  3444. front: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(50, "kg"),
  3447. name: "Front",
  3448. image: {
  3449. source: "./media/characters/erestrebah/front.svg",
  3450. extra: 208 / 193,
  3451. bottom: 0.055
  3452. }
  3453. },
  3454. back: {
  3455. height: math.unit(2, "meter"),
  3456. weight: math.unit(50, "kg"),
  3457. name: "Back",
  3458. image: {
  3459. source: "./media/characters/erestrebah/back.svg",
  3460. extra: 1.3
  3461. }
  3462. }
  3463. },
  3464. [
  3465. {
  3466. name: "Normal",
  3467. height: math.unit(10, "feet")
  3468. },
  3469. {
  3470. name: "Large",
  3471. height: math.unit(50, "feet"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Macro",
  3476. height: math.unit(300, "feet")
  3477. },
  3478. {
  3479. name: "Macro+",
  3480. height: math.unit(750, "feet")
  3481. },
  3482. {
  3483. name: "Megamacro",
  3484. height: math.unit(3, "miles")
  3485. }
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(80, "kg"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/jennifer/front.svg",
  3497. bottom: 0.11,
  3498. extra: 1.16
  3499. }
  3500. },
  3501. frontAlt: {
  3502. height: math.unit(2, "meter"),
  3503. weight: math.unit(80, "kg"),
  3504. name: "Front (Alt)",
  3505. image: {
  3506. source: "./media/characters/jennifer/front-alt.svg"
  3507. }
  3508. }
  3509. },
  3510. [
  3511. {
  3512. name: "Canon Height",
  3513. height: math.unit(120, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro+",
  3518. height: math.unit(300, "feet")
  3519. },
  3520. {
  3521. name: "Megamacro",
  3522. height: math.unit(20000, "feet")
  3523. }
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(2, "meter"),
  3531. weight: math.unit(50, "kg"),
  3532. name: "Front",
  3533. image: {
  3534. source: "./media/characters/kalista/front.svg",
  3535. extra: 1947 / 1700,
  3536. bottom: 76.6 / 1412.98
  3537. }
  3538. },
  3539. back: {
  3540. height: math.unit(2, "meter"),
  3541. weight: math.unit(50, "kg"),
  3542. name: "Back",
  3543. image: {
  3544. source: "./media/characters/kalista/back.svg",
  3545. extra: 1366 / 1156,
  3546. bottom: 33.9 / 1362.78
  3547. }
  3548. }
  3549. },
  3550. [
  3551. {
  3552. name: "Uncomfortably Small",
  3553. height: math.unit(10, "feet")
  3554. },
  3555. {
  3556. name: "Small",
  3557. height: math.unit(30, "feet")
  3558. },
  3559. {
  3560. name: "Macro",
  3561. height: math.unit(100, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Macro+",
  3566. height: math.unit(2000, "feet")
  3567. },
  3568. {
  3569. name: "True Form",
  3570. height: math.unit(8924, "miles")
  3571. }
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3576. {
  3577. front: {
  3578. height: math.unit(2, "meter"),
  3579. weight: math.unit(120, "kg"),
  3580. name: "Front",
  3581. image: {
  3582. source: "./media/characters/ggv/front.svg"
  3583. }
  3584. },
  3585. side: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(120, "kg"),
  3588. name: "Side",
  3589. image: {
  3590. source: "./media/characters/ggv/side.svg"
  3591. }
  3592. }
  3593. },
  3594. [
  3595. {
  3596. name: "Extremely Puny",
  3597. height: math.unit(9 + 5 / 12, "feet")
  3598. },
  3599. {
  3600. name: "Horribly Small",
  3601. height: math.unit(47.7, "miles"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Reasonably Sized",
  3606. height: math.unit(25000, "parsecs")
  3607. },
  3608. {
  3609. name: "Slightly Uncompressed",
  3610. height: math.unit(7.77e31, "parsecs")
  3611. },
  3612. {
  3613. name: "Omniversal",
  3614. height: math.unit(1e300, "meters")
  3615. },
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(75, "lb"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/napalm/front.svg"
  3627. }
  3628. },
  3629. back: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(75, "lb"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/napalm/back.svg"
  3635. }
  3636. }
  3637. },
  3638. [
  3639. {
  3640. name: "Standard",
  3641. height: math.unit(55, "feet"),
  3642. default: true
  3643. }
  3644. ]
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(7 + 5 / 6, "feet"),
  3651. weight: math.unit(325, "lb"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/asana/front.svg",
  3655. extra: 1133 / 1060,
  3656. bottom: 15.2 / 1148.6
  3657. }
  3658. },
  3659. back: {
  3660. height: math.unit(7 + 5 / 6, "feet"),
  3661. weight: math.unit(325, "lb"),
  3662. name: "Back",
  3663. image: {
  3664. source: "./media/characters/asana/back.svg",
  3665. extra: 1114 / 1043,
  3666. bottom: 5 / 1120
  3667. }
  3668. },
  3669. dressedDark: {
  3670. height: math.unit(7 + 5 / 6, "feet"),
  3671. weight: math.unit(325, "lb"),
  3672. name: "Dressed (Dark)",
  3673. image: {
  3674. source: "./media/characters/asana/dressed-dark.svg",
  3675. extra: 1133 / 1060,
  3676. bottom: 15.2 / 1148.6
  3677. }
  3678. },
  3679. dressedLight: {
  3680. height: math.unit(7 + 5 / 6, "feet"),
  3681. weight: math.unit(325, "lb"),
  3682. name: "Dressed (Light)",
  3683. image: {
  3684. source: "./media/characters/asana/dressed-light.svg",
  3685. extra: 1133 / 1060,
  3686. bottom: 15.2 / 1148.6
  3687. }
  3688. },
  3689. },
  3690. [
  3691. {
  3692. name: "Standard",
  3693. height: math.unit(7 + 5 / 6, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Large",
  3698. height: math.unit(10, "meters")
  3699. },
  3700. {
  3701. name: "Macro",
  3702. height: math.unit(2500, "meters")
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(5e6, "meters")
  3707. },
  3708. {
  3709. name: "Examacro",
  3710. height: math.unit(5e12, "lightyears")
  3711. },
  3712. {
  3713. name: "Max Size",
  3714. height: math.unit(1e31, "lightyears")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(60, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/ebony/front.svg",
  3727. bottom: 0.03,
  3728. extra: 1045 / 810 + 0.03
  3729. }
  3730. },
  3731. side: {
  3732. height: math.unit(2, "meter"),
  3733. weight: math.unit(60, "kg"),
  3734. name: "Side",
  3735. image: {
  3736. source: "./media/characters/ebony/side.svg",
  3737. bottom: 0.03,
  3738. extra: 1045 / 810 + 0.03
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(60, "kg"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/ebony/back.svg",
  3747. bottom: 0.01,
  3748. extra: 1045 / 810 + 0.01
  3749. }
  3750. },
  3751. },
  3752. [
  3753. // TODO check why I did this lol
  3754. {
  3755. name: "Standard",
  3756. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3757. default: true
  3758. },
  3759. {
  3760. name: "Macro",
  3761. height: math.unit(200, "feet")
  3762. },
  3763. {
  3764. name: "Gigamacro",
  3765. height: math.unit(13000, "km")
  3766. }
  3767. ]
  3768. ))
  3769. characterMakers.push(() => makeCharacter(
  3770. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3771. {
  3772. front: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(175, "lb"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/mountain/front.svg",
  3778. extra: 972 / 955,
  3779. bottom: 64 / 1036.6
  3780. }
  3781. },
  3782. back: {
  3783. height: math.unit(6, "feet"),
  3784. weight: math.unit(175, "lb"),
  3785. name: "Back",
  3786. image: {
  3787. source: "./media/characters/mountain/back.svg",
  3788. extra: 970 / 950,
  3789. bottom: 28.25 / 999
  3790. }
  3791. },
  3792. },
  3793. [
  3794. {
  3795. name: "Large",
  3796. height: math.unit(20, "meters")
  3797. },
  3798. {
  3799. name: "Macro",
  3800. height: math.unit(300, "meters")
  3801. },
  3802. {
  3803. name: "Gigamacro",
  3804. height: math.unit(10000, "km"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Examacro",
  3809. height: math.unit(10e9, "lightyears")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(8, "feet"),
  3818. weight: math.unit(500, "lb"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/rick/front.svg"
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Normal",
  3828. height: math.unit(8, "feet"),
  3829. default: true
  3830. },
  3831. {
  3832. name: "Macro",
  3833. height: math.unit(5, "km")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(8, "feet"),
  3842. weight: math.unit(120, "lb"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/ona/front.svg"
  3846. }
  3847. },
  3848. frontAlt: {
  3849. height: math.unit(8, "feet"),
  3850. weight: math.unit(120, "lb"),
  3851. name: "Front (Alt)",
  3852. image: {
  3853. source: "./media/characters/ona/front-alt.svg"
  3854. }
  3855. },
  3856. back: {
  3857. height: math.unit(8, "feet"),
  3858. weight: math.unit(120, "lb"),
  3859. name: "Back",
  3860. image: {
  3861. source: "./media/characters/ona/back.svg"
  3862. }
  3863. },
  3864. foot: {
  3865. height: math.unit(1.1, "feet"),
  3866. name: "Foot",
  3867. image: {
  3868. source: "./media/characters/ona/foot.svg"
  3869. }
  3870. }
  3871. },
  3872. [
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(70, "km"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Gigamacro",
  3880. height: math.unit(681818, "miles")
  3881. },
  3882. {
  3883. name: "Examacro",
  3884. height: math.unit(3800000, "lightyears")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(12, "feet"),
  3893. weight: math.unit(3000, "lb"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/mech/front.svg",
  3897. extra: 2900 / 2770,
  3898. bottom: 110 / 3010
  3899. }
  3900. },
  3901. back: {
  3902. height: math.unit(12, "feet"),
  3903. weight: math.unit(3000, "lb"),
  3904. name: "Back",
  3905. image: {
  3906. source: "./media/characters/mech/back.svg",
  3907. extra: 3011 / 2890,
  3908. bottom: 94 / 3105
  3909. }
  3910. },
  3911. maw: {
  3912. height: math.unit(3.07, "feet"),
  3913. name: "Maw",
  3914. image: {
  3915. source: "./media/characters/mech/maw.svg"
  3916. }
  3917. },
  3918. head: {
  3919. height: math.unit(2.82, "feet"),
  3920. name: "Head",
  3921. image: {
  3922. source: "./media/characters/mech/head.svg"
  3923. }
  3924. },
  3925. dick: {
  3926. height: math.unit(1.43, "feet"),
  3927. name: "Dick",
  3928. image: {
  3929. source: "./media/characters/mech/dick.svg"
  3930. }
  3931. },
  3932. },
  3933. [
  3934. {
  3935. name: "Normal",
  3936. height: math.unit(12, "feet")
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(300, "feet"),
  3941. default: true
  3942. },
  3943. {
  3944. name: "Macro+",
  3945. height: math.unit(1500, "feet")
  3946. },
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(1.3, "meter"),
  3954. weight: math.unit(30, "kg"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/gregory/front.svg",
  3958. }
  3959. }
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(1.3, "meter"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(20, "meter")
  3970. }
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3975. {
  3976. front: {
  3977. height: math.unit(2.8, "meter"),
  3978. weight: math.unit(200, "kg"),
  3979. name: "Front",
  3980. image: {
  3981. source: "./media/characters/elory/front.svg",
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(2.8, "meter"),
  3989. default: true
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(38, "meter")
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(470, "feet"),
  4002. weight: math.unit(924, "tons"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/angelpatamon/front.svg",
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(470, "feet"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Deity Size I",
  4017. height: math.unit(28651.2, "km")
  4018. },
  4019. {
  4020. name: "Deity Size II",
  4021. height: math.unit(171907.2, "km")
  4022. }
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4027. {
  4028. side: {
  4029. height: math.unit(7.2, "meter"),
  4030. weight: math.unit(8.2, "tons"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/cryae/side.svg",
  4034. extra: 3500 / 1500
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Normal",
  4041. height: math.unit(7.2, "meter"),
  4042. default: true
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(175, "lb"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/xera/front.svg",
  4055. extra: 2377 / 1972,
  4056. bottom: 75.5 / 2452
  4057. }
  4058. },
  4059. side: {
  4060. height: math.unit(6, "feet"),
  4061. weight: math.unit(175, "lb"),
  4062. name: "Side",
  4063. image: {
  4064. source: "./media/characters/xera/side.svg",
  4065. extra: 2345 / 2019,
  4066. bottom: 39.7 / 2384
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(6, "feet"),
  4071. weight: math.unit(175, "lb"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/xera/back.svg",
  4075. extra: 2095 / 1984,
  4076. bottom: 67 / 2166
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Small",
  4083. height: math.unit(10, "feet")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(500, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Macro+",
  4092. height: math.unit(10, "km")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(25000, "km")
  4097. },
  4098. {
  4099. name: "Teramacro",
  4100. height: math.unit(3e6, "km")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(175, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/nebula/front.svg",
  4113. extra: 2566 / 2362,
  4114. bottom: 81 / 2644
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Small",
  4121. height: math.unit(4.5, "meters")
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(1500, "meters"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Megamacro",
  4130. height: math.unit(150, "km")
  4131. },
  4132. {
  4133. name: "Gigamacro",
  4134. height: math.unit(27000, "km")
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(6, "feet"),
  4143. weight: math.unit(225, "lb"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/abysgar/front.svg"
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Small",
  4153. height: math.unit(4.5, "meters")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(1250, "meters"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(125, "km")
  4163. },
  4164. {
  4165. name: "Gigamacro",
  4166. height: math.unit(26000, "km")
  4167. }
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(6, "feet"),
  4175. weight: math.unit(180, "lb"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/yakuz/front.svg"
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Small",
  4185. height: math.unit(5, "meters")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(1500, "meters"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Megamacro",
  4194. height: math.unit(200, "km")
  4195. },
  4196. {
  4197. name: "Gigamacro",
  4198. height: math.unit(100000, "km")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(6, "feet"),
  4207. weight: math.unit(175, "lb"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/mirova/front.svg",
  4211. extra: 3334 / 3071,
  4212. bottom: 42 / 3375.6
  4213. }
  4214. }
  4215. },
  4216. [
  4217. {
  4218. name: "Small",
  4219. height: math.unit(5, "meters")
  4220. },
  4221. {
  4222. name: "Macro",
  4223. height: math.unit(900, "meters"),
  4224. default: true
  4225. },
  4226. {
  4227. name: "Megamacro",
  4228. height: math.unit(135, "km")
  4229. },
  4230. {
  4231. name: "Gigamacro",
  4232. height: math.unit(20000, "km")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4238. {
  4239. side: {
  4240. height: math.unit(28.35, "feet"),
  4241. weight: math.unit(99.75, "tons"),
  4242. name: "Side",
  4243. image: {
  4244. source: "./media/characters/asana-mech/side.svg",
  4245. extra: 923 / 699,
  4246. bottom: 50 / 975
  4247. }
  4248. },
  4249. chaingun: {
  4250. height: math.unit(7, "feet"),
  4251. weight: math.unit(2400, "lb"),
  4252. name: "Chaingun",
  4253. image: {
  4254. source: "./media/characters/asana-mech/chaingun.svg"
  4255. }
  4256. },
  4257. laser: {
  4258. height: math.unit(7.12, "feet"),
  4259. weight: math.unit(2000, "lb"),
  4260. name: "Laser",
  4261. image: {
  4262. source: "./media/characters/asana-mech/laser.svg"
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(28.35, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(2500, "feet")
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(25, "miles")
  4279. },
  4280. {
  4281. name: "Examacro",
  4282. height: math.unit(6e8, "lightyears")
  4283. },
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4288. {
  4289. front: {
  4290. height: math.unit(5, "meters"),
  4291. weight: math.unit(1000, "kg"),
  4292. name: "Front",
  4293. image: {
  4294. source: "./media/characters/asche/front.svg",
  4295. extra: 1258 / 1190,
  4296. bottom: 47 / 1305
  4297. }
  4298. },
  4299. frontUnderwear: {
  4300. height: math.unit(5, "meters"),
  4301. weight: math.unit(1000, "kg"),
  4302. name: "Front (Underwear)",
  4303. image: {
  4304. source: "./media/characters/asche/front-underwear.svg",
  4305. extra: 1258 / 1190,
  4306. bottom: 47 / 1305
  4307. }
  4308. },
  4309. frontDressed: {
  4310. height: math.unit(5, "meters"),
  4311. weight: math.unit(1000, "kg"),
  4312. name: "Front (Dressed)",
  4313. image: {
  4314. source: "./media/characters/asche/front-dressed.svg",
  4315. extra: 1258 / 1190,
  4316. bottom: 47 / 1305
  4317. }
  4318. },
  4319. frontArmor: {
  4320. height: math.unit(5, "meters"),
  4321. weight: math.unit(1000, "kg"),
  4322. name: "Front (Armored)",
  4323. image: {
  4324. source: "./media/characters/asche/front-armored.svg",
  4325. extra: 1374 / 1308,
  4326. bottom: 23 / 1397
  4327. }
  4328. },
  4329. mp724: {
  4330. height: math.unit(0.96, "meters"),
  4331. weight: math.unit(38, "kg"),
  4332. name: "H&K MP724",
  4333. image: {
  4334. source: "./media/characters/asche/h&k-mp724.svg"
  4335. }
  4336. },
  4337. side: {
  4338. height: math.unit(5, "meters"),
  4339. weight: math.unit(1000, "kg"),
  4340. name: "Side",
  4341. image: {
  4342. source: "./media/characters/asche/side.svg",
  4343. extra: 1717 / 1609,
  4344. bottom: 0.005
  4345. }
  4346. },
  4347. back: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Back",
  4351. image: {
  4352. source: "./media/characters/asche/back.svg",
  4353. extra: 1570 / 1501
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "DEFCON 5",
  4360. height: math.unit(5, "meters")
  4361. },
  4362. {
  4363. name: "DEFCON 4",
  4364. height: math.unit(500, "meters"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "DEFCON 3",
  4369. height: math.unit(5, "km")
  4370. },
  4371. {
  4372. name: "DEFCON 2",
  4373. height: math.unit(500, "km")
  4374. },
  4375. {
  4376. name: "DEFCON 1",
  4377. height: math.unit(500000, "km")
  4378. },
  4379. {
  4380. name: "DEFCON 0",
  4381. height: math.unit(3, "gigaparsecs")
  4382. },
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4387. {
  4388. front: {
  4389. height: math.unit(2, "meters"),
  4390. weight: math.unit(76, "kg"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/gale/front.svg"
  4394. }
  4395. },
  4396. frontAlt1: {
  4397. height: math.unit(2, "meters"),
  4398. weight: math.unit(76, "kg"),
  4399. name: "Front (Alt 1)",
  4400. image: {
  4401. source: "./media/characters/gale/front-alt-1.svg"
  4402. }
  4403. },
  4404. frontAlt2: {
  4405. height: math.unit(2, "meters"),
  4406. weight: math.unit(76, "kg"),
  4407. name: "Front (Alt 2)",
  4408. image: {
  4409. source: "./media/characters/gale/front-alt-2.svg"
  4410. }
  4411. },
  4412. },
  4413. [
  4414. {
  4415. name: "Normal",
  4416. height: math.unit(7, "feet")
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(150, "feet"),
  4421. default: true
  4422. },
  4423. {
  4424. name: "Macro+",
  4425. height: math.unit(300, "feet")
  4426. },
  4427. ]
  4428. ))
  4429. characterMakers.push(() => makeCharacter(
  4430. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4431. {
  4432. front: {
  4433. height: math.unit(2, "meters"),
  4434. weight: math.unit(76, "kg"),
  4435. name: "Front",
  4436. image: {
  4437. source: "./media/characters/draylen/front.svg"
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(150, "feet"),
  4445. default: true
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(7 + 9 / 12, "feet"),
  4454. weight: math.unit(379, "lbs"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/chez/front.svg"
  4458. }
  4459. },
  4460. side: {
  4461. height: math.unit(7 + 9 / 12, "feet"),
  4462. weight: math.unit(379, "lbs"),
  4463. name: "Side",
  4464. image: {
  4465. source: "./media/characters/chez/side.svg"
  4466. }
  4467. }
  4468. },
  4469. [
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(7 + 9 / 12, "feet"),
  4473. default: true
  4474. },
  4475. {
  4476. name: "God King",
  4477. height: math.unit(9750000, "meters")
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(275, "lbs"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/kaylum/front.svg",
  4490. bottom: 0.01,
  4491. extra: 1166 / 1031
  4492. }
  4493. },
  4494. frontWingless: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(275, "lbs"),
  4497. name: "Front (Wingless)",
  4498. image: {
  4499. source: "./media/characters/kaylum/front-wingless.svg",
  4500. bottom: 0.01,
  4501. extra: 1117 / 1031
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(3.05, "meters")
  4509. },
  4510. {
  4511. name: "Master",
  4512. height: math.unit(5.5, "meters")
  4513. },
  4514. {
  4515. name: "Rampage",
  4516. height: math.unit(19, "meters")
  4517. },
  4518. {
  4519. name: "Macro Lite",
  4520. height: math.unit(37, "meters")
  4521. },
  4522. {
  4523. name: "Hyper Predator",
  4524. height: math.unit(61, "meters")
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(138, "meters"),
  4529. default: true
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(150, "lbs"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/geta/front.svg"
  4542. }
  4543. }
  4544. },
  4545. [
  4546. {
  4547. name: "Micro",
  4548. height: math.unit(3, "inches"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(5 + 5 / 12, "feet")
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(300, "lbs"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/tyrnn/front.svg"
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Main Height",
  4572. height: math.unit(355, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Fave. Height",
  4577. height: math.unit(2400, "feet")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(300, "lbs"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/appledectomy/front.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(2500, "feet")
  4597. },
  4598. {
  4599. name: "Megamacro",
  4600. height: math.unit(50, "miles"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Gigamacro",
  4605. height: math.unit(5000, "miles")
  4606. },
  4607. {
  4608. name: "Teramacro",
  4609. height: math.unit(250000, "miles")
  4610. },
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(200, "lbs"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/vulpes/front.svg",
  4622. extra: 573 / 543,
  4623. bottom: 0.033
  4624. }
  4625. },
  4626. side: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(200, "lbs"),
  4629. name: "Side",
  4630. image: {
  4631. source: "./media/characters/vulpes/side.svg",
  4632. extra: 577 / 549,
  4633. bottom: 11 / 588
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(200, "lbs"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/vulpes/back.svg",
  4642. extra: 573 / 549,
  4643. bottom: 20 / 593
  4644. }
  4645. },
  4646. feet: {
  4647. height: math.unit(1.276, "feet"),
  4648. name: "Feet",
  4649. image: {
  4650. source: "./media/characters/vulpes/feet.svg"
  4651. }
  4652. },
  4653. maw: {
  4654. height: math.unit(1.18, "feet"),
  4655. name: "Maw",
  4656. image: {
  4657. source: "./media/characters/vulpes/maw.svg"
  4658. }
  4659. },
  4660. },
  4661. [
  4662. {
  4663. name: "Micro",
  4664. height: math.unit(2, "inches")
  4665. },
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(6.3, "feet")
  4669. },
  4670. {
  4671. name: "Macro",
  4672. height: math.unit(850, "feet")
  4673. },
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(7500, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Gigamacro",
  4681. height: math.unit(570000, "miles")
  4682. }
  4683. ]
  4684. ))
  4685. characterMakers.push(() => makeCharacter(
  4686. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4687. {
  4688. front: {
  4689. height: math.unit(6, "feet"),
  4690. weight: math.unit(210, "lbs"),
  4691. name: "Front",
  4692. image: {
  4693. source: "./media/characters/rain-fallen/front.svg"
  4694. }
  4695. },
  4696. side: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(210, "lbs"),
  4699. name: "Side",
  4700. image: {
  4701. source: "./media/characters/rain-fallen/side.svg"
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(210, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/rain-fallen/back.svg"
  4710. }
  4711. },
  4712. feral: {
  4713. height: math.unit(9, "feet"),
  4714. weight: math.unit(700, "lbs"),
  4715. name: "Feral",
  4716. image: {
  4717. source: "./media/characters/rain-fallen/feral.svg"
  4718. }
  4719. },
  4720. },
  4721. [
  4722. {
  4723. name: "Meddling with Mortals",
  4724. height: math.unit(8 + 8/12, "feet")
  4725. },
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(5, "meter")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(150, "meter"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Megamacro",
  4737. height: math.unit(278e6, "meter")
  4738. },
  4739. {
  4740. name: "Gigamacro",
  4741. height: math.unit(2e9, "meter")
  4742. },
  4743. {
  4744. name: "Teramacro",
  4745. height: math.unit(8e12, "meter")
  4746. },
  4747. {
  4748. name: "Devourer",
  4749. height: math.unit(14, "zettameters")
  4750. },
  4751. {
  4752. name: "Scarlet King",
  4753. height: math.unit(18, "yottameters")
  4754. },
  4755. {
  4756. name: "Void",
  4757. height: math.unit(1e88, "yottameters")
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4763. {
  4764. standing: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(180, "lbs"),
  4767. name: "Standing",
  4768. image: {
  4769. source: "./media/characters/zaakira/standing.svg",
  4770. extra: 1599/1504,
  4771. bottom: 39/1638
  4772. }
  4773. },
  4774. laying: {
  4775. height: math.unit(3, "feet"),
  4776. weight: math.unit(180, "lbs"),
  4777. name: "Laying",
  4778. image: {
  4779. source: "./media/characters/zaakira/laying.svg"
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(12, "feet")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(279, "feet"),
  4791. default: true
  4792. }
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4797. {
  4798. femSfw: {
  4799. height: math.unit(8, "feet"),
  4800. weight: math.unit(350, "lb"),
  4801. name: "Fem",
  4802. image: {
  4803. source: "./media/characters/sigvald/fem-sfw.svg",
  4804. extra: 182 / 164,
  4805. bottom: 8.7 / 190.5
  4806. }
  4807. },
  4808. femNsfw: {
  4809. height: math.unit(8, "feet"),
  4810. weight: math.unit(350, "lb"),
  4811. name: "Fem (NSFW)",
  4812. image: {
  4813. source: "./media/characters/sigvald/fem-nsfw.svg",
  4814. extra: 182 / 164,
  4815. bottom: 8.7 / 190.5
  4816. }
  4817. },
  4818. maleNsfw: {
  4819. height: math.unit(8, "feet"),
  4820. weight: math.unit(350, "lb"),
  4821. name: "Male (NSFW)",
  4822. image: {
  4823. source: "./media/characters/sigvald/male-nsfw.svg",
  4824. extra: 182 / 164,
  4825. bottom: 8.7 / 190.5
  4826. }
  4827. },
  4828. hermNsfw: {
  4829. height: math.unit(8, "feet"),
  4830. weight: math.unit(350, "lb"),
  4831. name: "Herm (NSFW)",
  4832. image: {
  4833. source: "./media/characters/sigvald/herm-nsfw.svg",
  4834. extra: 182 / 164,
  4835. bottom: 8.7 / 190.5
  4836. }
  4837. },
  4838. dick: {
  4839. height: math.unit(2.36, "feet"),
  4840. name: "Dick",
  4841. image: {
  4842. source: "./media/characters/sigvald/dick.svg"
  4843. }
  4844. },
  4845. eye: {
  4846. height: math.unit(0.31, "feet"),
  4847. name: "Eye",
  4848. image: {
  4849. source: "./media/characters/sigvald/eye.svg"
  4850. }
  4851. },
  4852. mouth: {
  4853. height: math.unit(0.92, "feet"),
  4854. name: "Mouth",
  4855. image: {
  4856. source: "./media/characters/sigvald/mouth.svg"
  4857. }
  4858. },
  4859. paws: {
  4860. height: math.unit(2.2, "feet"),
  4861. name: "Paws",
  4862. image: {
  4863. source: "./media/characters/sigvald/paws.svg"
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(8, "feet")
  4871. },
  4872. {
  4873. name: "Large",
  4874. height: math.unit(12, "feet")
  4875. },
  4876. {
  4877. name: "Larger",
  4878. height: math.unit(20, "feet")
  4879. },
  4880. {
  4881. name: "Macro",
  4882. height: math.unit(150, "feet")
  4883. },
  4884. {
  4885. name: "Macro+",
  4886. height: math.unit(200, "feet"),
  4887. default: true
  4888. },
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4893. {
  4894. side: {
  4895. height: math.unit(12, "feet"),
  4896. weight: math.unit(2000, "kg"),
  4897. name: "Side",
  4898. image: {
  4899. source: "./media/characters/scott/side.svg",
  4900. extra: 754 / 724,
  4901. bottom: 0.069
  4902. }
  4903. },
  4904. upright: {
  4905. height: math.unit(12, "feet"),
  4906. weight: math.unit(2000, "kg"),
  4907. name: "Upright",
  4908. image: {
  4909. source: "./media/characters/scott/upright.svg",
  4910. extra: 3881 / 3722,
  4911. bottom: 0.05
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(12, "feet"),
  4919. default: true
  4920. },
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4925. {
  4926. side: {
  4927. height: math.unit(8, "meters"),
  4928. weight: math.unit(84755, "lbs"),
  4929. name: "Side",
  4930. image: {
  4931. source: "./media/characters/tobias/side.svg",
  4932. extra: 1474 / 1096,
  4933. bottom: 38.9 / 1513.1235
  4934. }
  4935. },
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(8, "meters"),
  4941. default: true
  4942. },
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4947. {
  4948. front: {
  4949. height: math.unit(5.5, "feet"),
  4950. weight: math.unit(400, "lbs"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/kieran/front.svg",
  4954. extra: 2694 / 2364,
  4955. bottom: 217 / 2908
  4956. }
  4957. },
  4958. side: {
  4959. height: math.unit(5.5, "feet"),
  4960. weight: math.unit(400, "lbs"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/kieran/side.svg",
  4964. extra: 875 / 777,
  4965. bottom: 84.6 / 959
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(5.5, "feet"),
  4973. default: true
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4979. {
  4980. side: {
  4981. height: math.unit(2, "meters"),
  4982. weight: math.unit(70, "kg"),
  4983. name: "Side",
  4984. image: {
  4985. source: "./media/characters/sanya/side.svg",
  4986. bottom: 0.02,
  4987. extra: 1.02
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Small",
  4994. height: math.unit(2, "meters")
  4995. },
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(3, "meters")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(16, "meters"),
  5003. default: true
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(2, "meters"),
  5012. weight: math.unit(120, "kg"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/miranda/front.svg",
  5016. extra: 195 / 185,
  5017. bottom: 10.9 / 206.5
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(2, "meters"),
  5022. weight: math.unit(120, "kg"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/miranda/back.svg",
  5026. extra: 201 / 193,
  5027. bottom: 2.3 / 203.7
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(10, "feet"),
  5035. default: true
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "James", species: ["deer"], tags: ["anthro"] },
  5041. {
  5042. side: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(100, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/james/front.svg",
  5048. extra: 10 / 8.5
  5049. }
  5050. },
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(8.5, "feet"),
  5056. default: true
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5062. {
  5063. side: {
  5064. height: math.unit(9.5, "feet"),
  5065. weight: math.unit(2500, "lbs"),
  5066. name: "Side",
  5067. image: {
  5068. source: "./media/characters/heather/side.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(9.5, "feet"),
  5076. default: true
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5082. {
  5083. side: {
  5084. height: math.unit(6.5, "feet"),
  5085. weight: math.unit(400, "lbs"),
  5086. name: "Side",
  5087. image: {
  5088. source: "./media/characters/lukas/side.svg",
  5089. extra: 7.25 / 6.5
  5090. }
  5091. },
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(6.5, "feet"),
  5097. default: true
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5103. {
  5104. side: {
  5105. height: math.unit(5, "feet"),
  5106. weight: math.unit(3000, "lbs"),
  5107. name: "Side",
  5108. image: {
  5109. source: "./media/characters/louise/side.svg"
  5110. }
  5111. },
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(5, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5123. {
  5124. side: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(150, "lbs"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/ramona/side.svg"
  5130. }
  5131. },
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(5.3, "meters"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(20, "stories")
  5142. },
  5143. {
  5144. name: "Macro+",
  5145. height: math.unit(50, "stories")
  5146. },
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5151. {
  5152. standing: {
  5153. height: math.unit(5.75, "feet"),
  5154. weight: math.unit(160, "lbs"),
  5155. name: "Standing",
  5156. image: {
  5157. source: "./media/characters/deerpuff/standing.svg",
  5158. extra: 682 / 624
  5159. }
  5160. },
  5161. sitting: {
  5162. height: math.unit(5.75 / 1.79, "feet"),
  5163. weight: math.unit(160, "lbs"),
  5164. name: "Sitting",
  5165. image: {
  5166. source: "./media/characters/deerpuff/sitting.svg",
  5167. bottom: 44 / 400,
  5168. extra: 1
  5169. }
  5170. },
  5171. taurLaying: {
  5172. height: math.unit(6, "feet"),
  5173. weight: math.unit(400, "lbs"),
  5174. name: "Taur (Laying)",
  5175. image: {
  5176. source: "./media/characters/deerpuff/taur-laying.svg"
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Puffball",
  5183. height: math.unit(6, "inches")
  5184. },
  5185. {
  5186. name: "Normalpuff",
  5187. height: math.unit(5.75, "feet")
  5188. },
  5189. {
  5190. name: "Macropuff",
  5191. height: math.unit(1500, "feet"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Megapuff",
  5196. height: math.unit(500, "miles")
  5197. },
  5198. {
  5199. name: "Gigapuff",
  5200. height: math.unit(250000, "miles")
  5201. },
  5202. {
  5203. name: "Omegapuff",
  5204. height: math.unit(1000, "lightyears")
  5205. },
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5210. {
  5211. stomping: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(170, "lbs"),
  5214. name: "Stomping",
  5215. image: {
  5216. source: "./media/characters/vivian/stomping.svg"
  5217. }
  5218. },
  5219. sitting: {
  5220. height: math.unit(6 / 1.75, "feet"),
  5221. weight: math.unit(170, "lbs"),
  5222. name: "Sitting",
  5223. image: {
  5224. source: "./media/characters/vivian/sitting.svg",
  5225. bottom: 1 / 6.4,
  5226. extra: 1,
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(7, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Macro",
  5238. height: math.unit(10, "stories")
  5239. },
  5240. {
  5241. name: "Macro+",
  5242. height: math.unit(30, "stories")
  5243. },
  5244. {
  5245. name: "Megamacro",
  5246. height: math.unit(10, "miles")
  5247. },
  5248. {
  5249. name: "Megamacro+",
  5250. height: math.unit(2750000, "meters")
  5251. },
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(160, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/prince/front.svg",
  5263. extra: 3400 / 3000
  5264. }
  5265. },
  5266. jumping: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(160, "lbs"),
  5269. name: "Jumping",
  5270. image: {
  5271. source: "./media/characters/prince/jump.svg",
  5272. extra: 2555 / 2134
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(7.75, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Not cute",
  5284. height: math.unit(17, "feet")
  5285. },
  5286. {
  5287. name: "I said NOT",
  5288. height: math.unit(91, "feet")
  5289. },
  5290. {
  5291. name: "Please stop",
  5292. height: math.unit(560, "feet")
  5293. },
  5294. {
  5295. name: "What have you done",
  5296. height: math.unit(2200, "feet")
  5297. },
  5298. {
  5299. name: "Deer God",
  5300. height: math.unit(3.6, "miles")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5306. {
  5307. standing: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(300, "lbs"),
  5310. name: "Standing",
  5311. image: {
  5312. source: "./media/characters/psymon/standing.svg",
  5313. extra: 1888 / 1810,
  5314. bottom: 0.05
  5315. }
  5316. },
  5317. slithering: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(300, "lbs"),
  5320. name: "Slithering",
  5321. image: {
  5322. source: "./media/characters/psymon/slithering.svg",
  5323. extra: 1330 / 1224
  5324. }
  5325. },
  5326. slitheringAlt: {
  5327. height: math.unit(6, "feet"),
  5328. weight: math.unit(300, "lbs"),
  5329. name: "Slithering (Alt)",
  5330. image: {
  5331. source: "./media/characters/psymon/slithering-alt.svg",
  5332. extra: 1330 / 1224
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(11.25, "feet"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Large",
  5344. height: math.unit(27, "feet")
  5345. },
  5346. {
  5347. name: "Giant",
  5348. height: math.unit(87, "feet")
  5349. },
  5350. {
  5351. name: "Macro",
  5352. height: math.unit(365, "feet")
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(3, "miles")
  5357. },
  5358. {
  5359. name: "World Serpent",
  5360. height: math.unit(8000, "miles")
  5361. },
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(180, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/daimos/front.svg",
  5373. extra: 4160 / 3897,
  5374. bottom: 0.021
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(8, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Big Dog",
  5386. height: math.unit(22, "feet")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(127, "feet")
  5391. },
  5392. {
  5393. name: "Megamacro",
  5394. height: math.unit(3600, "feet")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(180, "lbs"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/blake/side.svg",
  5407. extra: 1212 / 1120,
  5408. bottom: 0.05
  5409. }
  5410. },
  5411. crouched: {
  5412. height: math.unit(6 * 0.57, "feet"),
  5413. weight: math.unit(180, "lbs"),
  5414. name: "Crouched",
  5415. image: {
  5416. source: "./media/characters/blake/crouched.svg",
  5417. extra: 840 / 587,
  5418. bottom: 0.04
  5419. }
  5420. },
  5421. bent: {
  5422. height: math.unit(6 * 0.75, "feet"),
  5423. weight: math.unit(180, "lbs"),
  5424. name: "Bent",
  5425. image: {
  5426. source: "./media/characters/blake/bent.svg",
  5427. extra: 592 / 544,
  5428. bottom: 0.035
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(8 + 1 / 6, "feet"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Big Backside",
  5440. height: math.unit(37, "feet")
  5441. },
  5442. {
  5443. name: "Subway Shredder",
  5444. height: math.unit(72, "feet")
  5445. },
  5446. {
  5447. name: "City Carver",
  5448. height: math.unit(1675, "feet")
  5449. },
  5450. {
  5451. name: "Tectonic Tweaker",
  5452. height: math.unit(2300, "miles")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5458. {
  5459. front: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(180, "lbs"),
  5462. name: "Front",
  5463. image: {
  5464. source: "./media/characters/guisetto/front.svg",
  5465. extra: 856 / 817,
  5466. bottom: 0.06
  5467. }
  5468. },
  5469. airborne: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Airborne",
  5473. image: {
  5474. source: "./media/characters/guisetto/airborne.svg",
  5475. extra: 584 / 525
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Normal",
  5482. height: math.unit(10 + 11 / 12, "feet"),
  5483. default: true
  5484. },
  5485. {
  5486. name: "Large",
  5487. height: math.unit(35, "feet")
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(475, "feet")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(180, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/luxor/front.svg",
  5504. extra: 2940 / 2152
  5505. }
  5506. },
  5507. back: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(180, "lbs"),
  5510. name: "Back",
  5511. image: {
  5512. source: "./media/characters/luxor/back.svg",
  5513. extra: 1083 / 960
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(5 + 5 / 6, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Lamp",
  5525. height: math.unit(50, "feet")
  5526. },
  5527. {
  5528. name: "Lämp",
  5529. height: math.unit(300, "feet")
  5530. },
  5531. {
  5532. name: "The sun is a lamp",
  5533. height: math.unit(250000, "miles")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(50, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/huoyan/front.svg"
  5546. }
  5547. },
  5548. side: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(180, "lbs"),
  5551. name: "Side",
  5552. image: {
  5553. source: "./media/characters/huoyan/side.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Chef",
  5560. height: math.unit(9, "feet")
  5561. },
  5562. {
  5563. name: "Normal",
  5564. height: math.unit(65, "feet"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(780, "feet")
  5570. },
  5571. {
  5572. name: "Flaming Mountain",
  5573. height: math.unit(4.8, "miles")
  5574. },
  5575. {
  5576. name: "Celestial",
  5577. height: math.unit(765000, "miles")
  5578. },
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(5 + 3 / 4, "feet"),
  5586. weight: math.unit(120, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/tails/front.svg"
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(5 + 3 / 4, "feet"),
  5597. default: true
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(4, "feet"),
  5606. weight: math.unit(50, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/rainy/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(800, "feet"),
  5617. default: true
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(150, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/rainier/front.svg"
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Micro",
  5636. height: math.unit(2, "mm"),
  5637. default: true
  5638. }
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(8 + 4/12, "feet"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/andy-renard/front.svg",
  5649. extra: 1839/1726,
  5650. bottom: 134/1973
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(8 + 4/12, "feet"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/andy-renard/back.svg",
  5658. extra: 1838/1710,
  5659. bottom: 105/1943
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Tall",
  5666. height: math.unit(8 + 4/12, "feet")
  5667. },
  5668. {
  5669. name: "Mini Macro",
  5670. height: math.unit(15, "feet"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(100, "feet")
  5676. },
  5677. {
  5678. name: "Mega Macro",
  5679. height: math.unit(1000, "feet")
  5680. },
  5681. {
  5682. name: "Giga Macro",
  5683. height: math.unit(10, "miles")
  5684. },
  5685. {
  5686. name: "God Macro",
  5687. height: math.unit(1, "multiverse")
  5688. },
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(6, "feet"),
  5696. weight: math.unit(210, "lbs"),
  5697. name: "Front",
  5698. image: {
  5699. source: "./media/characters/cimmaron/front-sfw.svg",
  5700. extra: 701 / 676,
  5701. bottom: 0.046
  5702. }
  5703. },
  5704. back: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(210, "lbs"),
  5707. name: "Back",
  5708. image: {
  5709. source: "./media/characters/cimmaron/back-sfw.svg",
  5710. extra: 701 / 676,
  5711. bottom: 0.046
  5712. }
  5713. },
  5714. frontNsfw: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(210, "lbs"),
  5717. name: "Front (NSFW)",
  5718. image: {
  5719. source: "./media/characters/cimmaron/front-nsfw.svg",
  5720. extra: 701 / 676,
  5721. bottom: 0.046
  5722. }
  5723. },
  5724. backNsfw: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(210, "lbs"),
  5727. name: "Back (NSFW)",
  5728. image: {
  5729. source: "./media/characters/cimmaron/back-nsfw.svg",
  5730. extra: 701 / 676,
  5731. bottom: 0.046
  5732. }
  5733. },
  5734. dick: {
  5735. height: math.unit(1.714, "feet"),
  5736. name: "Dick",
  5737. image: {
  5738. source: "./media/characters/cimmaron/dick.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(6, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Macro Mayor",
  5750. height: math.unit(350, "meters")
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(200, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/akari/front.svg",
  5763. extra: 962 / 901,
  5764. bottom: 0.04
  5765. }
  5766. }
  5767. },
  5768. [
  5769. {
  5770. name: "Micro",
  5771. height: math.unit(5, "inches"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(7, "feet")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(140, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/cynosura/front.svg",
  5789. extra: 896 / 847
  5790. }
  5791. },
  5792. back: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(140, "lbs"),
  5795. name: "Back",
  5796. image: {
  5797. source: "./media/characters/cynosura/back.svg",
  5798. extra: 1365 / 1250
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(4, "inches")
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5.75, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Tall",
  5814. height: math.unit(10, "feet")
  5815. },
  5816. {
  5817. name: "Big",
  5818. height: math.unit(20, "feet")
  5819. },
  5820. {
  5821. name: "Macro",
  5822. height: math.unit(50, "feet")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(13 + 2/12, "feet"),
  5831. weight: math.unit(800, "kg"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/gin/front.svg",
  5835. extra: 1312/1191,
  5836. bottom: 45/1357
  5837. }
  5838. },
  5839. mouth: {
  5840. height: math.unit(2.39 * 1.8, "feet"),
  5841. name: "Mouth",
  5842. image: {
  5843. source: "./media/characters/gin/mouth.svg"
  5844. }
  5845. },
  5846. hand: {
  5847. height: math.unit(1.57 * 2.19, "feet"),
  5848. name: "Hand",
  5849. image: {
  5850. source: "./media/characters/gin/hand.svg"
  5851. }
  5852. },
  5853. foot: {
  5854. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5855. name: "Foot",
  5856. image: {
  5857. source: "./media/characters/gin/foot.svg"
  5858. }
  5859. },
  5860. sole: {
  5861. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5862. name: "Sole",
  5863. image: {
  5864. source: "./media/characters/gin/sole.svg"
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Very Small",
  5871. height: math.unit(13 + 2 / 12, "feet")
  5872. },
  5873. {
  5874. name: "Micro",
  5875. height: math.unit(600, "miles")
  5876. },
  5877. {
  5878. name: "Regular",
  5879. height: math.unit(20, "earths"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(2.2, "solarradii")
  5885. },
  5886. {
  5887. name: "Teramacro",
  5888. height: math.unit(1.2, "galaxies")
  5889. },
  5890. {
  5891. name: "Omegamacro",
  5892. height: math.unit(200, "universes")
  5893. },
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5898. {
  5899. front: {
  5900. height: math.unit(6 + 1 / 6, "feet"),
  5901. weight: math.unit(178, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/guy/front.svg"
  5905. }
  5906. }
  5907. },
  5908. [
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(6 + 1 / 6, "feet"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Large",
  5916. height: math.unit(25 + 7 / 12, "feet")
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(60 + 9 / 12, "feet")
  5921. },
  5922. {
  5923. name: "Macro+",
  5924. height: math.unit(246, "feet")
  5925. },
  5926. {
  5927. name: "Macro++",
  5928. height: math.unit(878, "feet")
  5929. }
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5934. {
  5935. front: {
  5936. height: math.unit(9, "feet"),
  5937. weight: math.unit(800, "lbs"),
  5938. name: "Front",
  5939. image: {
  5940. source: "./media/characters/tiberius/front.svg",
  5941. extra: 2295 / 2071
  5942. }
  5943. },
  5944. back: {
  5945. height: math.unit(9, "feet"),
  5946. weight: math.unit(800, "lbs"),
  5947. name: "Back",
  5948. image: {
  5949. source: "./media/characters/tiberius/back.svg",
  5950. extra: 2373 / 2160
  5951. }
  5952. },
  5953. },
  5954. [
  5955. {
  5956. name: "Normal",
  5957. height: math.unit(9, "feet"),
  5958. default: true
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5964. {
  5965. front: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(600, "lbs"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/surgo/front.svg",
  5971. extra: 3591 / 2227
  5972. }
  5973. },
  5974. back: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(600, "lbs"),
  5977. name: "Back",
  5978. image: {
  5979. source: "./media/characters/surgo/back.svg",
  5980. extra: 3557 / 2228
  5981. }
  5982. },
  5983. laying: {
  5984. height: math.unit(6 * 0.85, "feet"),
  5985. weight: math.unit(600, "lbs"),
  5986. name: "Laying",
  5987. image: {
  5988. source: "./media/characters/surgo/laying.svg"
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(6, "feet"),
  5996. default: true
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6002. {
  6003. side: {
  6004. height: math.unit(6, "feet"),
  6005. weight: math.unit(150, "lbs"),
  6006. name: "Side",
  6007. image: {
  6008. source: "./media/characters/cibus/side.svg",
  6009. extra: 800 / 400
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(6, "feet"),
  6017. default: true
  6018. }
  6019. ]
  6020. ))
  6021. characterMakers.push(() => makeCharacter(
  6022. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6023. {
  6024. front: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(240, "lbs"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/nibbles/front.svg"
  6030. }
  6031. },
  6032. side: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(240, "lbs"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/nibbles/side.svg"
  6038. }
  6039. },
  6040. },
  6041. [
  6042. {
  6043. name: "Normal",
  6044. height: math.unit(9, "feet"),
  6045. default: true
  6046. }
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6051. {
  6052. side: {
  6053. height: math.unit(5 + 1 / 6, "feet"),
  6054. weight: math.unit(130, "lbs"),
  6055. name: "Side",
  6056. image: {
  6057. source: "./media/characters/rikky/side.svg",
  6058. extra: 851 / 801
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5 + 1 / 6, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(152, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Megamacro",
  6074. height: math.unit(7, "miles")
  6075. }
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6080. {
  6081. side: {
  6082. height: math.unit(370, "cm"),
  6083. weight: math.unit(350, "lbs"),
  6084. name: "Side",
  6085. image: {
  6086. source: "./media/characters/malfressa/side.svg"
  6087. }
  6088. },
  6089. walking: {
  6090. height: math.unit(370, "cm"),
  6091. weight: math.unit(350, "lbs"),
  6092. name: "Walking",
  6093. image: {
  6094. source: "./media/characters/malfressa/walking.svg"
  6095. }
  6096. },
  6097. feral: {
  6098. height: math.unit(2500, "cm"),
  6099. weight: math.unit(100000, "lbs"),
  6100. name: "Feral",
  6101. image: {
  6102. source: "./media/characters/malfressa/feral.svg",
  6103. extra: 2108 / 837,
  6104. bottom: 0.02
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(370, "cm")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(300, "meters"),
  6116. default: true
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(60, "kg"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/jaro/front.svg"
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(60, "kg"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/jaro/back.svg"
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Micro",
  6143. height: math.unit(7, "inches")
  6144. },
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(5.5, "feet"),
  6148. default: true
  6149. },
  6150. {
  6151. name: "Minimacro",
  6152. height: math.unit(20, "feet")
  6153. },
  6154. {
  6155. name: "Macro",
  6156. height: math.unit(200, "meters")
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(195, "lb"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/rogue/front.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(90, "feet"),
  6176. default: true
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(5 + 8 / 12, "feet"),
  6185. weight: math.unit(140, "lb"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/piper/front.svg",
  6189. extra: 3948/3655,
  6190. bottom: 0/3948
  6191. }
  6192. },
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(2, "inches")
  6198. },
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(5 + 8 / 12, "feet")
  6202. },
  6203. {
  6204. name: "Macro",
  6205. height: math.unit(250, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Megamacro",
  6210. height: math.unit(7, "miles")
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(220, "lb"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/gemini/front.svg"
  6223. }
  6224. },
  6225. back: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(220, "lb"),
  6228. name: "Back",
  6229. image: {
  6230. source: "./media/characters/gemini/back.svg"
  6231. }
  6232. },
  6233. kneeling: {
  6234. height: math.unit(6 / 1.5, "feet"),
  6235. weight: math.unit(220, "lb"),
  6236. name: "Kneeling",
  6237. image: {
  6238. source: "./media/characters/gemini/kneeling.svg",
  6239. bottom: 0.02
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(300, "meters"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(6900, "meters")
  6252. },
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6257. {
  6258. anthro: {
  6259. height: math.unit(2.35, "meters"),
  6260. weight: math.unit(73, "kg"),
  6261. name: "Anthro",
  6262. image: {
  6263. source: "./media/characters/alicia/anthro.svg",
  6264. extra: 2571 / 2385,
  6265. bottom: 75 / 2648
  6266. }
  6267. },
  6268. paw: {
  6269. height: math.unit(1.32, "feet"),
  6270. name: "Paw",
  6271. image: {
  6272. source: "./media/characters/alicia/paw.svg"
  6273. }
  6274. },
  6275. feral: {
  6276. height: math.unit(1.69, "meters"),
  6277. weight: math.unit(73, "kg"),
  6278. name: "Feral",
  6279. image: {
  6280. source: "./media/characters/alicia/feral.svg",
  6281. extra: 2123 / 1715,
  6282. bottom: 222 / 2349
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(2.35, "meters")
  6290. },
  6291. {
  6292. name: "Macro",
  6293. height: math.unit(60, "meters"),
  6294. default: true
  6295. },
  6296. {
  6297. name: "Megamacro",
  6298. height: math.unit(10000, "kilometers")
  6299. },
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6304. {
  6305. front: {
  6306. height: math.unit(7, "feet"),
  6307. weight: math.unit(250, "lbs"),
  6308. name: "Front",
  6309. image: {
  6310. source: "./media/characters/archy/front.svg"
  6311. }
  6312. }
  6313. },
  6314. [
  6315. {
  6316. name: "Micro",
  6317. height: math.unit(1, "inch")
  6318. },
  6319. {
  6320. name: "Shorty",
  6321. height: math.unit(5, "feet")
  6322. },
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(7, "feet")
  6326. },
  6327. {
  6328. name: "Macro",
  6329. height: math.unit(600, "meters"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Megamacro",
  6334. height: math.unit(1, "mile")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(1.65, "meters"),
  6343. weight: math.unit(74, "kg"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/berri/front.svg",
  6347. extra: 857 / 837,
  6348. bottom: 18 / 877
  6349. }
  6350. },
  6351. bum: {
  6352. height: math.unit(1.46, "feet"),
  6353. name: "Bum",
  6354. image: {
  6355. source: "./media/characters/berri/bum.svg"
  6356. }
  6357. },
  6358. mouth: {
  6359. height: math.unit(0.44, "feet"),
  6360. name: "Mouth",
  6361. image: {
  6362. source: "./media/characters/berri/mouth.svg"
  6363. }
  6364. },
  6365. paw: {
  6366. height: math.unit(0.826, "feet"),
  6367. name: "Paw",
  6368. image: {
  6369. source: "./media/characters/berri/paw.svg"
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(1.65, "meters")
  6377. },
  6378. {
  6379. name: "Macro",
  6380. height: math.unit(60, "m"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Megamacro",
  6385. height: math.unit(9.213, "km")
  6386. },
  6387. {
  6388. name: "Planet Eater",
  6389. height: math.unit(489, "megameters")
  6390. },
  6391. {
  6392. name: "Teramacro",
  6393. height: math.unit(2471635000000, "meters")
  6394. },
  6395. {
  6396. name: "Examacro",
  6397. height: math.unit(8.0624e+26, "meters")
  6398. }
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(1.72, "meters"),
  6406. weight: math.unit(68, "kg"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/lexi/front.svg"
  6410. }
  6411. }
  6412. },
  6413. [
  6414. {
  6415. name: "Very Smol",
  6416. height: math.unit(10, "mm")
  6417. },
  6418. {
  6419. name: "Micro",
  6420. height: math.unit(6.8, "cm"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(1.72, "m")
  6426. }
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(1.69, "meters"),
  6434. weight: math.unit(68, "kg"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/martin/front.svg",
  6438. extra: 596 / 581
  6439. }
  6440. }
  6441. },
  6442. [
  6443. {
  6444. name: "Micro",
  6445. height: math.unit(6.85, "cm"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(1.69, "m")
  6451. }
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(1.69, "meters"),
  6459. weight: math.unit(68, "kg"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/juno/front.svg"
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(7, "cm")
  6470. },
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(1.89, "m")
  6474. },
  6475. {
  6476. name: "Macro",
  6477. height: math.unit(353, "meters"),
  6478. default: true
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(1.93, "meters"),
  6487. weight: math.unit(83, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/samantha/front.svg"
  6491. }
  6492. },
  6493. frontClothed: {
  6494. height: math.unit(1.93, "meters"),
  6495. weight: math.unit(83, "kg"),
  6496. name: "Front (Clothed)",
  6497. image: {
  6498. source: "./media/characters/samantha/front-clothed.svg"
  6499. }
  6500. },
  6501. back: {
  6502. height: math.unit(1.93, "meters"),
  6503. weight: math.unit(83, "kg"),
  6504. name: "Back",
  6505. image: {
  6506. source: "./media/characters/samantha/back.svg"
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(1.93, "m")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(74, "meters"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Macro+",
  6522. height: math.unit(223, "meters"),
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(8381, "meters"),
  6527. },
  6528. {
  6529. name: "Megamacro+",
  6530. height: math.unit(12000, "kilometers")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(1.92, "meters"),
  6539. weight: math.unit(80, "kg"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/dr-clay/front.svg"
  6543. }
  6544. },
  6545. frontClothed: {
  6546. height: math.unit(1.92, "meters"),
  6547. weight: math.unit(80, "kg"),
  6548. name: "Front (Clothed)",
  6549. image: {
  6550. source: "./media/characters/dr-clay/front-clothed.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(1.92, "m")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(214, "meters"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Macro+",
  6566. height: math.unit(12.237, "meters"),
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(557, "megameters"),
  6571. },
  6572. {
  6573. name: "Unimaginable",
  6574. height: math.unit(120e9, "lightyears")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(2, "meters"),
  6583. weight: math.unit(80, "kg"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Teramacro",
  6593. height: math.unit(500000, "lightyears"),
  6594. default: true
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6600. {
  6601. crux: {
  6602. height: math.unit(2, "meters"),
  6603. weight: math.unit(150, "kg"),
  6604. name: "Crux",
  6605. image: {
  6606. source: "./media/characters/vemus/crux.svg",
  6607. extra: 1074/936,
  6608. bottom: 23/1097
  6609. }
  6610. },
  6611. skunkTanuki: {
  6612. height: math.unit(2, "meters"),
  6613. weight: math.unit(150, "kg"),
  6614. name: "Skunk-Tanuki",
  6615. image: {
  6616. source: "./media/characters/vemus/skunk-tanuki.svg",
  6617. extra: 926/893,
  6618. bottom: 20/946
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(3.75, "meters"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Big",
  6630. height: math.unit(8, "meters")
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(100, "meters")
  6635. },
  6636. {
  6637. name: "Macro+",
  6638. height: math.unit(1500, "meters")
  6639. },
  6640. {
  6641. name: "Stellar",
  6642. height: math.unit(14e8, "meters")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(2, "meters"),
  6651. weight: math.unit(70, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/beherit/front.svg",
  6655. extra: 1408 / 1242
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(6, "feet")
  6663. },
  6664. {
  6665. name: "Lorg",
  6666. height: math.unit(25, "feet"),
  6667. default: true
  6668. },
  6669. {
  6670. name: "Lorger",
  6671. height: math.unit(75, "feet")
  6672. },
  6673. {
  6674. name: "Macro",
  6675. height: math.unit(200, "meters")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(2, "meters"),
  6684. weight: math.unit(150, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/everett/front.svg",
  6688. extra: 2038 / 1737,
  6689. bottom: 0.03
  6690. }
  6691. },
  6692. paw: {
  6693. height: math.unit(2 / 3.6, "meters"),
  6694. name: "Paw",
  6695. image: {
  6696. source: "./media/characters/everett/paw.svg"
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Normal",
  6703. height: math.unit(15, "feet"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Lorg",
  6708. height: math.unit(70, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Lorger",
  6713. height: math.unit(250, "feet")
  6714. },
  6715. {
  6716. name: "Macro",
  6717. height: math.unit(500, "meters")
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(2, "meters"),
  6726. weight: math.unit(86, "kg"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/rose/front.svg",
  6730. extra: 1785/1636,
  6731. bottom: 30/1815
  6732. }
  6733. },
  6734. frontSporty: {
  6735. height: math.unit(2, "meters"),
  6736. weight: math.unit(86, "kg"),
  6737. name: "Front (Sporty)",
  6738. image: {
  6739. source: "./media/characters/rose/front-sporty.svg",
  6740. extra: 350/335,
  6741. bottom: 10/360
  6742. }
  6743. },
  6744. frontAlt: {
  6745. height: math.unit(1.6, "meters"),
  6746. weight: math.unit(86, "kg"),
  6747. name: "Front (Alt)",
  6748. image: {
  6749. source: "./media/characters/rose/front-alt.svg",
  6750. extra: 299/283,
  6751. bottom: 3/302
  6752. }
  6753. },
  6754. plush: {
  6755. height: math.unit(2, "meters"),
  6756. weight: math.unit(86/3, "kg"),
  6757. name: "Plush",
  6758. image: {
  6759. source: "./media/characters/rose/plush.svg",
  6760. extra: 361/337,
  6761. bottom: 11/372
  6762. }
  6763. },
  6764. },
  6765. [
  6766. {
  6767. name: "True Micro",
  6768. height: math.unit(9, "cm")
  6769. },
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(16, "cm")
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(1.85, "meters"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Mini-Macro",
  6781. height: math.unit(5, "meters")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(15, "meters")
  6786. },
  6787. {
  6788. name: "True Macro",
  6789. height: math.unit(40, "meters")
  6790. },
  6791. {
  6792. name: "City Scale",
  6793. height: math.unit(1, "km")
  6794. },
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6799. {
  6800. front: {
  6801. height: math.unit(2, "meters"),
  6802. weight: math.unit(350, "lbs"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/regal/front.svg"
  6806. }
  6807. },
  6808. back: {
  6809. height: math.unit(2, "meters"),
  6810. weight: math.unit(350, "lbs"),
  6811. name: "Back",
  6812. image: {
  6813. source: "./media/characters/regal/back.svg"
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(350, "feet"),
  6821. default: true
  6822. }
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6827. {
  6828. front: {
  6829. height: math.unit(4 + 11 / 12, "feet"),
  6830. weight: math.unit(100, "lbs"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/opal/front.svg"
  6834. }
  6835. },
  6836. frontAlt: {
  6837. height: math.unit(4 + 11 / 12, "feet"),
  6838. weight: math.unit(100, "lbs"),
  6839. name: "Front (Alt)",
  6840. image: {
  6841. source: "./media/characters/opal/front-alt.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Small",
  6848. height: math.unit(4 + 11 / 12, "feet")
  6849. },
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(20, "feet"),
  6853. default: true
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(120, "feet")
  6858. },
  6859. {
  6860. name: "Megamacro",
  6861. height: math.unit(80, "miles")
  6862. },
  6863. {
  6864. name: "True Size",
  6865. height: math.unit(100000, "lightyears")
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(200, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/vector-wuff/front.svg"
  6878. }
  6879. }
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(2.8, "meters")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(450, "meters"),
  6889. default: true
  6890. },
  6891. {
  6892. name: "Megamacro",
  6893. height: math.unit(15, "kilometers")
  6894. }
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(256, "lbs"),
  6903. name: "Front",
  6904. image: {
  6905. source: "./media/characters/dannik/front.svg"
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(69.57, "meters"),
  6913. default: true
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(120, "lbs"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/azura-saharah/front.svg"
  6926. }
  6927. },
  6928. back: {
  6929. height: math.unit(6, "feet"),
  6930. weight: math.unit(120, "lbs"),
  6931. name: "Back",
  6932. image: {
  6933. source: "./media/characters/azura-saharah/back.svg"
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Macro",
  6940. height: math.unit(100, "feet"),
  6941. default: true
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6947. {
  6948. side: {
  6949. height: math.unit(5 + 4 / 12, "feet"),
  6950. weight: math.unit(163, "lbs"),
  6951. name: "Side",
  6952. image: {
  6953. source: "./media/characters/kennedy/side.svg"
  6954. }
  6955. }
  6956. },
  6957. [
  6958. {
  6959. name: "Standard Doggo",
  6960. height: math.unit(5 + 4 / 12, "feet")
  6961. },
  6962. {
  6963. name: "Big Doggo",
  6964. height: math.unit(25 + 3 / 12, "feet"),
  6965. default: true
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6971. {
  6972. front: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(90, "lbs"),
  6975. name: "Front",
  6976. image: {
  6977. source: "./media/characters/odi-lunar/front.svg"
  6978. }
  6979. }
  6980. },
  6981. [
  6982. {
  6983. name: "Micro",
  6984. height: math.unit(3, "inches"),
  6985. default: true
  6986. },
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(5.5, "feet")
  6990. }
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6995. {
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(220, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/mandake/back.svg"
  7002. }
  7003. }
  7004. },
  7005. [
  7006. {
  7007. name: "Normal",
  7008. height: math.unit(7, "feet"),
  7009. default: true
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(78, "feet")
  7014. },
  7015. {
  7016. name: "Macro+",
  7017. height: math.unit(300, "meters")
  7018. },
  7019. {
  7020. name: "Macro++",
  7021. height: math.unit(2400, "feet")
  7022. },
  7023. {
  7024. name: "Megamacro",
  7025. height: math.unit(5167, "meters")
  7026. },
  7027. {
  7028. name: "Gigamacro",
  7029. height: math.unit(41769, "miles")
  7030. },
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(120, "lbs"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/yozey/front.svg"
  7042. }
  7043. },
  7044. frontAlt: {
  7045. height: math.unit(6, "feet"),
  7046. weight: math.unit(120, "lbs"),
  7047. name: "Front (Alt)",
  7048. image: {
  7049. source: "./media/characters/yozey/front-alt.svg"
  7050. }
  7051. },
  7052. side: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(120, "lbs"),
  7055. name: "Side",
  7056. image: {
  7057. source: "./media/characters/yozey/side.svg"
  7058. }
  7059. },
  7060. },
  7061. [
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(3, "inches"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(6, "feet")
  7070. }
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(103, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/valeska-voss/front.svg"
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Mini-Sized Sub",
  7088. height: math.unit(3.1, "inches")
  7089. },
  7090. {
  7091. name: "Mid-Sized Sub",
  7092. height: math.unit(6.2, "inches")
  7093. },
  7094. {
  7095. name: "Full-Sized Sub",
  7096. height: math.unit(9.3, "inches")
  7097. },
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(5 + 2 / 12, "foot"),
  7101. default: true
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(160, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/gene-zeta/front.svg",
  7114. extra: 3006 / 2826,
  7115. bottom: 182 / 3188
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(6, "inches")
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(5 + 11 / 12, "foot"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(140, "feet")
  7132. },
  7133. {
  7134. name: "Supercharged",
  7135. height: math.unit(2500, "feet")
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(350, "lbs"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/razinox/front.svg",
  7148. extra: 1686 / 1548,
  7149. bottom: 28.2 / 1868
  7150. }
  7151. },
  7152. back: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(350, "lbs"),
  7155. name: "Back",
  7156. image: {
  7157. source: "./media/characters/razinox/back.svg",
  7158. extra: 1660 / 1590,
  7159. bottom: 15 / 1665
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(10 + 8 / 12, "foot")
  7167. },
  7168. {
  7169. name: "Minimacro",
  7170. height: math.unit(15, "foot")
  7171. },
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(60, "foot"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Megamacro",
  7179. height: math.unit(5, "miles")
  7180. },
  7181. {
  7182. name: "Gigamacro",
  7183. height: math.unit(6000, "miles")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(150, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/cobalt/front.svg"
  7196. }
  7197. }
  7198. },
  7199. [
  7200. {
  7201. name: "Normal",
  7202. height: math.unit(8 + 1 / 12, "foot")
  7203. },
  7204. {
  7205. name: "Macro",
  7206. height: math.unit(111, "foot"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Supracosmic",
  7211. height: math.unit(1e42, "feet")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(140, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/amanda/front.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Micro",
  7230. height: math.unit(5, "inches"),
  7231. default: true
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(2.75, "meters"),
  7240. weight: math.unit(1200, "lb"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/teal/front.svg",
  7244. extra: 2463 / 2320,
  7245. bottom: 166 / 2629
  7246. }
  7247. },
  7248. back: {
  7249. height: math.unit(2.75, "meters"),
  7250. weight: math.unit(1200, "lb"),
  7251. name: "Back",
  7252. image: {
  7253. source: "./media/characters/teal/back.svg",
  7254. extra: 2580 / 2489,
  7255. bottom: 151 / 2731
  7256. }
  7257. },
  7258. sitting: {
  7259. height: math.unit(1.9, "meters"),
  7260. weight: math.unit(1200, "lb"),
  7261. name: "Sitting",
  7262. image: {
  7263. source: "./media/characters/teal/sitting.svg",
  7264. extra: 623 / 590,
  7265. bottom: 121 / 744
  7266. }
  7267. },
  7268. standing: {
  7269. height: math.unit(2.75, "meters"),
  7270. weight: math.unit(1200, "lb"),
  7271. name: "Standing",
  7272. image: {
  7273. source: "./media/characters/teal/standing.svg",
  7274. extra: 923 / 893,
  7275. bottom: 60 / 983
  7276. }
  7277. },
  7278. stretching: {
  7279. height: math.unit(3.65, "meters"),
  7280. weight: math.unit(1200, "lb"),
  7281. name: "Stretching",
  7282. image: {
  7283. source: "./media/characters/teal/stretching.svg",
  7284. extra: 1276 / 1244,
  7285. bottom: 0 / 1276
  7286. }
  7287. },
  7288. legged: {
  7289. height: math.unit(1.3, "meters"),
  7290. weight: math.unit(100, "lb"),
  7291. name: "Legged",
  7292. image: {
  7293. source: "./media/characters/teal/legged.svg",
  7294. extra: 462 / 437,
  7295. bottom: 24 / 486
  7296. }
  7297. },
  7298. naga: {
  7299. height: math.unit(5.4, "meters"),
  7300. weight: math.unit(4000, "lb"),
  7301. name: "Naga",
  7302. image: {
  7303. source: "./media/characters/teal/naga.svg",
  7304. extra: 1902 / 1858,
  7305. bottom: 0 / 1902
  7306. }
  7307. },
  7308. hand: {
  7309. height: math.unit(0.52, "meters"),
  7310. name: "Hand",
  7311. image: {
  7312. source: "./media/characters/teal/hand.svg"
  7313. }
  7314. },
  7315. maw: {
  7316. height: math.unit(0.43, "meters"),
  7317. name: "Maw",
  7318. image: {
  7319. source: "./media/characters/teal/maw.svg"
  7320. }
  7321. },
  7322. slit: {
  7323. height: math.unit(0.25, "meters"),
  7324. name: "Slit",
  7325. image: {
  7326. source: "./media/characters/teal/slit.svg"
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(2.75, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(300, "feet")
  7339. },
  7340. {
  7341. name: "Macro+",
  7342. height: math.unit(2000, "feet")
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7348. {
  7349. frontCat: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(180, "lbs"),
  7352. name: "Front (Cat)",
  7353. image: {
  7354. source: "./media/characters/ravin-amulet/front-cat.svg"
  7355. }
  7356. },
  7357. frontCatAlt: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(180, "lbs"),
  7360. name: "Front (Alt, Cat)",
  7361. image: {
  7362. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7363. }
  7364. },
  7365. frontWerewolf: {
  7366. height: math.unit(6 * 1.2, "feet"),
  7367. weight: math.unit(225, "lbs"),
  7368. name: "Front (Werewolf)",
  7369. image: {
  7370. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7371. }
  7372. },
  7373. backWerewolf: {
  7374. height: math.unit(6 * 1.2, "feet"),
  7375. weight: math.unit(225, "lbs"),
  7376. name: "Back (Werewolf)",
  7377. image: {
  7378. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Nano",
  7385. height: math.unit(1, "micrometer")
  7386. },
  7387. {
  7388. name: "Micro",
  7389. height: math.unit(1, "inch")
  7390. },
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(6, "feet"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(60, "feet")
  7399. }
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(165, "lbs"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/fluoresce/front.svg"
  7411. }
  7412. }
  7413. },
  7414. [
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(6, "cm")
  7418. },
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(5 + 7 / 12, "feet"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(56, "feet")
  7427. },
  7428. {
  7429. name: "Megamacro",
  7430. height: math.unit(1.9, "miles")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(9 + 6 / 12, "feet"),
  7439. weight: math.unit(523, "lbs"),
  7440. name: "Side",
  7441. image: {
  7442. source: "./media/characters/aurora/side.svg"
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(9 + 6 / 12, "feet")
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(96, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro+",
  7458. height: math.unit(243, "feet")
  7459. },
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(194, "cm"),
  7467. weight: math.unit(90, "kg"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/ranek/front.svg"
  7471. }
  7472. },
  7473. side: {
  7474. height: math.unit(194, "cm"),
  7475. weight: math.unit(90, "kg"),
  7476. name: "Side",
  7477. image: {
  7478. source: "./media/characters/ranek/side.svg"
  7479. }
  7480. },
  7481. back: {
  7482. height: math.unit(194, "cm"),
  7483. weight: math.unit(90, "kg"),
  7484. name: "Back",
  7485. image: {
  7486. source: "./media/characters/ranek/back.svg"
  7487. }
  7488. },
  7489. feral: {
  7490. height: math.unit(30, "cm"),
  7491. weight: math.unit(1.6, "lbs"),
  7492. name: "Feral",
  7493. image: {
  7494. source: "./media/characters/ranek/feral.svg"
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(194, "cm"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(100, "meters")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(5 + 6 / 12, "feet"),
  7515. weight: math.unit(153, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/andrew-cooper/front.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Nano",
  7525. height: math.unit(1, "mm")
  7526. },
  7527. {
  7528. name: "Micro",
  7529. height: math.unit(2, "inches")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(5 + 6 / 12, "feet"),
  7534. default: true
  7535. }
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(6, "feet"),
  7543. weight: math.unit(180, "lbs"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/akane-sato/front.svg",
  7547. extra: 1219 / 1140
  7548. }
  7549. },
  7550. back: {
  7551. height: math.unit(6, "feet"),
  7552. weight: math.unit(180, "lbs"),
  7553. name: "Back",
  7554. image: {
  7555. source: "./media/characters/akane-sato/back.svg",
  7556. extra: 1219 / 1170
  7557. }
  7558. },
  7559. },
  7560. [
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(2.5, "meters")
  7564. },
  7565. {
  7566. name: "Macro",
  7567. height: math.unit(250, "meters"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Megamacro",
  7572. height: math.unit(25, "km")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(6, "feet"),
  7581. weight: math.unit(65, "kg"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/rook/front.svg",
  7585. extra: 960 / 950
  7586. }
  7587. }
  7588. },
  7589. [
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(8.8, "feet")
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(88, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Megamacro",
  7601. height: math.unit(8, "miles")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(12 + 2 / 12, "feet"),
  7610. weight: math.unit(808, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/prodigy/front.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(12 + 2 / 12, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(143, "feet")
  7626. },
  7627. {
  7628. name: "Macro+",
  7629. height: math.unit(400, "feet")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(6, "feet"),
  7638. weight: math.unit(225, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/daniel/front.svg"
  7642. }
  7643. },
  7644. leaning: {
  7645. height: math.unit(6, "feet"),
  7646. weight: math.unit(225, "lbs"),
  7647. name: "Leaning",
  7648. image: {
  7649. source: "./media/characters/daniel/leaning.svg"
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(1000, "feet"),
  7657. default: true
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(88, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/chiros/front.svg",
  7670. extra: 306 / 226
  7671. }
  7672. },
  7673. side: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(88, "lbs"),
  7676. name: "Side",
  7677. image: {
  7678. source: "./media/characters/chiros/side.svg",
  7679. extra: 306 / 226
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(6, "cm"),
  7687. default: true
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(100, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/selka/front.svg",
  7700. extra: 947 / 887
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(5, "cm"),
  7708. default: true
  7709. },
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(8 + 3 / 12, "feet"),
  7717. weight: math.unit(424, "lbs"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/verin/front.svg",
  7721. extra: 1845 / 1550
  7722. }
  7723. },
  7724. frontArmored: {
  7725. height: math.unit(8 + 3 / 12, "feet"),
  7726. weight: math.unit(424, "lbs"),
  7727. name: "Front (Armored)",
  7728. image: {
  7729. source: "./media/characters/verin/front-armor.svg",
  7730. extra: 1845 / 1550,
  7731. bottom: 0.01
  7732. }
  7733. },
  7734. back: {
  7735. height: math.unit(8 + 3 / 12, "feet"),
  7736. weight: math.unit(424, "lbs"),
  7737. name: "Back",
  7738. image: {
  7739. source: "./media/characters/verin/back.svg",
  7740. bottom: 0.1,
  7741. extra: 1
  7742. }
  7743. },
  7744. foot: {
  7745. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7746. name: "Foot",
  7747. image: {
  7748. source: "./media/characters/verin/foot.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(8 + 3 / 12, "feet")
  7756. },
  7757. {
  7758. name: "Minimacro",
  7759. height: math.unit(21, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(626, "feet")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(2.718, "meters"),
  7773. weight: math.unit(150, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/sovrim-terraquian/front.svg"
  7777. }
  7778. },
  7779. back: {
  7780. height: math.unit(2.718, "meters"),
  7781. weight: math.unit(150, "lbs"),
  7782. name: "Back",
  7783. image: {
  7784. source: "./media/characters/sovrim-terraquian/back.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Micro",
  7791. height: math.unit(2, "inches")
  7792. },
  7793. {
  7794. name: "Small",
  7795. height: math.unit(1, "meter")
  7796. },
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(Math.E, "meters"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(20, "meters")
  7805. },
  7806. {
  7807. name: "Macro+",
  7808. height: math.unit(400, "meters")
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(7, "feet"),
  7817. weight: math.unit(489, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/reece-silvermane/front.svg",
  7821. bottom: 0.02,
  7822. extra: 1
  7823. }
  7824. },
  7825. },
  7826. [
  7827. {
  7828. name: "Macro",
  7829. height: math.unit(1.5, "miles"),
  7830. default: true
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(78, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/kane/front.svg",
  7843. extra: 978 / 899
  7844. }
  7845. },
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(2.1, "m"),
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(1, "km"),
  7855. default: true
  7856. },
  7857. ]
  7858. ))
  7859. characterMakers.push(() => makeCharacter(
  7860. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7861. {
  7862. front: {
  7863. height: math.unit(6, "feet"),
  7864. weight: math.unit(200, "kg"),
  7865. name: "Front",
  7866. image: {
  7867. source: "./media/characters/tegon/front.svg",
  7868. bottom: 0.01,
  7869. extra: 1
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Micro",
  7876. height: math.unit(1, "inch")
  7877. },
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(6 + 3 / 12, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Macro",
  7885. height: math.unit(300, "feet")
  7886. },
  7887. {
  7888. name: "Megamacro",
  7889. height: math.unit(69, "miles")
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7895. {
  7896. side: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(2304, "lbs"),
  7899. name: "Side",
  7900. image: {
  7901. source: "./media/characters/arcturax/side.svg",
  7902. extra: 790 / 376,
  7903. bottom: 0.01
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Micro",
  7910. height: math.unit(2, "inch")
  7911. },
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(6, "feet")
  7915. },
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(39, "feet"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(7, "miles")
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(50, "lbs"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/sentri/front.svg",
  7936. extra: 1750 / 1570,
  7937. bottom: 0.025
  7938. }
  7939. },
  7940. frontAlt: {
  7941. height: math.unit(6, "feet"),
  7942. weight: math.unit(50, "lbs"),
  7943. name: "Front (Alt)",
  7944. image: {
  7945. source: "./media/characters/sentri/front-alt.svg",
  7946. extra: 1750 / 1570,
  7947. bottom: 0.025
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Normal",
  7954. height: math.unit(15, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(2500, "feet")
  7960. }
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(5 + 8 / 12, "feet"),
  7968. weight: math.unit(130, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/corvin/front.svg",
  7972. extra: 1803 / 1629
  7973. }
  7974. },
  7975. frontShirt: {
  7976. height: math.unit(5 + 8 / 12, "feet"),
  7977. weight: math.unit(130, "lbs"),
  7978. name: "Front (Shirt)",
  7979. image: {
  7980. source: "./media/characters/corvin/front-shirt.svg",
  7981. extra: 1803 / 1629
  7982. }
  7983. },
  7984. frontPoncho: {
  7985. height: math.unit(5 + 8 / 12, "feet"),
  7986. weight: math.unit(130, "lbs"),
  7987. name: "Front (Poncho)",
  7988. image: {
  7989. source: "./media/characters/corvin/front-poncho.svg",
  7990. extra: 1803 / 1629
  7991. }
  7992. },
  7993. side: {
  7994. height: math.unit(5 + 8 / 12, "feet"),
  7995. weight: math.unit(130, "lbs"),
  7996. name: "Side",
  7997. image: {
  7998. source: "./media/characters/corvin/side.svg",
  7999. extra: 1012 / 945
  8000. }
  8001. },
  8002. back: {
  8003. height: math.unit(5 + 8 / 12, "feet"),
  8004. weight: math.unit(130, "lbs"),
  8005. name: "Back",
  8006. image: {
  8007. source: "./media/characters/corvin/back.svg",
  8008. extra: 1803 / 1629
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(3, "inches")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(5 + 8 / 12, "feet")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(300, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(500, "miles")
  8029. }
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(135, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/q/front.svg",
  8041. extra: 854 / 752,
  8042. bottom: 0.005
  8043. }
  8044. },
  8045. back: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(130, "lbs"),
  8048. name: "Back",
  8049. image: {
  8050. source: "./media/characters/q/back.svg",
  8051. extra: 854 / 752
  8052. }
  8053. },
  8054. },
  8055. [
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(90, "feet"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "Extra Macro",
  8063. height: math.unit(300, "feet"),
  8064. },
  8065. {
  8066. name: "BIG WALF",
  8067. height: math.unit(750, "feet"),
  8068. },
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(6, "feet"),
  8076. weight: math.unit(150, "lbs"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/carley/front.svg",
  8080. extra: 3927 / 3540,
  8081. bottom: 29.2 / 735
  8082. }
  8083. }
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(6 + 3 / 12, "feet")
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(185, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Megamacro",
  8097. height: math.unit(8, "miles"),
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(3, "feet"),
  8106. weight: math.unit(28, "lbs"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/citrine/front.svg"
  8110. }
  8111. }
  8112. },
  8113. [
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(3, "feet"),
  8117. default: true
  8118. }
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8123. {
  8124. front: {
  8125. height: math.unit(14, "feet"),
  8126. weight: math.unit(1450, "kg"),
  8127. capacity: math.unit(15, "people"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/aura-starwind/front.svg",
  8131. extra: 1455 / 1335
  8132. }
  8133. },
  8134. side: {
  8135. height: math.unit(14, "feet"),
  8136. weight: math.unit(1450, "kg"),
  8137. capacity: math.unit(15, "people"),
  8138. name: "Side",
  8139. image: {
  8140. source: "./media/characters/aura-starwind/side.svg",
  8141. extra: 1654 / 1497
  8142. }
  8143. },
  8144. taur: {
  8145. height: math.unit(18, "feet"),
  8146. weight: math.unit(5500, "kg"),
  8147. capacity: math.unit(50, "people"),
  8148. name: "Taur",
  8149. image: {
  8150. source: "./media/characters/aura-starwind/taur.svg",
  8151. extra: 1760 / 1650
  8152. }
  8153. },
  8154. feral: {
  8155. height: math.unit(46, "feet"),
  8156. weight: math.unit(25000, "kg"),
  8157. capacity: math.unit(120, "people"),
  8158. name: "Feral",
  8159. image: {
  8160. source: "./media/characters/aura-starwind/feral.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(14, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(50, "meters")
  8173. },
  8174. {
  8175. name: "Megamacro",
  8176. height: math.unit(5000, "meters")
  8177. },
  8178. {
  8179. name: "Gigamacro",
  8180. height: math.unit(100000, "kilometers")
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(2 + 7 / 12, "feet"),
  8189. weight: math.unit(32, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/rivet/front.svg",
  8193. extra: 1716 / 1658,
  8194. bottom: 0.03
  8195. }
  8196. },
  8197. foot: {
  8198. height: math.unit(0.551, "feet"),
  8199. name: "Rivet's Foot",
  8200. image: {
  8201. source: "./media/characters/rivet/foot.svg"
  8202. },
  8203. rename: true
  8204. }
  8205. },
  8206. [
  8207. {
  8208. name: "Micro",
  8209. height: math.unit(1.5, "inches"),
  8210. },
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(2 + 7 / 12, "feet"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(85, "feet")
  8219. },
  8220. {
  8221. name: "Megamacro",
  8222. height: math.unit(2.2, "km")
  8223. }
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(5 + 9 / 12, "feet"),
  8231. weight: math.unit(150, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/coffee/front.svg",
  8235. extra: 3666 / 3032,
  8236. bottom: 0.04
  8237. }
  8238. },
  8239. foot: {
  8240. height: math.unit(1.29, "feet"),
  8241. name: "Foot",
  8242. image: {
  8243. source: "./media/characters/coffee/foot.svg"
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Micro",
  8250. height: math.unit(2, "inches"),
  8251. },
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(5 + 9 / 12, "feet"),
  8255. default: true
  8256. },
  8257. {
  8258. name: "Macro",
  8259. height: math.unit(800, "feet")
  8260. },
  8261. {
  8262. name: "Megamacro",
  8263. height: math.unit(25, "miles")
  8264. }
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(200, "lbs"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/chari-gal/front.svg",
  8276. extra: 1568 / 1385,
  8277. bottom: 0.047
  8278. }
  8279. },
  8280. gigantamax: {
  8281. height: math.unit(6 * 16, "feet"),
  8282. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8283. name: "Gigantamax",
  8284. image: {
  8285. source: "./media/characters/chari-gal/gigantamax.svg",
  8286. extra: 1124 / 888,
  8287. bottom: 0.03
  8288. }
  8289. },
  8290. },
  8291. [
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(5 + 7 / 12, "feet")
  8295. },
  8296. {
  8297. name: "Macro",
  8298. height: math.unit(200, "feet"),
  8299. default: true
  8300. }
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(150, "lbs"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/nova/front.svg",
  8312. extra: 5000 / 4722,
  8313. bottom: 0.02
  8314. }
  8315. }
  8316. },
  8317. [
  8318. {
  8319. name: "Micro-",
  8320. height: math.unit(0.8, "inches")
  8321. },
  8322. {
  8323. name: "Micro",
  8324. height: math.unit(2, "inches"),
  8325. default: true
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(3 + 1 / 12, "feet"),
  8334. weight: math.unit(21.7, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/argent/front.svg",
  8338. extra: 1471 / 1331,
  8339. bottom: 100.8 / 1575.5
  8340. }
  8341. }
  8342. },
  8343. [
  8344. {
  8345. name: "Micro",
  8346. height: math.unit(2, "inches")
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(3 + 1 / 12, "feet"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(120, "feet")
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8361. {
  8362. lamp: {
  8363. height: math.unit(7 * 1559 / 989, "feet"),
  8364. name: "Magic Lamp",
  8365. image: {
  8366. source: "./media/characters/mira-al-cul/lamp.svg",
  8367. extra: 1617 / 1559
  8368. }
  8369. },
  8370. front: {
  8371. height: math.unit(7, "feet"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/mira-al-cul/front.svg",
  8375. extra: 1044 / 990
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Heavily Restricted",
  8382. height: math.unit(7 * 1559 / 989, "feet")
  8383. },
  8384. {
  8385. name: "Freshly Freed",
  8386. height: math.unit(50 * 1559 / 989, "feet")
  8387. },
  8388. {
  8389. name: "World Encompassing",
  8390. height: math.unit(10000 * 1559 / 989, "miles")
  8391. },
  8392. {
  8393. name: "Galactic",
  8394. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8395. },
  8396. {
  8397. name: "Palmed Universe",
  8398. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Multiversal Matriarch",
  8403. height: math.unit(8.87e10, "yottameters")
  8404. },
  8405. {
  8406. name: "Void Mother",
  8407. height: math.unit(3.14e110, "yottaparsecs")
  8408. },
  8409. {
  8410. name: "Toying with Transcendence",
  8411. height: math.unit(1e307, "meters")
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8417. {
  8418. front: {
  8419. height: math.unit(17 + 1 / 12, "feet"),
  8420. weight: math.unit(476.2 * 5, "lbs"),
  8421. name: "Front",
  8422. image: {
  8423. source: "./media/characters/kuro-shi-uchū/front.svg",
  8424. extra: 2329 / 1835,
  8425. bottom: 0.02
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(2, "inches")
  8433. },
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(12, "meters")
  8437. },
  8438. {
  8439. name: "Planetary",
  8440. height: math.unit(0.00929, "AU"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Universal",
  8445. height: math.unit(20, "gigaparsecs")
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(5 + 2 / 12, "feet"),
  8454. weight: math.unit(120, "lbs"),
  8455. name: "Front",
  8456. image: {
  8457. source: "./media/characters/katherine/front.svg",
  8458. extra: 2075 / 1969
  8459. }
  8460. },
  8461. dress: {
  8462. height: math.unit(5 + 2 / 12, "feet"),
  8463. weight: math.unit(120, "lbs"),
  8464. name: "Dress",
  8465. image: {
  8466. source: "./media/characters/katherine/dress.svg",
  8467. extra: 2258 / 2064
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(1, "inches"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Normal",
  8479. height: math.unit(5 + 2 / 12, "feet")
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(100, "meters")
  8484. },
  8485. {
  8486. name: "Megamacro",
  8487. height: math.unit(80, "miles")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(7 + 8 / 12, "feet"),
  8496. weight: math.unit(250, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/yevis/front.svg",
  8500. extra: 1938 / 1755
  8501. }
  8502. }
  8503. },
  8504. [
  8505. {
  8506. name: "Mortal",
  8507. height: math.unit(7 + 8 / 12, "feet")
  8508. },
  8509. {
  8510. name: "Battle",
  8511. height: math.unit(25 + 11 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Wrath",
  8515. height: math.unit(1654 + 11 / 12, "feet")
  8516. },
  8517. {
  8518. name: "Planet Destroyer",
  8519. height: math.unit(12000, "miles")
  8520. },
  8521. {
  8522. name: "Galaxy Conqueror",
  8523. height: math.unit(1.45, "zettameters"),
  8524. default: true
  8525. },
  8526. {
  8527. name: "Universal War",
  8528. height: math.unit(184, "gigaparsecs")
  8529. },
  8530. {
  8531. name: "Eternity War",
  8532. height: math.unit(1.98e55, "yottaparsecs")
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(5 + 8 / 12, "feet"),
  8541. weight: math.unit(63, "kg"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/xavier/front.svg",
  8545. extra: 944 / 883
  8546. }
  8547. },
  8548. frontStretch: {
  8549. height: math.unit(5 + 8 / 12, "feet"),
  8550. weight: math.unit(63, "kg"),
  8551. name: "Stretching",
  8552. image: {
  8553. source: "./media/characters/xavier/front-stretch.svg",
  8554. extra: 962 / 820
  8555. }
  8556. },
  8557. },
  8558. [
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(5 + 8 / 12, "feet")
  8562. },
  8563. {
  8564. name: "Macro",
  8565. height: math.unit(100, "meters"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "McLargeHuge",
  8570. height: math.unit(10, "miles")
  8571. },
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8576. {
  8577. front: {
  8578. height: math.unit(5 + 5 / 12, "feet"),
  8579. weight: math.unit(150, "lb"),
  8580. name: "Front",
  8581. image: {
  8582. source: "./media/characters/joshii/front.svg",
  8583. extra: 765 / 653,
  8584. bottom: 51 / 816
  8585. }
  8586. },
  8587. foot: {
  8588. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8589. name: "Foot",
  8590. image: {
  8591. source: "./media/characters/joshii/foot.svg"
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(2, "inches"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 5 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(785, "feet")
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(24.5, "miles")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(150, "lb"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/goddess-elizabeth/front.svg",
  8624. extra: 1800 / 1525,
  8625. bottom: 0.005
  8626. }
  8627. },
  8628. foot: {
  8629. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8630. name: "Foot",
  8631. image: {
  8632. source: "./media/characters/goddess-elizabeth/foot.svg"
  8633. }
  8634. },
  8635. mouth: {
  8636. height: math.unit(6, "feet"),
  8637. name: "Mouth",
  8638. image: {
  8639. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Micro",
  8646. height: math.unit(12, "feet")
  8647. },
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(80, "miles"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(15000, "parsecs")
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(5 + 9 / 12, "feet"),
  8664. weight: math.unit(144, "lb"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/kara/front.svg"
  8668. }
  8669. },
  8670. feet: {
  8671. height: math.unit(6 / 6.765, "feet"),
  8672. name: "Kara's Feet",
  8673. rename: true,
  8674. image: {
  8675. source: "./media/characters/kara/feet.svg"
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 9 / 12, "feet")
  8683. },
  8684. {
  8685. name: "Macro",
  8686. height: math.unit(174, "feet"),
  8687. default: true
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(18, "feet"),
  8696. weight: math.unit(4050, "lb"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/tyrone/front.svg",
  8700. extra: 2405 / 2270,
  8701. bottom: 182 / 2587
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(18, "feet"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(300, "feet")
  8714. },
  8715. {
  8716. name: "Megamacro",
  8717. height: math.unit(15, "km")
  8718. },
  8719. {
  8720. name: "Gigamacro",
  8721. height: math.unit(500, "km")
  8722. },
  8723. {
  8724. name: "Teramacro",
  8725. height: math.unit(0.5, "gigameters")
  8726. },
  8727. {
  8728. name: "Omnimacro",
  8729. height: math.unit(1e252, "yottauniverse")
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(7 + 8 / 12, "feet"),
  8738. weight: math.unit(120, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/danny/front.svg",
  8742. extra: 1490 / 1350
  8743. }
  8744. },
  8745. back: {
  8746. height: math.unit(7 + 8 / 12, "feet"),
  8747. weight: math.unit(120, "lb"),
  8748. name: "Back",
  8749. image: {
  8750. source: "./media/characters/danny/back.svg",
  8751. extra: 1490 / 1350
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(7 + 8 / 12, "feet"),
  8759. default: true
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(3.5, "inches"),
  8768. weight: math.unit(19, "grams"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/mallow/front.svg",
  8772. extra: 471 / 431
  8773. }
  8774. },
  8775. back: {
  8776. height: math.unit(3.5, "inches"),
  8777. weight: math.unit(19, "grams"),
  8778. name: "Back",
  8779. image: {
  8780. source: "./media/characters/mallow/back.svg",
  8781. extra: 471 / 431
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(3.5, "inches"),
  8789. default: true
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(9, "feet"),
  8798. weight: math.unit(230, "kg"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/starry-aqua/front.svg"
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(9, "feet"),
  8806. weight: math.unit(230, "kg"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/starry-aqua/back.svg"
  8810. }
  8811. },
  8812. hand: {
  8813. height: math.unit(9 * 0.1168, "feet"),
  8814. name: "Hand",
  8815. image: {
  8816. source: "./media/characters/starry-aqua/hand.svg"
  8817. }
  8818. },
  8819. foot: {
  8820. height: math.unit(9 * 0.18, "feet"),
  8821. name: "Foot",
  8822. image: {
  8823. source: "./media/characters/starry-aqua/foot.svg"
  8824. }
  8825. }
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(3, "inches")
  8831. },
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(9, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(300, "feet"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "Megamacro",
  8843. height: math.unit(3200, "feet")
  8844. }
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(230, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/luka/front.svg",
  8856. extra: 1,
  8857. bottom: 0.025
  8858. }
  8859. },
  8860. },
  8861. [
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(12 + 8 / 12, "feet"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Minimacro",
  8869. height: math.unit(20, "feet")
  8870. },
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(250, "feet")
  8874. },
  8875. {
  8876. name: "Megamacro",
  8877. height: math.unit(5, "miles")
  8878. },
  8879. {
  8880. name: "Gigamacro",
  8881. height: math.unit(8000, "miles")
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(150, "lb"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/natalie-nightring/front.svg",
  8894. extra: 1,
  8895. bottom: 0.06
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Uh Oh",
  8902. height: math.unit(0.1, "mm")
  8903. },
  8904. {
  8905. name: "Small",
  8906. height: math.unit(3, "inches")
  8907. },
  8908. {
  8909. name: "Human Scale",
  8910. height: math.unit(6, "feet")
  8911. },
  8912. {
  8913. name: "Librarian",
  8914. height: math.unit(50, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Immense",
  8919. height: math.unit(200, "miles")
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(180, "lbs"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/danni-rosie/front.svg",
  8932. extra: 1260 / 1128,
  8933. bottom: 0.022
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Micro",
  8940. height: math.unit(2, "inches"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(5 + 9 / 12, "feet"),
  8950. weight: math.unit(220, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/samantha-kruse/front.svg",
  8954. extra: (985 / 935),
  8955. bottom: 0.03
  8956. }
  8957. },
  8958. frontUndressed: {
  8959. height: math.unit(5 + 9 / 12, "feet"),
  8960. weight: math.unit(220, "lb"),
  8961. name: "Front (Undressed)",
  8962. image: {
  8963. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8964. extra: (973 / 923),
  8965. bottom: 0.025
  8966. }
  8967. },
  8968. fat: {
  8969. height: math.unit(5 + 9 / 12, "feet"),
  8970. weight: math.unit(900, "lb"),
  8971. name: "Front (Fat)",
  8972. image: {
  8973. source: "./media/characters/samantha-kruse/fat.svg",
  8974. extra: 2688 / 2561
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(5 + 9 / 12, "feet"),
  8982. default: true
  8983. }
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8988. {
  8989. back: {
  8990. height: math.unit(5 + 4 / 12, "feet"),
  8991. weight: math.unit(4963, "lb"),
  8992. name: "Back",
  8993. image: {
  8994. source: "./media/characters/amelia-rosie/back.svg",
  8995. extra: 1113 / 963,
  8996. bottom: 0.01
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Level 0",
  9003. height: math.unit(5 + 4 / 12, "feet")
  9004. },
  9005. {
  9006. name: "Level 1",
  9007. height: math.unit(164597, "feet"),
  9008. default: true
  9009. },
  9010. {
  9011. name: "Level 2",
  9012. height: math.unit(956243, "miles")
  9013. },
  9014. {
  9015. name: "Level 3",
  9016. height: math.unit(29421709423, "miles")
  9017. },
  9018. {
  9019. name: "Level 4",
  9020. height: math.unit(154, "lightyears")
  9021. },
  9022. {
  9023. name: "Level 5",
  9024. height: math.unit(4738272, "lightyears")
  9025. },
  9026. {
  9027. name: "Level 6",
  9028. height: math.unit(145787152896, "lightyears")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(5 + 11 / 12, "feet"),
  9037. weight: math.unit(65, "kg"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/rook-kitara/front.svg",
  9041. extra: 1347 / 1274,
  9042. bottom: 0.005
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Totally Unfair",
  9049. height: math.unit(1.8, "mm")
  9050. },
  9051. {
  9052. name: "Lap Rookie",
  9053. height: math.unit(1.4, "feet")
  9054. },
  9055. {
  9056. name: "Normal",
  9057. height: math.unit(5 + 11 / 12, "feet"),
  9058. default: true
  9059. },
  9060. {
  9061. name: "How Did This Happen",
  9062. height: math.unit(80, "miles")
  9063. }
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(7, "feet"),
  9071. weight: math.unit(300, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/pisces/front.svg",
  9075. extra: 2255 / 2115,
  9076. bottom: 0.03
  9077. }
  9078. },
  9079. back: {
  9080. height: math.unit(7, "feet"),
  9081. weight: math.unit(300, "lb"),
  9082. name: "Back",
  9083. image: {
  9084. source: "./media/characters/pisces/back.svg",
  9085. extra: 2146 / 2055,
  9086. bottom: 0.04
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Normal",
  9093. height: math.unit(7, "feet"),
  9094. default: true
  9095. },
  9096. {
  9097. name: "Swimming Pool",
  9098. height: math.unit(12.2, "meters")
  9099. },
  9100. {
  9101. name: "Olympic Swimming Pool",
  9102. height: math.unit(56.3, "meters")
  9103. },
  9104. {
  9105. name: "Lake Superior",
  9106. height: math.unit(93900, "meters")
  9107. },
  9108. {
  9109. name: "Mediterranean Sea",
  9110. height: math.unit(644457, "meters")
  9111. },
  9112. {
  9113. name: "World's Oceans",
  9114. height: math.unit(4567491, "meters")
  9115. },
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9120. {
  9121. front: {
  9122. height: math.unit(2.3, "meters"),
  9123. weight: math.unit(120, "kg"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/zelas/front.svg"
  9127. }
  9128. },
  9129. side: {
  9130. height: math.unit(2.3, "meters"),
  9131. weight: math.unit(120, "kg"),
  9132. name: "Side",
  9133. image: {
  9134. source: "./media/characters/zelas/side.svg"
  9135. }
  9136. },
  9137. back: {
  9138. height: math.unit(2.3, "meters"),
  9139. weight: math.unit(120, "kg"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/zelas/back.svg"
  9143. }
  9144. },
  9145. foot: {
  9146. height: math.unit(1.116, "feet"),
  9147. name: "Foot",
  9148. image: {
  9149. source: "./media/characters/zelas/foot.svg"
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(2.3, "meters")
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(30, "meters"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(1, "inch"),
  9170. weight: math.unit(0.21, "grams"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/talbot/front.svg",
  9174. extra: 594 / 544
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Micro",
  9181. height: math.unit(1, "inch"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9188. {
  9189. front: {
  9190. height: math.unit(3 + 3 / 12, "feet"),
  9191. weight: math.unit(51.8, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/fliss/front.svg",
  9195. extra: 840 / 640
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Teeny Tiny",
  9202. height: math.unit(1, "mm")
  9203. },
  9204. {
  9205. name: "Small",
  9206. height: math.unit(1, "inch"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Standard Sylveon",
  9211. height: math.unit(3 + 3 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Large Nuisance",
  9215. height: math.unit(33, "feet")
  9216. },
  9217. {
  9218. name: "City Filler",
  9219. height: math.unit(3000, "feet")
  9220. },
  9221. {
  9222. name: "New Horizon",
  9223. height: math.unit(6000, "miles")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(5, "cm"),
  9232. weight: math.unit(1.94, "g"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/fleta/front.svg",
  9236. extra: 835 / 803
  9237. }
  9238. },
  9239. back: {
  9240. height: math.unit(5, "cm"),
  9241. weight: math.unit(1.94, "g"),
  9242. name: "Back",
  9243. image: {
  9244. source: "./media/characters/fleta/back.svg",
  9245. extra: 835 / 803
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(5, "cm"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(225, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/dominic/front.svg",
  9266. extra: 1770 / 1620,
  9267. bottom: 0.025
  9268. }
  9269. },
  9270. back: {
  9271. height: math.unit(6, "feet"),
  9272. weight: math.unit(225, "lb"),
  9273. name: "Back",
  9274. image: {
  9275. source: "./media/characters/dominic/back.svg",
  9276. extra: 1745 / 1620,
  9277. bottom: 0.065
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Nano",
  9284. height: math.unit(0.1, "mm")
  9285. },
  9286. {
  9287. name: "Micro-",
  9288. height: math.unit(1, "mm")
  9289. },
  9290. {
  9291. name: "Micro",
  9292. height: math.unit(4, "inches")
  9293. },
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(6 + 4 / 12, "feet"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(115, "feet")
  9302. },
  9303. {
  9304. name: "Macro+",
  9305. height: math.unit(955, "feet")
  9306. },
  9307. {
  9308. name: "Megamacro",
  9309. height: math.unit(8990, "feet")
  9310. },
  9311. {
  9312. name: "Gigmacro",
  9313. height: math.unit(9310, "miles")
  9314. },
  9315. {
  9316. name: "Teramacro",
  9317. height: math.unit(1567005010, "miles")
  9318. },
  9319. {
  9320. name: "Examacro",
  9321. height: math.unit(1425, "parsecs")
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(400, "feet"),
  9330. weight: math.unit(44444444, "lb"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/major-colonel/front.svg"
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(400, "feet"),
  9338. weight: math.unit(44444444, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/major-colonel/back.svg"
  9342. }
  9343. },
  9344. },
  9345. [
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(400, "feet"),
  9349. default: true
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9355. {
  9356. catFront: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(120, "lb"),
  9359. name: "Front (Cat Side)",
  9360. image: {
  9361. source: "./media/characters/axel-lycan/cat-front.svg",
  9362. extra: 430 / 402,
  9363. bottom: 43 / 472.35
  9364. }
  9365. },
  9366. catBack: {
  9367. height: math.unit(6, "feet"),
  9368. weight: math.unit(120, "lb"),
  9369. name: "Back (Cat Side)",
  9370. image: {
  9371. source: "./media/characters/axel-lycan/cat-back.svg",
  9372. extra: 447 / 419,
  9373. bottom: 23.3 / 469
  9374. }
  9375. },
  9376. wolfFront: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(120, "lb"),
  9379. name: "Front (Wolf Side)",
  9380. image: {
  9381. source: "./media/characters/axel-lycan/wolf-front.svg",
  9382. extra: 485 / 456,
  9383. bottom: 19 / 504
  9384. }
  9385. },
  9386. wolfBack: {
  9387. height: math.unit(6, "feet"),
  9388. weight: math.unit(120, "lb"),
  9389. name: "Back (Wolf Side)",
  9390. image: {
  9391. source: "./media/characters/axel-lycan/wolf-back.svg",
  9392. extra: 475 / 438,
  9393. bottom: 39.2 / 514
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(1, "km"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(5 + 9 / 12, "feet"),
  9410. weight: math.unit(175, "lb"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/vanrel-hyena/front.svg",
  9414. extra: 1086 / 1010,
  9415. bottom: 0.04
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(5 + 9 / 12, "feet"),
  9423. default: true
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(6, "feet"),
  9432. weight: math.unit(103, "lb"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/abbott-absol/front.svg",
  9436. extra: 2010 / 1842
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Megamicro",
  9443. height: math.unit(0.1, "mm")
  9444. },
  9445. {
  9446. name: "Micro",
  9447. height: math.unit(1, "inch")
  9448. },
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(6, "feet"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(264, "lb"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/hector/front.svg",
  9465. extra: 2280 / 2130,
  9466. bottom: 0.07
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(12.25, "foot"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Macro",
  9478. height: math.unit(160, "feet")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/sal/front.svg",
  9491. extra: 1846 / 1699,
  9492. bottom: 0.04
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(10, "miles"),
  9500. default: true
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9506. {
  9507. front: {
  9508. height: math.unit(3, "meters"),
  9509. weight: math.unit(450, "kg"),
  9510. name: "front",
  9511. image: {
  9512. source: "./media/characters/ranger/front.svg",
  9513. extra: 2401 / 2243,
  9514. bottom: 0.05
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(3, "meters"),
  9522. default: true
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(14, "feet"),
  9531. weight: math.unit(800, "kg"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/theresa/front.svg",
  9535. extra: 3575 / 3346,
  9536. bottom: 0.03
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(14, "feet"),
  9544. default: true
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(3, "kg"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/ine/front.svg",
  9557. extra: 678 / 539,
  9558. bottom: 0.023
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(2.265, "feet"),
  9566. default: true
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(5, "feet"),
  9575. weight: math.unit(30, "kg"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/vial/front.svg",
  9579. extra: 1365 / 1277,
  9580. bottom: 0.04
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(5, "feet"),
  9588. default: true
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9594. {
  9595. side: {
  9596. height: math.unit(3.4, "meters"),
  9597. weight: math.unit(1000, "lb"),
  9598. name: "Side",
  9599. image: {
  9600. source: "./media/characters/rovoska/side.svg",
  9601. extra: 4403 / 1515
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(3.4, "meters"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(8, "feet"),
  9618. weight: math.unit(315, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/gunner-rotthbauer/front.svg"
  9622. }
  9623. },
  9624. back: {
  9625. height: math.unit(8, "feet"),
  9626. weight: math.unit(315, "lb"),
  9627. name: "Back",
  9628. image: {
  9629. source: "./media/characters/gunner-rotthbauer/back.svg"
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Micro",
  9636. height: math.unit(3.5, "inches")
  9637. },
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(8, "feet"),
  9641. default: true
  9642. },
  9643. {
  9644. name: "Macro",
  9645. height: math.unit(250, "feet")
  9646. },
  9647. {
  9648. name: "Megamacro",
  9649. height: math.unit(1, "AU")
  9650. },
  9651. ]
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(5 + 5 / 12, "feet"),
  9658. weight: math.unit(140, "lb"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/allatia/front.svg",
  9662. extra: 1227 / 1180,
  9663. bottom: 0.027
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(5 + 5 / 12, "feet")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(250, "feet"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(8, "miles")
  9680. }
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(120, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/tene/front.svg",
  9692. extra: 1728 / 1578,
  9693. bottom: 0.022
  9694. }
  9695. },
  9696. stomping: {
  9697. height: math.unit(2.025, "meters"),
  9698. weight: math.unit(120, "lb"),
  9699. name: "Stomping",
  9700. image: {
  9701. source: "./media/characters/tene/stomping.svg",
  9702. extra: 938 / 873,
  9703. bottom: 0.01
  9704. }
  9705. },
  9706. sitting: {
  9707. height: math.unit(1, "meter"),
  9708. weight: math.unit(120, "lb"),
  9709. name: "Sitting",
  9710. image: {
  9711. source: "./media/characters/tene/sitting.svg",
  9712. extra: 437 / 415,
  9713. bottom: 0.1
  9714. }
  9715. },
  9716. feral: {
  9717. height: math.unit(3.9, "feet"),
  9718. weight: math.unit(250, "lb"),
  9719. name: "Feral",
  9720. image: {
  9721. source: "./media/characters/tene/feral.svg",
  9722. extra: 717 / 458,
  9723. bottom: 0.179
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(6, "feet")
  9731. },
  9732. {
  9733. name: "Macro",
  9734. height: math.unit(300, "feet"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(5, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9745. {
  9746. side: {
  9747. height: math.unit(6, "feet"),
  9748. name: "Side",
  9749. image: {
  9750. source: "./media/characters/evander/side.svg",
  9751. extra: 877 / 477
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(0.83, "meters"),
  9759. default: true
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(12, "feet"),
  9768. weight: math.unit(1000, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9772. extra: 1762 / 1611
  9773. }
  9774. },
  9775. back: {
  9776. height: math.unit(12, "feet"),
  9777. weight: math.unit(1000, "lb"),
  9778. name: "Back",
  9779. image: {
  9780. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9781. extra: 1762 / 1611
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(12, "feet"),
  9789. default: true
  9790. },
  9791. {
  9792. name: "Kaiju",
  9793. height: math.unit(150, "feet")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(150, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/zero-alurus/front.svg"
  9806. }
  9807. },
  9808. back: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(150, "lb"),
  9811. name: "Back",
  9812. image: {
  9813. source: "./media/characters/zero-alurus/back.svg"
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(5 + 10 / 12, "feet")
  9821. },
  9822. {
  9823. name: "Macro",
  9824. height: math.unit(60, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro+",
  9829. height: math.unit(450, "feet")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(200, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/mega-shi/front.svg",
  9842. extra: 1279 / 1250,
  9843. bottom: 0.02
  9844. }
  9845. },
  9846. back: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(200, "lb"),
  9849. name: "Back",
  9850. image: {
  9851. source: "./media/characters/mega-shi/back.svg",
  9852. extra: 1279 / 1250,
  9853. bottom: 0.02
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Micro",
  9860. height: math.unit(16 + 6 / 12, "feet")
  9861. },
  9862. {
  9863. name: "Third Dimension",
  9864. height: math.unit(40, "meters")
  9865. },
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(660, "feet"),
  9869. default: true
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(10, "miles")
  9874. },
  9875. {
  9876. name: "Planetary Launch",
  9877. height: math.unit(500, "miles")
  9878. },
  9879. {
  9880. name: "Interstellar",
  9881. height: math.unit(1e9, "miles")
  9882. },
  9883. {
  9884. name: "Leaving the Universe",
  9885. height: math.unit(1, "gigaparsec")
  9886. },
  9887. {
  9888. name: "Travelling Universes",
  9889. height: math.unit(30e15, "parsecs")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(6, "feet"),
  9898. weight: math.unit(150, "lb"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/odyssey/front.svg",
  9902. extra: 1782 / 1582,
  9903. bottom: 0.01
  9904. }
  9905. },
  9906. side: {
  9907. height: math.unit(5.7, "feet"),
  9908. weight: math.unit(140, "lb"),
  9909. name: "Side",
  9910. image: {
  9911. source: "./media/characters/odyssey/side.svg",
  9912. extra: 6462 / 5700
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(5 + 4 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(1, "km")
  9924. },
  9925. {
  9926. name: "Megamacro",
  9927. height: math.unit(3000, "km")
  9928. },
  9929. {
  9930. name: "Gigamacro",
  9931. height: math.unit(1, "AU"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "Omniversal",
  9936. height: math.unit(100e14, "lightyears")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(300, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/mekuto/front.svg",
  9949. extra: 921 / 832,
  9950. bottom: 0.03
  9951. }
  9952. },
  9953. hand: {
  9954. height: math.unit(6 / 10.24, "feet"),
  9955. name: "Hand",
  9956. image: {
  9957. source: "./media/characters/mekuto/hand.svg"
  9958. }
  9959. },
  9960. foot: {
  9961. height: math.unit(6 / 5.05, "feet"),
  9962. name: "Foot",
  9963. image: {
  9964. source: "./media/characters/mekuto/foot.svg"
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Minimicro",
  9971. height: math.unit(0.2, "inches")
  9972. },
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(1.5, "inches")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(5 + 11 / 12, "feet"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Minimacro",
  9984. height: math.unit(17 + 9 / 12, "feet")
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(177.5, "feet")
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(152, "miles")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6.5, "inches"),
  10001. weight: math.unit(13, "oz"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/dafydd-tomos/front.svg",
  10005. extra: 2990 / 2603,
  10006. bottom: 0.03
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(6.5, "inches"),
  10014. default: true
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(6, "feet"),
  10023. weight: math.unit(150, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/splinter/front.svg",
  10027. extra: 2990 / 2882,
  10028. bottom: 0.04
  10029. }
  10030. },
  10031. back: {
  10032. height: math.unit(6, "feet"),
  10033. weight: math.unit(150, "lb"),
  10034. name: "Back",
  10035. image: {
  10036. source: "./media/characters/splinter/back.svg",
  10037. extra: 2990 / 2882,
  10038. bottom: 0.04
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(6, "feet")
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(230, "meters"),
  10050. default: true
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(4 + 10 / 12, "feet"),
  10059. weight: math.unit(480, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/snow-gabumon/front.svg",
  10063. extra: 1140 / 963,
  10064. bottom: 0.058
  10065. }
  10066. },
  10067. back: {
  10068. height: math.unit(4 + 10 / 12, "feet"),
  10069. weight: math.unit(480, "lb"),
  10070. name: "Back",
  10071. image: {
  10072. source: "./media/characters/snow-gabumon/back.svg",
  10073. extra: 1115 / 962,
  10074. bottom: 0.041
  10075. }
  10076. },
  10077. frontUndresed: {
  10078. height: math.unit(4 + 10 / 12, "feet"),
  10079. weight: math.unit(480, "lb"),
  10080. name: "Front (Undressed)",
  10081. image: {
  10082. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10083. extra: 1061 / 960,
  10084. bottom: 0.045
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Micro",
  10091. height: math.unit(1, "inch")
  10092. },
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(4 + 10 / 12, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(200, "feet")
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(120, "miles")
  10105. },
  10106. {
  10107. name: "Gigamacro",
  10108. height: math.unit(9800, "miles")
  10109. },
  10110. ]
  10111. ))
  10112. characterMakers.push(() => makeCharacter(
  10113. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10114. {
  10115. front: {
  10116. height: math.unit(1.7, "meters"),
  10117. weight: math.unit(140, "lb"),
  10118. name: "Front",
  10119. image: {
  10120. source: "./media/characters/moody/front.svg",
  10121. extra: 3226 / 3007,
  10122. bottom: 0.087
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Micro",
  10129. height: math.unit(1, "mm")
  10130. },
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(1.7, "meters"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(80, "meters")
  10139. },
  10140. {
  10141. name: "Macro+",
  10142. height: math.unit(500, "meters")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/zyas/front.svg",
  10155. extra: 1180 / 1120,
  10156. bottom: 0.045
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(10, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Macro",
  10168. height: math.unit(500, "feet")
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(5, "miles")
  10173. },
  10174. {
  10175. name: "Teramacro",
  10176. height: math.unit(150000, "miles")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(150, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/cuon/front.svg",
  10189. extra: 1390 / 1320,
  10190. bottom: 0.008
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Micro",
  10197. height: math.unit(3, "inches")
  10198. },
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(18 + 9 / 12, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(360, "feet")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(360, "miles")
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(2.4, "meters"),
  10219. weight: math.unit(70, "kg"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/nyanuxk/front.svg",
  10223. extra: 1172 / 1084,
  10224. bottom: 0.065
  10225. }
  10226. },
  10227. side: {
  10228. height: math.unit(2.4, "meters"),
  10229. weight: math.unit(70, "kg"),
  10230. name: "Side",
  10231. image: {
  10232. source: "./media/characters/nyanuxk/side.svg",
  10233. extra: 1190 / 1132,
  10234. bottom: 0.007
  10235. }
  10236. },
  10237. back: {
  10238. height: math.unit(2.4, "meters"),
  10239. weight: math.unit(70, "kg"),
  10240. name: "Back",
  10241. image: {
  10242. source: "./media/characters/nyanuxk/back.svg",
  10243. extra: 1200 / 1141,
  10244. bottom: 0.015
  10245. }
  10246. },
  10247. foot: {
  10248. height: math.unit(0.52, "meters"),
  10249. name: "Foot",
  10250. image: {
  10251. source: "./media/characters/nyanuxk/foot.svg"
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(2, "cm")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(2.4, "meters"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Smaller Macro",
  10267. height: math.unit(120, "meters")
  10268. },
  10269. {
  10270. name: "Bigger Macro",
  10271. height: math.unit(1.2, "km")
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(15, "kilometers")
  10276. },
  10277. {
  10278. name: "Gigamacro",
  10279. height: math.unit(2000, "km")
  10280. },
  10281. {
  10282. name: "Teramacro",
  10283. height: math.unit(500000, "km")
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10289. {
  10290. side: {
  10291. height: math.unit(6, "feet"),
  10292. name: "Side",
  10293. image: {
  10294. source: "./media/characters/ailbhe/side.svg",
  10295. extra: 757 / 464,
  10296. bottom: 0.041
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(1.07, "meters"),
  10304. default: true
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(120, "kg"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/zevulfius/front.svg",
  10317. extra: 965 / 903
  10318. }
  10319. },
  10320. side: {
  10321. height: math.unit(6, "feet"),
  10322. weight: math.unit(120, "kg"),
  10323. name: "Side",
  10324. image: {
  10325. source: "./media/characters/zevulfius/side.svg",
  10326. extra: 939 / 900
  10327. }
  10328. },
  10329. back: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(120, "kg"),
  10332. name: "Back",
  10333. image: {
  10334. source: "./media/characters/zevulfius/back.svg",
  10335. extra: 918 / 854,
  10336. bottom: 0.005
  10337. }
  10338. },
  10339. foot: {
  10340. height: math.unit(6 / 3.72, "feet"),
  10341. name: "Foot",
  10342. image: {
  10343. source: "./media/characters/zevulfius/foot.svg"
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(750, "meters")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(20, "km"),
  10355. default: true
  10356. },
  10357. {
  10358. name: "Gigamacro",
  10359. height: math.unit(2000, "km")
  10360. },
  10361. {
  10362. name: "Teramacro",
  10363. height: math.unit(250000, "km")
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(100, "feet"),
  10372. weight: math.unit(350, "kg"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/rikes/front.svg",
  10376. extra: 1565 / 1483,
  10377. bottom: 0.017
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(100, "feet"),
  10385. default: true
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10391. {
  10392. anthro: {
  10393. height: math.unit(8, "feet"),
  10394. weight: math.unit(120, "kg"),
  10395. name: "Anthro",
  10396. image: {
  10397. source: "./media/characters/adam-silver-mane/anthro.svg",
  10398. extra: 5743 / 5339,
  10399. bottom: 0.07
  10400. }
  10401. },
  10402. taur: {
  10403. height: math.unit(16, "feet"),
  10404. weight: math.unit(1500, "kg"),
  10405. name: "Taur",
  10406. image: {
  10407. source: "./media/characters/adam-silver-mane/taur.svg",
  10408. extra: 1713 / 1571,
  10409. bottom: 0.01
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(8, "feet")
  10417. },
  10418. {
  10419. name: "Minimacro",
  10420. height: math.unit(80, "feet")
  10421. },
  10422. {
  10423. name: "Macro",
  10424. height: math.unit(800, "feet"),
  10425. default: true
  10426. },
  10427. {
  10428. name: "Megamacro",
  10429. height: math.unit(8000, "feet")
  10430. },
  10431. {
  10432. name: "Gigamacro",
  10433. height: math.unit(800, "miles")
  10434. },
  10435. {
  10436. name: "Teramacro",
  10437. height: math.unit(80000, "miles")
  10438. },
  10439. {
  10440. name: "Celestial",
  10441. height: math.unit(8e6, "miles")
  10442. },
  10443. {
  10444. name: "Star Dragon",
  10445. height: math.unit(800000, "parsecs")
  10446. },
  10447. {
  10448. name: "Godly",
  10449. height: math.unit(800, "teraparsecs")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/ky'owin/front.svg",
  10462. extra: 3888 / 3068,
  10463. bottom: 0.015
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(6 + 8 / 12, "feet")
  10471. },
  10472. {
  10473. name: "Large",
  10474. height: math.unit(68, "feet")
  10475. },
  10476. {
  10477. name: "Macro",
  10478. height: math.unit(132, "feet")
  10479. },
  10480. {
  10481. name: "Macro+",
  10482. height: math.unit(340, "feet")
  10483. },
  10484. {
  10485. name: "Macro++",
  10486. height: math.unit(680, "feet"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Megamacro",
  10491. height: math.unit(1, "mile")
  10492. },
  10493. {
  10494. name: "Megamacro+",
  10495. height: math.unit(10, "miles")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(4, "feet"),
  10504. weight: math.unit(50, "lb"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/mal/front.svg",
  10508. extra: 785 / 724,
  10509. bottom: 0.07
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Micro",
  10516. height: math.unit(4, "inches")
  10517. },
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(4, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(200, "feet")
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(6, "feet"),
  10534. weight: math.unit(150, "lb"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/jordan-deware/front.svg",
  10538. extra: 1191 / 1012
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Nano",
  10545. height: math.unit(0.01, "mm")
  10546. },
  10547. {
  10548. name: "Minimicro",
  10549. height: math.unit(1, "mm")
  10550. },
  10551. {
  10552. name: "Micro",
  10553. height: math.unit(0.5, "inches")
  10554. },
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(4, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Minimacro",
  10562. height: math.unit(40, "meters")
  10563. },
  10564. {
  10565. name: "Small Macro",
  10566. height: math.unit(400, "meters")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(4, "miles")
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(40, "miles")
  10575. },
  10576. {
  10577. name: "Megamacro+",
  10578. height: math.unit(400, "miles")
  10579. },
  10580. {
  10581. name: "Gigamacro",
  10582. height: math.unit(400000, "miles")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10588. {
  10589. side: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(150, "lb"),
  10592. name: "Side",
  10593. image: {
  10594. source: "./media/characters/kimiko/side.svg",
  10595. extra: 600 / 358
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Normal",
  10602. height: math.unit(15, "feet"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(220, "feet")
  10608. },
  10609. {
  10610. name: "Macro+",
  10611. height: math.unit(1450, "feet")
  10612. },
  10613. {
  10614. name: "Megamacro",
  10615. height: math.unit(11500, "feet")
  10616. },
  10617. {
  10618. name: "Gigamacro",
  10619. height: math.unit(9500, "miles")
  10620. },
  10621. {
  10622. name: "Teramacro",
  10623. height: math.unit(2208005005, "miles")
  10624. },
  10625. {
  10626. name: "Examacro",
  10627. height: math.unit(2750, "parsecs")
  10628. },
  10629. {
  10630. name: "Zettamacro",
  10631. height: math.unit(101500, "parsecs")
  10632. },
  10633. ]
  10634. ))
  10635. characterMakers.push(() => makeCharacter(
  10636. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10637. {
  10638. front: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(70, "kg"),
  10641. name: "Front",
  10642. image: {
  10643. source: "./media/characters/andrew-sleepy/front.svg"
  10644. }
  10645. },
  10646. side: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(70, "kg"),
  10649. name: "Side",
  10650. image: {
  10651. source: "./media/characters/andrew-sleepy/side.svg"
  10652. }
  10653. },
  10654. },
  10655. [
  10656. {
  10657. name: "Micro",
  10658. height: math.unit(1, "mm"),
  10659. default: true
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(150, "lb"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/judio/front.svg",
  10672. extra: 1258 / 1110
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(5 + 6 / 12, "feet")
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(1000, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(10, "miles")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(6, "feet"),
  10697. weight: math.unit(68, "kg"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/nomaxice/front.svg",
  10701. extra: 1498 / 1073,
  10702. bottom: 0.075
  10703. }
  10704. },
  10705. foot: {
  10706. height: math.unit(1.1, "feet"),
  10707. name: "Foot",
  10708. image: {
  10709. source: "./media/characters/nomaxice/foot.svg"
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Micro",
  10716. height: math.unit(8, "cm")
  10717. },
  10718. {
  10719. name: "Norm",
  10720. height: math.unit(1.82, "m")
  10721. },
  10722. {
  10723. name: "Norm+",
  10724. height: math.unit(8.8, "feet")
  10725. },
  10726. {
  10727. name: "Big",
  10728. height: math.unit(8, "meters"),
  10729. default: true
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(18, "meters")
  10734. },
  10735. {
  10736. name: "Macro+",
  10737. height: math.unit(88, "meters")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(12, "feet"),
  10746. weight: math.unit(1.5, "tons"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/dydros/front.svg",
  10750. extra: 863 / 800,
  10751. bottom: 0.015
  10752. }
  10753. },
  10754. back: {
  10755. height: math.unit(12, "feet"),
  10756. weight: math.unit(1.5, "tons"),
  10757. name: "Back",
  10758. image: {
  10759. source: "./media/characters/dydros/back.svg",
  10760. extra: 900 / 843,
  10761. bottom: 0.005
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Normal",
  10768. height: math.unit(12, "feet"),
  10769. default: true
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(100, "kg"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/riggi/front.svg",
  10782. extra: 5787 / 5303
  10783. }
  10784. },
  10785. hyper: {
  10786. height: math.unit(6 * 5 / 3, "feet"),
  10787. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10788. name: "Hyper",
  10789. image: {
  10790. source: "./media/characters/riggi/hyper.svg",
  10791. extra: 3595 / 3485
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Small Macro",
  10798. height: math.unit(50, "feet")
  10799. },
  10800. {
  10801. name: "Default",
  10802. height: math.unit(200, "feet"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Loom",
  10807. height: math.unit(10000, "feet")
  10808. },
  10809. {
  10810. name: "Cruising Altitude",
  10811. height: math.unit(30000, "feet")
  10812. },
  10813. {
  10814. name: "Megamacro",
  10815. height: math.unit(100, "miles")
  10816. },
  10817. {
  10818. name: "Continent Sized",
  10819. height: math.unit(2800, "miles")
  10820. },
  10821. {
  10822. name: "Earth Sized",
  10823. height: math.unit(8000, "miles")
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10829. {
  10830. front: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(250, "lb"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/alexi/front.svg",
  10836. extra: 3483 / 3291,
  10837. bottom: 0.04
  10838. }
  10839. },
  10840. back: {
  10841. height: math.unit(6, "feet"),
  10842. weight: math.unit(250, "lb"),
  10843. name: "Back",
  10844. image: {
  10845. source: "./media/characters/alexi/back.svg",
  10846. extra: 3533 / 3356,
  10847. bottom: 0.021
  10848. }
  10849. },
  10850. frontTransforming: {
  10851. height: math.unit(8.58, "feet"),
  10852. weight: math.unit(1300, "lb"),
  10853. name: "Transforming",
  10854. image: {
  10855. source: "./media/characters/alexi/front-transforming.svg",
  10856. extra: 437 / 409,
  10857. bottom: 19 / 458.66
  10858. }
  10859. },
  10860. frontTransformed: {
  10861. height: math.unit(12.5, "feet"),
  10862. weight: math.unit(4000, "lb"),
  10863. name: "Transformed",
  10864. image: {
  10865. source: "./media/characters/alexi/front-transformed.svg",
  10866. extra: 639 / 614,
  10867. bottom: 30.55 / 671
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(14, "feet"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Minimacro",
  10879. height: math.unit(30, "meters")
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(500, "meters")
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(9000, "km")
  10888. },
  10889. {
  10890. name: "Teramacro",
  10891. height: math.unit(384000, "km")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(150, "lb"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/kayroo/front.svg",
  10904. extra: 1153 / 1038,
  10905. bottom: 0.06
  10906. }
  10907. },
  10908. foot: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(150, "lb"),
  10911. name: "Foot",
  10912. image: {
  10913. source: "./media/characters/kayroo/foot.svg"
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(8, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Minimacro",
  10925. height: math.unit(250, "feet")
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(2800, "feet")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(5200, "feet")
  10934. },
  10935. {
  10936. name: "Gigamacro",
  10937. height: math.unit(27000, "feet")
  10938. },
  10939. {
  10940. name: "Omega",
  10941. height: math.unit(45000, "feet")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(18, "feet"),
  10950. weight: math.unit(5800, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/rhys/front.svg",
  10954. extra: 3386 / 3090,
  10955. bottom: 0.07
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(18, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Working Size",
  10967. height: math.unit(200, "feet")
  10968. },
  10969. {
  10970. name: "Demolition Size",
  10971. height: math.unit(2000, "feet")
  10972. },
  10973. {
  10974. name: "Maximum Licensed Size",
  10975. height: math.unit(5, "miles")
  10976. },
  10977. {
  10978. name: "Maximum Observed Size",
  10979. height: math.unit(10, "yottameters")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(250, "lb"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/toto/front.svg",
  10992. extra: 527 / 479,
  10993. bottom: 0.05
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(3, "feet")
  11001. },
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(10, "feet")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(150, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(1200, "feet")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "King", species: ["lion"], tags: ["anthro"] },
  11019. {
  11020. back: {
  11021. height: math.unit(6, "feet"),
  11022. weight: math.unit(150, "lb"),
  11023. name: "Back",
  11024. image: {
  11025. source: "./media/characters/king/back.svg"
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Micro",
  11032. height: math.unit(2, "inches")
  11033. },
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(8, "feet")
  11037. },
  11038. {
  11039. name: "Macro",
  11040. height: math.unit(200, "feet"),
  11041. default: true
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(50, "miles")
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11051. {
  11052. anthro: {
  11053. height: math.unit(6 + 5 / 12, "feet"),
  11054. weight: math.unit(280, "lb"),
  11055. name: "Anthro",
  11056. image: {
  11057. source: "./media/characters/cordite/anthro.svg",
  11058. extra: 1986 / 1905,
  11059. bottom: 0.025
  11060. }
  11061. },
  11062. feral: {
  11063. height: math.unit(2, "feet"),
  11064. weight: math.unit(90, "lb"),
  11065. name: "Feral",
  11066. image: {
  11067. source: "./media/characters/cordite/feral.svg",
  11068. extra: 1260 / 755,
  11069. bottom: 0.05
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(6 + 5 / 12, "feet"),
  11077. default: true
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11083. {
  11084. front: {
  11085. height: math.unit(6, "feet"),
  11086. weight: math.unit(150, "lb"),
  11087. name: "Front",
  11088. image: {
  11089. source: "./media/characters/pianostrong/front.svg",
  11090. extra: 6577 / 6254,
  11091. bottom: 0.02
  11092. }
  11093. },
  11094. side: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(150, "lb"),
  11097. name: "Side",
  11098. image: {
  11099. source: "./media/characters/pianostrong/side.svg",
  11100. extra: 6106 / 5730
  11101. }
  11102. },
  11103. back: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Back",
  11107. image: {
  11108. source: "./media/characters/pianostrong/back.svg",
  11109. extra: 6085 / 5733,
  11110. bottom: 0.01
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(100, "feet")
  11118. },
  11119. {
  11120. name: "Macro+",
  11121. height: math.unit(300, "feet"),
  11122. default: true
  11123. },
  11124. {
  11125. name: "Macro++",
  11126. height: math.unit(1000, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(150, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/kona/front.svg",
  11139. extra: 2960 / 2629,
  11140. bottom: 0.005
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(11 + 8 / 12, "feet")
  11148. },
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(850, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Macro+",
  11156. height: math.unit(1.5, "km"),
  11157. default: true
  11158. },
  11159. {
  11160. name: "Megamacro",
  11161. height: math.unit(80, "miles")
  11162. },
  11163. {
  11164. name: "Gigamacro",
  11165. height: math.unit(3500, "miles")
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11171. {
  11172. side: {
  11173. height: math.unit(1.9, "meters"),
  11174. weight: math.unit(326, "kg"),
  11175. name: "Side",
  11176. image: {
  11177. source: "./media/characters/levi/side.svg",
  11178. extra: 1704 / 1334,
  11179. bottom: 0.02
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(1.9, "meters"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Macro",
  11191. height: math.unit(20, "meters")
  11192. },
  11193. {
  11194. name: "Macro+",
  11195. height: math.unit(200, "meters")
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(2, "km")
  11200. },
  11201. {
  11202. name: "Megamacro+",
  11203. height: math.unit(20, "km")
  11204. },
  11205. {
  11206. name: "Gigamacro",
  11207. height: math.unit(2500, "km")
  11208. },
  11209. {
  11210. name: "Gigamacro+",
  11211. height: math.unit(120000, "km")
  11212. },
  11213. {
  11214. name: "Teramacro",
  11215. height: math.unit(7.77e6, "km")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6 + 4/12, "feet"),
  11224. weight: math.unit(190, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/bmc/front.svg",
  11228. extra: 1626/1472,
  11229. bottom: 79/1705
  11230. }
  11231. },
  11232. back: {
  11233. height: math.unit(6 + 4/12, "feet"),
  11234. weight: math.unit(190, "lb"),
  11235. name: "Back",
  11236. image: {
  11237. source: "./media/characters/bmc/back.svg",
  11238. extra: 1640/1479,
  11239. bottom: 45/1685
  11240. }
  11241. },
  11242. frontArmor: {
  11243. height: math.unit(6 + 4/12, "feet"),
  11244. weight: math.unit(190, "lb"),
  11245. name: "Front-armor",
  11246. image: {
  11247. source: "./media/characters/bmc/front-armor.svg",
  11248. extra: 1538/1468,
  11249. bottom: 79/1617
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Human-sized",
  11256. height: math.unit(6 + 4 / 12, "feet")
  11257. },
  11258. {
  11259. name: "Interactive Size",
  11260. height: math.unit(25, "feet")
  11261. },
  11262. {
  11263. name: "Small",
  11264. height: math.unit(250, "feet")
  11265. },
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(1250, "feet"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Good Day",
  11273. height: math.unit(88, "miles")
  11274. },
  11275. {
  11276. name: "Largest Measured Size",
  11277. height: math.unit(105.960, "galaxies")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11283. {
  11284. front: {
  11285. height: math.unit(20, "feet"),
  11286. weight: math.unit(2016, "kg"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/sven-the-kaiju/front.svg",
  11290. extra: 1277/1250,
  11291. bottom: 35/1312
  11292. }
  11293. },
  11294. mouth: {
  11295. height: math.unit(1.85, "feet"),
  11296. name: "Mouth",
  11297. image: {
  11298. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Fairy",
  11305. height: math.unit(6, "inches")
  11306. },
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(20, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Rampage",
  11314. height: math.unit(200, "feet")
  11315. },
  11316. {
  11317. name: "Archfey Forest Guardian",
  11318. height: math.unit(1, "mile")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(4, "meters"),
  11327. weight: math.unit(2, "tons"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/marik/front.svg",
  11331. extra: 1057 / 1003,
  11332. bottom: 0.08
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(4, "meters"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(20, "meters")
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(50, "km")
  11349. },
  11350. {
  11351. name: "Gigamacro",
  11352. height: math.unit(100, "km")
  11353. },
  11354. {
  11355. name: "Alpha Macro",
  11356. height: math.unit(7.88e7, "yottameters")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(6, "feet"),
  11365. weight: math.unit(110, "lb"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/mel/front.svg",
  11369. extra: 736 / 617,
  11370. bottom: 0.017
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Pico",
  11377. height: math.unit(3, "pm")
  11378. },
  11379. {
  11380. name: "Nano",
  11381. height: math.unit(3, "nm")
  11382. },
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(0.3, "mm"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Micro+",
  11390. height: math.unit(3, "mm")
  11391. },
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(5 + 10.5 / 12, "feet")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11400. {
  11401. kaiju: {
  11402. height: math.unit(1.75, "meters"),
  11403. weight: math.unit(55, "kg"),
  11404. name: "Kaiju",
  11405. image: {
  11406. source: "./media/characters/lykonous/kaiju.svg",
  11407. extra: 1055 / 946,
  11408. bottom: 0.135
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(2.5, "meters"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Kaiju Dragon",
  11420. height: math.unit(60, "meters")
  11421. },
  11422. {
  11423. name: "Mega Kaiju",
  11424. height: math.unit(120, "km")
  11425. },
  11426. {
  11427. name: "Giga Kaiju",
  11428. height: math.unit(200, "megameters")
  11429. },
  11430. {
  11431. name: "Terra Kaiju",
  11432. height: math.unit(400, "gigameters")
  11433. },
  11434. {
  11435. name: "Kaiju Dragon God",
  11436. height: math.unit(13000, "exaparsecs")
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11442. {
  11443. front: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/blü/front.svg",
  11449. extra: 1883 / 1564,
  11450. bottom: 0.031
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(13, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Big Boi",
  11462. height: math.unit(150, "meters")
  11463. },
  11464. {
  11465. name: "Mini Stomper",
  11466. height: math.unit(300, "meters")
  11467. },
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(1000, "meters")
  11471. },
  11472. {
  11473. name: "Megamacro",
  11474. height: math.unit(11000, "meters")
  11475. },
  11476. {
  11477. name: "Gigamacro",
  11478. height: math.unit(11000, "km")
  11479. },
  11480. {
  11481. name: "Teramacro",
  11482. height: math.unit(420000, "km")
  11483. },
  11484. {
  11485. name: "Examacro",
  11486. height: math.unit(120, "parsecs")
  11487. },
  11488. {
  11489. name: "God Tho",
  11490. height: math.unit(98000000000, "parsecs")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11496. {
  11497. taurFront: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(200, "lb"),
  11500. name: "Taur (Front)",
  11501. image: {
  11502. source: "./media/characters/scales/taur-front.svg",
  11503. extra: 1,
  11504. bottom: 0.05
  11505. }
  11506. },
  11507. taurBack: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(200, "lb"),
  11510. name: "Taur (Back)",
  11511. image: {
  11512. source: "./media/characters/scales/taur-back.svg",
  11513. extra: 1,
  11514. bottom: 0.08
  11515. }
  11516. },
  11517. anthro: {
  11518. height: math.unit(6 * 7 / 12, "feet"),
  11519. weight: math.unit(100, "lb"),
  11520. name: "Anthro",
  11521. image: {
  11522. source: "./media/characters/scales/anthro.svg",
  11523. extra: 1,
  11524. bottom: 0.06
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(12, "feet"),
  11532. default: true
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(150, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/koragos/front.svg",
  11545. extra: 841 / 794,
  11546. bottom: 0.035
  11547. }
  11548. },
  11549. back: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Back",
  11553. image: {
  11554. source: "./media/characters/koragos/back.svg",
  11555. extra: 841 / 810,
  11556. bottom: 0.022
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Normal",
  11563. height: math.unit(6 + 11 / 12, "feet"),
  11564. default: true
  11565. },
  11566. {
  11567. name: "Macro",
  11568. height: math.unit(490, "feet")
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(10, "miles")
  11573. },
  11574. {
  11575. name: "Gigamacro",
  11576. height: math.unit(50, "miles")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(250, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/xylrem/front.svg",
  11589. extra: 3323 / 3050,
  11590. bottom: 0.065
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Micro",
  11597. height: math.unit(4, "feet")
  11598. },
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(16, "feet"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Macro",
  11606. height: math.unit(2720, "feet")
  11607. },
  11608. {
  11609. name: "Megamacro",
  11610. height: math.unit(25000, "miles")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(8, "feet"),
  11619. weight: math.unit(250, "kg"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/ikideru/front.svg",
  11623. extra: 930 / 870,
  11624. bottom: 0.087
  11625. }
  11626. },
  11627. back: {
  11628. height: math.unit(8, "feet"),
  11629. weight: math.unit(250, "kg"),
  11630. name: "Back",
  11631. image: {
  11632. source: "./media/characters/ikideru/back.svg",
  11633. extra: 919 / 852,
  11634. bottom: 0.055
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Rare",
  11641. height: math.unit(8, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Playful Loom",
  11646. height: math.unit(80, "feet")
  11647. },
  11648. {
  11649. name: "City Leaner",
  11650. height: math.unit(230, "feet")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(2500, "feet")
  11655. },
  11656. {
  11657. name: "Gigamacro",
  11658. height: math.unit(26400, "feet")
  11659. },
  11660. {
  11661. name: "Tectonic Shifter",
  11662. height: math.unit(1.7, "megameters")
  11663. },
  11664. {
  11665. name: "Planet Carer",
  11666. height: math.unit(21, "megameters")
  11667. },
  11668. {
  11669. name: "God",
  11670. height: math.unit(11157.22, "parsecs")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(120, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/neo/front.svg"
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(2, "inches"),
  11690. default: true
  11691. },
  11692. {
  11693. name: "Human Size",
  11694. height: math.unit(5 + 8 / 12, "feet")
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(13 + 10 / 12, "feet"),
  11703. weight: math.unit(5320, "lb"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/chauncey-chantz/front.svg",
  11707. extra: 1587 / 1435,
  11708. bottom: 0.02
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(13 + 10 / 12, "feet"),
  11716. default: true
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(45, "feet")
  11721. },
  11722. {
  11723. name: "Megamacro",
  11724. height: math.unit(250, "miles")
  11725. },
  11726. {
  11727. name: "Planetary",
  11728. height: math.unit(10000, "miles")
  11729. },
  11730. {
  11731. name: "Galactic",
  11732. height: math.unit(40000, "parsecs")
  11733. },
  11734. {
  11735. name: "Universal",
  11736. height: math.unit(1, "yottameter")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11742. {
  11743. front: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(150, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/epifox/front.svg",
  11749. extra: 1,
  11750. bottom: 0.075
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Micro",
  11757. height: math.unit(6, "inches")
  11758. },
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(12, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(3810, "feet")
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(500, "miles")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11776. {
  11777. front: {
  11778. height: math.unit(1.8796, "m"),
  11779. weight: math.unit(230, "lb"),
  11780. name: "Front",
  11781. image: {
  11782. source: "./media/characters/colin-t/front.svg",
  11783. extra: 1272 / 1193,
  11784. bottom: 0.07
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Micro",
  11791. height: math.unit(0.571, "meters")
  11792. },
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(1.8796, "meters"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Tall",
  11800. height: math.unit(4, "meters")
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(67.241, "meters")
  11805. },
  11806. {
  11807. name: "Megamacro",
  11808. height: math.unit(371.856, "meters")
  11809. },
  11810. {
  11811. name: "Planetary",
  11812. height: math.unit(12631.5689, "km")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(1.85, "meters"),
  11821. weight: math.unit(80, "kg"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/matvei/front.svg",
  11825. extra: 614 / 594,
  11826. bottom: 0.01
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(1.85, "meters"),
  11834. default: true
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(5 + 9 / 12, "feet"),
  11843. weight: math.unit(70, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/quincy/front.svg",
  11847. extra: 3041 / 2751
  11848. }
  11849. },
  11850. back: {
  11851. height: math.unit(5 + 9 / 12, "feet"),
  11852. weight: math.unit(70, "lb"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/quincy/back.svg",
  11856. extra: 3041 / 2751
  11857. }
  11858. },
  11859. flying: {
  11860. height: math.unit(5 + 4 / 12, "feet"),
  11861. weight: math.unit(70, "lb"),
  11862. name: "Flying",
  11863. image: {
  11864. source: "./media/characters/quincy/flying.svg",
  11865. extra: 1044 / 930
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Micro",
  11872. height: math.unit(3, "cm")
  11873. },
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(5 + 9 / 12, "feet")
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(200, "meters"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(1000, "meters")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(3 + 11/12, "feet"),
  11894. weight: math.unit(50, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/vanrel/front.svg",
  11898. extra: 1104/949,
  11899. bottom: 52/1156
  11900. }
  11901. },
  11902. back: {
  11903. height: math.unit(3 + 11/12, "feet"),
  11904. weight: math.unit(50, "lb"),
  11905. name: "Back",
  11906. image: {
  11907. source: "./media/characters/vanrel/back.svg",
  11908. extra: 1119/976,
  11909. bottom: 37/1156
  11910. }
  11911. },
  11912. tome: {
  11913. height: math.unit(1.35, "feet"),
  11914. weight: math.unit(10, "lb"),
  11915. name: "Vanrel's Tome",
  11916. rename: true,
  11917. image: {
  11918. source: "./media/characters/vanrel/tome.svg"
  11919. }
  11920. },
  11921. beans: {
  11922. height: math.unit(0.89, "feet"),
  11923. name: "Beans",
  11924. image: {
  11925. source: "./media/characters/vanrel/beans.svg"
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(3 + 11/12, "feet"),
  11933. default: true
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(7 + 5 / 12, "feet"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/kuiper-vanrel/front.svg",
  11945. extra: 1219/1169,
  11946. bottom: 69/1288
  11947. }
  11948. },
  11949. back: {
  11950. height: math.unit(7 + 5 / 12, "feet"),
  11951. name: "Back",
  11952. image: {
  11953. source: "./media/characters/kuiper-vanrel/back.svg",
  11954. extra: 1236/1193,
  11955. bottom: 27/1263
  11956. }
  11957. },
  11958. foot: {
  11959. height: math.unit(0.55, "meters"),
  11960. name: "Foot",
  11961. image: {
  11962. source: "./media/characters/kuiper-vanrel/foot.svg",
  11963. }
  11964. },
  11965. battle: {
  11966. height: math.unit(6.824, "feet"),
  11967. name: "Battle",
  11968. image: {
  11969. source: "./media/characters/kuiper-vanrel/battle.svg",
  11970. extra: 1466 / 1327,
  11971. bottom: 29 / 1492.5
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(7 + 5 / 12, "feet"),
  11979. default: true
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(8 + 5 / 12, "feet"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/keset-vanrel/front.svg",
  11991. extra: 1231/1148,
  11992. bottom: 82/1313
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(8 + 5 / 12, "feet"),
  11997. name: "Back",
  11998. image: {
  11999. source: "./media/characters/keset-vanrel/back.svg",
  12000. extra: 1240/1174,
  12001. bottom: 33/1273
  12002. }
  12003. },
  12004. hand: {
  12005. height: math.unit(0.6, "meters"),
  12006. name: "Hand",
  12007. image: {
  12008. source: "./media/characters/keset-vanrel/hand.svg"
  12009. }
  12010. },
  12011. foot: {
  12012. height: math.unit(0.94978, "meters"),
  12013. name: "Foot",
  12014. image: {
  12015. source: "./media/characters/keset-vanrel/foot.svg"
  12016. }
  12017. },
  12018. battle: {
  12019. height: math.unit(7.408, "feet"),
  12020. name: "Battle",
  12021. image: {
  12022. source: "./media/characters/keset-vanrel/battle.svg",
  12023. extra: 1890 / 1386,
  12024. bottom: 73.28 / 1970
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(8 + 5 / 12, "feet"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(150, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/neos/front.svg",
  12045. extra: 1696 / 992,
  12046. bottom: 0.14
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(54, "cm"),
  12054. default: true
  12055. },
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(100, "m")
  12059. },
  12060. {
  12061. name: "Megamacro",
  12062. height: math.unit(10, "km")
  12063. },
  12064. {
  12065. name: "Megamacro+",
  12066. height: math.unit(100, "km")
  12067. },
  12068. {
  12069. name: "Gigamacro",
  12070. height: math.unit(100, "Mm")
  12071. },
  12072. {
  12073. name: "Teramacro",
  12074. height: math.unit(100, "Gm")
  12075. },
  12076. {
  12077. name: "Examacro",
  12078. height: math.unit(100, "Em")
  12079. },
  12080. {
  12081. name: "Godly",
  12082. height: math.unit(10000, "Ym")
  12083. },
  12084. {
  12085. name: "Beyond Godly",
  12086. height: math.unit(25, "multiverses")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12092. {
  12093. feminine: {
  12094. height: math.unit(5, "feet"),
  12095. weight: math.unit(100, "lb"),
  12096. name: "Feminine",
  12097. image: {
  12098. source: "./media/characters/sammy-mouse/feminine.svg",
  12099. extra: 2526 / 2425,
  12100. bottom: 0.123
  12101. }
  12102. },
  12103. masculine: {
  12104. height: math.unit(5, "feet"),
  12105. weight: math.unit(100, "lb"),
  12106. name: "Masculine",
  12107. image: {
  12108. source: "./media/characters/sammy-mouse/masculine.svg",
  12109. extra: 2526 / 2425,
  12110. bottom: 0.123
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Micro",
  12117. height: math.unit(5, "inches")
  12118. },
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(5, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Macro",
  12126. height: math.unit(60, "feet")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(4, "feet"),
  12135. weight: math.unit(50, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/kole/front.svg",
  12139. extra: 1423 / 1303,
  12140. bottom: 0.025
  12141. }
  12142. },
  12143. back: {
  12144. height: math.unit(4, "feet"),
  12145. weight: math.unit(50, "lb"),
  12146. name: "Back",
  12147. image: {
  12148. source: "./media/characters/kole/back.svg",
  12149. extra: 1426 / 1280,
  12150. bottom: 0.02
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(4, "feet"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(2.5, "feet"),
  12167. weight: math.unit(32, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/rufran/front.svg",
  12171. extra: 1313/885,
  12172. bottom: 94/1407
  12173. }
  12174. },
  12175. side: {
  12176. height: math.unit(2.5, "feet"),
  12177. weight: math.unit(32, "lb"),
  12178. name: "Side",
  12179. image: {
  12180. source: "./media/characters/rufran/side.svg",
  12181. extra: 1109/852,
  12182. bottom: 118/1227
  12183. }
  12184. },
  12185. back: {
  12186. height: math.unit(2.5, "feet"),
  12187. weight: math.unit(32, "lb"),
  12188. name: "Back",
  12189. image: {
  12190. source: "./media/characters/rufran/back.svg",
  12191. extra: 1280/878,
  12192. bottom: 131/1411
  12193. }
  12194. },
  12195. mouth: {
  12196. height: math.unit(1.13, "feet"),
  12197. name: "Mouth",
  12198. image: {
  12199. source: "./media/characters/rufran/mouth.svg"
  12200. }
  12201. },
  12202. foot: {
  12203. height: math.unit(1.33, "feet"),
  12204. name: "Foot",
  12205. image: {
  12206. source: "./media/characters/rufran/foot.svg"
  12207. }
  12208. },
  12209. koboldFront: {
  12210. height: math.unit(2 + 6 / 12, "feet"),
  12211. weight: math.unit(20, "lb"),
  12212. name: "Front (Kobold)",
  12213. image: {
  12214. source: "./media/characters/rufran/kobold-front.svg",
  12215. extra: 2041 / 1839,
  12216. bottom: 0.055
  12217. }
  12218. },
  12219. koboldBack: {
  12220. height: math.unit(2 + 6 / 12, "feet"),
  12221. weight: math.unit(20, "lb"),
  12222. name: "Back (Kobold)",
  12223. image: {
  12224. source: "./media/characters/rufran/kobold-back.svg",
  12225. extra: 2054 / 1839,
  12226. bottom: 0.01
  12227. }
  12228. },
  12229. koboldHand: {
  12230. height: math.unit(0.2166, "meters"),
  12231. name: "Hand (Kobold)",
  12232. image: {
  12233. source: "./media/characters/rufran/kobold-hand.svg"
  12234. }
  12235. },
  12236. koboldFoot: {
  12237. height: math.unit(0.185, "meters"),
  12238. name: "Foot (Kobold)",
  12239. image: {
  12240. source: "./media/characters/rufran/kobold-foot.svg"
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Micro",
  12247. height: math.unit(1, "inch")
  12248. },
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(2 + 6 / 12, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Big",
  12256. height: math.unit(60, "feet")
  12257. },
  12258. {
  12259. name: "Macro",
  12260. height: math.unit(325, "feet")
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(0.3, "meters"),
  12269. weight: math.unit(3.5, "kg"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/chip/front.svg",
  12273. extra: 748 / 674
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Micro",
  12280. height: math.unit(1, "inch"),
  12281. default: true
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12287. {
  12288. side: {
  12289. height: math.unit(2.3, "meters"),
  12290. weight: math.unit(3500, "lb"),
  12291. name: "Side",
  12292. image: {
  12293. source: "./media/characters/torvid/side.svg",
  12294. extra: 1972 / 722,
  12295. bottom: 0.035
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(2.3, "meters"),
  12303. default: true
  12304. },
  12305. ]
  12306. ))
  12307. characterMakers.push(() => makeCharacter(
  12308. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12309. {
  12310. front: {
  12311. height: math.unit(2, "meters"),
  12312. weight: math.unit(150.5, "kg"),
  12313. name: "Front",
  12314. image: {
  12315. source: "./media/characters/susan/front.svg",
  12316. extra: 693 / 635,
  12317. bottom: 0.05
  12318. }
  12319. },
  12320. },
  12321. [
  12322. {
  12323. name: "Megamacro",
  12324. height: math.unit(505, "miles"),
  12325. default: true
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/raindrops/front.svg",
  12338. extra: 2655 / 2461,
  12339. bottom: 49 / 2705
  12340. }
  12341. },
  12342. back: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(150, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/raindrops/back.svg",
  12348. extra: 2574 / 2400,
  12349. bottom: 65 / 2634
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Micro",
  12356. height: math.unit(6, "inches")
  12357. },
  12358. {
  12359. name: "Normal",
  12360. height: math.unit(6 + 2 / 12, "feet")
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(131, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Megamacro",
  12369. height: math.unit(15, "miles")
  12370. },
  12371. {
  12372. name: "Gigamacro",
  12373. height: math.unit(4000, "miles")
  12374. },
  12375. {
  12376. name: "Teramacro",
  12377. height: math.unit(315000, "miles")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(2.794, "meters"),
  12386. weight: math.unit(325, "kg"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/tezwa/front.svg",
  12390. extra: 2083 / 1906,
  12391. bottom: 0.031
  12392. }
  12393. },
  12394. foot: {
  12395. height: math.unit(0.687, "meters"),
  12396. name: "Foot",
  12397. image: {
  12398. source: "./media/characters/tezwa/foot.svg"
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(9 + 2 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(58, "feet"),
  12415. weight: math.unit(89000, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/typhus/front.svg",
  12419. extra: 816 / 800,
  12420. bottom: 0.065
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Macro",
  12427. height: math.unit(58, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(12, "feet"),
  12437. weight: math.unit(6, "tonnes"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/lyra-von-wulf/front.svg",
  12441. extra: 1,
  12442. bottom: 0.10
  12443. }
  12444. },
  12445. frontMecha: {
  12446. height: math.unit(12, "feet"),
  12447. weight: math.unit(12, "tonnes"),
  12448. name: "Front (Mecha)",
  12449. image: {
  12450. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12451. extra: 1,
  12452. bottom: 0.042
  12453. }
  12454. },
  12455. maw: {
  12456. height: math.unit(2.2, "feet"),
  12457. name: "Maw",
  12458. image: {
  12459. source: "./media/characters/lyra-von-wulf/maw.svg"
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Normal",
  12466. height: math.unit(12, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Classic",
  12471. height: math.unit(50, "feet")
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(500, "feet")
  12476. },
  12477. {
  12478. name: "Megamacro",
  12479. height: math.unit(1, "mile")
  12480. },
  12481. {
  12482. name: "Gigamacro",
  12483. height: math.unit(400, "miles")
  12484. },
  12485. {
  12486. name: "Teramacro",
  12487. height: math.unit(22000, "miles")
  12488. },
  12489. {
  12490. name: "Solarmacro",
  12491. height: math.unit(8600000, "miles")
  12492. },
  12493. {
  12494. name: "Galactic",
  12495. height: math.unit(1057000, "lightyears")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6 + 10 / 12, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/dixon/front.svg",
  12508. extra: 3361 / 3209,
  12509. bottom: 0.01
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(6 + 10 / 12, "feet"),
  12517. default: true
  12518. },
  12519. {
  12520. name: "Big",
  12521. height: math.unit(12, "meters")
  12522. },
  12523. {
  12524. name: "Macro",
  12525. height: math.unit(500, "meters")
  12526. },
  12527. {
  12528. name: "Megamacro",
  12529. height: math.unit(2, "km")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(185, "cm"),
  12538. weight: math.unit(68, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/kauko/front.svg",
  12542. extra: 1455 / 1421,
  12543. bottom: 0.03
  12544. }
  12545. },
  12546. back: {
  12547. height: math.unit(185, "cm"),
  12548. weight: math.unit(68, "kg"),
  12549. name: "Back",
  12550. image: {
  12551. source: "./media/characters/kauko/back.svg",
  12552. extra: 1455 / 1421,
  12553. bottom: 0.004
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(185, "cm"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "kg"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/varg/front.svg",
  12574. extra: 1108 / 1018,
  12575. bottom: 0.0375
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Normal",
  12582. height: math.unit(5, "meters")
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(200, "meters")
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(20, "kilometers")
  12591. },
  12592. {
  12593. name: "True Size",
  12594. height: math.unit(211, "km"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Gigamacro",
  12599. height: math.unit(1000, "km")
  12600. },
  12601. {
  12602. name: "Gigamacro+",
  12603. height: math.unit(8000, "km")
  12604. },
  12605. {
  12606. name: "Teramacro",
  12607. height: math.unit(1000000, "km")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(7 + 7 / 12, "feet"),
  12616. weight: math.unit(267, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/dayza/front.svg",
  12620. extra: 1262 / 1200,
  12621. bottom: 0.035
  12622. }
  12623. },
  12624. side: {
  12625. height: math.unit(7 + 7 / 12, "feet"),
  12626. weight: math.unit(267, "lb"),
  12627. name: "Side",
  12628. image: {
  12629. source: "./media/characters/dayza/side.svg",
  12630. extra: 1295 / 1245,
  12631. bottom: 0.05
  12632. }
  12633. },
  12634. back: {
  12635. height: math.unit(7 + 7 / 12, "feet"),
  12636. weight: math.unit(267, "lb"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/dayza/back.svg",
  12640. extra: 1241 / 1170
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(7 + 7 / 12, "feet"),
  12648. default: true
  12649. },
  12650. {
  12651. name: "Macro",
  12652. height: math.unit(155, "feet")
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(6 + 5 / 12, "feet"),
  12661. weight: math.unit(160, "lb"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/xanthos/front.svg",
  12665. extra: 1,
  12666. bottom: 0.04
  12667. }
  12668. },
  12669. back: {
  12670. height: math.unit(6 + 5 / 12, "feet"),
  12671. weight: math.unit(160, "lb"),
  12672. name: "Back",
  12673. image: {
  12674. source: "./media/characters/xanthos/back.svg",
  12675. extra: 1,
  12676. bottom: 0.03
  12677. }
  12678. },
  12679. hand: {
  12680. height: math.unit(0.928, "feet"),
  12681. name: "Hand",
  12682. image: {
  12683. source: "./media/characters/xanthos/hand.svg"
  12684. }
  12685. },
  12686. foot: {
  12687. height: math.unit(1.286, "feet"),
  12688. name: "Foot",
  12689. image: {
  12690. source: "./media/characters/xanthos/foot.svg"
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(6 + 5 / 12, "feet"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Normal+",
  12702. height: math.unit(6, "meters")
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(40, "feet")
  12707. },
  12708. {
  12709. name: "Macro+",
  12710. height: math.unit(200, "meters")
  12711. },
  12712. {
  12713. name: "Megamacro",
  12714. height: math.unit(20, "km")
  12715. },
  12716. {
  12717. name: "Megamacro+",
  12718. height: math.unit(100, "km")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6 + 3 / 12, "feet"),
  12727. weight: math.unit(215, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/grynn/front.svg",
  12731. extra: 4627 / 4209,
  12732. bottom: 0.047
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Micro",
  12739. height: math.unit(6, "inches")
  12740. },
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(6 + 3 / 12, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Big",
  12748. height: math.unit(104, "feet")
  12749. },
  12750. {
  12751. name: "Macro",
  12752. height: math.unit(944, "feet")
  12753. },
  12754. {
  12755. name: "Macro+",
  12756. height: math.unit(9480, "feet")
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(78752, "feet")
  12761. },
  12762. {
  12763. name: "Megamacro+",
  12764. height: math.unit(630128, "feet")
  12765. },
  12766. {
  12767. name: "Megamacro++",
  12768. height: math.unit(3150695, "feet")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(7 + 5 / 12, "feet"),
  12777. weight: math.unit(450, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/mocha-aura/front.svg",
  12781. extra: 1907 / 1817,
  12782. bottom: 0.04
  12783. }
  12784. },
  12785. back: {
  12786. height: math.unit(7 + 5 / 12, "feet"),
  12787. weight: math.unit(450, "lb"),
  12788. name: "Back",
  12789. image: {
  12790. source: "./media/characters/mocha-aura/back.svg",
  12791. extra: 1900 / 1825,
  12792. bottom: 0.045
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Nano",
  12799. height: math.unit(1, "nm")
  12800. },
  12801. {
  12802. name: "Megamicro",
  12803. height: math.unit(1, "mm")
  12804. },
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(3, "inches")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(7 + 5 / 12, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(30, "feet")
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(3500, "feet")
  12821. },
  12822. {
  12823. name: "Teramacro",
  12824. height: math.unit(500000, "miles")
  12825. },
  12826. {
  12827. name: "Petamacro",
  12828. height: math.unit(50000000000000000, "parsecs")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/ilisha-devya/front.svg",
  12841. extra: 1,
  12842. bottom: 0.175
  12843. }
  12844. },
  12845. back: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Back",
  12849. image: {
  12850. source: "./media/characters/ilisha-devya/back.svg",
  12851. extra: 1,
  12852. bottom: 0.015
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Macro",
  12859. height: math.unit(500, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(10, "miles")
  12865. },
  12866. {
  12867. name: "Gigamacro",
  12868. height: math.unit(100000, "miles")
  12869. },
  12870. {
  12871. name: "Examacro",
  12872. height: math.unit(1e9, "lightyears")
  12873. },
  12874. {
  12875. name: "Omniversal",
  12876. height: math.unit(1e33, "lightyears")
  12877. },
  12878. {
  12879. name: "Beyond Infinite",
  12880. height: math.unit(1e100, "lightyears")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12886. {
  12887. Side: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Side",
  12891. image: {
  12892. source: "./media/characters/mira/side.svg",
  12893. extra: 900 / 799,
  12894. bottom: 0.02
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Human Size",
  12901. height: math.unit(6, "feet")
  12902. },
  12903. {
  12904. name: "Macro",
  12905. height: math.unit(100, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Megamacro",
  12910. height: math.unit(10, "miles")
  12911. },
  12912. {
  12913. name: "Gigamacro",
  12914. height: math.unit(25000, "miles")
  12915. },
  12916. {
  12917. name: "Teramacro",
  12918. height: math.unit(300, "AU")
  12919. },
  12920. {
  12921. name: "Full Size",
  12922. height: math.unit(4.5e10, "lightyears")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6, "feet"),
  12931. weight: math.unit(150, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/holly/front.svg",
  12935. extra: 639 / 606
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(6, "feet"),
  12940. weight: math.unit(150, "lb"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/holly/back.svg",
  12944. extra: 623 / 598
  12945. }
  12946. },
  12947. frontWorking: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(150, "lb"),
  12950. name: "Front (Working)",
  12951. image: {
  12952. source: "./media/characters/holly/front-working.svg",
  12953. extra: 607 / 577,
  12954. bottom: 0.048
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(12 + 3 / 12, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(6, "feet"),
  12971. weight: math.unit(150, "lb"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/porter/front.svg",
  12975. extra: 1,
  12976. bottom: 0.01
  12977. }
  12978. },
  12979. frontRobes: {
  12980. height: math.unit(6, "feet"),
  12981. weight: math.unit(150, "lb"),
  12982. name: "Front (Robes)",
  12983. image: {
  12984. source: "./media/characters/porter/front-robes.svg",
  12985. extra: 1.01,
  12986. bottom: 0.01
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(11 + 9 / 12, "feet"),
  12994. default: true
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13000. {
  13001. legendary: {
  13002. height: math.unit(6, "feet"),
  13003. weight: math.unit(150, "lb"),
  13004. name: "Legendary",
  13005. image: {
  13006. source: "./media/characters/lucy/legendary.svg",
  13007. extra: 1355 / 1100,
  13008. bottom: 0.045
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Legendary",
  13015. height: math.unit(86882 * 2, "miles"),
  13016. default: true
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/drusilla/front.svg",
  13029. extra: 678 / 635,
  13030. bottom: 0.03
  13031. }
  13032. },
  13033. back: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Back",
  13037. image: {
  13038. source: "./media/characters/drusilla/back.svg",
  13039. extra: 678 / 635,
  13040. bottom: 0.005
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Macro",
  13047. height: math.unit(100, "feet")
  13048. },
  13049. {
  13050. name: "Canon Height",
  13051. height: math.unit(2000, "feet"),
  13052. default: true
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(6, "feet"),
  13061. weight: math.unit(180, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/renard-thatch/front.svg",
  13065. extra: 2411 / 2275,
  13066. bottom: 0.01
  13067. }
  13068. },
  13069. frontPosing: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(180, "lb"),
  13072. name: "Front (Posing)",
  13073. image: {
  13074. source: "./media/characters/renard-thatch/front-posing.svg",
  13075. extra: 2381 / 2261,
  13076. bottom: 0.01
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(180, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/renard-thatch/back.svg",
  13085. extra: 2428 / 2288
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Micro",
  13092. height: math.unit(3, "inches")
  13093. },
  13094. {
  13095. name: "Default",
  13096. height: math.unit(6, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(75, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(1450, "feet"),
  13110. weight: math.unit(1.21e6, "tons"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/sekvra/front.svg",
  13114. extra: 1,
  13115. bottom: 0.03
  13116. }
  13117. },
  13118. frontClothed: {
  13119. height: math.unit(1450, "feet"),
  13120. weight: math.unit(1.21e6, "tons"),
  13121. name: "Front (Clothed)",
  13122. image: {
  13123. source: "./media/characters/sekvra/front-clothed.svg",
  13124. extra: 1,
  13125. bottom: 0.03
  13126. }
  13127. },
  13128. side: {
  13129. height: math.unit(1450, "feet"),
  13130. weight: math.unit(1.21e6, "tons"),
  13131. name: "Side",
  13132. image: {
  13133. source: "./media/characters/sekvra/side.svg",
  13134. extra: 1,
  13135. bottom: 0.025
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(1450, "feet"),
  13140. weight: math.unit(1.21e6, "tons"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/sekvra/back.svg",
  13144. extra: 1,
  13145. bottom: 0.005
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Macro",
  13152. height: math.unit(1450, "feet"),
  13153. default: true
  13154. },
  13155. {
  13156. name: "Megamacro",
  13157. height: math.unit(15000, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/carmine/front.svg",
  13170. extra: 1,
  13171. bottom: 0.035
  13172. }
  13173. },
  13174. frontArmor: {
  13175. height: math.unit(6, "feet"),
  13176. weight: math.unit(150, "lb"),
  13177. name: "Front (Armor)",
  13178. image: {
  13179. source: "./media/characters/carmine/front-armor.svg",
  13180. extra: 1,
  13181. bottom: 0.035
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Large",
  13188. height: math.unit(1, "mile")
  13189. },
  13190. {
  13191. name: "Huge",
  13192. height: math.unit(40, "miles"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Colossal",
  13197. height: math.unit(2500, "miles")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/elyssia/front.svg",
  13210. extra: 2201 / 2035,
  13211. bottom: 0.05
  13212. }
  13213. },
  13214. frontClothed: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front (Clothed)",
  13218. image: {
  13219. source: "./media/characters/elyssia/front-clothed.svg",
  13220. extra: 2201 / 2035,
  13221. bottom: 0.05
  13222. }
  13223. },
  13224. back: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/elyssia/back.svg",
  13230. extra: 2201 / 2035,
  13231. bottom: 0.013
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Smaller",
  13238. height: math.unit(150, "feet")
  13239. },
  13240. {
  13241. name: "Standard",
  13242. height: math.unit(1400, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Distracted",
  13247. height: math.unit(15000, "feet")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(7 + 4 / 12, "feet"),
  13256. weight: math.unit(500, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/geno-maxwell/front.svg",
  13260. extra: 2207 / 2040,
  13261. bottom: 0.015
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(3, "inches")
  13269. },
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(7 + 4 / 12, "feet"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(220, "feet")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(11, "miles")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13287. {
  13288. front: {
  13289. height: math.unit(7 + 4 / 12, "feet"),
  13290. weight: math.unit(500, "lb"),
  13291. name: "Front",
  13292. image: {
  13293. source: "./media/characters/regena-maxwell/front.svg",
  13294. extra: 3115 / 2770,
  13295. bottom: 0.02
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(7 + 4 / 12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(220, "feet")
  13308. },
  13309. {
  13310. name: "Megamacro",
  13311. height: math.unit(11, "miles")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(6, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13324. extra: 860 / 690,
  13325. bottom: 0.03
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(1.7, "meters"),
  13333. default: true
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "lb"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/quilly/front.svg",
  13346. extra: 890 / 776
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Gigamacro",
  13353. height: math.unit(404090, "miles"),
  13354. default: true
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(7 + 8 / 12, "feet"),
  13363. weight: math.unit(350, "lb"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/tempest/front.svg",
  13367. extra: 1175 / 1086,
  13368. bottom: 0.02
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Normal",
  13375. height: math.unit(7 + 8 / 12, "feet"),
  13376. default: true
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13382. {
  13383. side: {
  13384. height: math.unit(4 + 5 / 12, "feet"),
  13385. weight: math.unit(80, "lb"),
  13386. name: "Side",
  13387. image: {
  13388. source: "./media/characters/rodger/side.svg",
  13389. extra: 1235 / 1118
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Micro",
  13396. height: math.unit(1, "inch")
  13397. },
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(4 + 5 / 12, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(120, "feet")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/danyel/front.svg",
  13418. extra: 1185 / 1123,
  13419. bottom: 0.05
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Shrunken",
  13426. height: math.unit(0.5, "mm")
  13427. },
  13428. {
  13429. name: "Micro",
  13430. height: math.unit(1, "mm"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Upsized",
  13435. height: math.unit(5 + 5 / 12, "feet")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(5 + 6 / 12, "feet"),
  13444. weight: math.unit(200, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/vivian-bijoux/front.svg",
  13448. extra: 1,
  13449. bottom: 0.072
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(5 + 6 / 12, "feet"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Bad Dream",
  13461. height: math.unit(500, "feet")
  13462. },
  13463. {
  13464. name: "Nightmare",
  13465. height: math.unit(500, "miles")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6 + 1 / 12, "feet"),
  13474. weight: math.unit(260, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/zeta/front.svg",
  13478. extra: 1968 / 1889,
  13479. bottom: 0.06
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(6 + 1 / 12, "feet"),
  13484. weight: math.unit(260, "lb"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/zeta/back.svg",
  13488. extra: 1944 / 1858,
  13489. bottom: 0.03
  13490. }
  13491. },
  13492. hand: {
  13493. height: math.unit(1.112, "feet"),
  13494. name: "Hand",
  13495. image: {
  13496. source: "./media/characters/zeta/hand.svg"
  13497. }
  13498. },
  13499. foot: {
  13500. height: math.unit(1.48, "feet"),
  13501. name: "Foot",
  13502. image: {
  13503. source: "./media/characters/zeta/foot.svg"
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(6, "inches")
  13511. },
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(6 + 1 / 12, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro",
  13519. height: math.unit(20, "feet")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(6, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/jamie-larsen/front.svg",
  13532. extra: 962 / 933,
  13533. bottom: 0.02
  13534. }
  13535. },
  13536. back: {
  13537. height: math.unit(6, "feet"),
  13538. weight: math.unit(150, "lb"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/jamie-larsen/back.svg",
  13542. extra: 997 / 946
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Macro",
  13549. height: math.unit(28 + 7 / 12, "feet"),
  13550. default: true
  13551. },
  13552. {
  13553. name: "Macro+",
  13554. height: math.unit(180, "feet")
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(10, "miles")
  13559. },
  13560. {
  13561. name: "Gigamacro",
  13562. height: math.unit(200000, "miles")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(120, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/vance/front.svg",
  13575. extra: 1980 / 1890,
  13576. bottom: 0.09
  13577. }
  13578. },
  13579. back: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(120, "lb"),
  13582. name: "Back",
  13583. image: {
  13584. source: "./media/characters/vance/back.svg",
  13585. extra: 2081 / 1994,
  13586. bottom: 0.014
  13587. }
  13588. },
  13589. hand: {
  13590. height: math.unit(0.88, "feet"),
  13591. name: "Hand",
  13592. image: {
  13593. source: "./media/characters/vance/hand.svg"
  13594. }
  13595. },
  13596. foot: {
  13597. height: math.unit(0.64, "feet"),
  13598. name: "Foot",
  13599. image: {
  13600. source: "./media/characters/vance/foot.svg"
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Small",
  13607. height: math.unit(90, "feet"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Macro",
  13612. height: math.unit(100, "meters")
  13613. },
  13614. {
  13615. name: "Megamacro",
  13616. height: math.unit(15, "miles")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(180, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/xochitl/front.svg",
  13629. extra: 2297 / 2261,
  13630. bottom: 0.065
  13631. }
  13632. },
  13633. back: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(180, "lb"),
  13636. name: "Back",
  13637. image: {
  13638. source: "./media/characters/xochitl/back.svg",
  13639. extra: 2386 / 2354,
  13640. bottom: 0.01
  13641. }
  13642. },
  13643. foot: {
  13644. height: math.unit(6 / 5 * 1.15, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Foot",
  13647. image: {
  13648. source: "./media/characters/xochitl/foot.svg"
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Macro",
  13655. height: math.unit(80, "feet")
  13656. },
  13657. {
  13658. name: "Macro+",
  13659. height: math.unit(400, "feet"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Gigamacro",
  13664. height: math.unit(80000, "miles")
  13665. },
  13666. {
  13667. name: "Gigamacro+",
  13668. height: math.unit(400000, "miles")
  13669. },
  13670. {
  13671. name: "Teramacro",
  13672. height: math.unit(300, "AU")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(150, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/vincent/front.svg",
  13685. extra: 1130 / 1080,
  13686. bottom: 0.055
  13687. }
  13688. },
  13689. beak: {
  13690. height: math.unit(6 * 0.1, "feet"),
  13691. name: "Beak",
  13692. image: {
  13693. source: "./media/characters/vincent/beak.svg"
  13694. }
  13695. },
  13696. hand: {
  13697. height: math.unit(6 * 0.85, "feet"),
  13698. weight: math.unit(150, "lb"),
  13699. name: "Hand",
  13700. image: {
  13701. source: "./media/characters/vincent/hand.svg"
  13702. }
  13703. },
  13704. foot: {
  13705. height: math.unit(6 * 0.19, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Foot",
  13708. image: {
  13709. source: "./media/characters/vincent/foot.svg"
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Base",
  13716. height: math.unit(6 + 5 / 12, "feet"),
  13717. default: true
  13718. },
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(300, "feet")
  13722. },
  13723. {
  13724. name: "Megamacro",
  13725. height: math.unit(2, "miles")
  13726. },
  13727. {
  13728. name: "Gigamacro",
  13729. height: math.unit(1000, "miles")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(2, "meters"),
  13738. weight: math.unit(500, "kg"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/coatl/front.svg",
  13742. extra: 3948 / 3500,
  13743. bottom: 0.082
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(4, "meters")
  13751. },
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(100, "meters"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Macro+",
  13759. height: math.unit(300, "meters")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(3, "gigameters")
  13764. },
  13765. {
  13766. name: "Megamacro+",
  13767. height: math.unit(300, "terameters")
  13768. },
  13769. {
  13770. name: "Megamacro++",
  13771. height: math.unit(3, "lightyears")
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(50, "kg"),
  13781. name: "front",
  13782. image: {
  13783. source: "./media/characters/shiroryu/front.svg",
  13784. extra: 1990 / 1935
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Mortal Mingling",
  13791. height: math.unit(3, "meters")
  13792. },
  13793. {
  13794. name: "Kaiju-ish",
  13795. height: math.unit(250, "meters")
  13796. },
  13797. {
  13798. name: "Somewhat Godly",
  13799. height: math.unit(400, "km"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Planetary",
  13804. height: math.unit(300, "megameters")
  13805. },
  13806. {
  13807. name: "Galaxy-dwarfing",
  13808. height: math.unit(450, "kiloparsecs")
  13809. },
  13810. {
  13811. name: "Universe Eater",
  13812. height: math.unit(150, "gigaparsecs")
  13813. },
  13814. {
  13815. name: "Almost Immeasurable",
  13816. height: math.unit(1.3e266, "yottaparsecs")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/umeko/front.svg",
  13829. extra: 1,
  13830. bottom: 0.019
  13831. }
  13832. },
  13833. frontArmored: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front (Armored)",
  13837. image: {
  13838. source: "./media/characters/umeko/front-armored.svg",
  13839. extra: 1,
  13840. bottom: 0.021
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(220, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Guardian Dragon",
  13852. height: math.unit(50, "miles")
  13853. },
  13854. {
  13855. name: "Cosmic",
  13856. height: math.unit(800000, "miles")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/cassidy/front.svg",
  13869. extra: 1,
  13870. bottom: 0.043
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Canon Height",
  13877. height: math.unit(120, "feet"),
  13878. default: true
  13879. },
  13880. {
  13881. name: "Macro+",
  13882. height: math.unit(400, "feet")
  13883. },
  13884. {
  13885. name: "Macro++",
  13886. height: math.unit(4000, "feet")
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(3, "miles")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  13903. extra: 896 / 815,
  13904. bottom: 0.11
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Human Size",
  13911. height: math.unit(8, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(400, "feet")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(50, "miles")
  13921. },
  13922. {
  13923. name: "Canon Height",
  13924. height: math.unit(200, "AU")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(72, "kg"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/sleekit/front.svg",
  13937. extra: 4693 / 4487,
  13938. bottom: 0.012
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Minimum Height",
  13945. height: math.unit(10, "meters")
  13946. },
  13947. {
  13948. name: "Smaller",
  13949. height: math.unit(25, "meters")
  13950. },
  13951. {
  13952. name: "Larger",
  13953. height: math.unit(38, "meters"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Maximum height",
  13958. height: math.unit(100, "meters")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13964. {
  13965. front: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(150, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/nillia/front.svg",
  13971. extra: 2195 / 2037,
  13972. bottom: 0.005
  13973. }
  13974. },
  13975. back: {
  13976. height: math.unit(6, "feet"),
  13977. weight: math.unit(150, "lb"),
  13978. name: "Back",
  13979. image: {
  13980. source: "./media/characters/nillia/back.svg",
  13981. extra: 2195 / 2037,
  13982. bottom: 0.005
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Canon Height",
  13989. height: math.unit(489, "feet"),
  13990. default: true
  13991. }
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/mesmyriza/front.svg",
  14003. extra: 2067 / 1784,
  14004. bottom: 0.035
  14005. }
  14006. },
  14007. foot: {
  14008. height: math.unit(6 / (250 / 35), "feet"),
  14009. name: "Foot",
  14010. image: {
  14011. source: "./media/characters/mesmyriza/foot.svg"
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(457, "meters"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Megamacro",
  14023. height: math.unit(8, "megameters")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(6, "feet"),
  14032. weight: math.unit(250, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/saudade/front.svg",
  14036. extra: 1172 / 1139,
  14037. bottom: 0.035
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Micro",
  14044. height: math.unit(3, "inches")
  14045. },
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(6, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(50, "feet")
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(2800, "feet")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(5 + 4 / 12, "feet"),
  14066. weight: math.unit(100, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/keireer/front.svg",
  14070. extra: 716 / 666,
  14071. bottom: 0.05
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(5 + 4 / 12, "feet"),
  14079. default: true
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(90, "kg"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/mirja/front.svg",
  14092. extra: 1789 / 1683,
  14093. bottom: 0.05
  14094. }
  14095. },
  14096. frontDressed: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(90, "lb"),
  14099. name: "Front (Dressed)",
  14100. image: {
  14101. source: "./media/characters/mirja/front-dressed.svg",
  14102. extra: 1789 / 1683,
  14103. bottom: 0.05
  14104. }
  14105. },
  14106. back: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(90, "lb"),
  14109. name: "Back",
  14110. image: {
  14111. source: "./media/characters/mirja/back.svg",
  14112. extra: 953 / 917,
  14113. bottom: 0.017
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "\"Incognito\"",
  14120. height: math.unit(3, "meters")
  14121. },
  14122. {
  14123. name: "Strolling Size",
  14124. height: math.unit(15, "km")
  14125. },
  14126. {
  14127. name: "Larger Strolling Size",
  14128. height: math.unit(400, "km")
  14129. },
  14130. {
  14131. name: "Preferred Size",
  14132. height: math.unit(5000, "km")
  14133. },
  14134. {
  14135. name: "True Size",
  14136. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(15, "feet"),
  14146. weight: math.unit(880, "kg"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/nightraver/front.svg",
  14150. extra: 2444 / 2160,
  14151. bottom: 0.027
  14152. }
  14153. },
  14154. back: {
  14155. height: math.unit(15, "feet"),
  14156. weight: math.unit(880, "kg"),
  14157. name: "Back",
  14158. image: {
  14159. source: "./media/characters/nightraver/back.svg",
  14160. extra: 2309 / 2180,
  14161. bottom: 0.005
  14162. }
  14163. },
  14164. sole: {
  14165. height: math.unit(2.878, "feet"),
  14166. name: "Sole",
  14167. image: {
  14168. source: "./media/characters/nightraver/sole.svg"
  14169. }
  14170. },
  14171. foot: {
  14172. height: math.unit(2.285, "feet"),
  14173. name: "Foot",
  14174. image: {
  14175. source: "./media/characters/nightraver/foot.svg"
  14176. }
  14177. },
  14178. maw: {
  14179. height: math.unit(2.67, "feet"),
  14180. name: "Maw",
  14181. image: {
  14182. source: "./media/characters/nightraver/maw.svg"
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Micro",
  14189. height: math.unit(1, "cm")
  14190. },
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(15, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(300, "feet")
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(300, "miles")
  14203. },
  14204. {
  14205. name: "Gigamacro",
  14206. height: math.unit(10000, "miles")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14212. {
  14213. side: {
  14214. height: math.unit(2, "inches"),
  14215. weight: math.unit(5, "grams"),
  14216. name: "Side",
  14217. image: {
  14218. source: "./media/characters/arc/side.svg"
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(2, "inches"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(1.1938, "meters"),
  14235. weight: math.unit(54, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/nebula-shahar/front.svg",
  14239. extra: 1642 / 1436,
  14240. bottom: 0.06
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Megamicro",
  14247. height: math.unit(0.3, "mm")
  14248. },
  14249. {
  14250. name: "Micro",
  14251. height: math.unit(3, "cm")
  14252. },
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(138, "cm"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(30, "m")
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(5.24, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/shayla/front.svg",
  14273. extra: 1512 / 1414,
  14274. bottom: 0.01
  14275. }
  14276. },
  14277. back: {
  14278. height: math.unit(5.24, "feet"),
  14279. weight: math.unit(150, "lb"),
  14280. name: "Back",
  14281. image: {
  14282. source: "./media/characters/shayla/back.svg",
  14283. extra: 1512 / 1414
  14284. }
  14285. },
  14286. hand: {
  14287. height: math.unit(0.7781496062992126, "feet"),
  14288. name: "Hand",
  14289. image: {
  14290. source: "./media/characters/shayla/hand.svg"
  14291. }
  14292. },
  14293. foot: {
  14294. height: math.unit(1.4206036745406823, "feet"),
  14295. name: "Foot",
  14296. image: {
  14297. source: "./media/characters/shayla/foot.svg"
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Micro",
  14304. height: math.unit(0.32, "feet")
  14305. },
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(5.24, "feet"),
  14309. default: true
  14310. },
  14311. {
  14312. name: "Macro",
  14313. height: math.unit(492.12, "feet")
  14314. },
  14315. {
  14316. name: "Megamacro",
  14317. height: math.unit(186.41, "miles")
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(2.2, "m"),
  14326. weight: math.unit(120, "kg"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/pia-jr/front.svg",
  14330. extra: 1000 / 970,
  14331. bottom: 0.035
  14332. }
  14333. },
  14334. hand: {
  14335. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14336. name: "Hand",
  14337. image: {
  14338. source: "./media/characters/pia-jr/hand.svg"
  14339. }
  14340. },
  14341. paw: {
  14342. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14343. name: "Paw",
  14344. image: {
  14345. source: "./media/characters/pia-jr/paw.svg"
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(1.2, "cm")
  14353. },
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(2.2, "m"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Macro",
  14361. height: math.unit(180, "m")
  14362. },
  14363. {
  14364. name: "Megamacro",
  14365. height: math.unit(420, "km")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(2, "m"),
  14374. weight: math.unit(115, "kg"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/pia-sr/front.svg",
  14378. extra: 760 / 730,
  14379. bottom: 0.015
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(2, "m"),
  14384. weight: math.unit(115, "kg"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/pia-sr/back.svg",
  14388. extra: 760 / 730,
  14389. bottom: 0.01
  14390. }
  14391. },
  14392. hand: {
  14393. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14394. name: "Hand",
  14395. image: {
  14396. source: "./media/characters/pia-sr/hand.svg"
  14397. }
  14398. },
  14399. foot: {
  14400. height: math.unit(1.83, "feet"),
  14401. name: "Foot",
  14402. image: {
  14403. source: "./media/characters/pia-sr/foot.svg"
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Micro",
  14410. height: math.unit(88, "mm")
  14411. },
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(2, "m"),
  14415. default: true
  14416. },
  14417. {
  14418. name: "Macro",
  14419. height: math.unit(200, "m")
  14420. },
  14421. {
  14422. name: "Megamacro",
  14423. height: math.unit(420, "km")
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(8 + 2 / 12, "feet"),
  14432. weight: math.unit(300, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/kibibyte/front.svg",
  14436. extra: 2221 / 2098,
  14437. bottom: 0.04
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(8 + 2 / 12, "feet"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Socialable Macro",
  14449. height: math.unit(50, "feet")
  14450. },
  14451. {
  14452. name: "Macro",
  14453. height: math.unit(300, "feet")
  14454. },
  14455. {
  14456. name: "Megamacro",
  14457. height: math.unit(500, "miles")
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(6, "feet"),
  14466. weight: math.unit(150, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/felix/front.svg",
  14470. extra: 762 / 722,
  14471. bottom: 0.02
  14472. }
  14473. },
  14474. frontClothed: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Front (Clothed)",
  14478. image: {
  14479. source: "./media/characters/felix/front-clothed.svg",
  14480. extra: 762 / 722,
  14481. bottom: 0.02
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(6 + 8 / 12, "feet"),
  14489. default: true
  14490. },
  14491. {
  14492. name: "Macro",
  14493. height: math.unit(2600, "feet")
  14494. },
  14495. {
  14496. name: "Megamacro",
  14497. height: math.unit(450, "miles")
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(6 + 1 / 12, "feet"),
  14506. weight: math.unit(250, "lb"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/tobo/front.svg",
  14510. extra: 608 / 586,
  14511. bottom: 0.023
  14512. }
  14513. },
  14514. back: {
  14515. height: math.unit(6 + 1 / 12, "feet"),
  14516. weight: math.unit(250, "lb"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/tobo/back.svg",
  14520. extra: 608 / 586
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Nano",
  14527. height: math.unit(2, "nm")
  14528. },
  14529. {
  14530. name: "Megamicro",
  14531. height: math.unit(0.1, "mm")
  14532. },
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(1, "inch"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Human-sized",
  14540. height: math.unit(6 + 1 / 12, "feet")
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(250, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(75, "miles")
  14549. },
  14550. {
  14551. name: "Texas-sized",
  14552. height: math.unit(750, "miles")
  14553. },
  14554. {
  14555. name: "Teramacro",
  14556. height: math.unit(50000, "miles")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(269, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/danny-kapowsky/front.svg",
  14569. extra: 766 / 736,
  14570. bottom: 0.044
  14571. }
  14572. },
  14573. back: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(269, "lb"),
  14576. name: "Back",
  14577. image: {
  14578. source: "./media/characters/danny-kapowsky/back.svg",
  14579. extra: 797 / 760,
  14580. bottom: 0.025
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Macro",
  14587. height: math.unit(150, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro+",
  14592. height: math.unit(200, "feet")
  14593. },
  14594. {
  14595. name: "Macro++",
  14596. height: math.unit(300, "feet")
  14597. },
  14598. {
  14599. name: "Macro+++",
  14600. height: math.unit(400, "feet")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14606. {
  14607. side: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(170, "lb"),
  14610. name: "Side",
  14611. image: {
  14612. source: "./media/characters/finn/side.svg",
  14613. extra: 1953 / 1807,
  14614. bottom: 0.057
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Megamacro",
  14621. height: math.unit(14445, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(5 + 6 / 12, "feet"),
  14631. weight: math.unit(125, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/roy/front.svg",
  14635. extra: 1,
  14636. bottom: 0.11
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Micro",
  14643. height: math.unit(3, "inches"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(5 + 6 / 12, "feet")
  14649. },
  14650. {
  14651. name: "Lesser Macro",
  14652. height: math.unit(60, "feet")
  14653. },
  14654. {
  14655. name: "Greater Macro",
  14656. height: math.unit(120, "feet")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(100, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/aevsivs/front.svg",
  14669. extra: 1,
  14670. bottom: 0.03
  14671. }
  14672. },
  14673. back: {
  14674. height: math.unit(6, "feet"),
  14675. weight: math.unit(100, "lb"),
  14676. name: "Back",
  14677. image: {
  14678. source: "./media/characters/aevsivs/back.svg"
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Micro",
  14685. height: math.unit(2, "inches"),
  14686. default: true
  14687. },
  14688. {
  14689. name: "Normal",
  14690. height: math.unit(5, "feet")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(5 + 7 / 12, "feet"),
  14699. weight: math.unit(159, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/hildegard/front.svg",
  14703. extra: 289 / 269,
  14704. bottom: 7.63 / 297.8
  14705. }
  14706. },
  14707. back: {
  14708. height: math.unit(5 + 7 / 12, "feet"),
  14709. weight: math.unit(159, "lb"),
  14710. name: "Back",
  14711. image: {
  14712. source: "./media/characters/hildegard/back.svg",
  14713. extra: 280 / 260,
  14714. bottom: 2.3 / 282
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(5 + 7 / 12, "feet"),
  14722. default: true
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14728. {
  14729. bernard: {
  14730. height: math.unit(2 + 7 / 12, "feet"),
  14731. weight: math.unit(66, "lb"),
  14732. name: "Bernard",
  14733. rename: true,
  14734. image: {
  14735. source: "./media/characters/bernard-wilder/bernard.svg",
  14736. extra: 192 / 128,
  14737. bottom: 0.05
  14738. }
  14739. },
  14740. wilder: {
  14741. height: math.unit(5 + 8 / 12, "feet"),
  14742. weight: math.unit(143, "lb"),
  14743. name: "Wilder",
  14744. rename: true,
  14745. image: {
  14746. source: "./media/characters/bernard-wilder/wilder.svg",
  14747. extra: 361 / 312,
  14748. bottom: 0.02
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(2 + 7 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14762. {
  14763. anthro: {
  14764. height: math.unit(6 + 1 / 12, "feet"),
  14765. weight: math.unit(155, "lb"),
  14766. name: "Anthro",
  14767. image: {
  14768. source: "./media/characters/hearth/anthro.svg",
  14769. extra: 260 / 250,
  14770. bottom: 0.02
  14771. }
  14772. },
  14773. feral: {
  14774. height: math.unit(3.78, "feet"),
  14775. weight: math.unit(35, "kg"),
  14776. name: "Feral",
  14777. image: {
  14778. source: "./media/characters/hearth/feral.svg",
  14779. extra: 153 / 135,
  14780. bottom: 0.03
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Normal",
  14787. height: math.unit(6 + 1 / 12, "feet"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14794. {
  14795. front: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(182, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/ingrid/front.svg",
  14801. extra: 294 / 268,
  14802. bottom: 0.027
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Normal",
  14809. height: math.unit(6, "feet"),
  14810. default: true
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14816. {
  14817. eevee: {
  14818. height: math.unit(2 + 10 / 12, "feet"),
  14819. weight: math.unit(86, "lb"),
  14820. name: "Malgam",
  14821. image: {
  14822. source: "./media/characters/malgam/eevee.svg",
  14823. extra: 218 / 180,
  14824. bottom: 0.2
  14825. }
  14826. },
  14827. sylveon: {
  14828. height: math.unit(4, "feet"),
  14829. weight: math.unit(101, "lb"),
  14830. name: "Future Malgam",
  14831. rename: true,
  14832. image: {
  14833. source: "./media/characters/malgam/sylveon.svg",
  14834. extra: 371 / 325,
  14835. bottom: 0.015
  14836. }
  14837. },
  14838. gigantamax: {
  14839. height: math.unit(50, "feet"),
  14840. name: "Gigantamax Malgam",
  14841. rename: true,
  14842. image: {
  14843. source: "./media/characters/malgam/gigantamax.svg"
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(2 + 10 / 12, "feet"),
  14851. default: true
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(5 + 11 / 12, "feet"),
  14860. weight: math.unit(188, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/fleur/front.svg",
  14864. extra: 309 / 283,
  14865. bottom: 0.007
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(5 + 11 / 12, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(5 + 4 / 12, "feet"),
  14882. weight: math.unit(122, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/jude/front.svg",
  14886. extra: 288 / 273,
  14887. bottom: 0.03
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(5 + 4 / 12, "feet"),
  14895. default: true
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14901. {
  14902. front: {
  14903. height: math.unit(5 + 11 / 12, "feet"),
  14904. weight: math.unit(190, "lb"),
  14905. name: "Front",
  14906. image: {
  14907. source: "./media/characters/seara/front.svg",
  14908. extra: 1,
  14909. bottom: 0.05
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Normal",
  14916. height: math.unit(5 + 11 / 12, "feet"),
  14917. default: true
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(16 + 5 / 12, "feet"),
  14926. weight: math.unit(524, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/caspian/front.svg",
  14930. extra: 1,
  14931. bottom: 0.04
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(16 + 5 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(5 + 7 / 12, "feet"),
  14948. weight: math.unit(170, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/mika/front.svg",
  14952. extra: 1,
  14953. bottom: 0.016
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Normal",
  14960. height: math.unit(5 + 7 / 12, "feet"),
  14961. default: true
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6 + 2 / 12, "feet"),
  14970. weight: math.unit(268, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/sol/front.svg",
  14974. extra: 247 / 231,
  14975. bottom: 0.05
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Normal",
  14982. height: math.unit(6 + 2 / 12, "feet"),
  14983. default: true
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14989. {
  14990. buizel: {
  14991. height: math.unit(2 + 5 / 12, "feet"),
  14992. weight: math.unit(87, "lb"),
  14993. name: "Buizel",
  14994. image: {
  14995. source: "./media/characters/umiko/buizel.svg",
  14996. extra: 172 / 157,
  14997. bottom: 0.01
  14998. }
  14999. },
  15000. floatzel: {
  15001. height: math.unit(5 + 9 / 12, "feet"),
  15002. weight: math.unit(250, "lb"),
  15003. name: "Floatzel",
  15004. image: {
  15005. source: "./media/characters/umiko/floatzel.svg",
  15006. extra: 262 / 248
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(2 + 5 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6 + 2 / 12, "feet"),
  15023. weight: math.unit(146, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/iliac/front.svg",
  15027. extra: 389 / 365,
  15028. bottom: 0.035
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(6 + 2 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(6, "feet"),
  15045. weight: math.unit(170, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/topaz/front.svg",
  15049. extra: 317 / 303,
  15050. bottom: 0.055
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(6, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(5 + 11 / 12, "feet"),
  15067. weight: math.unit(144, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/gabriel/front.svg",
  15071. extra: 285 / 262,
  15072. bottom: 0.004
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 11 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15086. {
  15087. side: {
  15088. height: math.unit(6 + 5 / 12, "feet"),
  15089. weight: math.unit(300, "lb"),
  15090. name: "Side",
  15091. image: {
  15092. source: "./media/characters/tempest-suicune/side.svg",
  15093. extra: 195 / 154,
  15094. bottom: 0.04
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(6 + 5 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(7 + 2 / 12, "feet"),
  15111. weight: math.unit(322, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/vulcan/front.svg",
  15115. extra: 154 / 147,
  15116. bottom: 0.04
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(7 + 2 / 12, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(5 + 10 / 12, "feet"),
  15133. weight: math.unit(264, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/gault/front.svg",
  15137. extra: 161 / 140,
  15138. bottom: 0.028
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(5 + 10 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/shard/front.svg",
  15159. extra: 273 / 238,
  15160. bottom: 0.02
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(3 + 6 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(5 + 11 / 12, "feet"),
  15177. weight: math.unit(146, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/ashe/front.svg",
  15181. extra: 400 / 373,
  15182. bottom: 0.01
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(5 + 11 / 12, "feet"),
  15190. default: true
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15196. {
  15197. front: {
  15198. height: math.unit(5 + 5 / 12, "feet"),
  15199. weight: math.unit(135, "lb"),
  15200. name: "Front",
  15201. image: {
  15202. source: "./media/characters/beatrix/front.svg",
  15203. extra: 392 / 379,
  15204. bottom: 0.01
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/ignatius/front.svg",
  15225. extra: 245 / 222,
  15226. bottom: 0.01
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(5 + 5 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6 + 2 / 12, "feet"),
  15243. weight: math.unit(138, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/mei-li/front.svg",
  15247. extra: 237 / 229,
  15248. bottom: 0.03
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6 + 2 / 12, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(2 + 4 / 12, "feet"),
  15265. weight: math.unit(62, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/puru/front.svg",
  15269. extra: 206 / 149,
  15270. bottom: 0.06
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(2 + 4 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15284. {
  15285. anthro: {
  15286. height: math.unit(5 + 8/12, "feet"),
  15287. weight: math.unit(200, "lb"),
  15288. energyNeed: math.unit(2000, "kcal"),
  15289. name: "Anthro",
  15290. image: {
  15291. source: "./media/characters/kee/anthro.svg",
  15292. extra: 3251/3184,
  15293. bottom: 250/3501
  15294. }
  15295. },
  15296. taur: {
  15297. height: math.unit(11, "feet"),
  15298. weight: math.unit(500, "lb"),
  15299. energyNeed: math.unit(5000, "kcal"),
  15300. name: "Taur",
  15301. image: {
  15302. source: "./media/characters/kee/taur.svg",
  15303. extra: 1362/1320,
  15304. bottom: 83/1445
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Normal",
  15311. height: math.unit(5 + 8/12, "feet"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Macro",
  15316. height: math.unit(35, "feet")
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15322. {
  15323. anthro: {
  15324. height: math.unit(7, "feet"),
  15325. weight: math.unit(190, "lb"),
  15326. name: "Anthro",
  15327. image: {
  15328. source: "./media/characters/cobalt-dracha/anthro.svg",
  15329. extra: 231 / 225,
  15330. bottom: 0.04
  15331. }
  15332. },
  15333. feral: {
  15334. height: math.unit(9 + 7 / 12, "feet"),
  15335. weight: math.unit(294, "lb"),
  15336. name: "Feral",
  15337. image: {
  15338. source: "./media/characters/cobalt-dracha/feral.svg",
  15339. extra: 692 / 633,
  15340. bottom: 0.05
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(7, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15354. {
  15355. fallen: {
  15356. height: math.unit(11 + 8 / 12, "feet"),
  15357. weight: math.unit(485, "lb"),
  15358. name: "Java (Fallen)",
  15359. rename: true,
  15360. image: {
  15361. source: "./media/characters/java/fallen.svg",
  15362. extra: 226 / 208,
  15363. bottom: 0.005
  15364. }
  15365. },
  15366. godkin: {
  15367. height: math.unit(10 + 6 / 12, "feet"),
  15368. weight: math.unit(328, "lb"),
  15369. name: "Java (Godkin)",
  15370. rename: true,
  15371. image: {
  15372. source: "./media/characters/java/godkin.svg",
  15373. extra: 270 / 262,
  15374. bottom: 0.02
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(11 + 8 / 12, "feet"),
  15382. default: true
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15388. {
  15389. front: {
  15390. height: math.unit(7 + 8 / 12, "feet"),
  15391. weight: math.unit(320, "lb"),
  15392. name: "Front",
  15393. image: {
  15394. source: "./media/characters/skoll/front.svg",
  15395. extra: 232 / 220,
  15396. bottom: 0.02
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(7 + 8 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(5 + 9 / 12, "feet"),
  15413. weight: math.unit(170, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/purna/front.svg",
  15417. extra: 239 / 229,
  15418. bottom: 0.01
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(5 + 9 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(5 + 9 / 12, "feet"),
  15435. weight: math.unit(142, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/kuva/front.svg",
  15439. extra: 281 / 271,
  15440. bottom: 0.006
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5 + 9 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15454. {
  15455. anthro: {
  15456. height: math.unit(9 + 2 / 12, "feet"),
  15457. weight: math.unit(270, "lb"),
  15458. name: "Anthro",
  15459. image: {
  15460. source: "./media/characters/embra/anthro.svg",
  15461. extra: 200 / 187,
  15462. bottom: 0.02
  15463. }
  15464. },
  15465. feral: {
  15466. height: math.unit(18 + 8 / 12, "feet"),
  15467. weight: math.unit(576, "lb"),
  15468. name: "Feral",
  15469. image: {
  15470. source: "./media/characters/embra/feral.svg",
  15471. extra: 152 / 137,
  15472. bottom: 0.037
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(9 + 2 / 12, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15486. {
  15487. anthro: {
  15488. height: math.unit(10 + 9 / 12, "feet"),
  15489. weight: math.unit(224, "lb"),
  15490. name: "Anthro",
  15491. image: {
  15492. source: "./media/characters/grottos/anthro.svg",
  15493. extra: 350 / 332,
  15494. bottom: 0.045
  15495. }
  15496. },
  15497. feral: {
  15498. height: math.unit(20 + 7 / 12, "feet"),
  15499. weight: math.unit(629, "lb"),
  15500. name: "Feral",
  15501. image: {
  15502. source: "./media/characters/grottos/feral.svg",
  15503. extra: 207 / 190,
  15504. bottom: 0.05
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(10 + 9 / 12, "feet"),
  15512. default: true
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15518. {
  15519. anthro: {
  15520. height: math.unit(9 + 6 / 12, "feet"),
  15521. weight: math.unit(298, "lb"),
  15522. name: "Anthro",
  15523. image: {
  15524. source: "./media/characters/frifna/anthro.svg",
  15525. extra: 282 / 269,
  15526. bottom: 0.015
  15527. }
  15528. },
  15529. feral: {
  15530. height: math.unit(16 + 2 / 12, "feet"),
  15531. weight: math.unit(624, "lb"),
  15532. name: "Feral",
  15533. image: {
  15534. source: "./media/characters/frifna/feral.svg"
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(9 + 6 / 12, "feet"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6 + 2 / 12, "feet"),
  15551. weight: math.unit(168, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/elise/front.svg",
  15555. extra: 276 / 271
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(6 + 2 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(5 + 10 / 12, "feet"),
  15572. weight: math.unit(210, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/glade/front.svg",
  15576. extra: 258 / 247,
  15577. bottom: 0.008
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(5 + 10 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5 + 10 / 12, "feet"),
  15594. weight: math.unit(129, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/rina/front.svg",
  15598. extra: 266 / 255,
  15599. bottom: 0.005
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 10 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6 + 1 / 12, "feet"),
  15616. weight: math.unit(192, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/veronica/front.svg",
  15620. extra: 319 / 309,
  15621. bottom: 0.005
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(6 + 1 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(9 + 3 / 12, "feet"),
  15638. weight: math.unit(1100, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/braxton/front.svg",
  15642. extra: 1057 / 984,
  15643. bottom: 0.05
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(9 + 3 / 12, "feet")
  15651. },
  15652. {
  15653. name: "Giant",
  15654. height: math.unit(300, "feet"),
  15655. default: true
  15656. },
  15657. {
  15658. name: "Macro",
  15659. height: math.unit(700, "feet")
  15660. },
  15661. {
  15662. name: "Megamacro",
  15663. height: math.unit(6000, "feet")
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(6 + 7 / 12, "feet"),
  15672. weight: math.unit(150, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/blue-feyonics/front.svg",
  15676. extra: 1403 / 1306,
  15677. bottom: 0.047
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(6 + 7 / 12, "feet"),
  15685. default: true
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(1.8, "meters"),
  15694. weight: math.unit(60, "kg"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/maxwell/front.svg",
  15698. extra: 2060 / 1873
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Micro",
  15705. height: math.unit(1, "mm")
  15706. },
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(1.8, "meter"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Macro",
  15714. height: math.unit(30, "meters")
  15715. },
  15716. {
  15717. name: "Megamacro",
  15718. height: math.unit(10, "km")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(6, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/jack/front.svg",
  15731. extra: 1754 / 1640,
  15732. bottom: 0.01
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(80000, "feet"),
  15740. default: true
  15741. },
  15742. {
  15743. name: "Max size",
  15744. height: math.unit(10, "lightyears")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15750. {
  15751. urban: {
  15752. height: math.unit(5, "feet"),
  15753. weight: math.unit(240, "lb"),
  15754. name: "Urban",
  15755. image: {
  15756. source: "./media/characters/cafat/urban.svg",
  15757. extra: 1223/1126,
  15758. bottom: 205/1428
  15759. }
  15760. },
  15761. summer: {
  15762. height: math.unit(5, "feet"),
  15763. weight: math.unit(240, "lb"),
  15764. name: "Summer",
  15765. image: {
  15766. source: "./media/characters/cafat/summer.svg",
  15767. extra: 1223/1126,
  15768. bottom: 205/1428
  15769. }
  15770. },
  15771. winter: {
  15772. height: math.unit(5, "feet"),
  15773. weight: math.unit(240, "lb"),
  15774. name: "Winter",
  15775. image: {
  15776. source: "./media/characters/cafat/winter.svg",
  15777. extra: 1223/1126,
  15778. bottom: 205/1428
  15779. }
  15780. },
  15781. lingerie: {
  15782. height: math.unit(5, "feet"),
  15783. weight: math.unit(240, "lb"),
  15784. name: "Lingerie",
  15785. image: {
  15786. source: "./media/characters/cafat/lingerie.svg",
  15787. extra: 1223/1126,
  15788. bottom: 205/1428
  15789. }
  15790. },
  15791. upright: {
  15792. height: math.unit(6.3, "feet"),
  15793. weight: math.unit(240, "lb"),
  15794. name: "Upright",
  15795. image: {
  15796. source: "./media/characters/cafat/upright.svg",
  15797. bottom: 0.01
  15798. }
  15799. },
  15800. uprightFull: {
  15801. height: math.unit(6.3, "feet"),
  15802. weight: math.unit(240, "lb"),
  15803. name: "Upright (Full)",
  15804. image: {
  15805. source: "./media/characters/cafat/upright-full.svg",
  15806. bottom: 0.01
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Small",
  15813. height: math.unit(5, "feet"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Large",
  15818. height: math.unit(13, "feet")
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(6, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/verin-raharra/front.svg",
  15831. extra: 5019 / 4835,
  15832. bottom: 0.023
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(7 + 5 / 12, "feet"),
  15840. default: true
  15841. },
  15842. {
  15843. name: "Upsized",
  15844. height: math.unit(20, "feet")
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(7, "feet"),
  15853. weight: math.unit(230, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/nakata/front.svg",
  15857. extra: 1.005,
  15858. bottom: 0.01
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(7, "feet"),
  15866. default: true
  15867. },
  15868. {
  15869. name: "Big",
  15870. height: math.unit(14, "feet")
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(400, "feet")
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(4.91, "feet"),
  15883. weight: math.unit(100, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/lily/front.svg",
  15887. extra: 1585 / 1415,
  15888. bottom: 0.02
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(4.91, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15902. {
  15903. laying: {
  15904. height: math.unit(4 + 4 / 12, "feet"),
  15905. weight: math.unit(600, "lb"),
  15906. name: "Laying",
  15907. image: {
  15908. source: "./media/characters/sheila/laying.svg",
  15909. extra: 1333 / 1265,
  15910. bottom: 0.16
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(4 + 4 / 12, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(6, "feet"),
  15927. weight: math.unit(190, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/sax/front.svg",
  15931. extra: 1187 / 973,
  15932. bottom: 0.042
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Micro",
  15939. height: math.unit(4, "inches"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/pandora/front.svg",
  15953. extra: 2720 / 2556,
  15954. bottom: 0.015
  15955. }
  15956. },
  15957. back: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(150, "lb"),
  15960. name: "Back",
  15961. image: {
  15962. source: "./media/characters/pandora/back.svg",
  15963. extra: 2720 / 2556,
  15964. bottom: 0.01
  15965. }
  15966. },
  15967. beans: {
  15968. height: math.unit(6 / 8, "feet"),
  15969. name: "Beans",
  15970. image: {
  15971. source: "./media/characters/pandora/beans.svg"
  15972. }
  15973. },
  15974. collar: {
  15975. height: math.unit(0.31, "feet"),
  15976. name: "Collar",
  15977. image: {
  15978. source: "./media/characters/pandora/collar.svg"
  15979. }
  15980. },
  15981. skirt: {
  15982. height: math.unit(6, "feet"),
  15983. weight: math.unit(150, "lb"),
  15984. name: "Skirt",
  15985. image: {
  15986. source: "./media/characters/pandora/skirt.svg",
  15987. extra: 1622 / 1525,
  15988. bottom: 0.015
  15989. }
  15990. },
  15991. hoodie: {
  15992. height: math.unit(6, "feet"),
  15993. weight: math.unit(150, "lb"),
  15994. name: "Hoodie",
  15995. image: {
  15996. source: "./media/characters/pandora/hoodie.svg",
  15997. extra: 1622 / 1525,
  15998. bottom: 0.015
  15999. }
  16000. },
  16001. casual: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(150, "lb"),
  16004. name: "Casual",
  16005. image: {
  16006. source: "./media/characters/pandora/casual.svg",
  16007. extra: 1622 / 1525,
  16008. bottom: 0.015
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(6, "feet")
  16016. },
  16017. {
  16018. name: "Big Steppy",
  16019. height: math.unit(1, "km"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Galactic Steppy",
  16024. height: math.unit(2, "gigameters")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16030. {
  16031. side: {
  16032. height: math.unit(10, "feet"),
  16033. weight: math.unit(800, "kg"),
  16034. name: "Side",
  16035. image: {
  16036. source: "./media/characters/venio-darcony/side.svg",
  16037. extra: 1373 / 1003,
  16038. bottom: 0.037
  16039. }
  16040. },
  16041. front: {
  16042. height: math.unit(19, "feet"),
  16043. weight: math.unit(800, "kg"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/venio-darcony/front.svg"
  16047. }
  16048. },
  16049. back: {
  16050. height: math.unit(19, "feet"),
  16051. weight: math.unit(800, "kg"),
  16052. name: "Back",
  16053. image: {
  16054. source: "./media/characters/venio-darcony/back.svg"
  16055. }
  16056. },
  16057. sideNsfw: {
  16058. height: math.unit(10, "feet"),
  16059. weight: math.unit(800, "kg"),
  16060. name: "Side (NSFW)",
  16061. image: {
  16062. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16063. extra: 1373 / 1003,
  16064. bottom: 0.037
  16065. }
  16066. },
  16067. frontNsfw: {
  16068. height: math.unit(19, "feet"),
  16069. weight: math.unit(800, "kg"),
  16070. name: "Front (NSFW)",
  16071. image: {
  16072. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16073. }
  16074. },
  16075. backNsfw: {
  16076. height: math.unit(19, "feet"),
  16077. weight: math.unit(800, "kg"),
  16078. name: "Back (NSFW)",
  16079. image: {
  16080. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16081. }
  16082. },
  16083. sideArmored: {
  16084. height: math.unit(10, "feet"),
  16085. weight: math.unit(800, "kg"),
  16086. name: "Side (Armored)",
  16087. image: {
  16088. source: "./media/characters/venio-darcony/side-armored.svg",
  16089. extra: 1373 / 1003,
  16090. bottom: 0.037
  16091. }
  16092. },
  16093. frontArmored: {
  16094. height: math.unit(19, "feet"),
  16095. weight: math.unit(900, "kg"),
  16096. name: "Front (Armored)",
  16097. image: {
  16098. source: "./media/characters/venio-darcony/front-armored.svg"
  16099. }
  16100. },
  16101. backArmored: {
  16102. height: math.unit(19, "feet"),
  16103. weight: math.unit(900, "kg"),
  16104. name: "Back (Armored)",
  16105. image: {
  16106. source: "./media/characters/venio-darcony/back-armored.svg"
  16107. }
  16108. },
  16109. sword: {
  16110. height: math.unit(10, "feet"),
  16111. weight: math.unit(50, "lb"),
  16112. name: "Sword",
  16113. image: {
  16114. source: "./media/characters/venio-darcony/sword.svg"
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(10, "feet")
  16122. },
  16123. {
  16124. name: "Macro",
  16125. height: math.unit(130, "feet"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro+",
  16130. height: math.unit(240, "feet")
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/veski/front.svg",
  16143. extra: 1299 / 1225,
  16144. bottom: 0.04
  16145. }
  16146. },
  16147. back: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(150, "lb"),
  16150. name: "Back",
  16151. image: {
  16152. source: "./media/characters/veski/back.svg",
  16153. extra: 1299 / 1225,
  16154. bottom: 0.008
  16155. }
  16156. },
  16157. maw: {
  16158. height: math.unit(1.5 * 1.21, "feet"),
  16159. name: "Maw",
  16160. image: {
  16161. source: "./media/characters/veski/maw.svg"
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Macro",
  16168. height: math.unit(2, "km"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5 + 7 / 12, "feet"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/isabelle/front.svg",
  16181. extra: 2130 / 1976,
  16182. bottom: 0.05
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Supermicro",
  16189. height: math.unit(10, "micrometers")
  16190. },
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(1, "inch")
  16194. },
  16195. {
  16196. name: "Tiny",
  16197. height: math.unit(5, "inches")
  16198. },
  16199. {
  16200. name: "Standard",
  16201. height: math.unit(5 + 7 / 12, "inches")
  16202. },
  16203. {
  16204. name: "Macro",
  16205. height: math.unit(80, "meters"),
  16206. default: true
  16207. },
  16208. {
  16209. name: "Megamacro",
  16210. height: math.unit(250, "meters")
  16211. },
  16212. {
  16213. name: "Gigamacro",
  16214. height: math.unit(5, "km")
  16215. },
  16216. {
  16217. name: "Cosmic",
  16218. height: math.unit(2.5e6, "miles")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(6, "feet"),
  16227. weight: math.unit(150, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/hanzo/front.svg",
  16231. extra: 374 / 344,
  16232. bottom: 0.02
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(8, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(7, "feet"),
  16249. weight: math.unit(130, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/anna/front.svg",
  16253. extra: 169 / 145,
  16254. bottom: 0.06
  16255. }
  16256. },
  16257. full: {
  16258. height: math.unit(4.96, "feet"),
  16259. weight: math.unit(220, "lb"),
  16260. name: "Full",
  16261. image: {
  16262. source: "./media/characters/anna/full.svg",
  16263. extra: 138 / 114,
  16264. bottom: 0.15
  16265. }
  16266. },
  16267. tongue: {
  16268. height: math.unit(2.53, "feet"),
  16269. name: "Tongue",
  16270. image: {
  16271. source: "./media/characters/anna/tongue.svg"
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(7, "feet"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(7, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/ian-corvid/front.svg",
  16292. extra: 150 / 142,
  16293. bottom: 0.02
  16294. }
  16295. },
  16296. back: {
  16297. height: math.unit(7, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Back",
  16300. image: {
  16301. source: "./media/characters/ian-corvid/back.svg",
  16302. extra: 150 / 143,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. stomping: {
  16307. height: math.unit(7, "feet"),
  16308. weight: math.unit(150, "lb"),
  16309. name: "Stomping",
  16310. image: {
  16311. source: "./media/characters/ian-corvid/stomping.svg",
  16312. extra: 76 / 72
  16313. }
  16314. },
  16315. sitting: {
  16316. height: math.unit(7 / 1.8, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Sitting",
  16319. image: {
  16320. source: "./media/characters/ian-corvid/sitting.svg",
  16321. extra: 1400 / 1269,
  16322. bottom: 0.15
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Tiny Microw",
  16329. height: math.unit(1, "inch")
  16330. },
  16331. {
  16332. name: "Microw",
  16333. height: math.unit(6, "inches")
  16334. },
  16335. {
  16336. name: "Crow",
  16337. height: math.unit(7 + 1 / 12, "feet"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macrow",
  16342. height: math.unit(176, "feet")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(5 + 7 / 12, "feet"),
  16351. weight: math.unit(147, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/natalie-kellon/front.svg",
  16355. extra: 1214 / 1141,
  16356. bottom: 0.02
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Micro",
  16363. height: math.unit(1 / 16, "inch")
  16364. },
  16365. {
  16366. name: "Tiny",
  16367. height: math.unit(4, "inches")
  16368. },
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(5 + 7 / 12, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Amazon",
  16376. height: math.unit(12, "feet")
  16377. },
  16378. {
  16379. name: "Giantess",
  16380. height: math.unit(160, "meters")
  16381. },
  16382. {
  16383. name: "Titaness",
  16384. height: math.unit(800, "meters")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/alluria/front.svg",
  16397. extra: 806 / 738,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. side: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(150, "lb"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/alluria/side.svg",
  16407. extra: 800 / 750,
  16408. }
  16409. },
  16410. back: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(150, "lb"),
  16413. name: "Back",
  16414. image: {
  16415. source: "./media/characters/alluria/back.svg",
  16416. extra: 806 / 738,
  16417. }
  16418. },
  16419. frontMaid: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(150, "lb"),
  16422. name: "Front (Maid)",
  16423. image: {
  16424. source: "./media/characters/alluria/front-maid.svg",
  16425. extra: 806 / 738,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. sideMaid: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(150, "lb"),
  16432. name: "Side (Maid)",
  16433. image: {
  16434. source: "./media/characters/alluria/side-maid.svg",
  16435. extra: 800 / 750,
  16436. bottom: 0.005
  16437. }
  16438. },
  16439. backMaid: {
  16440. height: math.unit(6, "feet"),
  16441. weight: math.unit(150, "lb"),
  16442. name: "Back (Maid)",
  16443. image: {
  16444. source: "./media/characters/alluria/back-maid.svg",
  16445. extra: 806 / 738,
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Micro",
  16452. height: math.unit(6, "inches"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(6, "feet"),
  16462. weight: math.unit(150, "lb"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/kyle/front.svg",
  16466. extra: 1069 / 962,
  16467. bottom: 77.228 / 1727.45
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(150, "feet"),
  16475. default: true
  16476. },
  16477. ]
  16478. ))
  16479. characterMakers.push(() => makeCharacter(
  16480. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16481. {
  16482. front: {
  16483. height: math.unit(6, "feet"),
  16484. weight: math.unit(300, "lb"),
  16485. name: "Front",
  16486. image: {
  16487. source: "./media/characters/duncan/front.svg",
  16488. extra: 1650 / 1482,
  16489. bottom: 0.05
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(100, "feet"),
  16497. default: true
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(5 + 4 / 12, "feet"),
  16506. weight: math.unit(220, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/memory/front.svg",
  16510. extra: 3641 / 3545,
  16511. bottom: 0.03
  16512. }
  16513. },
  16514. back: {
  16515. height: math.unit(5 + 4 / 12, "feet"),
  16516. weight: math.unit(220, "lb"),
  16517. name: "Back",
  16518. image: {
  16519. source: "./media/characters/memory/back.svg",
  16520. extra: 3641 / 3545,
  16521. bottom: 0.025
  16522. }
  16523. },
  16524. frontSkirt: {
  16525. height: math.unit(5 + 4 / 12, "feet"),
  16526. weight: math.unit(220, "lb"),
  16527. name: "Front (Skirt)",
  16528. image: {
  16529. source: "./media/characters/memory/front-skirt.svg",
  16530. extra: 3641 / 3545,
  16531. bottom: 0.03
  16532. }
  16533. },
  16534. frontDress: {
  16535. height: math.unit(5 + 4 / 12, "feet"),
  16536. weight: math.unit(220, "lb"),
  16537. name: "Front (Dress)",
  16538. image: {
  16539. source: "./media/characters/memory/front-dress.svg",
  16540. extra: 3641 / 3545,
  16541. bottom: 0.03
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Micro",
  16548. height: math.unit(6, "inches"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(5 + 4 / 12, "feet")
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(4 + 11 / 12, "feet"),
  16562. weight: math.unit(100, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/luno/front.svg",
  16566. extra: 1535 / 1487,
  16567. bottom: 0.03
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Micro",
  16574. height: math.unit(3, "inches")
  16575. },
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(4 + 11 / 12, "feet"),
  16579. default: true
  16580. },
  16581. {
  16582. name: "Macro",
  16583. height: math.unit(300, "feet")
  16584. },
  16585. {
  16586. name: "Megamacro",
  16587. height: math.unit(700, "miles")
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6 + 2 / 12, "feet"),
  16596. weight: math.unit(170, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/jamesy/front.svg",
  16600. extra: 440 / 382,
  16601. bottom: 0.005
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Micro",
  16608. height: math.unit(3, "inches")
  16609. },
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(6 + 2 / 12, "feet"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Macro",
  16617. height: math.unit(300, "feet")
  16618. },
  16619. {
  16620. name: "Megamacro",
  16621. height: math.unit(700, "miles")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(160, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/mark/front.svg",
  16634. extra: 3300 / 3100,
  16635. bottom: 136.42 / 3440.47
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(120, "meters")
  16643. },
  16644. {
  16645. name: "Bigger Macro",
  16646. height: math.unit(350, "meters")
  16647. },
  16648. {
  16649. name: "Megamacro",
  16650. height: math.unit(8, "km"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Continental",
  16655. height: math.unit(4550, "km")
  16656. },
  16657. {
  16658. name: "Planetary",
  16659. height: math.unit(65000, "km")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(400, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/mac/front.svg",
  16672. extra: 1048 / 987.7,
  16673. bottom: 60 / 1107.6,
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Macro",
  16680. height: math.unit(500, "feet"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(5 + 2 / 12, "feet"),
  16690. weight: math.unit(190, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/bari/front.svg",
  16694. extra: 3156 / 2880,
  16695. bottom: 0.03
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(5 + 2 / 12, "feet"),
  16700. weight: math.unit(190, "lb"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/bari/back.svg",
  16704. extra: 3260 / 2834,
  16705. bottom: 0.025
  16706. }
  16707. },
  16708. frontPlush: {
  16709. height: math.unit(5 + 2 / 12, "feet"),
  16710. weight: math.unit(190, "lb"),
  16711. name: "Front (Plush)",
  16712. image: {
  16713. source: "./media/characters/bari/front-plush.svg",
  16714. extra: 1112 / 1061,
  16715. bottom: 0.002
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Micro",
  16722. height: math.unit(3, "inches")
  16723. },
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(5 + 2 / 12, "feet"),
  16727. default: true
  16728. },
  16729. {
  16730. name: "Macro",
  16731. height: math.unit(20, "feet")
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(6 + 1 / 12, "feet"),
  16740. weight: math.unit(275, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/hunter-misha-raven/front.svg"
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Mortal",
  16750. height: math.unit(6 + 1 / 12, "feet")
  16751. },
  16752. {
  16753. name: "Divine",
  16754. height: math.unit(1.12134e34, "parsecs"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6 + 3 / 12, "feet"),
  16764. weight: math.unit(220, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/max-calore/front.svg",
  16768. extra: 1700 / 1648,
  16769. bottom: 0.01
  16770. }
  16771. },
  16772. back: {
  16773. height: math.unit(6 + 3 / 12, "feet"),
  16774. weight: math.unit(220, "lb"),
  16775. name: "Back",
  16776. image: {
  16777. source: "./media/characters/max-calore/back.svg",
  16778. extra: 1700 / 1648,
  16779. bottom: 0.01
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(6 + 3 / 12, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16793. {
  16794. side: {
  16795. height: math.unit(2 + 8 / 12, "feet"),
  16796. weight: math.unit(99, "lb"),
  16797. name: "Side",
  16798. image: {
  16799. source: "./media/characters/aspen/side.svg",
  16800. extra: 152 / 138,
  16801. bottom: 0.032
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(2 + 8 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16815. {
  16816. side: {
  16817. height: math.unit(3 + 2 / 12, "feet"),
  16818. weight: math.unit(224, "lb"),
  16819. name: "Side",
  16820. image: {
  16821. source: "./media/characters/sheila-feral-wolf/side.svg",
  16822. extra: 179 / 166,
  16823. bottom: 0.03
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(3 + 2 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16837. {
  16838. side: {
  16839. height: math.unit(1 + 9 / 12, "feet"),
  16840. weight: math.unit(38, "lb"),
  16841. name: "Side",
  16842. image: {
  16843. source: "./media/characters/michelle/side.svg",
  16844. extra: 147 / 136.7,
  16845. bottom: 0.03
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(1 + 9 / 12, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(1 + 1 / 12, "feet"),
  16862. weight: math.unit(18, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/nino/front.svg"
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(1 + 1 / 12, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16879. {
  16880. front: {
  16881. height: math.unit(1, "feet"),
  16882. weight: math.unit(16, "lb"),
  16883. name: "Front",
  16884. image: {
  16885. source: "./media/characters/viola/front.svg"
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(1, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(6 + 5 / 12, "feet"),
  16902. weight: math.unit(580, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/atlas/front.svg",
  16906. extra: 298.5 / 290,
  16907. bottom: 0.015
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(6 + 5 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16921. {
  16922. side: {
  16923. height: math.unit(1 + 10 / 12, "feet"),
  16924. weight: math.unit(25, "lb"),
  16925. name: "Side",
  16926. image: {
  16927. source: "./media/characters/davy/side.svg",
  16928. extra: 200 / 170,
  16929. bottom: 0.01
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(1 + 10 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16943. {
  16944. side: {
  16945. height: math.unit(4 + 8 / 12, "feet"),
  16946. weight: math.unit(166, "lb"),
  16947. name: "Side",
  16948. image: {
  16949. source: "./media/characters/fiona/side.svg",
  16950. extra: 232 / 220,
  16951. bottom: 0.03
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(4 + 8 / 12, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16965. {
  16966. front: {
  16967. height: math.unit(2, "feet"),
  16968. weight: math.unit(62, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/lyla/front.svg",
  16972. bottom: 0.1
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(2, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16986. {
  16987. side: {
  16988. height: math.unit(1.8, "feet"),
  16989. weight: math.unit(44, "lb"),
  16990. name: "Side",
  16991. image: {
  16992. source: "./media/characters/perseus/side.svg",
  16993. bottom: 0.21
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(1.8, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17007. {
  17008. side: {
  17009. height: math.unit(4 + 2 / 12, "feet"),
  17010. weight: math.unit(20, "lb"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/remus/side.svg"
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(4 + 2 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(4 + 11 / 12, "feet"),
  17030. weight: math.unit(114, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/raf/front.svg",
  17034. bottom: 20.5 / 1863
  17035. }
  17036. },
  17037. side: {
  17038. height: math.unit(4 + 11 / 12, "feet"),
  17039. weight: math.unit(114, "lb"),
  17040. name: "Side",
  17041. image: {
  17042. source: "./media/characters/raf/side.svg",
  17043. bottom: 22 / 1822
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Micro",
  17050. height: math.unit(2, "inches")
  17051. },
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(4 + 11 / 12, "feet"),
  17055. default: true
  17056. },
  17057. {
  17058. name: "Macro",
  17059. height: math.unit(70, "feet")
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(1.5, "meters"),
  17068. weight: math.unit(68, "kg"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/liam-einarr/front.svg",
  17072. extra: 2822 / 2666
  17073. }
  17074. },
  17075. back: {
  17076. height: math.unit(1.5, "meters"),
  17077. weight: math.unit(68, "kg"),
  17078. name: "Back",
  17079. image: {
  17080. source: "./media/characters/liam-einarr/back.svg",
  17081. extra: 2822 / 2666,
  17082. bottom: 0.015
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(1.5, "meters"),
  17090. default: true
  17091. },
  17092. {
  17093. name: "Macro",
  17094. height: math.unit(150, "meters")
  17095. },
  17096. {
  17097. name: "Megamacro",
  17098. height: math.unit(35, "km")
  17099. },
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(6, "feet"),
  17107. weight: math.unit(75, "kg"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/linda/front.svg",
  17111. extra: 930 / 874,
  17112. bottom: 0.004
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(6, "feet"),
  17120. default: true
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(6 + 8 / 12, "feet"),
  17129. weight: math.unit(220, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/caylex/front.svg",
  17133. extra: 821 / 772,
  17134. bottom: 0.07
  17135. }
  17136. },
  17137. back: {
  17138. height: math.unit(6 + 8 / 12, "feet"),
  17139. weight: math.unit(220, "lb"),
  17140. name: "Back",
  17141. image: {
  17142. source: "./media/characters/caylex/back.svg",
  17143. extra: 821 / 772,
  17144. bottom: 0.022
  17145. }
  17146. },
  17147. hand: {
  17148. height: math.unit(1.25, "feet"),
  17149. name: "Hand",
  17150. image: {
  17151. source: "./media/characters/caylex/hand.svg"
  17152. }
  17153. },
  17154. foot: {
  17155. height: math.unit(1.6, "feet"),
  17156. name: "Foot",
  17157. image: {
  17158. source: "./media/characters/caylex/foot.svg"
  17159. }
  17160. },
  17161. armored: {
  17162. height: math.unit(6 + 8 / 12, "feet"),
  17163. weight: math.unit(250, "lb"),
  17164. name: "Armored",
  17165. image: {
  17166. source: "./media/characters/caylex/armored.svg",
  17167. extra: 1420 / 1310,
  17168. bottom: 0.045
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(6 + 8 / 12, "feet"),
  17176. default: true
  17177. },
  17178. {
  17179. name: "Normal+",
  17180. height: math.unit(12, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(7 + 6 / 12, "feet"),
  17189. weight: math.unit(288, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/alana/front.svg",
  17193. extra: 679 / 653,
  17194. bottom: 22.5 / 701
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(7 + 6 / 12, "feet")
  17202. },
  17203. {
  17204. name: "Large",
  17205. height: math.unit(50, "feet")
  17206. },
  17207. {
  17208. name: "Macro",
  17209. height: math.unit(100, "feet"),
  17210. default: true
  17211. },
  17212. {
  17213. name: "Macro+",
  17214. height: math.unit(200, "feet")
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(6 + 1 / 12, "feet"),
  17223. weight: math.unit(210, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/hasani/front.svg",
  17227. extra: 244 / 232,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. back: {
  17232. height: math.unit(6 + 1 / 12, "feet"),
  17233. weight: math.unit(210, "lb"),
  17234. name: "Back",
  17235. image: {
  17236. source: "./media/characters/hasani/back.svg",
  17237. extra: 244 / 232,
  17238. bottom: 0.01
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(6 + 1 / 12, "feet")
  17246. },
  17247. {
  17248. name: "Macro",
  17249. height: math.unit(175, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17256. {
  17257. front: {
  17258. height: math.unit(1.82, "meters"),
  17259. weight: math.unit(140, "lb"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/nita/front.svg",
  17263. extra: 2473 / 2363,
  17264. bottom: 0.01
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(1.82, "m")
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(300, "m")
  17276. },
  17277. {
  17278. name: "Mistake Canon",
  17279. height: math.unit(0.5, "miles"),
  17280. default: true
  17281. },
  17282. {
  17283. name: "Big Mistake",
  17284. height: math.unit(13, "miles")
  17285. },
  17286. {
  17287. name: "Playing God",
  17288. height: math.unit(2450, "miles")
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17294. {
  17295. front: {
  17296. height: math.unit(4, "feet"),
  17297. weight: math.unit(120, "lb"),
  17298. name: "Front",
  17299. image: {
  17300. source: "./media/characters/shiriko/front.svg",
  17301. extra: 970/934,
  17302. bottom: 5/975
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(4, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(6, "feet"),
  17319. name: "front",
  17320. image: {
  17321. source: "./media/characters/deja/front.svg",
  17322. extra: 926 / 840,
  17323. bottom: 0.07
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Planck Length",
  17330. height: math.unit(1.6e-35, "meters")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(30.48, "meters"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Universal",
  17339. height: math.unit(8.8e26, "meters")
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17345. {
  17346. side: {
  17347. height: math.unit(8, "feet"),
  17348. weight: math.unit(6300, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/anima/side.svg",
  17352. bottom: 0.035
  17353. }
  17354. },
  17355. },
  17356. [
  17357. {
  17358. name: "Normal",
  17359. height: math.unit(8, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(8, "feet"),
  17369. weight: math.unit(350, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/bianca/front.svg",
  17373. extra: 234 / 225,
  17374. bottom: 0.03
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(8, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(6, "feet"),
  17391. weight: math.unit(150, "lb"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/adinia/front.svg",
  17395. extra: 1845 / 1672,
  17396. bottom: 0.02
  17397. }
  17398. },
  17399. back: {
  17400. height: math.unit(6, "feet"),
  17401. weight: math.unit(150, "lb"),
  17402. name: "Back",
  17403. image: {
  17404. source: "./media/characters/adinia/back.svg",
  17405. extra: 1845 / 1672,
  17406. bottom: 0.002
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(11 + 5 / 12, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(3, "meters"),
  17423. weight: math.unit(200, "kg"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/lykasa/front.svg",
  17427. extra: 1076 / 976,
  17428. bottom: 0.06
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(3, "meters")
  17436. },
  17437. {
  17438. name: "Kaiju",
  17439. height: math.unit(120, "meters"),
  17440. default: true
  17441. },
  17442. {
  17443. name: "Mega Kaiju",
  17444. height: math.unit(240, "km")
  17445. },
  17446. {
  17447. name: "Giga Kaiju",
  17448. height: math.unit(400, "megameters")
  17449. },
  17450. {
  17451. name: "Tera Kaiju",
  17452. height: math.unit(800, "gigameters")
  17453. },
  17454. {
  17455. name: "Kaiju Dragon Goddess",
  17456. height: math.unit(26, "zettaparsecs")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17462. {
  17463. side: {
  17464. height: math.unit(283 / 124 * 6, "feet"),
  17465. weight: math.unit(35000, "lb"),
  17466. name: "Side",
  17467. image: {
  17468. source: "./media/characters/malfaren/side.svg",
  17469. extra: 2500 / 1010,
  17470. bottom: 0.01
  17471. }
  17472. },
  17473. front: {
  17474. height: math.unit(22.36, "feet"),
  17475. weight: math.unit(35000, "lb"),
  17476. name: "Front",
  17477. image: {
  17478. source: "./media/characters/malfaren/front.svg",
  17479. extra: 1631 / 1476,
  17480. bottom: 0.01
  17481. }
  17482. },
  17483. maw: {
  17484. height: math.unit(6.9, "feet"),
  17485. name: "Maw",
  17486. image: {
  17487. source: "./media/characters/malfaren/maw.svg"
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Big",
  17494. height: math.unit(283 / 162 * 6, "feet"),
  17495. },
  17496. {
  17497. name: "Bigger",
  17498. height: math.unit(283 / 124 * 6, "feet")
  17499. },
  17500. {
  17501. name: "Massive",
  17502. height: math.unit(283 / 92 * 6, "feet"),
  17503. default: true
  17504. },
  17505. {
  17506. name: "👀💦",
  17507. height: math.unit(283 / 73 * 6, "feet"),
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(1.7, "m"),
  17516. weight: math.unit(70, "kg"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/kernel/front.svg",
  17520. extra: 222 / 210,
  17521. bottom: 0.007
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Nano",
  17528. height: math.unit(17, "micrometers")
  17529. },
  17530. {
  17531. name: "Micro",
  17532. height: math.unit(1.7, "mm")
  17533. },
  17534. {
  17535. name: "Small",
  17536. height: math.unit(1.7, "cm")
  17537. },
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(1.7, "m"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(1.75, "meters"),
  17550. weight: math.unit(65, "kg"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/jayne-folest/front.svg",
  17554. extra: 2115 / 2007,
  17555. bottom: 0.02
  17556. }
  17557. },
  17558. back: {
  17559. height: math.unit(1.75, "meters"),
  17560. weight: math.unit(65, "kg"),
  17561. name: "Back",
  17562. image: {
  17563. source: "./media/characters/jayne-folest/back.svg",
  17564. extra: 2115 / 2007,
  17565. bottom: 0.005
  17566. }
  17567. },
  17568. frontClothed: {
  17569. height: math.unit(1.75, "meters"),
  17570. weight: math.unit(65, "kg"),
  17571. name: "Front (Clothed)",
  17572. image: {
  17573. source: "./media/characters/jayne-folest/front-clothed.svg",
  17574. extra: 2115 / 2007,
  17575. bottom: 0.035
  17576. }
  17577. },
  17578. hand: {
  17579. height: math.unit(1 / 1.260, "feet"),
  17580. name: "Hand",
  17581. image: {
  17582. source: "./media/characters/jayne-folest/hand.svg"
  17583. }
  17584. },
  17585. foot: {
  17586. height: math.unit(1 / 0.918, "feet"),
  17587. name: "Foot",
  17588. image: {
  17589. source: "./media/characters/jayne-folest/foot.svg"
  17590. }
  17591. },
  17592. },
  17593. [
  17594. {
  17595. name: "Micro",
  17596. height: math.unit(4, "cm")
  17597. },
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(1.75, "meters")
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(47.5, "meters"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(180, "cm"),
  17614. weight: math.unit(70, "kg"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/algier/front.svg",
  17618. extra: 596 / 572,
  17619. bottom: 0.04
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(180, "cm"),
  17624. weight: math.unit(70, "kg"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/algier/back.svg",
  17628. extra: 596 / 572,
  17629. bottom: 0.025
  17630. }
  17631. },
  17632. frontdressed: {
  17633. height: math.unit(180, "cm"),
  17634. weight: math.unit(150, "kg"),
  17635. name: "Front-dressed",
  17636. image: {
  17637. source: "./media/characters/algier/front-dressed.svg",
  17638. extra: 596 / 572,
  17639. bottom: 0.038
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Micro",
  17646. height: math.unit(5, "cm")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(180, "cm"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(64, "m")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17661. {
  17662. upright: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(300, "lb"),
  17665. name: "Upright",
  17666. image: {
  17667. source: "./media/characters/pretzel/upright.svg",
  17668. extra: 534 / 522,
  17669. bottom: 0.065
  17670. }
  17671. },
  17672. sprawling: {
  17673. height: math.unit(3.75, "feet"),
  17674. weight: math.unit(300, "lb"),
  17675. name: "Sprawling",
  17676. image: {
  17677. source: "./media/characters/pretzel/sprawling.svg",
  17678. extra: 314 / 281,
  17679. bottom: 0.1
  17680. }
  17681. },
  17682. tongue: {
  17683. height: math.unit(2, "feet"),
  17684. name: "Tongue",
  17685. image: {
  17686. source: "./media/characters/pretzel/tongue.svg"
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Oversized",
  17698. height: math.unit(15, "feet")
  17699. },
  17700. {
  17701. name: "Huge",
  17702. height: math.unit(30, "feet")
  17703. },
  17704. {
  17705. name: "Macro",
  17706. height: math.unit(250, "feet")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17712. {
  17713. sideFront: {
  17714. height: math.unit(5 + 2 / 12, "feet"),
  17715. weight: math.unit(120, "lb"),
  17716. name: "Front Side",
  17717. image: {
  17718. source: "./media/characters/roxi/side-front.svg",
  17719. extra: 2924 / 2717,
  17720. bottom: 0.08
  17721. }
  17722. },
  17723. sideBack: {
  17724. height: math.unit(5 + 2 / 12, "feet"),
  17725. weight: math.unit(120, "lb"),
  17726. name: "Back Side",
  17727. image: {
  17728. source: "./media/characters/roxi/side-back.svg",
  17729. extra: 2904 / 2693,
  17730. bottom: 0.06
  17731. }
  17732. },
  17733. front: {
  17734. height: math.unit(5 + 2 / 12, "feet"),
  17735. weight: math.unit(120, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/roxi/front.svg",
  17739. extra: 2028 / 1907,
  17740. bottom: 0.01
  17741. }
  17742. },
  17743. frontAlt: {
  17744. height: math.unit(5 + 2 / 12, "feet"),
  17745. weight: math.unit(120, "lb"),
  17746. name: "Front (Alt)",
  17747. image: {
  17748. source: "./media/characters/roxi/front-alt.svg",
  17749. extra: 1828 / 1798,
  17750. bottom: 0.01
  17751. }
  17752. },
  17753. sitting: {
  17754. height: math.unit(2.8, "feet"),
  17755. weight: math.unit(120, "lb"),
  17756. name: "Sitting",
  17757. image: {
  17758. source: "./media/characters/roxi/sitting.svg",
  17759. extra: 2660 / 2462,
  17760. bottom: 0.1
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(5 + 2 / 12, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17774. {
  17775. side: {
  17776. height: math.unit(55, "feet"),
  17777. weight: math.unit(153, "tons"),
  17778. name: "Side",
  17779. image: {
  17780. source: "./media/characters/shadow/side.svg",
  17781. extra: 701 / 628,
  17782. bottom: 0.02
  17783. }
  17784. },
  17785. flying: {
  17786. height: math.unit(145, "feet"),
  17787. weight: math.unit(153, "tons"),
  17788. name: "Flying",
  17789. image: {
  17790. source: "./media/characters/shadow/flying.svg"
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(55, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(6, "feet"),
  17807. weight: math.unit(200, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/marcie/front.svg",
  17811. extra: 960 / 876,
  17812. bottom: 58 / 1017.87
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Macro",
  17819. height: math.unit(1, "mile"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(7, "feet"),
  17829. weight: math.unit(200, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/kachina/front.svg",
  17833. extra: 1290.68 / 1119,
  17834. bottom: 36.5 / 1327.18
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(7, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17848. {
  17849. looking: {
  17850. height: math.unit(2, "meters"),
  17851. weight: math.unit(300, "kg"),
  17852. name: "Looking",
  17853. image: {
  17854. source: "./media/characters/kash/looking.svg",
  17855. extra: 474 / 344,
  17856. bottom: 0.03
  17857. }
  17858. },
  17859. side: {
  17860. height: math.unit(2, "meters"),
  17861. weight: math.unit(300, "kg"),
  17862. name: "Side",
  17863. image: {
  17864. source: "./media/characters/kash/side.svg",
  17865. extra: 302 / 251,
  17866. bottom: 0.03
  17867. }
  17868. },
  17869. front: {
  17870. height: math.unit(2, "meters"),
  17871. weight: math.unit(300, "kg"),
  17872. name: "Front",
  17873. image: {
  17874. source: "./media/characters/kash/front.svg",
  17875. extra: 495 / 360,
  17876. bottom: 0.015
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(2, "meters"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Big",
  17888. height: math.unit(3, "meters")
  17889. },
  17890. {
  17891. name: "Large",
  17892. height: math.unit(5, "meters")
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17898. {
  17899. feeding: {
  17900. height: math.unit(6.7, "feet"),
  17901. weight: math.unit(350, "lb"),
  17902. name: "Feeding",
  17903. image: {
  17904. source: "./media/characters/lalim/feeding.svg",
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(6.7, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17918. {
  17919. front: {
  17920. height: math.unit(9.5, "feet"),
  17921. weight: math.unit(600, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/de'vout/front.svg",
  17925. extra: 1443 / 1328,
  17926. bottom: 0.025
  17927. }
  17928. },
  17929. back: {
  17930. height: math.unit(9.5, "feet"),
  17931. weight: math.unit(600, "lb"),
  17932. name: "Back",
  17933. image: {
  17934. source: "./media/characters/de'vout/back.svg",
  17935. extra: 1443 / 1328
  17936. }
  17937. },
  17938. frontDressed: {
  17939. height: math.unit(9.5, "feet"),
  17940. weight: math.unit(600, "lb"),
  17941. name: "Front (Dressed",
  17942. image: {
  17943. source: "./media/characters/de'vout/front-dressed.svg",
  17944. extra: 1443 / 1328,
  17945. bottom: 0.025
  17946. }
  17947. },
  17948. backDressed: {
  17949. height: math.unit(9.5, "feet"),
  17950. weight: math.unit(600, "lb"),
  17951. name: "Back (Dressed",
  17952. image: {
  17953. source: "./media/characters/de'vout/back-dressed.svg",
  17954. extra: 1443 / 1328
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(9.5, "feet"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(8, "feet"),
  17971. weight: math.unit(225, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/talana/front.svg",
  17975. extra: 1410 / 1300,
  17976. bottom: 0.015
  17977. }
  17978. },
  17979. frontDressed: {
  17980. height: math.unit(8, "feet"),
  17981. weight: math.unit(225, "lb"),
  17982. name: "Front (Dressed",
  17983. image: {
  17984. source: "./media/characters/talana/front-dressed.svg",
  17985. extra: 1410 / 1300,
  17986. bottom: 0.015
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(8, "feet"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18000. {
  18001. side: {
  18002. height: math.unit(7.2, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/xeauvok/side.svg",
  18007. extra: 1975 / 1523,
  18008. bottom: 0.07
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(7.2, "feet"),
  18016. default: true
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18022. {
  18023. side: {
  18024. height: math.unit(10, "feet"),
  18025. weight: math.unit(900, "kg"),
  18026. name: "Side",
  18027. image: {
  18028. source: "./media/characters/zara/side.svg",
  18029. extra: 504 / 498
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(10, "feet"),
  18037. default: true
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18043. {
  18044. side: {
  18045. height: math.unit(6, "feet"),
  18046. weight: math.unit(150, "lb"),
  18047. name: "Side",
  18048. image: {
  18049. source: "./media/characters/richard-dragon/side.svg",
  18050. extra: 845 / 340,
  18051. bottom: 0.017
  18052. }
  18053. },
  18054. maw: {
  18055. height: math.unit(2.97, "feet"),
  18056. name: "Maw",
  18057. image: {
  18058. source: "./media/characters/richard-dragon/maw.svg"
  18059. }
  18060. },
  18061. },
  18062. [
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(4, "feet"),
  18070. weight: math.unit(100, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/richard-smeargle/front.svg",
  18074. extra: 2952 / 2820,
  18075. bottom: 0.028
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(4, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Dynamax",
  18087. height: math.unit(20, "meters")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(6, "feet"),
  18096. weight: math.unit(110, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/klay/front.svg",
  18100. extra: 962 / 883,
  18101. bottom: 0.04
  18102. }
  18103. },
  18104. back: {
  18105. height: math.unit(6, "feet"),
  18106. weight: math.unit(110, "lb"),
  18107. name: "Back",
  18108. image: {
  18109. source: "./media/characters/klay/back.svg",
  18110. extra: 962 / 883
  18111. }
  18112. },
  18113. beans: {
  18114. height: math.unit(1.15, "feet"),
  18115. name: "Beans",
  18116. image: {
  18117. source: "./media/characters/klay/beans.svg"
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Micro",
  18124. height: math.unit(6, "inches")
  18125. },
  18126. {
  18127. name: "Mini",
  18128. height: math.unit(3, "feet")
  18129. },
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(6, "feet"),
  18133. default: true
  18134. },
  18135. {
  18136. name: "Big",
  18137. height: math.unit(25, "feet")
  18138. },
  18139. {
  18140. name: "Macro",
  18141. height: math.unit(100, "feet")
  18142. },
  18143. {
  18144. name: "Megamacro",
  18145. height: math.unit(400, "feet")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(6, "feet"),
  18154. weight: math.unit(160, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/marcus/front.svg",
  18158. extra: 734 / 676,
  18159. bottom: 0.03
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Little",
  18166. height: math.unit(6, "feet")
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(110, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Macro",
  18175. height: math.unit(250, "feet")
  18176. },
  18177. {
  18178. name: "Megamacro",
  18179. height: math.unit(1000, "feet")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(7, "feet"),
  18188. weight: math.unit(275, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/claude-delroute/front.svg",
  18192. extra: 230 / 214,
  18193. bottom: 0.007
  18194. }
  18195. },
  18196. side: {
  18197. height: math.unit(7, "feet"),
  18198. weight: math.unit(275, "lb"),
  18199. name: "Side",
  18200. image: {
  18201. source: "./media/characters/claude-delroute/side.svg",
  18202. extra: 222 / 214,
  18203. bottom: 0.01
  18204. }
  18205. },
  18206. back: {
  18207. height: math.unit(7, "feet"),
  18208. weight: math.unit(275, "lb"),
  18209. name: "Back",
  18210. image: {
  18211. source: "./media/characters/claude-delroute/back.svg",
  18212. extra: 230 / 214,
  18213. bottom: 0.015
  18214. }
  18215. },
  18216. maw: {
  18217. height: math.unit(0.6407, "meters"),
  18218. name: "Maw",
  18219. image: {
  18220. source: "./media/characters/claude-delroute/maw.svg"
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(7, "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Lorge",
  18232. height: math.unit(20, "feet")
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(8 + 4 / 12, "feet"),
  18241. weight: math.unit(600, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/dragonien/front.svg",
  18245. extra: 100 / 94,
  18246. bottom: 3.3 / 103.3445
  18247. }
  18248. },
  18249. back: {
  18250. height: math.unit(8 + 4 / 12, "feet"),
  18251. weight: math.unit(600, "lb"),
  18252. name: "Back",
  18253. image: {
  18254. source: "./media/characters/dragonien/back.svg",
  18255. extra: 776 / 746,
  18256. bottom: 6.4 / 782.0616
  18257. }
  18258. },
  18259. foot: {
  18260. height: math.unit(1.54, "feet"),
  18261. name: "Foot",
  18262. image: {
  18263. source: "./media/characters/dragonien/foot.svg",
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(8 + 4 / 12, "feet"),
  18271. default: true
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(200, "feet")
  18276. },
  18277. {
  18278. name: "Megamacro",
  18279. height: math.unit(1, "mile")
  18280. },
  18281. {
  18282. name: "Gigamacro",
  18283. height: math.unit(1000, "miles")
  18284. },
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18289. {
  18290. front: {
  18291. height: math.unit(5 + 2 / 12, "feet"),
  18292. weight: math.unit(110, "lb"),
  18293. name: "Front",
  18294. image: {
  18295. source: "./media/characters/desta/front.svg",
  18296. extra: 767 / 726,
  18297. bottom: 11.7 / 779
  18298. }
  18299. },
  18300. back: {
  18301. height: math.unit(5 + 2 / 12, "feet"),
  18302. weight: math.unit(110, "lb"),
  18303. name: "Back",
  18304. image: {
  18305. source: "./media/characters/desta/back.svg",
  18306. extra: 777 / 728,
  18307. bottom: 6 / 784
  18308. }
  18309. },
  18310. frontAlt: {
  18311. height: math.unit(5 + 2 / 12, "feet"),
  18312. weight: math.unit(110, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/desta/front-alt.svg",
  18316. extra: 1482 / 1417
  18317. }
  18318. },
  18319. side: {
  18320. height: math.unit(5 + 2 / 12, "feet"),
  18321. weight: math.unit(110, "lb"),
  18322. name: "Side",
  18323. image: {
  18324. source: "./media/characters/desta/side.svg",
  18325. extra: 2579 / 2491,
  18326. bottom: 0.053
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Micro",
  18333. height: math.unit(6, "inches")
  18334. },
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(5 + 2 / 12, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(62, "feet")
  18343. },
  18344. {
  18345. name: "Megamacro",
  18346. height: math.unit(1800, "feet")
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(10, "feet"),
  18355. weight: math.unit(700, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/storm-alystar/front.svg",
  18359. extra: 2112 / 1898,
  18360. bottom: 0.034
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Micro",
  18367. height: math.unit(3.5, "inches")
  18368. },
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(10, "feet"),
  18372. default: true
  18373. },
  18374. {
  18375. name: "Macro",
  18376. height: math.unit(400, "feet")
  18377. },
  18378. {
  18379. name: "Deific",
  18380. height: math.unit(60, "miles")
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18386. {
  18387. front: {
  18388. height: math.unit(2.35, "meters"),
  18389. weight: math.unit(119, "kg"),
  18390. name: "Front",
  18391. image: {
  18392. source: "./media/characters/ilia/front.svg",
  18393. extra: 1285 / 1255,
  18394. bottom: 0.06
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(2.35, "meters")
  18402. },
  18403. {
  18404. name: "Macro",
  18405. height: math.unit(140, "meters"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Megamacro",
  18410. height: math.unit(100, "miles")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(6 + 5 / 12, "feet"),
  18419. weight: math.unit(190, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/kingdead/front.svg",
  18423. extra: 1228 / 1177
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Micro",
  18430. height: math.unit(7, "inches")
  18431. },
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(6 + 5 / 12, "feet")
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(150, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Megamacro",
  18443. height: math.unit(200, "miles")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(8, "feet"),
  18452. weight: math.unit(600, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/kyrehx/front.svg",
  18456. extra: 1195 / 1095,
  18457. bottom: 0.034
  18458. }
  18459. },
  18460. },
  18461. [
  18462. {
  18463. name: "Micro",
  18464. height: math.unit(2, "inches")
  18465. },
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(8, "feet"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(255, "feet")
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18482. weight: math.unit(184, "lb"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/xang/front.svg",
  18486. extra: 845 / 755
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18494. default: true
  18495. },
  18496. {
  18497. name: "Macro",
  18498. height: math.unit(0.935 * 146, "feet")
  18499. },
  18500. {
  18501. name: "Megamacro",
  18502. height: math.unit(0.935 * 3, "miles")
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18508. {
  18509. frontDressed: {
  18510. height: math.unit(5 + 7 / 12, "feet"),
  18511. weight: math.unit(140, "lb"),
  18512. name: "Front (Dressed)",
  18513. image: {
  18514. source: "./media/characters/doc-weardno/front-dressed.svg",
  18515. extra: 263 / 234
  18516. }
  18517. },
  18518. backDressed: {
  18519. height: math.unit(5 + 7 / 12, "feet"),
  18520. weight: math.unit(140, "lb"),
  18521. name: "Back (Dressed)",
  18522. image: {
  18523. source: "./media/characters/doc-weardno/back-dressed.svg",
  18524. extra: 266 / 238
  18525. }
  18526. },
  18527. front: {
  18528. height: math.unit(5 + 7 / 12, "feet"),
  18529. weight: math.unit(140, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/doc-weardno/front.svg",
  18533. extra: 254 / 233
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Micro",
  18540. height: math.unit(3, "inches")
  18541. },
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(5 + 7 / 12, "feet"),
  18545. default: true
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(25, "feet")
  18550. },
  18551. {
  18552. name: "Megamacro",
  18553. height: math.unit(2, "miles")
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(6 + 2 / 12, "feet"),
  18562. weight: math.unit(153, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/seth-whilst/front.svg",
  18566. bottom: 0.07
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Micro",
  18573. height: math.unit(5, "inches")
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(6 + 2 / 12, "feet"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(3, "inches"),
  18587. weight: math.unit(8, "grams"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/pocket-jabari/front.svg",
  18591. extra: 1024 / 974,
  18592. bottom: 0.039
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Minimicro",
  18599. height: math.unit(8, "mm")
  18600. },
  18601. {
  18602. name: "Micro",
  18603. height: math.unit(3, "inches"),
  18604. default: true
  18605. },
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(3, "feet")
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(15, "feet"),
  18617. weight: math.unit(3280, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/sapphy/front.svg",
  18621. extra: 671 / 577,
  18622. bottom: 0.085
  18623. }
  18624. },
  18625. back: {
  18626. height: math.unit(15, "feet"),
  18627. weight: math.unit(3280, "lb"),
  18628. name: "Back",
  18629. image: {
  18630. source: "./media/characters/sapphy/back.svg",
  18631. extra: 631 / 607,
  18632. bottom: 0.045
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Normal",
  18639. height: math.unit(15, "feet")
  18640. },
  18641. {
  18642. name: "Casual Macro",
  18643. height: math.unit(120, "feet")
  18644. },
  18645. {
  18646. name: "Macro",
  18647. height: math.unit(2150, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Megamacro",
  18652. height: math.unit(8, "miles")
  18653. },
  18654. {
  18655. name: "Galaxy Mom",
  18656. height: math.unit(6, "megalightyears")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(6, "feet"),
  18665. weight: math.unit(170, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/kiro/front.svg",
  18669. extra: 1064 / 1012,
  18670. bottom: 0.052
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Micro",
  18677. height: math.unit(6, "inches")
  18678. },
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(6, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(72, "feet")
  18687. },
  18688. ]
  18689. ))
  18690. characterMakers.push(() => makeCharacter(
  18691. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18692. {
  18693. front: {
  18694. height: math.unit(5 + 9 / 12, "feet"),
  18695. weight: math.unit(175, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/irishfox/front.svg",
  18699. extra: 1912 / 1680,
  18700. bottom: 0.02
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Nano",
  18707. height: math.unit(1, "mm")
  18708. },
  18709. {
  18710. name: "Micro",
  18711. height: math.unit(2, "inches")
  18712. },
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(5 + 9 / 12, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(45, "feet")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6 + 1 / 12, "feet"),
  18729. weight: math.unit(75, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/aronai-sieyes/front.svg",
  18733. extra: 1556 / 1480,
  18734. bottom: 0.015
  18735. }
  18736. },
  18737. side: {
  18738. height: math.unit(6 + 1 / 12, "feet"),
  18739. weight: math.unit(75, "lb"),
  18740. name: "Side",
  18741. image: {
  18742. source: "./media/characters/aronai-sieyes/side.svg",
  18743. extra: 1433 / 1390,
  18744. bottom: 0.0393
  18745. }
  18746. },
  18747. back: {
  18748. height: math.unit(6 + 1 / 12, "feet"),
  18749. weight: math.unit(75, "lb"),
  18750. name: "Back",
  18751. image: {
  18752. source: "./media/characters/aronai-sieyes/back.svg",
  18753. extra: 1544 / 1494,
  18754. bottom: 0.02
  18755. }
  18756. },
  18757. frontClothed: {
  18758. height: math.unit(6 + 1 / 12, "feet"),
  18759. weight: math.unit(75, "lb"),
  18760. name: "Front (Clothed)",
  18761. image: {
  18762. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18763. extra: 1582 / 1527
  18764. }
  18765. },
  18766. feral: {
  18767. height: math.unit(18, "feet"),
  18768. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18769. name: "Feral",
  18770. image: {
  18771. source: "./media/characters/aronai-sieyes/feral.svg",
  18772. extra: 1530 / 1240,
  18773. bottom: 0.035
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(2, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(6 + 1 / 12, "feet"),
  18785. default: true
  18786. }
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(12, "feet"),
  18794. weight: math.unit(410, "kg"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/xuna/front.svg",
  18798. extra: 2184 / 1980
  18799. }
  18800. },
  18801. side: {
  18802. height: math.unit(12, "feet"),
  18803. weight: math.unit(410, "kg"),
  18804. name: "Side",
  18805. image: {
  18806. source: "./media/characters/xuna/side.svg",
  18807. extra: 2184 / 1980
  18808. }
  18809. },
  18810. back: {
  18811. height: math.unit(12, "feet"),
  18812. weight: math.unit(410, "kg"),
  18813. name: "Back",
  18814. image: {
  18815. source: "./media/characters/xuna/back.svg",
  18816. extra: 2184 / 1980
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Nano glow",
  18823. height: math.unit(10, "nm")
  18824. },
  18825. {
  18826. name: "Micro floof",
  18827. height: math.unit(0.3, "m")
  18828. },
  18829. {
  18830. name: "Huggable softy boi",
  18831. height: math.unit(3.6576, "m"),
  18832. default: true
  18833. },
  18834. {
  18835. name: "Admirable floof",
  18836. height: math.unit(80, "meters")
  18837. },
  18838. {
  18839. name: "Gentle macro",
  18840. height: math.unit(300, "meters")
  18841. },
  18842. {
  18843. name: "Very careful floof",
  18844. height: math.unit(3200, "meters")
  18845. },
  18846. {
  18847. name: "The mega floof",
  18848. height: math.unit(36000, "meters")
  18849. },
  18850. {
  18851. name: "Giga-fur-Wicker",
  18852. height: math.unit(4800000, "meters")
  18853. },
  18854. {
  18855. name: "Licky world",
  18856. height: math.unit(20000000, "meters")
  18857. },
  18858. {
  18859. name: "Floofy cyan sun",
  18860. height: math.unit(1500000000, "meters")
  18861. },
  18862. {
  18863. name: "Milky Wicker",
  18864. height: math.unit(1000000000000000000000, "meters")
  18865. },
  18866. {
  18867. name: "The observing Wicker",
  18868. height: math.unit(999999999999999999999999999, "meters")
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(5 + 9 / 12, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/arokha-sieyes/front.svg",
  18881. extra: 1425 / 1284,
  18882. bottom: 0.05
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(5 + 9 / 12, "feet")
  18890. },
  18891. {
  18892. name: "Macro",
  18893. height: math.unit(30, "meters"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(6, "feet"),
  18903. weight: math.unit(180, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/arokh-sieyes/front.svg",
  18907. extra: 1830 / 1769,
  18908. bottom: 0.01
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(6, "feet")
  18916. },
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(30, "meters"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18926. {
  18927. side: {
  18928. height: math.unit(13 + 1 / 12, "feet"),
  18929. weight: math.unit(8.5, "tonnes"),
  18930. name: "Side",
  18931. image: {
  18932. source: "./media/characters/goldeneye/side.svg",
  18933. extra: 1182 / 778,
  18934. bottom: 0.067
  18935. }
  18936. },
  18937. paw: {
  18938. height: math.unit(3.4, "feet"),
  18939. name: "Paw",
  18940. image: {
  18941. source: "./media/characters/goldeneye/paw.svg"
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(13 + 1 / 12, "feet"),
  18949. default: true
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  18955. {
  18956. front: {
  18957. height: math.unit(6 + 1 / 12, "feet"),
  18958. weight: math.unit(210, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/leonardo-lycheborne/front.svg",
  18962. extra: 390 / 365,
  18963. bottom: 0.032
  18964. }
  18965. },
  18966. side: {
  18967. height: math.unit(6 + 1 / 12, "feet"),
  18968. weight: math.unit(210, "lb"),
  18969. name: "Side",
  18970. image: {
  18971. source: "./media/characters/leonardo-lycheborne/side.svg",
  18972. extra: 390 / 365,
  18973. bottom: 0.005
  18974. }
  18975. },
  18976. back: {
  18977. height: math.unit(6 + 1 / 12, "feet"),
  18978. weight: math.unit(210, "lb"),
  18979. name: "Back",
  18980. image: {
  18981. source: "./media/characters/leonardo-lycheborne/back.svg",
  18982. extra: 392 / 366,
  18983. bottom: 0.01
  18984. }
  18985. },
  18986. hand: {
  18987. height: math.unit(1.08, "feet"),
  18988. name: "Hand",
  18989. image: {
  18990. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18991. }
  18992. },
  18993. foot: {
  18994. height: math.unit(1.32, "feet"),
  18995. name: "Foot",
  18996. image: {
  18997. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18998. }
  18999. },
  19000. were: {
  19001. height: math.unit(20, "feet"),
  19002. weight: math.unit(7800, "lb"),
  19003. name: "Were",
  19004. image: {
  19005. source: "./media/characters/leonardo-lycheborne/were.svg",
  19006. extra: 308 / 294,
  19007. bottom: 0.048
  19008. }
  19009. },
  19010. feral: {
  19011. height: math.unit(7.5, "feet"),
  19012. weight: math.unit(600, "lb"),
  19013. name: "Feral",
  19014. image: {
  19015. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19016. extra: 210 / 186,
  19017. bottom: 0.108
  19018. }
  19019. },
  19020. taur: {
  19021. height: math.unit(11, "feet"),
  19022. weight: math.unit(3300, "lb"),
  19023. name: "Taur",
  19024. image: {
  19025. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19026. extra: 320 / 303,
  19027. bottom: 0.025
  19028. }
  19029. },
  19030. barghest: {
  19031. height: math.unit(11, "feet"),
  19032. weight: math.unit(1300, "lb"),
  19033. name: "Barghest",
  19034. image: {
  19035. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19036. extra: 323 / 302,
  19037. bottom: 0.027
  19038. }
  19039. },
  19040. dick: {
  19041. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19042. name: "Dick",
  19043. image: {
  19044. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19045. }
  19046. },
  19047. dickWere: {
  19048. height: math.unit((20) / 3.8, "feet"),
  19049. name: "Dick (Were)",
  19050. image: {
  19051. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(6 + 1 / 12, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(10, "feet"),
  19068. weight: math.unit(350, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/jet/front.svg",
  19072. extra: 2050 / 1980,
  19073. bottom: 0.013
  19074. }
  19075. },
  19076. back: {
  19077. height: math.unit(10, "feet"),
  19078. weight: math.unit(350, "lb"),
  19079. name: "Back",
  19080. image: {
  19081. source: "./media/characters/jet/back.svg",
  19082. extra: 2050 / 1980,
  19083. bottom: 0.013
  19084. }
  19085. },
  19086. },
  19087. [
  19088. {
  19089. name: "Micro",
  19090. height: math.unit(6, "inches")
  19091. },
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(10, "feet"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(100, "feet")
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(15, "feet"),
  19108. weight: math.unit(2800, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/tanarath/front.svg",
  19112. extra: 2392 / 2220,
  19113. bottom: 0.03
  19114. }
  19115. },
  19116. back: {
  19117. height: math.unit(15, "feet"),
  19118. weight: math.unit(2800, "lb"),
  19119. name: "Back",
  19120. image: {
  19121. source: "./media/characters/tanarath/back.svg",
  19122. extra: 2392 / 2220,
  19123. bottom: 0.03
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(15, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(7 + 1 / 12, "feet"),
  19140. weight: math.unit(175, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/patty-cattybatty/front.svg",
  19144. extra: 908 / 874,
  19145. bottom: 0.025
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Micro",
  19152. height: math.unit(1, "inch")
  19153. },
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(7 + 1 / 12, "feet")
  19157. },
  19158. {
  19159. name: "Mini Macro",
  19160. height: math.unit(155, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(1077, "feet")
  19165. },
  19166. {
  19167. name: "Mega Macro",
  19168. height: math.unit(47650, "feet"),
  19169. default: true
  19170. },
  19171. {
  19172. name: "Giga Macro",
  19173. height: math.unit(440, "miles")
  19174. },
  19175. {
  19176. name: "Tera Macro",
  19177. height: math.unit(8700, "miles")
  19178. },
  19179. {
  19180. name: "Planetary Macro",
  19181. height: math.unit(32700, "miles")
  19182. },
  19183. {
  19184. name: "Solar Macro",
  19185. height: math.unit(550000, "miles")
  19186. },
  19187. {
  19188. name: "Celestial Macro",
  19189. height: math.unit(2.5, "AU")
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(4 + 5 / 12, "feet"),
  19198. weight: math.unit(90, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/cappu/front.svg",
  19202. extra: 1247 / 1152,
  19203. bottom: 0.012
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(4 + 5 / 12, "feet"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19217. {
  19218. frontDressed: {
  19219. height: math.unit(70, "cm"),
  19220. weight: math.unit(6, "kg"),
  19221. name: "Front (Dressed)",
  19222. image: {
  19223. source: "./media/characters/sebi/front-dressed.svg",
  19224. extra: 713.5 / 686.5,
  19225. bottom: 0.003
  19226. }
  19227. },
  19228. front: {
  19229. height: math.unit(70, "cm"),
  19230. weight: math.unit(5, "kg"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/sebi/front.svg",
  19234. extra: 713.5 / 686.5,
  19235. bottom: 0.003
  19236. }
  19237. }
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(70, "cm"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(8, "meters")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(6, "feet"),
  19256. weight: math.unit(150, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/typhek/front.svg",
  19260. extra: 1948 / 1929,
  19261. bottom: 0.025
  19262. }
  19263. },
  19264. side: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Side",
  19268. image: {
  19269. source: "./media/characters/typhek/side.svg",
  19270. extra: 2034 / 2010,
  19271. bottom: 0.003
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/typhek/back.svg",
  19280. extra: 2005 / 1978,
  19281. bottom: 0.004
  19282. }
  19283. },
  19284. palm: {
  19285. height: math.unit(1.2, "feet"),
  19286. name: "Palm",
  19287. image: {
  19288. source: "./media/characters/typhek/palm.svg"
  19289. }
  19290. },
  19291. fist: {
  19292. height: math.unit(1.1, "feet"),
  19293. name: "Fist",
  19294. image: {
  19295. source: "./media/characters/typhek/fist.svg"
  19296. }
  19297. },
  19298. foot: {
  19299. height: math.unit(1.57, "feet"),
  19300. name: "Foot",
  19301. image: {
  19302. source: "./media/characters/typhek/foot.svg"
  19303. }
  19304. },
  19305. sole: {
  19306. height: math.unit(2.05, "feet"),
  19307. name: "Sole",
  19308. image: {
  19309. source: "./media/characters/typhek/sole.svg"
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Macro",
  19316. height: math.unit(40, "stories"),
  19317. default: true
  19318. },
  19319. {
  19320. name: "Megamacro",
  19321. height: math.unit(1, "mile")
  19322. },
  19323. {
  19324. name: "Gigamacro",
  19325. height: math.unit(4000, "solarradii")
  19326. },
  19327. {
  19328. name: "Universal",
  19329. height: math.unit(1.1, "universes")
  19330. }
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19335. {
  19336. side: {
  19337. height: math.unit(5 + 7 / 12, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/kassy/side.svg",
  19342. extra: 1280 / 1225,
  19343. bottom: 0.002
  19344. }
  19345. },
  19346. front: {
  19347. height: math.unit(5 + 7 / 12, "feet"),
  19348. weight: math.unit(150, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/kassy/front.svg",
  19352. extra: 1280 / 1225,
  19353. bottom: 0.025
  19354. }
  19355. },
  19356. back: {
  19357. height: math.unit(5 + 7 / 12, "feet"),
  19358. weight: math.unit(150, "lb"),
  19359. name: "Back",
  19360. image: {
  19361. source: "./media/characters/kassy/back.svg",
  19362. extra: 1280 / 1225,
  19363. bottom: 0.002
  19364. }
  19365. },
  19366. foot: {
  19367. height: math.unit(1.266, "feet"),
  19368. name: "Foot",
  19369. image: {
  19370. source: "./media/characters/kassy/foot.svg"
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 7 / 12, "feet")
  19378. },
  19379. {
  19380. name: "Macro",
  19381. height: math.unit(137, "feet"),
  19382. default: true
  19383. },
  19384. {
  19385. name: "Megamacro",
  19386. height: math.unit(1, "mile")
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6 + 1 / 12, "feet"),
  19395. weight: math.unit(200, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/neil/front.svg",
  19399. extra: 1326 / 1250,
  19400. bottom: 0.023
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(6 + 1 / 12, "feet"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(200, "feet")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(5 + 9 / 12, "feet"),
  19421. weight: math.unit(190, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/atticus/front.svg",
  19425. extra: 2934 / 2785,
  19426. bottom: 0.025
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(5 + 9 / 12, "feet"),
  19434. default: true
  19435. },
  19436. {
  19437. name: "Macro",
  19438. height: math.unit(180, "feet")
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19444. {
  19445. side: {
  19446. height: math.unit(9, "feet"),
  19447. weight: math.unit(650, "lb"),
  19448. name: "Side",
  19449. image: {
  19450. source: "./media/characters/milo/side.svg",
  19451. extra: 2644 / 2310,
  19452. bottom: 0.032
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(9, "feet"),
  19460. default: true
  19461. },
  19462. {
  19463. name: "Macro",
  19464. height: math.unit(300, "feet")
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19470. {
  19471. side: {
  19472. height: math.unit(8, "meters"),
  19473. weight: math.unit(90000, "kg"),
  19474. name: "Side",
  19475. image: {
  19476. source: "./media/characters/ijzer/side.svg",
  19477. extra: 2756 / 1600,
  19478. bottom: 0.01
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Small",
  19485. height: math.unit(3, "meters")
  19486. },
  19487. {
  19488. name: "Normal",
  19489. height: math.unit(8, "meters"),
  19490. default: true
  19491. },
  19492. {
  19493. name: "Normal+",
  19494. height: math.unit(10, "meters")
  19495. },
  19496. {
  19497. name: "Bigger",
  19498. height: math.unit(24, "meters")
  19499. },
  19500. {
  19501. name: "Huge",
  19502. height: math.unit(80, "meters")
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(6 + 2 / 12, "feet"),
  19511. weight: math.unit(153, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/luca-cervicum/front.svg",
  19515. extra: 370 / 327,
  19516. bottom: 0.015
  19517. }
  19518. },
  19519. back: {
  19520. height: math.unit(6 + 2 / 12, "feet"),
  19521. weight: math.unit(153, "lb"),
  19522. name: "Back",
  19523. image: {
  19524. source: "./media/characters/luca-cervicum/back.svg",
  19525. extra: 367 / 333,
  19526. bottom: 0.005
  19527. }
  19528. },
  19529. frontGear: {
  19530. height: math.unit(6 + 2 / 12, "feet"),
  19531. weight: math.unit(173, "lb"),
  19532. name: "Front (Gear)",
  19533. image: {
  19534. source: "./media/characters/luca-cervicum/front-gear.svg",
  19535. extra: 377 / 333,
  19536. bottom: 0.006
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(6 + 2 / 12, "feet"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(304, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/oliver/front.svg",
  19557. extra: 157 / 143,
  19558. bottom: 0.08
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(6 + 1 / 12, "feet"),
  19566. default: true
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(5 + 7 / 12, "feet"),
  19575. weight: math.unit(140, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/shane/front.svg",
  19579. extra: 304 / 289,
  19580. bottom: 0.005
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(5 + 7 / 12, "feet"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(5 + 9 / 12, "feet"),
  19597. weight: math.unit(178, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/shin/front.svg",
  19601. extra: 159 / 151,
  19602. bottom: 0.015
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(5 + 9 / 12, "feet"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(5 + 10 / 12, "feet"),
  19619. weight: math.unit(168, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/xerxes/front.svg",
  19623. extra: 282 / 260,
  19624. bottom: 0.045
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(5 + 10 / 12, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(6 + 7 / 12, "feet"),
  19641. weight: math.unit(208, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/chaska/front.svg",
  19645. extra: 332 / 319,
  19646. bottom: 0.015
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(6 + 7 / 12, "feet"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(5 + 8 / 12, "feet"),
  19663. weight: math.unit(208, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/enuk/front.svg",
  19667. extra: 437 / 406,
  19668. bottom: 0.02
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(5 + 8 / 12, "feet"),
  19676. default: true
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(5 + 10 / 12, "feet"),
  19685. weight: math.unit(252, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/bruun/front.svg",
  19689. extra: 197 / 187,
  19690. bottom: 0.012
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(5 + 10 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(6 + 10 / 12, "feet"),
  19707. weight: math.unit(255, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/alexeev/front.svg",
  19711. extra: 213 / 200,
  19712. bottom: 0.05
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(6 + 10 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(2 + 8 / 12, "feet"),
  19729. weight: math.unit(22, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/evelyn/front.svg",
  19733. extra: 208 / 180
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(2 + 8 / 12, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(5 + 9 / 12, "feet"),
  19750. weight: math.unit(139, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/inca/front.svg",
  19754. extra: 294 / 291,
  19755. bottom: 0.03
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(5 + 9 / 12, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19769. {
  19770. front: {
  19771. height: math.unit(5 + 1 / 12, "feet"),
  19772. weight: math.unit(84, "lb"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/magdalene/front.svg",
  19776. extra: 293 / 273
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(5 + 1 / 12, "feet"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19790. {
  19791. front: {
  19792. height: math.unit(6 + 3 / 12, "feet"),
  19793. weight: math.unit(185, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/mera/front.svg",
  19797. extra: 291 / 277,
  19798. bottom: 0.03
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(6 + 3 / 12, "feet"),
  19806. default: true
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(6 + 7 / 12, "feet"),
  19815. weight: math.unit(160, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/ceres/front.svg",
  19819. extra: 1023 / 950,
  19820. bottom: 0.027
  19821. }
  19822. },
  19823. back: {
  19824. height: math.unit(6 + 7 / 12, "feet"),
  19825. weight: math.unit(160, "lb"),
  19826. name: "Back",
  19827. image: {
  19828. source: "./media/characters/ceres/back.svg",
  19829. extra: 1023 / 950
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(6 + 7 / 12, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(5 + 10 / 12, "feet"),
  19846. weight: math.unit(150, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/kris/front.svg",
  19850. extra: 885 / 803,
  19851. bottom: 0.03
  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: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(7, "feet"),
  19868. weight: math.unit(120, "kg"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/taluthus/front.svg",
  19872. extra: 903 / 833,
  19873. bottom: 0.015
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(7, "feet"),
  19881. default: true
  19882. },
  19883. {
  19884. name: "Macro",
  19885. height: math.unit(300, "feet")
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(5 + 9 / 12, "feet"),
  19894. weight: math.unit(145, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/dawn/front.svg",
  19898. extra: 2094 / 2016,
  19899. bottom: 0.025
  19900. }
  19901. },
  19902. back: {
  19903. height: math.unit(5 + 9 / 12, "feet"),
  19904. weight: math.unit(160, "lb"),
  19905. name: "Back",
  19906. image: {
  19907. source: "./media/characters/dawn/back.svg",
  19908. extra: 2112 / 2080,
  19909. bottom: 0.005
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(6 + 7 / 12, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19923. {
  19924. anthro: {
  19925. height: math.unit(8 + 3 / 12, "feet"),
  19926. weight: math.unit(450, "lb"),
  19927. name: "Anthro",
  19928. image: {
  19929. source: "./media/characters/arador/anthro.svg",
  19930. extra: 1835 / 1718,
  19931. bottom: 0.025
  19932. }
  19933. },
  19934. feral: {
  19935. height: math.unit(4, "feet"),
  19936. weight: math.unit(200, "lb"),
  19937. name: "Feral",
  19938. image: {
  19939. source: "./media/characters/arador/feral.svg",
  19940. extra: 1683 / 1514,
  19941. bottom: 0.07
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(8 + 3 / 12, "feet")
  19949. },
  19950. {
  19951. name: "Macro",
  19952. height: math.unit(82.5, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(5 + 10 / 12, "feet"),
  19962. weight: math.unit(125, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/dharsi/front.svg",
  19966. extra: 716 / 630,
  19967. bottom: 0.035
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Nano",
  19974. height: math.unit(100, "nm")
  19975. },
  19976. {
  19977. name: "Micro",
  19978. height: math.unit(2, "inches")
  19979. },
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(5 + 10 / 12, "feet"),
  19983. default: true
  19984. },
  19985. {
  19986. name: "Macro",
  19987. height: math.unit(1000, "feet")
  19988. },
  19989. {
  19990. name: "Megamacro",
  19991. height: math.unit(10, "miles")
  19992. },
  19993. {
  19994. name: "Gigamacro",
  19995. height: math.unit(3000, "miles")
  19996. },
  19997. {
  19998. name: "Teramacro",
  19999. height: math.unit(500000, "miles")
  20000. },
  20001. {
  20002. name: "Teramacro+",
  20003. height: math.unit(30, "galaxies")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(6, "feet"),
  20012. weight: math.unit(150, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/deathy/front.svg",
  20016. extra: 1552 / 1463,
  20017. bottom: 0.025
  20018. }
  20019. },
  20020. side: {
  20021. height: math.unit(6, "feet"),
  20022. weight: math.unit(150, "lb"),
  20023. name: "Side",
  20024. image: {
  20025. source: "./media/characters/deathy/side.svg",
  20026. extra: 1604 / 1455,
  20027. bottom: 0.025
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(6, "feet"),
  20032. weight: math.unit(150, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/deathy/back.svg",
  20036. extra: 1580 / 1463,
  20037. bottom: 0.005
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Micro",
  20044. height: math.unit(5, "millimeters")
  20045. },
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(6 + 5 / 12, "feet"),
  20049. default: true
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20055. {
  20056. front: {
  20057. height: math.unit(16, "feet"),
  20058. weight: math.unit(4000, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/juniper/front.svg",
  20062. bottom: 0.04
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(16, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(6, "feet"),
  20079. weight: math.unit(150, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/hipster/front.svg",
  20083. extra: 1312 / 1209,
  20084. bottom: 0.025
  20085. }
  20086. },
  20087. back: {
  20088. height: math.unit(6, "feet"),
  20089. weight: math.unit(150, "lb"),
  20090. name: "Back",
  20091. image: {
  20092. source: "./media/characters/hipster/back.svg",
  20093. extra: 1281 / 1196,
  20094. bottom: 0.01
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Micro",
  20101. height: math.unit(1, "mm")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(4, "inches"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(500, "feet")
  20111. },
  20112. {
  20113. name: "Megamacro",
  20114. height: math.unit(1000, "miles")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(6, "feet"),
  20123. weight: math.unit(150, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/tendirmuldr/front.svg",
  20127. extra: 1878 / 1772,
  20128. bottom: 0.015
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Megamacro",
  20135. height: math.unit(1500, "miles"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20142. {
  20143. front: {
  20144. height: math.unit(14, "feet"),
  20145. weight: math.unit(12000, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/mort/front.svg",
  20149. extra: 365 / 318,
  20150. bottom: 0.01
  20151. }
  20152. },
  20153. side: {
  20154. height: math.unit(14, "feet"),
  20155. weight: math.unit(12000, "lb"),
  20156. name: "Side",
  20157. image: {
  20158. source: "./media/characters/mort/side.svg",
  20159. extra: 365 / 318,
  20160. bottom: 0.052
  20161. },
  20162. default: true
  20163. },
  20164. back: {
  20165. height: math.unit(14, "feet"),
  20166. weight: math.unit(12000, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/mort/back.svg",
  20170. extra: 371 / 332,
  20171. bottom: 0.18
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(14, "feet"),
  20179. default: true
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20185. {
  20186. front: {
  20187. height: math.unit(8, "feet"),
  20188. weight: math.unit(1, "ton"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/lycoa/front.svg",
  20192. extra: 1875 / 1789,
  20193. bottom: 0.022
  20194. }
  20195. },
  20196. back: {
  20197. height: math.unit(8, "feet"),
  20198. weight: math.unit(1, "ton"),
  20199. name: "Back",
  20200. image: {
  20201. source: "./media/characters/lycoa/back.svg",
  20202. extra: 1835 / 1781,
  20203. bottom: 0.03
  20204. }
  20205. },
  20206. head: {
  20207. height: math.unit(2.1, "feet"),
  20208. name: "Head",
  20209. image: {
  20210. source: "./media/characters/lycoa/head.svg"
  20211. }
  20212. },
  20213. tailmaw: {
  20214. height: math.unit(1.9, "feet"),
  20215. name: "Tailmaw",
  20216. image: {
  20217. source: "./media/characters/lycoa/tailmaw.svg"
  20218. }
  20219. },
  20220. tentacles: {
  20221. height: math.unit(2.1, "feet"),
  20222. name: "Tentacles",
  20223. image: {
  20224. source: "./media/characters/lycoa/tentacles.svg"
  20225. }
  20226. },
  20227. dick: {
  20228. height: math.unit(1.73, "feet"),
  20229. name: "Dick",
  20230. image: {
  20231. source: "./media/characters/lycoa/dick.svg"
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(8, "feet"),
  20239. default: true
  20240. },
  20241. {
  20242. name: "Macro",
  20243. height: math.unit(30, "feet")
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20249. {
  20250. front: {
  20251. height: math.unit(4 + 2 / 12, "feet"),
  20252. weight: math.unit(70, "lb"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/naldara/front.svg",
  20256. extra: 841 / 720,
  20257. bottom: 0.04
  20258. }
  20259. },
  20260. naga: {
  20261. height: math.unit(23, "feet"),
  20262. weight: math.unit(15000, "kg"),
  20263. name: "Naga",
  20264. image: {
  20265. source: "./media/characters/naldara/naga.svg",
  20266. extra: 3290 / 2959,
  20267. bottom: 124 / 3432
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(4 + 2 / 12, "feet"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(13 + 7 / 12, "feet"),
  20284. weight: math.unit(1500, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/briar/front.svg",
  20288. extra: 626 / 596,
  20289. bottom: 0.08
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(13 + 7 / 12, "feet"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20303. {
  20304. side: {
  20305. height: math.unit(10, "feet"),
  20306. weight: math.unit(500, "lb"),
  20307. name: "Side",
  20308. image: {
  20309. source: "./media/characters/vanguard/side.svg",
  20310. extra: 502 / 425,
  20311. bottom: 0.087
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(10, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(7.5, "feet"),
  20328. weight: math.unit(2, "lb"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/artemis/front.svg",
  20332. extra: 1192 / 1075,
  20333. bottom: 0.07
  20334. }
  20335. },
  20336. frontNsfw: {
  20337. height: math.unit(7.5, "feet"),
  20338. weight: math.unit(2, "lb"),
  20339. name: "Front (NSFW)",
  20340. image: {
  20341. source: "./media/characters/artemis/front-nsfw.svg",
  20342. extra: 1192 / 1075,
  20343. bottom: 0.07
  20344. }
  20345. },
  20346. frontNsfwer: {
  20347. height: math.unit(7.5, "feet"),
  20348. weight: math.unit(2, "lb"),
  20349. name: "Front (NSFW-er)",
  20350. image: {
  20351. source: "./media/characters/artemis/front-nsfwer.svg",
  20352. extra: 1192 / 1075,
  20353. bottom: 0.07
  20354. }
  20355. },
  20356. side: {
  20357. height: math.unit(7.5, "feet"),
  20358. weight: math.unit(2, "lb"),
  20359. name: "Side",
  20360. image: {
  20361. source: "./media/characters/artemis/side.svg",
  20362. extra: 1192 / 1075,
  20363. bottom: 0.07
  20364. }
  20365. },
  20366. sideNsfw: {
  20367. height: math.unit(7.5, "feet"),
  20368. weight: math.unit(2, "lb"),
  20369. name: "Side (NSFW)",
  20370. image: {
  20371. source: "./media/characters/artemis/side-nsfw.svg",
  20372. extra: 1192 / 1075,
  20373. bottom: 0.07
  20374. }
  20375. },
  20376. sideNsfwer: {
  20377. height: math.unit(7.5, "feet"),
  20378. weight: math.unit(2, "lb"),
  20379. name: "Side (NSFW-er)",
  20380. image: {
  20381. source: "./media/characters/artemis/side-nsfwer.svg",
  20382. extra: 1192 / 1075,
  20383. bottom: 0.07
  20384. }
  20385. },
  20386. maw: {
  20387. height: math.unit(1.1, "feet"),
  20388. name: "Maw",
  20389. image: {
  20390. source: "./media/characters/artemis/maw.svg"
  20391. }
  20392. },
  20393. stomach: {
  20394. height: math.unit(0.95, "feet"),
  20395. name: "Stomach",
  20396. image: {
  20397. source: "./media/characters/artemis/stomach.svg"
  20398. }
  20399. },
  20400. dickCanine: {
  20401. height: math.unit(1, "feet"),
  20402. name: "Dick (Canine)",
  20403. image: {
  20404. source: "./media/characters/artemis/dick-canine.svg"
  20405. }
  20406. },
  20407. dickEquine: {
  20408. height: math.unit(0.85, "feet"),
  20409. name: "Dick (Equine)",
  20410. image: {
  20411. source: "./media/characters/artemis/dick-equine.svg"
  20412. }
  20413. },
  20414. dickExotic: {
  20415. height: math.unit(0.85, "feet"),
  20416. name: "Dick (Exotic)",
  20417. image: {
  20418. source: "./media/characters/artemis/dick-exotic.svg"
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(7.5, "feet"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Enlarged",
  20430. height: math.unit(12, "feet")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(5 + 3 / 12, "feet"),
  20439. weight: math.unit(160, "lb"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/kira/front.svg",
  20443. extra: 906 / 786,
  20444. bottom: 0.01
  20445. }
  20446. },
  20447. back: {
  20448. height: math.unit(5 + 3 / 12, "feet"),
  20449. weight: math.unit(160, "lb"),
  20450. name: "Back",
  20451. image: {
  20452. source: "./media/characters/kira/back.svg",
  20453. extra: 882 / 757,
  20454. bottom: 0.005
  20455. }
  20456. },
  20457. frontDressed: {
  20458. height: math.unit(5 + 3 / 12, "feet"),
  20459. weight: math.unit(160, "lb"),
  20460. name: "Front (Dressed)",
  20461. image: {
  20462. source: "./media/characters/kira/front-dressed.svg",
  20463. extra: 906 / 786,
  20464. bottom: 0.01
  20465. }
  20466. },
  20467. beans: {
  20468. height: math.unit(0.92, "feet"),
  20469. name: "Beans",
  20470. image: {
  20471. source: "./media/characters/kira/beans.svg"
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(5 + 3 / 12, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(5 + 4 / 12, "feet"),
  20488. weight: math.unit(145, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/scramble/front.svg",
  20492. extra: 763 / 727,
  20493. bottom: 0.05
  20494. }
  20495. },
  20496. back: {
  20497. height: math.unit(5 + 4 / 12, "feet"),
  20498. weight: math.unit(145, "lb"),
  20499. name: "Back",
  20500. image: {
  20501. source: "./media/characters/scramble/back.svg",
  20502. extra: 826 / 737,
  20503. bottom: 0.002
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(5 + 4 / 12, "feet"),
  20511. default: true
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20517. {
  20518. side: {
  20519. height: math.unit(6 + 2 / 12, "feet"),
  20520. weight: math.unit(190, "lb"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/biscuit/side.svg",
  20524. extra: 858 / 791,
  20525. bottom: 0.044
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(6 + 2 / 12, "feet"),
  20533. default: true
  20534. },
  20535. ]
  20536. ))
  20537. characterMakers.push(() => makeCharacter(
  20538. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20539. {
  20540. front: {
  20541. height: math.unit(5 + 2 / 12, "feet"),
  20542. weight: math.unit(120, "lb"),
  20543. name: "Front",
  20544. image: {
  20545. source: "./media/characters/poffin/front.svg",
  20546. extra: 786 / 680,
  20547. bottom: 0.005
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(5 + 2 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(6 + 3 / 12, "feet"),
  20564. weight: math.unit(519, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/dhari/front.svg",
  20568. extra: 1048 / 946,
  20569. bottom: 0.015
  20570. }
  20571. },
  20572. back: {
  20573. height: math.unit(6 + 3 / 12, "feet"),
  20574. weight: math.unit(519, "lb"),
  20575. name: "Back",
  20576. image: {
  20577. source: "./media/characters/dhari/back.svg",
  20578. extra: 1048 / 931,
  20579. bottom: 0.005
  20580. }
  20581. },
  20582. frontDressed: {
  20583. height: math.unit(6 + 3 / 12, "feet"),
  20584. weight: math.unit(519, "lb"),
  20585. name: "Front (Dressed)",
  20586. image: {
  20587. source: "./media/characters/dhari/front-dressed.svg",
  20588. extra: 1713 / 1546,
  20589. bottom: 0.02
  20590. }
  20591. },
  20592. backDressed: {
  20593. height: math.unit(6 + 3 / 12, "feet"),
  20594. weight: math.unit(519, "lb"),
  20595. name: "Back (Dressed)",
  20596. image: {
  20597. source: "./media/characters/dhari/back-dressed.svg",
  20598. extra: 1699 / 1537,
  20599. bottom: 0.01
  20600. }
  20601. },
  20602. maw: {
  20603. height: math.unit(0.95, "feet"),
  20604. name: "Maw",
  20605. image: {
  20606. source: "./media/characters/dhari/maw.svg"
  20607. }
  20608. },
  20609. wereFront: {
  20610. height: math.unit(12 + 8 / 12, "feet"),
  20611. weight: math.unit(4000, "lb"),
  20612. name: "Front (Were)",
  20613. image: {
  20614. source: "./media/characters/dhari/were-front.svg",
  20615. extra: 1065 / 969,
  20616. bottom: 0.015
  20617. }
  20618. },
  20619. wereBack: {
  20620. height: math.unit(12 + 8 / 12, "feet"),
  20621. weight: math.unit(4000, "lb"),
  20622. name: "Back (Were)",
  20623. image: {
  20624. source: "./media/characters/dhari/were-back.svg",
  20625. extra: 1065 / 969,
  20626. bottom: 0.012
  20627. }
  20628. },
  20629. wereMaw: {
  20630. height: math.unit(0.625, "meters"),
  20631. name: "Maw (Were)",
  20632. image: {
  20633. source: "./media/characters/dhari/were-maw.svg"
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(6 + 3 / 12, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20647. {
  20648. anthro: {
  20649. height: math.unit(5 + 7 / 12, "feet"),
  20650. weight: math.unit(175, "lb"),
  20651. name: "Anthro",
  20652. image: {
  20653. source: "./media/characters/rena-dyne/anthro.svg",
  20654. extra: 1849 / 1785,
  20655. bottom: 0.005
  20656. }
  20657. },
  20658. taur: {
  20659. height: math.unit(15 + 6 / 12, "feet"),
  20660. weight: math.unit(8000, "lb"),
  20661. name: "Taur",
  20662. image: {
  20663. source: "./media/characters/rena-dyne/taur.svg",
  20664. extra: 2315 / 2234,
  20665. bottom: 0.033
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(5 + 7 / 12, "feet"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(8, "feet"),
  20682. weight: math.unit(600, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/weremeep/front.svg",
  20686. extra: 967 / 862,
  20687. bottom: 0.01
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(8, "feet"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Lorg",
  20699. height: math.unit(12, "feet")
  20700. },
  20701. {
  20702. name: "Oh Lawd She Comin'",
  20703. height: math.unit(20, "feet")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20709. {
  20710. front: {
  20711. height: math.unit(4, "feet"),
  20712. weight: math.unit(90, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/reza/front.svg",
  20716. extra: 1183 / 1111,
  20717. bottom: 0.017
  20718. }
  20719. },
  20720. back: {
  20721. height: math.unit(4, "feet"),
  20722. weight: math.unit(90, "lb"),
  20723. name: "Back",
  20724. image: {
  20725. source: "./media/characters/reza/back.svg",
  20726. extra: 1183 / 1111,
  20727. bottom: 0.01
  20728. }
  20729. },
  20730. drake: {
  20731. height: math.unit(30, "feet"),
  20732. weight: math.unit(246960, "lb"),
  20733. name: "Drake",
  20734. image: {
  20735. source: "./media/characters/reza/drake.svg",
  20736. extra: 2350 / 2024,
  20737. bottom: 60.7 / 2403
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(4, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20751. {
  20752. side: {
  20753. height: math.unit(15, "feet"),
  20754. weight: math.unit(14, "tons"),
  20755. name: "Side",
  20756. image: {
  20757. source: "./media/characters/athea/side.svg",
  20758. extra: 960 / 540,
  20759. bottom: 0.003
  20760. }
  20761. },
  20762. sitting: {
  20763. height: math.unit(6 * 2.85, "feet"),
  20764. weight: math.unit(14, "tons"),
  20765. name: "Sitting",
  20766. image: {
  20767. source: "./media/characters/athea/sitting.svg",
  20768. extra: 621 / 581,
  20769. bottom: 0.075
  20770. }
  20771. },
  20772. maw: {
  20773. height: math.unit(7.59498031496063, "feet"),
  20774. name: "Maw",
  20775. image: {
  20776. source: "./media/characters/athea/maw.svg"
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Lap Cat",
  20783. height: math.unit(2.5, "feet")
  20784. },
  20785. {
  20786. name: "Minimacro",
  20787. height: math.unit(15, "feet"),
  20788. default: true
  20789. },
  20790. {
  20791. name: "Macro",
  20792. height: math.unit(120, "feet")
  20793. },
  20794. {
  20795. name: "Macro+",
  20796. height: math.unit(640, "feet")
  20797. },
  20798. {
  20799. name: "Colossus",
  20800. height: math.unit(2.2, "miles")
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(8 + 8 / 12, "feet"),
  20809. weight: math.unit(130, "kg"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/seroko/front.svg",
  20813. extra: 1385 / 1280,
  20814. bottom: 0.025
  20815. }
  20816. },
  20817. back: {
  20818. height: math.unit(8 + 8 / 12, "feet"),
  20819. weight: math.unit(130, "kg"),
  20820. name: "Back",
  20821. image: {
  20822. source: "./media/characters/seroko/back.svg",
  20823. extra: 1369 / 1238,
  20824. bottom: 0.018
  20825. }
  20826. },
  20827. frontDressed: {
  20828. height: math.unit(8 + 8 / 12, "feet"),
  20829. weight: math.unit(130, "kg"),
  20830. name: "Front (Dressed)",
  20831. image: {
  20832. source: "./media/characters/seroko/front-dressed.svg",
  20833. extra: 1366 / 1275,
  20834. bottom: 0.03
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(8 + 8 / 12, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(5.5, "feet"),
  20851. weight: math.unit(160, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/quatzi/front.svg",
  20855. extra: 2346 / 2242,
  20856. bottom: 0.015
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(5.5, "feet"),
  20864. default: true
  20865. },
  20866. {
  20867. name: "Big",
  20868. height: math.unit(7.7, "feet")
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(5 + 11 / 12, "feet"),
  20877. weight: math.unit(180, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/sen/front.svg",
  20881. extra: 1321 / 1254,
  20882. bottom: 0.015
  20883. }
  20884. },
  20885. side: {
  20886. height: math.unit(5 + 11 / 12, "feet"),
  20887. weight: math.unit(180, "lb"),
  20888. name: "Side",
  20889. image: {
  20890. source: "./media/characters/sen/side.svg",
  20891. extra: 1321 / 1254,
  20892. bottom: 0.007
  20893. }
  20894. },
  20895. back: {
  20896. height: math.unit(5 + 11 / 12, "feet"),
  20897. weight: math.unit(180, "lb"),
  20898. name: "Back",
  20899. image: {
  20900. source: "./media/characters/sen/back.svg",
  20901. extra: 1321 / 1254
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(5 + 11 / 12, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(166.6, "cm"),
  20918. weight: math.unit(66.6, "kg"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/fruity/front.svg",
  20922. extra: 1510 / 1386,
  20923. bottom: 0.04
  20924. }
  20925. },
  20926. back: {
  20927. height: math.unit(166.6, "cm"),
  20928. weight: math.unit(66.6, "lb"),
  20929. name: "Back",
  20930. image: {
  20931. source: "./media/characters/fruity/back.svg",
  20932. extra: 1563 / 1435,
  20933. bottom: 0.005
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Normal",
  20940. height: math.unit(166.6, "cm"),
  20941. default: true
  20942. },
  20943. {
  20944. name: "Demonic",
  20945. height: math.unit(166.6, "feet")
  20946. },
  20947. ]
  20948. ))
  20949. characterMakers.push(() => makeCharacter(
  20950. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20951. {
  20952. side: {
  20953. height: math.unit(10, "feet"),
  20954. weight: math.unit(500, "lb"),
  20955. name: "Side",
  20956. image: {
  20957. source: "./media/characters/zost/side.svg",
  20958. extra: 966 / 880,
  20959. bottom: 0.075
  20960. }
  20961. },
  20962. mawFront: {
  20963. height: math.unit(1.08, "meters"),
  20964. name: "Maw (Front)",
  20965. image: {
  20966. source: "./media/characters/zost/maw-front.svg"
  20967. }
  20968. },
  20969. mawSide: {
  20970. height: math.unit(2.66, "feet"),
  20971. name: "Maw (Side)",
  20972. image: {
  20973. source: "./media/characters/zost/maw-side.svg"
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(10, "feet"),
  20981. default: true
  20982. },
  20983. ]
  20984. ))
  20985. characterMakers.push(() => makeCharacter(
  20986. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20987. {
  20988. front: {
  20989. height: math.unit(5 + 4 / 12, "feet"),
  20990. weight: math.unit(120, "lb"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/luci/front.svg",
  20994. extra: 1985 / 1884,
  20995. bottom: 0.04
  20996. }
  20997. },
  20998. back: {
  20999. height: math.unit(5 + 4 / 12, "feet"),
  21000. weight: math.unit(120, "lb"),
  21001. name: "Back",
  21002. image: {
  21003. source: "./media/characters/luci/back.svg",
  21004. extra: 1892 / 1791,
  21005. bottom: 0.002
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(5 + 4 / 12, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(1500, "feet"),
  21022. weight: math.unit(3.8e6, "tons"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/2th/front.svg",
  21026. extra: 3489 / 3350,
  21027. bottom: 0.1
  21028. }
  21029. },
  21030. foot: {
  21031. height: math.unit(461, "feet"),
  21032. name: "Foot",
  21033. image: {
  21034. source: "./media/characters/2th/foot.svg"
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "\"Micro\"",
  21041. height: math.unit(15 + 7 / 12, "feet")
  21042. },
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(1500, "feet"),
  21046. default: true
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(5000, "feet")
  21051. },
  21052. {
  21053. name: "Megamacro",
  21054. height: math.unit(15, "miles")
  21055. },
  21056. {
  21057. name: "Gigamacro",
  21058. height: math.unit(4000, "miles")
  21059. },
  21060. {
  21061. name: "Galactic",
  21062. height: math.unit(50, "AU")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(5 + 6 / 12, "feet"),
  21071. weight: math.unit(220, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/amethyst/front.svg",
  21075. extra: 2078 / 2040,
  21076. bottom: 0.045
  21077. }
  21078. },
  21079. back: {
  21080. height: math.unit(5 + 6 / 12, "feet"),
  21081. weight: math.unit(220, "lb"),
  21082. name: "Back",
  21083. image: {
  21084. source: "./media/characters/amethyst/back.svg",
  21085. extra: 2021 / 1989,
  21086. bottom: 0.02
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(5 + 6 / 12, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21100. {
  21101. front: {
  21102. height: math.unit(4 + 11 / 12, "feet"),
  21103. weight: math.unit(120, "lb"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/yumi-akiyama/front.svg",
  21107. extra: 1327 / 1235,
  21108. bottom: 0.02
  21109. }
  21110. },
  21111. back: {
  21112. height: math.unit(4 + 11 / 12, "feet"),
  21113. weight: math.unit(120, "lb"),
  21114. name: "Back",
  21115. image: {
  21116. source: "./media/characters/yumi-akiyama/back.svg",
  21117. extra: 1287 / 1245,
  21118. bottom: 0.002
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Galactic",
  21125. height: math.unit(50, "galaxies"),
  21126. default: true
  21127. },
  21128. {
  21129. name: "Universal",
  21130. height: math.unit(100, "universes")
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(8, "feet"),
  21139. weight: math.unit(500, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/rifter-yrmori/front.svg",
  21143. extra: 1180 / 1125,
  21144. bottom: 0.02
  21145. }
  21146. },
  21147. back: {
  21148. height: math.unit(8, "feet"),
  21149. weight: math.unit(500, "lb"),
  21150. name: "Back",
  21151. image: {
  21152. source: "./media/characters/rifter-yrmori/back.svg",
  21153. extra: 1190 / 1145,
  21154. bottom: 0.001
  21155. }
  21156. },
  21157. wings: {
  21158. height: math.unit(7.75, "feet"),
  21159. weight: math.unit(500, "lb"),
  21160. name: "Wings",
  21161. image: {
  21162. source: "./media/characters/rifter-yrmori/wings.svg",
  21163. extra: 1357 / 1285
  21164. }
  21165. },
  21166. maw: {
  21167. height: math.unit(0.8, "feet"),
  21168. name: "Maw",
  21169. image: {
  21170. source: "./media/characters/rifter-yrmori/maw.svg"
  21171. }
  21172. },
  21173. mawfront: {
  21174. height: math.unit(1.45, "feet"),
  21175. name: "Maw (Front)",
  21176. image: {
  21177. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(8, "feet"),
  21185. default: true
  21186. },
  21187. {
  21188. name: "Macro",
  21189. height: math.unit(42, "meters")
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21195. {
  21196. were: {
  21197. height: math.unit(25 + 6 / 12, "feet"),
  21198. weight: math.unit(10000, "lb"),
  21199. name: "Were",
  21200. image: {
  21201. source: "./media/characters/tahajin/were.svg",
  21202. extra: 801 / 770,
  21203. bottom: 0.042
  21204. }
  21205. },
  21206. aquatic: {
  21207. height: math.unit(6 + 4 / 12, "feet"),
  21208. weight: math.unit(160, "lb"),
  21209. name: "Aquatic",
  21210. image: {
  21211. source: "./media/characters/tahajin/aquatic.svg",
  21212. extra: 572 / 542,
  21213. bottom: 0.04
  21214. }
  21215. },
  21216. chow: {
  21217. height: math.unit(8 + 11 / 12, "feet"),
  21218. weight: math.unit(450, "lb"),
  21219. name: "Chow",
  21220. image: {
  21221. source: "./media/characters/tahajin/chow.svg",
  21222. extra: 660 / 640,
  21223. bottom: 0.015
  21224. }
  21225. },
  21226. demiNaga: {
  21227. height: math.unit(6 + 8 / 12, "feet"),
  21228. weight: math.unit(300, "lb"),
  21229. name: "Demi Naga",
  21230. image: {
  21231. source: "./media/characters/tahajin/demi-naga.svg",
  21232. extra: 643 / 615,
  21233. bottom: 0.1
  21234. }
  21235. },
  21236. data: {
  21237. height: math.unit(5, "inches"),
  21238. weight: math.unit(0.1, "lb"),
  21239. name: "Data",
  21240. image: {
  21241. source: "./media/characters/tahajin/data.svg"
  21242. }
  21243. },
  21244. fluu: {
  21245. height: math.unit(5 + 7 / 12, "feet"),
  21246. weight: math.unit(140, "lb"),
  21247. name: "Fluu",
  21248. image: {
  21249. source: "./media/characters/tahajin/fluu.svg",
  21250. extra: 628 / 592,
  21251. bottom: 0.02
  21252. }
  21253. },
  21254. starWarrior: {
  21255. height: math.unit(4 + 5 / 12, "feet"),
  21256. weight: math.unit(50, "lb"),
  21257. name: "Star Warrior",
  21258. image: {
  21259. source: "./media/characters/tahajin/star-warrior.svg"
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(25 + 6 / 12, "feet"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(8, "feet"),
  21276. weight: math.unit(350, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/gabira/front.svg",
  21280. extra: 608 / 580,
  21281. bottom: 0.03
  21282. }
  21283. },
  21284. back: {
  21285. height: math.unit(8, "feet"),
  21286. weight: math.unit(350, "lb"),
  21287. name: "Back",
  21288. image: {
  21289. source: "./media/characters/gabira/back.svg",
  21290. extra: 608 / 580,
  21291. bottom: 0.03
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(8, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(5 + 3 / 12, "feet"),
  21308. weight: math.unit(137, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/sasha-katraine/front.svg",
  21312. bottom: 0.045
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Micro",
  21319. height: math.unit(5, "inches")
  21320. },
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(5 + 3 / 12, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21330. {
  21331. side: {
  21332. height: math.unit(4, "inches"),
  21333. weight: math.unit(200, "grams"),
  21334. name: "Side",
  21335. image: {
  21336. source: "./media/characters/der/side.svg",
  21337. extra: 719 / 400,
  21338. bottom: 30.6 / 749.9187
  21339. }
  21340. },
  21341. },
  21342. [
  21343. {
  21344. name: "Micro",
  21345. height: math.unit(4, "inches"),
  21346. default: true
  21347. },
  21348. ]
  21349. ))
  21350. characterMakers.push(() => makeCharacter(
  21351. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21352. {
  21353. side: {
  21354. height: math.unit(30, "meters"),
  21355. weight: math.unit(700, "tonnes"),
  21356. name: "Side",
  21357. image: {
  21358. source: "./media/characters/fixerdragon/side.svg",
  21359. extra: (1293.0514 - 116.03) / 1106.86,
  21360. bottom: 116.03 / 1293.0514
  21361. }
  21362. },
  21363. },
  21364. [
  21365. {
  21366. name: "Planck",
  21367. height: math.unit(1.6e-35, "meters")
  21368. },
  21369. {
  21370. name: "Micro",
  21371. height: math.unit(0.4, "meters")
  21372. },
  21373. {
  21374. name: "Normal",
  21375. height: math.unit(30, "meters"),
  21376. default: true
  21377. },
  21378. {
  21379. name: "Megamacro",
  21380. height: math.unit(1.2, "megameters")
  21381. },
  21382. {
  21383. name: "Teramacro",
  21384. height: math.unit(130, "terameters")
  21385. },
  21386. {
  21387. name: "Yottamacro",
  21388. height: math.unit(6200, "yottameters")
  21389. },
  21390. ]
  21391. ));
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(8, "feet"),
  21397. weight: math.unit(250, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/kite/front.svg",
  21401. extra: 2796 / 2659,
  21402. bottom: 0.002
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(8, "feet"),
  21410. default: true
  21411. },
  21412. {
  21413. name: "Macro",
  21414. height: math.unit(360, "feet")
  21415. },
  21416. {
  21417. name: "Megamacro",
  21418. height: math.unit(1500, "feet")
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(5 + 10 / 12, "feet"),
  21427. weight: math.unit(150, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/poojawa-vynar/front.svg",
  21431. extra: (1506.1547 - 55) / 1356.6,
  21432. bottom: 55 / 1506.1547
  21433. }
  21434. },
  21435. frontTailless: {
  21436. height: math.unit(5 + 10 / 12, "feet"),
  21437. weight: math.unit(150, "lb"),
  21438. name: "Front (Tailless)",
  21439. image: {
  21440. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21441. extra: (1506.1547 - 55) / 1356.6,
  21442. bottom: 55 / 1506.1547
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(5 + 10 / 12, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(293, "meters"),
  21459. weight: math.unit(70400, "tons"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/violette/front.svg",
  21463. extra: 1227 / 1180,
  21464. bottom: 0.005
  21465. }
  21466. },
  21467. back: {
  21468. height: math.unit(293, "meters"),
  21469. weight: math.unit(70400, "tons"),
  21470. name: "Back",
  21471. image: {
  21472. source: "./media/characters/violette/back.svg",
  21473. extra: 1227 / 1180,
  21474. bottom: 0.005
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Macro",
  21481. height: math.unit(293, "meters"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(1050, "feet"),
  21491. weight: math.unit(200000, "tons"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/alessandra/front.svg",
  21495. extra: 960 / 912,
  21496. bottom: 0.06
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Macro",
  21503. height: math.unit(1050, "feet")
  21504. },
  21505. {
  21506. name: "Macro+",
  21507. height: math.unit(900, "meters"),
  21508. default: true
  21509. },
  21510. ]
  21511. ))
  21512. characterMakers.push(() => makeCharacter(
  21513. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21514. {
  21515. front: {
  21516. height: math.unit(5, "feet"),
  21517. weight: math.unit(187, "lb"),
  21518. name: "Front",
  21519. image: {
  21520. source: "./media/characters/person/front.svg",
  21521. extra: 3087 / 2945,
  21522. bottom: 91 / 3181
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Micro",
  21529. height: math.unit(3, "inches")
  21530. },
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(5, "feet"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(90, "feet")
  21539. },
  21540. {
  21541. name: "Max Size",
  21542. height: math.unit(280, "feet")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(4.5, "meters"),
  21551. weight: math.unit(3200, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/ty/front.svg",
  21555. extra: 1038 / 960,
  21556. bottom: 31.156 / 1068
  21557. }
  21558. },
  21559. back: {
  21560. height: math.unit(4.5, "meters"),
  21561. weight: math.unit(3200, "lb"),
  21562. name: "Back",
  21563. image: {
  21564. source: "./media/characters/ty/back.svg",
  21565. extra: 1044 / 966,
  21566. bottom: 7.48 / 1049
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(4.5, "meters"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(5 + 4 / 12, "feet"),
  21583. weight: math.unit(115, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/rocky/front.svg",
  21587. extra: 1012 / 975,
  21588. bottom: 54 / 1066
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(5 + 4 / 12, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21602. {
  21603. upright: {
  21604. height: math.unit(6, "meters"),
  21605. weight: math.unit(4000, "kg"),
  21606. name: "Upright",
  21607. image: {
  21608. source: "./media/characters/ruin/upright.svg",
  21609. extra: 668 / 661,
  21610. bottom: 42 / 799.8396
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(6, "meters"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(5, "feet"),
  21627. weight: math.unit(106, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/robin/front.svg",
  21631. extra: 862 / 799,
  21632. bottom: 42.4 / 914.8856
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(5, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21646. {
  21647. side: {
  21648. height: math.unit(3, "feet"),
  21649. weight: math.unit(225, "lb"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/saian/side.svg",
  21653. extra: 566 / 356,
  21654. bottom: 79.7 / 643
  21655. }
  21656. },
  21657. maw: {
  21658. height: math.unit(2.85, "feet"),
  21659. name: "Maw",
  21660. image: {
  21661. source: "./media/characters/saian/maw.svg"
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(3, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21675. {
  21676. side: {
  21677. height: math.unit(8, "feet"),
  21678. weight: math.unit(300, "lb"),
  21679. name: "Side",
  21680. image: {
  21681. source: "./media/characters/equus-silvermane/side.svg",
  21682. extra: 2176 / 2050,
  21683. bottom: 65.7 / 2245
  21684. }
  21685. },
  21686. front: {
  21687. height: math.unit(8, "feet"),
  21688. weight: math.unit(300, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/equus-silvermane/front.svg",
  21692. extra: 4633 / 4400,
  21693. bottom: 71.3 / 4706.915
  21694. }
  21695. },
  21696. sideStepping: {
  21697. height: math.unit(8, "feet"),
  21698. weight: math.unit(300, "lb"),
  21699. name: "Side (Stepping)",
  21700. image: {
  21701. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21702. extra: 1968 / 1860,
  21703. bottom: 16.4 / 1989
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(8, "feet")
  21711. },
  21712. {
  21713. name: "Minimacro",
  21714. height: math.unit(75, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(150, "feet")
  21720. },
  21721. {
  21722. name: "Macro+",
  21723. height: math.unit(1000, "feet")
  21724. },
  21725. {
  21726. name: "Megamacro",
  21727. height: math.unit(1, "mile")
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21733. {
  21734. side: {
  21735. height: math.unit(20, "feet"),
  21736. weight: math.unit(30000, "kg"),
  21737. name: "Side",
  21738. image: {
  21739. source: "./media/characters/windar/side.svg",
  21740. extra: 1491 / 1248,
  21741. bottom: 82.56 / 1568
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(20, "feet"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21755. {
  21756. side: {
  21757. height: math.unit(15.66, "feet"),
  21758. weight: math.unit(150, "lb"),
  21759. name: "Side",
  21760. image: {
  21761. source: "./media/characters/melody/side.svg",
  21762. extra: 1097 / 944,
  21763. bottom: 11.8 / 1109
  21764. }
  21765. },
  21766. sideOutfit: {
  21767. height: math.unit(15.66, "feet"),
  21768. weight: math.unit(150, "lb"),
  21769. name: "Side (Outfit)",
  21770. image: {
  21771. source: "./media/characters/melody/side-outfit.svg",
  21772. extra: 1097 / 944,
  21773. bottom: 11.8 / 1109
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(15.66, "feet"),
  21781. default: true
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(8, "feet"),
  21790. weight: math.unit(325, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/windera/front.svg",
  21794. extra: 3180 / 2845,
  21795. bottom: 178 / 3365
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(8, "feet"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21809. {
  21810. front: {
  21811. height: math.unit(28.75, "feet"),
  21812. weight: math.unit(2000, "kg"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/sonear/front.svg",
  21816. extra: 1041.1 / 964.9,
  21817. bottom: 53.7 / 1096.6
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(28.75, "feet"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21831. {
  21832. side: {
  21833. height: math.unit(25.5, "feet"),
  21834. weight: math.unit(23000, "kg"),
  21835. name: "Side",
  21836. image: {
  21837. source: "./media/characters/kanara/side.svg"
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(25.5, "feet"),
  21845. default: true
  21846. },
  21847. ]
  21848. ))
  21849. characterMakers.push(() => makeCharacter(
  21850. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21851. {
  21852. side: {
  21853. height: math.unit(10, "feet"),
  21854. weight: math.unit(1000, "kg"),
  21855. name: "Side",
  21856. image: {
  21857. source: "./media/characters/ereus/side.svg",
  21858. extra: 1157 / 959,
  21859. bottom: 153 / 1312.5
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(10, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21873. {
  21874. side: {
  21875. height: math.unit(4.5, "feet"),
  21876. weight: math.unit(500, "lb"),
  21877. name: "Side",
  21878. image: {
  21879. source: "./media/characters/e-ter/side.svg",
  21880. extra: 1550 / 1248,
  21881. bottom: 146 / 1694
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(4.5, "feet"),
  21889. default: true
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21895. {
  21896. side: {
  21897. height: math.unit(9.7, "feet"),
  21898. weight: math.unit(4000, "kg"),
  21899. name: "Side",
  21900. image: {
  21901. source: "./media/characters/yamie/side.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(9.7, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(50, "feet"),
  21918. weight: math.unit(50000, "kg"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/anders/front.svg",
  21922. extra: 570 / 539,
  21923. bottom: 14.7 / 586.7
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Large",
  21930. height: math.unit(50, "feet")
  21931. },
  21932. {
  21933. name: "Macro",
  21934. height: math.unit(2000, "feet"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Megamacro",
  21939. height: math.unit(12, "miles")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(7 + 2 / 12, "feet"),
  21948. weight: math.unit(300, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/reban/front.svg",
  21952. extra: 516 / 487,
  21953. bottom: 42.82 / 558.356
  21954. }
  21955. },
  21956. dick: {
  21957. height: math.unit(7 / 5, "feet"),
  21958. name: "Dick",
  21959. image: {
  21960. source: "./media/characters/reban/dick.svg"
  21961. }
  21962. },
  21963. },
  21964. [
  21965. {
  21966. name: "Natural Height",
  21967. height: math.unit(7 + 2 / 12, "feet")
  21968. },
  21969. {
  21970. name: "Macro",
  21971. height: math.unit(500, "feet"),
  21972. default: true
  21973. },
  21974. {
  21975. name: "Canon Height",
  21976. height: math.unit(50, "AU")
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(6, "feet"),
  21985. weight: math.unit(150, "lb"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/terrance-keayes/front.svg",
  21989. extra: 1.005,
  21990. bottom: 151 / 1615
  21991. }
  21992. },
  21993. side: {
  21994. height: math.unit(6, "feet"),
  21995. weight: math.unit(150, "lb"),
  21996. name: "Side",
  21997. image: {
  21998. source: "./media/characters/terrance-keayes/side.svg",
  21999. extra: 1.005,
  22000. bottom: 129.4 / 1544
  22001. }
  22002. },
  22003. back: {
  22004. height: math.unit(6, "feet"),
  22005. weight: math.unit(150, "lb"),
  22006. name: "Back",
  22007. image: {
  22008. source: "./media/characters/terrance-keayes/back.svg",
  22009. extra: 1.005,
  22010. bottom: 58.4 / 1557.3
  22011. }
  22012. },
  22013. dick: {
  22014. height: math.unit(6 * 0.208, "feet"),
  22015. name: "Dick",
  22016. image: {
  22017. source: "./media/characters/terrance-keayes/dick.svg"
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Canon Height",
  22024. height: math.unit(35, "miles"),
  22025. default: true
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(6, "feet"),
  22034. weight: math.unit(150, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/ofelia/front.svg",
  22038. extra: 546 / 541,
  22039. bottom: 39 / 583
  22040. }
  22041. },
  22042. back: {
  22043. height: math.unit(6, "feet"),
  22044. weight: math.unit(150, "lb"),
  22045. name: "Back",
  22046. image: {
  22047. source: "./media/characters/ofelia/back.svg",
  22048. extra: 564 / 559.5,
  22049. bottom: 8.69 / 573.02
  22050. }
  22051. },
  22052. maw: {
  22053. height: math.unit(1, "feet"),
  22054. name: "Maw",
  22055. image: {
  22056. source: "./media/characters/ofelia/maw.svg"
  22057. }
  22058. },
  22059. foot: {
  22060. height: math.unit(1.949, "feet"),
  22061. name: "Foot",
  22062. image: {
  22063. source: "./media/characters/ofelia/foot.svg"
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Canon Height",
  22070. height: math.unit(2000, "miles"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(6, "feet"),
  22080. weight: math.unit(150, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/samuel/front.svg",
  22084. extra: 265 / 258,
  22085. bottom: 2 / 266.1566
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(100, "feet"),
  22093. default: true
  22094. },
  22095. {
  22096. name: "Full Size",
  22097. height: math.unit(1000, "miles")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(6, "feet"),
  22106. weight: math.unit(300, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/beishir-kiel/front.svg",
  22110. extra: 569 / 547,
  22111. bottom: 41.9 / 609
  22112. }
  22113. },
  22114. maw: {
  22115. height: math.unit(6 * 0.202, "feet"),
  22116. name: "Maw",
  22117. image: {
  22118. source: "./media/characters/beishir-kiel/maw.svg"
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(300, "feet"),
  22126. default: true
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(5 + 7/12, "feet"),
  22135. weight: math.unit(120, "lb"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/logan-grey/front.svg",
  22139. extra: 1836/1738,
  22140. bottom: 108/1944
  22141. }
  22142. },
  22143. back: {
  22144. height: math.unit(5 + 7/12, "feet"),
  22145. weight: math.unit(120, "lb"),
  22146. name: "Back",
  22147. image: {
  22148. source: "./media/characters/logan-grey/back.svg",
  22149. extra: 1880/1794,
  22150. bottom: 24/1904
  22151. }
  22152. },
  22153. frontSfw: {
  22154. height: math.unit(5 + 7/12, "feet"),
  22155. weight: math.unit(120, "lb"),
  22156. name: "Front (SFW)",
  22157. image: {
  22158. source: "./media/characters/logan-grey/front-sfw.svg",
  22159. extra: 1836/1738,
  22160. bottom: 108/1944
  22161. }
  22162. },
  22163. backSfw: {
  22164. height: math.unit(5 + 7/12, "feet"),
  22165. weight: math.unit(120, "lb"),
  22166. name: "Back (SFW)",
  22167. image: {
  22168. source: "./media/characters/logan-grey/back-sfw.svg",
  22169. extra: 1880/1794,
  22170. bottom: 24/1904
  22171. }
  22172. },
  22173. hands: {
  22174. height: math.unit(0.84, "feet"),
  22175. name: "Hands",
  22176. image: {
  22177. source: "./media/characters/logan-grey/hands.svg"
  22178. }
  22179. },
  22180. paws: {
  22181. height: math.unit(0.72, "feet"),
  22182. name: "Paws",
  22183. image: {
  22184. source: "./media/characters/logan-grey/paws.svg"
  22185. }
  22186. },
  22187. cock: {
  22188. height: math.unit(1.45, "feet"),
  22189. name: "Cock",
  22190. image: {
  22191. source: "./media/characters/logan-grey/cock.svg"
  22192. }
  22193. },
  22194. cockAlt: {
  22195. height: math.unit(1.437, "feet"),
  22196. name: "Cock (alt)",
  22197. image: {
  22198. source: "./media/characters/logan-grey/cock-alt.svg"
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Normal",
  22205. height: math.unit(5 + 8 / 12, "feet")
  22206. },
  22207. {
  22208. name: "The 500 Foot Femboy",
  22209. height: math.unit(500, "feet"),
  22210. default: true
  22211. },
  22212. {
  22213. name: "Megmacro",
  22214. height: math.unit(20, "miles")
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(8 + 2 / 12, "feet"),
  22223. weight: math.unit(275, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/draganta/front.svg",
  22227. extra: 1177 / 1135,
  22228. bottom: 33.46 / 1212.1
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(8 + 6 / 12, "feet"),
  22236. default: true
  22237. },
  22238. {
  22239. name: "Macro",
  22240. height: math.unit(150, "feet")
  22241. },
  22242. {
  22243. name: "Megamacro",
  22244. height: math.unit(1000, "miles")
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(1.72, "m"),
  22253. weight: math.unit(80, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/voski/front.svg",
  22257. extra: 2076.22 / 2022.4,
  22258. bottom: 102.7 / 2177.3866
  22259. }
  22260. },
  22261. frontNsfw: {
  22262. height: math.unit(1.72, "m"),
  22263. weight: math.unit(80, "lb"),
  22264. name: "Front (NSFW)",
  22265. image: {
  22266. source: "./media/characters/voski/front-nsfw.svg",
  22267. extra: 2076.22 / 2022.4,
  22268. bottom: 102.7 / 2177.3866
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(1.72, "m"),
  22273. weight: math.unit(80, "lb"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/voski/back.svg",
  22277. extra: 2104 / 2051,
  22278. bottom: 10.45 / 2113.63
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(1.72, "m")
  22286. },
  22287. {
  22288. name: "Macro",
  22289. height: math.unit(55, "m"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Macro+",
  22294. height: math.unit(300, "m")
  22295. },
  22296. {
  22297. name: "Macro++",
  22298. height: math.unit(700, "m")
  22299. },
  22300. {
  22301. name: "Macro+++",
  22302. height: math.unit(4500, "m")
  22303. },
  22304. {
  22305. name: "Macro++++",
  22306. height: math.unit(45, "km")
  22307. },
  22308. {
  22309. name: "Macro+++++",
  22310. height: math.unit(1220, "km")
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(2.3, "m"),
  22319. weight: math.unit(304, "kg"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/icowom-lee/front.svg",
  22323. extra: 985 / 955,
  22324. bottom: 25.4 / 1012
  22325. }
  22326. },
  22327. fronttentacles: {
  22328. height: math.unit(2.3, "m"),
  22329. weight: math.unit(304, "kg"),
  22330. name: "Front-tentacles",
  22331. image: {
  22332. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22333. extra: 985 / 955,
  22334. bottom: 25.4 / 1012
  22335. }
  22336. },
  22337. back: {
  22338. height: math.unit(2.3, "m"),
  22339. weight: math.unit(304, "kg"),
  22340. name: "Back",
  22341. image: {
  22342. source: "./media/characters/icowom-lee/back.svg",
  22343. extra: 975 / 954,
  22344. bottom: 9.5 / 985
  22345. }
  22346. },
  22347. backtentacles: {
  22348. height: math.unit(2.3, "m"),
  22349. weight: math.unit(304, "kg"),
  22350. name: "Back-tentacles",
  22351. image: {
  22352. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22353. extra: 975 / 954,
  22354. bottom: 9.5 / 985
  22355. }
  22356. },
  22357. frontDressed: {
  22358. height: math.unit(2.3, "m"),
  22359. weight: math.unit(304, "kg"),
  22360. name: "Front (Dressed)",
  22361. image: {
  22362. source: "./media/characters/icowom-lee/front-dressed.svg",
  22363. extra: 3076 / 2933,
  22364. bottom: 51.4 / 3125.1889
  22365. }
  22366. },
  22367. rump: {
  22368. height: math.unit(0.776, "meters"),
  22369. name: "Rump",
  22370. image: {
  22371. source: "./media/characters/icowom-lee/rump.svg"
  22372. }
  22373. },
  22374. genitals: {
  22375. height: math.unit(0.78, "meters"),
  22376. name: "Genitals",
  22377. image: {
  22378. source: "./media/characters/icowom-lee/genitals.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(2.3, "meters"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Macro",
  22390. height: math.unit(94, "meters"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(22, "meters"),
  22400. weight: math.unit(21000, "kg"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/shock-diamond/front.svg",
  22404. extra: 2204 / 2053,
  22405. bottom: 65 / 2239.47
  22406. }
  22407. },
  22408. frontNude: {
  22409. height: math.unit(22, "meters"),
  22410. weight: math.unit(21000, "kg"),
  22411. name: "Front (Nude)",
  22412. image: {
  22413. source: "./media/characters/shock-diamond/front-nude.svg",
  22414. extra: 2514 / 2285,
  22415. bottom: 13 / 2527.56
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Normal",
  22422. height: math.unit(3, "meters")
  22423. },
  22424. {
  22425. name: "Macro",
  22426. height: math.unit(22, "meters"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(5 + 4 / 12, "feet"),
  22436. weight: math.unit(120, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/rory/front.svg",
  22440. extra: 1318/1241,
  22441. bottom: 42/1360
  22442. }
  22443. },
  22444. back: {
  22445. height: math.unit(5 + 4 / 12, "feet"),
  22446. weight: math.unit(120, "lb"),
  22447. name: "Back",
  22448. image: {
  22449. source: "./media/characters/rory/back.svg",
  22450. extra: 1318/1241,
  22451. bottom: 42/1360
  22452. }
  22453. },
  22454. butt: {
  22455. height: math.unit(1.74, "feet"),
  22456. name: "Butt",
  22457. image: {
  22458. source: "./media/characters/rory/butt.svg"
  22459. }
  22460. },
  22461. dick: {
  22462. height: math.unit(1.02, "feet"),
  22463. name: "Dick",
  22464. image: {
  22465. source: "./media/characters/rory/dick.svg"
  22466. }
  22467. },
  22468. paws: {
  22469. height: math.unit(1, "feet"),
  22470. name: "Paws",
  22471. image: {
  22472. source: "./media/characters/rory/paws.svg"
  22473. }
  22474. },
  22475. frontAlt: {
  22476. height: math.unit(5 + 4 / 12, "feet"),
  22477. weight: math.unit(120, "lb"),
  22478. name: "Front (Alt)",
  22479. image: {
  22480. source: "./media/characters/rory/front-alt.svg",
  22481. extra: 589 / 556,
  22482. bottom: 45.7 / 635.76
  22483. }
  22484. },
  22485. frontAltNude: {
  22486. height: math.unit(5 + 4 / 12, "feet"),
  22487. weight: math.unit(120, "lb"),
  22488. name: "Front (Alt, Nude)",
  22489. image: {
  22490. source: "./media/characters/rory/front-alt-nude.svg",
  22491. extra: 589 / 556,
  22492. bottom: 45.7 / 635.76
  22493. }
  22494. },
  22495. side: {
  22496. height: math.unit(5 + 4 / 12, "feet"),
  22497. weight: math.unit(120, "lb"),
  22498. name: "Side",
  22499. image: {
  22500. source: "./media/characters/rory/side.svg",
  22501. extra: 597 / 564,
  22502. bottom: 55 / 653
  22503. }
  22504. },
  22505. backAlt: {
  22506. height: math.unit(5 + 4 / 12, "feet"),
  22507. weight: math.unit(120, "lb"),
  22508. name: "Back (Alt)",
  22509. image: {
  22510. source: "./media/characters/rory/back-alt.svg",
  22511. extra: 620 / 585,
  22512. bottom: 8.86 / 630.43
  22513. }
  22514. },
  22515. dickAlt: {
  22516. height: math.unit(0.86, "feet"),
  22517. name: "Dick (Alt)",
  22518. image: {
  22519. source: "./media/characters/rory/dick-alt.svg"
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Normal",
  22526. height: math.unit(5 + 4 / 12, "feet"),
  22527. default: true
  22528. },
  22529. {
  22530. name: "Macro",
  22531. height: math.unit(100, "feet")
  22532. },
  22533. {
  22534. name: "Macro+",
  22535. height: math.unit(140, "feet")
  22536. },
  22537. {
  22538. name: "Macro++",
  22539. height: math.unit(300, "feet")
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 9 / 12, "feet"),
  22548. weight: math.unit(190, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/sprisk/front.svg",
  22552. extra: 1225 / 1180,
  22553. bottom: 42.7 / 1266.4
  22554. }
  22555. },
  22556. frontNsfw: {
  22557. height: math.unit(5 + 9 / 12, "feet"),
  22558. weight: math.unit(190, "lb"),
  22559. name: "Front (NSFW)",
  22560. image: {
  22561. source: "./media/characters/sprisk/front-nsfw.svg",
  22562. extra: 1225 / 1180,
  22563. bottom: 42.7 / 1266.4
  22564. }
  22565. },
  22566. back: {
  22567. height: math.unit(5 + 9 / 12, "feet"),
  22568. weight: math.unit(190, "lb"),
  22569. name: "Back",
  22570. image: {
  22571. source: "./media/characters/sprisk/back.svg",
  22572. extra: 1247 / 1200,
  22573. bottom: 5.6 / 1253.04
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Tiny",
  22580. height: math.unit(2, "inches")
  22581. },
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(5 + 9 / 12, "feet"),
  22585. default: true
  22586. },
  22587. {
  22588. name: "Mini Macro",
  22589. height: math.unit(18, "feet")
  22590. },
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(100, "feet")
  22594. },
  22595. {
  22596. name: "MACRO",
  22597. height: math.unit(50, "miles")
  22598. },
  22599. {
  22600. name: "M A C R O",
  22601. height: math.unit(300, "miles")
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22607. {
  22608. side: {
  22609. height: math.unit(15.6, "meters"),
  22610. weight: math.unit(700000, "kg"),
  22611. name: "Side",
  22612. image: {
  22613. source: "./media/characters/bunsen/side.svg",
  22614. extra: 1644 / 358
  22615. }
  22616. },
  22617. foot: {
  22618. height: math.unit(1.611 * 1644 / 358, "meter"),
  22619. name: "Foot",
  22620. image: {
  22621. source: "./media/characters/bunsen/foot.svg"
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Small",
  22628. height: math.unit(10, "feet")
  22629. },
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(15.6, "meters"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(4 + 11 / 12, "feet"),
  22642. weight: math.unit(140, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/sesh/front.svg",
  22646. extra: 3420 / 3231,
  22647. bottom: 72 / 3949.5
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(4 + 11 / 12, "feet")
  22655. },
  22656. {
  22657. name: "Grown",
  22658. height: math.unit(15, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Macro",
  22663. height: math.unit(1500, "feet")
  22664. },
  22665. {
  22666. name: "Megamacro",
  22667. height: math.unit(30, "miles")
  22668. },
  22669. {
  22670. name: "Continental",
  22671. height: math.unit(3000, "miles")
  22672. },
  22673. {
  22674. name: "Gravity Mass",
  22675. height: math.unit(300000, "miles")
  22676. },
  22677. {
  22678. name: "Planet Buster",
  22679. height: math.unit(30000000, "miles")
  22680. },
  22681. {
  22682. name: "Big",
  22683. height: math.unit(3000000000, "miles")
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(9, "feet"),
  22692. weight: math.unit(350, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/pepper/front.svg",
  22696. extra: 1448 / 1312,
  22697. bottom: 9.4 / 1457.88
  22698. }
  22699. },
  22700. back: {
  22701. height: math.unit(9, "feet"),
  22702. weight: math.unit(350, "lb"),
  22703. name: "Back",
  22704. image: {
  22705. source: "./media/characters/pepper/back.svg",
  22706. extra: 1423 / 1300,
  22707. bottom: 4.6 / 1429
  22708. }
  22709. },
  22710. maw: {
  22711. height: math.unit(0.932, "feet"),
  22712. name: "Maw",
  22713. image: {
  22714. source: "./media/characters/pepper/maw.svg"
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(9, "feet"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(6, "feet"),
  22731. weight: math.unit(150, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/maelstrom/front.svg",
  22735. extra: 2100 / 1883,
  22736. bottom: 94 / 2196.7
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Less Kaiju",
  22743. height: math.unit(200, "feet")
  22744. },
  22745. {
  22746. name: "Kaiju",
  22747. height: math.unit(400, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Kaiju-er",
  22752. height: math.unit(600, "feet")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(6 + 5 / 12, "feet"),
  22761. weight: math.unit(180, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/lexir/front.svg",
  22765. extra: 180 / 172,
  22766. bottom: 12 / 192
  22767. }
  22768. },
  22769. back: {
  22770. height: math.unit(6 + 5 / 12, "feet"),
  22771. weight: math.unit(180, "lb"),
  22772. name: "Back",
  22773. image: {
  22774. source: "./media/characters/lexir/back.svg",
  22775. extra: 183.84 / 175.5,
  22776. bottom: 3.1 / 187
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Very Smal",
  22783. height: math.unit(1, "nm")
  22784. },
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(6 + 5 / 12, "feet"),
  22788. default: true
  22789. },
  22790. {
  22791. name: "Macro",
  22792. height: math.unit(1, "mile")
  22793. },
  22794. {
  22795. name: "Megamacro",
  22796. height: math.unit(50, "miles")
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22802. {
  22803. front: {
  22804. height: math.unit(1.5, "meters"),
  22805. weight: math.unit(100, "lb"),
  22806. name: "Front",
  22807. image: {
  22808. source: "./media/characters/maksio/front.svg",
  22809. extra: 1549 / 1531,
  22810. bottom: 123.7 / 1674.5429
  22811. }
  22812. },
  22813. back: {
  22814. height: math.unit(1.5, "meters"),
  22815. weight: math.unit(100, "lb"),
  22816. name: "Back",
  22817. image: {
  22818. source: "./media/characters/maksio/back.svg",
  22819. extra: 1541 / 1509,
  22820. bottom: 97 / 1639
  22821. }
  22822. },
  22823. hand: {
  22824. height: math.unit(0.621, "feet"),
  22825. name: "Hand",
  22826. image: {
  22827. source: "./media/characters/maksio/hand.svg"
  22828. }
  22829. },
  22830. foot: {
  22831. height: math.unit(1.611, "feet"),
  22832. name: "Foot",
  22833. image: {
  22834. source: "./media/characters/maksio/foot.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Shrunken",
  22841. height: math.unit(10, "cm")
  22842. },
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(150, "cm"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(100, "feet"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/erza-bear/front.svg",
  22858. extra: 2449 / 2390,
  22859. bottom: 46 / 2494
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(100, "feet"),
  22864. name: "Back",
  22865. image: {
  22866. source: "./media/characters/erza-bear/back.svg",
  22867. extra: 2489 / 2430,
  22868. bottom: 85.4 / 2480
  22869. }
  22870. },
  22871. tail: {
  22872. height: math.unit(42, "feet"),
  22873. name: "Tail",
  22874. image: {
  22875. source: "./media/characters/erza-bear/tail.svg"
  22876. }
  22877. },
  22878. tongue: {
  22879. height: math.unit(8, "feet"),
  22880. name: "Tongue",
  22881. image: {
  22882. source: "./media/characters/erza-bear/tongue.svg"
  22883. }
  22884. },
  22885. dick: {
  22886. height: math.unit(10.5, "feet"),
  22887. name: "Dick",
  22888. image: {
  22889. source: "./media/characters/erza-bear/dick.svg"
  22890. }
  22891. },
  22892. dickVertical: {
  22893. height: math.unit(16.9, "feet"),
  22894. name: "Dick (Vertical)",
  22895. image: {
  22896. source: "./media/characters/erza-bear/dick-vertical.svg"
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Macro",
  22903. height: math.unit(100, "feet"),
  22904. default: true
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22910. {
  22911. front: {
  22912. height: math.unit(172, "cm"),
  22913. weight: math.unit(73, "kg"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/violet-flor/front.svg",
  22917. extra: 1530 / 1442,
  22918. bottom: 61.9 / 1588.8
  22919. }
  22920. },
  22921. back: {
  22922. height: math.unit(180, "cm"),
  22923. weight: math.unit(73, "kg"),
  22924. name: "Back",
  22925. image: {
  22926. source: "./media/characters/violet-flor/back.svg",
  22927. extra: 1692 / 1630,
  22928. bottom: 20 / 1712
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(172, "cm"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(6, "feet"),
  22945. weight: math.unit(220, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/lynn-rhea/front.svg",
  22949. extra: 310 / 273
  22950. }
  22951. },
  22952. back: {
  22953. height: math.unit(6, "feet"),
  22954. weight: math.unit(220, "lb"),
  22955. name: "Back",
  22956. image: {
  22957. source: "./media/characters/lynn-rhea/back.svg",
  22958. extra: 310 / 273
  22959. }
  22960. },
  22961. dicks: {
  22962. height: math.unit(0.9, "feet"),
  22963. name: "Dicks",
  22964. image: {
  22965. source: "./media/characters/lynn-rhea/dicks.svg"
  22966. }
  22967. },
  22968. slit: {
  22969. height: math.unit(0.4, "feet"),
  22970. name: "Slit",
  22971. image: {
  22972. source: "./media/characters/lynn-rhea/slit.svg"
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Micro",
  22979. height: math.unit(1, "inch")
  22980. },
  22981. {
  22982. name: "Macro",
  22983. height: math.unit(60, "feet"),
  22984. default: true
  22985. },
  22986. {
  22987. name: "Megamacro",
  22988. height: math.unit(2, "miles")
  22989. },
  22990. {
  22991. name: "Gigamacro",
  22992. height: math.unit(3, "earths")
  22993. },
  22994. {
  22995. name: "Galactic",
  22996. height: math.unit(0.8, "galaxies")
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23002. {
  23003. front: {
  23004. height: math.unit(1600, "feet"),
  23005. weight: math.unit(85758785169, "kg"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/valathos/front.svg",
  23009. extra: 1451 / 1339
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Macro",
  23016. height: math.unit(1600, "feet"),
  23017. default: true
  23018. },
  23019. ]
  23020. ))
  23021. characterMakers.push(() => makeCharacter(
  23022. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23023. {
  23024. front: {
  23025. height: math.unit(7 + 5 / 12, "feet"),
  23026. weight: math.unit(300, "lb"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/azula/front.svg",
  23030. extra: 3208 / 2880,
  23031. bottom: 80.2 / 3277
  23032. }
  23033. },
  23034. back: {
  23035. height: math.unit(7 + 5 / 12, "feet"),
  23036. weight: math.unit(300, "lb"),
  23037. name: "Back",
  23038. image: {
  23039. source: "./media/characters/azula/back.svg",
  23040. extra: 3169 / 2822,
  23041. bottom: 150.6 / 3321
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(7 + 5 / 12, "feet"),
  23049. default: true
  23050. },
  23051. {
  23052. name: "Big",
  23053. height: math.unit(20, "feet")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(5 + 1 / 12, "feet"),
  23062. weight: math.unit(110, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/rupert/front.svg",
  23066. extra: 1549 / 1495,
  23067. bottom: 54.2 / 1604.4
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(5 + 1 / 12, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23081. {
  23082. front: {
  23083. height: math.unit(8 + 4 / 12, "feet"),
  23084. weight: math.unit(350, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/sheera-castellar/front.svg",
  23088. extra: 1957 / 1894,
  23089. bottom: 26.97 / 1975.017
  23090. }
  23091. },
  23092. side: {
  23093. height: math.unit(8 + 4 / 12, "feet"),
  23094. weight: math.unit(350, "lb"),
  23095. name: "Side",
  23096. image: {
  23097. source: "./media/characters/sheera-castellar/side.svg",
  23098. extra: 1957 / 1894
  23099. }
  23100. },
  23101. back: {
  23102. height: math.unit(8 + 4 / 12, "feet"),
  23103. weight: math.unit(350, "lb"),
  23104. name: "Back",
  23105. image: {
  23106. source: "./media/characters/sheera-castellar/back.svg",
  23107. extra: 1957 / 1894
  23108. }
  23109. },
  23110. angled: {
  23111. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23112. weight: math.unit(350, "lb"),
  23113. name: "Angled",
  23114. image: {
  23115. source: "./media/characters/sheera-castellar/angled.svg",
  23116. extra: 1807 / 1707,
  23117. bottom: 68 / 1875
  23118. }
  23119. },
  23120. genitals: {
  23121. height: math.unit(2.2, "feet"),
  23122. name: "Genitals",
  23123. image: {
  23124. source: "./media/characters/sheera-castellar/genitals.svg"
  23125. }
  23126. },
  23127. taur: {
  23128. height: math.unit(10 + 6/12, "feet"),
  23129. name: "Taur",
  23130. image: {
  23131. source: "./media/characters/sheera-castellar/taur.svg",
  23132. extra: 2017/1909,
  23133. bottom: 185/2202
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Normal",
  23140. height: math.unit(8 + 4 / 12, "feet")
  23141. },
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(150, "feet"),
  23145. default: true
  23146. },
  23147. {
  23148. name: "Macro+",
  23149. height: math.unit(800, "feet")
  23150. },
  23151. ]
  23152. ))
  23153. characterMakers.push(() => makeCharacter(
  23154. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23155. {
  23156. front: {
  23157. height: math.unit(6, "feet"),
  23158. weight: math.unit(150, "lb"),
  23159. name: "Front",
  23160. image: {
  23161. source: "./media/characters/jaipur/front.svg",
  23162. extra: 3860 / 3731,
  23163. bottom: 287 / 4140
  23164. }
  23165. },
  23166. back: {
  23167. height: math.unit(6, "feet"),
  23168. weight: math.unit(150, "lb"),
  23169. name: "Back",
  23170. image: {
  23171. source: "./media/characters/jaipur/back.svg",
  23172. extra: 4060 / 3930,
  23173. bottom: 151 / 4200
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(1.85, "meters"),
  23181. default: true
  23182. },
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(150, "meters")
  23186. },
  23187. {
  23188. name: "Macro+",
  23189. height: math.unit(0.5, "miles")
  23190. },
  23191. {
  23192. name: "Macro++",
  23193. height: math.unit(2.5, "miles")
  23194. },
  23195. {
  23196. name: "Macro+++",
  23197. height: math.unit(12, "miles")
  23198. },
  23199. {
  23200. name: "Macro++++",
  23201. height: math.unit(120, "miles")
  23202. },
  23203. {
  23204. name: "Macro+++++",
  23205. height: math.unit(1200, "miles")
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(6, "feet"),
  23214. weight: math.unit(150, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/sheila-wolf/front.svg",
  23218. extra: 1931 / 1808,
  23219. bottom: 29.5 / 1960
  23220. }
  23221. },
  23222. dick: {
  23223. height: math.unit(1.464, "feet"),
  23224. name: "Dick",
  23225. image: {
  23226. source: "./media/characters/sheila-wolf/dick.svg"
  23227. }
  23228. },
  23229. muzzle: {
  23230. height: math.unit(0.513, "feet"),
  23231. name: "Muzzle",
  23232. image: {
  23233. source: "./media/characters/sheila-wolf/muzzle.svg"
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Macro",
  23240. height: math.unit(70, "feet"),
  23241. default: true
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(32, "meters"),
  23250. weight: math.unit(300000, "kg"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/almor/front.svg",
  23254. extra: 1408 / 1322,
  23255. bottom: 94.6 / 1506.5
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Macro",
  23262. height: math.unit(32, "meters"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(7, "feet"),
  23272. weight: math.unit(200, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/silver/front.svg",
  23276. extra: 472.1 / 450.5,
  23277. bottom: 26.5 / 499.424
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(7, "feet"),
  23285. default: true
  23286. },
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(800, "feet")
  23290. },
  23291. {
  23292. name: "Megamacro",
  23293. height: math.unit(250, "miles")
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23299. {
  23300. front: {
  23301. height: math.unit(6, "feet"),
  23302. weight: math.unit(150, "lb"),
  23303. name: "Front",
  23304. image: {
  23305. source: "./media/characters/pliskin/front.svg",
  23306. extra: 1469 / 1359,
  23307. bottom: 70 / 1540
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Micro",
  23314. height: math.unit(3, "inches")
  23315. },
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(5 + 11 / 12, "feet"),
  23319. default: true
  23320. },
  23321. {
  23322. name: "Macro",
  23323. height: math.unit(120, "feet")
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23329. {
  23330. front: {
  23331. height: math.unit(6, "feet"),
  23332. weight: math.unit(150, "lb"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/sammy/front.svg",
  23336. extra: 1193 / 1089,
  23337. bottom: 30.5 / 1226
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Macro",
  23344. height: math.unit(1700, "feet"),
  23345. default: true
  23346. },
  23347. {
  23348. name: "Examacro",
  23349. height: math.unit(2.5e9, "lightyears")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(21, "meters"),
  23358. weight: math.unit(12, "tonnes"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/kuru/front.svg",
  23362. extra: 4301 / 3785,
  23363. bottom: 371.3 / 4691
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Macro",
  23370. height: math.unit(21, "meters"),
  23371. default: true
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(23, "meters"),
  23380. weight: math.unit(12.2, "tonnes"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/rakka/front.svg",
  23384. extra: 4670 / 4169,
  23385. bottom: 301 / 4968.7
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Macro",
  23392. height: math.unit(23, "meters"),
  23393. default: true
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23399. {
  23400. front: {
  23401. height: math.unit(6, "feet"),
  23402. weight: math.unit(150, "lb"),
  23403. name: "Front",
  23404. image: {
  23405. source: "./media/characters/rhys-feline/front.svg",
  23406. extra: 2488 / 2308,
  23407. bottom: 35.67 / 2519.19
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Really Small",
  23414. height: math.unit(1, "nm")
  23415. },
  23416. {
  23417. name: "Micro",
  23418. height: math.unit(4, "inches")
  23419. },
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(4 + 10 / 12, "feet"),
  23423. default: true
  23424. },
  23425. {
  23426. name: "Macro",
  23427. height: math.unit(100, "feet")
  23428. },
  23429. {
  23430. name: "Megamacto",
  23431. height: math.unit(50, "miles")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23437. {
  23438. side: {
  23439. height: math.unit(30, "feet"),
  23440. weight: math.unit(35000, "kg"),
  23441. name: "Side",
  23442. image: {
  23443. source: "./media/characters/alydar/side.svg",
  23444. extra: 234 / 222,
  23445. bottom: 6.5 / 241
  23446. }
  23447. },
  23448. front: {
  23449. height: math.unit(30, "feet"),
  23450. weight: math.unit(35000, "kg"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/alydar/front.svg",
  23454. extra: 223.37 / 210.2,
  23455. bottom: 22.3 / 246.76
  23456. }
  23457. },
  23458. top: {
  23459. height: math.unit(64.54, "feet"),
  23460. weight: math.unit(35000, "kg"),
  23461. name: "Top",
  23462. image: {
  23463. source: "./media/characters/alydar/top.svg"
  23464. }
  23465. },
  23466. anthro: {
  23467. height: math.unit(30, "feet"),
  23468. weight: math.unit(9000, "kg"),
  23469. name: "Anthro",
  23470. image: {
  23471. source: "./media/characters/alydar/anthro.svg",
  23472. extra: 432 / 421,
  23473. bottom: 7.18 / 440
  23474. }
  23475. },
  23476. maw: {
  23477. height: math.unit(11.693, "feet"),
  23478. name: "Maw",
  23479. image: {
  23480. source: "./media/characters/alydar/maw.svg"
  23481. }
  23482. },
  23483. head: {
  23484. height: math.unit(11.693, "feet"),
  23485. name: "Head",
  23486. image: {
  23487. source: "./media/characters/alydar/head.svg"
  23488. }
  23489. },
  23490. headAlt: {
  23491. height: math.unit(12.861, "feet"),
  23492. name: "Head (Alt)",
  23493. image: {
  23494. source: "./media/characters/alydar/head-alt.svg"
  23495. }
  23496. },
  23497. wing: {
  23498. height: math.unit(20.712, "feet"),
  23499. name: "Wing",
  23500. image: {
  23501. source: "./media/characters/alydar/wing.svg"
  23502. }
  23503. },
  23504. wingFeather: {
  23505. height: math.unit(9.662, "feet"),
  23506. name: "Wing Feather",
  23507. image: {
  23508. source: "./media/characters/alydar/wing-feather.svg"
  23509. }
  23510. },
  23511. countourFeather: {
  23512. height: math.unit(4.154, "feet"),
  23513. name: "Contour Feather",
  23514. image: {
  23515. source: "./media/characters/alydar/contour-feather.svg"
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Diplomatic",
  23522. height: math.unit(13, "feet"),
  23523. default: true
  23524. },
  23525. {
  23526. name: "Small",
  23527. height: math.unit(30, "feet")
  23528. },
  23529. {
  23530. name: "Normal",
  23531. height: math.unit(95, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Large",
  23536. height: math.unit(285, "feet")
  23537. },
  23538. {
  23539. name: "Incomprehensible",
  23540. height: math.unit(450, "megameters")
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23546. {
  23547. side: {
  23548. height: math.unit(11, "feet"),
  23549. weight: math.unit(1750, "kg"),
  23550. name: "Side",
  23551. image: {
  23552. source: "./media/characters/selicia/side.svg",
  23553. extra: 440 / 396,
  23554. bottom: 24.8 / 465.979
  23555. }
  23556. },
  23557. maw: {
  23558. height: math.unit(4.665, "feet"),
  23559. name: "Maw",
  23560. image: {
  23561. source: "./media/characters/selicia/maw.svg"
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Normal",
  23568. height: math.unit(11, "feet"),
  23569. default: true
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23575. {
  23576. side: {
  23577. height: math.unit(2 + 6 / 12, "feet"),
  23578. weight: math.unit(30, "lb"),
  23579. name: "Side",
  23580. image: {
  23581. source: "./media/characters/layla/side.svg",
  23582. extra: 244 / 188,
  23583. bottom: 18.2 / 262.1
  23584. }
  23585. },
  23586. back: {
  23587. height: math.unit(2 + 6 / 12, "feet"),
  23588. weight: math.unit(30, "lb"),
  23589. name: "Back",
  23590. image: {
  23591. source: "./media/characters/layla/back.svg",
  23592. extra: 308 / 241.5,
  23593. bottom: 8.9 / 316.8
  23594. }
  23595. },
  23596. cumming: {
  23597. height: math.unit(2 + 6 / 12, "feet"),
  23598. weight: math.unit(30, "lb"),
  23599. name: "Cumming",
  23600. image: {
  23601. source: "./media/characters/layla/cumming.svg",
  23602. extra: 342 / 279,
  23603. bottom: 595 / 938
  23604. }
  23605. },
  23606. dickFlaccid: {
  23607. height: math.unit(2.595, "feet"),
  23608. name: "Flaccid Genitals",
  23609. image: {
  23610. source: "./media/characters/layla/dick-flaccid.svg"
  23611. }
  23612. },
  23613. dickErect: {
  23614. height: math.unit(2.359, "feet"),
  23615. name: "Erect Genitals",
  23616. image: {
  23617. source: "./media/characters/layla/dick-erect.svg"
  23618. }
  23619. },
  23620. dragon: {
  23621. height: math.unit(40, "feet"),
  23622. name: "Dragon",
  23623. image: {
  23624. source: "./media/characters/layla/dragon.svg",
  23625. extra: 610/535,
  23626. bottom: 367/977
  23627. }
  23628. },
  23629. taur: {
  23630. height: math.unit(30, "feet"),
  23631. name: "Taur",
  23632. image: {
  23633. source: "./media/characters/layla/taur.svg",
  23634. extra: 1268/1199,
  23635. bottom: 112/1380
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Micro",
  23642. height: math.unit(1, "inch")
  23643. },
  23644. {
  23645. name: "Small",
  23646. height: math.unit(1, "foot")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(2 + 6 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(200, "feet")
  23656. },
  23657. {
  23658. name: "Megamacro",
  23659. height: math.unit(1000, "miles")
  23660. },
  23661. {
  23662. name: "Planetary",
  23663. height: math.unit(8000, "miles")
  23664. },
  23665. {
  23666. name: "True Layla",
  23667. height: math.unit(200000 * 7, "multiverses")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23673. {
  23674. back: {
  23675. height: math.unit(10.5, "feet"),
  23676. weight: math.unit(800, "lb"),
  23677. name: "Back",
  23678. image: {
  23679. source: "./media/characters/knox/back.svg",
  23680. extra: 1486 / 1089,
  23681. bottom: 107 / 1601.4
  23682. }
  23683. },
  23684. side: {
  23685. height: math.unit(10.5, "feet"),
  23686. weight: math.unit(800, "lb"),
  23687. name: "Side",
  23688. image: {
  23689. source: "./media/characters/knox/side.svg",
  23690. extra: 244 / 218,
  23691. bottom: 14 / 260
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Compact",
  23698. height: math.unit(10.5, "feet"),
  23699. default: true
  23700. },
  23701. {
  23702. name: "Dynamax",
  23703. height: math.unit(210, "feet")
  23704. },
  23705. {
  23706. name: "Full Macro",
  23707. height: math.unit(850, "feet")
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(28, "feet"),
  23716. weight: math.unit(10500, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/kayda/front.svg",
  23720. extra: 1536 / 1428,
  23721. bottom: 68.7 / 1603
  23722. }
  23723. },
  23724. back: {
  23725. height: math.unit(28, "feet"),
  23726. weight: math.unit(10500, "lb"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/kayda/back.svg",
  23730. extra: 1557 / 1464,
  23731. bottom: 39.5 / 1597.49
  23732. }
  23733. },
  23734. dick: {
  23735. height: math.unit(3.858, "feet"),
  23736. name: "Dick",
  23737. image: {
  23738. source: "./media/characters/kayda/dick.svg"
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(28, "feet"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(10 + 11 / 12, "feet"),
  23755. weight: math.unit(1400, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/brian/front.svg",
  23759. extra: 737 / 692,
  23760. bottom: 55.4 / 785
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(10 + 11 / 12, "feet"),
  23768. default: true
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(5 + 8 / 12, "feet"),
  23777. weight: math.unit(140, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/khemri/front.svg",
  23781. extra: 4780 / 4059,
  23782. bottom: 80.1 / 4859.25
  23783. }
  23784. },
  23785. },
  23786. [
  23787. {
  23788. name: "Micro",
  23789. height: math.unit(6, "inches")
  23790. },
  23791. {
  23792. name: "Normal",
  23793. height: math.unit(5 + 8 / 12, "feet"),
  23794. default: true
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23800. {
  23801. front: {
  23802. height: math.unit(13, "feet"),
  23803. weight: math.unit(1700, "lb"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/felix-braveheart/front.svg",
  23807. extra: 1222 / 1157,
  23808. bottom: 53.2 / 1280
  23809. }
  23810. },
  23811. back: {
  23812. height: math.unit(13, "feet"),
  23813. weight: math.unit(1700, "lb"),
  23814. name: "Back",
  23815. image: {
  23816. source: "./media/characters/felix-braveheart/back.svg",
  23817. extra: 1277 / 1203,
  23818. bottom: 50.2 / 1327
  23819. }
  23820. },
  23821. feral: {
  23822. height: math.unit(6, "feet"),
  23823. weight: math.unit(400, "lb"),
  23824. name: "Feral",
  23825. image: {
  23826. source: "./media/characters/felix-braveheart/feral.svg",
  23827. extra: 682 / 625,
  23828. bottom: 6.9 / 688
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(13, "feet"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23842. {
  23843. side: {
  23844. height: math.unit(5 + 11 / 12, "feet"),
  23845. weight: math.unit(1400, "lb"),
  23846. name: "Side",
  23847. image: {
  23848. source: "./media/characters/shadow-blade/side.svg",
  23849. extra: 1726 / 1267,
  23850. bottom: 58.4 / 1785
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(5 + 11 / 12, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(1 + 6 / 12, "feet"),
  23867. weight: math.unit(25, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/karla-halldor/front.svg",
  23871. extra: 1459 / 1383,
  23872. bottom: 12 / 1472
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(1 + 6 / 12, "feet"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(6 + 2 / 12, "feet"),
  23889. weight: math.unit(160, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/ariam/front.svg",
  23893. extra: 714 / 617,
  23894. bottom: 23.4 / 737,
  23895. }
  23896. },
  23897. squatting: {
  23898. height: math.unit(4.1, "feet"),
  23899. weight: math.unit(160, "lb"),
  23900. name: "Squatting",
  23901. image: {
  23902. source: "./media/characters/ariam/squatting.svg",
  23903. extra: 2617 / 2112,
  23904. bottom: 61.2 / 2681,
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(6 + 2 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Normal+",
  23916. height: math.unit(4, "meters")
  23917. },
  23918. {
  23919. name: "Macro",
  23920. height: math.unit(50, "meters")
  23921. },
  23922. {
  23923. name: "Macro+",
  23924. height: math.unit(100, "meters")
  23925. },
  23926. {
  23927. name: "Megamacro",
  23928. height: math.unit(20, "km")
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(1.67, "meters"),
  23937. weight: math.unit(140, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23941. extra: 438 / 410,
  23942. bottom: 0.75 / 439
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Shrunken",
  23949. height: math.unit(7.6, "cm")
  23950. },
  23951. {
  23952. name: "Human Scale",
  23953. height: math.unit(1.67, "meters")
  23954. },
  23955. {
  23956. name: "Wolxi Scale",
  23957. height: math.unit(36.7, "meters"),
  23958. default: true
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23964. {
  23965. front: {
  23966. height: math.unit(1.73, "meters"),
  23967. weight: math.unit(240, "lb"),
  23968. name: "Front",
  23969. image: {
  23970. source: "./media/characters/izue-two-mothers/front.svg",
  23971. extra: 469 / 437,
  23972. bottom: 1.24 / 470.6
  23973. }
  23974. },
  23975. },
  23976. [
  23977. {
  23978. name: "Shrunken",
  23979. height: math.unit(7.86, "cm")
  23980. },
  23981. {
  23982. name: "Human Scale",
  23983. height: math.unit(1.73, "meters")
  23984. },
  23985. {
  23986. name: "Wolxi Scale",
  23987. height: math.unit(38, "meters"),
  23988. default: true
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(1.55, "meters"),
  23997. weight: math.unit(120, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/teeku-love-shack/front.svg",
  24001. extra: 387 / 362,
  24002. bottom: 1.51 / 388
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Shrunken",
  24009. height: math.unit(7, "cm")
  24010. },
  24011. {
  24012. name: "Human Scale",
  24013. height: math.unit(1.55, "meters")
  24014. },
  24015. {
  24016. name: "Wolxi Scale",
  24017. height: math.unit(34.1, "meters"),
  24018. default: true
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(1.83, "meters"),
  24027. weight: math.unit(135, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/dejma-the-red/front.svg",
  24031. extra: 480 / 458,
  24032. bottom: 1.8 / 482
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Shrunken",
  24039. height: math.unit(8.3, "cm")
  24040. },
  24041. {
  24042. name: "Human Scale",
  24043. height: math.unit(1.83, "meters")
  24044. },
  24045. {
  24046. name: "Wolxi Scale",
  24047. height: math.unit(40, "meters"),
  24048. default: true
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24054. {
  24055. front: {
  24056. height: math.unit(1.78, "meters"),
  24057. weight: math.unit(65, "kg"),
  24058. name: "Front",
  24059. image: {
  24060. source: "./media/characters/aki/front.svg",
  24061. extra: 452 / 415
  24062. }
  24063. },
  24064. frontNsfw: {
  24065. height: math.unit(1.78, "meters"),
  24066. weight: math.unit(65, "kg"),
  24067. name: "Front (NSFW)",
  24068. image: {
  24069. source: "./media/characters/aki/front-nsfw.svg",
  24070. extra: 452 / 415
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(1.78, "meters"),
  24075. weight: math.unit(65, "kg"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/aki/back.svg",
  24079. extra: 452 / 415
  24080. }
  24081. },
  24082. rump: {
  24083. height: math.unit(2.05, "feet"),
  24084. name: "Rump",
  24085. image: {
  24086. source: "./media/characters/aki/rump.svg"
  24087. }
  24088. },
  24089. dick: {
  24090. height: math.unit(0.95, "feet"),
  24091. name: "Dick",
  24092. image: {
  24093. source: "./media/characters/aki/dick.svg"
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(15, "cm")
  24101. },
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(178, "cm"),
  24105. default: true
  24106. },
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(214, "m")
  24110. },
  24111. {
  24112. name: "Macro+",
  24113. height: math.unit(534, "m")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24119. {
  24120. front: {
  24121. height: math.unit(5 + 5 / 12, "feet"),
  24122. weight: math.unit(120, "lb"),
  24123. name: "Front",
  24124. image: {
  24125. source: "./media/characters/ari/front.svg",
  24126. extra: 714.5 / 682,
  24127. bottom: 8 / 722.5
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Normal",
  24134. height: math.unit(5 + 5 / 12, "feet")
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(100, "feet"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Megamacro",
  24143. height: math.unit(100, "miles")
  24144. },
  24145. {
  24146. name: "Gigamacro",
  24147. height: math.unit(80000, "miles")
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24153. {
  24154. side: {
  24155. height: math.unit(9, "feet"),
  24156. weight: math.unit(400, "kg"),
  24157. name: "Side",
  24158. image: {
  24159. source: "./media/characters/bolt/side.svg",
  24160. extra: 1126 / 896,
  24161. bottom: 60 / 1187.3,
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Micro",
  24168. height: math.unit(5, "inches")
  24169. },
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(9, "feet"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(700, "feet")
  24178. },
  24179. {
  24180. name: "Max Size",
  24181. height: math.unit(1.52e22, "yottameters")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(4.53, "meters"),
  24190. weight: math.unit(3, "tons"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/draekon-sylviar/front.svg",
  24194. extra: 1228 / 1068,
  24195. bottom: 41 / 1270
  24196. }
  24197. },
  24198. tail: {
  24199. height: math.unit(1.772, "meter"),
  24200. name: "Tail",
  24201. image: {
  24202. source: "./media/characters/draekon-sylviar/tail.svg"
  24203. }
  24204. },
  24205. head: {
  24206. height: math.unit(1.331, "meter"),
  24207. name: "Head",
  24208. image: {
  24209. source: "./media/characters/draekon-sylviar/head.svg"
  24210. }
  24211. },
  24212. hand: {
  24213. height: math.unit(0.564, "meter"),
  24214. name: "Hand",
  24215. image: {
  24216. source: "./media/characters/draekon-sylviar/hand.svg"
  24217. }
  24218. },
  24219. foot: {
  24220. height: math.unit(0.621, "meter"),
  24221. name: "Foot",
  24222. image: {
  24223. source: "./media/characters/draekon-sylviar/foot.svg",
  24224. bottom: 32 / 324
  24225. }
  24226. },
  24227. dick: {
  24228. height: math.unit(61, "cm"),
  24229. name: "Dick",
  24230. image: {
  24231. source: "./media/characters/draekon-sylviar/dick.svg"
  24232. }
  24233. },
  24234. dickseparated: {
  24235. height: math.unit(61, "cm"),
  24236. name: "Dick-separated",
  24237. image: {
  24238. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Small",
  24245. height: math.unit(4.53 / 2, "meters"),
  24246. default: true
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(4.53, "meters"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Large",
  24255. height: math.unit(4.53 * 2, "meters"),
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(6 + 2 / 12, "feet"),
  24264. weight: math.unit(180, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/brawler/front.svg",
  24268. extra: 3301 / 3027,
  24269. bottom: 138 / 3439
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(6 + 2 / 12, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(11, "feet"),
  24286. weight: math.unit(1000, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/alex/front.svg",
  24290. bottom: 44.5 / 620
  24291. }
  24292. },
  24293. },
  24294. [
  24295. {
  24296. name: "Micro",
  24297. height: math.unit(5, "inches")
  24298. },
  24299. {
  24300. name: "Normal",
  24301. height: math.unit(11, "feet"),
  24302. default: true
  24303. },
  24304. {
  24305. name: "Macro",
  24306. height: math.unit(9.5e9, "feet")
  24307. },
  24308. {
  24309. name: "Max Size",
  24310. height: math.unit(1.4e283, "yottameters")
  24311. },
  24312. ]
  24313. ))
  24314. characterMakers.push(() => makeCharacter(
  24315. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24316. {
  24317. female: {
  24318. height: math.unit(29.9, "m"),
  24319. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24320. name: "Female",
  24321. image: {
  24322. source: "./media/characters/zenari/female.svg",
  24323. extra: 3281.6 / 3217,
  24324. bottom: 72.2 / 3353
  24325. }
  24326. },
  24327. male: {
  24328. height: math.unit(27.7, "m"),
  24329. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24330. name: "Male",
  24331. image: {
  24332. source: "./media/characters/zenari/male.svg",
  24333. extra: 3008 / 2991,
  24334. bottom: 54.6 / 3069
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Macro",
  24341. height: math.unit(29.7, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24348. {
  24349. female: {
  24350. height: math.unit(23.8, "m"),
  24351. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24352. name: "Female",
  24353. image: {
  24354. source: "./media/characters/mactarian/female.svg",
  24355. extra: 2662 / 2569,
  24356. bottom: 73 / 2736
  24357. }
  24358. },
  24359. male: {
  24360. height: math.unit(23.8, "m"),
  24361. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24362. name: "Male",
  24363. image: {
  24364. source: "./media/characters/mactarian/male.svg",
  24365. extra: 2673 / 2600,
  24366. bottom: 76 / 2750
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(23.8, "meters"),
  24374. default: true
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24380. {
  24381. female: {
  24382. height: math.unit(19.3, "m"),
  24383. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24384. name: "Female",
  24385. image: {
  24386. source: "./media/characters/umok/female.svg",
  24387. extra: 2186 / 2078,
  24388. bottom: 87 / 2277
  24389. }
  24390. },
  24391. male: {
  24392. height: math.unit(19.5, "m"),
  24393. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24394. name: "Male",
  24395. image: {
  24396. source: "./media/characters/umok/male.svg",
  24397. extra: 2233 / 2140,
  24398. bottom: 24.4 / 2258
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Macro",
  24405. height: math.unit(19.3, "meters"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24412. {
  24413. female: {
  24414. height: math.unit(26.15, "m"),
  24415. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24416. name: "Female",
  24417. image: {
  24418. source: "./media/characters/joraxian/female.svg",
  24419. extra: 2912 / 2824,
  24420. bottom: 36 / 2956
  24421. }
  24422. },
  24423. male: {
  24424. height: math.unit(25.4, "m"),
  24425. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24426. name: "Male",
  24427. image: {
  24428. source: "./media/characters/joraxian/male.svg",
  24429. extra: 2877 / 2721,
  24430. bottom: 82 / 2967
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Macro",
  24437. height: math.unit(26.15, "meters"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24444. {
  24445. female: {
  24446. height: math.unit(21.6, "m"),
  24447. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24448. name: "Female",
  24449. image: {
  24450. source: "./media/characters/sthara/female.svg",
  24451. extra: 2516 / 2347,
  24452. bottom: 21.5 / 2537
  24453. }
  24454. },
  24455. male: {
  24456. height: math.unit(24, "m"),
  24457. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24458. name: "Male",
  24459. image: {
  24460. source: "./media/characters/sthara/male.svg",
  24461. extra: 2732 / 2607,
  24462. bottom: 23 / 2732
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(21.6, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(6 + 4 / 12, "feet"),
  24479. weight: math.unit(175, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/luka-bryzant/front.svg",
  24483. extra: 311 / 289,
  24484. bottom: 4 / 315
  24485. }
  24486. },
  24487. back: {
  24488. height: math.unit(6 + 4 / 12, "feet"),
  24489. weight: math.unit(175, "lb"),
  24490. name: "Back",
  24491. image: {
  24492. source: "./media/characters/luka-bryzant/back.svg",
  24493. extra: 311 / 289,
  24494. bottom: 3.8 / 313.7
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Micro",
  24501. height: math.unit(10, "inches")
  24502. },
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(6 + 4 / 12, "feet"),
  24506. default: true
  24507. },
  24508. {
  24509. name: "Large",
  24510. height: math.unit(12, "feet")
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(5 + 7 / 12, "feet"),
  24519. weight: math.unit(185, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/aman-aquila/front.svg",
  24523. extra: 1013 / 976,
  24524. bottom: 45.6 / 1057
  24525. }
  24526. },
  24527. side: {
  24528. height: math.unit(5 + 7 / 12, "feet"),
  24529. weight: math.unit(185, "lb"),
  24530. name: "Side",
  24531. image: {
  24532. source: "./media/characters/aman-aquila/side.svg",
  24533. extra: 1054 / 1011,
  24534. bottom: 15 / 1070
  24535. }
  24536. },
  24537. back: {
  24538. height: math.unit(5 + 7 / 12, "feet"),
  24539. weight: math.unit(185, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/aman-aquila/back.svg",
  24543. extra: 1026 / 970,
  24544. bottom: 12 / 1039
  24545. }
  24546. },
  24547. head: {
  24548. height: math.unit(1.211, "feet"),
  24549. name: "Head",
  24550. image: {
  24551. source: "./media/characters/aman-aquila/head.svg",
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Minimicro",
  24558. height: math.unit(0.057, "inches")
  24559. },
  24560. {
  24561. name: "Micro",
  24562. height: math.unit(7, "inches")
  24563. },
  24564. {
  24565. name: "Mini",
  24566. height: math.unit(3 + 7 / 12, "feet")
  24567. },
  24568. {
  24569. name: "Normal",
  24570. height: math.unit(5 + 7 / 12, "feet"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Macro",
  24575. height: math.unit(157 + 7 / 12, "feet")
  24576. },
  24577. {
  24578. name: "Megamacro",
  24579. height: math.unit(1557 + 7 / 12, "feet")
  24580. },
  24581. {
  24582. name: "Gigamacro",
  24583. height: math.unit(15557 + 7 / 12, "feet")
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(3 + 2 / 12, "inches"),
  24592. weight: math.unit(0.3, "ounces"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/hiphae/front.svg",
  24596. extra: 1931 / 1683,
  24597. bottom: 24 / 1955
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(3 + 1 / 2, "inches"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(5 + 10 / 12, "feet"),
  24614. weight: math.unit(165, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/nicky/front.svg",
  24618. extra: 3144 / 2886,
  24619. bottom: 45.6 / 3192
  24620. }
  24621. },
  24622. back: {
  24623. height: math.unit(5 + 10 / 12, "feet"),
  24624. weight: math.unit(165, "lb"),
  24625. name: "Back",
  24626. image: {
  24627. source: "./media/characters/nicky/back.svg",
  24628. extra: 3055 / 2804,
  24629. bottom: 28.4 / 3087
  24630. }
  24631. },
  24632. frontclothed: {
  24633. height: math.unit(5 + 10 / 12, "feet"),
  24634. weight: math.unit(165, "lb"),
  24635. name: "Front-clothed",
  24636. image: {
  24637. source: "./media/characters/nicky/front-clothed.svg",
  24638. extra: 3184.9 / 2926.9,
  24639. bottom: 86.5 / 3239.9
  24640. }
  24641. },
  24642. foot: {
  24643. height: math.unit(1.16, "feet"),
  24644. name: "Foot",
  24645. image: {
  24646. source: "./media/characters/nicky/foot.svg"
  24647. }
  24648. },
  24649. feet: {
  24650. height: math.unit(1.34, "feet"),
  24651. name: "Feet",
  24652. image: {
  24653. source: "./media/characters/nicky/feet.svg"
  24654. }
  24655. },
  24656. maw: {
  24657. height: math.unit(0.9, "feet"),
  24658. name: "Maw",
  24659. image: {
  24660. source: "./media/characters/nicky/maw.svg"
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(5 + 10 / 12, "feet"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(60, "feet")
  24673. },
  24674. {
  24675. name: "Megamacro",
  24676. height: math.unit(1, "mile")
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24682. {
  24683. side: {
  24684. height: math.unit(10, "feet"),
  24685. weight: math.unit(600, "lb"),
  24686. name: "Side",
  24687. image: {
  24688. source: "./media/characters/blair/side.svg",
  24689. bottom: 16.6 / 475,
  24690. extra: 458 / 431
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Micro",
  24697. height: math.unit(8, "inches")
  24698. },
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(10, "feet"),
  24702. default: true
  24703. },
  24704. {
  24705. name: "Macro",
  24706. height: math.unit(180, "feet")
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(5 + 4 / 12, "feet"),
  24715. weight: math.unit(125, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/fisher/front.svg",
  24719. extra: 444 / 390,
  24720. bottom: 2 / 444.8
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Micro",
  24727. height: math.unit(4, "inches")
  24728. },
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(5 + 4 / 12, "feet"),
  24732. default: true
  24733. },
  24734. {
  24735. name: "Macro",
  24736. height: math.unit(100, "feet")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(6.71, "feet"),
  24745. weight: math.unit(200, "lb"),
  24746. capacity: math.unit(1000000, "people"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/gliss/front.svg",
  24750. extra: 2347 / 2231,
  24751. bottom: 113 / 2462
  24752. }
  24753. },
  24754. hammerspaceSize: {
  24755. height: math.unit(6.71 * 717, "feet"),
  24756. weight: math.unit(200, "lb"),
  24757. capacity: math.unit(1000000, "people"),
  24758. name: "Hammerspace Size",
  24759. image: {
  24760. source: "./media/characters/gliss/front.svg",
  24761. extra: 2347 / 2231,
  24762. bottom: 113 / 2462
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(6.71, "feet"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24776. {
  24777. side: {
  24778. height: math.unit(1.44, "m"),
  24779. weight: math.unit(80, "kg"),
  24780. name: "Side",
  24781. image: {
  24782. source: "./media/characters/dune-anderson/side.svg",
  24783. bottom: 49 / 1426
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Wolf-sized",
  24790. height: math.unit(1.44, "meters")
  24791. },
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(5.05, "meters"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Big",
  24799. height: math.unit(14.4, "meters")
  24800. },
  24801. {
  24802. name: "Huge",
  24803. height: math.unit(144, "meters")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(7, "feet"),
  24812. weight: math.unit(425, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/hind/front.svg",
  24816. extra: 2091 / 1860,
  24817. bottom: 129 / 2220
  24818. }
  24819. },
  24820. back: {
  24821. height: math.unit(7, "feet"),
  24822. weight: math.unit(425, "lb"),
  24823. name: "Back",
  24824. image: {
  24825. source: "./media/characters/hind/back.svg",
  24826. extra: 2091 / 1860,
  24827. bottom: 24.6 / 2309
  24828. }
  24829. },
  24830. tail: {
  24831. height: math.unit(2.8, "feet"),
  24832. name: "Tail",
  24833. image: {
  24834. source: "./media/characters/hind/tail.svg"
  24835. }
  24836. },
  24837. head: {
  24838. height: math.unit(2.55, "feet"),
  24839. name: "Head",
  24840. image: {
  24841. source: "./media/characters/hind/head.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "XS",
  24848. height: math.unit(0.7, "feet")
  24849. },
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(7, "feet"),
  24853. default: true
  24854. },
  24855. {
  24856. name: "XL",
  24857. height: math.unit(70, "feet")
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(6, "feet"),
  24866. weight: math.unit(150, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/tharquench-sizestealer/front.svg",
  24870. extra: 2318 / 2063,
  24871. bottom: 93.4 / 2410
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Nano",
  24878. height: math.unit(1, "mm")
  24879. },
  24880. {
  24881. name: "Micro",
  24882. height: math.unit(1, "cm")
  24883. },
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(2.1, "meters"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24893. {
  24894. front: {
  24895. height: math.unit(7 + 5 / 12, "feet"),
  24896. weight: math.unit(357, "lb"),
  24897. name: "Front",
  24898. image: {
  24899. source: "./media/characters/solex-draconov/front.svg",
  24900. extra: 1993 / 1865,
  24901. bottom: 117 / 2111
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Natural Height",
  24908. height: math.unit(7 + 5 / 12, "feet"),
  24909. default: true
  24910. },
  24911. {
  24912. name: "Macro",
  24913. height: math.unit(350, "feet")
  24914. },
  24915. {
  24916. name: "Macro+",
  24917. height: math.unit(1000, "feet")
  24918. },
  24919. {
  24920. name: "Megamacro",
  24921. height: math.unit(20, "km")
  24922. },
  24923. {
  24924. name: "Megamacro+",
  24925. height: math.unit(1000, "km")
  24926. },
  24927. {
  24928. name: "Gigamacro",
  24929. height: math.unit(2.5, "Gm")
  24930. },
  24931. {
  24932. name: "Teramacro",
  24933. height: math.unit(15, "Tm")
  24934. },
  24935. {
  24936. name: "Galactic",
  24937. height: math.unit(30, "Zm")
  24938. },
  24939. {
  24940. name: "Universal",
  24941. height: math.unit(21000, "Ym")
  24942. },
  24943. {
  24944. name: "Omniversal",
  24945. height: math.unit(9.861e50, "Ym")
  24946. },
  24947. {
  24948. name: "Existential",
  24949. height: math.unit(1e300, "meters")
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24955. {
  24956. side: {
  24957. height: math.unit(25, "feet"),
  24958. weight: math.unit(90000, "lb"),
  24959. name: "Side",
  24960. image: {
  24961. source: "./media/characters/mandarax/side.svg",
  24962. extra: 614 / 332,
  24963. bottom: 55 / 630
  24964. }
  24965. },
  24966. head: {
  24967. height: math.unit(11.4, "feet"),
  24968. name: "Head",
  24969. image: {
  24970. source: "./media/characters/mandarax/head.svg"
  24971. }
  24972. },
  24973. belly: {
  24974. height: math.unit(33, "feet"),
  24975. name: "Belly",
  24976. capacity: math.unit(500, "people"),
  24977. image: {
  24978. source: "./media/characters/mandarax/belly.svg"
  24979. }
  24980. },
  24981. dick: {
  24982. height: math.unit(8.46, "feet"),
  24983. name: "Dick",
  24984. image: {
  24985. source: "./media/characters/mandarax/dick.svg"
  24986. }
  24987. },
  24988. top: {
  24989. height: math.unit(28, "meters"),
  24990. name: "Top",
  24991. image: {
  24992. source: "./media/characters/mandarax/top.svg"
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(25, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5, "feet"),
  25009. weight: math.unit(90, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/pixil/front.svg",
  25013. extra: 2000 / 1618,
  25014. bottom: 12.3 / 2011
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Megamacro",
  25026. height: math.unit(10, "miles"),
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(7 + 2 / 12, "feet"),
  25035. weight: math.unit(200, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/angel/front.svg",
  25039. extra: 1830 / 1737,
  25040. bottom: 22.6 / 1854,
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(7 + 2 / 12, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(1000, "feet")
  25053. },
  25054. {
  25055. name: "Megamacro",
  25056. height: math.unit(2, "miles")
  25057. },
  25058. {
  25059. name: "Gigamacro",
  25060. height: math.unit(20, "earths")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(5, "feet"),
  25069. weight: math.unit(180, "lb"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/mekana/front.svg",
  25073. extra: 1671 / 1605,
  25074. bottom: 3.5 / 1691
  25075. }
  25076. },
  25077. side: {
  25078. height: math.unit(5, "feet"),
  25079. weight: math.unit(180, "lb"),
  25080. name: "Side",
  25081. image: {
  25082. source: "./media/characters/mekana/side.svg",
  25083. extra: 1671 / 1605,
  25084. bottom: 3.5 / 1691
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(5, "feet"),
  25089. weight: math.unit(180, "lb"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/mekana/back.svg",
  25093. extra: 1671 / 1605,
  25094. bottom: 3.5 / 1691
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Normal",
  25101. height: math.unit(5, "feet"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(4 + 6 / 12, "feet"),
  25111. weight: math.unit(80, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/pixie/front.svg",
  25115. extra: 1924 / 1825,
  25116. bottom: 22.4 / 1946
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(4 + 6 / 12, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Macro",
  25128. height: math.unit(40, "feet")
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(2.1, "meters"),
  25137. weight: math.unit(200, "lb"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/the-lascivious/front.svg",
  25141. extra: 1 / 0.893,
  25142. bottom: 3.5 / 573.7
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Human Scale",
  25149. height: math.unit(2.1, "meters")
  25150. },
  25151. {
  25152. name: "Wolxi Scale",
  25153. height: math.unit(46.2, "m"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Boinker of Buildings",
  25158. height: math.unit(10, "km")
  25159. },
  25160. {
  25161. name: "Shagger of Skyscrapers",
  25162. height: math.unit(40, "km")
  25163. },
  25164. {
  25165. name: "Banger of Boroughs",
  25166. height: math.unit(4000, "km")
  25167. },
  25168. {
  25169. name: "Screwer of States",
  25170. height: math.unit(100000, "km")
  25171. },
  25172. {
  25173. name: "Pounder of Planets",
  25174. height: math.unit(2000000, "km")
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(6, "feet"),
  25183. weight: math.unit(150, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/aj/front.svg",
  25187. extra: 2039 / 1562,
  25188. bottom: 40 / 2079
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Normal",
  25195. height: math.unit(11 + 6 / 12, "feet"),
  25196. default: true
  25197. },
  25198. {
  25199. name: "Megamacro",
  25200. height: math.unit(60, "megameters")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25206. {
  25207. side: {
  25208. height: math.unit(31 + 8 / 12, "feet"),
  25209. weight: math.unit(75000, "kg"),
  25210. name: "Side",
  25211. image: {
  25212. source: "./media/characters/koros/side.svg",
  25213. extra: 1442 / 1297,
  25214. bottom: 122.7 / 1562
  25215. }
  25216. },
  25217. dicksKingsCrown: {
  25218. height: math.unit(6, "feet"),
  25219. name: "Dicks (King's Crown)",
  25220. image: {
  25221. source: "./media/characters/koros/dicks-kings-crown.svg"
  25222. }
  25223. },
  25224. dicksTailSet: {
  25225. height: math.unit(3, "feet"),
  25226. name: "Dicks (Tail Set)",
  25227. image: {
  25228. source: "./media/characters/koros/dicks-tail-set.svg"
  25229. }
  25230. },
  25231. dickCumming: {
  25232. height: math.unit(7.98, "feet"),
  25233. name: "Dick (Cumming)",
  25234. image: {
  25235. source: "./media/characters/koros/dick-cumming.svg"
  25236. }
  25237. },
  25238. dicksBack: {
  25239. height: math.unit(5.9, "feet"),
  25240. name: "Dicks (Back)",
  25241. image: {
  25242. source: "./media/characters/koros/dicks-back.svg"
  25243. }
  25244. },
  25245. dicksFront: {
  25246. height: math.unit(3.72, "feet"),
  25247. name: "Dicks (Front)",
  25248. image: {
  25249. source: "./media/characters/koros/dicks-front.svg"
  25250. }
  25251. },
  25252. dicksPeeking: {
  25253. height: math.unit(3.0, "feet"),
  25254. name: "Dicks (Peeking)",
  25255. image: {
  25256. source: "./media/characters/koros/dicks-peeking.svg"
  25257. }
  25258. },
  25259. eye: {
  25260. height: math.unit(1.7, "feet"),
  25261. name: "Eye",
  25262. image: {
  25263. source: "./media/characters/koros/eye.svg"
  25264. }
  25265. },
  25266. headFront: {
  25267. height: math.unit(11.69, "feet"),
  25268. name: "Head (Front)",
  25269. image: {
  25270. source: "./media/characters/koros/head-front.svg"
  25271. }
  25272. },
  25273. headSide: {
  25274. height: math.unit(14, "feet"),
  25275. name: "Head (Side)",
  25276. image: {
  25277. source: "./media/characters/koros/head-side.svg"
  25278. }
  25279. },
  25280. leg: {
  25281. height: math.unit(17, "feet"),
  25282. name: "Leg",
  25283. image: {
  25284. source: "./media/characters/koros/leg.svg"
  25285. }
  25286. },
  25287. mawSide: {
  25288. height: math.unit(12.8, "feet"),
  25289. name: "Maw (Side)",
  25290. image: {
  25291. source: "./media/characters/koros/maw-side.svg"
  25292. }
  25293. },
  25294. mawSpitting: {
  25295. height: math.unit(17, "feet"),
  25296. name: "Maw (Spitting)",
  25297. image: {
  25298. source: "./media/characters/koros/maw-spitting.svg"
  25299. }
  25300. },
  25301. slit: {
  25302. height: math.unit(2.8, "feet"),
  25303. name: "Slit",
  25304. image: {
  25305. source: "./media/characters/koros/slit.svg"
  25306. }
  25307. },
  25308. stomach: {
  25309. height: math.unit(6.8, "feet"),
  25310. capacity: math.unit(20, "people"),
  25311. name: "Stomach",
  25312. image: {
  25313. source: "./media/characters/koros/stomach.svg"
  25314. }
  25315. },
  25316. wingspanBottom: {
  25317. height: math.unit(114, "feet"),
  25318. name: "Wingspan (Bottom)",
  25319. image: {
  25320. source: "./media/characters/koros/wingspan-bottom.svg"
  25321. }
  25322. },
  25323. wingspanTop: {
  25324. height: math.unit(104, "feet"),
  25325. name: "Wingspan (Top)",
  25326. image: {
  25327. source: "./media/characters/koros/wingspan-top.svg"
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(31 + 8 / 12, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(18 + 5 / 12, "feet"),
  25344. weight: math.unit(3750, "kg"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/vexx/front.svg",
  25348. extra: 426 / 396,
  25349. bottom: 31.5 / 458
  25350. }
  25351. },
  25352. maw: {
  25353. height: math.unit(6, "feet"),
  25354. name: "Maw",
  25355. image: {
  25356. source: "./media/characters/vexx/maw.svg"
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(18 + 5 / 12, "feet"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(17 + 6 / 12, "feet"),
  25373. weight: math.unit(150, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/baadra/front.svg",
  25377. extra: 3137 / 2890,
  25378. bottom: 168.4 / 3305
  25379. }
  25380. },
  25381. back: {
  25382. height: math.unit(17 + 6 / 12, "feet"),
  25383. weight: math.unit(150, "lb"),
  25384. name: "Back",
  25385. image: {
  25386. source: "./media/characters/baadra/back.svg",
  25387. extra: 3142 / 2890,
  25388. bottom: 220 / 3371
  25389. }
  25390. },
  25391. head: {
  25392. height: math.unit(5.45, "feet"),
  25393. name: "Head",
  25394. image: {
  25395. source: "./media/characters/baadra/head.svg"
  25396. }
  25397. },
  25398. headAngry: {
  25399. height: math.unit(4.95, "feet"),
  25400. name: "Head (Angry)",
  25401. image: {
  25402. source: "./media/characters/baadra/head-angry.svg"
  25403. }
  25404. },
  25405. headOpen: {
  25406. height: math.unit(6, "feet"),
  25407. name: "Head (Open)",
  25408. image: {
  25409. source: "./media/characters/baadra/head-open.svg"
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(17 + 6 / 12, "feet"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(7 + 3 / 12, "feet"),
  25426. weight: math.unit(180, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/juri/front.svg",
  25430. extra: 1401 / 1237,
  25431. bottom: 18.5 / 1418
  25432. }
  25433. },
  25434. side: {
  25435. height: math.unit(7 + 3 / 12, "feet"),
  25436. weight: math.unit(180, "lb"),
  25437. name: "Side",
  25438. image: {
  25439. source: "./media/characters/juri/side.svg",
  25440. extra: 1424 / 1242,
  25441. bottom: 18.5 / 1447
  25442. }
  25443. },
  25444. sitting: {
  25445. height: math.unit(6, "feet"),
  25446. weight: math.unit(180, "lb"),
  25447. name: "Sitting",
  25448. image: {
  25449. source: "./media/characters/juri/sitting.svg",
  25450. extra: 1270 / 1143,
  25451. bottom: 100 / 1343
  25452. }
  25453. },
  25454. back: {
  25455. height: math.unit(7 + 3 / 12, "feet"),
  25456. weight: math.unit(180, "lb"),
  25457. name: "Back",
  25458. image: {
  25459. source: "./media/characters/juri/back.svg",
  25460. extra: 1377 / 1240,
  25461. bottom: 23.7 / 1405
  25462. }
  25463. },
  25464. maw: {
  25465. height: math.unit(2.8, "feet"),
  25466. name: "Maw",
  25467. image: {
  25468. source: "./media/characters/juri/maw.svg"
  25469. }
  25470. },
  25471. stomach: {
  25472. height: math.unit(0.89, "feet"),
  25473. capacity: math.unit(4, "liters"),
  25474. name: "Stomach",
  25475. image: {
  25476. source: "./media/characters/juri/stomach.svg"
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(7 + 3 / 12, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25490. {
  25491. fox: {
  25492. height: math.unit(5 + 6 / 12, "feet"),
  25493. weight: math.unit(140, "lb"),
  25494. name: "Fox",
  25495. image: {
  25496. source: "./media/characters/maxene-sita/fox.svg",
  25497. extra: 146 / 138,
  25498. bottom: 2.1 / 148.19
  25499. }
  25500. },
  25501. foxLaying: {
  25502. height: math.unit(1.70, "feet"),
  25503. weight: math.unit(140, "lb"),
  25504. name: "Fox (Laying)",
  25505. image: {
  25506. source: "./media/characters/maxene-sita/fox-laying.svg",
  25507. extra: 910 / 572,
  25508. bottom: 71 / 981
  25509. }
  25510. },
  25511. kitsune: {
  25512. height: math.unit(10, "feet"),
  25513. weight: math.unit(800, "lb"),
  25514. name: "Kitsune",
  25515. image: {
  25516. source: "./media/characters/maxene-sita/kitsune.svg",
  25517. extra: 185 / 176,
  25518. bottom: 4.7 / 189.9
  25519. }
  25520. },
  25521. hellhound: {
  25522. height: math.unit(10, "feet"),
  25523. weight: math.unit(700, "lb"),
  25524. name: "Hellhound",
  25525. image: {
  25526. source: "./media/characters/maxene-sita/hellhound.svg",
  25527. extra: 1600 / 1545,
  25528. bottom: 81 / 1681
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(5 + 6 / 12, "feet"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25542. {
  25543. front: {
  25544. height: math.unit(3 + 4 / 12, "feet"),
  25545. weight: math.unit(70, "lb"),
  25546. name: "Front",
  25547. image: {
  25548. source: "./media/characters/maia/front.svg",
  25549. extra: 227 / 219.5,
  25550. bottom: 40 / 267
  25551. }
  25552. },
  25553. back: {
  25554. height: math.unit(3 + 4 / 12, "feet"),
  25555. weight: math.unit(70, "lb"),
  25556. name: "Back",
  25557. image: {
  25558. source: "./media/characters/maia/back.svg",
  25559. extra: 237 / 225
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(3 + 4 / 12, "feet"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(5 + 10 / 12, "feet"),
  25576. weight: math.unit(197, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/jabaro/front.svg",
  25580. extra: 225 / 216,
  25581. bottom: 5.06 / 230
  25582. }
  25583. },
  25584. back: {
  25585. height: math.unit(5 + 10 / 12, "feet"),
  25586. weight: math.unit(197, "lb"),
  25587. name: "Back",
  25588. image: {
  25589. source: "./media/characters/jabaro/back.svg",
  25590. extra: 225 / 219,
  25591. bottom: 1.9 / 227
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(5 + 10 / 12, "feet"),
  25599. default: true
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(5 + 8 / 12, "feet"),
  25608. weight: math.unit(139, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/risa/front.svg",
  25612. extra: 270 / 260,
  25613. bottom: 11.2 / 282
  25614. }
  25615. },
  25616. back: {
  25617. height: math.unit(5 + 8 / 12, "feet"),
  25618. weight: math.unit(139, "lb"),
  25619. name: "Back",
  25620. image: {
  25621. source: "./media/characters/risa/back.svg",
  25622. extra: 264 / 255,
  25623. bottom: 4 / 268
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Normal",
  25630. height: math.unit(5 + 8 / 12, "feet"),
  25631. default: true
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(2 + 11 / 12, "feet"),
  25640. weight: math.unit(30, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/weatley/front.svg",
  25644. bottom: 10.7 / 414,
  25645. extra: 403.5 / 362
  25646. }
  25647. },
  25648. back: {
  25649. height: math.unit(2 + 11 / 12, "feet"),
  25650. weight: math.unit(30, "lb"),
  25651. name: "Back",
  25652. image: {
  25653. source: "./media/characters/weatley/back.svg",
  25654. bottom: 10.7 / 414,
  25655. extra: 403.5 / 362
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(2 + 11 / 12, "feet"),
  25663. default: true
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(5 + 2 / 12, "feet"),
  25672. weight: math.unit(50, "kg"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/mercury-crescent/front.svg",
  25676. extra: 1088 / 1033,
  25677. bottom: 18.9 / 1109
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(5 + 2 / 12, "feet"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(2, "feet"),
  25694. weight: math.unit(15, "kg"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/diamond-jones/front.svg",
  25698. extra: 727/723,
  25699. bottom: 46/773
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Normal",
  25706. height: math.unit(2, "feet"),
  25707. default: true
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(3, "feet"),
  25716. weight: math.unit(30, "kg"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/sweet-bit/front.svg",
  25720. extra: 675 / 567,
  25721. bottom: 27.7 / 703
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(3, "feet"),
  25729. default: true
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25735. {
  25736. side: {
  25737. height: math.unit(9.178, "feet"),
  25738. weight: math.unit(500, "lb"),
  25739. name: "Side",
  25740. image: {
  25741. source: "./media/characters/umbrazen/side.svg",
  25742. extra: 1730 / 1473,
  25743. bottom: 34.6 / 1765
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(9.178, "feet"),
  25751. default: true
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(10, "feet"),
  25760. weight: math.unit(750, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/arlist/front.svg",
  25764. extra: 961 / 778,
  25765. bottom: 6.2 / 986
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(10, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(5 + 1 / 12, "feet"),
  25782. weight: math.unit(110, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/aradel/front.svg",
  25786. extra: 324 / 303,
  25787. bottom: 3.6 / 329.4
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(5 + 1 / 12, "feet"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(3 + 8 / 12, "feet"),
  25804. weight: math.unit(50, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/serryn/front.svg",
  25808. extra: 1792 / 1656,
  25809. bottom: 43.5 / 1840
  25810. }
  25811. },
  25812. },
  25813. [
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(3 + 8 / 12, "feet"),
  25817. default: true
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(7 + 10 / 12, "feet"),
  25826. weight: math.unit(255, "lb"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/xavier-thyme/front.svg",
  25830. extra: 3733 / 3642,
  25831. bottom: 131 / 3869
  25832. }
  25833. },
  25834. frontRaven: {
  25835. height: math.unit(7 + 10 / 12, "feet"),
  25836. weight: math.unit(255, "lb"),
  25837. name: "Front (Raven)",
  25838. image: {
  25839. source: "./media/characters/xavier-thyme/front-raven.svg",
  25840. extra: 4385 / 3642,
  25841. bottom: 131 / 4517
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(7 + 10 / 12, "feet"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(1.6, "m"),
  25858. weight: math.unit(50, "kg"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/kiki/front.svg",
  25862. extra: 4682 / 3610,
  25863. bottom: 115 / 4777
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(1.6, "meters"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(50, "m"),
  25880. weight: math.unit(500, "tonnes"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/ryoko/front.svg",
  25884. extra: 4632 / 3926,
  25885. bottom: 193 / 4823
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(50, "meters"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(30, "m"),
  25902. weight: math.unit(22, "tonnes"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/elio/front.svg",
  25906. extra: 4582 / 3720,
  25907. bottom: 236 / 4828
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(30, "meters"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(6 + 3 / 12, "feet"),
  25924. weight: math.unit(120, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/azura/front.svg",
  25928. extra: 1149 / 1135,
  25929. bottom: 45 / 1194
  25930. }
  25931. },
  25932. frontClothed: {
  25933. height: math.unit(6 + 3 / 12, "feet"),
  25934. weight: math.unit(120, "lb"),
  25935. name: "Front (Clothed)",
  25936. image: {
  25937. source: "./media/characters/azura/front-clothed.svg",
  25938. extra: 1149 / 1135,
  25939. bottom: 45 / 1194
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(6 + 3 / 12, "feet"),
  25947. default: true
  25948. },
  25949. {
  25950. name: "Macro",
  25951. height: math.unit(20 + 6 / 12, "feet")
  25952. },
  25953. {
  25954. name: "Megamacro",
  25955. height: math.unit(12, "miles")
  25956. },
  25957. {
  25958. name: "Gigamacro",
  25959. height: math.unit(10000, "miles")
  25960. },
  25961. {
  25962. name: "Teramacro",
  25963. height: math.unit(900000, "miles")
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(12, "feet"),
  25972. weight: math.unit(1, "ton"),
  25973. capacity: math.unit(660000, "gallons"),
  25974. name: "Front",
  25975. image: {
  25976. source: "./media/characters/zeus/front.svg",
  25977. extra: 5005 / 4717,
  25978. bottom: 363 / 5388
  25979. }
  25980. },
  25981. },
  25982. [
  25983. {
  25984. name: "Normal",
  25985. height: math.unit(12, "feet")
  25986. },
  25987. {
  25988. name: "Preferred Size",
  25989. height: math.unit(0.5, "miles"),
  25990. default: true
  25991. },
  25992. {
  25993. name: "Giga Horse",
  25994. height: math.unit(300, "miles")
  25995. },
  25996. {
  25997. name: "Riding Planets",
  25998. height: math.unit(30, "megameters")
  25999. },
  26000. {
  26001. name: "Cosmic Giant",
  26002. height: math.unit(3, "zettameters")
  26003. },
  26004. {
  26005. name: "Breeding God",
  26006. height: math.unit(9.92e22, "yottameters")
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26012. {
  26013. side: {
  26014. height: math.unit(9, "feet"),
  26015. weight: math.unit(1500, "kg"),
  26016. name: "Side",
  26017. image: {
  26018. source: "./media/characters/fang/side.svg",
  26019. extra: 924 / 866,
  26020. bottom: 47.5 / 972.3
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(9, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(75 + 6 / 12, "feet")
  26033. },
  26034. {
  26035. name: "Teramacro",
  26036. height: math.unit(50000, "miles")
  26037. },
  26038. ]
  26039. ))
  26040. characterMakers.push(() => makeCharacter(
  26041. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26042. {
  26043. front: {
  26044. height: math.unit(10, "feet"),
  26045. weight: math.unit(2, "tons"),
  26046. name: "Front",
  26047. image: {
  26048. source: "./media/characters/rekhit/front.svg",
  26049. extra: 2796 / 2590,
  26050. bottom: 225 / 3022
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(10, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(500, "feet")
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26068. {
  26069. front: {
  26070. height: math.unit(7 + 6.451 / 12, "feet"),
  26071. weight: math.unit(310, "lb"),
  26072. name: "Front",
  26073. image: {
  26074. source: "./media/characters/dahlia-verrick/front.svg",
  26075. extra: 1488 / 1365,
  26076. bottom: 6.2 / 1495
  26077. }
  26078. },
  26079. back: {
  26080. height: math.unit(7 + 6.451 / 12, "feet"),
  26081. weight: math.unit(310, "lb"),
  26082. name: "Back",
  26083. image: {
  26084. source: "./media/characters/dahlia-verrick/back.svg",
  26085. extra: 1472 / 1351,
  26086. bottom: 5.28 / 1477
  26087. }
  26088. },
  26089. frontBusiness: {
  26090. height: math.unit(7 + 6.451 / 12, "feet"),
  26091. weight: math.unit(200, "lb"),
  26092. name: "Front (Business)",
  26093. image: {
  26094. source: "./media/characters/dahlia-verrick/front-business.svg",
  26095. extra: 1478 / 1381,
  26096. bottom: 5.5 / 1484
  26097. }
  26098. },
  26099. frontCasual: {
  26100. height: math.unit(7 + 6.451 / 12, "feet"),
  26101. weight: math.unit(200, "lb"),
  26102. name: "Front (Casual)",
  26103. image: {
  26104. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26105. extra: 1478 / 1381,
  26106. bottom: 5.5 / 1484
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Travel-Sized",
  26113. height: math.unit(7.45, "inches")
  26114. },
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(7 + 6.451 / 12, "feet"),
  26118. default: true
  26119. },
  26120. {
  26121. name: "Hitting the Town",
  26122. height: math.unit(37 + 8 / 12, "feet")
  26123. },
  26124. {
  26125. name: "Stomp in the Suburbs",
  26126. height: math.unit(964 + 9.728 / 12, "feet")
  26127. },
  26128. {
  26129. name: "Sit on the City",
  26130. height: math.unit(61747 + 10.592 / 12, "feet")
  26131. },
  26132. {
  26133. name: "Glomp the Globe",
  26134. height: math.unit(252919327 + 4.832 / 12, "feet")
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(6 + 4 / 12, "feet"),
  26143. weight: math.unit(320, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/balina-mahigan/front.svg",
  26147. extra: 447 / 428,
  26148. bottom: 18 / 466
  26149. }
  26150. },
  26151. back: {
  26152. height: math.unit(6 + 4 / 12, "feet"),
  26153. weight: math.unit(320, "lb"),
  26154. name: "Back",
  26155. image: {
  26156. source: "./media/characters/balina-mahigan/back.svg",
  26157. extra: 445 / 428,
  26158. bottom: 4.07 / 448
  26159. }
  26160. },
  26161. arm: {
  26162. height: math.unit(1.88, "feet"),
  26163. name: "Arm",
  26164. image: {
  26165. source: "./media/characters/balina-mahigan/arm.svg"
  26166. }
  26167. },
  26168. backPort: {
  26169. height: math.unit(0.685, "feet"),
  26170. name: "Back Port",
  26171. image: {
  26172. source: "./media/characters/balina-mahigan/back-port.svg"
  26173. }
  26174. },
  26175. hoofpaw: {
  26176. height: math.unit(1.41, "feet"),
  26177. name: "Hoofpaw",
  26178. image: {
  26179. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26180. }
  26181. },
  26182. leftHandBack: {
  26183. height: math.unit(0.938, "feet"),
  26184. name: "Left Hand (Back)",
  26185. image: {
  26186. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26187. }
  26188. },
  26189. leftHandFront: {
  26190. height: math.unit(0.938, "feet"),
  26191. name: "Left Hand (Front)",
  26192. image: {
  26193. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26194. }
  26195. },
  26196. rightHandBack: {
  26197. height: math.unit(0.95, "feet"),
  26198. name: "Right Hand (Back)",
  26199. image: {
  26200. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26201. }
  26202. },
  26203. rightHandFront: {
  26204. height: math.unit(0.95, "feet"),
  26205. name: "Right Hand (Front)",
  26206. image: {
  26207. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Normal",
  26214. height: math.unit(6 + 4 / 12, "feet"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(6, "feet"),
  26224. weight: math.unit(320, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/balina-mejeri/front.svg",
  26228. extra: 517 / 488,
  26229. bottom: 44.2 / 561
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(6 + 4 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Business",
  26240. height: math.unit(155, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26247. {
  26248. kneeling: {
  26249. height: math.unit(6 + 4 / 12, "feet"),
  26250. weight: math.unit(300 * 20, "lb"),
  26251. name: "Kneeling",
  26252. image: {
  26253. source: "./media/characters/balbarian/kneeling.svg",
  26254. extra: 922 / 862,
  26255. bottom: 42.4 / 965
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(6 + 4 / 12, "feet")
  26263. },
  26264. {
  26265. name: "Treasured",
  26266. height: math.unit(18 + 9 / 12, "feet"),
  26267. default: true
  26268. },
  26269. {
  26270. name: "Macro",
  26271. height: math.unit(900, "feet")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(6 + 4 / 12, "feet"),
  26280. weight: math.unit(325, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/balina-amarini/front.svg",
  26284. extra: 415 / 403,
  26285. bottom: 19 / 433.4
  26286. }
  26287. },
  26288. back: {
  26289. height: math.unit(6 + 4 / 12, "feet"),
  26290. weight: math.unit(325, "lb"),
  26291. name: "Back",
  26292. image: {
  26293. source: "./media/characters/balina-amarini/back.svg",
  26294. extra: 415 / 403,
  26295. bottom: 13.5 / 432
  26296. }
  26297. },
  26298. overdrive: {
  26299. height: math.unit(6 + 4 / 12, "feet"),
  26300. weight: math.unit(400, "lb"),
  26301. name: "Overdrive",
  26302. image: {
  26303. source: "./media/characters/balina-amarini/overdrive.svg",
  26304. extra: 269 / 259,
  26305. bottom: 12 / 282
  26306. }
  26307. },
  26308. },
  26309. [
  26310. {
  26311. name: "Boom",
  26312. height: math.unit(9 + 10 / 12, "feet"),
  26313. default: true
  26314. },
  26315. {
  26316. name: "Macro",
  26317. height: math.unit(280, "feet")
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26323. {
  26324. goddess: {
  26325. height: math.unit(600, "feet"),
  26326. weight: math.unit(2000000, "tons"),
  26327. name: "Goddess",
  26328. image: {
  26329. source: "./media/characters/lady-kubwa/goddess.svg",
  26330. extra: 1240.5 / 1223,
  26331. bottom: 22 / 1263
  26332. }
  26333. },
  26334. goddesser: {
  26335. height: math.unit(900, "feet"),
  26336. weight: math.unit(20000000, "lb"),
  26337. name: "Goddess-er",
  26338. image: {
  26339. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26340. extra: 899 / 888,
  26341. bottom: 12.6 / 912
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Macro",
  26348. height: math.unit(600, "feet"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Megamacro",
  26353. height: math.unit(250, "miles")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(7 + 7 / 12, "feet"),
  26362. weight: math.unit(250, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/tala-grovehorn/front.svg",
  26366. extra: 2636 / 2525,
  26367. bottom: 147 / 2781
  26368. }
  26369. },
  26370. back: {
  26371. height: math.unit(7 + 7 / 12, "feet"),
  26372. weight: math.unit(250, "lb"),
  26373. name: "Back",
  26374. image: {
  26375. source: "./media/characters/tala-grovehorn/back.svg",
  26376. extra: 2635 / 2539,
  26377. bottom: 100 / 2732.8
  26378. }
  26379. },
  26380. mouth: {
  26381. height: math.unit(1.15, "feet"),
  26382. name: "Mouth",
  26383. image: {
  26384. source: "./media/characters/tala-grovehorn/mouth.svg"
  26385. }
  26386. },
  26387. dick: {
  26388. height: math.unit(2.36, "feet"),
  26389. name: "Dick",
  26390. image: {
  26391. source: "./media/characters/tala-grovehorn/dick.svg"
  26392. }
  26393. },
  26394. slit: {
  26395. height: math.unit(0.61, "feet"),
  26396. name: "Slit",
  26397. image: {
  26398. source: "./media/characters/tala-grovehorn/slit.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(7 + 7 / 12, "feet"),
  26410. weight: math.unit(225, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/epona/front.svg",
  26414. extra: 2445 / 2290,
  26415. bottom: 251 / 2696
  26416. }
  26417. },
  26418. back: {
  26419. height: math.unit(7 + 7 / 12, "feet"),
  26420. weight: math.unit(225, "lb"),
  26421. name: "Back",
  26422. image: {
  26423. source: "./media/characters/epona/back.svg",
  26424. extra: 2546 / 2408,
  26425. bottom: 44 / 2589
  26426. }
  26427. },
  26428. genitals: {
  26429. height: math.unit(1.5, "feet"),
  26430. name: "Genitals",
  26431. image: {
  26432. source: "./media/characters/epona/genitals.svg"
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(7 + 7 / 12, "feet"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(7, "feet"),
  26449. weight: math.unit(518, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/avia-bloodbourn/front.svg",
  26453. extra: 1466 / 1350,
  26454. bottom: 65 / 1527
  26455. }
  26456. },
  26457. },
  26458. [
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26463. {
  26464. front: {
  26465. height: math.unit(9.35, "feet"),
  26466. weight: math.unit(600, "lb"),
  26467. name: "Front",
  26468. image: {
  26469. source: "./media/characters/amera/front.svg",
  26470. extra: 891 / 818,
  26471. bottom: 30 / 922.7
  26472. }
  26473. },
  26474. back: {
  26475. height: math.unit(9.35, "feet"),
  26476. weight: math.unit(600, "lb"),
  26477. name: "Back",
  26478. image: {
  26479. source: "./media/characters/amera/back.svg",
  26480. extra: 876 / 824,
  26481. bottom: 6.8 / 884
  26482. }
  26483. },
  26484. dick: {
  26485. height: math.unit(2.14, "feet"),
  26486. name: "Dick",
  26487. image: {
  26488. source: "./media/characters/amera/dick.svg"
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(9.35, "feet"),
  26496. default: true
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26502. {
  26503. kneeling: {
  26504. height: math.unit(3 + 4 / 12, "feet"),
  26505. weight: math.unit(90, "lb"),
  26506. name: "Kneeling",
  26507. image: {
  26508. source: "./media/characters/rosewen/kneeling.svg",
  26509. extra: 1835 / 1571,
  26510. bottom: 27.7 / 1862
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(3 + 4 / 12, "feet"),
  26518. default: true
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(5 + 10 / 12, "feet"),
  26527. weight: math.unit(200, "lb"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/sabah/front.svg",
  26531. extra: 849 / 763,
  26532. bottom: 33.9 / 881
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Normal",
  26539. height: math.unit(5 + 10 / 12, "feet"),
  26540. default: true
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26546. {
  26547. front: {
  26548. height: math.unit(3 + 5 / 12, "feet"),
  26549. weight: math.unit(40, "kg"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/purple-flame/front.svg",
  26553. extra: 1577 / 1412,
  26554. bottom: 97 / 1694
  26555. }
  26556. },
  26557. frontDressed: {
  26558. height: math.unit(3 + 5 / 12, "feet"),
  26559. weight: math.unit(40, "kg"),
  26560. name: "Front (Dressed)",
  26561. image: {
  26562. source: "./media/characters/purple-flame/front-dressed.svg",
  26563. extra: 1577 / 1412,
  26564. bottom: 97 / 1694
  26565. }
  26566. },
  26567. headphones: {
  26568. height: math.unit(0.85, "feet"),
  26569. name: "Headphones",
  26570. image: {
  26571. source: "./media/characters/purple-flame/headphones.svg"
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Really Small",
  26578. height: math.unit(5, "cm")
  26579. },
  26580. {
  26581. name: "Micro",
  26582. height: math.unit(1 + 5 / 12, "feet")
  26583. },
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(3 + 5 / 12, "feet"),
  26587. default: true
  26588. },
  26589. {
  26590. name: "Minimacro",
  26591. height: math.unit(125, "feet")
  26592. },
  26593. {
  26594. name: "Macro",
  26595. height: math.unit(0.5, "miles")
  26596. },
  26597. {
  26598. name: "Megamacro",
  26599. height: math.unit(50, "miles")
  26600. },
  26601. {
  26602. name: "Gigantic",
  26603. height: math.unit(750, "miles")
  26604. },
  26605. {
  26606. name: "Planetary",
  26607. height: math.unit(15000, "miles")
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(14, "feet"),
  26616. weight: math.unit(959, "lb"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/arsenal/front.svg",
  26620. extra: 2357 / 2157,
  26621. bottom: 93 / 2458
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(14, "feet"),
  26629. default: true
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26635. {
  26636. front: {
  26637. height: math.unit(6, "feet"),
  26638. weight: math.unit(150, "lb"),
  26639. name: "Front",
  26640. image: {
  26641. source: "./media/characters/adira/front.svg",
  26642. extra: 1078 / 1029,
  26643. bottom: 87 / 1166
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Micro",
  26650. height: math.unit(4, "inches"),
  26651. default: true
  26652. },
  26653. {
  26654. name: "Macro",
  26655. height: math.unit(50, "feet")
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(16, "feet"),
  26664. weight: math.unit(1000, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/grim/front.svg",
  26668. extra: 622 / 614,
  26669. bottom: 18.1 / 642
  26670. }
  26671. },
  26672. back: {
  26673. height: math.unit(16, "feet"),
  26674. weight: math.unit(1000, "lb"),
  26675. name: "Back",
  26676. image: {
  26677. source: "./media/characters/grim/back.svg",
  26678. extra: 610.6 / 602,
  26679. bottom: 40.8 / 652
  26680. }
  26681. },
  26682. hunched: {
  26683. height: math.unit(9.75, "feet"),
  26684. weight: math.unit(1000, "lb"),
  26685. name: "Hunched",
  26686. image: {
  26687. source: "./media/characters/grim/hunched.svg",
  26688. extra: 304 / 297,
  26689. bottom: 35.4 / 394
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(16, "feet"),
  26697. default: true
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26703. {
  26704. front: {
  26705. height: math.unit(2.3, "meters"),
  26706. weight: math.unit(300, "lb"),
  26707. name: "Front",
  26708. image: {
  26709. source: "./media/characters/sinja/front-sfw.svg",
  26710. extra: 1393 / 1294,
  26711. bottom: 70 / 1463
  26712. }
  26713. },
  26714. frontNsfw: {
  26715. height: math.unit(2.3, "meters"),
  26716. weight: math.unit(300, "lb"),
  26717. name: "Front (NSFW)",
  26718. image: {
  26719. source: "./media/characters/sinja/front-nsfw.svg",
  26720. extra: 1393 / 1294,
  26721. bottom: 70 / 1463
  26722. }
  26723. },
  26724. back: {
  26725. height: math.unit(2.3, "meters"),
  26726. weight: math.unit(300, "lb"),
  26727. name: "Back",
  26728. image: {
  26729. source: "./media/characters/sinja/back.svg",
  26730. extra: 1393 / 1294,
  26731. bottom: 70 / 1463
  26732. }
  26733. },
  26734. head: {
  26735. height: math.unit(1.771, "feet"),
  26736. name: "Head",
  26737. image: {
  26738. source: "./media/characters/sinja/head.svg"
  26739. }
  26740. },
  26741. slit: {
  26742. height: math.unit(0.8, "feet"),
  26743. name: "Slit",
  26744. image: {
  26745. source: "./media/characters/sinja/slit.svg"
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(2.3, "meters")
  26753. },
  26754. {
  26755. name: "Macro",
  26756. height: math.unit(91, "meters"),
  26757. default: true
  26758. },
  26759. {
  26760. name: "Megamacro",
  26761. height: math.unit(91440, "meters")
  26762. },
  26763. {
  26764. name: "Gigamacro",
  26765. height: math.unit(60960000, "meters")
  26766. },
  26767. {
  26768. name: "Teramacro",
  26769. height: math.unit(9144000000, "meters")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(1.7, "meters"),
  26778. weight: math.unit(130, "lb"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/kyu/front.svg",
  26782. extra: 415 / 395,
  26783. bottom: 5 / 420
  26784. }
  26785. },
  26786. head: {
  26787. height: math.unit(1.75, "feet"),
  26788. name: "Head",
  26789. image: {
  26790. source: "./media/characters/kyu/head.svg"
  26791. }
  26792. },
  26793. foot: {
  26794. height: math.unit(0.81, "feet"),
  26795. name: "Foot",
  26796. image: {
  26797. source: "./media/characters/kyu/foot.svg"
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(1.7, "meters")
  26805. },
  26806. {
  26807. name: "Macro",
  26808. height: math.unit(131, "feet"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Megamacro",
  26813. height: math.unit(91440, "meters")
  26814. },
  26815. {
  26816. name: "Gigamacro",
  26817. height: math.unit(60960000, "meters")
  26818. },
  26819. {
  26820. name: "Teramacro",
  26821. height: math.unit(9144000000, "meters")
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(7 + 1 / 12, "feet"),
  26830. weight: math.unit(250, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/joey/front.svg",
  26834. extra: 1791 / 1537,
  26835. bottom: 28 / 1816
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(3, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(7 + 1 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(165, "cm"),
  26856. weight: math.unit(140, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/sam-evans/front.svg",
  26860. extra: 3417 / 3230,
  26861. bottom: 41.3 / 3417
  26862. }
  26863. },
  26864. frontSixTails: {
  26865. height: math.unit(165, "cm"),
  26866. weight: math.unit(140, "lb"),
  26867. name: "Front-six-tails",
  26868. image: {
  26869. source: "./media/characters/sam-evans/front-six-tails.svg",
  26870. extra: 3417 / 3230,
  26871. bottom: 41.3 / 3417
  26872. }
  26873. },
  26874. back: {
  26875. height: math.unit(165, "cm"),
  26876. weight: math.unit(140, "lb"),
  26877. name: "Back",
  26878. image: {
  26879. source: "./media/characters/sam-evans/back.svg",
  26880. extra: 3227 / 3032,
  26881. bottom: 6.8 / 3234
  26882. }
  26883. },
  26884. face: {
  26885. height: math.unit(0.68, "feet"),
  26886. name: "Face",
  26887. image: {
  26888. source: "./media/characters/sam-evans/face.svg"
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(165, "cm"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Macro",
  26900. height: math.unit(100, "meters")
  26901. },
  26902. {
  26903. name: "Macro+",
  26904. height: math.unit(800, "meters")
  26905. },
  26906. {
  26907. name: "Macro++",
  26908. height: math.unit(3, "km")
  26909. },
  26910. {
  26911. name: "Macro+++",
  26912. height: math.unit(30, "km")
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(10, "feet"),
  26921. weight: math.unit(750, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/juliet-a/front.svg",
  26925. extra: 1766 / 1720,
  26926. bottom: 43 / 1809
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(10, "feet"),
  26931. weight: math.unit(750, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/juliet-a/back.svg",
  26935. extra: 1781 / 1734,
  26936. bottom: 35 / 1810,
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(10, "feet"),
  26944. default: true
  26945. },
  26946. {
  26947. name: "Dragon Form",
  26948. height: math.unit(250, "feet")
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(1000, "feet")
  26953. },
  26954. {
  26955. name: "Megamacro",
  26956. height: math.unit(10000, "feet")
  26957. }
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26962. {
  26963. regular: {
  26964. height: math.unit(7 + 3 / 12, "feet"),
  26965. weight: math.unit(260, "lb"),
  26966. name: "Regular",
  26967. image: {
  26968. source: "./media/characters/wild/regular.svg",
  26969. extra: 97.45 / 92,
  26970. bottom: 6.8 / 104.3
  26971. }
  26972. },
  26973. biggums: {
  26974. height: math.unit(8 + 6 / 12, "feet"),
  26975. weight: math.unit(425, "lb"),
  26976. name: "Biggums",
  26977. image: {
  26978. source: "./media/characters/wild/biggums.svg",
  26979. extra: 97.45 / 92,
  26980. bottom: 7.5 / 132.34
  26981. }
  26982. },
  26983. mawRegular: {
  26984. height: math.unit(1.24, "feet"),
  26985. name: "Maw (Regular)",
  26986. image: {
  26987. source: "./media/characters/wild/maw.svg"
  26988. }
  26989. },
  26990. mawBiggums: {
  26991. height: math.unit(1.47, "feet"),
  26992. name: "Maw (Biggums)",
  26993. image: {
  26994. source: "./media/characters/wild/maw.svg"
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(7 + 3 / 12, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27008. {
  27009. front: {
  27010. height: math.unit(2.5, "meters"),
  27011. weight: math.unit(200, "kg"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/vidar/front.svg",
  27015. extra: 2994 / 2795,
  27016. bottom: 56 / 3061
  27017. }
  27018. },
  27019. back: {
  27020. height: math.unit(2.5, "meters"),
  27021. weight: math.unit(200, "kg"),
  27022. name: "Back",
  27023. image: {
  27024. source: "./media/characters/vidar/back.svg",
  27025. extra: 3131 / 2928,
  27026. bottom: 13.5 / 3141.5
  27027. }
  27028. },
  27029. feral: {
  27030. height: math.unit(2.5, "meters"),
  27031. weight: math.unit(2000, "kg"),
  27032. name: "Feral",
  27033. image: {
  27034. source: "./media/characters/vidar/feral.svg",
  27035. extra: 2790 / 1765,
  27036. bottom: 6 / 2796
  27037. }
  27038. },
  27039. },
  27040. [
  27041. {
  27042. name: "Normal",
  27043. height: math.unit(2.5, "meters"),
  27044. default: true
  27045. },
  27046. {
  27047. name: "Macro",
  27048. height: math.unit(100, "meters")
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(5 + 9 / 12, "feet"),
  27057. weight: math.unit(120, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/ash/front.svg",
  27061. extra: 2189 / 1961,
  27062. bottom: 5.2 / 2194
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(5 + 9 / 12, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(9, "feet"),
  27079. weight: math.unit(10000, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/gygabite/front.svg",
  27083. bottom: 31.7 / 537.8,
  27084. extra: 505 / 370
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(9, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(12, "feet"),
  27101. weight: math.unit(35000, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/p0tat0/front.svg",
  27105. extra: 1065 / 921,
  27106. bottom: 55.7 / 1121.25
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(12, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27120. {
  27121. side: {
  27122. height: math.unit(6.5, "feet"),
  27123. weight: math.unit(800, "lb"),
  27124. name: "Side",
  27125. image: {
  27126. source: "./media/characters/dusk/side.svg",
  27127. extra: 615 / 373,
  27128. bottom: 53 / 664
  27129. }
  27130. },
  27131. sitting: {
  27132. height: math.unit(7, "feet"),
  27133. weight: math.unit(800, "lb"),
  27134. name: "Sitting",
  27135. image: {
  27136. source: "./media/characters/dusk/sitting.svg",
  27137. extra: 753 / 425,
  27138. bottom: 33 / 774
  27139. }
  27140. },
  27141. head: {
  27142. height: math.unit(6.1, "feet"),
  27143. name: "Head",
  27144. image: {
  27145. source: "./media/characters/dusk/head.svg"
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(7, "feet"),
  27153. default: true
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(15, "feet"),
  27162. weight: math.unit(7000, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/jay-direwolf/front.svg",
  27166. extra: 1810 / 1732,
  27167. bottom: 66 / 1892
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(15, "feet"),
  27175. default: true
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(4 + 9 / 12, "feet"),
  27184. weight: math.unit(130, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/anchovie/front.svg",
  27188. extra: 382 / 350,
  27189. bottom: 25 / 409
  27190. }
  27191. },
  27192. back: {
  27193. height: math.unit(4 + 9 / 12, "feet"),
  27194. weight: math.unit(130, "lb"),
  27195. name: "Back",
  27196. image: {
  27197. source: "./media/characters/anchovie/back.svg",
  27198. extra: 385 / 352,
  27199. bottom: 16.6 / 402
  27200. }
  27201. },
  27202. frontDressed: {
  27203. height: math.unit(4 + 9 / 12, "feet"),
  27204. weight: math.unit(130, "lb"),
  27205. name: "Front (Dressed)",
  27206. image: {
  27207. source: "./media/characters/anchovie/front-dressed.svg",
  27208. extra: 382 / 350,
  27209. bottom: 25 / 409
  27210. }
  27211. },
  27212. backDressed: {
  27213. height: math.unit(4 + 9 / 12, "feet"),
  27214. weight: math.unit(130, "lb"),
  27215. name: "Back (Dressed)",
  27216. image: {
  27217. source: "./media/characters/anchovie/back-dressed.svg",
  27218. extra: 385 / 352,
  27219. bottom: 16.6 / 402
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Micro",
  27226. height: math.unit(6.4, "inches")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(4 + 9 / 12, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(2, "meters"),
  27240. weight: math.unit(180, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/acidrenamon/front.svg",
  27244. extra: 987 / 890,
  27245. bottom: 22.8 / 1009
  27246. }
  27247. },
  27248. back: {
  27249. height: math.unit(2, "meters"),
  27250. weight: math.unit(180, "lb"),
  27251. name: "Back",
  27252. image: {
  27253. source: "./media/characters/acidrenamon/back.svg",
  27254. extra: 983 / 891,
  27255. bottom: 8.4 / 992
  27256. }
  27257. },
  27258. head: {
  27259. height: math.unit(1.92, "feet"),
  27260. name: "Head",
  27261. image: {
  27262. source: "./media/characters/acidrenamon/head.svg"
  27263. }
  27264. },
  27265. rump: {
  27266. height: math.unit(1.72, "feet"),
  27267. name: "Rump",
  27268. image: {
  27269. source: "./media/characters/acidrenamon/rump.svg"
  27270. }
  27271. },
  27272. tail: {
  27273. height: math.unit(4.2, "feet"),
  27274. name: "Tail",
  27275. image: {
  27276. source: "./media/characters/acidrenamon/tail.svg"
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(2, "meters"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Minimacro",
  27288. height: math.unit(7, "meters")
  27289. },
  27290. {
  27291. name: "Macro",
  27292. height: math.unit(200, "meters")
  27293. },
  27294. {
  27295. name: "Gigamacro",
  27296. height: math.unit(0.2, "earths")
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(6, "feet"),
  27305. weight: math.unit(150, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/kenzie-lee/front.svg",
  27309. extra: 1525 / 1465,
  27310. bottom: 45 / 1570
  27311. }
  27312. },
  27313. side: {
  27314. height: math.unit(6, "feet"),
  27315. weight: math.unit(150, "lb"),
  27316. name: "Side",
  27317. image: {
  27318. source: "./media/characters/kenzie-lee/side.svg",
  27319. extra: 5505 / 5383,
  27320. bottom: 60 / 5573
  27321. }
  27322. },
  27323. paw: {
  27324. height: math.unit(0.57, "feet"),
  27325. name: "Paw",
  27326. image: {
  27327. source: "./media/characters/kenzie-lee/paw.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(152, "feet"),
  27335. default: true
  27336. },
  27337. {
  27338. name: "Megamacro",
  27339. height: math.unit(7, "miles")
  27340. },
  27341. {
  27342. name: "Gigamacro",
  27343. height: math.unit(8000, "miles")
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27349. {
  27350. side: {
  27351. height: math.unit(6, "feet"),
  27352. weight: math.unit(150, "lb"),
  27353. name: "Side",
  27354. image: {
  27355. source: "./media/characters/withers/side.svg",
  27356. extra: 1830 / 1728,
  27357. bottom: 96 / 1927
  27358. }
  27359. },
  27360. front: {
  27361. height: math.unit(6, "feet"),
  27362. weight: math.unit(150, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/withers/front.svg",
  27366. extra: 1514 / 1438,
  27367. bottom: 118 / 1632
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(168, "feet"),
  27375. default: true
  27376. },
  27377. {
  27378. name: "Megamacro",
  27379. height: math.unit(15, "miles")
  27380. }
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27385. {
  27386. front: {
  27387. height: math.unit(6 + 7 / 12, "feet"),
  27388. weight: math.unit(250, "lb"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/nemoskii/front.svg",
  27392. extra: 2270 / 1734,
  27393. bottom: 86 / 2354
  27394. }
  27395. },
  27396. back: {
  27397. height: math.unit(6 + 7 / 12, "feet"),
  27398. weight: math.unit(250, "lb"),
  27399. name: "Back",
  27400. image: {
  27401. source: "./media/characters/nemoskii/back.svg",
  27402. extra: 1845 / 1788,
  27403. bottom: 10.5 / 1852
  27404. }
  27405. },
  27406. head: {
  27407. height: math.unit(1.31, "feet"),
  27408. name: "Head",
  27409. image: {
  27410. source: "./media/characters/nemoskii/head.svg"
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Micro",
  27417. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27418. },
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(6 + 7 / 12, "feet"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Macro",
  27426. height: math.unit((6 + 7 / 12) * 150, "feet")
  27427. },
  27428. {
  27429. name: "Macro+",
  27430. height: math.unit((6 + 7 / 12) * 500, "feet")
  27431. },
  27432. {
  27433. name: "Megamacro",
  27434. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(1, "mile"),
  27443. weight: math.unit(265261.9, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/shui/front.svg",
  27447. extra: 1633 / 1564,
  27448. bottom: 91.5 / 1726
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Macro",
  27455. height: math.unit(1, "mile"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(12 + 6 / 12, "feet"),
  27465. weight: math.unit(1342, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/arokh-takakura/front.svg",
  27469. extra: 1089 / 1043,
  27470. bottom: 77.4 / 1176.7
  27471. }
  27472. },
  27473. back: {
  27474. height: math.unit(12 + 6 / 12, "feet"),
  27475. weight: math.unit(1342, "lb"),
  27476. name: "Back",
  27477. image: {
  27478. source: "./media/characters/arokh-takakura/back.svg",
  27479. extra: 1046 / 1019,
  27480. bottom: 102 / 1150
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Big",
  27487. height: math.unit(12 + 6 / 12, "feet"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(5 + 6 / 12, "feet"),
  27497. weight: math.unit(150, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/theo/front.svg",
  27501. extra: 1184 / 1131,
  27502. bottom: 7.4 / 1191
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Micro",
  27509. height: math.unit(5, "inches")
  27510. },
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(5 + 6 / 12, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(5 + 9 / 12, "feet"),
  27523. weight: math.unit(130, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/cecelia-swift/front.svg",
  27527. extra: 502 / 484,
  27528. bottom: 23 / 523
  27529. }
  27530. },
  27531. back: {
  27532. height: math.unit(5 + 9 / 12, "feet"),
  27533. weight: math.unit(130, "lb"),
  27534. name: "Back",
  27535. image: {
  27536. source: "./media/characters/cecelia-swift/back.svg",
  27537. extra: 499 / 485,
  27538. bottom: 12 / 511
  27539. }
  27540. },
  27541. head: {
  27542. height: math.unit(0.90, "feet"),
  27543. name: "Head",
  27544. image: {
  27545. source: "./media/characters/cecelia-swift/head.svg"
  27546. }
  27547. },
  27548. rump: {
  27549. height: math.unit(1.75, "feet"),
  27550. name: "Rump",
  27551. image: {
  27552. source: "./media/characters/cecelia-swift/rump.svg"
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(5 + 9 / 12, "feet"),
  27560. default: true
  27561. },
  27562. {
  27563. name: "Big",
  27564. height: math.unit(50, "feet")
  27565. },
  27566. {
  27567. name: "Macro",
  27568. height: math.unit(100, "feet")
  27569. },
  27570. {
  27571. name: "Macro+",
  27572. height: math.unit(500, "feet")
  27573. },
  27574. {
  27575. name: "Macro++",
  27576. height: math.unit(1000, "feet")
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(6, "feet"),
  27585. weight: math.unit(150, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/kaunan/front.svg",
  27589. extra: 2890 / 2523,
  27590. bottom: 49 / 2939
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Macro",
  27597. height: math.unit(150, "feet"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(175, "cm"),
  27607. weight: math.unit(60, "kg"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/fei/front.svg",
  27611. extra: 1873/1723,
  27612. bottom: 53/1926
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Mortal",
  27619. height: math.unit(175, "cm")
  27620. },
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(3500, "m"),
  27624. default: true
  27625. },
  27626. {
  27627. name: "Stroll",
  27628. height: math.unit(17.5, "km")
  27629. },
  27630. {
  27631. name: "Showoff",
  27632. height: math.unit(175, "km")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(7, "feet"),
  27641. weight: math.unit(1000, "kg"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/edrax/front.svg",
  27645. extra: 2838 / 2550,
  27646. bottom: 130 / 2968
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Small",
  27653. height: math.unit(7, "feet")
  27654. },
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(1500, "meters")
  27658. },
  27659. {
  27660. name: "Mega",
  27661. height: math.unit(12000000, "km"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Megamacro",
  27666. height: math.unit(10600000, "lightyears")
  27667. },
  27668. {
  27669. name: "Hypermacro",
  27670. height: math.unit(256, "yottameters")
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(10, "feet"),
  27679. weight: math.unit(750, "lb"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/clove/front.svg",
  27683. extra: 2031 / 1860,
  27684. bottom: 47.8 / 2080
  27685. }
  27686. },
  27687. back: {
  27688. height: math.unit(10, "feet"),
  27689. weight: math.unit(750, "lb"),
  27690. name: "Back",
  27691. image: {
  27692. source: "./media/characters/clove/back.svg",
  27693. extra: 2025 / 1859,
  27694. bottom: 46 / 2071
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(10, "feet"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(4, "feet"),
  27711. weight: math.unit(50, "lb"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/alex-rabbit/front.svg",
  27715. extra: 507 / 458,
  27716. bottom: 18.5 / 527
  27717. }
  27718. },
  27719. back: {
  27720. height: math.unit(4, "feet"),
  27721. weight: math.unit(50, "lb"),
  27722. name: "Back",
  27723. image: {
  27724. source: "./media/characters/alex-rabbit/back.svg",
  27725. extra: 502 / 460,
  27726. bottom: 18.9 / 521
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(4, "feet"),
  27734. default: true
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(1 + 3 / 12, "feet"),
  27743. weight: math.unit(80, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/zander-rose/front.svg",
  27747. extra: 916 / 797,
  27748. bottom: 17 / 933
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(1 + 3 / 12, "feet"),
  27753. weight: math.unit(80, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/zander-rose/back.svg",
  27757. extra: 903 / 779,
  27758. bottom: 31 / 934
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(1 + 3 / 12, "feet"),
  27766. default: true
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27772. {
  27773. anthro: {
  27774. height: math.unit(6, "feet"),
  27775. weight: math.unit(150, "lb"),
  27776. name: "Anthro",
  27777. image: {
  27778. source: "./media/characters/razz/anthro.svg",
  27779. extra: 1437 / 1343,
  27780. bottom: 48 / 1485
  27781. }
  27782. },
  27783. feral: {
  27784. height: math.unit(6, "feet"),
  27785. weight: math.unit(150, "lb"),
  27786. name: "Feral",
  27787. image: {
  27788. source: "./media/characters/razz/feral.svg",
  27789. extra: 2569 / 1385,
  27790. bottom: 95 / 2664
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(6, "feet"),
  27798. default: true
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(9 + 4 / 12, "feet"),
  27807. weight: math.unit(500, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/morrigan/front.svg",
  27811. extra: 2707 / 2579,
  27812. bottom: 156 / 2863
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(9 + 4 / 12, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(5, "stories"),
  27829. weight: math.unit(4000, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/jenene/front.svg",
  27833. extra: 1780 / 1710,
  27834. bottom: 57 / 1837
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Normal",
  27841. height: math.unit(5, "stories"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27848. {
  27849. taurSfw: {
  27850. height: math.unit(10, "meters"),
  27851. weight: math.unit(17500, "kg"),
  27852. name: "Taur",
  27853. image: {
  27854. source: "./media/characters/faey/taur-sfw.svg",
  27855. extra: 1200 / 968,
  27856. bottom: 41 / 1241
  27857. }
  27858. },
  27859. chestmaw: {
  27860. height: math.unit(2.01, "meters"),
  27861. name: "Chestmaw",
  27862. image: {
  27863. source: "./media/characters/faey/chestmaw.svg"
  27864. }
  27865. },
  27866. foot: {
  27867. height: math.unit(2.43, "meters"),
  27868. name: "Foot",
  27869. image: {
  27870. source: "./media/characters/faey/foot.svg"
  27871. }
  27872. },
  27873. jaws: {
  27874. height: math.unit(1.66, "meters"),
  27875. name: "Jaws",
  27876. image: {
  27877. source: "./media/characters/faey/jaws.svg"
  27878. }
  27879. },
  27880. tongues: {
  27881. height: math.unit(2.01, "meters"),
  27882. name: "Tongues",
  27883. image: {
  27884. source: "./media/characters/faey/tongues.svg"
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Small",
  27891. height: math.unit(10, "meters"),
  27892. default: true
  27893. },
  27894. {
  27895. name: "Big",
  27896. height: math.unit(500000, "km")
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(7, "feet"),
  27905. weight: math.unit(275, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/roku/front.svg",
  27909. extra: 903 / 878,
  27910. bottom: 37 / 940
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(7, "feet"),
  27918. default: true
  27919. },
  27920. {
  27921. name: "Macro",
  27922. height: math.unit(500, "feet")
  27923. },
  27924. {
  27925. name: "Megamacro",
  27926. height: math.unit(200, "miles")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(6 + 2 / 12, "feet"),
  27935. weight: math.unit(150, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/lira/front.svg",
  27939. extra: 1727 / 1605,
  27940. bottom: 26 / 1753
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(6 + 2 / 12, "feet"),
  27945. weight: math.unit(150, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/lira/back.svg",
  27949. extra: 1713/1621,
  27950. bottom: 20/1733
  27951. }
  27952. },
  27953. hand: {
  27954. height: math.unit(0.75, "feet"),
  27955. name: "Hand",
  27956. image: {
  27957. source: "./media/characters/lira/hand.svg"
  27958. }
  27959. },
  27960. maw: {
  27961. height: math.unit(0.65, "feet"),
  27962. name: "Maw",
  27963. image: {
  27964. source: "./media/characters/lira/maw.svg"
  27965. }
  27966. },
  27967. pawDigi: {
  27968. height: math.unit(1.6, "feet"),
  27969. name: "Paw Digi",
  27970. image: {
  27971. source: "./media/characters/lira/paw-digi.svg"
  27972. }
  27973. },
  27974. pawPlanti: {
  27975. height: math.unit(1.4, "feet"),
  27976. name: "Paw Planti",
  27977. image: {
  27978. source: "./media/characters/lira/paw-planti.svg"
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(6 + 2 / 12, "feet"),
  27986. default: true
  27987. },
  27988. {
  27989. name: "Macro",
  27990. height: math.unit(100, "feet")
  27991. },
  27992. {
  27993. name: "Macro²",
  27994. height: math.unit(1600, "feet")
  27995. },
  27996. {
  27997. name: "Planetary",
  27998. height: math.unit(20, "earths")
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(6, "feet"),
  28007. weight: math.unit(150, "lb"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/hadjet/front.svg",
  28011. extra: 1480 / 1346,
  28012. bottom: 26 / 1506
  28013. }
  28014. },
  28015. frontNsfw: {
  28016. height: math.unit(6, "feet"),
  28017. weight: math.unit(150, "lb"),
  28018. name: "Front (NSFW)",
  28019. image: {
  28020. source: "./media/characters/hadjet/front-nsfw.svg",
  28021. extra: 1440 / 1358,
  28022. bottom: 52 / 1492
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Macro",
  28029. height: math.unit(10, "stories"),
  28030. default: true
  28031. },
  28032. {
  28033. name: "Megamacro",
  28034. height: math.unit(1.5, "miles")
  28035. },
  28036. {
  28037. name: "Megamacro+",
  28038. height: math.unit(5, "miles")
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28044. {
  28045. side: {
  28046. height: math.unit(106, "feet"),
  28047. weight: math.unit(500, "tonnes"),
  28048. name: "Side",
  28049. image: {
  28050. source: "./media/characters/kodran/side.svg",
  28051. extra: 553 / 480,
  28052. bottom: 33 / 586
  28053. }
  28054. },
  28055. front: {
  28056. height: math.unit(132, "feet"),
  28057. weight: math.unit(500, "tonnes"),
  28058. name: "Front",
  28059. image: {
  28060. source: "./media/characters/kodran/front.svg",
  28061. extra: 667 / 643,
  28062. bottom: 42 / 709
  28063. }
  28064. },
  28065. flying: {
  28066. height: math.unit(350, "feet"),
  28067. weight: math.unit(500, "tonnes"),
  28068. name: "Flying",
  28069. image: {
  28070. source: "./media/characters/kodran/flying.svg"
  28071. }
  28072. },
  28073. foot: {
  28074. height: math.unit(33, "feet"),
  28075. name: "Foot",
  28076. image: {
  28077. source: "./media/characters/kodran/foot.svg"
  28078. }
  28079. },
  28080. footFront: {
  28081. height: math.unit(19, "feet"),
  28082. name: "Foot (Front)",
  28083. image: {
  28084. source: "./media/characters/kodran/foot-front.svg",
  28085. extra: 261 / 261,
  28086. bottom: 91 / 352
  28087. }
  28088. },
  28089. headFront: {
  28090. height: math.unit(53, "feet"),
  28091. name: "Head (Front)",
  28092. image: {
  28093. source: "./media/characters/kodran/head-front.svg"
  28094. }
  28095. },
  28096. headSide: {
  28097. height: math.unit(65, "feet"),
  28098. name: "Head (Side)",
  28099. image: {
  28100. source: "./media/characters/kodran/head-side.svg"
  28101. }
  28102. },
  28103. throat: {
  28104. height: math.unit(79, "feet"),
  28105. name: "Throat",
  28106. image: {
  28107. source: "./media/characters/kodran/throat.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Large",
  28114. height: math.unit(106, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28121. {
  28122. side: {
  28123. height: math.unit(11, "feet"),
  28124. weight: math.unit(150, "lb"),
  28125. name: "Side",
  28126. image: {
  28127. source: "./media/characters/pyxaron/side.svg",
  28128. extra: 305 / 195,
  28129. bottom: 17 / 322
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(11, "feet"),
  28137. default: true
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(6, "feet"),
  28146. weight: math.unit(150, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/meep/front.svg",
  28150. extra: 88 / 80,
  28151. bottom: 6 / 94
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Fun Sized",
  28158. height: math.unit(2, "inches"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Friend Sized",
  28163. height: math.unit(8, "inches")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28169. {
  28170. front: {
  28171. height: math.unit(15, "feet"),
  28172. weight: math.unit(2500, "lb"),
  28173. name: "Front",
  28174. image: {
  28175. source: "./media/characters/holly-rabbit/front.svg",
  28176. extra: 1433 / 1233,
  28177. bottom: 125 / 1558
  28178. }
  28179. },
  28180. dick: {
  28181. height: math.unit(4.6, "feet"),
  28182. name: "Dick",
  28183. image: {
  28184. source: "./media/characters/holly-rabbit/dick.svg"
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Normal",
  28191. height: math.unit(15, "feet"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Macro",
  28196. height: math.unit(250, "feet")
  28197. },
  28198. {
  28199. name: "Macro+",
  28200. height: math.unit(2500, "feet")
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28206. {
  28207. front: {
  28208. height: math.unit(3.02, "meters"),
  28209. weight: math.unit(500, "kg"),
  28210. name: "Front",
  28211. image: {
  28212. source: "./media/characters/drena/front.svg",
  28213. extra: 282 / 243,
  28214. bottom: 8 / 290
  28215. }
  28216. },
  28217. side: {
  28218. height: math.unit(3.02, "meters"),
  28219. weight: math.unit(500, "kg"),
  28220. name: "Side",
  28221. image: {
  28222. source: "./media/characters/drena/side.svg",
  28223. extra: 280 / 245,
  28224. bottom: 10 / 290
  28225. }
  28226. },
  28227. back: {
  28228. height: math.unit(3.02, "meters"),
  28229. weight: math.unit(500, "kg"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/drena/back.svg",
  28233. extra: 278 / 243,
  28234. bottom: 2 / 280
  28235. }
  28236. },
  28237. foot: {
  28238. height: math.unit(0.75, "meters"),
  28239. name: "Foot",
  28240. image: {
  28241. source: "./media/characters/drena/foot.svg"
  28242. }
  28243. },
  28244. maw: {
  28245. height: math.unit(0.82, "meters"),
  28246. name: "Maw",
  28247. image: {
  28248. source: "./media/characters/drena/maw.svg"
  28249. }
  28250. },
  28251. rump: {
  28252. height: math.unit(0.93, "meters"),
  28253. name: "Rump",
  28254. image: {
  28255. source: "./media/characters/drena/rump.svg"
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(3.02, "meters"),
  28263. default: true
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(6 + 4 / 12, "feet"),
  28272. weight: math.unit(250, "lb"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/remmyzilla/front.svg",
  28276. extra: 4033 / 3588,
  28277. bottom: 123 / 4156
  28278. }
  28279. },
  28280. back: {
  28281. height: math.unit(6 + 4 / 12, "feet"),
  28282. weight: math.unit(250, "lb"),
  28283. name: "Back",
  28284. image: {
  28285. source: "./media/characters/remmyzilla/back.svg",
  28286. extra: 2687 / 2555,
  28287. bottom: 48 / 2735
  28288. }
  28289. },
  28290. paw: {
  28291. height: math.unit(1.73, "feet"),
  28292. name: "Paw",
  28293. image: {
  28294. source: "./media/characters/remmyzilla/paw.svg"
  28295. }
  28296. },
  28297. maw: {
  28298. height: math.unit(1.73, "feet"),
  28299. name: "Maw",
  28300. image: {
  28301. source: "./media/characters/remmyzilla/maw.svg"
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(6 + 4 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Minimacro",
  28312. height: math.unit(12 + 8 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(640, "feet"),
  28317. default: true
  28318. },
  28319. {
  28320. name: "Megamacro",
  28321. height: math.unit(6400, "feet")
  28322. },
  28323. {
  28324. name: "Gigamacro",
  28325. height: math.unit(64000, "miles")
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(2.5, "meters"),
  28334. weight: math.unit(300, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/lawrence/front.svg",
  28338. extra: 357 / 335,
  28339. bottom: 30 / 387
  28340. }
  28341. },
  28342. back: {
  28343. height: math.unit(2.5, "meters"),
  28344. weight: math.unit(300, "lb"),
  28345. name: "Back",
  28346. image: {
  28347. source: "./media/characters/lawrence/back.svg",
  28348. extra: 357 / 338,
  28349. bottom: 16 / 373
  28350. }
  28351. },
  28352. head: {
  28353. height: math.unit(0.9, "meter"),
  28354. name: "Head",
  28355. image: {
  28356. source: "./media/characters/lawrence/head.svg"
  28357. }
  28358. },
  28359. maw: {
  28360. height: math.unit(0.7, "meter"),
  28361. name: "Maw",
  28362. image: {
  28363. source: "./media/characters/lawrence/maw.svg"
  28364. }
  28365. },
  28366. footBottom: {
  28367. height: math.unit(0.5, "meter"),
  28368. name: "Foot (Bottom)",
  28369. image: {
  28370. source: "./media/characters/lawrence/foot-bottom.svg"
  28371. }
  28372. },
  28373. footTop: {
  28374. height: math.unit(0.5, "meter"),
  28375. name: "Foot (Top)",
  28376. image: {
  28377. source: "./media/characters/lawrence/foot-top.svg"
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(2.5, "meters"),
  28385. default: true
  28386. },
  28387. {
  28388. name: "Macro",
  28389. height: math.unit(95, "meters")
  28390. },
  28391. {
  28392. name: "Megamacro",
  28393. height: math.unit(150, "km")
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28399. {
  28400. front: {
  28401. height: math.unit(4.2, "meters"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/sydney/front.svg",
  28405. extra: 1323 / 1277,
  28406. bottom: 111 / 1434
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(4.2, "meters"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28420. {
  28421. back: {
  28422. height: math.unit(201, "feet"),
  28423. name: "Back",
  28424. image: {
  28425. source: "./media/characters/jessica/back.svg",
  28426. extra: 273 / 259,
  28427. bottom: 7 / 280
  28428. }
  28429. },
  28430. },
  28431. [
  28432. {
  28433. name: "Normal",
  28434. height: math.unit(201, "feet"),
  28435. default: true
  28436. },
  28437. {
  28438. name: "Megamacro",
  28439. height: math.unit(8, "miles")
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28445. {
  28446. side: {
  28447. height: math.unit(320, "cm"),
  28448. name: "Side",
  28449. image: {
  28450. source: "./media/characters/victoria/side.svg",
  28451. extra: 778 / 346,
  28452. bottom: 56 / 834
  28453. }
  28454. },
  28455. maw: {
  28456. height: math.unit(5.9, "feet"),
  28457. name: "Maw",
  28458. image: {
  28459. source: "./media/characters/victoria/maw.svg"
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(320, "cm"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28473. {
  28474. front: {
  28475. height: math.unit(5 + 6 / 12, "feet"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/cat/front.svg",
  28479. extra: 1449/1295,
  28480. bottom: 34/1483
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(5 + 6 / 12, "feet"),
  28485. name: "Back",
  28486. image: {
  28487. source: "./media/characters/cat/back.svg",
  28488. extra: 1466/1301,
  28489. bottom: 19/1485
  28490. }
  28491. },
  28492. taur: {
  28493. height: math.unit(7, "feet"),
  28494. name: "Taur",
  28495. image: {
  28496. source: "./media/characters/cat/taur.svg",
  28497. extra: 1389/1233,
  28498. bottom: 83/1472
  28499. }
  28500. },
  28501. lucarioFront: {
  28502. height: math.unit(4, "feet"),
  28503. name: "Lucario (Front)",
  28504. image: {
  28505. source: "./media/characters/cat/lucario-front.svg",
  28506. extra: 1149/1019,
  28507. bottom: 84/1233
  28508. }
  28509. },
  28510. lucarioBack: {
  28511. height: math.unit(4, "feet"),
  28512. name: "Lucario (Back)",
  28513. image: {
  28514. source: "./media/characters/cat/lucario-back.svg",
  28515. extra: 1190/1059,
  28516. bottom: 33/1223
  28517. }
  28518. },
  28519. megaLucario: {
  28520. height: math.unit(4, "feet"),
  28521. name: "Mega Lucario",
  28522. image: {
  28523. source: "./media/characters/cat/mega-lucario.svg",
  28524. extra: 1515 / 1319,
  28525. bottom: 63 / 1578
  28526. }
  28527. },
  28528. nickit: {
  28529. height: math.unit(2, "feet"),
  28530. name: "Nickit",
  28531. image: {
  28532. source: "./media/characters/cat/nickit.svg",
  28533. extra: 1980 / 1585,
  28534. bottom: 102 / 2082
  28535. }
  28536. },
  28537. lopunnyFront: {
  28538. height: math.unit(5, "feet"),
  28539. name: "Lopunny (Front)",
  28540. image: {
  28541. source: "./media/characters/cat/lopunny-front.svg",
  28542. extra: 1782 / 1469,
  28543. bottom: 38 / 1820
  28544. }
  28545. },
  28546. lopunnyBack: {
  28547. height: math.unit(5, "feet"),
  28548. name: "Lopunny (Back)",
  28549. image: {
  28550. source: "./media/characters/cat/lopunny-back.svg",
  28551. extra: 1660 / 1490,
  28552. bottom: 25 / 1685
  28553. }
  28554. },
  28555. },
  28556. [
  28557. {
  28558. name: "Really small",
  28559. height: math.unit(1, "nm")
  28560. },
  28561. {
  28562. name: "Micro",
  28563. height: math.unit(5, "inches")
  28564. },
  28565. {
  28566. name: "Normal",
  28567. height: math.unit(5 + 6 / 12, "feet"),
  28568. default: true
  28569. },
  28570. {
  28571. name: "Macro",
  28572. height: math.unit(50, "feet")
  28573. },
  28574. {
  28575. name: "Macro+",
  28576. height: math.unit(150, "feet")
  28577. },
  28578. {
  28579. name: "Megamacro",
  28580. height: math.unit(100, "miles")
  28581. },
  28582. ]
  28583. ))
  28584. characterMakers.push(() => makeCharacter(
  28585. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28586. {
  28587. front: {
  28588. height: math.unit(63.4, "meters"),
  28589. weight: math.unit(3.28349e+6, "kilograms"),
  28590. name: "Front",
  28591. image: {
  28592. source: "./media/characters/kirina-violet/front.svg",
  28593. extra: 2812 / 2725,
  28594. bottom: 0 / 2812
  28595. }
  28596. },
  28597. back: {
  28598. height: math.unit(63.4, "meters"),
  28599. weight: math.unit(3.28349e+6, "kilograms"),
  28600. name: "Back",
  28601. image: {
  28602. source: "./media/characters/kirina-violet/back.svg",
  28603. extra: 2812 / 2725,
  28604. bottom: 0 / 2812
  28605. }
  28606. },
  28607. mouth: {
  28608. height: math.unit(4.35, "meters"),
  28609. name: "Mouth",
  28610. image: {
  28611. source: "./media/characters/kirina-violet/mouth.svg"
  28612. }
  28613. },
  28614. paw: {
  28615. height: math.unit(5.6, "meters"),
  28616. name: "Paw",
  28617. image: {
  28618. source: "./media/characters/kirina-violet/paw.svg"
  28619. }
  28620. },
  28621. tail: {
  28622. height: math.unit(18, "meters"),
  28623. name: "Tail",
  28624. image: {
  28625. source: "./media/characters/kirina-violet/tail.svg"
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Macro",
  28632. height: math.unit(63.4, "meters"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(75, "feet"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/cat-gigachu/front.svg",
  28645. extra: 1239/1027,
  28646. bottom: 32/1271
  28647. }
  28648. },
  28649. back: {
  28650. height: math.unit(75, "feet"),
  28651. name: "Back",
  28652. image: {
  28653. source: "./media/characters/cat-gigachu/back.svg",
  28654. extra: 1229/1030,
  28655. bottom: 9/1238
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Dynamax",
  28662. height: math.unit(75, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(6, "feet"),
  28672. weight: math.unit(150, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/sfaiyan/front.svg",
  28676. extra: 999 / 978,
  28677. bottom: 5 / 1004
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(1.82, "meters")
  28685. },
  28686. {
  28687. name: "Giant",
  28688. height: math.unit(2.27, "km"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(179, "cm"),
  28698. weight: math.unit(100, "kg"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/raunehkeli/front.svg",
  28702. extra: 1934 / 1926,
  28703. bottom: 0 / 1934
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(179, "cm")
  28711. },
  28712. {
  28713. name: "Maximum",
  28714. height: math.unit(575, "meters"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28728. extra: 2625 / 2518,
  28729. bottom: 60 / 2685
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Normal",
  28736. height: math.unit(6 + 2 / 12, "feet")
  28737. },
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(1180, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(5 + 6 / 12, "feet"),
  28750. weight: math.unit(108, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/lilith-zott/front.svg",
  28754. extra: 2510 / 2238,
  28755. bottom: 100 / 2610
  28756. }
  28757. },
  28758. frontDressed: {
  28759. height: math.unit(5 + 6 / 12, "feet"),
  28760. weight: math.unit(108, "lb"),
  28761. name: "Front (Dressed)",
  28762. image: {
  28763. source: "./media/characters/lilith-zott/front-dressed.svg",
  28764. extra: 2510 / 2238,
  28765. bottom: 100 / 2610
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(5 + 6 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Macro",
  28776. height: math.unit(1030, "feet"),
  28777. default: true
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(6, "feet"),
  28786. weight: math.unit(150, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28790. extra: 2567 / 2435,
  28791. bottom: 39 / 2606
  28792. }
  28793. },
  28794. frontSuper: {
  28795. height: math.unit(6, "feet"),
  28796. name: "Front (Super)",
  28797. image: {
  28798. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28799. extra: 2567 / 2435,
  28800. bottom: 39 / 2606
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(5 + 10 / 12, "feet")
  28808. },
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(1100, "feet"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(100, "miles"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/sona/front.svg",
  28824. extra: 2433 / 2201,
  28825. bottom: 53 / 2486
  28826. }
  28827. },
  28828. foot: {
  28829. height: math.unit(16.1, "miles"),
  28830. name: "Foot",
  28831. image: {
  28832. source: "./media/characters/sona/foot.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(100, "miles"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(6, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/bailey/front.svg",
  28853. extra: 1778 / 1724,
  28854. bottom: 30 / 1808
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Micro",
  28861. height: math.unit(4, "inches")
  28862. },
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(5 + 5 / 12, "feet"),
  28866. default: true
  28867. },
  28868. {
  28869. name: "Macro",
  28870. height: math.unit(250, "feet")
  28871. },
  28872. {
  28873. name: "Megamacro",
  28874. height: math.unit(100, "miles")
  28875. },
  28876. ]
  28877. ))
  28878. characterMakers.push(() => makeCharacter(
  28879. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28880. {
  28881. front: {
  28882. height: math.unit(5 + 2 / 12, "feet"),
  28883. weight: math.unit(120, "lb"),
  28884. name: "Front",
  28885. image: {
  28886. source: "./media/characters/snaps/front.svg",
  28887. extra: 2370 / 2177,
  28888. bottom: 48 / 2418
  28889. }
  28890. },
  28891. back: {
  28892. height: math.unit(5 + 2 / 12, "feet"),
  28893. weight: math.unit(120, "lb"),
  28894. name: "Back",
  28895. image: {
  28896. source: "./media/characters/snaps/back.svg",
  28897. extra: 2408 / 2258,
  28898. bottom: 15 / 2423
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Micro",
  28905. height: math.unit(9, "inches")
  28906. },
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(5 + 2 / 12, "feet"),
  28910. default: true
  28911. },
  28912. {
  28913. name: "Mini Macro",
  28914. height: math.unit(10, "feet")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(1.8, "meters"),
  28923. weight: math.unit(85, "kg"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/azteck/front.svg",
  28927. extra: 2815 / 2625,
  28928. bottom: 89 / 2904
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(1.8, "meters"),
  28933. weight: math.unit(85, "kg"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/azteck/back.svg",
  28937. extra: 2856 / 2648,
  28938. bottom: 85 / 2941
  28939. }
  28940. },
  28941. frontDressed: {
  28942. height: math.unit(1.8, "meters"),
  28943. weight: math.unit(85, "kg"),
  28944. name: "Front (Dressed)",
  28945. image: {
  28946. source: "./media/characters/azteck/front-dressed.svg",
  28947. extra: 2147 / 2003,
  28948. bottom: 68 / 2215
  28949. }
  28950. },
  28951. head: {
  28952. height: math.unit(0.47, "meters"),
  28953. weight: math.unit(85, "kg"),
  28954. name: "Head",
  28955. image: {
  28956. source: "./media/characters/azteck/head.svg"
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Bite sized",
  28963. height: math.unit(16, "cm")
  28964. },
  28965. {
  28966. name: "Normal",
  28967. height: math.unit(1.8, "meters"),
  28968. default: true
  28969. },
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(6, "feet"),
  28977. weight: math.unit(150, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/pidge/front.svg",
  28981. extra: 620 / 588,
  28982. bottom: 9 / 629
  28983. }
  28984. },
  28985. back: {
  28986. height: math.unit(6, "feet"),
  28987. weight: math.unit(150, "lb"),
  28988. name: "Back",
  28989. image: {
  28990. source: "./media/characters/pidge/back.svg",
  28991. extra: 620 / 588,
  28992. bottom: 9 / 629
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Macro",
  28999. height: math.unit(1, "mile"),
  29000. default: true
  29001. },
  29002. ]
  29003. ))
  29004. characterMakers.push(() => makeCharacter(
  29005. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29006. {
  29007. front: {
  29008. height: math.unit(6, "feet"),
  29009. weight: math.unit(150, "lb"),
  29010. name: "Front",
  29011. image: {
  29012. source: "./media/characters/en/front.svg",
  29013. extra: 1697 / 1563,
  29014. bottom: 103 / 1800
  29015. }
  29016. },
  29017. back: {
  29018. height: math.unit(6, "feet"),
  29019. weight: math.unit(150, "lb"),
  29020. name: "Back",
  29021. image: {
  29022. source: "./media/characters/en/back.svg",
  29023. extra: 1700 / 1570,
  29024. bottom: 51 / 1751
  29025. }
  29026. },
  29027. frontDressed: {
  29028. height: math.unit(6, "feet"),
  29029. weight: math.unit(150, "lb"),
  29030. name: "Front (Dressed)",
  29031. image: {
  29032. source: "./media/characters/en/front-dressed.svg",
  29033. extra: 1697 / 1563,
  29034. bottom: 103 / 1800
  29035. }
  29036. },
  29037. backDressed: {
  29038. height: math.unit(6, "feet"),
  29039. weight: math.unit(150, "lb"),
  29040. name: "Back (Dressed)",
  29041. image: {
  29042. source: "./media/characters/en/back-dressed.svg",
  29043. extra: 1700 / 1570,
  29044. bottom: 51 / 1751
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Macro",
  29051. height: math.unit(210, "feet"),
  29052. default: true
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29058. {
  29059. front: {
  29060. height: math.unit(6, "feet"),
  29061. weight: math.unit(150, "lb"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/haze-orris/front.svg",
  29065. extra: 3975 / 3525,
  29066. bottom: 137 / 4112
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Micro",
  29073. height: math.unit(150, "mm"),
  29074. default: true
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(6, "feet"),
  29083. weight: math.unit(150, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/casselene-yaro/front.svg",
  29087. extra: 4721 / 4541,
  29088. bottom: 82 / 4803
  29089. }
  29090. },
  29091. back: {
  29092. height: math.unit(6, "feet"),
  29093. weight: math.unit(150, "lb"),
  29094. name: "Back",
  29095. image: {
  29096. source: "./media/characters/casselene-yaro/back.svg",
  29097. extra: 4569 / 4377,
  29098. bottom: 69 / 4638
  29099. }
  29100. },
  29101. frontDressed: {
  29102. height: math.unit(6, "feet"),
  29103. weight: math.unit(150, "lb"),
  29104. name: "Front-dressed",
  29105. image: {
  29106. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29107. extra: 4721 / 4541,
  29108. bottom: 82 / 4803
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Macro",
  29115. height: math.unit(190, "feet"),
  29116. default: true
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(6, "feet"),
  29125. weight: math.unit(150, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/myra-rue-delore/front.svg",
  29129. extra: 1340 / 1308,
  29130. bottom: 67 / 1407
  29131. }
  29132. },
  29133. back: {
  29134. height: math.unit(6, "feet"),
  29135. weight: math.unit(150, "lb"),
  29136. name: "Back",
  29137. image: {
  29138. source: "./media/characters/myra-rue-delore/back.svg",
  29139. extra: 1341 / 1310,
  29140. bottom: 40 / 1381
  29141. }
  29142. },
  29143. frontDressed: {
  29144. height: math.unit(6, "feet"),
  29145. weight: math.unit(150, "lb"),
  29146. name: "Front (Dressed)",
  29147. image: {
  29148. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29149. extra: 1340 / 1308,
  29150. bottom: 67 / 1407
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Macro",
  29157. height: math.unit(150, "feet"),
  29158. default: true
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(10, "feet"),
  29167. weight: math.unit(15015, "lb"),
  29168. name: "Front",
  29169. image: {
  29170. source: "./media/characters/fem!plat/front.svg",
  29171. extra: 2799 / 2604,
  29172. bottom: 149 / 2948
  29173. }
  29174. },
  29175. },
  29176. [
  29177. {
  29178. name: "Normal",
  29179. height: math.unit(10, "feet"),
  29180. default: true
  29181. },
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(100, "feet")
  29185. },
  29186. {
  29187. name: "Megamacro",
  29188. height: math.unit(1000, "feet")
  29189. },
  29190. ]
  29191. ))
  29192. characterMakers.push(() => makeCharacter(
  29193. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29194. {
  29195. front: {
  29196. height: math.unit(15 + 5 / 12, "feet"),
  29197. weight: math.unit(4600, "lb"),
  29198. name: "Front",
  29199. image: {
  29200. source: "./media/characters/neapolitan-ananassa/front.svg",
  29201. extra: 2903 / 2736,
  29202. bottom: 0 / 2903
  29203. }
  29204. },
  29205. side: {
  29206. height: math.unit(15 + 5 / 12, "feet"),
  29207. weight: math.unit(4600, "lb"),
  29208. name: "Side",
  29209. image: {
  29210. source: "./media/characters/neapolitan-ananassa/side.svg",
  29211. extra: 2925 / 2719,
  29212. bottom: 0 / 2925
  29213. }
  29214. },
  29215. back: {
  29216. height: math.unit(15 + 5 / 12, "feet"),
  29217. weight: math.unit(4600, "lb"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/neapolitan-ananassa/back.svg",
  29221. extra: 2903 / 2736,
  29222. bottom: 0 / 2903
  29223. }
  29224. },
  29225. },
  29226. [
  29227. {
  29228. name: "Normal",
  29229. height: math.unit(15 + 5 / 12, "feet"),
  29230. default: true
  29231. },
  29232. {
  29233. name: "Post-Millenium",
  29234. height: math.unit(35 + 5 / 12, "feet")
  29235. },
  29236. {
  29237. name: "Post-Era",
  29238. height: math.unit(450 + 5 / 12, "feet")
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(300, "meters"),
  29247. weight: math.unit(125000, "tonnes"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/pazuzu/front.svg",
  29251. extra: 877 / 794,
  29252. bottom: 47 / 924
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Macro",
  29259. height: math.unit(300, "meters"),
  29260. default: true
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29266. {
  29267. side: {
  29268. height: math.unit(10 + 7 / 12, "feet"),
  29269. weight: math.unit(2.5, "tons"),
  29270. name: "Side",
  29271. image: {
  29272. source: "./media/characters/aasha/side.svg",
  29273. extra: 1345 / 1245,
  29274. bottom: 111 / 1456
  29275. }
  29276. },
  29277. back: {
  29278. height: math.unit(10 + 7 / 12, "feet"),
  29279. weight: math.unit(2.5, "tons"),
  29280. name: "Back",
  29281. image: {
  29282. source: "./media/characters/aasha/back.svg",
  29283. extra: 1133 / 1057,
  29284. bottom: 257 / 1390
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(10 + 7 / 12, "feet"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(6 + 3 / 12, "feet"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/nevan/front.svg",
  29304. extra: 704 / 704,
  29305. bottom: 28 / 732
  29306. }
  29307. },
  29308. back: {
  29309. height: math.unit(6 + 3 / 12, "feet"),
  29310. name: "Back",
  29311. image: {
  29312. source: "./media/characters/nevan/back.svg",
  29313. extra: 714 / 714,
  29314. bottom: 21 / 735
  29315. }
  29316. },
  29317. frontFlaccid: {
  29318. height: math.unit(6 + 3 / 12, "feet"),
  29319. name: "Front (Flaccid)",
  29320. image: {
  29321. source: "./media/characters/nevan/front-flaccid.svg",
  29322. extra: 704 / 704,
  29323. bottom: 28 / 732
  29324. }
  29325. },
  29326. frontErect: {
  29327. height: math.unit(6 + 3 / 12, "feet"),
  29328. name: "Front (Erect)",
  29329. image: {
  29330. source: "./media/characters/nevan/front-erect.svg",
  29331. extra: 704 / 704,
  29332. bottom: 28 / 732
  29333. }
  29334. },
  29335. backFlaccid: {
  29336. height: math.unit(6 + 3 / 12, "feet"),
  29337. name: "Back (Flaccid)",
  29338. image: {
  29339. source: "./media/characters/nevan/back-flaccid.svg",
  29340. extra: 714 / 714,
  29341. bottom: 21 / 735
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Normal",
  29348. height: math.unit(6 + 3 / 12, "feet"),
  29349. default: true
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(4, "feet"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/arhan/front.svg",
  29361. extra: 3368 / 3133,
  29362. bottom: 0 / 3368
  29363. }
  29364. },
  29365. side: {
  29366. height: math.unit(4, "feet"),
  29367. name: "Side",
  29368. image: {
  29369. source: "./media/characters/arhan/side.svg",
  29370. extra: 3347 / 3105,
  29371. bottom: 0 / 3347
  29372. }
  29373. },
  29374. tongue: {
  29375. height: math.unit(1.42, "feet"),
  29376. name: "Tongue",
  29377. image: {
  29378. source: "./media/characters/arhan/tongue.svg"
  29379. }
  29380. },
  29381. head: {
  29382. height: math.unit(0.85, "feet"),
  29383. name: "Head",
  29384. image: {
  29385. source: "./media/characters/arhan/head.svg"
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Normal",
  29392. height: math.unit(4, "feet"),
  29393. default: true
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(5 + 7.5 / 12, "feet"),
  29402. weight: math.unit(120, "lb"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/digi-duncan/front.svg",
  29406. extra: 330 / 326,
  29407. bottom: 16 / 346
  29408. }
  29409. },
  29410. side: {
  29411. height: math.unit(5 + 7.5 / 12, "feet"),
  29412. weight: math.unit(120, "lb"),
  29413. name: "Side",
  29414. image: {
  29415. source: "./media/characters/digi-duncan/side.svg",
  29416. extra: 341 / 337,
  29417. bottom: 1 / 342
  29418. }
  29419. },
  29420. back: {
  29421. height: math.unit(5 + 7.5 / 12, "feet"),
  29422. weight: math.unit(120, "lb"),
  29423. name: "Back",
  29424. image: {
  29425. source: "./media/characters/digi-duncan/back.svg",
  29426. extra: 330 / 326,
  29427. bottom: 12 / 342
  29428. }
  29429. },
  29430. },
  29431. [
  29432. {
  29433. name: "Speck",
  29434. height: math.unit(0.25, "mm")
  29435. },
  29436. {
  29437. name: "Micro",
  29438. height: math.unit(5, "mm")
  29439. },
  29440. {
  29441. name: "Tiny",
  29442. height: math.unit(0.5, "inches"),
  29443. default: true
  29444. },
  29445. {
  29446. name: "Human",
  29447. height: math.unit(5 + 7.5 / 12, "feet")
  29448. },
  29449. {
  29450. name: "Minigiant",
  29451. height: math.unit(8 + 5.25, "feet")
  29452. },
  29453. {
  29454. name: "Giant",
  29455. height: math.unit(2000, "feet")
  29456. },
  29457. {
  29458. name: "Mega",
  29459. height: math.unit(371.1, "miles")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(2, "meters"),
  29468. weight: math.unit(350, "kg"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29472. extra: 898 / 838,
  29473. bottom: 9 / 907
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Micro",
  29480. height: math.unit(8, "meters")
  29481. },
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(50, "meters"),
  29485. default: true
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(500, "meters")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(6 + 6 / 12, "feet"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/khardesh/front.svg",
  29501. extra: 888 / 797,
  29502. bottom: 25 / 913
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(6 + 6 / 12, "feet"),
  29510. default: true
  29511. },
  29512. {
  29513. name: "Normal+",
  29514. height: math.unit(4, "meters")
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(50, "meters")
  29519. },
  29520. {
  29521. name: "Macro+",
  29522. height: math.unit(100, "meters")
  29523. },
  29524. {
  29525. name: "Megamacro",
  29526. height: math.unit(20, "km")
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(6, "feet"),
  29535. weight: math.unit(150, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/kosho/front.svg",
  29539. extra: 1847 / 1847,
  29540. bottom: 86 / 1933
  29541. }
  29542. },
  29543. },
  29544. [
  29545. {
  29546. name: "Second-stage micro",
  29547. height: math.unit(0.5, "inches")
  29548. },
  29549. {
  29550. name: "First-stage micro",
  29551. height: math.unit(6, "inches")
  29552. },
  29553. {
  29554. name: "Normal",
  29555. height: math.unit(6, "feet"),
  29556. default: true
  29557. },
  29558. {
  29559. name: "First-stage macro",
  29560. height: math.unit(72, "feet")
  29561. },
  29562. {
  29563. name: "Second-stage macro",
  29564. height: math.unit(864, "feet")
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29570. {
  29571. normal: {
  29572. height: math.unit(4 + 6 / 12, "feet"),
  29573. name: "Normal",
  29574. image: {
  29575. source: "./media/characters/hydra/normal.svg",
  29576. extra: 2833 / 2634,
  29577. bottom: 68 / 2901
  29578. }
  29579. },
  29580. smol: {
  29581. height: math.unit(0.705, "inches"),
  29582. name: "Smol",
  29583. image: {
  29584. source: "./media/characters/hydra/smol.svg",
  29585. extra: 2715 / 2540,
  29586. bottom: 0 / 2715
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(4 + 6 / 12, "feet"),
  29594. default: true
  29595. }
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(0.6, "cm"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/daz/front.svg",
  29606. extra: 1682 / 1164,
  29607. bottom: 42 / 1724
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Normal",
  29614. height: math.unit(0.6, "cm"),
  29615. default: true
  29616. },
  29617. ]
  29618. ))
  29619. characterMakers.push(() => makeCharacter(
  29620. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29621. {
  29622. front: {
  29623. height: math.unit(6, "feet"),
  29624. weight: math.unit(235, "lb"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/theo-pangolin/front.svg",
  29628. extra: 1996 / 1969,
  29629. bottom: 115 / 2111
  29630. }
  29631. },
  29632. back: {
  29633. height: math.unit(6, "feet"),
  29634. weight: math.unit(235, "lb"),
  29635. name: "Back",
  29636. image: {
  29637. source: "./media/characters/theo-pangolin/back.svg",
  29638. extra: 1979 / 1979,
  29639. bottom: 40 / 2019
  29640. }
  29641. },
  29642. feral: {
  29643. height: math.unit(2, "feet"),
  29644. weight: math.unit(30, "lb"),
  29645. name: "Feral",
  29646. image: {
  29647. source: "./media/characters/theo-pangolin/feral.svg",
  29648. extra: 803 / 791,
  29649. bottom: 181 / 984
  29650. }
  29651. },
  29652. footFive: {
  29653. height: math.unit(1.43, "feet"),
  29654. name: "Foot (Five Toes)",
  29655. image: {
  29656. source: "./media/characters/theo-pangolin/foot-five.svg"
  29657. }
  29658. },
  29659. footFour: {
  29660. height: math.unit(1.43, "feet"),
  29661. name: "Foot (Four Toes)",
  29662. image: {
  29663. source: "./media/characters/theo-pangolin/foot-four.svg"
  29664. }
  29665. },
  29666. handFour: {
  29667. height: math.unit(0.81, "feet"),
  29668. name: "Hand (Four Fingers)",
  29669. image: {
  29670. source: "./media/characters/theo-pangolin/hand-four.svg"
  29671. }
  29672. },
  29673. handThree: {
  29674. height: math.unit(0.81, "feet"),
  29675. name: "Hand (Three Fingers)",
  29676. image: {
  29677. source: "./media/characters/theo-pangolin/hand-three.svg"
  29678. }
  29679. },
  29680. headFront: {
  29681. height: math.unit(1.37, "feet"),
  29682. name: "Head (Front)",
  29683. image: {
  29684. source: "./media/characters/theo-pangolin/head-front.svg"
  29685. }
  29686. },
  29687. headSide: {
  29688. height: math.unit(1.43, "feet"),
  29689. name: "Head (Side)",
  29690. image: {
  29691. source: "./media/characters/theo-pangolin/head-side.svg"
  29692. }
  29693. },
  29694. tongue: {
  29695. height: math.unit(2.29, "feet"),
  29696. name: "Tongue",
  29697. image: {
  29698. source: "./media/characters/theo-pangolin/tongue.svg"
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "Normal",
  29705. height: math.unit(6, "feet")
  29706. },
  29707. {
  29708. name: "Macro",
  29709. height: math.unit(400, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(6, "inches"),
  29719. weight: math.unit(0.036, "kg"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/renée/front.svg",
  29723. extra: 900 / 886,
  29724. bottom: 8 / 908
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Nano",
  29731. height: math.unit(1, "nm")
  29732. },
  29733. {
  29734. name: "Micro",
  29735. height: math.unit(1, "mm")
  29736. },
  29737. {
  29738. name: "Normal",
  29739. height: math.unit(6, "inches")
  29740. },
  29741. {
  29742. name: "Macro",
  29743. height: math.unit(2000, "feet"),
  29744. default: true
  29745. },
  29746. {
  29747. name: "Megamacro",
  29748. height: math.unit(2, "km")
  29749. },
  29750. {
  29751. name: "Gigamacro",
  29752. height: math.unit(2000, "km")
  29753. },
  29754. {
  29755. name: "Teramacro",
  29756. height: math.unit(250000, "km")
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29762. {
  29763. front: {
  29764. height: math.unit(4, "meters"),
  29765. weight: math.unit(150, "kg"),
  29766. name: "Front",
  29767. image: {
  29768. source: "./media/characters/caledvwlch/front.svg",
  29769. extra: 1760 / 1551,
  29770. bottom: 28 / 1788
  29771. }
  29772. },
  29773. side: {
  29774. height: math.unit(4, "meters"),
  29775. weight: math.unit(150, "kg"),
  29776. name: "Side",
  29777. image: {
  29778. source: "./media/characters/caledvwlch/side.svg",
  29779. extra: 1605 / 1536,
  29780. bottom: 31 / 1636
  29781. }
  29782. },
  29783. back: {
  29784. height: math.unit(4, "meters"),
  29785. weight: math.unit(150, "kg"),
  29786. name: "Back",
  29787. image: {
  29788. source: "./media/characters/caledvwlch/back.svg",
  29789. extra: 1635 / 1565,
  29790. bottom: 27 / 1662
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "\"Incognito\"",
  29797. height: math.unit(4, "meters")
  29798. },
  29799. {
  29800. name: "Small rampage",
  29801. height: math.unit(600, "meters")
  29802. },
  29803. {
  29804. name: "Mega",
  29805. height: math.unit(30, "km")
  29806. },
  29807. {
  29808. name: "Home-size",
  29809. height: math.unit(50, "km"),
  29810. default: true
  29811. },
  29812. {
  29813. name: "Giga",
  29814. height: math.unit(300, "km")
  29815. },
  29816. {
  29817. name: "Lounging",
  29818. height: math.unit(11000, "km")
  29819. },
  29820. {
  29821. name: "Planet snacking",
  29822. height: math.unit(2000000, "km")
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(6, "feet"),
  29831. weight: math.unit(215, "lb"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/sapphire-svell/front.svg",
  29835. extra: 495 / 455,
  29836. bottom: 20 / 515
  29837. }
  29838. },
  29839. back: {
  29840. height: math.unit(6, "feet"),
  29841. weight: math.unit(216, "lb"),
  29842. name: "Back",
  29843. image: {
  29844. source: "./media/characters/sapphire-svell/back.svg",
  29845. extra: 497 / 477,
  29846. bottom: 7 / 504
  29847. }
  29848. },
  29849. maw: {
  29850. height: math.unit(1.57, "feet"),
  29851. name: "Maw",
  29852. image: {
  29853. source: "./media/characters/sapphire-svell/maw.svg"
  29854. }
  29855. },
  29856. foot: {
  29857. height: math.unit(1.07, "feet"),
  29858. name: "Foot",
  29859. image: {
  29860. source: "./media/characters/sapphire-svell/foot.svg"
  29861. }
  29862. },
  29863. toering: {
  29864. height: math.unit(1.7, "inch"),
  29865. name: "Toering",
  29866. image: {
  29867. source: "./media/characters/sapphire-svell/toering.svg"
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Normal",
  29874. height: math.unit(300, "feet"),
  29875. default: true
  29876. },
  29877. {
  29878. name: "Augmented",
  29879. height: math.unit(1250, "feet")
  29880. },
  29881. {
  29882. name: "Unleashed",
  29883. height: math.unit(3000, "feet")
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29889. {
  29890. side: {
  29891. height: math.unit(2 + 3 / 12, "feet"),
  29892. weight: math.unit(110, "lb"),
  29893. name: "Side",
  29894. image: {
  29895. source: "./media/characters/glitch-flux/side.svg",
  29896. extra: 997 / 805,
  29897. bottom: 20 / 1017
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(2 + 3 / 12, "feet"),
  29905. default: true
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29911. {
  29912. front: {
  29913. height: math.unit(4, "meters"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/mid/front.svg",
  29917. extra: 507 / 476,
  29918. bottom: 17 / 524
  29919. }
  29920. },
  29921. back: {
  29922. height: math.unit(4, "meters"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/mid/back.svg",
  29926. extra: 519 / 487,
  29927. bottom: 7 / 526
  29928. }
  29929. },
  29930. stuck: {
  29931. height: math.unit(2.2, "meters"),
  29932. name: "Stuck",
  29933. image: {
  29934. source: "./media/characters/mid/stuck.svg",
  29935. extra: 1951 / 1869,
  29936. bottom: 88 / 2039
  29937. }
  29938. }
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(4, "meters"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Big",
  29948. height: math.unit(10, "meters")
  29949. },
  29950. {
  29951. name: "Macro",
  29952. height: math.unit(800, "meters")
  29953. },
  29954. {
  29955. name: "Megamacro",
  29956. height: math.unit(100, "km")
  29957. },
  29958. {
  29959. name: "Overgrown",
  29960. height: math.unit(1, "parsec")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(2.5, "meters"),
  29969. weight: math.unit(225, "kg"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/iris/front.svg",
  29973. extra: 3348 / 3251,
  29974. bottom: 205 / 3553
  29975. }
  29976. },
  29977. maw: {
  29978. height: math.unit(0.56, "meter"),
  29979. name: "Maw",
  29980. image: {
  29981. source: "./media/characters/iris/maw.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Mewter cat",
  29988. height: math.unit(1.2, "meters")
  29989. },
  29990. {
  29991. name: "Minimacro",
  29992. height: math.unit(2.5, "meters"),
  29993. default: true
  29994. },
  29995. {
  29996. name: "Macro",
  29997. height: math.unit(180, "meters")
  29998. },
  29999. {
  30000. name: "Megamacro",
  30001. height: math.unit(2746, "meters")
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30007. {
  30008. front: {
  30009. height: math.unit(6, "feet"),
  30010. weight: math.unit(135, "lb"),
  30011. name: "Front",
  30012. image: {
  30013. source: "./media/characters/axel/front.svg",
  30014. extra: 908 / 908,
  30015. bottom: 58 / 966
  30016. }
  30017. },
  30018. side: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(135, "lb"),
  30021. name: "Side",
  30022. image: {
  30023. source: "./media/characters/axel/side.svg",
  30024. extra: 958 / 958,
  30025. bottom: 11 / 969
  30026. }
  30027. },
  30028. back: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(135, "lb"),
  30031. name: "Back",
  30032. image: {
  30033. source: "./media/characters/axel/back.svg",
  30034. extra: 887 / 887,
  30035. bottom: 34 / 921
  30036. }
  30037. },
  30038. head: {
  30039. height: math.unit(1.07, "feet"),
  30040. name: "Head",
  30041. image: {
  30042. source: "./media/characters/axel/head.svg"
  30043. }
  30044. },
  30045. beak: {
  30046. height: math.unit(1.4, "feet"),
  30047. name: "Beak",
  30048. image: {
  30049. source: "./media/characters/axel/beak.svg"
  30050. }
  30051. },
  30052. beakSide: {
  30053. height: math.unit(1.4, "feet"),
  30054. name: "Beak Side",
  30055. image: {
  30056. source: "./media/characters/axel/beak-side.svg"
  30057. }
  30058. },
  30059. sheath: {
  30060. height: math.unit(0.5, "feet"),
  30061. name: "Sheath",
  30062. image: {
  30063. source: "./media/characters/axel/sheath.svg"
  30064. }
  30065. },
  30066. dick: {
  30067. height: math.unit(0.98, "feet"),
  30068. name: "Dick",
  30069. image: {
  30070. source: "./media/characters/axel/dick.svg"
  30071. }
  30072. },
  30073. },
  30074. [
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(68, "meters"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(3.5, "meters"),
  30087. weight: math.unit(1200, "kg"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/joanna/front.svg",
  30091. extra: 1596 / 1488,
  30092. bottom: 29 / 1625
  30093. }
  30094. },
  30095. back: {
  30096. height: math.unit(3.5, "meters"),
  30097. weight: math.unit(1200, "kg"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/joanna/back.svg",
  30101. extra: 1594 / 1495,
  30102. bottom: 26 / 1620
  30103. }
  30104. },
  30105. frontShorts: {
  30106. height: math.unit(3.5, "meters"),
  30107. weight: math.unit(1200, "kg"),
  30108. name: "Front (Shorts)",
  30109. image: {
  30110. source: "./media/characters/joanna/front-shorts.svg",
  30111. extra: 1596 / 1488,
  30112. bottom: 29 / 1625
  30113. }
  30114. },
  30115. frontBiker: {
  30116. height: math.unit(3.5, "meters"),
  30117. weight: math.unit(1200, "kg"),
  30118. name: "Front (Biker)",
  30119. image: {
  30120. source: "./media/characters/joanna/front-biker.svg",
  30121. extra: 1596 / 1488,
  30122. bottom: 29 / 1625
  30123. }
  30124. },
  30125. backBiker: {
  30126. height: math.unit(3.5, "meters"),
  30127. weight: math.unit(1200, "kg"),
  30128. name: "Back (Biker)",
  30129. image: {
  30130. source: "./media/characters/joanna/back-biker.svg",
  30131. extra: 1594 / 1495,
  30132. bottom: 88 / 1682
  30133. }
  30134. },
  30135. bikeLeft: {
  30136. height: math.unit(2.4, "meters"),
  30137. weight: math.unit(1600, "kg"),
  30138. name: "Bike (Left)",
  30139. image: {
  30140. source: "./media/characters/joanna/bike-left.svg",
  30141. extra: 720 / 720,
  30142. bottom: 8 / 728
  30143. }
  30144. },
  30145. bikeRight: {
  30146. height: math.unit(2.4, "meters"),
  30147. weight: math.unit(1600, "kg"),
  30148. name: "Bike (Right)",
  30149. image: {
  30150. source: "./media/characters/joanna/bike-right.svg",
  30151. extra: 720 / 720,
  30152. bottom: 8 / 728
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Incognito",
  30159. height: math.unit(3.5, "meters")
  30160. },
  30161. {
  30162. name: "Casual Big",
  30163. height: math.unit(200, "meters")
  30164. },
  30165. {
  30166. name: "Macro",
  30167. height: math.unit(600, "meters")
  30168. },
  30169. {
  30170. name: "Original",
  30171. height: math.unit(20, "km"),
  30172. default: true
  30173. },
  30174. {
  30175. name: "Giga",
  30176. height: math.unit(400, "km")
  30177. },
  30178. {
  30179. name: "Lounging",
  30180. height: math.unit(1500, "km")
  30181. },
  30182. {
  30183. name: "Planetary",
  30184. height: math.unit(200000, "km")
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30190. {
  30191. front: {
  30192. height: math.unit(6, "feet"),
  30193. weight: math.unit(150, "lb"),
  30194. name: "Front",
  30195. image: {
  30196. source: "./media/characters/hugo-sigil/front.svg",
  30197. extra: 522 / 500,
  30198. bottom: 2 / 524
  30199. }
  30200. },
  30201. back: {
  30202. height: math.unit(6, "feet"),
  30203. weight: math.unit(150, "lb"),
  30204. name: "Back",
  30205. image: {
  30206. source: "./media/characters/hugo-sigil/back.svg",
  30207. extra: 519 / 495,
  30208. bottom: 5 / 524
  30209. }
  30210. },
  30211. maw: {
  30212. height: math.unit(1.4, "feet"),
  30213. weight: math.unit(150, "lb"),
  30214. name: "Maw",
  30215. image: {
  30216. source: "./media/characters/hugo-sigil/maw.svg"
  30217. }
  30218. },
  30219. feet: {
  30220. height: math.unit(1.56, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Feet",
  30223. image: {
  30224. source: "./media/characters/hugo-sigil/feet.svg",
  30225. extra: 177 / 177,
  30226. bottom: 12 / 189
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Normal",
  30233. height: math.unit(6, "feet")
  30234. },
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(200, "feet"),
  30238. default: true
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30244. {
  30245. front: {
  30246. height: math.unit(6, "feet"),
  30247. weight: math.unit(150, "lb"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/peri/front.svg",
  30251. extra: 2354 / 2233,
  30252. bottom: 49 / 2403
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Really Small",
  30259. height: math.unit(1, "nm")
  30260. },
  30261. {
  30262. name: "Micro",
  30263. height: math.unit(4, "inches")
  30264. },
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(7, "inches"),
  30268. default: true
  30269. },
  30270. {
  30271. name: "Macro",
  30272. height: math.unit(400, "feet")
  30273. },
  30274. {
  30275. name: "Megamacro",
  30276. height: math.unit(100, "miles")
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30282. {
  30283. frontSlim: {
  30284. height: math.unit(7, "feet"),
  30285. name: "Front (Slim)",
  30286. image: {
  30287. source: "./media/characters/issilora/front-slim.svg",
  30288. extra: 529 / 449,
  30289. bottom: 53 / 582
  30290. }
  30291. },
  30292. sideSlim: {
  30293. height: math.unit(7, "feet"),
  30294. name: "Side (Slim)",
  30295. image: {
  30296. source: "./media/characters/issilora/side-slim.svg",
  30297. extra: 570 / 480,
  30298. bottom: 30 / 600
  30299. }
  30300. },
  30301. backSlim: {
  30302. height: math.unit(7, "feet"),
  30303. name: "Back (Slim)",
  30304. image: {
  30305. source: "./media/characters/issilora/back-slim.svg",
  30306. extra: 537 / 455,
  30307. bottom: 46 / 583
  30308. }
  30309. },
  30310. frontBuff: {
  30311. height: math.unit(7, "feet"),
  30312. name: "Front (Buff)",
  30313. image: {
  30314. source: "./media/characters/issilora/front-buff.svg",
  30315. extra: 2310 / 2035,
  30316. bottom: 335 / 2645
  30317. }
  30318. },
  30319. head: {
  30320. height: math.unit(1.94, "feet"),
  30321. name: "Head",
  30322. image: {
  30323. source: "./media/characters/issilora/head.svg"
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Minimum",
  30330. height: math.unit(7, "feet")
  30331. },
  30332. {
  30333. name: "Comfortable",
  30334. height: math.unit(17, "feet")
  30335. },
  30336. {
  30337. name: "Fun Size",
  30338. height: math.unit(47, "feet")
  30339. },
  30340. {
  30341. name: "Natural Macro",
  30342. height: math.unit(137, "feet"),
  30343. default: true
  30344. },
  30345. {
  30346. name: "Maximum Kaiju",
  30347. height: math.unit(397, "feet")
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30353. {
  30354. front: {
  30355. height: math.unit(50 + 9/12, "feet"),
  30356. weight: math.unit(32.8, "tons"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/irb'iiritaahn/front.svg",
  30360. extra: 1878/1826,
  30361. bottom: 326/2204
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(50 + 9/12, "feet"),
  30366. weight: math.unit(32.8, "tons"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/irb'iiritaahn/back.svg",
  30370. extra: 2052/2018,
  30371. bottom: 152/2204
  30372. }
  30373. },
  30374. head: {
  30375. height: math.unit(12.86, "feet"),
  30376. name: "Head",
  30377. image: {
  30378. source: "./media/characters/irb'iiritaahn/head.svg"
  30379. }
  30380. },
  30381. maw: {
  30382. height: math.unit(9.66, "feet"),
  30383. name: "Maw",
  30384. image: {
  30385. source: "./media/characters/irb'iiritaahn/maw.svg"
  30386. }
  30387. },
  30388. frontDick: {
  30389. height: math.unit(8.78461, "feet"),
  30390. name: "Front Dick",
  30391. image: {
  30392. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30393. }
  30394. },
  30395. rearDick: {
  30396. height: math.unit(8.78461, "feet"),
  30397. name: "Rear Dick",
  30398. image: {
  30399. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30400. }
  30401. },
  30402. rearDickUnfolded: {
  30403. height: math.unit(8.78, "feet"),
  30404. name: "Rear Dick (Unfolded)",
  30405. image: {
  30406. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30407. }
  30408. },
  30409. wings: {
  30410. height: math.unit(43, "feet"),
  30411. name: "Wings",
  30412. image: {
  30413. source: "./media/characters/irb'iiritaahn/wings.svg"
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Macro",
  30420. height: math.unit(50 + 9/12, "feet"),
  30421. default: true
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30427. {
  30428. front: {
  30429. height: math.unit(205, "cm"),
  30430. weight: math.unit(102, "kg"),
  30431. name: "Front",
  30432. image: {
  30433. source: "./media/characters/irbisgreif/front.svg",
  30434. extra: 785/706,
  30435. bottom: 13/798
  30436. }
  30437. },
  30438. back: {
  30439. height: math.unit(205, "cm"),
  30440. weight: math.unit(102, "kg"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/irbisgreif/back.svg",
  30444. extra: 713/701,
  30445. bottom: 26/739
  30446. }
  30447. },
  30448. frontDressed: {
  30449. height: math.unit(216, "cm"),
  30450. weight: math.unit(102, "kg"),
  30451. name: "Front-dressed",
  30452. image: {
  30453. source: "./media/characters/irbisgreif/front-dressed.svg",
  30454. extra: 902/776,
  30455. bottom: 14/916
  30456. }
  30457. },
  30458. sideDressed: {
  30459. height: math.unit(195, "cm"),
  30460. weight: math.unit(102, "kg"),
  30461. name: "Side-dressed",
  30462. image: {
  30463. source: "./media/characters/irbisgreif/side-dressed.svg",
  30464. extra: 788/688,
  30465. bottom: 21/809
  30466. }
  30467. },
  30468. backDressed: {
  30469. height: math.unit(216, "cm"),
  30470. weight: math.unit(102, "kg"),
  30471. name: "Back-dressed",
  30472. image: {
  30473. source: "./media/characters/irbisgreif/back-dressed.svg",
  30474. extra: 901/783,
  30475. bottom: 10/911
  30476. }
  30477. },
  30478. dick: {
  30479. height: math.unit(0.49, "feet"),
  30480. name: "Dick",
  30481. image: {
  30482. source: "./media/characters/irbisgreif/dick.svg"
  30483. }
  30484. },
  30485. wingTop: {
  30486. height: math.unit(1.93 , "feet"),
  30487. name: "Wing-top",
  30488. image: {
  30489. source: "./media/characters/irbisgreif/wing-top.svg"
  30490. }
  30491. },
  30492. wingBottom: {
  30493. height: math.unit(1.93 , "feet"),
  30494. name: "Wing-bottom",
  30495. image: {
  30496. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(216, "cm"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(6, "feet"),
  30513. weight: math.unit(150, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/pride/front.svg",
  30517. extra: 1299/1230,
  30518. bottom: 18/1317
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(7, "feet")
  30526. },
  30527. {
  30528. name: "Mini-macro",
  30529. height: math.unit(11, "feet")
  30530. },
  30531. {
  30532. name: "Macro",
  30533. height: math.unit(15, "meters"),
  30534. default: true
  30535. },
  30536. {
  30537. name: "Macro+",
  30538. height: math.unit(40, "meters")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30544. {
  30545. front: {
  30546. height: math.unit(4 + 2 / 12, "feet"),
  30547. weight: math.unit(95, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/vaelophis-nyx/front.svg",
  30551. extra: 2532/2330,
  30552. bottom: 0/2532
  30553. }
  30554. },
  30555. back: {
  30556. height: math.unit(4 + 2 / 12, "feet"),
  30557. weight: math.unit(95, "lb"),
  30558. name: "Back",
  30559. image: {
  30560. source: "./media/characters/vaelophis-nyx/back.svg",
  30561. extra: 2484/2361,
  30562. bottom: 0/2484
  30563. }
  30564. },
  30565. feralSide: {
  30566. height: math.unit(2 + 1/12, "feet"),
  30567. weight: math.unit(20, "lb"),
  30568. name: "Feral (Side)",
  30569. image: {
  30570. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30571. extra: 1721/1581,
  30572. bottom: 70/1791
  30573. }
  30574. },
  30575. feralLazing: {
  30576. height: math.unit(1.08, "feet"),
  30577. weight: math.unit(20, "lb"),
  30578. name: "Feral (Lazing)",
  30579. image: {
  30580. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30581. extra: 822/822,
  30582. bottom: 248/1070
  30583. }
  30584. },
  30585. ear: {
  30586. height: math.unit(0.416, "feet"),
  30587. name: "Ear",
  30588. image: {
  30589. source: "./media/characters/vaelophis-nyx/ear.svg"
  30590. }
  30591. },
  30592. eye: {
  30593. height: math.unit(0.0748, "feet"),
  30594. name: "Eye",
  30595. image: {
  30596. source: "./media/characters/vaelophis-nyx/eye.svg"
  30597. }
  30598. },
  30599. mouth: {
  30600. height: math.unit(0.378, "feet"),
  30601. name: "Mouth",
  30602. image: {
  30603. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30604. }
  30605. },
  30606. spade: {
  30607. height: math.unit(0.55, "feet"),
  30608. name: "Spade",
  30609. image: {
  30610. source: "./media/characters/vaelophis-nyx/spade.svg"
  30611. }
  30612. },
  30613. },
  30614. [
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(4 + 2/12, "feet"),
  30618. default: true
  30619. },
  30620. ]
  30621. ))
  30622. characterMakers.push(() => makeCharacter(
  30623. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30624. {
  30625. front: {
  30626. height: math.unit(7, "feet"),
  30627. weight: math.unit(231, "lb"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/flux/front.svg",
  30631. extra: 919/871,
  30632. bottom: 0/919
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(7, "feet"),
  30637. weight: math.unit(231, "lb"),
  30638. name: "Back",
  30639. image: {
  30640. source: "./media/characters/flux/back.svg",
  30641. extra: 1040/992,
  30642. bottom: 0/1040
  30643. }
  30644. },
  30645. frontDressed: {
  30646. height: math.unit(7, "feet"),
  30647. weight: math.unit(231, "lb"),
  30648. name: "Front (Dressed)",
  30649. image: {
  30650. source: "./media/characters/flux/front-dressed.svg",
  30651. extra: 919/871,
  30652. bottom: 0/919
  30653. }
  30654. },
  30655. feralSide: {
  30656. height: math.unit(5, "feet"),
  30657. weight: math.unit(150, "lb"),
  30658. name: "Feral (Side)",
  30659. image: {
  30660. source: "./media/characters/flux/feral-side.svg",
  30661. extra: 598/528,
  30662. bottom: 28/626
  30663. }
  30664. },
  30665. head: {
  30666. height: math.unit(1.585, "feet"),
  30667. name: "Head",
  30668. image: {
  30669. source: "./media/characters/flux/head.svg"
  30670. }
  30671. },
  30672. headSide: {
  30673. height: math.unit(1.74, "feet"),
  30674. name: "Head (Side)",
  30675. image: {
  30676. source: "./media/characters/flux/head-side.svg"
  30677. }
  30678. },
  30679. headSideFire: {
  30680. height: math.unit(1.76, "feet"),
  30681. name: "Head (Side, Fire)",
  30682. image: {
  30683. source: "./media/characters/flux/head-side-fire.svg"
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Normal",
  30690. height: math.unit(7, "feet"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(9, "feet"),
  30700. weight: math.unit(1012, "lb"),
  30701. name: "Front",
  30702. image: {
  30703. source: "./media/characters/ulfra-lupae/front.svg",
  30704. extra: 1083/1011,
  30705. bottom: 67/1150
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Micro",
  30712. height: math.unit(6, "inches")
  30713. },
  30714. {
  30715. name: "Socializing",
  30716. height: math.unit(6 + 5/12, "feet")
  30717. },
  30718. {
  30719. name: "Normal",
  30720. height: math.unit(9, "feet"),
  30721. default: true
  30722. },
  30723. {
  30724. name: "Macro",
  30725. height: math.unit(150, "feet")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(5 + 2/12, "feet"),
  30734. weight: math.unit(120, "lb"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/timber/front.svg",
  30738. extra: 2814/2705,
  30739. bottom: 181/2995
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(5 + 2/12, "feet"),
  30747. default: true
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(5 + 7/12, "feet"),
  30756. weight: math.unit(220, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/nicki/front.svg",
  30760. extra: 453/419,
  30761. bottom: 7/460
  30762. }
  30763. },
  30764. frontAlt: {
  30765. height: math.unit(5 + 7/12, "feet"),
  30766. weight: math.unit(220, "lb"),
  30767. name: "Front-alt",
  30768. image: {
  30769. source: "./media/characters/nicki/front-alt.svg",
  30770. extra: 435/411,
  30771. bottom: 12/447
  30772. }
  30773. },
  30774. back: {
  30775. height: math.unit(5 + 7/12, "feet"),
  30776. weight: math.unit(220, "lb"),
  30777. name: "Back",
  30778. image: {
  30779. source: "./media/characters/nicki/back.svg",
  30780. extra: 440/413,
  30781. bottom: 19/459
  30782. }
  30783. },
  30784. taur: {
  30785. height: math.unit(7 + 6/12, "feet"),
  30786. weight: math.unit(700, "lb"),
  30787. name: "Taur",
  30788. image: {
  30789. source: "./media/characters/nicki/taur.svg",
  30790. extra: 975/773,
  30791. bottom: 0/975
  30792. }
  30793. },
  30794. frontNsfw: {
  30795. height: math.unit(5 + 7/12, "feet"),
  30796. weight: math.unit(220, "lb"),
  30797. name: "Front (NSFW)",
  30798. image: {
  30799. source: "./media/characters/nicki/front-nsfw.svg",
  30800. extra: 453/419,
  30801. bottom: 7/460
  30802. }
  30803. },
  30804. frontNsfwAlt: {
  30805. height: math.unit(5 + 7/12, "feet"),
  30806. weight: math.unit(220, "lb"),
  30807. name: "Front (Alt, NSFW)",
  30808. image: {
  30809. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30810. extra: 435/411,
  30811. bottom: 12/447
  30812. }
  30813. },
  30814. backNsfw: {
  30815. height: math.unit(5 + 7/12, "feet"),
  30816. weight: math.unit(220, "lb"),
  30817. name: "Back (NSFW)",
  30818. image: {
  30819. source: "./media/characters/nicki/back-nsfw.svg",
  30820. extra: 440/413,
  30821. bottom: 19/459
  30822. }
  30823. },
  30824. head: {
  30825. height: math.unit(2.1, "feet"),
  30826. name: "Head",
  30827. image: {
  30828. source: "./media/characters/nicki/head.svg"
  30829. }
  30830. },
  30831. paw: {
  30832. height: math.unit(1.88, "feet"),
  30833. name: "Paw",
  30834. image: {
  30835. source: "./media/characters/nicki/paw.svg"
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(5 + 7/12, "feet"),
  30843. default: true
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30849. {
  30850. front: {
  30851. height: math.unit(7 + 10/12, "feet"),
  30852. weight: math.unit(3.5, "tons"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/lee/front.svg",
  30856. extra: 1773/1615,
  30857. bottom: 86/1859
  30858. }
  30859. },
  30860. hand: {
  30861. height: math.unit(1.78, "feet"),
  30862. name: "Hand",
  30863. image: {
  30864. source: "./media/characters/lee/hand.svg"
  30865. }
  30866. },
  30867. maw: {
  30868. height: math.unit(1.18, "feet"),
  30869. name: "Maw",
  30870. image: {
  30871. source: "./media/characters/lee/maw.svg"
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(7 + 10/12, "feet"),
  30879. default: true
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30885. {
  30886. front: {
  30887. height: math.unit(9, "feet"),
  30888. name: "Front",
  30889. image: {
  30890. source: "./media/characters/guti/front.svg",
  30891. extra: 4551/4355,
  30892. bottom: 123/4674
  30893. }
  30894. },
  30895. tongue: {
  30896. height: math.unit(1, "feet"),
  30897. name: "Tongue",
  30898. image: {
  30899. source: "./media/characters/guti/tongue.svg"
  30900. }
  30901. },
  30902. paw: {
  30903. height: math.unit(1.18, "feet"),
  30904. name: "Paw",
  30905. image: {
  30906. source: "./media/characters/guti/paw.svg"
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(9, "feet"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30920. {
  30921. side: {
  30922. height: math.unit(5, "meters"),
  30923. name: "Side",
  30924. image: {
  30925. source: "./media/characters/vesper/side.svg",
  30926. extra: 1605/1518,
  30927. bottom: 0/1605
  30928. }
  30929. },
  30930. },
  30931. [
  30932. {
  30933. name: "Small",
  30934. height: math.unit(5, "meters")
  30935. },
  30936. {
  30937. name: "Sage",
  30938. height: math.unit(100, "meters"),
  30939. default: true
  30940. },
  30941. {
  30942. name: "Fun Size",
  30943. height: math.unit(600, "meters")
  30944. },
  30945. {
  30946. name: "Goddess",
  30947. height: math.unit(20000, "km")
  30948. },
  30949. {
  30950. name: "Maximum",
  30951. height: math.unit(5, "galaxies")
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(6 + 3/12, "feet"),
  30960. weight: math.unit(190, "lb"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/gawain/front.svg",
  30964. extra: 2222/2139,
  30965. bottom: 90/2312
  30966. }
  30967. },
  30968. back: {
  30969. height: math.unit(6 + 3/12, "feet"),
  30970. weight: math.unit(190, "lb"),
  30971. name: "Back",
  30972. image: {
  30973. source: "./media/characters/gawain/back.svg",
  30974. extra: 2199/2111,
  30975. bottom: 73/2272
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(6 + 3/12, "feet"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30989. {
  30990. side: {
  30991. height: math.unit(3.5, "meters"),
  30992. weight: math.unit(16000, "lb"),
  30993. name: "Side",
  30994. image: {
  30995. source: "./media/characters/dascalti/side.svg",
  30996. extra: 392/273,
  30997. bottom: 47/439
  30998. }
  30999. },
  31000. breath: {
  31001. height: math.unit(7.4, "feet"),
  31002. name: "Breath",
  31003. image: {
  31004. source: "./media/characters/dascalti/breath.svg"
  31005. }
  31006. },
  31007. fed: {
  31008. height: math.unit(3.6, "meters"),
  31009. weight: math.unit(16000, "lb"),
  31010. name: "Fed",
  31011. image: {
  31012. source: "./media/characters/dascalti/fed.svg",
  31013. extra: 1419/820,
  31014. bottom: 95/1514
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Normal",
  31021. height: math.unit(3.5, "meters"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(3 + 5/12, "feet"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/mauve/front.svg",
  31034. extra: 1126/1033,
  31035. bottom: 65/1191
  31036. }
  31037. },
  31038. side: {
  31039. height: math.unit(3 + 5/12, "feet"),
  31040. name: "Side",
  31041. image: {
  31042. source: "./media/characters/mauve/side.svg",
  31043. extra: 1089/1001,
  31044. bottom: 29/1118
  31045. }
  31046. },
  31047. back: {
  31048. height: math.unit(3 + 5/12, "feet"),
  31049. name: "Back",
  31050. image: {
  31051. source: "./media/characters/mauve/back.svg",
  31052. extra: 1173/1053,
  31053. bottom: 109/1282
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(3 + 5/12, "feet"),
  31061. default: true
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(6 + 3/12, "feet"),
  31070. weight: math.unit(430, "lb"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/carlos/front.svg",
  31074. extra: 1964/1913,
  31075. bottom: 70/2034
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Normal",
  31082. height: math.unit(6 + 3/12, "feet"),
  31083. default: true
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31089. {
  31090. back: {
  31091. height: math.unit(5 + 10/12, "feet"),
  31092. weight: math.unit(200, "lb"),
  31093. name: "Back",
  31094. image: {
  31095. source: "./media/characters/jax/back.svg",
  31096. extra: 764/739,
  31097. bottom: 25/789
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(5 + 10/12, "feet"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(8, "feet"),
  31114. weight: math.unit(250, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/eikthynir/front.svg",
  31118. extra: 1332/1166,
  31119. bottom: 82/1414
  31120. }
  31121. },
  31122. back: {
  31123. height: math.unit(8, "feet"),
  31124. weight: math.unit(250, "lb"),
  31125. name: "Back",
  31126. image: {
  31127. source: "./media/characters/eikthynir/back.svg",
  31128. extra: 1342/1190,
  31129. bottom: 19/1361
  31130. }
  31131. },
  31132. dick: {
  31133. height: math.unit(2.35, "feet"),
  31134. name: "Dick",
  31135. image: {
  31136. source: "./media/characters/eikthynir/dick.svg"
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(8, "feet"),
  31144. default: true
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(99, "meters"),
  31153. weight: math.unit(13000, "tons"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/zlmos/front.svg",
  31157. extra: 2202/1992,
  31158. bottom: 315/2517
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(99, "meters"),
  31166. default: true
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(6 + 5/12, "feet"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/purri/front.svg",
  31178. extra: 1698/1610,
  31179. bottom: 32/1730
  31180. }
  31181. },
  31182. frontAlt: {
  31183. height: math.unit(6 + 5/12, "feet"),
  31184. name: "Front (Alt)",
  31185. image: {
  31186. source: "./media/characters/purri/front-alt.svg",
  31187. extra: 450/420,
  31188. bottom: 26/476
  31189. }
  31190. },
  31191. boots: {
  31192. height: math.unit(5.5, "feet"),
  31193. name: "Boots",
  31194. image: {
  31195. source: "./media/characters/purri/boots.svg",
  31196. extra: 905/853,
  31197. bottom: 18/923
  31198. }
  31199. },
  31200. lying: {
  31201. height: math.unit(2, "feet"),
  31202. name: "Lying",
  31203. image: {
  31204. source: "./media/characters/purri/lying.svg",
  31205. extra: 940/843,
  31206. bottom: 146/1086
  31207. }
  31208. },
  31209. devious: {
  31210. height: math.unit(1.77, "feet"),
  31211. name: "Devious",
  31212. image: {
  31213. source: "./media/characters/purri/devious.svg",
  31214. extra: 1440/1155,
  31215. bottom: 147/1587
  31216. }
  31217. },
  31218. bean: {
  31219. height: math.unit(1.94, "feet"),
  31220. name: "Bean",
  31221. image: {
  31222. source: "./media/characters/purri/bean.svg"
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Micro",
  31229. height: math.unit(1, "mm")
  31230. },
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(6 + 5/12, "feet"),
  31234. default: true
  31235. },
  31236. {
  31237. name: "Macro :3c",
  31238. height: math.unit(2, "miles")
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6 + 2/12, "feet"),
  31247. weight: math.unit(250, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/moonlight/front.svg",
  31251. extra: 1044/908,
  31252. bottom: 56/1100
  31253. }
  31254. },
  31255. feral: {
  31256. height: math.unit(3 + 1/12, "feet"),
  31257. weight: math.unit(50, "kg"),
  31258. name: "Feral",
  31259. image: {
  31260. source: "./media/characters/moonlight/feral.svg",
  31261. extra: 3705/2791,
  31262. bottom: 145/3850
  31263. }
  31264. },
  31265. paw: {
  31266. height: math.unit(1, "feet"),
  31267. name: "Paw",
  31268. image: {
  31269. source: "./media/characters/moonlight/paw.svg"
  31270. }
  31271. },
  31272. paws: {
  31273. height: math.unit(0.98, "feet"),
  31274. name: "Paws",
  31275. image: {
  31276. source: "./media/characters/moonlight/paws.svg",
  31277. extra: 939/939,
  31278. bottom: 50/989
  31279. }
  31280. },
  31281. mouth: {
  31282. height: math.unit(0.48, "feet"),
  31283. name: "Mouth",
  31284. image: {
  31285. source: "./media/characters/moonlight/mouth.svg"
  31286. }
  31287. },
  31288. dick: {
  31289. height: math.unit(1.46, "feet"),
  31290. name: "Dick",
  31291. image: {
  31292. source: "./media/characters/moonlight/dick.svg"
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Normal",
  31299. height: math.unit(6 + 2/12, "feet"),
  31300. default: true
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(300, "feet")
  31305. },
  31306. {
  31307. name: "Macro+",
  31308. height: math.unit(1, "mile")
  31309. },
  31310. {
  31311. name: "Mt. Moon",
  31312. height: math.unit(5, "miles")
  31313. },
  31314. {
  31315. name: "Megamacro",
  31316. height: math.unit(15, "miles")
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31322. {
  31323. back: {
  31324. height: math.unit(6, "feet"),
  31325. weight: math.unit(150, "lb"),
  31326. name: "Back",
  31327. image: {
  31328. source: "./media/characters/sylen/back.svg",
  31329. extra: 1335/1273,
  31330. bottom: 107/1442
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Normal",
  31337. height: math.unit(5 + 5/12, "feet")
  31338. },
  31339. {
  31340. name: "Megamacro",
  31341. height: math.unit(3, "miles"),
  31342. default: true
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(6, "feet"),
  31351. weight: math.unit(190, "lb"),
  31352. name: "Front",
  31353. image: {
  31354. source: "./media/characters/huttser/front.svg",
  31355. extra: 1152/1058,
  31356. bottom: 23/1175
  31357. }
  31358. },
  31359. side: {
  31360. height: math.unit(6, "feet"),
  31361. weight: math.unit(190, "lb"),
  31362. name: "Side",
  31363. image: {
  31364. source: "./media/characters/huttser/side.svg",
  31365. extra: 1174/1065,
  31366. bottom: 18/1192
  31367. }
  31368. },
  31369. back: {
  31370. height: math.unit(6, "feet"),
  31371. weight: math.unit(190, "lb"),
  31372. name: "Back",
  31373. image: {
  31374. source: "./media/characters/huttser/back.svg",
  31375. extra: 1158/1056,
  31376. bottom: 12/1170
  31377. }
  31378. },
  31379. },
  31380. [
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31385. {
  31386. side: {
  31387. height: math.unit(12 + 9/12, "feet"),
  31388. weight: math.unit(15000, "lb"),
  31389. name: "Side",
  31390. image: {
  31391. source: "./media/characters/faan/side.svg",
  31392. extra: 2747/2697,
  31393. bottom: 0/2747
  31394. }
  31395. },
  31396. front: {
  31397. height: math.unit(12 + 9/12, "feet"),
  31398. weight: math.unit(15000, "lb"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/faan/front.svg",
  31402. extra: 607/571,
  31403. bottom: 24/631
  31404. }
  31405. },
  31406. head: {
  31407. height: math.unit(2.85, "feet"),
  31408. name: "Head",
  31409. image: {
  31410. source: "./media/characters/faan/head.svg"
  31411. }
  31412. },
  31413. headAlt: {
  31414. height: math.unit(3.13, "feet"),
  31415. name: "Head-alt",
  31416. image: {
  31417. source: "./media/characters/faan/head-alt.svg"
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(12 + 9/12, "feet"),
  31425. default: true
  31426. },
  31427. ]
  31428. ))
  31429. characterMakers.push(() => makeCharacter(
  31430. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31431. {
  31432. front: {
  31433. height: math.unit(6, "feet"),
  31434. weight: math.unit(300, "lb"),
  31435. name: "Front",
  31436. image: {
  31437. source: "./media/characters/tanio/front.svg",
  31438. extra: 711/673,
  31439. bottom: 25/736
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(6, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(3, "inches"),
  31456. name: "Front",
  31457. image: {
  31458. source: "./media/characters/noboru/front.svg",
  31459. extra: 1039/932,
  31460. bottom: 18/1057
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Micro",
  31467. height: math.unit(3, "inches"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(1.85, "meters"),
  31477. weight: math.unit(80, "kg"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/daniel-barrett/front.svg",
  31481. extra: 355/337,
  31482. bottom: 9/364
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Pico",
  31489. height: math.unit(0.0433, "mm")
  31490. },
  31491. {
  31492. name: "Nano",
  31493. height: math.unit(1.5, "mm")
  31494. },
  31495. {
  31496. name: "Micro",
  31497. height: math.unit(5.3, "cm"),
  31498. default: true
  31499. },
  31500. {
  31501. name: "Normal",
  31502. height: math.unit(1.85, "meters")
  31503. },
  31504. {
  31505. name: "Macro",
  31506. height: math.unit(64.7, "meters")
  31507. },
  31508. {
  31509. name: "Megamacro",
  31510. height: math.unit(2.26, "km")
  31511. },
  31512. {
  31513. name: "Gigamacro",
  31514. height: math.unit(79, "km")
  31515. },
  31516. {
  31517. name: "Teramacro",
  31518. height: math.unit(2765, "km")
  31519. },
  31520. {
  31521. name: "Petamacro",
  31522. height: math.unit(96678, "km")
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(30, "meters"),
  31531. weight: math.unit(400, "tons"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/zeel/front.svg",
  31535. extra: 2599/2599,
  31536. bottom: 226/2825
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Macro",
  31543. height: math.unit(30, "meters"),
  31544. default: true
  31545. },
  31546. ]
  31547. ))
  31548. characterMakers.push(() => makeCharacter(
  31549. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31550. {
  31551. front: {
  31552. height: math.unit(6 + 7/12, "feet"),
  31553. weight: math.unit(210, "lb"),
  31554. name: "Front",
  31555. image: {
  31556. source: "./media/characters/tarn/front.svg",
  31557. extra: 3517/3220,
  31558. bottom: 91/3608
  31559. }
  31560. },
  31561. back: {
  31562. height: math.unit(6 + 7/12, "feet"),
  31563. weight: math.unit(210, "lb"),
  31564. name: "Back",
  31565. image: {
  31566. source: "./media/characters/tarn/back.svg",
  31567. extra: 3566/3241,
  31568. bottom: 34/3600
  31569. }
  31570. },
  31571. dick: {
  31572. height: math.unit(1.65, "feet"),
  31573. name: "Dick",
  31574. image: {
  31575. source: "./media/characters/tarn/dick.svg"
  31576. }
  31577. },
  31578. paw: {
  31579. height: math.unit(1.80, "feet"),
  31580. name: "Paw",
  31581. image: {
  31582. source: "./media/characters/tarn/paw.svg"
  31583. }
  31584. },
  31585. tongue: {
  31586. height: math.unit(0.97, "feet"),
  31587. name: "Tongue",
  31588. image: {
  31589. source: "./media/characters/tarn/tongue.svg"
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Micro",
  31596. height: math.unit(4, "inches")
  31597. },
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(6 + 7/12, "feet"),
  31601. default: true
  31602. },
  31603. {
  31604. name: "Macro",
  31605. height: math.unit(300, "feet")
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(5 + 7/12, "feet"),
  31614. weight: math.unit(80, "kg"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31618. extra: 3023/2865,
  31619. bottom: 33/3056
  31620. }
  31621. },
  31622. back: {
  31623. height: math.unit(5 + 7/12, "feet"),
  31624. weight: math.unit(80, "kg"),
  31625. name: "Back",
  31626. image: {
  31627. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31628. extra: 3020/2886,
  31629. bottom: 30/3050
  31630. }
  31631. },
  31632. dick: {
  31633. height: math.unit(0.98, "feet"),
  31634. name: "Dick",
  31635. image: {
  31636. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31637. }
  31638. },
  31639. anatomy: {
  31640. height: math.unit(2.86, "feet"),
  31641. name: "Anatomy",
  31642. image: {
  31643. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Really Small",
  31650. height: math.unit(2, "inches")
  31651. },
  31652. {
  31653. name: "Micro",
  31654. height: math.unit(5.583, "inches")
  31655. },
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(5 + 7/12, "feet"),
  31659. default: true
  31660. },
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(67, "feet")
  31664. },
  31665. {
  31666. name: "Megamacro",
  31667. height: math.unit(134, "feet")
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31673. {
  31674. front: {
  31675. height: math.unit(9, "feet"),
  31676. weight: math.unit(120, "lb"),
  31677. name: "Front",
  31678. image: {
  31679. source: "./media/characters/sally/front.svg",
  31680. extra: 1506/1349,
  31681. bottom: 66/1572
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(9, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(8, "feet"),
  31698. weight: math.unit(900, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/owen/front.svg",
  31702. extra: 1761/1657,
  31703. bottom: 74/1835
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(8, "feet"),
  31708. weight: math.unit(900, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/owen/side.svg",
  31712. extra: 1797/1734,
  31713. bottom: 30/1827
  31714. }
  31715. },
  31716. back: {
  31717. height: math.unit(8, "feet"),
  31718. weight: math.unit(900, "lb"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/owen/back.svg",
  31722. extra: 1796/1706,
  31723. bottom: 59/1855
  31724. }
  31725. },
  31726. maw: {
  31727. height: math.unit(1.76, "feet"),
  31728. name: "Maw",
  31729. image: {
  31730. source: "./media/characters/owen/maw.svg"
  31731. }
  31732. },
  31733. },
  31734. [
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(8, "feet"),
  31738. default: true
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31744. {
  31745. front: {
  31746. height: math.unit(4, "feet"),
  31747. weight: math.unit(400, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/ryth/front.svg",
  31751. extra: 1920/1748,
  31752. bottom: 42/1962
  31753. }
  31754. },
  31755. back: {
  31756. height: math.unit(4, "feet"),
  31757. weight: math.unit(400, "lb"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/ryth/back.svg",
  31761. extra: 1897/1690,
  31762. bottom: 89/1986
  31763. }
  31764. },
  31765. mouth: {
  31766. height: math.unit(1.39, "feet"),
  31767. name: "Mouth",
  31768. image: {
  31769. source: "./media/characters/ryth/mouth.svg"
  31770. }
  31771. },
  31772. tailmaw: {
  31773. height: math.unit(1.23, "feet"),
  31774. name: "Tailmaw",
  31775. image: {
  31776. source: "./media/characters/ryth/tailmaw.svg"
  31777. }
  31778. },
  31779. goia: {
  31780. height: math.unit(12, "feet"),
  31781. weight: math.unit(10800, "lb"),
  31782. name: "Goia",
  31783. image: {
  31784. source: "./media/characters/ryth/goia.svg",
  31785. extra: 3450/3198,
  31786. bottom: 61/3511
  31787. }
  31788. },
  31789. },
  31790. [
  31791. {
  31792. name: "Normal",
  31793. height: math.unit(4, "feet"),
  31794. default: true
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31800. {
  31801. front: {
  31802. height: math.unit(7, "feet"),
  31803. weight: math.unit(180, "lb"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/necrolance/front.svg",
  31807. extra: 1062/947,
  31808. bottom: 41/1103
  31809. }
  31810. },
  31811. back: {
  31812. height: math.unit(7, "feet"),
  31813. weight: math.unit(180, "lb"),
  31814. name: "Back",
  31815. image: {
  31816. source: "./media/characters/necrolance/back.svg",
  31817. extra: 1045/984,
  31818. bottom: 14/1059
  31819. }
  31820. },
  31821. wing: {
  31822. height: math.unit(2.67, "feet"),
  31823. name: "Wing",
  31824. image: {
  31825. source: "./media/characters/necrolance/wing.svg"
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(7, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31839. {
  31840. front: {
  31841. height: math.unit(76, "meters"),
  31842. weight: math.unit(30000, "tons"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/tyler/front.svg",
  31846. extra: 1640/1640,
  31847. bottom: 114/1754
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Macro",
  31854. height: math.unit(76, "meters"),
  31855. default: true
  31856. },
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31861. {
  31862. front: {
  31863. height: math.unit(4 + 11/12, "feet"),
  31864. weight: math.unit(132, "lb"),
  31865. name: "Front",
  31866. image: {
  31867. source: "./media/characters/icey/front.svg",
  31868. extra: 2750/2550,
  31869. bottom: 33/2783
  31870. }
  31871. },
  31872. back: {
  31873. height: math.unit(4 + 11/12, "feet"),
  31874. weight: math.unit(132, "lb"),
  31875. name: "Back",
  31876. image: {
  31877. source: "./media/characters/icey/back.svg",
  31878. extra: 2624/2481,
  31879. bottom: 35/2659
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(4 + 11/12, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(100, "feet"),
  31896. weight: math.unit(0, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/smile/front.svg",
  31900. extra: 2983/2912,
  31901. bottom: 162/3145
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(100, "feet"),
  31906. weight: math.unit(0, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/smile/back.svg",
  31910. extra: 3143/3031,
  31911. bottom: 91/3234
  31912. }
  31913. },
  31914. head: {
  31915. height: math.unit(26.3, "feet"),
  31916. weight: math.unit(0, "lb"),
  31917. name: "Head",
  31918. image: {
  31919. source: "./media/characters/smile/head.svg"
  31920. }
  31921. },
  31922. collar: {
  31923. height: math.unit(5.3, "feet"),
  31924. weight: math.unit(0, "lb"),
  31925. name: "Collar",
  31926. image: {
  31927. source: "./media/characters/smile/collar.svg"
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Macro",
  31934. height: math.unit(100, "feet"),
  31935. default: true
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31941. {
  31942. dragon: {
  31943. height: math.unit(26, "feet"),
  31944. weight: math.unit(36, "tons"),
  31945. name: "Dragon",
  31946. image: {
  31947. source: "./media/characters/arimphae/dragon.svg",
  31948. extra: 1574/983,
  31949. bottom: 357/1931
  31950. }
  31951. },
  31952. drake: {
  31953. height: math.unit(9, "feet"),
  31954. weight: math.unit(1.5, "tons"),
  31955. name: "Drake",
  31956. image: {
  31957. source: "./media/characters/arimphae/drake.svg",
  31958. extra: 1120/925,
  31959. bottom: 435/1555
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Small",
  31966. height: math.unit(26*5/9, "feet")
  31967. },
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(26, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(8 + 9/12, "feet"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/xander/front.svg",
  31983. extra: 848/673,
  31984. bottom: 62/910
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(8 + 9/12, "feet"),
  31992. default: true
  31993. },
  31994. {
  31995. name: "Gaze Grabber",
  31996. height: math.unit(13 + 8/12, "feet")
  31997. },
  31998. {
  31999. name: "Jaw Dropper",
  32000. height: math.unit(27, "feet")
  32001. },
  32002. {
  32003. name: "Show Stopper",
  32004. height: math.unit(136, "feet")
  32005. },
  32006. {
  32007. name: "Superstar",
  32008. height: math.unit(1.9e6, "miles")
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32014. {
  32015. side: {
  32016. height: math.unit(2100, "feet"),
  32017. name: "Side",
  32018. image: {
  32019. source: "./media/characters/osiris/side.svg",
  32020. extra: 1105/939,
  32021. bottom: 167/1272
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Macro",
  32028. height: math.unit(2100, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6 + 8/12, "feet"),
  32038. weight: math.unit(225, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/rhys-londe/front.svg",
  32042. extra: 2258/2141,
  32043. bottom: 188/2446
  32044. }
  32045. },
  32046. back: {
  32047. height: math.unit(6 + 8/12, "feet"),
  32048. weight: math.unit(225, "lb"),
  32049. name: "Back",
  32050. image: {
  32051. source: "./media/characters/rhys-londe/back.svg",
  32052. extra: 2237/2137,
  32053. bottom: 63/2300
  32054. }
  32055. },
  32056. frontNsfw: {
  32057. height: math.unit(6 + 8/12, "feet"),
  32058. weight: math.unit(225, "lb"),
  32059. name: "Front (NSFW)",
  32060. image: {
  32061. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32062. extra: 2258/2141,
  32063. bottom: 188/2446
  32064. }
  32065. },
  32066. backNsfw: {
  32067. height: math.unit(6 + 8/12, "feet"),
  32068. weight: math.unit(225, "lb"),
  32069. name: "Back (NSFW)",
  32070. image: {
  32071. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32072. extra: 2237/2137,
  32073. bottom: 63/2300
  32074. }
  32075. },
  32076. dick: {
  32077. height: math.unit(30, "inches"),
  32078. name: "Dick",
  32079. image: {
  32080. source: "./media/characters/rhys-londe/dick.svg"
  32081. }
  32082. },
  32083. maw: {
  32084. height: math.unit(1.6, "feet"),
  32085. name: "Maw",
  32086. image: {
  32087. source: "./media/characters/rhys-londe/maw.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Normal",
  32094. height: math.unit(6 + 8/12, "feet"),
  32095. default: true
  32096. },
  32097. ]
  32098. ))
  32099. characterMakers.push(() => makeCharacter(
  32100. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32101. {
  32102. front: {
  32103. height: math.unit(3 + 10/12, "feet"),
  32104. weight: math.unit(90, "lb"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/taivas-ensim/front.svg",
  32108. extra: 1327/1216,
  32109. bottom: 96/1423
  32110. }
  32111. },
  32112. back: {
  32113. height: math.unit(3 + 10/12, "feet"),
  32114. weight: math.unit(90, "lb"),
  32115. name: "Back",
  32116. image: {
  32117. source: "./media/characters/taivas-ensim/back.svg",
  32118. extra: 1355/1247,
  32119. bottom: 11/1366
  32120. }
  32121. },
  32122. frontNsfw: {
  32123. height: math.unit(3 + 10/12, "feet"),
  32124. weight: math.unit(90, "lb"),
  32125. name: "Front (NSFW)",
  32126. image: {
  32127. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32128. extra: 1327/1216,
  32129. bottom: 96/1423
  32130. }
  32131. },
  32132. backNsfw: {
  32133. height: math.unit(3 + 10/12, "feet"),
  32134. weight: math.unit(90, "lb"),
  32135. name: "Back (NSFW)",
  32136. image: {
  32137. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32138. extra: 1355/1247,
  32139. bottom: 11/1366
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(3 + 10/12, "feet"),
  32147. default: true
  32148. },
  32149. ]
  32150. ))
  32151. characterMakers.push(() => makeCharacter(
  32152. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32153. {
  32154. front: {
  32155. height: math.unit(9 + 6/12, "feet"),
  32156. weight: math.unit(940, "lb"),
  32157. name: "Front",
  32158. image: {
  32159. source: "./media/characters/byliss/front.svg",
  32160. extra: 1327/1290,
  32161. bottom: 82/1409
  32162. }
  32163. },
  32164. back: {
  32165. height: math.unit(9 + 6/12, "feet"),
  32166. weight: math.unit(940, "lb"),
  32167. name: "Back",
  32168. image: {
  32169. source: "./media/characters/byliss/back.svg",
  32170. extra: 1376/1349,
  32171. bottom: 9/1385
  32172. }
  32173. },
  32174. frontNsfw: {
  32175. height: math.unit(9 + 6/12, "feet"),
  32176. weight: math.unit(940, "lb"),
  32177. name: "Front (NSFW)",
  32178. image: {
  32179. source: "./media/characters/byliss/front-nsfw.svg",
  32180. extra: 1327/1290,
  32181. bottom: 82/1409
  32182. }
  32183. },
  32184. backNsfw: {
  32185. height: math.unit(9 + 6/12, "feet"),
  32186. weight: math.unit(940, "lb"),
  32187. name: "Back (NSFW)",
  32188. image: {
  32189. source: "./media/characters/byliss/back-nsfw.svg",
  32190. extra: 1376/1349,
  32191. bottom: 9/1385
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(9 + 6/12, "feet"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(5 + 2/12, "feet"),
  32208. weight: math.unit(200, "lb"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/noraly/front.svg",
  32212. extra: 4985/4773,
  32213. bottom: 150/5135
  32214. }
  32215. },
  32216. full: {
  32217. height: math.unit(5 + 2/12, "feet"),
  32218. weight: math.unit(164, "lb"),
  32219. name: "Full",
  32220. image: {
  32221. source: "./media/characters/noraly/full.svg",
  32222. extra: 1114/1059,
  32223. bottom: 35/1149
  32224. }
  32225. },
  32226. fuller: {
  32227. height: math.unit(5 + 2/12, "feet"),
  32228. weight: math.unit(230, "lb"),
  32229. name: "Fuller",
  32230. image: {
  32231. source: "./media/characters/noraly/fuller.svg",
  32232. extra: 1114/1059,
  32233. bottom: 35/1149
  32234. }
  32235. },
  32236. fullest: {
  32237. height: math.unit(5 + 2/12, "feet"),
  32238. weight: math.unit(300, "lb"),
  32239. name: "Fullest",
  32240. image: {
  32241. source: "./media/characters/noraly/fullest.svg",
  32242. extra: 1114/1059,
  32243. bottom: 35/1149
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(5 + 2/12, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32257. {
  32258. front: {
  32259. height: math.unit(5 + 2/12, "feet"),
  32260. weight: math.unit(210, "lb"),
  32261. name: "Front",
  32262. image: {
  32263. source: "./media/characters/pera/front.svg",
  32264. extra: 1560/1531,
  32265. bottom: 165/1725
  32266. }
  32267. },
  32268. back: {
  32269. height: math.unit(5 + 2/12, "feet"),
  32270. weight: math.unit(210, "lb"),
  32271. name: "Back",
  32272. image: {
  32273. source: "./media/characters/pera/back.svg",
  32274. extra: 1523/1493,
  32275. bottom: 152/1675
  32276. }
  32277. },
  32278. dick: {
  32279. height: math.unit(2.4, "feet"),
  32280. name: "Dick",
  32281. image: {
  32282. source: "./media/characters/pera/dick.svg"
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(5 + 2/12, "feet"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(12, "feet"),
  32299. weight: math.unit(3200, "lb"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/julian/front.svg",
  32303. extra: 2962/2701,
  32304. bottom: 184/3146
  32305. }
  32306. },
  32307. maw: {
  32308. height: math.unit(5.35, "feet"),
  32309. name: "Maw",
  32310. image: {
  32311. source: "./media/characters/julian/maw.svg"
  32312. }
  32313. },
  32314. paw: {
  32315. height: math.unit(3.07, "feet"),
  32316. name: "Paw",
  32317. image: {
  32318. source: "./media/characters/julian/paw.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Default",
  32325. height: math.unit(12, "feet"),
  32326. default: true
  32327. },
  32328. {
  32329. name: "Big",
  32330. height: math.unit(50, "feet")
  32331. },
  32332. {
  32333. name: "Really Big",
  32334. height: math.unit(1, "mile")
  32335. },
  32336. {
  32337. name: "Extremely Big",
  32338. height: math.unit(100, "miles")
  32339. },
  32340. {
  32341. name: "Planet Hugger",
  32342. height: math.unit(200, "megameters")
  32343. },
  32344. {
  32345. name: "Unreasonably Big",
  32346. height: math.unit(1e300, "meters")
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32352. {
  32353. solgooleo: {
  32354. height: math.unit(4, "meters"),
  32355. weight: math.unit(6000*1.5, "kg"),
  32356. volume: math.unit(6000, "liters"),
  32357. name: "Solgooleo",
  32358. image: {
  32359. source: "./media/characters/pi/solgooleo.svg",
  32360. extra: 388/331,
  32361. bottom: 29/417
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(4, "meters"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32375. {
  32376. front: {
  32377. height: math.unit(8 + 2/12, "feet"),
  32378. weight: math.unit(4, "tons"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/shaun/front.svg",
  32382. extra: 1550/1505,
  32383. bottom: 353/1903
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Lorg",
  32390. height: math.unit(8 + 2/12, "feet"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32397. {
  32398. front: {
  32399. height: math.unit(7, "feet"),
  32400. name: "Front",
  32401. image: {
  32402. source: "./media/characters/sini/front.svg",
  32403. extra: 726/678,
  32404. bottom: 35/761
  32405. }
  32406. },
  32407. back: {
  32408. height: math.unit(7, "feet"),
  32409. name: "Back",
  32410. image: {
  32411. source: "./media/characters/sini/back.svg",
  32412. extra: 743/701,
  32413. bottom: 12/755
  32414. }
  32415. },
  32416. mawAnthro: {
  32417. height: math.unit(2.14, "feet"),
  32418. name: "Maw (Anthro)",
  32419. image: {
  32420. source: "./media/characters/sini/maw-anthro.svg"
  32421. }
  32422. },
  32423. dick: {
  32424. height: math.unit(1.45, "feet"),
  32425. name: "Dick (Anthro)",
  32426. image: {
  32427. source: "./media/characters/sini/dick-anthro.svg"
  32428. }
  32429. },
  32430. feral: {
  32431. height: math.unit(16, "feet"),
  32432. name: "Feral",
  32433. image: {
  32434. source: "./media/characters/sini/feral.svg",
  32435. extra: 814/605,
  32436. bottom: 11/825
  32437. }
  32438. },
  32439. mawFeral: {
  32440. height: math.unit(5.66, "feet"),
  32441. name: "Maw-feral",
  32442. image: {
  32443. source: "./media/characters/sini/maw-feral.svg"
  32444. }
  32445. },
  32446. footFeral: {
  32447. height: math.unit(5.17, "feet"),
  32448. name: "Foot-feral",
  32449. image: {
  32450. source: "./media/characters/sini/foot-feral.svg"
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Normal",
  32457. height: math.unit(7, "feet"),
  32458. default: true
  32459. },
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32464. {
  32465. side: {
  32466. height: math.unit(13, "meters"),
  32467. weight: math.unit(9072, "kg"),
  32468. name: "Side",
  32469. image: {
  32470. source: "./media/characters/raylldo/side.svg",
  32471. extra: 403/344,
  32472. bottom: 42/445
  32473. }
  32474. },
  32475. leaping: {
  32476. height: math.unit(12.3, "meters"),
  32477. weight: math.unit(9072, "kg"),
  32478. name: "Leaping",
  32479. image: {
  32480. source: "./media/characters/raylldo/leaping.svg",
  32481. extra: 470/249,
  32482. bottom: 13/483
  32483. }
  32484. },
  32485. flying: {
  32486. height: math.unit(18, "meters"),
  32487. weight: math.unit(9072, "kg"),
  32488. name: "Flying",
  32489. image: {
  32490. source: "./media/characters/raylldo/flying.svg"
  32491. }
  32492. },
  32493. head: {
  32494. height: math.unit(5.85, "meters"),
  32495. name: "Head",
  32496. image: {
  32497. source: "./media/characters/raylldo/head.svg"
  32498. }
  32499. },
  32500. maw: {
  32501. height: math.unit(5.32, "meters"),
  32502. name: "Maw",
  32503. image: {
  32504. source: "./media/characters/raylldo/maw.svg"
  32505. }
  32506. },
  32507. eye: {
  32508. height: math.unit(0.54, "meters"),
  32509. name: "Eye",
  32510. image: {
  32511. source: "./media/characters/raylldo/eye.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(13, "meters"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32525. {
  32526. anthroFront: {
  32527. height: math.unit(9, "feet"),
  32528. weight: math.unit(600, "lb"),
  32529. name: "Anthro (Front)",
  32530. image: {
  32531. source: "./media/characters/glint/anthro-front.svg",
  32532. extra: 1097/1018,
  32533. bottom: 28/1125
  32534. }
  32535. },
  32536. anthroBack: {
  32537. height: math.unit(9, "feet"),
  32538. weight: math.unit(600, "lb"),
  32539. name: "Anthro (Back)",
  32540. image: {
  32541. source: "./media/characters/glint/anthro-back.svg",
  32542. extra: 1154/997,
  32543. bottom: 36/1190
  32544. }
  32545. },
  32546. feral: {
  32547. height: math.unit(11, "feet"),
  32548. weight: math.unit(50000, "lb"),
  32549. name: "Feral",
  32550. image: {
  32551. source: "./media/characters/glint/feral.svg",
  32552. extra: 3035/1585,
  32553. bottom: 1169/4204
  32554. }
  32555. },
  32556. dickAnthro: {
  32557. height: math.unit(0.7, "meters"),
  32558. name: "Dick (Anthro)",
  32559. image: {
  32560. source: "./media/characters/glint/dick-anthro.svg"
  32561. }
  32562. },
  32563. dickFeral: {
  32564. height: math.unit(2.65, "meters"),
  32565. name: "Dick (Feral)",
  32566. image: {
  32567. source: "./media/characters/glint/dick-feral.svg"
  32568. }
  32569. },
  32570. slitHidden: {
  32571. height: math.unit(5.85, "meters"),
  32572. name: "Slit (Hidden)",
  32573. image: {
  32574. source: "./media/characters/glint/slit-hidden.svg"
  32575. }
  32576. },
  32577. slitErect: {
  32578. height: math.unit(5.85, "meters"),
  32579. name: "Slit (Erect)",
  32580. image: {
  32581. source: "./media/characters/glint/slit-erect.svg"
  32582. }
  32583. },
  32584. mawAnthro: {
  32585. height: math.unit(0.63, "meters"),
  32586. name: "Maw (Anthro)",
  32587. image: {
  32588. source: "./media/characters/glint/maw.svg"
  32589. }
  32590. },
  32591. mawFeral: {
  32592. height: math.unit(2.89, "meters"),
  32593. name: "Maw (Feral)",
  32594. image: {
  32595. source: "./media/characters/glint/maw.svg"
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(9, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32609. {
  32610. side: {
  32611. height: math.unit(15, "feet"),
  32612. weight: math.unit(5000, "kg"),
  32613. name: "Side",
  32614. image: {
  32615. source: "./media/characters/kairne/side.svg",
  32616. extra: 979/811,
  32617. bottom: 13/992
  32618. }
  32619. },
  32620. front: {
  32621. height: math.unit(15, "feet"),
  32622. weight: math.unit(5000, "kg"),
  32623. name: "Front",
  32624. image: {
  32625. source: "./media/characters/kairne/front.svg",
  32626. extra: 908/814,
  32627. bottom: 26/934
  32628. }
  32629. },
  32630. sideNsfw: {
  32631. height: math.unit(15, "feet"),
  32632. weight: math.unit(5000, "kg"),
  32633. name: "Side (NSFW)",
  32634. image: {
  32635. source: "./media/characters/kairne/side-nsfw.svg",
  32636. extra: 979/811,
  32637. bottom: 13/992
  32638. }
  32639. },
  32640. frontNsfw: {
  32641. height: math.unit(15, "feet"),
  32642. weight: math.unit(5000, "kg"),
  32643. name: "Front (NSFW)",
  32644. image: {
  32645. source: "./media/characters/kairne/front-nsfw.svg",
  32646. extra: 908/814,
  32647. bottom: 26/934
  32648. }
  32649. },
  32650. dickCaged: {
  32651. height: math.unit(0.65, "meters"),
  32652. name: "Dick-caged",
  32653. image: {
  32654. source: "./media/characters/kairne/dick-caged.svg"
  32655. }
  32656. },
  32657. dick: {
  32658. height: math.unit(0.79, "meters"),
  32659. name: "Dick",
  32660. image: {
  32661. source: "./media/characters/kairne/dick.svg"
  32662. }
  32663. },
  32664. genitals: {
  32665. height: math.unit(1.29, "meters"),
  32666. name: "Genitals",
  32667. image: {
  32668. source: "./media/characters/kairne/genitals.svg"
  32669. }
  32670. },
  32671. maw: {
  32672. height: math.unit(1.73, "meters"),
  32673. name: "Maw",
  32674. image: {
  32675. source: "./media/characters/kairne/maw.svg"
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(15, "feet"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32689. {
  32690. front: {
  32691. height: math.unit(5 + 8/12, "feet"),
  32692. weight: math.unit(139, "lb"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/biscuit-jackal/front.svg",
  32696. extra: 2106/1961,
  32697. bottom: 58/2164
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(5 + 8/12, "feet"),
  32702. weight: math.unit(139, "lb"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/biscuit-jackal/back.svg",
  32706. extra: 2132/1976,
  32707. bottom: 57/2189
  32708. }
  32709. },
  32710. werejackal: {
  32711. height: math.unit(6 + 3/12, "feet"),
  32712. weight: math.unit(188, "lb"),
  32713. name: "Werejackal",
  32714. image: {
  32715. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32716. extra: 2373/2178,
  32717. bottom: 53/2426
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(5 + 8/12, "feet"),
  32725. default: true
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32731. {
  32732. front: {
  32733. height: math.unit(140, "cm"),
  32734. weight: math.unit(45, "kg"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/tayra-white/front.svg",
  32738. extra: 2229/2192,
  32739. bottom: 75/2304
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(140, "cm"),
  32747. default: true
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32753. {
  32754. front: {
  32755. height: math.unit(4 + 5/12, "feet"),
  32756. name: "Front",
  32757. image: {
  32758. source: "./media/characters/scoop/front.svg",
  32759. extra: 1257/1136,
  32760. bottom: 69/1326
  32761. }
  32762. },
  32763. back: {
  32764. height: math.unit(4 + 5/12, "feet"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/scoop/back.svg",
  32768. extra: 1321/1152,
  32769. bottom: 32/1353
  32770. }
  32771. },
  32772. maw: {
  32773. height: math.unit(0.68, "feet"),
  32774. name: "Maw",
  32775. image: {
  32776. source: "./media/characters/scoop/maw.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Really Small",
  32783. height: math.unit(1, "mm")
  32784. },
  32785. {
  32786. name: "Micro",
  32787. height: math.unit(1, "inch")
  32788. },
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(4 + 5/12, "feet"),
  32792. default: true
  32793. },
  32794. {
  32795. name: "Macro",
  32796. height: math.unit(200, "feet")
  32797. },
  32798. {
  32799. name: "Megamacro",
  32800. height: math.unit(3240, "feet")
  32801. },
  32802. {
  32803. name: "Teramacro",
  32804. height: math.unit(2500, "miles")
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32810. {
  32811. front: {
  32812. height: math.unit(15 + 7/12, "feet"),
  32813. name: "Front",
  32814. image: {
  32815. source: "./media/characters/saphinara/front.svg",
  32816. extra: 604/546,
  32817. bottom: 19/623
  32818. }
  32819. },
  32820. side: {
  32821. height: math.unit(15 + 7/12, "feet"),
  32822. name: "Side",
  32823. image: {
  32824. source: "./media/characters/saphinara/side.svg",
  32825. extra: 605/547,
  32826. bottom: 6/611
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(15 + 7/12, "feet"),
  32831. name: "Back",
  32832. image: {
  32833. source: "./media/characters/saphinara/back.svg",
  32834. extra: 591/531,
  32835. bottom: 13/604
  32836. }
  32837. },
  32838. frontTail: {
  32839. height: math.unit(15 + 7/12, "feet"),
  32840. name: "Front (Full Tail)",
  32841. image: {
  32842. source: "./media/characters/saphinara/front-tail.svg",
  32843. extra: 748/547,
  32844. bottom: 66/814
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(15 + 7/12, "feet"),
  32852. default: true
  32853. },
  32854. {
  32855. name: "Angry",
  32856. height: math.unit(30 + 6/12, "feet")
  32857. },
  32858. {
  32859. name: "Enraged",
  32860. height: math.unit(102 + 1/12, "feet")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32866. {
  32867. front: {
  32868. height: math.unit(6 + 8/12, "feet"),
  32869. weight: math.unit(300, "lb"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/jrain/front.svg",
  32873. extra: 3039/2865,
  32874. bottom: 399/3438
  32875. }
  32876. },
  32877. back: {
  32878. height: math.unit(6 + 8/12, "feet"),
  32879. weight: math.unit(300, "lb"),
  32880. name: "Back",
  32881. image: {
  32882. source: "./media/characters/jrain/back.svg",
  32883. extra: 3089/2938,
  32884. bottom: 172/3261
  32885. }
  32886. },
  32887. head: {
  32888. height: math.unit(2.14, "feet"),
  32889. name: "Head",
  32890. image: {
  32891. source: "./media/characters/jrain/head.svg"
  32892. }
  32893. },
  32894. maw: {
  32895. height: math.unit(1.77, "feet"),
  32896. name: "Maw",
  32897. image: {
  32898. source: "./media/characters/jrain/maw.svg"
  32899. }
  32900. },
  32901. leftHand: {
  32902. height: math.unit(1.1, "feet"),
  32903. name: "Left Hand",
  32904. image: {
  32905. source: "./media/characters/jrain/left-hand.svg"
  32906. }
  32907. },
  32908. rightHand: {
  32909. height: math.unit(1.1, "feet"),
  32910. name: "Right Hand",
  32911. image: {
  32912. source: "./media/characters/jrain/right-hand.svg"
  32913. }
  32914. },
  32915. eye: {
  32916. height: math.unit(0.35, "feet"),
  32917. name: "Eye",
  32918. image: {
  32919. source: "./media/characters/jrain/eye.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(6 + 8/12, "feet"),
  32927. default: true
  32928. },
  32929. {
  32930. name: "Casually Large",
  32931. height: math.unit(25, "feet")
  32932. },
  32933. {
  32934. name: "Giant",
  32935. height: math.unit(100, "feet")
  32936. },
  32937. {
  32938. name: "Kaiju",
  32939. height: math.unit(300, "feet")
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32945. {
  32946. dragon: {
  32947. height: math.unit(5, "meters"),
  32948. name: "Dragon",
  32949. image: {
  32950. source: "./media/characters/sabrina/dragon.svg",
  32951. extra: 3670 / 2365,
  32952. bottom: 333 / 4003
  32953. }
  32954. },
  32955. gryphon: {
  32956. height: math.unit(3, "meters"),
  32957. name: "Gryphon",
  32958. image: {
  32959. source: "./media/characters/sabrina/gryphon.svg",
  32960. extra: 1576 / 945,
  32961. bottom: 71 / 1647
  32962. }
  32963. },
  32964. snake: {
  32965. height: math.unit(12, "meters"),
  32966. name: "Snake",
  32967. image: {
  32968. source: "./media/characters/sabrina/snake.svg",
  32969. extra: 1758 / 1320,
  32970. bottom: 186 / 1944
  32971. }
  32972. },
  32973. collar: {
  32974. height: math.unit(1.86, "meters"),
  32975. name: "Collar",
  32976. image: {
  32977. source: "./media/characters/sabrina/collar.svg"
  32978. }
  32979. },
  32980. eye: {
  32981. height: math.unit(0.53, "meters"),
  32982. name: "Eye",
  32983. image: {
  32984. source: "./media/characters/sabrina/eye.svg"
  32985. }
  32986. },
  32987. foot: {
  32988. height: math.unit(1.86, "meters"),
  32989. name: "Foot",
  32990. image: {
  32991. source: "./media/characters/sabrina/foot.svg"
  32992. }
  32993. },
  32994. hand: {
  32995. height: math.unit(1.32, "meters"),
  32996. name: "Hand",
  32997. image: {
  32998. source: "./media/characters/sabrina/hand.svg"
  32999. }
  33000. },
  33001. head: {
  33002. height: math.unit(2.44, "meters"),
  33003. name: "Head",
  33004. image: {
  33005. source: "./media/characters/sabrina/head.svg"
  33006. }
  33007. },
  33008. headAngry: {
  33009. height: math.unit(2.44, "meters"),
  33010. name: "Head (Angry))",
  33011. image: {
  33012. source: "./media/characters/sabrina/head-angry.svg"
  33013. }
  33014. },
  33015. maw: {
  33016. height: math.unit(1.65, "meters"),
  33017. name: "Maw",
  33018. image: {
  33019. source: "./media/characters/sabrina/maw.svg"
  33020. }
  33021. },
  33022. spikes: {
  33023. height: math.unit(1.69, "meters"),
  33024. name: "Spikes",
  33025. image: {
  33026. source: "./media/characters/sabrina/spikes.svg"
  33027. }
  33028. },
  33029. stomach: {
  33030. height: math.unit(1.15, "meters"),
  33031. name: "Stomach",
  33032. image: {
  33033. source: "./media/characters/sabrina/stomach.svg"
  33034. }
  33035. },
  33036. tongue: {
  33037. height: math.unit(1.27, "meters"),
  33038. name: "Tongue",
  33039. image: {
  33040. source: "./media/characters/sabrina/tongue.svg"
  33041. }
  33042. },
  33043. wingDorsal: {
  33044. height: math.unit(4.85, "meters"),
  33045. name: "Wing (Dorsal)",
  33046. image: {
  33047. source: "./media/characters/sabrina/wing-dorsal.svg"
  33048. }
  33049. },
  33050. wingVentral: {
  33051. height: math.unit(4.85, "meters"),
  33052. name: "Wing (Ventral)",
  33053. image: {
  33054. source: "./media/characters/sabrina/wing-ventral.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(5, "meters"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33068. {
  33069. frontMaid: {
  33070. height: math.unit(5 + 5/12, "feet"),
  33071. weight: math.unit(130, "lb"),
  33072. name: "Front (Maid)",
  33073. image: {
  33074. source: "./media/characters/midnight-tales/front-maid.svg",
  33075. extra: 489/454,
  33076. bottom: 61/550
  33077. }
  33078. },
  33079. frontFormal: {
  33080. height: math.unit(5 + 5/12, "feet"),
  33081. weight: math.unit(130, "lb"),
  33082. name: "Front (Formal)",
  33083. image: {
  33084. source: "./media/characters/midnight-tales/front-formal.svg",
  33085. extra: 489/454,
  33086. bottom: 61/550
  33087. }
  33088. },
  33089. back: {
  33090. height: math.unit(5 + 5/12, "feet"),
  33091. weight: math.unit(130, "lb"),
  33092. name: "Back",
  33093. image: {
  33094. source: "./media/characters/midnight-tales/back.svg",
  33095. extra: 498/456,
  33096. bottom: 33/531
  33097. }
  33098. },
  33099. frontBeast: {
  33100. height: math.unit(40, "feet"),
  33101. weight: math.unit(64000, "lb"),
  33102. name: "Front (Beast)",
  33103. image: {
  33104. source: "./media/characters/midnight-tales/front-beast.svg",
  33105. extra: 927/860,
  33106. bottom: 53/980
  33107. }
  33108. },
  33109. backBeast: {
  33110. height: math.unit(40, "feet"),
  33111. weight: math.unit(64000, "lb"),
  33112. name: "Back (Beast)",
  33113. image: {
  33114. source: "./media/characters/midnight-tales/back-beast.svg",
  33115. extra: 929/855,
  33116. bottom: 16/945
  33117. }
  33118. },
  33119. footBeast: {
  33120. height: math.unit(6.7, "feet"),
  33121. name: "Foot (Beast)",
  33122. image: {
  33123. source: "./media/characters/midnight-tales/foot-beast.svg"
  33124. }
  33125. },
  33126. headBeast: {
  33127. height: math.unit(8, "feet"),
  33128. name: "Head (Beast)",
  33129. image: {
  33130. source: "./media/characters/midnight-tales/head-beast.svg"
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Normal",
  33137. height: math.unit(5 + 5 / 12, "feet"),
  33138. default: true
  33139. },
  33140. {
  33141. name: "Macro",
  33142. height: math.unit(25, "feet")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(5 + 10/12, "feet"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/argon/front.svg",
  33154. extra: 2009/1935,
  33155. bottom: 118/2127
  33156. }
  33157. },
  33158. back: {
  33159. height: math.unit(5 + 10/12, "feet"),
  33160. name: "Back",
  33161. image: {
  33162. source: "./media/characters/argon/back.svg",
  33163. extra: 2047/1992,
  33164. bottom: 20/2067
  33165. }
  33166. },
  33167. frontDressed: {
  33168. height: math.unit(5 + 10/12, "feet"),
  33169. name: "Front (Dressed)",
  33170. image: {
  33171. source: "./media/characters/argon/front-dressed.svg",
  33172. extra: 2009/1935,
  33173. bottom: 118/2127
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(5 + 10/12, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33187. {
  33188. front: {
  33189. height: math.unit(8 + 6/12, "feet"),
  33190. weight: math.unit(1150, "lb"),
  33191. name: "Front",
  33192. image: {
  33193. source: "./media/characters/kichi/front.svg",
  33194. extra: 1267/1164,
  33195. bottom: 61/1328
  33196. }
  33197. },
  33198. back: {
  33199. height: math.unit(8 + 6/12, "feet"),
  33200. weight: math.unit(1150, "lb"),
  33201. name: "Back",
  33202. image: {
  33203. source: "./media/characters/kichi/back.svg",
  33204. extra: 1273/1166,
  33205. bottom: 33/1306
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Normal",
  33212. height: math.unit(8 + 6/12, "feet"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(6, "feet"),
  33222. weight: math.unit(210, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/manetel-greyscale/front.svg",
  33226. extra: 350/312,
  33227. bottom: 8/358
  33228. }
  33229. },
  33230. },
  33231. [
  33232. {
  33233. name: "Micro",
  33234. height: math.unit(2, "inches")
  33235. },
  33236. {
  33237. name: "Normal",
  33238. height: math.unit(6, "feet"),
  33239. default: true
  33240. },
  33241. {
  33242. name: "Minimacro",
  33243. height: math.unit(17, "feet")
  33244. },
  33245. {
  33246. name: "Macro",
  33247. height: math.unit(117, "feet")
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33253. {
  33254. side: {
  33255. height: math.unit(5 + 1/12, "feet"),
  33256. weight: math.unit(418, "lb"),
  33257. name: "Side",
  33258. image: {
  33259. source: "./media/characters/softpurr/side.svg",
  33260. extra: 1993/1945,
  33261. bottom: 134/2127
  33262. }
  33263. },
  33264. front: {
  33265. height: math.unit(5 + 1/12, "feet"),
  33266. weight: math.unit(418, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/softpurr/front.svg",
  33270. extra: 1950/1856,
  33271. bottom: 174/2124
  33272. }
  33273. },
  33274. paw: {
  33275. height: math.unit(1, "feet"),
  33276. name: "Paw",
  33277. image: {
  33278. source: "./media/characters/softpurr/paw.svg"
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Normal",
  33285. height: math.unit(5 + 1/12, "feet"),
  33286. default: true
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(260, "meters"),
  33295. name: "Front",
  33296. image: {
  33297. source: "./media/characters/anahita/front.svg",
  33298. extra: 665/635,
  33299. bottom: 89/754
  33300. }
  33301. },
  33302. },
  33303. [
  33304. {
  33305. name: "Macro",
  33306. height: math.unit(260, "meters"),
  33307. default: true
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(4 + 10/12, "feet"),
  33316. weight: math.unit(160, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/chip-mouse/front.svg",
  33320. extra: 3528/3408,
  33321. bottom: 0/3528
  33322. }
  33323. },
  33324. frontNsfw: {
  33325. height: math.unit(4 + 10/12, "feet"),
  33326. weight: math.unit(160, "lb"),
  33327. name: "Front (NSFW)",
  33328. image: {
  33329. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33330. extra: 3528/3408,
  33331. bottom: 0/3528
  33332. }
  33333. },
  33334. },
  33335. [
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(4 + 10/12, "feet"),
  33339. default: true
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33345. {
  33346. side: {
  33347. height: math.unit(10, "feet"),
  33348. weight: math.unit(14000, "lb"),
  33349. name: "Side",
  33350. image: {
  33351. source: "./media/characters/kremm/side.svg",
  33352. extra: 1390/1053,
  33353. bottom: 90/1480
  33354. }
  33355. },
  33356. gut: {
  33357. height: math.unit(5.8, "feet"),
  33358. name: "Gut",
  33359. image: {
  33360. source: "./media/characters/kremm/gut.svg"
  33361. }
  33362. },
  33363. ass: {
  33364. height: math.unit(6.1, "feet"),
  33365. name: "Ass",
  33366. image: {
  33367. source: "./media/characters/kremm/ass.svg"
  33368. }
  33369. },
  33370. jaws: {
  33371. height: math.unit(2.2, "feet"),
  33372. name: "Jaws",
  33373. image: {
  33374. source: "./media/characters/kremm/jaws.svg"
  33375. }
  33376. },
  33377. dick: {
  33378. height: math.unit(4.26, "feet"),
  33379. name: "Dick",
  33380. image: {
  33381. source: "./media/characters/kremm/dick.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(10, "feet"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(30, "stories"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/kai/front.svg",
  33401. extra: 1892/1718,
  33402. bottom: 162/2054
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Macro",
  33409. height: math.unit(30, "stories"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33416. {
  33417. front: {
  33418. height: math.unit(6 + 4/12, "feet"),
  33419. weight: math.unit(145, "lb"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/sykes/front.svg",
  33423. extra: 1321 / 1187,
  33424. bottom: 66 / 1387
  33425. }
  33426. },
  33427. back: {
  33428. height: math.unit(6 + 4/12, "feet"),
  33429. weight: math.unit(145, "lb"),
  33430. name: "Back",
  33431. image: {
  33432. source: "./media/characters/sykes/back.svg",
  33433. extra: 1326/1181,
  33434. bottom: 31/1357
  33435. }
  33436. },
  33437. handBack: {
  33438. height: math.unit(0.9, "feet"),
  33439. name: "Hand (Back)",
  33440. image: {
  33441. source: "./media/characters/sykes/hand-back.svg"
  33442. }
  33443. },
  33444. handFront: {
  33445. height: math.unit(0.839, "feet"),
  33446. name: "Hand (Front)",
  33447. image: {
  33448. source: "./media/characters/sykes/hand-front.svg"
  33449. }
  33450. },
  33451. leftFoot: {
  33452. height: math.unit(1.2, "feet"),
  33453. name: "Foot (Left)",
  33454. image: {
  33455. source: "./media/characters/sykes/foot-left.svg"
  33456. }
  33457. },
  33458. rightFoot: {
  33459. height: math.unit(1.2, "feet"),
  33460. name: "Foot (Right)",
  33461. image: {
  33462. source: "./media/characters/sykes/foot-right.svg"
  33463. }
  33464. },
  33465. maw: {
  33466. height: math.unit(1.93, "feet"),
  33467. name: "Maw",
  33468. image: {
  33469. source: "./media/characters/sykes/maw.svg"
  33470. }
  33471. },
  33472. teeth: {
  33473. height: math.unit(0.51, "feet"),
  33474. name: "Teeth",
  33475. image: {
  33476. source: "./media/characters/sykes/teeth.svg"
  33477. }
  33478. },
  33479. tongue: {
  33480. height: math.unit(2.13, "feet"),
  33481. name: "Tongue",
  33482. image: {
  33483. source: "./media/characters/sykes/tongue.svg"
  33484. }
  33485. },
  33486. uvula: {
  33487. height: math.unit(0.16, "feet"),
  33488. name: "Uvula",
  33489. image: {
  33490. source: "./media/characters/sykes/uvula.svg"
  33491. }
  33492. },
  33493. collar: {
  33494. height: math.unit(0.287, "feet"),
  33495. name: "Collar",
  33496. image: {
  33497. source: "./media/characters/sykes/collar.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Shrunken",
  33504. height: math.unit(5, "inches")
  33505. },
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(6 + 4 / 12, "feet"),
  33509. default: true
  33510. },
  33511. {
  33512. name: "Big",
  33513. height: math.unit(15, "feet")
  33514. },
  33515. ]
  33516. ))
  33517. characterMakers.push(() => makeCharacter(
  33518. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33519. {
  33520. front: {
  33521. height: math.unit(5 + 8/12, "feet"),
  33522. weight: math.unit(190, "lb"),
  33523. name: "Front",
  33524. image: {
  33525. source: "./media/characters/oven-otter/front.svg",
  33526. extra: 1809/1740,
  33527. bottom: 181/1990
  33528. }
  33529. },
  33530. back: {
  33531. height: math.unit(5 + 8/12, "feet"),
  33532. weight: math.unit(190, "lb"),
  33533. name: "Back",
  33534. image: {
  33535. source: "./media/characters/oven-otter/back.svg",
  33536. extra: 1709/1635,
  33537. bottom: 118/1827
  33538. }
  33539. },
  33540. hand: {
  33541. height: math.unit(1.07, "feet"),
  33542. name: "Hand",
  33543. image: {
  33544. source: "./media/characters/oven-otter/hand.svg"
  33545. }
  33546. },
  33547. beans: {
  33548. height: math.unit(1.74, "feet"),
  33549. name: "Beans",
  33550. image: {
  33551. source: "./media/characters/oven-otter/beans.svg"
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Micro",
  33558. height: math.unit(0.5, "inches")
  33559. },
  33560. {
  33561. name: "Normal",
  33562. height: math.unit(5 + 8/12, "feet"),
  33563. default: true
  33564. },
  33565. {
  33566. name: "Macro",
  33567. height: math.unit(250, "feet")
  33568. },
  33569. {
  33570. name: "Really High",
  33571. height: math.unit(420, "feet")
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(5, "meters"),
  33580. weight: math.unit(292000000000000, "kg"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/devourer/front.svg",
  33584. extra: 1800/1733,
  33585. bottom: 211/2011
  33586. }
  33587. },
  33588. maw: {
  33589. height: math.unit(1.1, "meter"),
  33590. name: "Maw",
  33591. image: {
  33592. source: "./media/characters/devourer/maw.svg"
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Small",
  33599. height: math.unit(3, "meters")
  33600. },
  33601. {
  33602. name: "Large",
  33603. height: math.unit(5, "meters"),
  33604. default: true
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33610. {
  33611. front: {
  33612. height: math.unit(6, "feet"),
  33613. weight: math.unit(400, "lb"),
  33614. name: "Front",
  33615. image: {
  33616. source: "./media/characters/ellarby/front.svg",
  33617. extra: 1909/1763,
  33618. bottom: 80/1989
  33619. }
  33620. },
  33621. back: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(400, "lb"),
  33624. name: "Back",
  33625. image: {
  33626. source: "./media/characters/ellarby/back.svg",
  33627. extra: 1914/1784,
  33628. bottom: 172/2086
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Mischief",
  33635. height: math.unit(18, "inches")
  33636. },
  33637. {
  33638. name: "Trouble",
  33639. height: math.unit(12, "feet")
  33640. },
  33641. {
  33642. name: "Havoc",
  33643. height: math.unit(200, "feet"),
  33644. default: true
  33645. },
  33646. {
  33647. name: "Pandemonium",
  33648. height: math.unit(1, "mile")
  33649. },
  33650. {
  33651. name: "Catastrophe",
  33652. height: math.unit(100, "miles")
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33658. {
  33659. front: {
  33660. height: math.unit(4.7, "meters"),
  33661. weight: math.unit(6500, "kg"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/vex/front.svg",
  33665. extra: 1288/1140,
  33666. bottom: 100/1388
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Normal",
  33673. height: math.unit(4.7, "meters"),
  33674. default: true
  33675. },
  33676. ]
  33677. ))
  33678. characterMakers.push(() => makeCharacter(
  33679. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33680. {
  33681. normal: {
  33682. height: math.unit(6, "feet"),
  33683. weight: math.unit(350, "lb"),
  33684. name: "Normal",
  33685. image: {
  33686. source: "./media/characters/teshy/normal.svg",
  33687. extra: 1795/1735,
  33688. bottom: 16/1811
  33689. }
  33690. },
  33691. monsterFront: {
  33692. height: math.unit(12, "feet"),
  33693. weight: math.unit(4700, "lb"),
  33694. name: "Monster (Front)",
  33695. image: {
  33696. source: "./media/characters/teshy/monster-front.svg",
  33697. extra: 2042/2034,
  33698. bottom: 128/2170
  33699. }
  33700. },
  33701. monsterSide: {
  33702. height: math.unit(12, "feet"),
  33703. weight: math.unit(4700, "lb"),
  33704. name: "Monster (Side)",
  33705. image: {
  33706. source: "./media/characters/teshy/monster-side.svg",
  33707. extra: 2067/2056,
  33708. bottom: 70/2137
  33709. }
  33710. },
  33711. monsterBack: {
  33712. height: math.unit(12, "feet"),
  33713. weight: math.unit(4700, "lb"),
  33714. name: "Monster (Back)",
  33715. image: {
  33716. source: "./media/characters/teshy/monster-back.svg",
  33717. extra: 1921/1914,
  33718. bottom: 171/2092
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(6, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(6, "feet"),
  33735. name: "Front",
  33736. image: {
  33737. source: "./media/characters/ramey/front.svg",
  33738. extra: 790/787,
  33739. bottom: 27/817
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Normal",
  33746. height: math.unit(6, "feet"),
  33747. default: true
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33753. {
  33754. front: {
  33755. height: math.unit(5 + 5/12, "feet"),
  33756. weight: math.unit(120, "lb"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/phirae/front.svg",
  33760. extra: 2491/2436,
  33761. bottom: 38/2529
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(5 + 5/12, "feet"),
  33769. default: true
  33770. },
  33771. ]
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33775. {
  33776. front: {
  33777. height: math.unit(6, "feet"),
  33778. weight: math.unit(150, "lb"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/stagglas/front.svg",
  33782. extra: 962/882,
  33783. bottom: 53/1015
  33784. }
  33785. },
  33786. },
  33787. [
  33788. {
  33789. name: "Normal",
  33790. height: math.unit(5 + 3/12, "feet"),
  33791. default: true
  33792. },
  33793. ]
  33794. ))
  33795. characterMakers.push(() => makeCharacter(
  33796. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33797. {
  33798. front: {
  33799. height: math.unit(5 + 4/12, "feet"),
  33800. weight: math.unit(145, "lb"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/starra/front.svg",
  33804. extra: 1790/1691,
  33805. bottom: 91/1881
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(5 + 4/12, "feet"),
  33813. default: true
  33814. },
  33815. ]
  33816. ))
  33817. characterMakers.push(() => makeCharacter(
  33818. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33819. {
  33820. front: {
  33821. height: math.unit(2.2, "meters"),
  33822. name: "Front",
  33823. image: {
  33824. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33825. extra: 1194/1005,
  33826. bottom: 25/1219
  33827. }
  33828. },
  33829. },
  33830. [
  33831. {
  33832. name: "Normal",
  33833. height: math.unit(2.2, "meters"),
  33834. default: true
  33835. },
  33836. ]
  33837. ))
  33838. characterMakers.push(() => makeCharacter(
  33839. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33840. {
  33841. side: {
  33842. height: math.unit(8 + 2/12, "feet"),
  33843. weight: math.unit(1240, "lb"),
  33844. name: "Side",
  33845. image: {
  33846. source: "./media/characters/mika-valentine/side.svg",
  33847. extra: 2670/2501,
  33848. bottom: 250/2920
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(8 + 2/12, "feet"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(7 + 2/12, "feet"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/xoltol/front.svg",
  33868. extra: 2212/2124,
  33869. bottom: 84/2296
  33870. }
  33871. },
  33872. side: {
  33873. height: math.unit(7 + 2/12, "feet"),
  33874. name: "Side",
  33875. image: {
  33876. source: "./media/characters/xoltol/side.svg",
  33877. extra: 2273/2197,
  33878. bottom: 26/2299
  33879. }
  33880. },
  33881. hand: {
  33882. height: math.unit(2.5, "feet"),
  33883. name: "Hand",
  33884. image: {
  33885. source: "./media/characters/xoltol/hand.svg"
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Small-ish",
  33892. height: math.unit(5 + 11/12, "feet")
  33893. },
  33894. {
  33895. name: "Normal",
  33896. height: math.unit(7 + 2/12, "feet")
  33897. },
  33898. {
  33899. name: "\"Macro\"",
  33900. height: math.unit(14 + 9/12, "feet"),
  33901. default: true
  33902. },
  33903. {
  33904. name: "Alternate Height",
  33905. height: math.unit(20, "feet")
  33906. },
  33907. {
  33908. name: "Actually Macro",
  33909. height: math.unit(100, "feet")
  33910. },
  33911. ]
  33912. ))
  33913. characterMakers.push(() => makeCharacter(
  33914. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33915. {
  33916. front: {
  33917. height: math.unit(5 + 2/12, "feet"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/kotetsu-redwood/front.svg",
  33921. extra: 1053/942,
  33922. bottom: 60/1113
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(5 + 2/12, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(2.4, "meters"),
  33939. weight: math.unit(125, "kg"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/lilith/front.svg",
  33943. extra: 1590/1513,
  33944. bottom: 203/1793
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Humanoid",
  33951. height: math.unit(2.4, "meters")
  33952. },
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(6, "meters"),
  33956. default: true
  33957. },
  33958. {
  33959. name: "Largest",
  33960. height: math.unit(55, "meters")
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33966. {
  33967. front: {
  33968. height: math.unit(8 + 4/12, "feet"),
  33969. weight: math.unit(535, "lb"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/beh'kah-bolger/front.svg",
  33973. extra: 1660/1603,
  33974. bottom: 37/1697
  33975. }
  33976. },
  33977. },
  33978. [
  33979. {
  33980. name: "Normal",
  33981. height: math.unit(8 + 4/12, "feet"),
  33982. default: true
  33983. },
  33984. {
  33985. name: "Kaiju",
  33986. height: math.unit(250, "feet")
  33987. },
  33988. {
  33989. name: "Still Growing",
  33990. height: math.unit(10, "miles")
  33991. },
  33992. {
  33993. name: "Continental",
  33994. height: math.unit(5000, "miles")
  33995. },
  33996. {
  33997. name: "Final Form",
  33998. height: math.unit(2500000, "miles")
  33999. },
  34000. ]
  34001. ))
  34002. characterMakers.push(() => makeCharacter(
  34003. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34004. {
  34005. front: {
  34006. height: math.unit(7 + 2/12, "feet"),
  34007. weight: math.unit(230, "kg"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/tatyana-milewska/front.svg",
  34011. extra: 1199/1150,
  34012. bottom: 86/1285
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(7 + 2/12, "feet"),
  34020. default: true
  34021. },
  34022. {
  34023. name: "Big",
  34024. height: math.unit(12, "feet")
  34025. },
  34026. {
  34027. name: "Minimacro",
  34028. height: math.unit(20, "feet")
  34029. },
  34030. {
  34031. name: "Macro",
  34032. height: math.unit(120, "feet")
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(7 + 8/12, "feet"),
  34041. weight: math.unit(152, "kg"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/helen-arri/front.svg",
  34045. extra: 440/423,
  34046. bottom: 14/454
  34047. }
  34048. },
  34049. back: {
  34050. height: math.unit(7 + 8/12, "feet"),
  34051. weight: math.unit(152, "kg"),
  34052. name: "Back",
  34053. image: {
  34054. source: "./media/characters/helen-arri/back.svg",
  34055. extra: 443/426,
  34056. bottom: 8/451
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(7 + 8/12, "feet"),
  34064. default: true
  34065. },
  34066. {
  34067. name: "Big",
  34068. height: math.unit(14, "feet")
  34069. },
  34070. {
  34071. name: "Minimacro",
  34072. height: math.unit(24, "feet")
  34073. },
  34074. {
  34075. name: "Macro",
  34076. height: math.unit(140, "feet")
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(6, "meters"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/ehanu-rehu/front.svg",
  34088. extra: 1800/1800,
  34089. bottom: 59/1859
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(6, "meters"),
  34097. default: true
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34103. {
  34104. front: {
  34105. height: math.unit(7 + 3/12, "feet"),
  34106. name: "Front",
  34107. image: {
  34108. source: "./media/characters/renholder/front.svg",
  34109. extra: 3096/2960,
  34110. bottom: 250/3346
  34111. }
  34112. },
  34113. },
  34114. [
  34115. {
  34116. name: "Normal Bat",
  34117. height: math.unit(7 + 3/12, "feet"),
  34118. default: true
  34119. },
  34120. {
  34121. name: "Slightly Tall Bat",
  34122. height: math.unit(100, "feet")
  34123. },
  34124. {
  34125. name: "Big Bat",
  34126. height: math.unit(1000, "feet")
  34127. },
  34128. {
  34129. name: "City-Sized Bat",
  34130. height: math.unit(200000, "feet")
  34131. },
  34132. {
  34133. name: "Bigger Bat",
  34134. height: math.unit(10000, "miles")
  34135. },
  34136. {
  34137. name: "Solar Sized Bat",
  34138. height: math.unit(100, "AU")
  34139. },
  34140. {
  34141. name: "Galactic Bat",
  34142. height: math.unit(200000, "lightyears")
  34143. },
  34144. {
  34145. name: "Universally Known Bat",
  34146. height: math.unit(1, "universe")
  34147. },
  34148. ]
  34149. ))
  34150. characterMakers.push(() => makeCharacter(
  34151. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34152. {
  34153. front: {
  34154. height: math.unit(6 + 11/12, "feet"),
  34155. weight: math.unit(250, "lb"),
  34156. name: "Front",
  34157. image: {
  34158. source: "./media/characters/cookiecat/front.svg",
  34159. extra: 893/827,
  34160. bottom: 14/907
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Micro",
  34167. height: math.unit(3, "inches")
  34168. },
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(6 + 11/12, "feet"),
  34172. default: true
  34173. },
  34174. {
  34175. name: "Macro",
  34176. height: math.unit(100, "feet")
  34177. },
  34178. {
  34179. name: "Macro+",
  34180. height: math.unit(404, "feet")
  34181. },
  34182. {
  34183. name: "Megamacro",
  34184. height: math.unit(165, "miles")
  34185. },
  34186. {
  34187. name: "Planetary",
  34188. height: math.unit(4600, "miles")
  34189. },
  34190. ]
  34191. ))
  34192. characterMakers.push(() => makeCharacter(
  34193. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34194. {
  34195. front: {
  34196. height: math.unit(10 + 3/12, "feet"),
  34197. weight: math.unit(1500, "lb"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/tux-kusanagi/front.svg",
  34201. extra: 944/840,
  34202. bottom: 39/983
  34203. }
  34204. },
  34205. back: {
  34206. height: math.unit(10 + 3/12, "feet"),
  34207. weight: math.unit(1500, "lb"),
  34208. name: "Back",
  34209. image: {
  34210. source: "./media/characters/tux-kusanagi/back.svg",
  34211. extra: 941/842,
  34212. bottom: 28/969
  34213. }
  34214. },
  34215. rump: {
  34216. height: math.unit(5.25, "feet"),
  34217. name: "Rump",
  34218. image: {
  34219. source: "./media/characters/tux-kusanagi/rump.svg"
  34220. }
  34221. },
  34222. beak: {
  34223. height: math.unit(1.54, "feet"),
  34224. name: "Beak",
  34225. image: {
  34226. source: "./media/characters/tux-kusanagi/beak.svg"
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(10 + 3/12, "feet"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34240. {
  34241. front: {
  34242. height: math.unit(58, "feet"),
  34243. weight: math.unit(200, "tons"),
  34244. name: "Front",
  34245. image: {
  34246. source: "./media/characters/uzarmazari/front.svg",
  34247. extra: 1575/1455,
  34248. bottom: 152/1727
  34249. }
  34250. },
  34251. back: {
  34252. height: math.unit(58, "feet"),
  34253. weight: math.unit(200, "tons"),
  34254. name: "Back",
  34255. image: {
  34256. source: "./media/characters/uzarmazari/back.svg",
  34257. extra: 1585/1510,
  34258. bottom: 157/1742
  34259. }
  34260. },
  34261. head: {
  34262. height: math.unit(26, "feet"),
  34263. name: "Head",
  34264. image: {
  34265. source: "./media/characters/uzarmazari/head.svg"
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(58, "feet"),
  34273. default: true
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34279. {
  34280. side: {
  34281. height: math.unit(15, "feet"),
  34282. name: "Side",
  34283. image: {
  34284. source: "./media/characters/akitu/side.svg",
  34285. extra: 1421/1321,
  34286. bottom: 157/1578
  34287. }
  34288. },
  34289. front: {
  34290. height: math.unit(15, "feet"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/akitu/front.svg",
  34294. extra: 1435/1326,
  34295. bottom: 232/1667
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(15, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(10 + 8/12, "feet"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/azalie-croixland/front.svg",
  34315. extra: 1972/1856,
  34316. bottom: 31/2003
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Original Height",
  34323. height: math.unit(5 + 4/12, "feet")
  34324. },
  34325. {
  34326. name: "Normal Height",
  34327. height: math.unit(10 + 8/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34334. {
  34335. side: {
  34336. height: math.unit(7 + 1/12, "feet"),
  34337. weight: math.unit(245, "lb"),
  34338. name: "Side",
  34339. image: {
  34340. source: "./media/characters/kavus-kazian/side.svg",
  34341. extra: 349/342,
  34342. bottom: 15/364
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(7 + 1/12, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34356. {
  34357. normal: {
  34358. height: math.unit(5 + 11/12, "feet"),
  34359. name: "Normal",
  34360. image: {
  34361. source: "./media/characters/moonlight-rose/normal.svg",
  34362. extra: 1979/1835,
  34363. bottom: 14/1993
  34364. }
  34365. },
  34366. demon: {
  34367. height: math.unit(5, "km"),
  34368. name: "Demon",
  34369. image: {
  34370. source: "./media/characters/moonlight-rose/demon.svg",
  34371. extra: 986/916,
  34372. bottom: 28/1014
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "\"Natural\" height",
  34379. height: math.unit(5 + 11/12, "feet")
  34380. },
  34381. {
  34382. name: "Comfortable Size",
  34383. height: math.unit(40, "meters")
  34384. },
  34385. {
  34386. name: "Common Size",
  34387. height: math.unit(50, "km"),
  34388. default: true
  34389. },
  34390. {
  34391. name: "Demonic",
  34392. height: math.unit(1.24415e+21, "meters")
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(16, "feet"),
  34401. weight: math.unit(610, "kg"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/huckle/front.svg",
  34405. extra: 1731/1625,
  34406. bottom: 33/1764
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(16, "feet"),
  34411. weight: math.unit(610, "kg"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/huckle/back.svg",
  34415. extra: 1738/1651,
  34416. bottom: 37/1775
  34417. }
  34418. },
  34419. laughing: {
  34420. height: math.unit(3.75, "feet"),
  34421. name: "Laughing",
  34422. image: {
  34423. source: "./media/characters/huckle/laughing.svg"
  34424. }
  34425. },
  34426. angry: {
  34427. height: math.unit(4.15, "feet"),
  34428. name: "Angry",
  34429. image: {
  34430. source: "./media/characters/huckle/angry.svg"
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(16, "feet"),
  34438. default: true
  34439. },
  34440. {
  34441. name: "Mini Macro",
  34442. height: math.unit(463, "feet")
  34443. },
  34444. {
  34445. name: "Macro",
  34446. height: math.unit(1680, "meters")
  34447. },
  34448. {
  34449. name: "Mega Macro",
  34450. height: math.unit(175, "km")
  34451. },
  34452. {
  34453. name: "Terra Macro",
  34454. height: math.unit(32, "gigameters")
  34455. },
  34456. {
  34457. name: "Multiverse+",
  34458. height: math.unit(2.56e23, "yottameters")
  34459. },
  34460. ]
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(6 + 9/12, "feet"),
  34467. weight: math.unit(280, "lb"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/candy/front.svg",
  34471. extra: 234/217,
  34472. bottom: 11/245
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Really Small",
  34479. height: math.unit(0.1, "nm")
  34480. },
  34481. {
  34482. name: "Micro",
  34483. height: math.unit(2, "inches")
  34484. },
  34485. {
  34486. name: "Normal",
  34487. height: math.unit(6 + 9/12, "feet"),
  34488. default: true
  34489. },
  34490. {
  34491. name: "Small Macro",
  34492. height: math.unit(69, "feet")
  34493. },
  34494. {
  34495. name: "Macro",
  34496. height: math.unit(160, "feet")
  34497. },
  34498. {
  34499. name: "Megamacro",
  34500. height: math.unit(22000, "miles")
  34501. },
  34502. {
  34503. name: "Gigamacro",
  34504. height: math.unit(50000, "miles")
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(4, "feet"),
  34513. weight: math.unit(90, "lb"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/joey-mcdonald/front.svg",
  34517. extra: 1059/852,
  34518. bottom: 33/1092
  34519. }
  34520. },
  34521. back: {
  34522. height: math.unit(4, "feet"),
  34523. weight: math.unit(90, "lb"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/joey-mcdonald/back.svg",
  34527. extra: 1077/879,
  34528. bottom: 5/1082
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(4, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(12 + 6/12, "feet"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/kass-lockheed/front.svg",
  34548. extra: 354/343,
  34549. bottom: 9/363
  34550. }
  34551. },
  34552. back: {
  34553. height: math.unit(12 + 6/12, "feet"),
  34554. name: "Back",
  34555. image: {
  34556. source: "./media/characters/kass-lockheed/back.svg",
  34557. extra: 364/352,
  34558. bottom: 3/367
  34559. }
  34560. },
  34561. dick: {
  34562. height: math.unit(3.12, "feet"),
  34563. name: "Dick",
  34564. image: {
  34565. source: "./media/characters/kass-lockheed/dick.svg"
  34566. }
  34567. },
  34568. head: {
  34569. height: math.unit(2.6, "feet"),
  34570. name: "Head",
  34571. image: {
  34572. source: "./media/characters/kass-lockheed/head.svg"
  34573. }
  34574. },
  34575. bleh: {
  34576. height: math.unit(2.85, "feet"),
  34577. name: "Bleh",
  34578. image: {
  34579. source: "./media/characters/kass-lockheed/bleh.svg"
  34580. }
  34581. },
  34582. smug: {
  34583. height: math.unit(2.85, "feet"),
  34584. name: "Smug",
  34585. image: {
  34586. source: "./media/characters/kass-lockheed/smug.svg"
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(12 + 6/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6 + 2/12, "feet"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/taylor/front.svg",
  34606. extra: 639/495,
  34607. bottom: 12/651
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(6 + 2/12, "feet"),
  34615. default: true
  34616. },
  34617. {
  34618. name: "Big",
  34619. height: math.unit(15, "feet")
  34620. },
  34621. {
  34622. name: "Lorg",
  34623. height: math.unit(80, "feet")
  34624. },
  34625. {
  34626. name: "Too Lorg",
  34627. height: math.unit(120, "feet")
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34633. {
  34634. front: {
  34635. height: math.unit(15, "feet"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/kaizer/front.svg",
  34639. extra: 1612/1436,
  34640. bottom: 43/1655
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Normal",
  34647. height: math.unit(15, "feet"),
  34648. default: true
  34649. },
  34650. ]
  34651. ))
  34652. characterMakers.push(() => makeCharacter(
  34653. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34654. {
  34655. front: {
  34656. height: math.unit(2, "feet"),
  34657. weight: math.unit(30, "lb"),
  34658. name: "Front",
  34659. image: {
  34660. source: "./media/characters/sandy/front.svg",
  34661. extra: 1439/1307,
  34662. bottom: 194/1633
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(2, "feet"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(3, "feet"),
  34679. name: "Front",
  34680. image: {
  34681. source: "./media/characters/mellvi/front.svg",
  34682. extra: 1831/1630,
  34683. bottom: 58/1889
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(3, "feet"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(5 + 11/12, "feet"),
  34700. weight: math.unit(200, "lb"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/shirou/front.svg",
  34704. extra: 2491/2383,
  34705. bottom: 189/2680
  34706. }
  34707. },
  34708. back: {
  34709. height: math.unit(5 + 11/12, "feet"),
  34710. weight: math.unit(200, "lb"),
  34711. name: "Back",
  34712. image: {
  34713. source: "./media/characters/shirou/back.svg",
  34714. extra: 2554/2450,
  34715. bottom: 76/2630
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(5 + 11/12, "feet"),
  34723. default: true
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34729. {
  34730. front: {
  34731. height: math.unit(6 + 3/12, "feet"),
  34732. weight: math.unit(177, "lb"),
  34733. name: "Front",
  34734. image: {
  34735. source: "./media/characters/noryu/front.svg",
  34736. extra: 973/885,
  34737. bottom: 10/983
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(6 + 3/12, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(5 + 6/12, "feet"),
  34754. weight: math.unit(170, "lb"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/mevolas-rubenido/front.svg",
  34758. extra: 2109/1901,
  34759. bottom: 96/2205
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(5 + 6/12, "feet"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34773. {
  34774. front: {
  34775. height: math.unit(100, "feet"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/dee/front.svg",
  34779. extra: 2153/2036,
  34780. bottom: 59/2212
  34781. }
  34782. },
  34783. back: {
  34784. height: math.unit(100, "feet"),
  34785. name: "Back",
  34786. image: {
  34787. source: "./media/characters/dee/back.svg",
  34788. extra: 2183/2058,
  34789. bottom: 75/2258
  34790. }
  34791. },
  34792. foot: {
  34793. height: math.unit(19.43, "feet"),
  34794. name: "Foot",
  34795. image: {
  34796. source: "./media/characters/dee/foot.svg"
  34797. }
  34798. },
  34799. hoof: {
  34800. height: math.unit(20.6, "feet"),
  34801. name: "Hoof",
  34802. image: {
  34803. source: "./media/characters/dee/hoof.svg"
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Macro",
  34810. height: math.unit(100, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(5 + 6/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/teh/front.svg",
  34823. extra: 1002/847,
  34824. bottom: 62/1064
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(5 + 6/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34838. {
  34839. side: {
  34840. height: math.unit(6 + 1/12, "feet"),
  34841. weight: math.unit(204, "lb"),
  34842. name: "Side",
  34843. image: {
  34844. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34845. extra: 974/775,
  34846. bottom: 169/1143
  34847. }
  34848. },
  34849. sitting: {
  34850. height: math.unit(6 + 2/12, "feet"),
  34851. weight: math.unit(204, "lb"),
  34852. name: "Sitting",
  34853. image: {
  34854. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34855. extra: 1175/964,
  34856. bottom: 378/1553
  34857. }
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Normal",
  34863. height: math.unit(6 + 1/12, "feet"),
  34864. default: true
  34865. },
  34866. ]
  34867. ))
  34868. characterMakers.push(() => makeCharacter(
  34869. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34870. {
  34871. front: {
  34872. height: math.unit(6, "inches"),
  34873. name: "Front",
  34874. image: {
  34875. source: "./media/characters/tululi/front.svg",
  34876. extra: 1997/1876,
  34877. bottom: 20/2017
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(6, "inches"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(4 + 1/12, "feet"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/star/front.svg",
  34897. extra: 1493/1189,
  34898. bottom: 48/1541
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(4 + 1/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(6 + 3/12, "feet"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/comet/front.svg",
  34918. extra: 1681/1462,
  34919. bottom: 26/1707
  34920. }
  34921. },
  34922. },
  34923. [
  34924. {
  34925. name: "Normal",
  34926. height: math.unit(6 + 3/12, "feet"),
  34927. default: true
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34933. {
  34934. front: {
  34935. height: math.unit(950, "feet"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/vortex/front.svg",
  34939. extra: 1497/1434,
  34940. bottom: 56/1553
  34941. }
  34942. },
  34943. maw: {
  34944. height: math.unit(285, "feet"),
  34945. name: "Maw",
  34946. image: {
  34947. source: "./media/characters/vortex/maw.svg"
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Macro",
  34954. height: math.unit(950, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(600, "feet"),
  34964. weight: math.unit(0.02, "grams"),
  34965. name: "Front",
  34966. image: {
  34967. source: "./media/characters/doodle/front.svg",
  34968. extra: 1578/1413,
  34969. bottom: 37/1615
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Macro",
  34976. height: math.unit(600, "feet"),
  34977. default: true
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(6 + 6/12, "feet"),
  34986. name: "Front",
  34987. image: {
  34988. source: "./media/characters/jai/front.svg",
  34989. extra: 1645/1534,
  34990. bottom: 115/1760
  34991. }
  34992. },
  34993. },
  34994. [
  34995. {
  34996. name: "Normal",
  34997. height: math.unit(6 + 6/12, "feet"),
  34998. default: true
  34999. },
  35000. ]
  35001. ))
  35002. characterMakers.push(() => makeCharacter(
  35003. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35004. {
  35005. front: {
  35006. height: math.unit(6 + 8/12, "feet"),
  35007. name: "Front",
  35008. image: {
  35009. source: "./media/characters/pixel/front.svg",
  35010. extra: 1900/1735,
  35011. bottom: 63/1963
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(6 + 8/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35025. {
  35026. front: {
  35027. height: math.unit(4 + 11/12, "feet"),
  35028. weight: math.unit(111, "lb"),
  35029. name: "Front",
  35030. image: {
  35031. source: "./media/characters/rhett/front.svg",
  35032. extra: 1682/1586,
  35033. bottom: 92/1774
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Mini",
  35040. height: math.unit(1 + 1/12, "feet")
  35041. },
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(4 + 11/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(3 + 3/12, "feet"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/penny/front.svg",
  35057. extra: 1406/1311,
  35058. bottom: 26/1432
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(3 + 3/12, "feet"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(4 + 11/12, "feet"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/monty/front.svg",
  35078. extra: 1479/1209,
  35079. bottom: 0/1479
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(4 + 11/12, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(8 + 4/12, "feet"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/sterling/front.svg",
  35099. extra: 1420/1236,
  35100. bottom: 27/1447
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(8 + 4/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(15, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/marble/front.svg",
  35120. extra: 973/937,
  35121. bottom: 32/1005
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(15, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35135. {
  35136. front: {
  35137. height: math.unit(3, "inches"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/powder/front.svg",
  35141. extra: 1504/1334,
  35142. bottom: 518/2022
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(3, "inches"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(4 + 5/12, "feet"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/joey-raccoon/front.svg",
  35162. extra: 1273/1197,
  35163. bottom: 0/1273
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(4 + 5/12, "feet"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(8 + 4/12, "feet"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/vick/front.svg",
  35183. extra: 2187/2118,
  35184. bottom: 47/2234
  35185. }
  35186. },
  35187. },
  35188. [
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(8 + 4/12, "feet"),
  35192. default: true
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(5 + 5/12, "feet"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/mitsy/front.svg",
  35204. extra: 1842/1695,
  35205. bottom: 0/1842
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(5 + 5/12, "feet"),
  35213. default: true
  35214. },
  35215. ]
  35216. ))
  35217. characterMakers.push(() => makeCharacter(
  35218. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35219. {
  35220. front: {
  35221. height: math.unit(6 + 3/12, "feet"),
  35222. name: "Front",
  35223. image: {
  35224. source: "./media/characters/silvy/front.svg",
  35225. extra: 1995/1836,
  35226. bottom: 225/2220
  35227. }
  35228. },
  35229. },
  35230. [
  35231. {
  35232. name: "Normal",
  35233. height: math.unit(6 + 3/12, "feet"),
  35234. default: true
  35235. },
  35236. ]
  35237. ))
  35238. characterMakers.push(() => makeCharacter(
  35239. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35240. {
  35241. front: {
  35242. height: math.unit(3 + 8/12, "feet"),
  35243. name: "Front",
  35244. image: {
  35245. source: "./media/characters/rodney/front.svg",
  35246. extra: 1956/1747,
  35247. bottom: 31/1987
  35248. }
  35249. },
  35250. frontDressed: {
  35251. height: math.unit(2.9, "feet"),
  35252. name: "Front (Dressed)",
  35253. image: {
  35254. source: "./media/characters/rodney/front-dressed.svg",
  35255. extra: 1382/1241,
  35256. bottom: 385/1767
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(3 + 8/12, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(5 + 9/12, "feet"),
  35273. weight: math.unit(194, "lbs"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/zakail-sudekai/front.svg",
  35277. extra: 2696/2533,
  35278. bottom: 248/2944
  35279. }
  35280. },
  35281. maw: {
  35282. height: math.unit(1.35, "feet"),
  35283. name: "Maw",
  35284. image: {
  35285. source: "./media/characters/zakail-sudekai/maw.svg"
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(5 + 9/12, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(8 + 4/12, "feet"),
  35302. weight: math.unit(1200, "lb"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/eleanor/front.svg",
  35306. extra: 1226/1192,
  35307. bottom: 52/1278
  35308. }
  35309. },
  35310. back: {
  35311. height: math.unit(8 + 4/12, "feet"),
  35312. weight: math.unit(1200, "lb"),
  35313. name: "Back",
  35314. image: {
  35315. source: "./media/characters/eleanor/back.svg",
  35316. extra: 1242/1184,
  35317. bottom: 60/1302
  35318. }
  35319. },
  35320. head: {
  35321. height: math.unit(2.62, "feet"),
  35322. name: "Head",
  35323. image: {
  35324. source: "./media/characters/eleanor/head.svg"
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(8 + 4/12, "feet"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(8 + 4/12, "feet"),
  35341. weight: math.unit(750, "lb"),
  35342. name: "Front",
  35343. image: {
  35344. source: "./media/characters/tanya/front.svg",
  35345. extra: 1749/1615,
  35346. bottom: 33/1782
  35347. }
  35348. },
  35349. },
  35350. [
  35351. {
  35352. name: "Normal",
  35353. height: math.unit(8 + 4/12, "feet"),
  35354. default: true
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(5, "feet"),
  35363. weight: math.unit(225, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/cindy/front.svg",
  35367. extra: 1320/1250,
  35368. bottom: 42/1362
  35369. }
  35370. },
  35371. frontDressed: {
  35372. height: math.unit(5, "feet"),
  35373. weight: math.unit(225, "lb"),
  35374. name: "Front (Dressed)",
  35375. image: {
  35376. source: "./media/characters/cindy/front-dressed.svg",
  35377. extra: 1320/1250,
  35378. bottom: 42/1362
  35379. }
  35380. },
  35381. back: {
  35382. height: math.unit(5, "feet"),
  35383. weight: math.unit(225, "lb"),
  35384. name: "Back",
  35385. image: {
  35386. source: "./media/characters/cindy/back.svg",
  35387. extra: 1384/1346,
  35388. bottom: 14/1398
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(5, "feet"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(6 + 9/12, "feet"),
  35405. weight: math.unit(440, "lb"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/wilbur-owen/front.svg",
  35409. extra: 1575/1448,
  35410. bottom: 72/1647
  35411. }
  35412. },
  35413. back: {
  35414. height: math.unit(6 + 9/12, "feet"),
  35415. weight: math.unit(440, "lb"),
  35416. name: "Back",
  35417. image: {
  35418. source: "./media/characters/wilbur-owen/back.svg",
  35419. extra: 1578/1445,
  35420. bottom: 36/1614
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(6 + 9/12, "feet"),
  35428. default: true
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(6 + 5/12, "feet"),
  35437. weight: math.unit(650, "lb"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/keegan/front.svg",
  35441. extra: 2387/2198,
  35442. bottom: 33/2420
  35443. }
  35444. },
  35445. side: {
  35446. height: math.unit(6 + 5/12, "feet"),
  35447. weight: math.unit(650, "lb"),
  35448. name: "Side",
  35449. image: {
  35450. source: "./media/characters/keegan/side.svg",
  35451. extra: 2390/2202,
  35452. bottom: 47/2437
  35453. }
  35454. },
  35455. back: {
  35456. height: math.unit(6 + 5/12, "feet"),
  35457. weight: math.unit(650, "lb"),
  35458. name: "Back",
  35459. image: {
  35460. source: "./media/characters/keegan/back.svg",
  35461. extra: 2418/2268,
  35462. bottom: 15/2433
  35463. }
  35464. },
  35465. frontSfw: {
  35466. height: math.unit(6 + 5/12, "feet"),
  35467. weight: math.unit(650, "lb"),
  35468. name: "Front (SFW)",
  35469. image: {
  35470. source: "./media/characters/keegan/front-sfw.svg",
  35471. extra: 2387/2198,
  35472. bottom: 33/2420
  35473. }
  35474. },
  35475. beans: {
  35476. height: math.unit(1.85, "feet"),
  35477. name: "Beans",
  35478. image: {
  35479. source: "./media/characters/keegan/beans.svg"
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(6 + 5/12, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(9, "feet"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/colton/front.svg",
  35499. extra: 1589/1326,
  35500. bottom: 139/1728
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(9, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(2 + 9/12, "feet"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/bora/front.svg",
  35520. extra: 1265/1250,
  35521. bottom: 24/1289
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(2 + 9/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(8, "feet"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/myu-myu/front.svg",
  35541. extra: 1949/1857,
  35542. bottom: 90/2039
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(8, "feet"),
  35550. default: true
  35551. },
  35552. {
  35553. name: "Big",
  35554. height: math.unit(15, "feet")
  35555. },
  35556. {
  35557. name: "BIG",
  35558. height: math.unit(25, "feet")
  35559. },
  35560. ]
  35561. ))
  35562. characterMakers.push(() => makeCharacter(
  35563. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35564. {
  35565. side: {
  35566. height: math.unit(7 + 5/12, "feet"),
  35567. weight: math.unit(2800, "lb"),
  35568. name: "Side",
  35569. image: {
  35570. source: "./media/characters/haloren/side.svg",
  35571. extra: 1793/409,
  35572. bottom: 59/1852
  35573. }
  35574. },
  35575. frontPaw: {
  35576. height: math.unit(2.36, "feet"),
  35577. name: "Front paw",
  35578. image: {
  35579. source: "./media/characters/haloren/front-paw.svg"
  35580. }
  35581. },
  35582. hindPaw: {
  35583. height: math.unit(3.18, "feet"),
  35584. name: "Hind paw",
  35585. image: {
  35586. source: "./media/characters/haloren/hind-paw.svg"
  35587. }
  35588. },
  35589. maw: {
  35590. height: math.unit(5.05, "feet"),
  35591. name: "Maw",
  35592. image: {
  35593. source: "./media/characters/haloren/maw.svg"
  35594. }
  35595. },
  35596. dick: {
  35597. height: math.unit(2.90, "feet"),
  35598. name: "Dick",
  35599. image: {
  35600. source: "./media/characters/haloren/dick.svg"
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(7 + 5/12, "feet"),
  35608. default: true
  35609. },
  35610. {
  35611. name: "Enhanced",
  35612. height: math.unit(14 + 3/12, "feet")
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(171, "cm"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/kimmy/front.svg",
  35624. extra: 1491/1435,
  35625. bottom: 53/1544
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Small",
  35632. height: math.unit(9, "cm")
  35633. },
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(171, "cm"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35643. {
  35644. front: {
  35645. height: math.unit(8, "feet"),
  35646. weight: math.unit(300, "lb"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/galeboomer/front.svg",
  35650. extra: 4651/4415,
  35651. bottom: 162/4813
  35652. }
  35653. },
  35654. back: {
  35655. height: math.unit(8, "feet"),
  35656. weight: math.unit(300, "lb"),
  35657. name: "Back",
  35658. image: {
  35659. source: "./media/characters/galeboomer/back.svg",
  35660. extra: 4544/4314,
  35661. bottom: 16/4560
  35662. }
  35663. },
  35664. frontAlt: {
  35665. height: math.unit(8, "feet"),
  35666. weight: math.unit(300, "lb"),
  35667. name: "Front (Alt)",
  35668. image: {
  35669. source: "./media/characters/galeboomer/front-alt.svg",
  35670. extra: 4458/4228,
  35671. bottom: 68/4526
  35672. }
  35673. },
  35674. maw: {
  35675. height: math.unit(1.2, "feet"),
  35676. name: "Maw",
  35677. image: {
  35678. source: "./media/characters/galeboomer/maw.svg"
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(8, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(5 + 9/12, "feet"),
  35695. weight: math.unit(120, "lb"),
  35696. name: "Front",
  35697. image: {
  35698. source: "./media/characters/chyr/front.svg",
  35699. extra: 1323/1254,
  35700. bottom: 63/1386
  35701. }
  35702. },
  35703. back: {
  35704. height: math.unit(5 + 9/12, "feet"),
  35705. weight: math.unit(120, "lb"),
  35706. name: "Back",
  35707. image: {
  35708. source: "./media/characters/chyr/back.svg",
  35709. extra: 1323/1252,
  35710. bottom: 48/1371
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(5 + 9/12, "feet"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(7, "feet"),
  35727. weight: math.unit(310, "lb"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/solarus/front.svg",
  35731. extra: 2415/2021,
  35732. bottom: 103/2518
  35733. }
  35734. },
  35735. back: {
  35736. height: math.unit(7, "feet"),
  35737. weight: math.unit(310, "lb"),
  35738. name: "Back",
  35739. image: {
  35740. source: "./media/characters/solarus/back.svg",
  35741. extra: 2463/2089,
  35742. bottom: 79/2542
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(7, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(16, "feet"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35762. extra: 1844/1780,
  35763. bottom: 58/1902
  35764. }
  35765. },
  35766. winterCoat: {
  35767. height: math.unit(16, "feet"),
  35768. name: "Winter Coat",
  35769. image: {
  35770. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35771. extra: 1807/1775,
  35772. bottom: 69/1876
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(16, "feet"),
  35780. default: true
  35781. },
  35782. {
  35783. name: "Chicago Size",
  35784. height: math.unit(560, "feet")
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(11 + 6/12, "feet"),
  35793. weight: math.unit(1366, "lb"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/lexor/front.svg",
  35797. extra: 1560/1481,
  35798. bottom: 211/1771
  35799. }
  35800. },
  35801. back: {
  35802. height: math.unit(11 + 6/12, "feet"),
  35803. weight: math.unit(1366, "lb"),
  35804. name: "Back",
  35805. image: {
  35806. source: "./media/characters/lexor/back.svg",
  35807. extra: 1614/1533,
  35808. bottom: 76/1690
  35809. }
  35810. },
  35811. maw: {
  35812. height: math.unit(3, "feet"),
  35813. name: "Maw",
  35814. image: {
  35815. source: "./media/characters/lexor/maw.svg"
  35816. }
  35817. },
  35818. dick: {
  35819. height: math.unit(2.59, "feet"),
  35820. name: "Dick",
  35821. image: {
  35822. source: "./media/characters/lexor/dick.svg"
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(11 + 6/12, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(5 + 8/12, "feet"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/magnum/front.svg",
  35842. extra: 942/855,
  35843. bottom: 26/968
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(5 + 8/12, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(18 + 4/12, "feet"),
  35860. weight: math.unit(1500, "kg"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/solas-sharpsman/front.svg",
  35864. extra: 1698/1589,
  35865. bottom: 0/1698
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(18 + 4/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(5 + 5/12, "feet"),
  35882. weight: math.unit(180, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/october/front.svg",
  35886. extra: 1800/1650,
  35887. bottom: 0/1800
  35888. }
  35889. },
  35890. frontNsfw: {
  35891. height: math.unit(5 + 5/12, "feet"),
  35892. weight: math.unit(180, "lb"),
  35893. name: "Front (NSFW)",
  35894. image: {
  35895. source: "./media/characters/october/front-nsfw.svg",
  35896. extra: 1392/1307,
  35897. bottom: 42/1434
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(5 + 5/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(8 + 6/12, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/essynkardi/front.svg",
  35917. extra: 1914/1846,
  35918. bottom: 22/1936
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(8 + 6/12, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(6 + 6/12, "feet"),
  35935. weight: math.unit(7, "lb"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/icky/front.svg",
  35939. extra: 813/782,
  35940. bottom: 66/879
  35941. }
  35942. },
  35943. back: {
  35944. height: math.unit(6 + 6/12, "feet"),
  35945. weight: math.unit(7, "lb"),
  35946. name: "Back",
  35947. image: {
  35948. source: "./media/characters/icky/back.svg",
  35949. extra: 754/735,
  35950. bottom: 56/810
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(6 + 6/12, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35964. {
  35965. front: {
  35966. height: math.unit(15, "feet"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/rojas/front.svg",
  35970. extra: 1462/1408,
  35971. bottom: 95/1557
  35972. }
  35973. },
  35974. back: {
  35975. height: math.unit(15, "feet"),
  35976. name: "Back",
  35977. image: {
  35978. source: "./media/characters/rojas/back.svg",
  35979. extra: 1023/954,
  35980. bottom: 28/1051
  35981. }
  35982. },
  35983. },
  35984. [
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(15, "feet"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35994. {
  35995. frontHuman: {
  35996. height: math.unit(5 + 7/12, "feet"),
  35997. name: "Front (Human)",
  35998. image: {
  35999. source: "./media/characters/alek-dryagan/front-human.svg",
  36000. extra: 1687/1667,
  36001. bottom: 69/1756
  36002. }
  36003. },
  36004. backHuman: {
  36005. height: math.unit(5 + 7/12, "feet"),
  36006. name: "Back (Human)",
  36007. image: {
  36008. source: "./media/characters/alek-dryagan/back-human.svg",
  36009. extra: 1670/1649,
  36010. bottom: 65/1735
  36011. }
  36012. },
  36013. frontDemi: {
  36014. height: math.unit(65, "feet"),
  36015. name: "Front (Demi)",
  36016. image: {
  36017. source: "./media/characters/alek-dryagan/front-demi.svg",
  36018. extra: 1669/1642,
  36019. bottom: 49/1718
  36020. }
  36021. },
  36022. backDemi: {
  36023. height: math.unit(65, "feet"),
  36024. name: "Back (Demi)",
  36025. image: {
  36026. source: "./media/characters/alek-dryagan/back-demi.svg",
  36027. extra: 1658/1637,
  36028. bottom: 40/1698
  36029. }
  36030. },
  36031. mawHuman: {
  36032. height: math.unit(0.3, "feet"),
  36033. name: "Maw (Human)",
  36034. image: {
  36035. source: "./media/characters/alek-dryagan/maw-human.svg"
  36036. }
  36037. },
  36038. mawDemi: {
  36039. height: math.unit(3.8, "feet"),
  36040. name: "Maw (Demi)",
  36041. image: {
  36042. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(5 + 7/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36056. {
  36057. frontHuman: {
  36058. height: math.unit(5 + 2/12, "feet"),
  36059. name: "Front (Human)",
  36060. image: {
  36061. source: "./media/characters/gen/front-human.svg",
  36062. extra: 1627/1538,
  36063. bottom: 71/1698
  36064. }
  36065. },
  36066. backHuman: {
  36067. height: math.unit(5 + 2/12, "feet"),
  36068. name: "Back (Human)",
  36069. image: {
  36070. source: "./media/characters/gen/back-human.svg",
  36071. extra: 1638/1548,
  36072. bottom: 69/1707
  36073. }
  36074. },
  36075. frontDemi: {
  36076. height: math.unit(5 + 2/12, "feet"),
  36077. name: "Front (Demi)",
  36078. image: {
  36079. source: "./media/characters/gen/front-demi.svg",
  36080. extra: 1627/1538,
  36081. bottom: 71/1698
  36082. }
  36083. },
  36084. backDemi: {
  36085. height: math.unit(5 + 2/12, "feet"),
  36086. name: "Back (Demi)",
  36087. image: {
  36088. source: "./media/characters/gen/back-demi.svg",
  36089. extra: 1638/1548,
  36090. bottom: 69/1707
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(5 + 2/12, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36104. {
  36105. frontImp: {
  36106. height: math.unit(1 + 11/12, "feet"),
  36107. name: "Front (Imp)",
  36108. image: {
  36109. source: "./media/characters/max-kobold/front-imp.svg",
  36110. extra: 1238/1134,
  36111. bottom: 81/1319
  36112. }
  36113. },
  36114. backImp: {
  36115. height: math.unit(1 + 11/12, "feet"),
  36116. name: "Back (Imp)",
  36117. image: {
  36118. source: "./media/characters/max-kobold/back-imp.svg",
  36119. extra: 1334/1175,
  36120. bottom: 34/1368
  36121. }
  36122. },
  36123. frontDemi: {
  36124. height: math.unit(5 + 9/12, "feet"),
  36125. name: "Front (Demi)",
  36126. image: {
  36127. source: "./media/characters/max-kobold/front-demi.svg",
  36128. extra: 1715/1685,
  36129. bottom: 54/1769
  36130. }
  36131. },
  36132. backDemi: {
  36133. height: math.unit(5 + 9/12, "feet"),
  36134. name: "Back (Demi)",
  36135. image: {
  36136. source: "./media/characters/max-kobold/back-demi.svg",
  36137. extra: 1752/1729,
  36138. bottom: 41/1793
  36139. }
  36140. },
  36141. handImp: {
  36142. height: math.unit(0.45, "feet"),
  36143. name: "Hand (Imp)",
  36144. image: {
  36145. source: "./media/characters/max-kobold/hand.svg"
  36146. }
  36147. },
  36148. pawImp: {
  36149. height: math.unit(0.46, "feet"),
  36150. name: "Paw (Imp)",
  36151. image: {
  36152. source: "./media/characters/max-kobold/paw.svg"
  36153. }
  36154. },
  36155. handDemi: {
  36156. height: math.unit(0.80, "feet"),
  36157. name: "Hand (Demi)",
  36158. image: {
  36159. source: "./media/characters/max-kobold/hand.svg"
  36160. }
  36161. },
  36162. pawDemi: {
  36163. height: math.unit(1.1, "feet"),
  36164. name: "Paw (Demi)",
  36165. image: {
  36166. source: "./media/characters/max-kobold/paw.svg"
  36167. }
  36168. },
  36169. headImp: {
  36170. height: math.unit(1.33, "feet"),
  36171. name: "Head (Imp)",
  36172. image: {
  36173. source: "./media/characters/max-kobold/head-imp.svg"
  36174. }
  36175. },
  36176. mawImp: {
  36177. height: math.unit(0.75, "feet"),
  36178. name: "Maw (Imp)",
  36179. image: {
  36180. source: "./media/characters/max-kobold/maw-imp.svg"
  36181. }
  36182. },
  36183. mawDemi: {
  36184. height: math.unit(0.42, "feet"),
  36185. name: "Maw (Demi)",
  36186. image: {
  36187. source: "./media/characters/max-kobold/maw-demi.svg"
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(1 + 11/12, "feet"),
  36195. default: true
  36196. },
  36197. ]
  36198. ))
  36199. characterMakers.push(() => makeCharacter(
  36200. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36201. {
  36202. front: {
  36203. height: math.unit(7 + 5/12, "feet"),
  36204. name: "Front",
  36205. image: {
  36206. source: "./media/characters/carbon/front.svg",
  36207. extra: 1754/1689,
  36208. bottom: 65/1819
  36209. }
  36210. },
  36211. back: {
  36212. height: math.unit(7 + 5/12, "feet"),
  36213. name: "Back",
  36214. image: {
  36215. source: "./media/characters/carbon/back.svg",
  36216. extra: 1762/1695,
  36217. bottom: 24/1786
  36218. }
  36219. },
  36220. frontGigantamax: {
  36221. height: math.unit(150, "feet"),
  36222. name: "Front (Gigantamax)",
  36223. image: {
  36224. source: "./media/characters/carbon/front-gigantamax.svg",
  36225. extra: 1826/1669,
  36226. bottom: 59/1885
  36227. }
  36228. },
  36229. backGigantamax: {
  36230. height: math.unit(150, "feet"),
  36231. name: "Back (Gigantamax)",
  36232. image: {
  36233. source: "./media/characters/carbon/back-gigantamax.svg",
  36234. extra: 1796/1653,
  36235. bottom: 53/1849
  36236. }
  36237. },
  36238. maw: {
  36239. height: math.unit(0.48, "feet"),
  36240. name: "Maw",
  36241. image: {
  36242. source: "./media/characters/carbon/maw.svg"
  36243. }
  36244. },
  36245. mawGigantamax: {
  36246. height: math.unit(7.5, "feet"),
  36247. name: "Maw (Gigantamax)",
  36248. image: {
  36249. source: "./media/characters/carbon/maw-gigantamax.svg"
  36250. }
  36251. },
  36252. },
  36253. [
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(7 + 5/12, "feet"),
  36257. default: true
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36263. {
  36264. front: {
  36265. height: math.unit(6, "feet"),
  36266. name: "Front",
  36267. image: {
  36268. source: "./media/characters/maverick/front.svg",
  36269. extra: 1672/1661,
  36270. bottom: 85/1757
  36271. }
  36272. },
  36273. back: {
  36274. height: math.unit(6, "feet"),
  36275. name: "Back",
  36276. image: {
  36277. source: "./media/characters/maverick/back.svg",
  36278. extra: 1642/1631,
  36279. bottom: 38/1680
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Normal",
  36286. height: math.unit(6, "feet"),
  36287. default: true
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(15, "feet"),
  36296. weight: math.unit(615, "lb"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/grockle/front.svg",
  36300. extra: 1535/1427,
  36301. bottom: 56/1591
  36302. }
  36303. },
  36304. },
  36305. [
  36306. {
  36307. name: "Normal",
  36308. height: math.unit(15, "feet"),
  36309. default: true
  36310. },
  36311. {
  36312. name: "Large",
  36313. height: math.unit(150, "feet")
  36314. },
  36315. {
  36316. name: "Macro",
  36317. height: math.unit(1876, "feet")
  36318. },
  36319. {
  36320. name: "Mega Macro",
  36321. height: math.unit(121940, "feet")
  36322. },
  36323. {
  36324. name: "Giga Macro",
  36325. height: math.unit(750, "km")
  36326. },
  36327. {
  36328. name: "Tera Macro",
  36329. height: math.unit(750000, "km")
  36330. },
  36331. {
  36332. name: "Galactic",
  36333. height: math.unit(1.4e5, "km")
  36334. },
  36335. {
  36336. name: "Godlike",
  36337. height: math.unit(9.8e280, "galaxies")
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(11, "meters"),
  36346. weight: math.unit(20, "tonnes"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/alistair/front.svg",
  36350. extra: 1265/1009,
  36351. bottom: 93/1358
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Normal",
  36358. height: math.unit(11, "meters"),
  36359. default: true
  36360. },
  36361. ]
  36362. ))
  36363. characterMakers.push(() => makeCharacter(
  36364. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36365. {
  36366. front: {
  36367. height: math.unit(5 + 8/12, "feet"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/haruka/front.svg",
  36371. extra: 2012/1952,
  36372. bottom: 0/2012
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(5 + 8/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36386. {
  36387. back: {
  36388. height: math.unit(9, "feet"),
  36389. name: "Back",
  36390. image: {
  36391. source: "./media/characters/vivian-sylveon/back.svg",
  36392. extra: 1853/1714,
  36393. bottom: 0/1853
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(9, "feet"),
  36401. default: true
  36402. },
  36403. {
  36404. name: "Macro",
  36405. height: math.unit(500, "feet")
  36406. },
  36407. {
  36408. name: "Megamacro",
  36409. height: math.unit(600, "miles")
  36410. },
  36411. {
  36412. name: "Gigamacro",
  36413. height: math.unit(30000, "miles")
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36419. {
  36420. anthro: {
  36421. height: math.unit(5 + 10/12, "feet"),
  36422. weight: math.unit(100, "lb"),
  36423. name: "Anthro",
  36424. image: {
  36425. source: "./media/characters/daiki/anthro.svg",
  36426. extra: 1115/1027,
  36427. bottom: 69/1184
  36428. }
  36429. },
  36430. feral: {
  36431. height: math.unit(200, "feet"),
  36432. name: "Feral",
  36433. image: {
  36434. source: "./media/characters/daiki/feral.svg",
  36435. extra: 1256/313,
  36436. bottom: 39/1295
  36437. }
  36438. },
  36439. feralHead: {
  36440. height: math.unit(171, "feet"),
  36441. name: "Feral Head",
  36442. image: {
  36443. source: "./media/characters/daiki/feral-head.svg"
  36444. }
  36445. },
  36446. manaDragon: {
  36447. height: math.unit(170, "meters"),
  36448. name: "Mana-dragon",
  36449. image: {
  36450. source: "./media/characters/daiki/mana-dragon.svg",
  36451. extra: 763/420,
  36452. bottom: 97/860
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(5 + 10/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36466. {
  36467. fullyEquippedFront: {
  36468. height: math.unit(3 + 1/12, "feet"),
  36469. weight: math.unit(24, "lb"),
  36470. name: "Fully Equipped (Front)",
  36471. image: {
  36472. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36473. extra: 687/605,
  36474. bottom: 18/705
  36475. }
  36476. },
  36477. fullyEquippedBack: {
  36478. height: math.unit(3 + 1/12, "feet"),
  36479. weight: math.unit(24, "lb"),
  36480. name: "Fully Equipped (Back)",
  36481. image: {
  36482. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36483. extra: 689/590,
  36484. bottom: 18/707
  36485. }
  36486. },
  36487. dailyWear: {
  36488. height: math.unit(3 + 1/12, "feet"),
  36489. weight: math.unit(24, "lb"),
  36490. name: "Daily Wear",
  36491. image: {
  36492. source: "./media/characters/tea-spot/daily-wear.svg",
  36493. extra: 701/620,
  36494. bottom: 21/722
  36495. }
  36496. },
  36497. maidWork: {
  36498. height: math.unit(3 + 1/12, "feet"),
  36499. weight: math.unit(24, "lb"),
  36500. name: "Maid Work",
  36501. image: {
  36502. source: "./media/characters/tea-spot/maid-work.svg",
  36503. extra: 693/609,
  36504. bottom: 15/708
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Normal",
  36511. height: math.unit(3 + 1/12, "feet"),
  36512. default: true
  36513. },
  36514. ]
  36515. ))
  36516. characterMakers.push(() => makeCharacter(
  36517. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36518. {
  36519. front: {
  36520. height: math.unit(175, "cm"),
  36521. weight: math.unit(75, "kg"),
  36522. name: "Front",
  36523. image: {
  36524. source: "./media/characters/chee/front.svg",
  36525. extra: 1796/1740,
  36526. bottom: 40/1836
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Micro-Micro",
  36533. height: math.unit(1, "nm")
  36534. },
  36535. {
  36536. name: "Micro-erst",
  36537. height: math.unit(1, "micrometer")
  36538. },
  36539. {
  36540. name: "Micro-er",
  36541. height: math.unit(1, "cm")
  36542. },
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(175, "cm"),
  36546. default: true
  36547. },
  36548. {
  36549. name: "Macro",
  36550. height: math.unit(100, "m")
  36551. },
  36552. {
  36553. name: "Macro-er",
  36554. height: math.unit(1, "km")
  36555. },
  36556. {
  36557. name: "Macro-erst",
  36558. height: math.unit(10, "km")
  36559. },
  36560. {
  36561. name: "Macro-Macro",
  36562. height: math.unit(100, "km")
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(11 + 9/12, "feet"),
  36571. weight: math.unit(935, "lb"),
  36572. name: "Front",
  36573. image: {
  36574. source: "./media/characters/kingsley/front.svg",
  36575. extra: 1803/1674,
  36576. bottom: 127/1930
  36577. }
  36578. },
  36579. frontNude: {
  36580. height: math.unit(11 + 9/12, "feet"),
  36581. weight: math.unit(935, "lb"),
  36582. name: "Front (Nude)",
  36583. image: {
  36584. source: "./media/characters/kingsley/front-nude.svg",
  36585. extra: 1803/1674,
  36586. bottom: 127/1930
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "Normal",
  36593. height: math.unit(11 + 9/12, "feet"),
  36594. default: true
  36595. },
  36596. ]
  36597. ))
  36598. characterMakers.push(() => makeCharacter(
  36599. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36600. {
  36601. side: {
  36602. height: math.unit(9, "feet"),
  36603. name: "Side",
  36604. image: {
  36605. source: "./media/characters/rymel/side.svg",
  36606. extra: 792/469,
  36607. bottom: 121/913
  36608. }
  36609. },
  36610. maw: {
  36611. height: math.unit(2.4, "meters"),
  36612. name: "Maw",
  36613. image: {
  36614. source: "./media/characters/rymel/maw.svg"
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "House Drake",
  36621. height: math.unit(2, "feet")
  36622. },
  36623. {
  36624. name: "Reduced",
  36625. height: math.unit(4.5, "feet")
  36626. },
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(9, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(1.74, "meters"),
  36639. weight: math.unit(55, "kg"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/rubus/front.svg",
  36643. extra: 1894/1742,
  36644. bottom: 44/1938
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(1.74, "meters"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36658. {
  36659. front: {
  36660. height: math.unit(5 + 2/12, "feet"),
  36661. weight: math.unit(112, "lb"),
  36662. name: "Front",
  36663. image: {
  36664. source: "./media/characters/cassie-kingston/front.svg",
  36665. extra: 1438/1390,
  36666. bottom: 47/1485
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(5 + 2/12, "feet"),
  36674. default: true
  36675. },
  36676. {
  36677. name: "Macro",
  36678. height: math.unit(128, "feet")
  36679. },
  36680. {
  36681. name: "Megamacro",
  36682. height: math.unit(2.56, "miles")
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(7, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/fox/front.svg",
  36694. extra: 1798/1703,
  36695. bottom: 55/1853
  36696. }
  36697. },
  36698. back: {
  36699. height: math.unit(7, "feet"),
  36700. name: "Back",
  36701. image: {
  36702. source: "./media/characters/fox/back.svg",
  36703. extra: 1748/1649,
  36704. bottom: 32/1780
  36705. }
  36706. },
  36707. head: {
  36708. height: math.unit(1.95, "feet"),
  36709. name: "Head",
  36710. image: {
  36711. source: "./media/characters/fox/head.svg"
  36712. }
  36713. },
  36714. dick: {
  36715. height: math.unit(1.33, "feet"),
  36716. name: "Dick",
  36717. image: {
  36718. source: "./media/characters/fox/dick.svg"
  36719. }
  36720. },
  36721. foot: {
  36722. height: math.unit(1, "feet"),
  36723. name: "Foot",
  36724. image: {
  36725. source: "./media/characters/fox/foot.svg"
  36726. }
  36727. },
  36728. paw: {
  36729. height: math.unit(0.92, "feet"),
  36730. name: "Paw",
  36731. image: {
  36732. source: "./media/characters/fox/paw.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Small",
  36739. height: math.unit(3, "inches")
  36740. },
  36741. {
  36742. name: "\"Realistic\"",
  36743. height: math.unit(7, "feet")
  36744. },
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(150, "feet"),
  36748. default: true
  36749. },
  36750. {
  36751. name: "BIG",
  36752. height: math.unit(1200, "feet")
  36753. },
  36754. {
  36755. name: "👀",
  36756. height: math.unit(5, "miles")
  36757. },
  36758. {
  36759. name: "👀👀👀",
  36760. height: math.unit(64, "miles")
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(625, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/asonja-rossa/front.svg",
  36772. extra: 1833/1686,
  36773. bottom: 24/1857
  36774. }
  36775. },
  36776. back: {
  36777. height: math.unit(625, "feet"),
  36778. name: "Back",
  36779. image: {
  36780. source: "./media/characters/asonja-rossa/back.svg",
  36781. extra: 1852/1753,
  36782. bottom: 26/1878
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Macro",
  36789. height: math.unit(625, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36796. {
  36797. side: {
  36798. height: math.unit(6, "feet"),
  36799. weight: math.unit(150, "lb"),
  36800. name: "Side",
  36801. image: {
  36802. source: "./media/characters/rezukii/side.svg",
  36803. extra: 979/542,
  36804. bottom: 87/1066
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Tiny",
  36811. height: math.unit(2, "feet")
  36812. },
  36813. {
  36814. name: "Smol",
  36815. height: math.unit(4, "feet")
  36816. },
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(8, "feet"),
  36820. default: true
  36821. },
  36822. {
  36823. name: "Big",
  36824. height: math.unit(12, "feet")
  36825. },
  36826. {
  36827. name: "Macro",
  36828. height: math.unit(30, "feet")
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(14, "feet"),
  36837. weight: math.unit(9.5, "tonnes"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/dawnheart/front.svg",
  36841. extra: 2792/2675,
  36842. bottom: 64/2856
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(14, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36856. {
  36857. front: {
  36858. height: math.unit(1.7, "m"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/gladi/front.svg",
  36862. extra: 1460/1362,
  36863. bottom: 19/1479
  36864. }
  36865. },
  36866. back: {
  36867. height: math.unit(1.7, "m"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/gladi/back.svg",
  36871. extra: 1459/1357,
  36872. bottom: 12/1471
  36873. }
  36874. },
  36875. feral: {
  36876. height: math.unit(2.05, "m"),
  36877. name: "Feral",
  36878. image: {
  36879. source: "./media/characters/gladi/feral.svg",
  36880. extra: 821/557,
  36881. bottom: 91/912
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Shortest",
  36888. height: math.unit(70, "cm")
  36889. },
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(1.7, "m")
  36893. },
  36894. {
  36895. name: "Macro",
  36896. height: math.unit(10, "m"),
  36897. default: true
  36898. },
  36899. {
  36900. name: "Tallest",
  36901. height: math.unit(200, "m")
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(5 + 7/12, "feet"),
  36910. weight: math.unit(92, "kg"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/erdno/front.svg",
  36914. extra: 1954/1889,
  36915. bottom: 22/1976
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Normal",
  36922. height: math.unit(5 + 7/12, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(5 + 10/12, "feet"),
  36932. weight: math.unit(150, "lb"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/jamie/front.svg",
  36936. extra: 1908/1768,
  36937. bottom: 19/1927
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Minimum",
  36944. height: math.unit(2, "cm")
  36945. },
  36946. {
  36947. name: "Micro",
  36948. height: math.unit(3, "inches")
  36949. },
  36950. {
  36951. name: "Normal",
  36952. height: math.unit(5 + 10/12, "feet"),
  36953. default: true
  36954. },
  36955. {
  36956. name: "Macro",
  36957. height: math.unit(150, "feet")
  36958. },
  36959. {
  36960. name: "Megamacro",
  36961. height: math.unit(10000, "m")
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(2, "meters"),
  36970. weight: math.unit(100, "kg"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/shiron/front.svg",
  36974. extra: 2103/1985,
  36975. bottom: 98/2201
  36976. }
  36977. },
  36978. back: {
  36979. height: math.unit(2, "meters"),
  36980. weight: math.unit(100, "kg"),
  36981. name: "Back",
  36982. image: {
  36983. source: "./media/characters/shiron/back.svg",
  36984. extra: 2110/2015,
  36985. bottom: 89/2199
  36986. }
  36987. },
  36988. hand: {
  36989. height: math.unit(0.96, "feet"),
  36990. name: "Hand",
  36991. image: {
  36992. source: "./media/characters/shiron/hand.svg"
  36993. }
  36994. },
  36995. foot: {
  36996. height: math.unit(1.464, "feet"),
  36997. name: "Foot",
  36998. image: {
  36999. source: "./media/characters/shiron/foot.svg"
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(2, "meters")
  37007. },
  37008. {
  37009. name: "Macro",
  37010. height: math.unit(500, "meters"),
  37011. default: true
  37012. },
  37013. {
  37014. name: "Megamacro",
  37015. height: math.unit(20, "km")
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(6, "feet"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/sam/front.svg",
  37027. extra: 849/826,
  37028. bottom: 19/868
  37029. }
  37030. },
  37031. },
  37032. [
  37033. {
  37034. name: "Normal",
  37035. height: math.unit(6, "feet"),
  37036. default: true
  37037. },
  37038. ]
  37039. ))
  37040. characterMakers.push(() => makeCharacter(
  37041. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37042. {
  37043. front: {
  37044. height: math.unit(8 + 4/12, "feet"),
  37045. weight: math.unit(122, "kg"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/namori-kurogawa/front.svg",
  37049. extra: 1894/1576,
  37050. bottom: 34/1928
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(8 + 4/12, "feet"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(9, "feet"),
  37067. weight: math.unit(621, "lb"),
  37068. name: "Front",
  37069. image: {
  37070. source: "./media/characters/unmru/front.svg",
  37071. extra: 1853/1747,
  37072. bottom: 73/1926
  37073. }
  37074. },
  37075. side: {
  37076. height: math.unit(9, "feet"),
  37077. weight: math.unit(621, "lb"),
  37078. name: "Side",
  37079. image: {
  37080. source: "./media/characters/unmru/side.svg",
  37081. extra: 1781/1671,
  37082. bottom: 127/1908
  37083. }
  37084. },
  37085. back: {
  37086. height: math.unit(9, "feet"),
  37087. weight: math.unit(621, "lb"),
  37088. name: "Back",
  37089. image: {
  37090. source: "./media/characters/unmru/back.svg",
  37091. extra: 1894/1765,
  37092. bottom: 75/1969
  37093. }
  37094. },
  37095. dick: {
  37096. height: math.unit(3, "feet"),
  37097. weight: math.unit(35, "lb"),
  37098. name: "Dick",
  37099. image: {
  37100. source: "./media/characters/unmru/dick.svg"
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(9, "feet")
  37108. },
  37109. {
  37110. name: "Natural",
  37111. height: math.unit(27, "feet"),
  37112. default: true
  37113. },
  37114. {
  37115. name: "Giant",
  37116. height: math.unit(90, "feet")
  37117. },
  37118. {
  37119. name: "Kaiju",
  37120. height: math.unit(270, "feet")
  37121. },
  37122. {
  37123. name: "Macro",
  37124. height: math.unit(900, "feet")
  37125. },
  37126. {
  37127. name: "Macro+",
  37128. height: math.unit(2700, "feet")
  37129. },
  37130. {
  37131. name: "Megamacro",
  37132. height: math.unit(9000, "feet")
  37133. },
  37134. {
  37135. name: "City-Crushing",
  37136. height: math.unit(27000, "feet")
  37137. },
  37138. {
  37139. name: "Mountain-Mashing",
  37140. height: math.unit(90000, "feet")
  37141. },
  37142. {
  37143. name: "Earth-Eclipsing",
  37144. height: math.unit(2.7e8, "feet")
  37145. },
  37146. {
  37147. name: "Sol-Swallowing",
  37148. height: math.unit(9e10, "feet")
  37149. },
  37150. {
  37151. name: "Majoris-Munching",
  37152. height: math.unit(2.7e13, "feet")
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37158. {
  37159. front: {
  37160. height: math.unit(1, "inch"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/squeaks-mouse/front.svg",
  37164. extra: 352/308,
  37165. bottom: 25/377
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Micro",
  37172. height: math.unit(1, "inch"),
  37173. default: true
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37179. {
  37180. side: {
  37181. height: math.unit(35, "feet"),
  37182. name: "Side",
  37183. image: {
  37184. source: "./media/characters/sayko/side.svg",
  37185. extra: 1697/1021,
  37186. bottom: 82/1779
  37187. }
  37188. },
  37189. head: {
  37190. height: math.unit(16, "feet"),
  37191. name: "Head",
  37192. image: {
  37193. source: "./media/characters/sayko/head.svg"
  37194. }
  37195. },
  37196. forepaw: {
  37197. height: math.unit(7.85, "feet"),
  37198. name: "Forepaw",
  37199. image: {
  37200. source: "./media/characters/sayko/forepaw.svg"
  37201. }
  37202. },
  37203. hindpaw: {
  37204. height: math.unit(8.8, "feet"),
  37205. name: "Hindpaw",
  37206. image: {
  37207. source: "./media/characters/sayko/hindpaw.svg"
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(35, "feet"),
  37215. default: true
  37216. },
  37217. {
  37218. name: "Colossus",
  37219. height: math.unit(100, "meters")
  37220. },
  37221. {
  37222. name: "\"Small\" Deity",
  37223. height: math.unit(1, "km")
  37224. },
  37225. {
  37226. name: "\"Large\" Deity",
  37227. height: math.unit(15, "km")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(6, "feet"),
  37236. weight: math.unit(250, "lb"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/mukiro/front.svg",
  37240. extra: 1368/1310,
  37241. bottom: 34/1402
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(6, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(12 + 4/12, "feet"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37261. extra: 1346/1311,
  37262. bottom: 65/1411
  37263. }
  37264. },
  37265. },
  37266. [
  37267. {
  37268. name: "Base",
  37269. height: math.unit(12 + 4/12, "feet"),
  37270. default: true
  37271. },
  37272. {
  37273. name: "Macro",
  37274. height: math.unit(150, "feet")
  37275. },
  37276. {
  37277. name: "Mega",
  37278. height: math.unit(2, "miles")
  37279. },
  37280. {
  37281. name: "Demi God",
  37282. height: math.unit(4, "AU")
  37283. },
  37284. {
  37285. name: "God Size",
  37286. height: math.unit(1, "universe")
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(3 + 3/12, "feet"),
  37295. weight: math.unit(88, "lb"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/trey/front.svg",
  37299. extra: 1815/1509,
  37300. bottom: 60/1875
  37301. }
  37302. },
  37303. },
  37304. [
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(3 + 3/12, "feet"),
  37308. default: true
  37309. },
  37310. ]
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(4, "meters"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/adelonda/front.svg",
  37320. extra: 1077/982,
  37321. bottom: 39/1116
  37322. }
  37323. },
  37324. back: {
  37325. height: math.unit(4, "meters"),
  37326. name: "Back",
  37327. image: {
  37328. source: "./media/characters/adelonda/back.svg",
  37329. extra: 1105/1003,
  37330. bottom: 25/1130
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(4, "meters"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(8 + 4/12, "feet"),
  37347. weight: math.unit(670, "lb"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/acadiel/front.svg",
  37351. extra: 1901/1595,
  37352. bottom: 142/2043
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Normal",
  37359. height: math.unit(8 + 4/12, "feet"),
  37360. default: true
  37361. },
  37362. {
  37363. name: "Macro",
  37364. height: math.unit(200, "feet")
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(6 + 2/12, "feet"),
  37373. weight: math.unit(185, "lb"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/kayne-ein/front.svg",
  37377. extra: 1780/1560,
  37378. bottom: 81/1861
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(6 + 2/12, "feet"),
  37386. default: true
  37387. },
  37388. {
  37389. name: "Transformation Stage",
  37390. height: math.unit(15, "feet")
  37391. },
  37392. {
  37393. name: "Macro",
  37394. height: math.unit(150, "feet")
  37395. },
  37396. {
  37397. name: "Earth's Shadow",
  37398. height: math.unit(6200, "miles")
  37399. },
  37400. {
  37401. name: "Universal Demon",
  37402. height: math.unit(28e9, "parsecs")
  37403. },
  37404. {
  37405. name: "Multiverse God",
  37406. height: math.unit(3, "multiverses")
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(5 + 5/12, "feet"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/fawn/front.svg",
  37418. extra: 1873/1731,
  37419. bottom: 95/1968
  37420. }
  37421. },
  37422. back: {
  37423. height: math.unit(5 + 5/12, "feet"),
  37424. name: "Back",
  37425. image: {
  37426. source: "./media/characters/fawn/back.svg",
  37427. extra: 1813/1700,
  37428. bottom: 14/1827
  37429. }
  37430. },
  37431. hoof: {
  37432. height: math.unit(1.45, "feet"),
  37433. name: "Hoof",
  37434. image: {
  37435. source: "./media/characters/fawn/hoof.svg"
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(5 + 5/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(2 + 5/12, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/orion/front.svg",
  37455. extra: 1366/1304,
  37456. bottom: 43/1409
  37457. }
  37458. },
  37459. paw: {
  37460. height: math.unit(0.52, "feet"),
  37461. name: "Paw",
  37462. image: {
  37463. source: "./media/characters/orion/paw.svg"
  37464. }
  37465. },
  37466. },
  37467. [
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(2 + 5/12, "feet"),
  37471. default: true
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(5 + 10/12, "feet"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/vera/front.svg",
  37483. extra: 1680/1575,
  37484. bottom: 49/1729
  37485. }
  37486. },
  37487. back: {
  37488. height: math.unit(5 + 10/12, "feet"),
  37489. name: "Back",
  37490. image: {
  37491. source: "./media/characters/vera/back.svg",
  37492. extra: 1700/1588,
  37493. bottom: 18/1718
  37494. }
  37495. },
  37496. arcanine: {
  37497. height: math.unit(6 + 8/12, "feet"),
  37498. name: "Arcanine",
  37499. image: {
  37500. source: "./media/characters/vera/arcanine.svg",
  37501. extra: 1590/1511,
  37502. bottom: 71/1661
  37503. }
  37504. },
  37505. maw: {
  37506. height: math.unit(0.82, "feet"),
  37507. name: "Maw",
  37508. image: {
  37509. source: "./media/characters/vera/maw.svg"
  37510. }
  37511. },
  37512. mawArcanine: {
  37513. height: math.unit(0.97, "feet"),
  37514. name: "Maw (Arcanine)",
  37515. image: {
  37516. source: "./media/characters/vera/maw-arcanine.svg"
  37517. }
  37518. },
  37519. paw: {
  37520. height: math.unit(0.75, "feet"),
  37521. name: "Paw",
  37522. image: {
  37523. source: "./media/characters/vera/paw.svg"
  37524. }
  37525. },
  37526. pawprint: {
  37527. height: math.unit(0.52, "feet"),
  37528. name: "Pawprint",
  37529. image: {
  37530. source: "./media/characters/vera/pawprint.svg"
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Normal",
  37537. height: math.unit(5 + 10/12, "feet"),
  37538. default: true
  37539. },
  37540. {
  37541. name: "Macro",
  37542. height: math.unit(75, "feet")
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37548. {
  37549. front: {
  37550. height: math.unit(4, "feet"),
  37551. weight: math.unit(40, "lb"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/orvan-rabbit/front.svg",
  37555. extra: 1896/1642,
  37556. bottom: 29/1925
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(4, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(6, "feet"),
  37573. weight: math.unit(168, "lb"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/lisa/front.svg",
  37577. extra: 2065/1867,
  37578. bottom: 46/2111
  37579. }
  37580. },
  37581. back: {
  37582. height: math.unit(6, "feet"),
  37583. weight: math.unit(168, "lb"),
  37584. name: "Back",
  37585. image: {
  37586. source: "./media/characters/lisa/back.svg",
  37587. extra: 1982/1838,
  37588. bottom: 29/2011
  37589. }
  37590. },
  37591. maw: {
  37592. height: math.unit(0.81, "feet"),
  37593. name: "Maw",
  37594. image: {
  37595. source: "./media/characters/lisa/maw.svg"
  37596. }
  37597. },
  37598. paw: {
  37599. height: math.unit(0.9, "feet"),
  37600. name: "Paw",
  37601. image: {
  37602. source: "./media/characters/lisa/paw.svg"
  37603. }
  37604. },
  37605. caribousune: {
  37606. height: math.unit(7 + 2/12, "feet"),
  37607. weight: math.unit(268, "lb"),
  37608. name: "Caribousune",
  37609. image: {
  37610. source: "./media/characters/lisa/caribousune.svg",
  37611. extra: 1843/1633,
  37612. bottom: 29/1872
  37613. }
  37614. },
  37615. frontCaribousune: {
  37616. height: math.unit(7 + 2/12, "feet"),
  37617. weight: math.unit(268, "lb"),
  37618. name: "Front (Caribousune)",
  37619. image: {
  37620. source: "./media/characters/lisa/front-caribousune.svg",
  37621. extra: 1818/1638,
  37622. bottom: 52/1870
  37623. }
  37624. },
  37625. sideCaribousune: {
  37626. height: math.unit(7 + 2/12, "feet"),
  37627. weight: math.unit(268, "lb"),
  37628. name: "Side (Caribousune)",
  37629. image: {
  37630. source: "./media/characters/lisa/side-caribousune.svg",
  37631. extra: 1851/1635,
  37632. bottom: 16/1867
  37633. }
  37634. },
  37635. backCaribousune: {
  37636. height: math.unit(7 + 2/12, "feet"),
  37637. weight: math.unit(268, "lb"),
  37638. name: "Back (Caribousune)",
  37639. image: {
  37640. source: "./media/characters/lisa/back-caribousune.svg",
  37641. extra: 1801/1604,
  37642. bottom: 44/1845
  37643. }
  37644. },
  37645. caribou: {
  37646. height: math.unit(7 + 2/12, "feet"),
  37647. weight: math.unit(268, "lb"),
  37648. name: "Caribou",
  37649. image: {
  37650. source: "./media/characters/lisa/caribou.svg",
  37651. extra: 1843/1633,
  37652. bottom: 29/1872
  37653. }
  37654. },
  37655. frontCaribou: {
  37656. height: math.unit(7 + 2/12, "feet"),
  37657. weight: math.unit(268, "lb"),
  37658. name: "Front (Caribou)",
  37659. image: {
  37660. source: "./media/characters/lisa/front-caribou.svg",
  37661. extra: 1818/1638,
  37662. bottom: 52/1870
  37663. }
  37664. },
  37665. sideCaribou: {
  37666. height: math.unit(7 + 2/12, "feet"),
  37667. weight: math.unit(268, "lb"),
  37668. name: "Side (Caribou)",
  37669. image: {
  37670. source: "./media/characters/lisa/side-caribou.svg",
  37671. extra: 1851/1635,
  37672. bottom: 16/1867
  37673. }
  37674. },
  37675. backCaribou: {
  37676. height: math.unit(7 + 2/12, "feet"),
  37677. weight: math.unit(268, "lb"),
  37678. name: "Back (Caribou)",
  37679. image: {
  37680. source: "./media/characters/lisa/back-caribou.svg",
  37681. extra: 1801/1604,
  37682. bottom: 44/1845
  37683. }
  37684. },
  37685. mawCaribou: {
  37686. height: math.unit(1.45, "feet"),
  37687. name: "Maw (Caribou)",
  37688. image: {
  37689. source: "./media/characters/lisa/maw-caribou.svg"
  37690. }
  37691. },
  37692. mawCaribousune: {
  37693. height: math.unit(1.45, "feet"),
  37694. name: "Maw (Caribousune)",
  37695. image: {
  37696. source: "./media/characters/lisa/maw-caribousune.svg"
  37697. }
  37698. },
  37699. pawCaribousune: {
  37700. height: math.unit(1.61, "feet"),
  37701. name: "Paw (Caribou)",
  37702. image: {
  37703. source: "./media/characters/lisa/paw-caribousune.svg"
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Normal",
  37710. height: math.unit(6, "feet")
  37711. },
  37712. {
  37713. name: "God Size",
  37714. height: math.unit(72, "feet"),
  37715. default: true
  37716. },
  37717. {
  37718. name: "Towering",
  37719. height: math.unit(288, "feet")
  37720. },
  37721. {
  37722. name: "City Size",
  37723. height: math.unit(48384, "feet")
  37724. },
  37725. {
  37726. name: "Continental",
  37727. height: math.unit(4200, "miles")
  37728. },
  37729. {
  37730. name: "Planet Eater",
  37731. height: math.unit(42, "earths")
  37732. },
  37733. {
  37734. name: "Star Swallower",
  37735. height: math.unit(42, "solarradii")
  37736. },
  37737. {
  37738. name: "System Swallower",
  37739. height: math.unit(84000, "AU")
  37740. },
  37741. {
  37742. name: "Galaxy Gobbler",
  37743. height: math.unit(42, "galaxies")
  37744. },
  37745. {
  37746. name: "Universe Devourer",
  37747. height: math.unit(42, "universes")
  37748. },
  37749. {
  37750. name: "Multiverse Muncher",
  37751. height: math.unit(42, "multiverses")
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(36, "feet"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/shadow-rat/front.svg",
  37763. extra: 1845/1758,
  37764. bottom: 83/1928
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Macro",
  37771. height: math.unit(36, "feet"),
  37772. default: true
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37778. {
  37779. side: {
  37780. height: math.unit(8, "feet"),
  37781. weight: math.unit(2630, "lb"),
  37782. name: "Side",
  37783. image: {
  37784. source: "./media/characters/torallia/side.svg",
  37785. extra: 2164/2021,
  37786. bottom: 371/2535
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Mortal Interaction",
  37793. height: math.unit(8, "feet")
  37794. },
  37795. {
  37796. name: "Natural",
  37797. height: math.unit(24, "feet"),
  37798. default: true
  37799. },
  37800. {
  37801. name: "Giant",
  37802. height: math.unit(80, "feet")
  37803. },
  37804. {
  37805. name: "Kaiju",
  37806. height: math.unit(240, "feet")
  37807. },
  37808. {
  37809. name: "Macro",
  37810. height: math.unit(800, "feet")
  37811. },
  37812. {
  37813. name: "Macro+",
  37814. height: math.unit(2400, "feet")
  37815. },
  37816. {
  37817. name: "Macro++",
  37818. height: math.unit(8000, "feet")
  37819. },
  37820. {
  37821. name: "City-Crushing",
  37822. height: math.unit(24000, "feet")
  37823. },
  37824. {
  37825. name: "Mountain-Mashing",
  37826. height: math.unit(80000, "feet")
  37827. },
  37828. {
  37829. name: "District Demolisher",
  37830. height: math.unit(240000, "feet")
  37831. },
  37832. {
  37833. name: "Tri-County Terror",
  37834. height: math.unit(800000, "feet")
  37835. },
  37836. {
  37837. name: "State Smasher",
  37838. height: math.unit(2.4e6, "feet")
  37839. },
  37840. {
  37841. name: "Nation Nemesis",
  37842. height: math.unit(8e6, "feet")
  37843. },
  37844. {
  37845. name: "Continent Cracker",
  37846. height: math.unit(2.4e7, "feet")
  37847. },
  37848. {
  37849. name: "Planet-Pillaging",
  37850. height: math.unit(8e7, "feet")
  37851. },
  37852. {
  37853. name: "Earth-Eclipsing",
  37854. height: math.unit(2.4e8, "feet")
  37855. },
  37856. {
  37857. name: "Jovian-Jostling",
  37858. height: math.unit(8e8, "feet")
  37859. },
  37860. {
  37861. name: "Gas Giant Gulper",
  37862. height: math.unit(2.4e9, "feet")
  37863. },
  37864. {
  37865. name: "Astral Annihilator",
  37866. height: math.unit(8e9, "feet")
  37867. },
  37868. {
  37869. name: "Celestial Conqueror",
  37870. height: math.unit(2.4e10, "feet")
  37871. },
  37872. {
  37873. name: "Sol-Swallowing",
  37874. height: math.unit(8e10, "feet")
  37875. },
  37876. {
  37877. name: "Hunter of the Heavens",
  37878. height: math.unit(2.4e13, "feet")
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(6 + 8/12, "feet"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/rebecca-pawlson/front.svg",
  37890. extra: 1737/1596,
  37891. bottom: 107/1844
  37892. }
  37893. },
  37894. back: {
  37895. height: math.unit(6 + 8/12, "feet"),
  37896. name: "Back",
  37897. image: {
  37898. source: "./media/characters/rebecca-pawlson/back.svg",
  37899. extra: 1702/1523,
  37900. bottom: 86/1788
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(6 + 8/12, "feet")
  37908. },
  37909. {
  37910. name: "Mini Macro",
  37911. height: math.unit(10, "feet"),
  37912. default: true
  37913. },
  37914. {
  37915. name: "Macro",
  37916. height: math.unit(100, "feet")
  37917. },
  37918. {
  37919. name: "Mega Macro",
  37920. height: math.unit(2500, "feet")
  37921. },
  37922. {
  37923. name: "Giga Macro",
  37924. height: math.unit(50, "miles")
  37925. },
  37926. ]
  37927. ))
  37928. characterMakers.push(() => makeCharacter(
  37929. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37930. {
  37931. front: {
  37932. height: math.unit(7 + 6/12, "feet"),
  37933. weight: math.unit(600, "lb"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/moxie-nova/front.svg",
  37937. extra: 1734/1652,
  37938. bottom: 41/1775
  37939. }
  37940. },
  37941. },
  37942. [
  37943. {
  37944. name: "Normal",
  37945. height: math.unit(7 + 6/12, "feet"),
  37946. default: true
  37947. },
  37948. ]
  37949. ))
  37950. characterMakers.push(() => makeCharacter(
  37951. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37952. {
  37953. front: {
  37954. height: math.unit(5, "feet"),
  37955. weight: math.unit(150, "lb"),
  37956. name: "Front",
  37957. image: {
  37958. source: "./media/characters/tiffany/front.svg",
  37959. extra: 1941/1845,
  37960. bottom: 58/1999
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(5, "feet"),
  37968. default: true
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(8, "feet"),
  37977. weight: math.unit(300, "lb"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/raxinath/front.svg",
  37981. extra: 1407/1309,
  37982. bottom: 39/1446
  37983. }
  37984. },
  37985. back: {
  37986. height: math.unit(8, "feet"),
  37987. weight: math.unit(300, "lb"),
  37988. name: "Back",
  37989. image: {
  37990. source: "./media/characters/raxinath/back.svg",
  37991. extra: 1405/1315,
  37992. bottom: 9/1414
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Speck",
  37999. height: math.unit(0.5, "nm")
  38000. },
  38001. {
  38002. name: "Micro",
  38003. height: math.unit(3, "inches")
  38004. },
  38005. {
  38006. name: "Kobold",
  38007. height: math.unit(3, "feet")
  38008. },
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(8, "feet"),
  38012. default: true
  38013. },
  38014. {
  38015. name: "Giant",
  38016. height: math.unit(50, "feet")
  38017. },
  38018. {
  38019. name: "Macro",
  38020. height: math.unit(1000, "feet")
  38021. },
  38022. {
  38023. name: "Megamacro",
  38024. height: math.unit(1, "mile")
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38030. {
  38031. front: {
  38032. height: math.unit(10, "feet"),
  38033. weight: math.unit(1442, "lb"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/mal-dragon/front.svg",
  38037. extra: 1515/1444,
  38038. bottom: 113/1628
  38039. }
  38040. },
  38041. back: {
  38042. height: math.unit(10, "feet"),
  38043. weight: math.unit(1442, "lb"),
  38044. name: "Back",
  38045. image: {
  38046. source: "./media/characters/mal-dragon/back.svg",
  38047. extra: 1527/1434,
  38048. bottom: 25/1552
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Mortal Interaction",
  38055. height: math.unit(10, "feet"),
  38056. default: true
  38057. },
  38058. {
  38059. name: "Large",
  38060. height: math.unit(30, "feet")
  38061. },
  38062. {
  38063. name: "Kaiju",
  38064. height: math.unit(300, "feet")
  38065. },
  38066. {
  38067. name: "Megamacro",
  38068. height: math.unit(10000, "feet")
  38069. },
  38070. {
  38071. name: "Continent Cracker",
  38072. height: math.unit(30000000, "feet")
  38073. },
  38074. {
  38075. name: "Sol-Swallowing",
  38076. height: math.unit(1e11, "feet")
  38077. },
  38078. {
  38079. name: "Light Universal",
  38080. height: math.unit(5, "universes")
  38081. },
  38082. {
  38083. name: "Universe Atoms",
  38084. height: math.unit(1.829e9, "universes")
  38085. },
  38086. {
  38087. name: "Light Multiversal",
  38088. height: math.unit(5, "multiverses")
  38089. },
  38090. {
  38091. name: "Multiverse Atoms",
  38092. height: math.unit(1.829e9, "multiverses")
  38093. },
  38094. {
  38095. name: "Fabric of Time",
  38096. height: math.unit(1e262, "multiverses")
  38097. },
  38098. ]
  38099. ))
  38100. characterMakers.push(() => makeCharacter(
  38101. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38102. {
  38103. front: {
  38104. height: math.unit(9, "feet"),
  38105. weight: math.unit(1050, "lb"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/tabitha/front.svg",
  38109. extra: 2083/1994,
  38110. bottom: 68/2151
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Baseline",
  38117. height: math.unit(9, "feet"),
  38118. default: true
  38119. },
  38120. {
  38121. name: "Giant",
  38122. height: math.unit(90, "feet")
  38123. },
  38124. {
  38125. name: "Macro",
  38126. height: math.unit(900, "feet")
  38127. },
  38128. {
  38129. name: "Megamacro",
  38130. height: math.unit(9000, "feet")
  38131. },
  38132. {
  38133. name: "City-Crushing",
  38134. height: math.unit(27000, "feet")
  38135. },
  38136. {
  38137. name: "Mountain-Mashing",
  38138. height: math.unit(90000, "feet")
  38139. },
  38140. {
  38141. name: "Nation Nemesis",
  38142. height: math.unit(9e6, "feet")
  38143. },
  38144. {
  38145. name: "Continent Cracker",
  38146. height: math.unit(27e6, "feet")
  38147. },
  38148. {
  38149. name: "Earth-Eclipsing",
  38150. height: math.unit(2.7e8, "feet")
  38151. },
  38152. {
  38153. name: "Gas Giant Gulper",
  38154. height: math.unit(2.7e9, "feet")
  38155. },
  38156. {
  38157. name: "Sol-Swallowing",
  38158. height: math.unit(9e10, "feet")
  38159. },
  38160. {
  38161. name: "Galaxy Gulper",
  38162. height: math.unit(9, "galaxies")
  38163. },
  38164. {
  38165. name: "Cosmos Churner",
  38166. height: math.unit(9, "universes")
  38167. },
  38168. ]
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(160, "cm"),
  38175. weight: math.unit(55, "kg"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/tow/front.svg",
  38179. extra: 1751/1722,
  38180. bottom: 74/1825
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Norm",
  38187. height: math.unit(160, "cm")
  38188. },
  38189. {
  38190. name: "Casual",
  38191. height: math.unit(3200, "m"),
  38192. default: true
  38193. },
  38194. {
  38195. name: "Show-Off",
  38196. height: math.unit(160, "km")
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38202. {
  38203. front: {
  38204. height: math.unit(7 + 11/12, "feet"),
  38205. weight: math.unit(342.8, "lb"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/vivian-orca-dragon/front.svg",
  38209. extra: 1890/1865,
  38210. bottom: 28/1918
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Micro",
  38217. height: math.unit(5, "inches")
  38218. },
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(7 + 11/12, "feet"),
  38222. default: true
  38223. },
  38224. {
  38225. name: "Macro",
  38226. height: math.unit(395 + 7/12, "feet")
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38232. {
  38233. side: {
  38234. height: math.unit(10, "feet"),
  38235. weight: math.unit(1442, "lb"),
  38236. name: "Side",
  38237. image: {
  38238. source: "./media/characters/lotherakon/side.svg",
  38239. extra: 1604/1497,
  38240. bottom: 89/1693
  38241. }
  38242. },
  38243. },
  38244. [
  38245. {
  38246. name: "Mortal Interaction",
  38247. height: math.unit(10, "feet")
  38248. },
  38249. {
  38250. name: "Large",
  38251. height: math.unit(30, "feet"),
  38252. default: true
  38253. },
  38254. {
  38255. name: "Giant",
  38256. height: math.unit(100, "feet")
  38257. },
  38258. {
  38259. name: "Kaiju",
  38260. height: math.unit(300, "feet")
  38261. },
  38262. {
  38263. name: "Macro",
  38264. height: math.unit(1000, "feet")
  38265. },
  38266. {
  38267. name: "Macro+",
  38268. height: math.unit(3000, "feet")
  38269. },
  38270. {
  38271. name: "Megamacro",
  38272. height: math.unit(10000, "feet")
  38273. },
  38274. {
  38275. name: "City-Crushing",
  38276. height: math.unit(30000, "feet")
  38277. },
  38278. {
  38279. name: "Continent Cracker",
  38280. height: math.unit(30e6, "feet")
  38281. },
  38282. {
  38283. name: "Earth Eclipsing",
  38284. height: math.unit(3e8, "feet")
  38285. },
  38286. {
  38287. name: "Gas Giant Gulper",
  38288. height: math.unit(3e9, "feet")
  38289. },
  38290. {
  38291. name: "Sol-Swallowing",
  38292. height: math.unit(1e11, "feet")
  38293. },
  38294. {
  38295. name: "System Swallower",
  38296. height: math.unit(3e14, "feet")
  38297. },
  38298. {
  38299. name: "Galaxy Gulper",
  38300. height: math.unit(10, "galaxies")
  38301. },
  38302. {
  38303. name: "Light Universal",
  38304. height: math.unit(5, "universes")
  38305. },
  38306. {
  38307. name: "Universe Palm",
  38308. height: math.unit(20, "universes")
  38309. },
  38310. {
  38311. name: "Light Multiversal",
  38312. height: math.unit(5, "multiverses")
  38313. },
  38314. {
  38315. name: "Multiverse Palm",
  38316. height: math.unit(20, "multiverses")
  38317. },
  38318. {
  38319. name: "Inferno Incarnate",
  38320. height: math.unit(1e7, "multiverses")
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(8, "feet"),
  38329. weight: math.unit(1200, "lb"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/malithee/front.svg",
  38333. extra: 1675/1640,
  38334. bottom: 162/1837
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Mortal Interaction",
  38341. height: math.unit(8, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Large",
  38346. height: math.unit(24, "feet")
  38347. },
  38348. {
  38349. name: "Kaiju",
  38350. height: math.unit(240, "feet")
  38351. },
  38352. {
  38353. name: "Megamacro",
  38354. height: math.unit(8000, "feet")
  38355. },
  38356. {
  38357. name: "Continent Cracker",
  38358. height: math.unit(24e6, "feet")
  38359. },
  38360. {
  38361. name: "Earth-Eclipsing",
  38362. height: math.unit(2.4e8, "feet")
  38363. },
  38364. {
  38365. name: "Sol-Swallowing",
  38366. height: math.unit(8e10, "feet")
  38367. },
  38368. {
  38369. name: "Galaxy Gulper",
  38370. height: math.unit(8, "galaxies")
  38371. },
  38372. {
  38373. name: "Light Universal",
  38374. height: math.unit(4, "universes")
  38375. },
  38376. {
  38377. name: "Universe Atoms",
  38378. height: math.unit(1.829e9, "universes")
  38379. },
  38380. {
  38381. name: "Light Multiversal",
  38382. height: math.unit(4, "multiverses")
  38383. },
  38384. {
  38385. name: "Multiverse Atoms",
  38386. height: math.unit(1.829e9, "multiverses")
  38387. },
  38388. {
  38389. name: "Nigh-Omnipresence",
  38390. height: math.unit(8e261, "multiverses")
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(10, "feet"),
  38399. weight: math.unit(1500, "lb"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/miles-thestia/front.svg",
  38403. extra: 1812/1727,
  38404. bottom: 86/1898
  38405. }
  38406. },
  38407. back: {
  38408. height: math.unit(10, "feet"),
  38409. weight: math.unit(1500, "lb"),
  38410. name: "Back",
  38411. image: {
  38412. source: "./media/characters/miles-thestia/back.svg",
  38413. extra: 1799/1690,
  38414. bottom: 47/1846
  38415. }
  38416. },
  38417. frontNsfw: {
  38418. height: math.unit(10, "feet"),
  38419. weight: math.unit(1500, "lb"),
  38420. name: "Front (NSFW)",
  38421. image: {
  38422. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38423. extra: 1812/1727,
  38424. bottom: 86/1898
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Mini-Macro",
  38431. height: math.unit(10, "feet"),
  38432. default: true
  38433. },
  38434. ]
  38435. ))
  38436. characterMakers.push(() => makeCharacter(
  38437. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38438. {
  38439. front: {
  38440. height: math.unit(25, "feet"),
  38441. name: "Front",
  38442. image: {
  38443. source: "./media/characters/titan-s-wulf/front.svg",
  38444. extra: 1560/1484,
  38445. bottom: 76/1636
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Smallest",
  38452. height: math.unit(25, "feet"),
  38453. default: true
  38454. },
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(200, "feet")
  38458. },
  38459. {
  38460. name: "Macro",
  38461. height: math.unit(200000, "feet")
  38462. },
  38463. {
  38464. name: "Multiversal Original",
  38465. height: math.unit(10000, "multiverses")
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(8, "feet"),
  38474. weight: math.unit(553, "lb"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/tawendeh/front.svg",
  38478. extra: 2365/2268,
  38479. bottom: 83/2448
  38480. }
  38481. },
  38482. frontClothed: {
  38483. height: math.unit(8, "feet"),
  38484. weight: math.unit(553, "lb"),
  38485. name: "Front (Clothed)",
  38486. image: {
  38487. source: "./media/characters/tawendeh/front-clothed.svg",
  38488. extra: 2365/2268,
  38489. bottom: 83/2448
  38490. }
  38491. },
  38492. back: {
  38493. height: math.unit(8, "feet"),
  38494. weight: math.unit(553, "lb"),
  38495. name: "Back",
  38496. image: {
  38497. source: "./media/characters/tawendeh/back.svg",
  38498. extra: 2397/2294,
  38499. bottom: 42/2439
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Mortal Interaction",
  38506. height: math.unit(8, "feet"),
  38507. default: true
  38508. },
  38509. {
  38510. name: "Giant",
  38511. height: math.unit(80, "feet")
  38512. },
  38513. {
  38514. name: "Macro",
  38515. height: math.unit(800, "feet")
  38516. },
  38517. {
  38518. name: "Megamacro",
  38519. height: math.unit(8000, "feet")
  38520. },
  38521. {
  38522. name: "City-Crushing",
  38523. height: math.unit(24000, "feet")
  38524. },
  38525. {
  38526. name: "Mountain-Mashing",
  38527. height: math.unit(80000, "feet")
  38528. },
  38529. {
  38530. name: "Nation Nemesis",
  38531. height: math.unit(8e6, "feet")
  38532. },
  38533. {
  38534. name: "Continent Cracker",
  38535. height: math.unit(24e6, "feet")
  38536. },
  38537. {
  38538. name: "Earth-Eclipsing",
  38539. height: math.unit(2.4e8, "feet")
  38540. },
  38541. {
  38542. name: "Gas Giant Gulper",
  38543. height: math.unit(2.4e9, "feet")
  38544. },
  38545. {
  38546. name: "Sol-Swallowing",
  38547. height: math.unit(8e10, "feet")
  38548. },
  38549. {
  38550. name: "Galaxy Gulper",
  38551. height: math.unit(8, "galaxies")
  38552. },
  38553. {
  38554. name: "Cosmos Churner",
  38555. height: math.unit(8, "universes")
  38556. },
  38557. {
  38558. name: "Omnipotent Otter",
  38559. height: math.unit(80, "universes")
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(2.6, "meters"),
  38568. weight: math.unit(900, "kg"),
  38569. name: "Front",
  38570. image: {
  38571. source: "./media/characters/neesha/front.svg",
  38572. extra: 1803/1653,
  38573. bottom: 128/1931
  38574. }
  38575. },
  38576. },
  38577. [
  38578. {
  38579. name: "Normal",
  38580. height: math.unit(2.6, "meters"),
  38581. default: true
  38582. },
  38583. {
  38584. name: "Macro",
  38585. height: math.unit(50, "meters")
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38591. {
  38592. front: {
  38593. height: math.unit(5, "feet"),
  38594. weight: math.unit(185, "lb"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/kyera/front.svg",
  38598. extra: 1875/1790,
  38599. bottom: 96/1971
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(5, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(7 + 6/12, "feet"),
  38616. weight: math.unit(540, "lb"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/yuko/front.svg",
  38620. extra: 1282/1222,
  38621. bottom: 101/1383
  38622. }
  38623. },
  38624. frontClothed: {
  38625. height: math.unit(7 + 6/12, "feet"),
  38626. weight: math.unit(540, "lb"),
  38627. name: "Front (Clothed)",
  38628. image: {
  38629. source: "./media/characters/yuko/front-clothed.svg",
  38630. extra: 1282/1222,
  38631. bottom: 101/1383
  38632. }
  38633. },
  38634. },
  38635. [
  38636. {
  38637. name: "Normal",
  38638. height: math.unit(7 + 6/12, "feet"),
  38639. default: true
  38640. },
  38641. {
  38642. name: "Macro",
  38643. height: math.unit(26 + 9/12, "feet")
  38644. },
  38645. {
  38646. name: "Megamacro",
  38647. height: math.unit(300, "feet")
  38648. },
  38649. {
  38650. name: "Gigamacro",
  38651. height: math.unit(5000, "feet")
  38652. },
  38653. {
  38654. name: "Planetary",
  38655. height: math.unit(10000, "miles")
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(8 + 2/12, "feet"),
  38664. weight: math.unit(600, "lb"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/deam-nitrel/front.svg",
  38668. extra: 1308/1234,
  38669. bottom: 125/1433
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(8 + 2/12, "feet"),
  38677. default: true
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(6.1, "feet"),
  38686. weight: math.unit(180, "lb"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/skyress/front.svg",
  38690. extra: 1045/915,
  38691. bottom: 28/1073
  38692. }
  38693. },
  38694. maw: {
  38695. height: math.unit(1, "feet"),
  38696. name: "Maw",
  38697. image: {
  38698. source: "./media/characters/skyress/maw.svg"
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Normal",
  38705. height: math.unit(6.1, "feet"),
  38706. default: true
  38707. },
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(200, "feet")
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38716. {
  38717. front: {
  38718. height: math.unit(4 + 2/12, "feet"),
  38719. weight: math.unit(40, "kg"),
  38720. name: "Front",
  38721. image: {
  38722. source: "./media/characters/amethyst-jones/front.svg",
  38723. extra: 1220/1150,
  38724. bottom: 101/1321
  38725. }
  38726. },
  38727. },
  38728. [
  38729. {
  38730. name: "Normal",
  38731. height: math.unit(4 + 2/12, "feet"),
  38732. default: true
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(1.7, "m"),
  38741. weight: math.unit(135, "lb"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/jade/front.svg",
  38745. extra: 1818/1767,
  38746. bottom: 32/1850
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(1.7, "m"),
  38751. weight: math.unit(135, "lb"),
  38752. name: "Back",
  38753. image: {
  38754. source: "./media/characters/jade/back.svg",
  38755. extra: 1869/1809,
  38756. bottom: 35/1904
  38757. }
  38758. },
  38759. hand: {
  38760. height: math.unit(0.24, "m"),
  38761. name: "Hand",
  38762. image: {
  38763. source: "./media/characters/jade/hand.svg"
  38764. }
  38765. },
  38766. foot: {
  38767. height: math.unit(0.263, "m"),
  38768. name: "Foot",
  38769. image: {
  38770. source: "./media/characters/jade/foot.svg"
  38771. }
  38772. },
  38773. dick: {
  38774. height: math.unit(0.47, "m"),
  38775. name: "Dick",
  38776. image: {
  38777. source: "./media/characters/jade/dick.svg"
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Micro",
  38784. height: math.unit(22, "cm")
  38785. },
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(1.7, "m"),
  38789. default: true
  38790. },
  38791. {
  38792. name: "Macro",
  38793. height: math.unit(152, "m")
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(100, "miles"),
  38802. weight: math.unit(20000, "tons"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/cookie/front.svg",
  38806. extra: 1125/1070,
  38807. bottom: 30/1155
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Big",
  38814. height: math.unit(50, "feet")
  38815. },
  38816. {
  38817. name: "Macro",
  38818. height: math.unit(100, "miles"),
  38819. default: true
  38820. },
  38821. {
  38822. name: "Megamacro",
  38823. height: math.unit(90000, "miles")
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(6, "feet"),
  38832. weight: math.unit(145, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/farzian/front.svg",
  38836. extra: 1902/1693,
  38837. bottom: 108/2010
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Macro",
  38844. height: math.unit(500, "feet"),
  38845. default: true
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(3 + 6/12, "feet"),
  38854. weight: math.unit(50, "lb"),
  38855. name: "Front",
  38856. image: {
  38857. source: "./media/characters/kimberly-tilson/front.svg",
  38858. extra: 1400/1322,
  38859. bottom: 36/1436
  38860. }
  38861. },
  38862. back: {
  38863. height: math.unit(3 + 6/12, "feet"),
  38864. weight: math.unit(50, "lb"),
  38865. name: "Back",
  38866. image: {
  38867. source: "./media/characters/kimberly-tilson/back.svg",
  38868. extra: 1370/1307,
  38869. bottom: 20/1390
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(3 + 6/12, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(1148, "feet"),
  38886. weight: math.unit(34057, "lb"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/harthos/front.svg",
  38890. extra: 1391/1339,
  38891. bottom: 13/1404
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Macro",
  38898. height: math.unit(1148, "feet"),
  38899. default: true
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(15, "feet"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/hypatia/front.svg",
  38911. extra: 1653/1591,
  38912. bottom: 79/1732
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(15, "feet")
  38920. },
  38921. {
  38922. name: "Small",
  38923. height: math.unit(300, "feet")
  38924. },
  38925. {
  38926. name: "Macro",
  38927. height: math.unit(2500, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Mega Macro",
  38932. height: math.unit(1500, "miles")
  38933. },
  38934. {
  38935. name: "Giga Macro",
  38936. height: math.unit(1.5e6, "miles")
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38942. {
  38943. front: {
  38944. height: math.unit(6, "feet"),
  38945. weight: math.unit(200, "lb"),
  38946. name: "Front",
  38947. image: {
  38948. source: "./media/characters/wulver/front.svg",
  38949. extra: 1724/1632,
  38950. bottom: 130/1854
  38951. }
  38952. },
  38953. frontNsfw: {
  38954. height: math.unit(6, "feet"),
  38955. weight: math.unit(200, "lb"),
  38956. name: "Front (NSFW)",
  38957. image: {
  38958. source: "./media/characters/wulver/front-nsfw.svg",
  38959. extra: 1724/1632,
  38960. bottom: 130/1854
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Human-Sized",
  38967. height: math.unit(6, "feet")
  38968. },
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(4, "meters"),
  38972. default: true
  38973. },
  38974. {
  38975. name: "Large",
  38976. height: math.unit(6, "m")
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(7, "feet"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/maru/front.svg",
  38988. extra: 1595/1570,
  38989. bottom: 0/1595
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(7, "feet"),
  38997. default: true
  38998. },
  38999. {
  39000. name: "Macro",
  39001. height: math.unit(700, "feet")
  39002. },
  39003. {
  39004. name: "Mega Macro",
  39005. height: math.unit(25, "miles")
  39006. },
  39007. ]
  39008. ))
  39009. characterMakers.push(() => makeCharacter(
  39010. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39011. {
  39012. front: {
  39013. height: math.unit(6, "feet"),
  39014. weight: math.unit(170, "lb"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/xenon/front.svg",
  39018. extra: 1376/1305,
  39019. bottom: 56/1432
  39020. }
  39021. },
  39022. back: {
  39023. height: math.unit(6, "feet"),
  39024. weight: math.unit(170, "lb"),
  39025. name: "Back",
  39026. image: {
  39027. source: "./media/characters/xenon/back.svg",
  39028. extra: 1328/1259,
  39029. bottom: 95/1423
  39030. }
  39031. },
  39032. maw: {
  39033. height: math.unit(0.52, "feet"),
  39034. name: "Maw",
  39035. image: {
  39036. source: "./media/characters/xenon/maw.svg"
  39037. }
  39038. },
  39039. hand: {
  39040. height: math.unit(0.82, "feet"),
  39041. name: "Hand",
  39042. image: {
  39043. source: "./media/characters/xenon/hand.svg"
  39044. }
  39045. },
  39046. foot: {
  39047. height: math.unit(1.13, "feet"),
  39048. name: "Foot",
  39049. image: {
  39050. source: "./media/characters/xenon/foot.svg"
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Micro",
  39057. height: math.unit(0.8, "inches")
  39058. },
  39059. {
  39060. name: "Normal",
  39061. height: math.unit(6, "feet")
  39062. },
  39063. {
  39064. name: "Macro",
  39065. height: math.unit(50, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Macro+",
  39070. height: math.unit(250, "feet")
  39071. },
  39072. {
  39073. name: "Megamacro",
  39074. height: math.unit(1500, "feet")
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(7 + 5/12, "feet"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/zane/front.svg",
  39086. extra: 1260/1203,
  39087. bottom: 94/1354
  39088. }
  39089. },
  39090. back: {
  39091. height: math.unit(5.05, "feet"),
  39092. name: "Back",
  39093. image: {
  39094. source: "./media/characters/zane/back.svg",
  39095. extra: 893/829,
  39096. bottom: 30/923
  39097. }
  39098. },
  39099. werewolf: {
  39100. height: math.unit(11, "feet"),
  39101. name: "Werewolf",
  39102. image: {
  39103. source: "./media/characters/zane/werewolf.svg",
  39104. extra: 1383/1323,
  39105. bottom: 89/1472
  39106. }
  39107. },
  39108. foot: {
  39109. height: math.unit(1.46, "feet"),
  39110. name: "Foot",
  39111. image: {
  39112. source: "./media/characters/zane/foot.svg"
  39113. }
  39114. },
  39115. footFront: {
  39116. height: math.unit(0.784, "feet"),
  39117. name: "Foot (Front)",
  39118. image: {
  39119. source: "./media/characters/zane/foot-front.svg"
  39120. }
  39121. },
  39122. dick: {
  39123. height: math.unit(1.95, "feet"),
  39124. name: "Dick",
  39125. image: {
  39126. source: "./media/characters/zane/dick.svg"
  39127. }
  39128. },
  39129. dickWerewolf: {
  39130. height: math.unit(3.77, "feet"),
  39131. name: "Dick (Werewolf)",
  39132. image: {
  39133. source: "./media/characters/zane/dick.svg"
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(7 + 5/12, "feet"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(6 + 2/12, "feet"),
  39150. weight: math.unit(284, "lb"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/benni-desparque/front.svg",
  39154. extra: 1353/1126,
  39155. bottom: 69/1422
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Civilian",
  39162. height: math.unit(6 + 2/12, "feet")
  39163. },
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(98, "feet"),
  39167. default: true
  39168. },
  39169. {
  39170. name: "Kaiju Fighter",
  39171. height: math.unit(268, "feet")
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(5, "feet"),
  39180. weight: math.unit(105, "lb"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/maxine/front.svg",
  39184. extra: 1386/1250,
  39185. bottom: 71/1457
  39186. }
  39187. },
  39188. },
  39189. [
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(5, "feet"),
  39193. default: true
  39194. },
  39195. ]
  39196. ))
  39197. characterMakers.push(() => makeCharacter(
  39198. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39199. {
  39200. front: {
  39201. height: math.unit(11 + 7/12, "feet"),
  39202. weight: math.unit(9576, "lb"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/scaly/front.svg",
  39206. extra: 888/867,
  39207. bottom: 36/924
  39208. }
  39209. },
  39210. },
  39211. [
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(11 + 7/12, "feet"),
  39215. default: true
  39216. },
  39217. ]
  39218. ))
  39219. characterMakers.push(() => makeCharacter(
  39220. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39221. {
  39222. front: {
  39223. height: math.unit(9, "inches"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/saelria/front.svg",
  39227. extra: 662/621,
  39228. bottom: 12/674
  39229. }
  39230. },
  39231. },
  39232. [
  39233. {
  39234. name: "Tiny",
  39235. height: math.unit(9, "inches"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(80, "meters"),
  39245. weight: math.unit(7000, "tonnes"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/tef/front.svg",
  39249. extra: 2036/1991,
  39250. bottom: 54/2090
  39251. }
  39252. },
  39253. back: {
  39254. height: math.unit(80, "meters"),
  39255. weight: math.unit(7000, "tonnes"),
  39256. name: "Back",
  39257. image: {
  39258. source: "./media/characters/tef/back.svg",
  39259. extra: 2036/1991,
  39260. bottom: 54/2090
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Macro",
  39267. height: math.unit(80, "meters"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(13, "feet"),
  39277. weight: math.unit(6, "tons"),
  39278. name: "Front",
  39279. image: {
  39280. source: "./media/characters/rover/front.svg",
  39281. extra: 1233/1156,
  39282. bottom: 50/1283
  39283. }
  39284. },
  39285. back: {
  39286. height: math.unit(13, "feet"),
  39287. weight: math.unit(6, "tons"),
  39288. name: "Back",
  39289. image: {
  39290. source: "./media/characters/rover/back.svg",
  39291. extra: 1327/1258,
  39292. bottom: 39/1366
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(13, "feet"),
  39300. default: true
  39301. },
  39302. {
  39303. name: "Macro",
  39304. height: math.unit(1300, "feet")
  39305. },
  39306. {
  39307. name: "Megamacro",
  39308. height: math.unit(1300, "miles")
  39309. },
  39310. {
  39311. name: "Gigamacro",
  39312. height: math.unit(1300000, "miles")
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(6, "feet"),
  39321. weight: math.unit(150, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/ariz/front.svg",
  39325. extra: 1401/1346,
  39326. bottom: 5/1406
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(10, "feet"),
  39334. default: true
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(6, "feet"),
  39343. weight: math.unit(140, "lb"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/sigrun/front.svg",
  39347. extra: 1418/1359,
  39348. bottom: 27/1445
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Macro",
  39355. height: math.unit(35, "feet"),
  39356. default: true
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(6, "feet"),
  39365. weight: math.unit(150, "lb"),
  39366. name: "Front",
  39367. image: {
  39368. source: "./media/characters/numin/front.svg",
  39369. extra: 1433/1388,
  39370. bottom: 12/1445
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Macro",
  39377. height: math.unit(21.5, "km"),
  39378. default: true
  39379. },
  39380. ]
  39381. ))
  39382. characterMakers.push(() => makeCharacter(
  39383. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39384. {
  39385. front: {
  39386. height: math.unit(6, "feet"),
  39387. weight: math.unit(463, "lb"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/melwa/front.svg",
  39391. extra: 1307/1248,
  39392. bottom: 93/1400
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Macro",
  39399. height: math.unit(50, "meters"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(325, "feet"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/zorkaiju/front.svg",
  39412. extra: 1955/1814,
  39413. bottom: 40/1995
  39414. }
  39415. },
  39416. frontExtended: {
  39417. height: math.unit(325, "feet"),
  39418. name: "Front (Extended)",
  39419. image: {
  39420. source: "./media/characters/zorkaiju/front-extended.svg",
  39421. extra: 1955/1814,
  39422. bottom: 40/1995
  39423. }
  39424. },
  39425. side: {
  39426. height: math.unit(325, "feet"),
  39427. name: "Side",
  39428. image: {
  39429. source: "./media/characters/zorkaiju/side.svg",
  39430. extra: 1495/1396,
  39431. bottom: 17/1512
  39432. }
  39433. },
  39434. sideExtended: {
  39435. height: math.unit(325, "feet"),
  39436. name: "Side (Extended)",
  39437. image: {
  39438. source: "./media/characters/zorkaiju/side-extended.svg",
  39439. extra: 1495/1396,
  39440. bottom: 17/1512
  39441. }
  39442. },
  39443. back: {
  39444. height: math.unit(325, "feet"),
  39445. name: "Back",
  39446. image: {
  39447. source: "./media/characters/zorkaiju/back.svg",
  39448. extra: 1959/1821,
  39449. bottom: 31/1990
  39450. }
  39451. },
  39452. backExtended: {
  39453. height: math.unit(325, "feet"),
  39454. name: "Back (Extended)",
  39455. image: {
  39456. source: "./media/characters/zorkaiju/back-extended.svg",
  39457. extra: 1959/1821,
  39458. bottom: 31/1990
  39459. }
  39460. },
  39461. hand: {
  39462. height: math.unit(58.4, "feet"),
  39463. name: "Hand",
  39464. image: {
  39465. source: "./media/characters/zorkaiju/hand.svg"
  39466. }
  39467. },
  39468. handExtended: {
  39469. height: math.unit(61.4, "feet"),
  39470. name: "Hand (Extended)",
  39471. image: {
  39472. source: "./media/characters/zorkaiju/hand-extended.svg"
  39473. }
  39474. },
  39475. foot: {
  39476. height: math.unit(95, "feet"),
  39477. name: "Foot",
  39478. image: {
  39479. source: "./media/characters/zorkaiju/foot.svg"
  39480. }
  39481. },
  39482. leftArm: {
  39483. height: math.unit(59, "feet"),
  39484. name: "Left Arm",
  39485. image: {
  39486. source: "./media/characters/zorkaiju/left-arm.svg"
  39487. }
  39488. },
  39489. rightArm: {
  39490. height: math.unit(59, "feet"),
  39491. name: "Right Arm",
  39492. image: {
  39493. source: "./media/characters/zorkaiju/right-arm.svg"
  39494. }
  39495. },
  39496. tail: {
  39497. height: math.unit(104, "feet"),
  39498. name: "Tail",
  39499. image: {
  39500. source: "./media/characters/zorkaiju/tail.svg"
  39501. }
  39502. },
  39503. tailExtended: {
  39504. height: math.unit(104, "feet"),
  39505. name: "Tail (Extended)",
  39506. image: {
  39507. source: "./media/characters/zorkaiju/tail-extended.svg"
  39508. }
  39509. },
  39510. tailBottom: {
  39511. height: math.unit(104, "feet"),
  39512. name: "Tail Bottom",
  39513. image: {
  39514. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39515. }
  39516. },
  39517. crystal: {
  39518. height: math.unit(27.54, "feet"),
  39519. name: "Crystal",
  39520. image: {
  39521. source: "./media/characters/zorkaiju/crystal.svg"
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Kaiju",
  39528. height: math.unit(325, "feet"),
  39529. default: true
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(6 + 1/12, "feet"),
  39538. weight: math.unit(115, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/bailey-belfry/front.svg",
  39542. extra: 1240/1121,
  39543. bottom: 101/1341
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(6 + 1/12, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39557. {
  39558. side: {
  39559. height: math.unit(4, "meters"),
  39560. weight: math.unit(250, "kg"),
  39561. name: "Side",
  39562. image: {
  39563. source: "./media/characters/blacky/side.svg",
  39564. extra: 1027/919,
  39565. bottom: 43/1070
  39566. }
  39567. },
  39568. maw: {
  39569. height: math.unit(1, "meters"),
  39570. name: "Maw",
  39571. image: {
  39572. source: "./media/characters/blacky/maw.svg"
  39573. }
  39574. },
  39575. paw: {
  39576. height: math.unit(1, "meters"),
  39577. name: "Paw",
  39578. image: {
  39579. source: "./media/characters/blacky/paw.svg"
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Normal",
  39586. height: math.unit(4, "meters"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39593. {
  39594. front: {
  39595. height: math.unit(170, "cm"),
  39596. weight: math.unit(66, "kg"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/thux-ei/front.svg",
  39600. extra: 1109/1011,
  39601. bottom: 8/1117
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(170, "cm"),
  39609. default: true
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(5, "feet"),
  39618. weight: math.unit(120, "lb"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/roxanne-voltaire/front.svg",
  39622. extra: 1901/1779,
  39623. bottom: 53/1954
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(5, "feet"),
  39631. default: true
  39632. },
  39633. {
  39634. name: "Giant",
  39635. height: math.unit(50, "feet")
  39636. },
  39637. {
  39638. name: "Titan",
  39639. height: math.unit(500, "feet")
  39640. },
  39641. {
  39642. name: "Macro",
  39643. height: math.unit(5000, "feet")
  39644. },
  39645. {
  39646. name: "Megamacro",
  39647. height: math.unit(50000, "feet")
  39648. },
  39649. {
  39650. name: "Gigamacro",
  39651. height: math.unit(500000, "feet")
  39652. },
  39653. {
  39654. name: "Teramacro",
  39655. height: math.unit(5e6, "feet")
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39661. {
  39662. front: {
  39663. height: math.unit(6 + 2/12, "feet"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/squeaks/front.svg",
  39667. extra: 1823/1768,
  39668. bottom: 138/1961
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Micro",
  39675. height: math.unit(0.5, "inches")
  39676. },
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(6 + 2/12, "feet"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Macro",
  39684. height: math.unit(600, "feet")
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39690. {
  39691. front: {
  39692. height: math.unit(1.72, "meters"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/archinger/front.svg",
  39696. extra: 1861/1675,
  39697. bottom: 125/1986
  39698. }
  39699. },
  39700. back: {
  39701. height: math.unit(1.72, "meters"),
  39702. name: "Back",
  39703. image: {
  39704. source: "./media/characters/archinger/back.svg",
  39705. extra: 1844/1701,
  39706. bottom: 104/1948
  39707. }
  39708. },
  39709. cock: {
  39710. height: math.unit(0.59, "feet"),
  39711. name: "Cock",
  39712. image: {
  39713. source: "./media/characters/archinger/cock.svg"
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(1.72, "meters"),
  39721. default: true
  39722. },
  39723. {
  39724. name: "Macro",
  39725. height: math.unit(84, "meters")
  39726. },
  39727. {
  39728. name: "Macro+",
  39729. height: math.unit(112, "meters")
  39730. },
  39731. {
  39732. name: "Macro++",
  39733. height: math.unit(960, "meters")
  39734. },
  39735. {
  39736. name: "Macro+++",
  39737. height: math.unit(4, "km")
  39738. },
  39739. {
  39740. name: "Macro++++",
  39741. height: math.unit(48, "km")
  39742. },
  39743. {
  39744. name: "Macro+++++",
  39745. height: math.unit(4500, "km")
  39746. },
  39747. ]
  39748. ))
  39749. characterMakers.push(() => makeCharacter(
  39750. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39751. {
  39752. front: {
  39753. height: math.unit(5 + 5/12, "feet"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/alsnapz/front.svg",
  39757. extra: 1157/1065,
  39758. bottom: 42/1199
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(5 + 5/12, "feet"),
  39766. default: true
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39772. {
  39773. side: {
  39774. height: math.unit(3.2, "earths"),
  39775. name: "Side",
  39776. image: {
  39777. source: "./media/characters/mag/side.svg",
  39778. extra: 1331/1008,
  39779. bottom: 52/1383
  39780. }
  39781. },
  39782. wing: {
  39783. height: math.unit(1.94, "earths"),
  39784. name: "Wing",
  39785. image: {
  39786. source: "./media/characters/mag/wing.svg"
  39787. }
  39788. },
  39789. dick: {
  39790. height: math.unit(1.8, "earths"),
  39791. name: "Dick",
  39792. image: {
  39793. source: "./media/characters/mag/dick.svg"
  39794. }
  39795. },
  39796. ass: {
  39797. height: math.unit(1.33, "earths"),
  39798. name: "Ass",
  39799. image: {
  39800. source: "./media/characters/mag/ass.svg"
  39801. }
  39802. },
  39803. head: {
  39804. height: math.unit(1.1, "earths"),
  39805. name: "Head",
  39806. image: {
  39807. source: "./media/characters/mag/head.svg"
  39808. }
  39809. },
  39810. maw: {
  39811. height: math.unit(1.62, "earths"),
  39812. name: "Maw",
  39813. image: {
  39814. source: "./media/characters/mag/maw.svg"
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Small",
  39821. height: math.unit(162, "feet")
  39822. },
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(3.2, "earths"),
  39826. default: true
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(512, "feet"),
  39835. weight: math.unit(63509, "tonnes"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/vorrel-harroc/front.svg",
  39839. extra: 1075/1063,
  39840. bottom: 62/1137
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(10, "feet")
  39848. },
  39849. {
  39850. name: "Macro",
  39851. height: math.unit(512, "feet"),
  39852. default: true
  39853. },
  39854. {
  39855. name: "Megamacro",
  39856. height: math.unit(256, "miles")
  39857. },
  39858. {
  39859. name: "Gigamacro",
  39860. height: math.unit(4096, "miles")
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39866. {
  39867. side: {
  39868. height: math.unit(50, "feet"),
  39869. name: "Side",
  39870. image: {
  39871. source: "./media/characters/froimar/side.svg",
  39872. extra: 855/638,
  39873. bottom: 99/954
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Macro",
  39880. height: math.unit(50, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(210, "miles"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/timothy/front.svg",
  39893. extra: 1007/943,
  39894. bottom: 62/1069
  39895. }
  39896. },
  39897. frontSkirt: {
  39898. height: math.unit(210, "miles"),
  39899. name: "Front (Skirt)",
  39900. image: {
  39901. source: "./media/characters/timothy/front-skirt.svg",
  39902. extra: 1007/943,
  39903. bottom: 62/1069
  39904. }
  39905. },
  39906. frontCoat: {
  39907. height: math.unit(210, "miles"),
  39908. name: "Front (Coat)",
  39909. image: {
  39910. source: "./media/characters/timothy/front-coat.svg",
  39911. extra: 1007/943,
  39912. bottom: 62/1069
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Macro",
  39919. height: math.unit(210, "miles"),
  39920. default: true
  39921. },
  39922. {
  39923. name: "Megamacro",
  39924. height: math.unit(210000, "miles")
  39925. },
  39926. ]
  39927. ))
  39928. characterMakers.push(() => makeCharacter(
  39929. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39930. {
  39931. front: {
  39932. height: math.unit(188, "feet"),
  39933. name: "Front",
  39934. image: {
  39935. source: "./media/characters/pyotr/front.svg",
  39936. extra: 1912/1826,
  39937. bottom: 18/1930
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Macro",
  39944. height: math.unit(188, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Megamacro",
  39949. height: math.unit(8, "miles")
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39955. {
  39956. side: {
  39957. height: math.unit(10, "feet"),
  39958. weight: math.unit(4500, "lb"),
  39959. name: "Side",
  39960. image: {
  39961. source: "./media/characters/ackart/side.svg",
  39962. extra: 1776/1668,
  39963. bottom: 116/1892
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Normal",
  39970. height: math.unit(10, "feet"),
  39971. default: true
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39977. {
  39978. side: {
  39979. height: math.unit(21, "feet"),
  39980. name: "Side",
  39981. image: {
  39982. source: "./media/characters/nolow/side.svg",
  39983. extra: 1484/1434,
  39984. bottom: 85/1569
  39985. }
  39986. },
  39987. sideErect: {
  39988. height: math.unit(21, "feet"),
  39989. name: "Side-erect",
  39990. image: {
  39991. source: "./media/characters/nolow/side-erect.svg",
  39992. extra: 1484/1434,
  39993. bottom: 85/1569
  39994. }
  39995. },
  39996. },
  39997. [
  39998. {
  39999. name: "Regular",
  40000. height: math.unit(12, "feet")
  40001. },
  40002. {
  40003. name: "Big Chee",
  40004. height: math.unit(21, "feet"),
  40005. default: true
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40011. {
  40012. front: {
  40013. height: math.unit(7, "feet"),
  40014. weight: math.unit(250, "lb"),
  40015. name: "Front",
  40016. image: {
  40017. source: "./media/characters/nines/front.svg",
  40018. extra: 1741/1607,
  40019. bottom: 41/1782
  40020. }
  40021. },
  40022. side: {
  40023. height: math.unit(7, "feet"),
  40024. weight: math.unit(250, "lb"),
  40025. name: "Side",
  40026. image: {
  40027. source: "./media/characters/nines/side.svg",
  40028. extra: 1854/1735,
  40029. bottom: 93/1947
  40030. }
  40031. },
  40032. back: {
  40033. height: math.unit(7, "feet"),
  40034. weight: math.unit(250, "lb"),
  40035. name: "Back",
  40036. image: {
  40037. source: "./media/characters/nines/back.svg",
  40038. extra: 1748/1615,
  40039. bottom: 20/1768
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Megamacro",
  40046. height: math.unit(99, "km"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(5 + 10/12, "feet"),
  40056. weight: math.unit(210, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/zenith/front.svg",
  40060. extra: 1531/1452,
  40061. bottom: 198/1729
  40062. }
  40063. },
  40064. back: {
  40065. height: math.unit(5 + 10/12, "feet"),
  40066. weight: math.unit(210, "lb"),
  40067. name: "Back",
  40068. image: {
  40069. source: "./media/characters/zenith/back.svg",
  40070. extra: 1571/1487,
  40071. bottom: 75/1646
  40072. }
  40073. },
  40074. },
  40075. [
  40076. {
  40077. name: "Normal",
  40078. height: math.unit(5 + 10/12, "feet"),
  40079. default: true
  40080. }
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40085. {
  40086. front: {
  40087. height: math.unit(4, "feet"),
  40088. weight: math.unit(60, "lb"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/jasper/front.svg",
  40092. extra: 1450/1379,
  40093. bottom: 19/1469
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(4, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(6 + 5/12, "feet"),
  40110. weight: math.unit(290, "lb"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/tiberius-thyben/front.svg",
  40114. extra: 757/739,
  40115. bottom: 39/796
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Micro",
  40122. height: math.unit(1.5, "inches")
  40123. },
  40124. {
  40125. name: "Normal",
  40126. height: math.unit(6 + 5/12, "feet"),
  40127. default: true
  40128. },
  40129. {
  40130. name: "Macro",
  40131. height: math.unit(300, "feet")
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(5 + 6/12, "feet"),
  40140. weight: math.unit(60, "kg"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/sabre/front.svg",
  40144. extra: 738/671,
  40145. bottom: 27/765
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Teeny",
  40152. height: math.unit(2, "inches")
  40153. },
  40154. {
  40155. name: "Smol",
  40156. height: math.unit(8, "inches")
  40157. },
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(5 + 6/12, "feet"),
  40161. default: true
  40162. },
  40163. {
  40164. name: "Mini-Macro",
  40165. height: math.unit(15, "feet")
  40166. },
  40167. {
  40168. name: "Macro",
  40169. height: math.unit(50, "feet")
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(6 + 4/12, "feet"),
  40178. weight: math.unit(170, "lb"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/charlie/front.svg",
  40182. extra: 1348/1228,
  40183. bottom: 15/1363
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Macro",
  40190. height: math.unit(1700, "meters"),
  40191. default: true
  40192. },
  40193. {
  40194. name: "MegaMacro",
  40195. height: math.unit(20400, "meters")
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(6 + 3/12, "feet"),
  40204. weight: math.unit(185, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/susan-grant/front.svg",
  40208. extra: 1351/1327,
  40209. bottom: 26/1377
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(6 + 3/12, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Macro",
  40221. height: math.unit(225, "feet")
  40222. },
  40223. {
  40224. name: "Macro+",
  40225. height: math.unit(900, "feet")
  40226. },
  40227. {
  40228. name: "MegaMacro",
  40229. height: math.unit(14400, "feet")
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(5 + 4/12, "feet"),
  40238. weight: math.unit(110, "lb"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/axel-isanov/front.svg",
  40242. extra: 1096/1065,
  40243. bottom: 13/1109
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(5 + 4/12, "feet"),
  40251. default: true
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(9, "feet"),
  40260. weight: math.unit(467, "lb"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/necahual/front.svg",
  40264. extra: 920/873,
  40265. bottom: 26/946
  40266. }
  40267. },
  40268. back: {
  40269. height: math.unit(9, "feet"),
  40270. weight: math.unit(467, "lb"),
  40271. name: "Back",
  40272. image: {
  40273. source: "./media/characters/necahual/back.svg",
  40274. extra: 930/884,
  40275. bottom: 16/946
  40276. }
  40277. },
  40278. frontUnderwear: {
  40279. height: math.unit(9, "feet"),
  40280. weight: math.unit(467, "lb"),
  40281. name: "Front (Underwear)",
  40282. image: {
  40283. source: "./media/characters/necahual/front-underwear.svg",
  40284. extra: 920/873,
  40285. bottom: 26/946
  40286. }
  40287. },
  40288. frontDressed: {
  40289. height: math.unit(9, "feet"),
  40290. weight: math.unit(467, "lb"),
  40291. name: "Front (Dressed)",
  40292. image: {
  40293. source: "./media/characters/necahual/front-dressed.svg",
  40294. extra: 920/873,
  40295. bottom: 26/946
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Comprsesed",
  40302. height: math.unit(9, "feet")
  40303. },
  40304. {
  40305. name: "Natural",
  40306. height: math.unit(15, "feet"),
  40307. default: true
  40308. },
  40309. {
  40310. name: "Boosted",
  40311. height: math.unit(50, "feet")
  40312. },
  40313. {
  40314. name: "Boosted+",
  40315. height: math.unit(150, "feet")
  40316. },
  40317. {
  40318. name: "Max",
  40319. height: math.unit(500, "feet")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(22 + 1/12, "feet"),
  40328. weight: math.unit(3200, "lb"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/theo-acacia/front.svg",
  40332. extra: 1796/1741,
  40333. bottom: 83/1879
  40334. }
  40335. },
  40336. frontUnderwear: {
  40337. height: math.unit(22 + 1/12, "feet"),
  40338. weight: math.unit(3200, "lb"),
  40339. name: "Front (Underwear)",
  40340. image: {
  40341. source: "./media/characters/theo-acacia/front-underwear.svg",
  40342. extra: 1796/1741,
  40343. bottom: 83/1879
  40344. }
  40345. },
  40346. frontNude: {
  40347. height: math.unit(22 + 1/12, "feet"),
  40348. weight: math.unit(3200, "lb"),
  40349. name: "Front (Nude)",
  40350. image: {
  40351. source: "./media/characters/theo-acacia/front-nude.svg",
  40352. extra: 1796/1741,
  40353. bottom: 83/1879
  40354. }
  40355. },
  40356. },
  40357. [
  40358. {
  40359. name: "Normal",
  40360. height: math.unit(22 + 1/12, "feet"),
  40361. default: true
  40362. },
  40363. ]
  40364. ))
  40365. characterMakers.push(() => makeCharacter(
  40366. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40367. {
  40368. front: {
  40369. height: math.unit(20, "feet"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/astra/front.svg",
  40373. extra: 1850/1714,
  40374. bottom: 106/1956
  40375. }
  40376. },
  40377. frontUndressed: {
  40378. height: math.unit(20, "feet"),
  40379. name: "Front (Undressed)",
  40380. image: {
  40381. source: "./media/characters/astra/front-undressed.svg",
  40382. extra: 1926/1749,
  40383. bottom: 0/1926
  40384. }
  40385. },
  40386. hand: {
  40387. height: math.unit(1.53, "feet"),
  40388. name: "Hand",
  40389. image: {
  40390. source: "./media/characters/astra/hand.svg"
  40391. }
  40392. },
  40393. paw: {
  40394. height: math.unit(1.53, "feet"),
  40395. name: "Paw",
  40396. image: {
  40397. source: "./media/characters/astra/paw.svg"
  40398. }
  40399. },
  40400. },
  40401. [
  40402. {
  40403. name: "Smallest",
  40404. height: math.unit(20, "feet")
  40405. },
  40406. {
  40407. name: "Normal",
  40408. height: math.unit(1e9, "miles"),
  40409. default: true
  40410. },
  40411. {
  40412. name: "Larger",
  40413. height: math.unit(5, "multiverses")
  40414. },
  40415. {
  40416. name: "Largest",
  40417. height: math.unit(1e9, "multiverses")
  40418. },
  40419. ]
  40420. ))
  40421. characterMakers.push(() => makeCharacter(
  40422. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40423. {
  40424. front: {
  40425. height: math.unit(8, "feet"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/breanna/front.svg",
  40429. extra: 1912/1632,
  40430. bottom: 33/1945
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Smallest",
  40437. height: math.unit(8, "feet")
  40438. },
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(1, "mile"),
  40442. default: true
  40443. },
  40444. {
  40445. name: "Maximum",
  40446. height: math.unit(1500000000000, "lightyears")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(5 + 11/12, "feet"),
  40455. weight: math.unit(155, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/cai/front.svg",
  40459. extra: 1823/1702,
  40460. bottom: 32/1855
  40461. }
  40462. },
  40463. back: {
  40464. height: math.unit(5 + 11/12, "feet"),
  40465. weight: math.unit(155, "lb"),
  40466. name: "Back",
  40467. image: {
  40468. source: "./media/characters/cai/back.svg",
  40469. extra: 1809/1708,
  40470. bottom: 31/1840
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Normal",
  40477. height: math.unit(5 + 11/12, "feet"),
  40478. default: true
  40479. },
  40480. {
  40481. name: "Big",
  40482. height: math.unit(15, "feet")
  40483. },
  40484. {
  40485. name: "Macro",
  40486. height: math.unit(200, "feet")
  40487. },
  40488. ]
  40489. ))
  40490. characterMakers.push(() => makeCharacter(
  40491. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40492. {
  40493. front: {
  40494. height: math.unit(5 + 6/12, "feet"),
  40495. weight: math.unit(160, "lb"),
  40496. name: "Front",
  40497. image: {
  40498. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40499. extra: 1227/1174,
  40500. bottom: 37/1264
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Macro",
  40507. height: math.unit(444, "meters"),
  40508. default: true
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(18 + 7/12, "feet"),
  40517. name: "Front",
  40518. image: {
  40519. source: "./media/characters/rex/front.svg",
  40520. extra: 1941/1807,
  40521. bottom: 66/2007
  40522. }
  40523. },
  40524. back: {
  40525. height: math.unit(18 + 7/12, "feet"),
  40526. name: "Back",
  40527. image: {
  40528. source: "./media/characters/rex/back.svg",
  40529. extra: 1937/1822,
  40530. bottom: 42/1979
  40531. }
  40532. },
  40533. boot: {
  40534. height: math.unit(3.45, "feet"),
  40535. name: "Boot",
  40536. image: {
  40537. source: "./media/characters/rex/boot.svg"
  40538. }
  40539. },
  40540. paw: {
  40541. height: math.unit(4.17, "feet"),
  40542. name: "Paw",
  40543. image: {
  40544. source: "./media/characters/rex/paw.svg"
  40545. }
  40546. },
  40547. head: {
  40548. height: math.unit(6.728, "feet"),
  40549. name: "Head",
  40550. image: {
  40551. source: "./media/characters/rex/head.svg"
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Nano",
  40558. height: math.unit(18 + 7/12, "feet")
  40559. },
  40560. {
  40561. name: "Micro",
  40562. height: math.unit(1.5, "megameters")
  40563. },
  40564. {
  40565. name: "Normal",
  40566. height: math.unit(440, "megameters"),
  40567. default: true
  40568. },
  40569. {
  40570. name: "Macro",
  40571. height: math.unit(2.5, "gigameters")
  40572. },
  40573. {
  40574. name: "Gigamacro",
  40575. height: math.unit(2, "galaxies")
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40581. {
  40582. side: {
  40583. height: math.unit(32, "feet"),
  40584. weight: math.unit(250000, "lb"),
  40585. name: "Side",
  40586. image: {
  40587. source: "./media/characters/silverwing/side.svg",
  40588. extra: 1100/1019,
  40589. bottom: 204/1304
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(32, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(6 + 6/12, "feet"),
  40606. weight: math.unit(350, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/tristan-hawthorne/front.svg",
  40610. extra: 1159/1124,
  40611. bottom: 37/1196
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(6 + 6/12, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(5 + 11/12, "feet"),
  40628. weight: math.unit(190, "lb"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/mizu/front.svg",
  40632. extra: 1988/1788,
  40633. bottom: 14/2002
  40634. }
  40635. },
  40636. },
  40637. [
  40638. {
  40639. name: "Normal",
  40640. height: math.unit(5 + 11/12, "feet"),
  40641. default: true
  40642. },
  40643. ]
  40644. ))
  40645. characterMakers.push(() => makeCharacter(
  40646. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40647. {
  40648. front: {
  40649. height: math.unit(6, "feet"),
  40650. name: "Front",
  40651. image: {
  40652. source: "./media/characters/moonlight-rose-terra/front.svg",
  40653. extra: 1434/1252,
  40654. bottom: 48/1482
  40655. }
  40656. },
  40657. },
  40658. [
  40659. {
  40660. name: "TRAPPIST-1D",
  40661. height: math.unit(4992*2, "km")
  40662. },
  40663. {
  40664. name: "Earth",
  40665. height: math.unit(6367*2, "km"),
  40666. default: true
  40667. },
  40668. {
  40669. name: "Kepler-22b",
  40670. height: math.unit(15282*2, "km")
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(6, "feet"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40682. extra: 1851/1712,
  40683. bottom: 0/1851
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Enceladus",
  40690. height: math.unit(513*2, "km")
  40691. },
  40692. {
  40693. name: "Europe",
  40694. height: math.unit(1560*2, "km")
  40695. },
  40696. {
  40697. name: "Neptune",
  40698. height: math.unit(24622*2, "km"),
  40699. default: true
  40700. },
  40701. {
  40702. name: "CoRoT-9b",
  40703. height: math.unit(75067*2, "km")
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(6, "feet"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40715. extra: 1367/1286,
  40716. bottom: 55/1422
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Saturn",
  40723. height: math.unit(58232*2, "km")
  40724. },
  40725. {
  40726. name: "Jupiter",
  40727. height: math.unit(69911*2, "km"),
  40728. default: true
  40729. },
  40730. {
  40731. name: "HD 100546 b",
  40732. height: math.unit(482938, "km")
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(1.7, "feet"),
  40741. weight: math.unit(50, "lb"),
  40742. name: "Front",
  40743. image: {
  40744. source: "./media/characters/dechroma/front.svg",
  40745. extra: 1095/859,
  40746. bottom: 64/1159
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Normal",
  40753. height: math.unit(1.7, "feet"),
  40754. default: true
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40760. {
  40761. side: {
  40762. height: math.unit(30, "feet"),
  40763. name: "Side",
  40764. image: {
  40765. source: "./media/characters/veluren-thanazel/side.svg",
  40766. extra: 1611/633,
  40767. bottom: 118/1729
  40768. }
  40769. },
  40770. front: {
  40771. height: math.unit(30, "feet"),
  40772. name: "Front",
  40773. image: {
  40774. source: "./media/characters/veluren-thanazel/front.svg",
  40775. extra: 1486/636,
  40776. bottom: 238/1724
  40777. }
  40778. },
  40779. head: {
  40780. height: math.unit(21.4, "feet"),
  40781. name: "Head",
  40782. image: {
  40783. source: "./media/characters/veluren-thanazel/head.svg"
  40784. }
  40785. },
  40786. genitals: {
  40787. height: math.unit(19.4, "feet"),
  40788. name: "Genitals",
  40789. image: {
  40790. source: "./media/characters/veluren-thanazel/genitals.svg"
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Social",
  40797. height: math.unit(6, "feet")
  40798. },
  40799. {
  40800. name: "Play",
  40801. height: math.unit(12, "feet")
  40802. },
  40803. {
  40804. name: "True",
  40805. height: math.unit(30, "feet"),
  40806. default: true
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(7 + 6/12, "feet"),
  40815. weight: math.unit(500, "kg"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/arcturas/front.svg",
  40819. extra: 1700/1500,
  40820. bottom: 145/1845
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(7 + 6/12, "feet"),
  40828. default: true
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40834. {
  40835. side: {
  40836. height: math.unit(6, "feet"),
  40837. weight: math.unit(2, "tons"),
  40838. name: "Side",
  40839. image: {
  40840. source: "./media/characters/vitaen/side.svg",
  40841. extra: 1157/617,
  40842. bottom: 122/1279
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(6, "feet"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(19, "feet"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/fia-dreamweaver/front.svg",
  40862. extra: 1630/1504,
  40863. bottom: 25/1655
  40864. }
  40865. },
  40866. },
  40867. [
  40868. {
  40869. name: "Normal",
  40870. height: math.unit(19, "feet"),
  40871. default: true
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(5 + 4/12, "feet"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/artan/front.svg",
  40883. extra: 1618/1535,
  40884. bottom: 46/1664
  40885. }
  40886. },
  40887. back: {
  40888. height: math.unit(5 + 4/12, "feet"),
  40889. name: "Back",
  40890. image: {
  40891. source: "./media/characters/artan/back.svg",
  40892. extra: 1618/1543,
  40893. bottom: 31/1649
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Normal",
  40900. height: math.unit(5 + 4/12, "feet"),
  40901. default: true
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40907. {
  40908. side: {
  40909. height: math.unit(182, "cm"),
  40910. weight: math.unit(1000, "lb"),
  40911. name: "Side",
  40912. image: {
  40913. source: "./media/characters/silver-dragon/side.svg",
  40914. extra: 710/287,
  40915. bottom: 88/798
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(182, "cm"),
  40923. default: true
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40929. {
  40930. side: {
  40931. height: math.unit(6 + 6/12, "feet"),
  40932. weight: math.unit(1.5, "tons"),
  40933. name: "Side",
  40934. image: {
  40935. source: "./media/characters/zephyr/side.svg",
  40936. extra: 1433/586,
  40937. bottom: 109/1542
  40938. }
  40939. },
  40940. },
  40941. [
  40942. {
  40943. name: "Normal",
  40944. height: math.unit(6 + 6/12, "feet"),
  40945. default: true
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40951. {
  40952. side: {
  40953. height: math.unit(1, "feet"),
  40954. name: "Side",
  40955. image: {
  40956. source: "./media/characters/vixye/side.svg",
  40957. extra: 632/541,
  40958. bottom: 0/632
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(1, "feet"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "True",
  40970. height: math.unit(1e15, "multiverses")
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(8 + 2/12, "feet"),
  40979. weight: math.unit(650, "lb"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/darla-mac-lochlainn/front.svg",
  40983. extra: 1174/1137,
  40984. bottom: 82/1256
  40985. }
  40986. },
  40987. back: {
  40988. height: math.unit(8 + 2/12, "feet"),
  40989. weight: math.unit(650, "lb"),
  40990. name: "Back",
  40991. image: {
  40992. source: "./media/characters/darla-mac-lochlainn/back.svg",
  40993. extra: 1204/1157,
  40994. bottom: 46/1250
  40995. }
  40996. },
  40997. },
  40998. [
  40999. {
  41000. name: "Wildform",
  41001. height: math.unit(8 + 2/12, "feet"),
  41002. default: true
  41003. },
  41004. ]
  41005. ))
  41006. characterMakers.push(() => makeCharacter(
  41007. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41008. {
  41009. front: {
  41010. height: math.unit(18, "feet"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/cyphin/front.svg",
  41014. extra: 970/886,
  41015. bottom: 42/1012
  41016. }
  41017. },
  41018. back: {
  41019. height: math.unit(18, "feet"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/cyphin/back.svg",
  41023. extra: 1009/894,
  41024. bottom: 24/1033
  41025. }
  41026. },
  41027. head: {
  41028. height: math.unit(5.05, "feet"),
  41029. name: "Head",
  41030. image: {
  41031. source: "./media/characters/cyphin/head.svg"
  41032. }
  41033. },
  41034. tailbud: {
  41035. height: math.unit(5, "feet"),
  41036. name: "Tailbud",
  41037. image: {
  41038. source: "./media/characters/cyphin/tailbud.svg"
  41039. }
  41040. },
  41041. },
  41042. [
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41047. {
  41048. side: {
  41049. height: math.unit(10, "feet"),
  41050. weight: math.unit(6, "tons"),
  41051. name: "Side",
  41052. image: {
  41053. source: "./media/characters/raijin/side.svg",
  41054. extra: 1529/613,
  41055. bottom: 337/1866
  41056. }
  41057. },
  41058. },
  41059. [
  41060. {
  41061. name: "Normal",
  41062. height: math.unit(10, "feet"),
  41063. default: true
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41069. {
  41070. side: {
  41071. height: math.unit(9, "feet"),
  41072. name: "Side",
  41073. image: {
  41074. source: "./media/characters/nilghais/side.svg",
  41075. extra: 1047/744,
  41076. bottom: 91/1138
  41077. }
  41078. },
  41079. head: {
  41080. height: math.unit(3.14, "feet"),
  41081. name: "Head",
  41082. image: {
  41083. source: "./media/characters/nilghais/head.svg"
  41084. }
  41085. },
  41086. mouth: {
  41087. height: math.unit(4.6, "feet"),
  41088. name: "Mouth",
  41089. image: {
  41090. source: "./media/characters/nilghais/mouth.svg"
  41091. }
  41092. },
  41093. wings: {
  41094. height: math.unit(24, "feet"),
  41095. name: "Wings",
  41096. image: {
  41097. source: "./media/characters/nilghais/wings.svg"
  41098. }
  41099. },
  41100. ass: {
  41101. height: math.unit(6.12, "feet"),
  41102. name: "Ass",
  41103. image: {
  41104. source: "./media/characters/nilghais/ass.svg"
  41105. }
  41106. },
  41107. },
  41108. [
  41109. {
  41110. name: "Normal",
  41111. height: math.unit(9, "feet"),
  41112. default: true
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41118. {
  41119. regular: {
  41120. height: math.unit(16 + 2/12, "feet"),
  41121. weight: math.unit(2300, "lb"),
  41122. name: "Regular",
  41123. image: {
  41124. source: "./media/characters/zolgar/regular.svg",
  41125. extra: 1246/1004,
  41126. bottom: 124/1370
  41127. }
  41128. },
  41129. boxers: {
  41130. height: math.unit(16 + 2/12, "feet"),
  41131. weight: math.unit(2300, "lb"),
  41132. name: "Boxers",
  41133. image: {
  41134. source: "./media/characters/zolgar/boxers.svg",
  41135. extra: 1246/1004,
  41136. bottom: 124/1370
  41137. }
  41138. },
  41139. armored: {
  41140. height: math.unit(16 + 2/12, "feet"),
  41141. weight: math.unit(2300, "lb"),
  41142. name: "Armored",
  41143. image: {
  41144. source: "./media/characters/zolgar/armored.svg",
  41145. extra: 1246/1004,
  41146. bottom: 124/1370
  41147. }
  41148. },
  41149. goth: {
  41150. height: math.unit(16 + 2/12, "feet"),
  41151. weight: math.unit(2300, "lb"),
  41152. name: "Goth",
  41153. image: {
  41154. source: "./media/characters/zolgar/goth.svg",
  41155. extra: 1246/1004,
  41156. bottom: 124/1370
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Shrunken Down",
  41163. height: math.unit(9 + 2/12, "feet")
  41164. },
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(16 + 2/12, "feet"),
  41168. default: true
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41174. {
  41175. front: {
  41176. height: math.unit(6, "feet"),
  41177. weight: math.unit(168, "lb"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/luca/front.svg",
  41181. extra: 841/667,
  41182. bottom: 102/943
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(6, "feet"),
  41190. default: true
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41196. {
  41197. side: {
  41198. height: math.unit(7 + 3/12, "feet"),
  41199. weight: math.unit(312, "lb"),
  41200. name: "Side",
  41201. image: {
  41202. source: "./media/characters/zezo/side.svg",
  41203. extra: 1192/1067,
  41204. bottom: 63/1255
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Normal",
  41211. height: math.unit(7 + 3/12, "feet"),
  41212. default: true
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(5 + 5/12, "feet"),
  41221. weight: math.unit(170, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/mayso/front.svg",
  41225. extra: 1215/1108,
  41226. bottom: 16/1231
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Normal",
  41233. height: math.unit(5 + 5/12, "feet"),
  41234. default: true
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41240. {
  41241. front: {
  41242. height: math.unit(4 + 3/12, "feet"),
  41243. weight: math.unit(80, "lb"),
  41244. name: "Front",
  41245. image: {
  41246. source: "./media/characters/hess/front.svg",
  41247. extra: 1200/1123,
  41248. bottom: 16/1216
  41249. }
  41250. },
  41251. },
  41252. [
  41253. {
  41254. name: "Normal",
  41255. height: math.unit(4 + 3/12, "feet"),
  41256. default: true
  41257. },
  41258. ]
  41259. ))
  41260. characterMakers.push(() => makeCharacter(
  41261. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41262. {
  41263. front: {
  41264. height: math.unit(1.9, "meters"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/ashgar/front.svg",
  41268. extra: 1177/1146,
  41269. bottom: 99/1276
  41270. }
  41271. },
  41272. back: {
  41273. height: math.unit(1.9, "meters"),
  41274. name: "Back",
  41275. image: {
  41276. source: "./media/characters/ashgar/back.svg",
  41277. extra: 1201/1183,
  41278. bottom: 53/1254
  41279. }
  41280. },
  41281. feral: {
  41282. height: math.unit(1.4, "meters"),
  41283. name: "Feral",
  41284. image: {
  41285. source: "./media/characters/ashgar/feral.svg",
  41286. extra: 370/345,
  41287. bottom: 45/415
  41288. }
  41289. },
  41290. },
  41291. [
  41292. {
  41293. name: "Normal",
  41294. height: math.unit(1.9, "meters"),
  41295. default: true
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41301. {
  41302. regular: {
  41303. height: math.unit(6, "feet"),
  41304. weight: math.unit(220, "lb"),
  41305. name: "Regular",
  41306. image: {
  41307. source: "./media/characters/phillip/regular.svg",
  41308. extra: 1373/1277,
  41309. bottom: 75/1448
  41310. }
  41311. },
  41312. dressed: {
  41313. height: math.unit(6, "feet"),
  41314. weight: math.unit(220, "lb"),
  41315. name: "Dressed",
  41316. image: {
  41317. source: "./media/characters/phillip/dressed.svg",
  41318. extra: 1373/1277,
  41319. bottom: 75/1448
  41320. }
  41321. },
  41322. paw: {
  41323. height: math.unit(1.44, "feet"),
  41324. name: "Paw",
  41325. image: {
  41326. source: "./media/characters/phillip/paw.svg"
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(6, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41340. {
  41341. side: {
  41342. height: math.unit(42, "feet"),
  41343. name: "Side",
  41344. image: {
  41345. source: "./media/characters/uvula/side.svg",
  41346. extra: 683/586,
  41347. bottom: 60/743
  41348. }
  41349. },
  41350. front: {
  41351. height: math.unit(42, "feet"),
  41352. name: "Front",
  41353. image: {
  41354. source: "./media/characters/uvula/front.svg",
  41355. extra: 705/613,
  41356. bottom: 54/759
  41357. }
  41358. },
  41359. maw: {
  41360. height: math.unit(23.5, "feet"),
  41361. name: "Maw",
  41362. image: {
  41363. source: "./media/characters/uvula/maw.svg"
  41364. }
  41365. },
  41366. },
  41367. [
  41368. {
  41369. name: "Original Size",
  41370. height: math.unit(14, "inches")
  41371. },
  41372. {
  41373. name: "Human Size",
  41374. height: math.unit(6, "feet")
  41375. },
  41376. {
  41377. name: "Big",
  41378. height: math.unit(42, "feet"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Bigger",
  41383. height: math.unit(100, "feet")
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41389. {
  41390. front: {
  41391. height: math.unit(5 + 11/12, "feet"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/lannah/front.svg",
  41395. extra: 1208/1113,
  41396. bottom: 97/1305
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(5 + 11/12, "feet"),
  41404. default: true
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41410. {
  41411. front: {
  41412. height: math.unit(6 + 3/12, "feet"),
  41413. weight: math.unit(3.5, "tons"),
  41414. name: "Front",
  41415. image: {
  41416. source: "./media/characters/emberflame/front.svg",
  41417. extra: 1198/672,
  41418. bottom: 82/1280
  41419. }
  41420. },
  41421. side: {
  41422. height: math.unit(6 + 3/12, "feet"),
  41423. weight: math.unit(3.5, "tons"),
  41424. name: "Side",
  41425. image: {
  41426. source: "./media/characters/emberflame/side.svg",
  41427. extra: 938/527,
  41428. bottom: 56/994
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(6 + 3/12, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41442. {
  41443. side: {
  41444. height: math.unit(17.5, "feet"),
  41445. weight: math.unit(35, "tons"),
  41446. name: "Side",
  41447. image: {
  41448. source: "./media/characters/sophie-ambrose/side.svg",
  41449. extra: 1573/1242,
  41450. bottom: 71/1644
  41451. }
  41452. },
  41453. maw: {
  41454. height: math.unit(7.4, "feet"),
  41455. name: "Maw",
  41456. image: {
  41457. source: "./media/characters/sophie-ambrose/maw.svg"
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(17.5, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(280, "feet"),
  41474. weight: math.unit(550, "tons"),
  41475. name: "Front",
  41476. image: {
  41477. source: "./media/characters/king-mugi/front.svg",
  41478. extra: 1102/947,
  41479. bottom: 104/1206
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "King Mugi",
  41486. height: math.unit(280, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(64, "meters"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/nova-fox/front.svg",
  41499. extra: 1310/1246,
  41500. bottom: 65/1375
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Macro",
  41507. height: math.unit(64, "meters"),
  41508. default: true
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(6 + 3/12, "feet"),
  41517. weight: math.unit(170, "lb"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/sam-bat/front.svg",
  41521. extra: 1601/1411,
  41522. bottom: 125/1726
  41523. }
  41524. },
  41525. back: {
  41526. height: math.unit(6 + 3/12, "feet"),
  41527. weight: math.unit(170, "lb"),
  41528. name: "Back",
  41529. image: {
  41530. source: "./media/characters/sam-bat/back.svg",
  41531. extra: 1577/1405,
  41532. bottom: 58/1635
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Normal",
  41539. height: math.unit(6 + 3/12, "feet"),
  41540. default: true
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41546. {
  41547. front: {
  41548. height: math.unit(59, "feet"),
  41549. weight: math.unit(40000, "lb"),
  41550. name: "Front",
  41551. image: {
  41552. source: "./media/characters/inari/front.svg",
  41553. extra: 1884/1350,
  41554. bottom: 95/1979
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Gigantamax",
  41561. height: math.unit(59, "feet"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41568. {
  41569. front: {
  41570. height: math.unit(5 + 8/12, "feet"),
  41571. name: "Front",
  41572. image: {
  41573. source: "./media/characters/elizabeth/front.svg",
  41574. extra: 1395/1298,
  41575. bottom: 54/1449
  41576. }
  41577. },
  41578. mouth: {
  41579. height: math.unit(1.97, "feet"),
  41580. name: "Mouth",
  41581. image: {
  41582. source: "./media/characters/elizabeth/mouth.svg"
  41583. }
  41584. },
  41585. foot: {
  41586. height: math.unit(1.17, "feet"),
  41587. name: "Foot",
  41588. image: {
  41589. source: "./media/characters/elizabeth/foot.svg"
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(5 + 8/12, "feet"),
  41597. default: true
  41598. },
  41599. {
  41600. name: "Minimacro",
  41601. height: math.unit(18, "feet")
  41602. },
  41603. {
  41604. name: "Macro",
  41605. height: math.unit(180, "feet")
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41611. {
  41612. front: {
  41613. height: math.unit(5 + 2/12, "feet"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/october-gossamer/front.svg",
  41617. extra: 505/454,
  41618. bottom: 7/512
  41619. }
  41620. },
  41621. back: {
  41622. height: math.unit(5 + 2/12, "feet"),
  41623. name: "Back",
  41624. image: {
  41625. source: "./media/characters/october-gossamer/back.svg",
  41626. extra: 501/454,
  41627. bottom: 11/512
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(5 + 2/12, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(5, "feet"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/epiglottis/front.svg",
  41647. extra: 923/849,
  41648. bottom: 17/940
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Original Size",
  41655. height: math.unit(10, "inches")
  41656. },
  41657. {
  41658. name: "Human Size",
  41659. height: math.unit(5, "feet"),
  41660. default: true
  41661. },
  41662. {
  41663. name: "Big",
  41664. height: math.unit(25, "feet")
  41665. },
  41666. {
  41667. name: "Bigger",
  41668. height: math.unit(50, "feet")
  41669. },
  41670. {
  41671. name: "oh lawd",
  41672. height: math.unit(75, "feet")
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(2 + 4/12, "feet"),
  41681. weight: math.unit(60, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/lerm/front.svg",
  41685. extra: 796/790,
  41686. bottom: 79/875
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(2 + 4/12, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(5.5, "feet"),
  41703. weight: math.unit(130, "lb"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/xena-nebadon/front.svg",
  41707. extra: 1828/1730,
  41708. bottom: 79/1907
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Tiny Puppy",
  41715. height: math.unit(3, "inches")
  41716. },
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(5.5, "feet"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Lotta Lady",
  41724. height: math.unit(12, "feet")
  41725. },
  41726. {
  41727. name: "Pretty Big",
  41728. height: math.unit(100, "feet")
  41729. },
  41730. {
  41731. name: "Big",
  41732. height: math.unit(500, "feet")
  41733. },
  41734. {
  41735. name: "Skyscraper Toys",
  41736. height: math.unit(2500, "feet")
  41737. },
  41738. {
  41739. name: "Plane Catcher",
  41740. height: math.unit(8, "miles")
  41741. },
  41742. {
  41743. name: "Planet Toys",
  41744. height: math.unit(15, "earths")
  41745. },
  41746. {
  41747. name: "Stardust",
  41748. height: math.unit(0.25, "galaxies")
  41749. },
  41750. {
  41751. name: "Snacks",
  41752. height: math.unit(70, "universes")
  41753. },
  41754. ]
  41755. ))
  41756. //characters
  41757. function makeCharacters() {
  41758. const results = [];
  41759. characterMakers.forEach(character => {
  41760. results.push(character());
  41761. });
  41762. return results;
  41763. }