less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

36169 satır
908 KiB

  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. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. "donkey": {
  1552. name: "Donkey",
  1553. parents: ["horse"]
  1554. },
  1555. "chinchilla": {
  1556. name: "Chinchilla",
  1557. parents: ["rodent"]
  1558. },
  1559. "felkin": {
  1560. name: "Felkin",
  1561. parents: ["dragon"]
  1562. },
  1563. }
  1564. //species
  1565. function getSpeciesInfo(speciesList) {
  1566. let result = new Set();
  1567. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1568. result.add(entry)
  1569. });
  1570. return Array.from(result);
  1571. };
  1572. function getSpeciesInfoHelper(species) {
  1573. if (!speciesData[species]) {
  1574. console.warn(species + " doesn't exist");
  1575. return [];
  1576. }
  1577. if (speciesData[species].parents) {
  1578. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1579. } else {
  1580. return [species];
  1581. }
  1582. }
  1583. characterMakers.push(() => makeCharacter(
  1584. {
  1585. name: "Fen",
  1586. species: ["crux"],
  1587. description: {
  1588. title: "Bio",
  1589. text: "Very furry. Sheds on everything."
  1590. },
  1591. tags: [
  1592. "anthro",
  1593. "goo"
  1594. ]
  1595. },
  1596. {
  1597. back: {
  1598. height: math.unit(2.2428, "meter"),
  1599. weight: math.unit(124.738, "kg"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/fen/back.svg",
  1603. extra: 2024 / 1867,
  1604. bottom: 13 / 2037
  1605. },
  1606. info: {
  1607. description: {
  1608. mode: "append",
  1609. text: "\n\nHe is not currently looking at you."
  1610. }
  1611. }
  1612. },
  1613. full: {
  1614. height: math.unit(1.34, "meter"),
  1615. weight: math.unit(225, "kg"),
  1616. name: "Full",
  1617. image: {
  1618. source: "./media/characters/fen/full.svg"
  1619. },
  1620. info: {
  1621. description: {
  1622. mode: "append",
  1623. text: "\n\nMunch."
  1624. }
  1625. }
  1626. },
  1627. kneeling: {
  1628. height: math.unit(5.4, "feet"),
  1629. weight: math.unit(124.738, "kg"),
  1630. name: "Kneeling",
  1631. image: {
  1632. source: "./media/characters/fen/kneeling.svg",
  1633. extra: 563 / 507
  1634. }
  1635. },
  1636. goo: {
  1637. height: math.unit(2.8, "feet"),
  1638. weight: math.unit(125, "kg"),
  1639. capacity: math.unit(1, "people"),
  1640. name: "Goo",
  1641. image: {
  1642. source: "./media/characters/fen/goo.svg",
  1643. bottom: 116 / 613
  1644. }
  1645. },
  1646. lounging: {
  1647. height: math.unit(6.5, "feet"),
  1648. weight: math.unit(125, "kg"),
  1649. name: "Lounging",
  1650. image: {
  1651. source: "./media/characters/fen/lounging.svg"
  1652. }
  1653. },
  1654. },
  1655. [
  1656. {
  1657. name: "Normal",
  1658. height: math.unit(2.2428, "meter")
  1659. },
  1660. {
  1661. name: "Big",
  1662. height: math.unit(12, "feet")
  1663. },
  1664. {
  1665. name: "Minimacro",
  1666. height: math.unit(40, "feet"),
  1667. default: true,
  1668. info: {
  1669. description: {
  1670. mode: "append",
  1671. text: "\n\nTOO DAMN BIG"
  1672. }
  1673. }
  1674. },
  1675. {
  1676. name: "Macro",
  1677. height: math.unit(100, "feet"),
  1678. info: {
  1679. description: {
  1680. mode: "append",
  1681. text: "\n\nTOO DAMN BIG"
  1682. }
  1683. }
  1684. },
  1685. {
  1686. name: "Macro+",
  1687. height: math.unit(300, "feet")
  1688. },
  1689. {
  1690. name: "Megamacro",
  1691. height: math.unit(2, "miles")
  1692. }
  1693. ]
  1694. ))
  1695. characterMakers.push(() => makeCharacter(
  1696. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1697. {
  1698. front: {
  1699. height: math.unit(183, "cm"),
  1700. weight: math.unit(80, "kg"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/sofia-fluttertail/front.svg",
  1704. bottom: 0.01,
  1705. extra: 2154 / 2081
  1706. }
  1707. },
  1708. frontAlt: {
  1709. height: math.unit(183, "cm"),
  1710. weight: math.unit(80, "kg"),
  1711. name: "Front (alt)",
  1712. image: {
  1713. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1714. }
  1715. },
  1716. back: {
  1717. height: math.unit(183, "cm"),
  1718. weight: math.unit(80, "kg"),
  1719. name: "Back",
  1720. image: {
  1721. source: "./media/characters/sofia-fluttertail/back.svg"
  1722. }
  1723. },
  1724. kneeling: {
  1725. height: math.unit(125, "cm"),
  1726. weight: math.unit(80, "kg"),
  1727. name: "Kneeling",
  1728. image: {
  1729. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1730. extra: 1033 / 977,
  1731. bottom: 23.7 / 1057
  1732. }
  1733. },
  1734. maw: {
  1735. height: math.unit(183 / 5, "cm"),
  1736. name: "Maw",
  1737. image: {
  1738. source: "./media/characters/sofia-fluttertail/maw.svg"
  1739. }
  1740. },
  1741. mawcloseup: {
  1742. height: math.unit(183 / 5 * 0.41, "cm"),
  1743. name: "Maw (Closeup)",
  1744. image: {
  1745. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1746. }
  1747. },
  1748. paws: {
  1749. height: math.unit(1.17, "feet"),
  1750. name: "Paws",
  1751. image: {
  1752. source: "./media/characters/sofia-fluttertail/paws.svg",
  1753. extra: 851 / 851,
  1754. bottom: 17 / 868
  1755. }
  1756. },
  1757. },
  1758. [
  1759. {
  1760. name: "Normal",
  1761. height: math.unit(1.83, "meter")
  1762. },
  1763. {
  1764. name: "Size Thief",
  1765. height: math.unit(18, "feet")
  1766. },
  1767. {
  1768. name: "50 Foot Collie",
  1769. height: math.unit(50, "feet")
  1770. },
  1771. {
  1772. name: "Macro",
  1773. height: math.unit(96, "feet"),
  1774. default: true
  1775. },
  1776. {
  1777. name: "Megamerger",
  1778. height: math.unit(650, "feet")
  1779. },
  1780. ]
  1781. ))
  1782. characterMakers.push(() => makeCharacter(
  1783. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1784. {
  1785. front: {
  1786. height: math.unit(7, "feet"),
  1787. weight: math.unit(100, "kg"),
  1788. name: "Front",
  1789. image: {
  1790. source: "./media/characters/march/front.svg",
  1791. extra: 1,
  1792. bottom: 0.015
  1793. }
  1794. },
  1795. foot: {
  1796. height: math.unit(0.9, "feet"),
  1797. name: "Foot",
  1798. image: {
  1799. source: "./media/characters/march/foot.svg"
  1800. }
  1801. },
  1802. },
  1803. [
  1804. {
  1805. name: "Normal",
  1806. height: math.unit(7.9, "feet")
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(220, "meters")
  1811. },
  1812. {
  1813. name: "Megamacro",
  1814. height: math.unit(2.98, "km"),
  1815. default: true
  1816. },
  1817. {
  1818. name: "Gigamacro",
  1819. height: math.unit(15963, "km")
  1820. },
  1821. {
  1822. name: "Teramacro",
  1823. height: math.unit(2980000000, "km")
  1824. },
  1825. {
  1826. name: "Examacro",
  1827. height: math.unit(250, "parsecs")
  1828. },
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1833. {
  1834. front: {
  1835. height: math.unit(6, "feet"),
  1836. weight: math.unit(60, "kg"),
  1837. name: "Front",
  1838. image: {
  1839. source: "./media/characters/noir/front.svg",
  1840. extra: 1,
  1841. bottom: 0.032
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Normal",
  1848. height: math.unit(6.6, "feet")
  1849. },
  1850. {
  1851. name: "Macro",
  1852. height: math.unit(500, "feet")
  1853. },
  1854. {
  1855. name: "Megamacro",
  1856. height: math.unit(2.5, "km"),
  1857. default: true
  1858. },
  1859. {
  1860. name: "Gigamacro",
  1861. height: math.unit(22500, "km")
  1862. },
  1863. {
  1864. name: "Teramacro",
  1865. height: math.unit(2500000000, "km")
  1866. },
  1867. {
  1868. name: "Examacro",
  1869. height: math.unit(200, "parsecs")
  1870. },
  1871. ]
  1872. ))
  1873. characterMakers.push(() => makeCharacter(
  1874. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1875. {
  1876. front: {
  1877. height: math.unit(7, "feet"),
  1878. weight: math.unit(100, "kg"),
  1879. name: "Front",
  1880. image: {
  1881. source: "./media/characters/okuri/front.svg",
  1882. extra: 1,
  1883. bottom: 0.037
  1884. }
  1885. },
  1886. back: {
  1887. height: math.unit(7, "feet"),
  1888. weight: math.unit(100, "kg"),
  1889. name: "Back",
  1890. image: {
  1891. source: "./media/characters/okuri/back.svg",
  1892. extra: 1,
  1893. bottom: 0.007
  1894. }
  1895. },
  1896. },
  1897. [
  1898. {
  1899. name: "Megamacro",
  1900. height: math.unit(100, "miles"),
  1901. default: true
  1902. },
  1903. ]
  1904. ))
  1905. characterMakers.push(() => makeCharacter(
  1906. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1907. {
  1908. front: {
  1909. height: math.unit(7, "feet"),
  1910. weight: math.unit(100, "kg"),
  1911. name: "Front",
  1912. image: {
  1913. source: "./media/characters/manny/front.svg",
  1914. extra: 1,
  1915. bottom: 0.06
  1916. }
  1917. },
  1918. back: {
  1919. height: math.unit(7, "feet"),
  1920. weight: math.unit(100, "kg"),
  1921. name: "Back",
  1922. image: {
  1923. source: "./media/characters/manny/back.svg",
  1924. extra: 1,
  1925. bottom: 0.014
  1926. }
  1927. },
  1928. },
  1929. [
  1930. {
  1931. name: "Normal",
  1932. height: math.unit(7, "feet"),
  1933. },
  1934. {
  1935. name: "Macro",
  1936. height: math.unit(78, "feet"),
  1937. default: true
  1938. },
  1939. {
  1940. name: "Macro+",
  1941. height: math.unit(300, "meters")
  1942. },
  1943. {
  1944. name: "Macro++",
  1945. height: math.unit(2400, "meters")
  1946. },
  1947. {
  1948. name: "Megamacro",
  1949. height: math.unit(5167, "meters")
  1950. },
  1951. {
  1952. name: "Gigamacro",
  1953. height: math.unit(41769, "miles")
  1954. },
  1955. ]
  1956. ))
  1957. characterMakers.push(() => makeCharacter(
  1958. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1959. {
  1960. front: {
  1961. height: math.unit(7, "feet"),
  1962. weight: math.unit(100, "kg"),
  1963. name: "Front",
  1964. image: {
  1965. source: "./media/characters/adake/front-1.svg"
  1966. }
  1967. },
  1968. frontAlt: {
  1969. height: math.unit(7, "feet"),
  1970. weight: math.unit(100, "kg"),
  1971. name: "Front (Alt)",
  1972. image: {
  1973. source: "./media/characters/adake/front-2.svg",
  1974. extra: 1,
  1975. bottom: 0.01
  1976. }
  1977. },
  1978. back: {
  1979. height: math.unit(7, "feet"),
  1980. weight: math.unit(100, "kg"),
  1981. name: "Back",
  1982. image: {
  1983. source: "./media/characters/adake/back.svg",
  1984. }
  1985. },
  1986. kneel: {
  1987. height: math.unit(5.385, "feet"),
  1988. weight: math.unit(100, "kg"),
  1989. name: "Kneeling",
  1990. image: {
  1991. source: "./media/characters/adake/kneel.svg",
  1992. bottom: 0.052
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Normal",
  1999. height: math.unit(7, "feet"),
  2000. },
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(78, "feet"),
  2004. default: true
  2005. },
  2006. {
  2007. name: "Macro+",
  2008. height: math.unit(300, "meters")
  2009. },
  2010. {
  2011. name: "Macro++",
  2012. height: math.unit(2400, "meters")
  2013. },
  2014. {
  2015. name: "Megamacro",
  2016. height: math.unit(5167, "meters")
  2017. },
  2018. {
  2019. name: "Gigamacro",
  2020. height: math.unit(41769, "miles")
  2021. },
  2022. ]
  2023. ))
  2024. characterMakers.push(() => makeCharacter(
  2025. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2026. {
  2027. front: {
  2028. height: math.unit(1.65, "meters"),
  2029. weight: math.unit(50, "kg"),
  2030. name: "Front",
  2031. image: {
  2032. source: "./media/characters/elijah/front.svg",
  2033. extra: 858 / 830,
  2034. bottom: 95.5 / 953.8559
  2035. }
  2036. },
  2037. back: {
  2038. height: math.unit(1.65, "meters"),
  2039. weight: math.unit(50, "kg"),
  2040. name: "Back",
  2041. image: {
  2042. source: "./media/characters/elijah/back.svg",
  2043. extra: 895 / 850,
  2044. bottom: 5.3 / 897.956
  2045. }
  2046. },
  2047. frontNsfw: {
  2048. height: math.unit(1.65, "meters"),
  2049. weight: math.unit(50, "kg"),
  2050. name: "Front (NSFW)",
  2051. image: {
  2052. source: "./media/characters/elijah/front-nsfw.svg",
  2053. extra: 858 / 830,
  2054. bottom: 95.5 / 953.8559
  2055. }
  2056. },
  2057. backNsfw: {
  2058. height: math.unit(1.65, "meters"),
  2059. weight: math.unit(50, "kg"),
  2060. name: "Back (NSFW)",
  2061. image: {
  2062. source: "./media/characters/elijah/back-nsfw.svg",
  2063. extra: 895 / 850,
  2064. bottom: 5.3 / 897.956
  2065. }
  2066. },
  2067. dick: {
  2068. height: math.unit(1, "feet"),
  2069. name: "Dick",
  2070. image: {
  2071. source: "./media/characters/elijah/dick.svg"
  2072. }
  2073. },
  2074. beakOpen: {
  2075. height: math.unit(1.25, "feet"),
  2076. name: "Beak (Open)",
  2077. image: {
  2078. source: "./media/characters/elijah/beak-open.svg"
  2079. }
  2080. },
  2081. beakShut: {
  2082. height: math.unit(1.25, "feet"),
  2083. name: "Beak (Shut)",
  2084. image: {
  2085. source: "./media/characters/elijah/beak-shut.svg"
  2086. }
  2087. },
  2088. footFlexing: {
  2089. height: math.unit(1.61, "feet"),
  2090. name: "Foot (Flexing)",
  2091. image: {
  2092. source: "./media/characters/elijah/foot-flexing.svg"
  2093. }
  2094. },
  2095. footStepping: {
  2096. height: math.unit(1.44, "feet"),
  2097. name: "Foot (Stepping)",
  2098. image: {
  2099. source: "./media/characters/elijah/foot-stepping.svg"
  2100. }
  2101. },
  2102. plantigradeLeg: {
  2103. height: math.unit(2.34, "feet"),
  2104. name: "Plantigrade Leg",
  2105. image: {
  2106. source: "./media/characters/elijah/plantigrade-leg.svg"
  2107. }
  2108. },
  2109. plantigradeFootLeft: {
  2110. height: math.unit(0.9, "feet"),
  2111. name: "Plantigrade Foot (Left)",
  2112. image: {
  2113. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2114. }
  2115. },
  2116. plantigradeFootRight: {
  2117. height: math.unit(0.9, "feet"),
  2118. name: "Plantigrade Foot (Right)",
  2119. image: {
  2120. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2121. }
  2122. },
  2123. },
  2124. [
  2125. {
  2126. name: "Normal",
  2127. height: math.unit(1.65, "meters")
  2128. },
  2129. {
  2130. name: "Macro",
  2131. height: math.unit(55, "meters"),
  2132. default: true
  2133. },
  2134. {
  2135. name: "Macro+",
  2136. height: math.unit(105, "meters")
  2137. },
  2138. ]
  2139. ))
  2140. characterMakers.push(() => makeCharacter(
  2141. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2142. {
  2143. front: {
  2144. height: math.unit(11, "feet"),
  2145. weight: math.unit(80, "kg"),
  2146. name: "Front",
  2147. image: {
  2148. source: "./media/characters/rai/front.svg",
  2149. extra: 1,
  2150. bottom: 0.03
  2151. }
  2152. },
  2153. side: {
  2154. height: math.unit(11, "feet"),
  2155. weight: math.unit(80, "kg"),
  2156. name: "Side",
  2157. image: {
  2158. source: "./media/characters/rai/side.svg"
  2159. }
  2160. },
  2161. back: {
  2162. height: math.unit(11, "feet"),
  2163. weight: math.unit(80, "lb"),
  2164. name: "Back",
  2165. image: {
  2166. source: "./media/characters/rai/back.svg",
  2167. extra: 1,
  2168. bottom: 0.01
  2169. }
  2170. },
  2171. feral: {
  2172. height: math.unit(11, "feet"),
  2173. weight: math.unit(800, "lb"),
  2174. name: "Feral",
  2175. image: {
  2176. source: "./media/characters/rai/feral.svg",
  2177. extra: 1050 / 659,
  2178. bottom: 0.07
  2179. }
  2180. },
  2181. dragon: {
  2182. height: math.unit(23, "feet"),
  2183. weight: math.unit(50000, "lb"),
  2184. name: "Dragon",
  2185. image: {
  2186. source: "./media/characters/rai/dragon.svg",
  2187. extra: 2498 / 2030,
  2188. bottom: 85.2 / 2584
  2189. }
  2190. },
  2191. maw: {
  2192. height: math.unit(6 / 3.81416, "feet"),
  2193. name: "Maw",
  2194. image: {
  2195. source: "./media/characters/rai/maw.svg"
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(11, "feet")
  2203. },
  2204. {
  2205. name: "Macro",
  2206. height: math.unit(302, "feet"),
  2207. default: true
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2213. {
  2214. frontDressed: {
  2215. height: math.unit(216, "feet"),
  2216. weight: math.unit(7000000, "lb"),
  2217. name: "Front (Dressed)",
  2218. image: {
  2219. source: "./media/characters/jazzy/front-dressed.svg",
  2220. extra: 2738 / 2651,
  2221. bottom: 41.8 / 2786
  2222. }
  2223. },
  2224. backDressed: {
  2225. height: math.unit(216, "feet"),
  2226. weight: math.unit(7000000, "lb"),
  2227. name: "Back (Dressed)",
  2228. image: {
  2229. source: "./media/characters/jazzy/back-dressed.svg",
  2230. extra: 2775 / 2673,
  2231. bottom: 36.8 / 2817
  2232. }
  2233. },
  2234. front: {
  2235. height: math.unit(216, "feet"),
  2236. weight: math.unit(7000000, "lb"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/jazzy/front.svg",
  2240. extra: 2738 / 2651,
  2241. bottom: 41.8 / 2786
  2242. }
  2243. },
  2244. back: {
  2245. height: math.unit(216, "feet"),
  2246. weight: math.unit(7000000, "lb"),
  2247. name: "Back",
  2248. image: {
  2249. source: "./media/characters/jazzy/back.svg",
  2250. extra: 2775 / 2673,
  2251. bottom: 36.8 / 2817
  2252. }
  2253. },
  2254. maw: {
  2255. height: math.unit(20, "feet"),
  2256. name: "Maw",
  2257. image: {
  2258. source: "./media/characters/jazzy/maw.svg"
  2259. }
  2260. },
  2261. paws: {
  2262. height: math.unit(27.5, "feet"),
  2263. name: "Paws",
  2264. image: {
  2265. source: "./media/characters/jazzy/paws.svg"
  2266. }
  2267. },
  2268. eye: {
  2269. height: math.unit(4.4, "feet"),
  2270. name: "Eye",
  2271. image: {
  2272. source: "./media/characters/jazzy/eye.svg"
  2273. }
  2274. },
  2275. droneOffense: {
  2276. height: math.unit(9.5, "inches"),
  2277. name: "Drone (Offense)",
  2278. image: {
  2279. source: "./media/characters/jazzy/drone-offense.svg"
  2280. }
  2281. },
  2282. droneRecon: {
  2283. height: math.unit(9.5, "inches"),
  2284. name: "Drone (Recon)",
  2285. image: {
  2286. source: "./media/characters/jazzy/drone-recon.svg"
  2287. }
  2288. },
  2289. droneDefense: {
  2290. height: math.unit(9.5, "inches"),
  2291. name: "Drone (Defense)",
  2292. image: {
  2293. source: "./media/characters/jazzy/drone-defense.svg"
  2294. }
  2295. },
  2296. },
  2297. [
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(216, "feet"),
  2301. default: true
  2302. },
  2303. ]
  2304. ))
  2305. characterMakers.push(() => makeCharacter(
  2306. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2307. {
  2308. front: {
  2309. height: math.unit(7, "feet"),
  2310. weight: math.unit(80, "kg"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/flamm/front.svg",
  2314. extra: 1794 / 1677,
  2315. bottom: 31.7 / 1828.5
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(9.5, "feet")
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(200, "feet"),
  2327. default: true
  2328. },
  2329. ]
  2330. ))
  2331. characterMakers.push(() => makeCharacter(
  2332. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2333. {
  2334. front: {
  2335. height: math.unit(5 + 3/12, "feet"),
  2336. weight: math.unit(60, "kg"),
  2337. name: "Front",
  2338. image: {
  2339. source: "./media/characters/zephiro/front.svg",
  2340. extra: 2309 / 2162,
  2341. bottom: 0.069
  2342. }
  2343. },
  2344. side: {
  2345. height: math.unit(5 + 3/12, "feet"),
  2346. weight: math.unit(60, "kg"),
  2347. name: "Side",
  2348. image: {
  2349. source: "./media/characters/zephiro/side.svg",
  2350. extra: 2403 / 2279,
  2351. bottom: 0.015
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(5 + 3/12, "feet"),
  2356. weight: math.unit(60, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/zephiro/back.svg",
  2360. extra: 2373 / 2244,
  2361. bottom: 0.013
  2362. }
  2363. },
  2364. hand: {
  2365. height: math.unit(0.68, "feet"),
  2366. name: "Hand",
  2367. image: {
  2368. source: "./media/characters/zephiro/hand.svg"
  2369. }
  2370. },
  2371. paw: {
  2372. height: math.unit(1, "feet"),
  2373. name: "Paw",
  2374. image: {
  2375. source: "./media/characters/zephiro/paw.svg"
  2376. }
  2377. },
  2378. beans: {
  2379. height: math.unit(0.93, "feet"),
  2380. name: "Beans",
  2381. image: {
  2382. source: "./media/characters/zephiro/beans.svg"
  2383. }
  2384. },
  2385. },
  2386. [
  2387. {
  2388. name: "Micro",
  2389. height: math.unit(3, "inches")
  2390. },
  2391. {
  2392. name: "Normal",
  2393. height: math.unit(5 + 3 / 12, "feet"),
  2394. default: true
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(118, "feet")
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(5, "feet"),
  2407. weight: math.unit(90, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/fory/front.svg",
  2411. extra: 2862 / 2674,
  2412. bottom: 180 / 3043.8
  2413. }
  2414. },
  2415. back: {
  2416. height: math.unit(5, "feet"),
  2417. weight: math.unit(90, "kg"),
  2418. name: "Back",
  2419. image: {
  2420. source: "./media/characters/fory/back.svg",
  2421. extra: 2962 / 2791,
  2422. bottom: 106 / 3071.8
  2423. }
  2424. },
  2425. foot: {
  2426. height: math.unit(2.14, "feet"),
  2427. name: "Foot",
  2428. image: {
  2429. source: "./media/characters/fory/foot.svg"
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(5, "feet")
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(50, "feet"),
  2441. default: true
  2442. },
  2443. {
  2444. name: "Megamacro",
  2445. height: math.unit(10, "miles")
  2446. },
  2447. {
  2448. name: "Gigamacro",
  2449. height: math.unit(5, "earths")
  2450. },
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2455. {
  2456. front: {
  2457. height: math.unit(7, "feet"),
  2458. weight: math.unit(90, "kg"),
  2459. name: "Front",
  2460. image: {
  2461. source: "./media/characters/kurrikage/front.svg",
  2462. extra: 1,
  2463. bottom: 0.035
  2464. }
  2465. },
  2466. back: {
  2467. height: math.unit(7, "feet"),
  2468. weight: math.unit(90, "lb"),
  2469. name: "Back",
  2470. image: {
  2471. source: "./media/characters/kurrikage/back.svg"
  2472. }
  2473. },
  2474. paw: {
  2475. height: math.unit(1.5, "feet"),
  2476. name: "Paw",
  2477. image: {
  2478. source: "./media/characters/kurrikage/paw.svg"
  2479. }
  2480. },
  2481. staff: {
  2482. height: math.unit(6.7, "feet"),
  2483. name: "Staff",
  2484. image: {
  2485. source: "./media/characters/kurrikage/staff.svg"
  2486. }
  2487. },
  2488. peek: {
  2489. height: math.unit(1.05, "feet"),
  2490. name: "Peeking",
  2491. image: {
  2492. source: "./media/characters/kurrikage/peek.svg",
  2493. bottom: 0.08
  2494. }
  2495. },
  2496. },
  2497. [
  2498. {
  2499. name: "Normal",
  2500. height: math.unit(12, "feet"),
  2501. default: true
  2502. },
  2503. {
  2504. name: "Big",
  2505. height: math.unit(20, "feet")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(500, "feet")
  2510. },
  2511. {
  2512. name: "Megamacro",
  2513. height: math.unit(20, "miles")
  2514. },
  2515. ]
  2516. ))
  2517. characterMakers.push(() => makeCharacter(
  2518. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2519. {
  2520. front: {
  2521. height: math.unit(6, "feet"),
  2522. weight: math.unit(75, "kg"),
  2523. name: "Front",
  2524. image: {
  2525. source: "./media/characters/shingo/front.svg",
  2526. extra: 706/681,
  2527. bottom: 11/717
  2528. }
  2529. },
  2530. frontAlt: {
  2531. height: math.unit(6, "feet"),
  2532. weight: math.unit(75, "kg"),
  2533. name: "Front (Alt)",
  2534. image: {
  2535. source: "./media/characters/shingo/front-alt.svg",
  2536. extra: 3511 / 3338,
  2537. bottom: 0.005
  2538. }
  2539. },
  2540. paw: {
  2541. height: math.unit(1, "feet"),
  2542. name: "Paw",
  2543. image: {
  2544. source: "./media/characters/shingo/paw.svg"
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Micro",
  2551. height: math.unit(4, "inches")
  2552. },
  2553. {
  2554. name: "Normal",
  2555. height: math.unit(6, "feet"),
  2556. default: true
  2557. },
  2558. {
  2559. name: "Macro",
  2560. height: math.unit(108, "feet")
  2561. },
  2562. {
  2563. name: "Macro+",
  2564. height: math.unit(1500, "feet")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2570. {
  2571. side: {
  2572. height: math.unit(6, "feet"),
  2573. weight: math.unit(75, "kg"),
  2574. name: "Side",
  2575. image: {
  2576. source: "./media/characters/aigey/side.svg"
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Megamacro",
  2588. height: math.unit(100, "miles")
  2589. },
  2590. ]
  2591. )
  2592. )
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(5 + 5 / 12, "feet"),
  2598. weight: math.unit(75, "kg"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/natasha/front.svg",
  2602. extra: 859 / 824,
  2603. bottom: 23 / 879.6
  2604. }
  2605. },
  2606. frontNsfw: {
  2607. height: math.unit(5 + 5 / 12, "feet"),
  2608. weight: math.unit(75, "kg"),
  2609. name: "Front (NSFW)",
  2610. image: {
  2611. source: "./media/characters/natasha/front-nsfw.svg",
  2612. extra: 859 / 824,
  2613. bottom: 23 / 879.6
  2614. }
  2615. },
  2616. frontErect: {
  2617. height: math.unit(5 + 5 / 12, "feet"),
  2618. weight: math.unit(75, "kg"),
  2619. name: "Front (Erect)",
  2620. image: {
  2621. source: "./media/characters/natasha/front-erect.svg",
  2622. extra: 859 / 824,
  2623. bottom: 23 / 879.6
  2624. }
  2625. },
  2626. back: {
  2627. height: math.unit(5 + 5 / 12, "feet"),
  2628. weight: math.unit(75, "kg"),
  2629. name: "Back",
  2630. image: {
  2631. source: "./media/characters/natasha/back.svg",
  2632. extra: 887.9 / 852.6,
  2633. bottom: 9.7 / 896.4
  2634. }
  2635. },
  2636. backAlt: {
  2637. height: math.unit(5 + 5 / 12, "feet"),
  2638. weight: math.unit(75, "kg"),
  2639. name: "Back (Alt)",
  2640. image: {
  2641. source: "./media/characters/natasha/back-alt.svg",
  2642. extra: 1236.7 / 1192,
  2643. bottom: 22.3 / 1258.2
  2644. }
  2645. },
  2646. dick: {
  2647. height: math.unit(1.772, "feet"),
  2648. name: "Dick",
  2649. image: {
  2650. source: "./media/characters/natasha/dick.svg"
  2651. }
  2652. },
  2653. paw: {
  2654. height: math.unit(0.250, "meters"),
  2655. name: "Paw",
  2656. image: {
  2657. source: "./media/characters/natasha/paw.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(5 + 5 / 12, "feet")
  2665. },
  2666. {
  2667. name: "Large",
  2668. height: math.unit(12, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(100, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Macro+",
  2677. height: math.unit(260, "feet")
  2678. },
  2679. {
  2680. name: "Macro++",
  2681. height: math.unit(1, "mile")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(75, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/malik/front.svg"
  2694. }
  2695. },
  2696. side: {
  2697. height: math.unit(6, "feet"),
  2698. weight: math.unit(75, "kg"),
  2699. name: "Side",
  2700. image: {
  2701. source: "./media/characters/malik/side.svg",
  2702. extra: 1.1539
  2703. }
  2704. },
  2705. back: {
  2706. height: math.unit(6, "feet"),
  2707. weight: math.unit(75, "kg"),
  2708. name: "Back",
  2709. image: {
  2710. source: "./media/characters/malik/back.svg"
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(156, "feet"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Macro+",
  2722. height: math.unit(1188, "feet")
  2723. },
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(6, "feet"),
  2731. weight: math.unit(75, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/sefer/front.svg",
  2735. extra: 848 / 659,
  2736. bottom: 28.3 / 876.442
  2737. }
  2738. },
  2739. back: {
  2740. height: math.unit(6, "feet"),
  2741. weight: math.unit(75, "kg"),
  2742. name: "Back",
  2743. image: {
  2744. source: "./media/characters/sefer/back.svg",
  2745. extra: 864 / 695,
  2746. bottom: 10 / 871
  2747. }
  2748. },
  2749. frontDressed: {
  2750. height: math.unit(6, "feet"),
  2751. weight: math.unit(75, "kg"),
  2752. name: "Front (Dressed)",
  2753. image: {
  2754. source: "./media/characters/sefer/front-dressed.svg",
  2755. extra: 839 / 653,
  2756. bottom: 37.6 / 878
  2757. }
  2758. },
  2759. },
  2760. [
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(6, "feet"),
  2764. default: true
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2770. {
  2771. body: {
  2772. height: math.unit(2.2428, "meter"),
  2773. weight: math.unit(124.738, "kg"),
  2774. name: "Body",
  2775. image: {
  2776. extra: 1225 / 1050,
  2777. source: "./media/characters/north/front.svg"
  2778. }
  2779. }
  2780. },
  2781. [
  2782. {
  2783. name: "Micro",
  2784. height: math.unit(4, "inches")
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(63, "meters")
  2789. },
  2790. {
  2791. name: "Megamacro",
  2792. height: math.unit(101, "miles"),
  2793. default: true
  2794. }
  2795. ]
  2796. ))
  2797. characterMakers.push(() => makeCharacter(
  2798. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2799. {
  2800. angled: {
  2801. height: math.unit(4, "meter"),
  2802. weight: math.unit(150, "kg"),
  2803. name: "Angled",
  2804. image: {
  2805. source: "./media/characters/talan/angled-sfw.svg",
  2806. bottom: 29 / 3734
  2807. }
  2808. },
  2809. angledNsfw: {
  2810. height: math.unit(4, "meter"),
  2811. weight: math.unit(150, "kg"),
  2812. name: "Angled (NSFW)",
  2813. image: {
  2814. source: "./media/characters/talan/angled-nsfw.svg",
  2815. bottom: 29 / 3734
  2816. }
  2817. },
  2818. frontNsfw: {
  2819. height: math.unit(4, "meter"),
  2820. weight: math.unit(150, "kg"),
  2821. name: "Front (NSFW)",
  2822. image: {
  2823. source: "./media/characters/talan/front-nsfw.svg",
  2824. bottom: 29 / 3734
  2825. }
  2826. },
  2827. sideNsfw: {
  2828. height: math.unit(4, "meter"),
  2829. weight: math.unit(150, "kg"),
  2830. name: "Side (NSFW)",
  2831. image: {
  2832. source: "./media/characters/talan/side-nsfw.svg",
  2833. bottom: 29 / 3734
  2834. }
  2835. },
  2836. back: {
  2837. height: math.unit(4, "meter"),
  2838. weight: math.unit(150, "kg"),
  2839. name: "Back",
  2840. image: {
  2841. source: "./media/characters/talan/back.svg"
  2842. }
  2843. },
  2844. dickBottom: {
  2845. height: math.unit(0.621, "meter"),
  2846. name: "Dick (Bottom)",
  2847. image: {
  2848. source: "./media/characters/talan/dick-bottom.svg"
  2849. }
  2850. },
  2851. dickTop: {
  2852. height: math.unit(0.621, "meter"),
  2853. name: "Dick (Top)",
  2854. image: {
  2855. source: "./media/characters/talan/dick-top.svg"
  2856. }
  2857. },
  2858. dickSide: {
  2859. height: math.unit(0.305, "meter"),
  2860. name: "Dick (Side)",
  2861. image: {
  2862. source: "./media/characters/talan/dick-side.svg"
  2863. }
  2864. },
  2865. dickFront: {
  2866. height: math.unit(0.305, "meter"),
  2867. name: "Dick (Front)",
  2868. image: {
  2869. source: "./media/characters/talan/dick-front.svg"
  2870. }
  2871. },
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(4, "meters")
  2877. },
  2878. {
  2879. name: "Macro",
  2880. height: math.unit(100, "meters")
  2881. },
  2882. {
  2883. name: "Megamacro",
  2884. height: math.unit(2, "miles"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Gigamacro",
  2889. height: math.unit(5000, "miles")
  2890. },
  2891. {
  2892. name: "Teramacro",
  2893. height: math.unit(100, "parsecs")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(90, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/gael'rathus/front.svg"
  2906. }
  2907. },
  2908. frontAlt: {
  2909. height: math.unit(2, "meter"),
  2910. weight: math.unit(90, "kg"),
  2911. name: "Front (alt)",
  2912. image: {
  2913. source: "./media/characters/gael'rathus/front-alt.svg"
  2914. }
  2915. },
  2916. frontAlt2: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(90, "kg"),
  2919. name: "Front (alt 2)",
  2920. image: {
  2921. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2922. }
  2923. }
  2924. },
  2925. [
  2926. {
  2927. name: "Normal",
  2928. height: math.unit(9, "feet"),
  2929. default: true
  2930. },
  2931. {
  2932. name: "Large",
  2933. height: math.unit(25, "feet")
  2934. },
  2935. {
  2936. name: "Macro",
  2937. height: math.unit(0.25, "miles")
  2938. },
  2939. {
  2940. name: "Megamacro",
  2941. height: math.unit(10, "miles")
  2942. }
  2943. ]
  2944. ))
  2945. characterMakers.push(() => makeCharacter(
  2946. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2947. {
  2948. side: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(140, "kg"),
  2951. name: "Side",
  2952. image: {
  2953. source: "./media/characters/sosha/side.svg",
  2954. bottom: 0.042
  2955. }
  2956. },
  2957. },
  2958. [
  2959. {
  2960. name: "Normal",
  2961. height: math.unit(12, "feet"),
  2962. default: true
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2968. {
  2969. side: {
  2970. height: math.unit(5 + 5 / 12, "feet"),
  2971. weight: math.unit(170, "kg"),
  2972. name: "Side",
  2973. image: {
  2974. source: "./media/characters/runnola/side.svg",
  2975. extra: 741 / 448,
  2976. bottom: 0.05
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Small",
  2983. height: math.unit(3, "feet")
  2984. },
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5 + 5 / 12, "feet"),
  2988. default: true
  2989. },
  2990. {
  2991. name: "Big",
  2992. height: math.unit(10, "feet")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(2, "meter"),
  3001. weight: math.unit(50, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/kurribird/front.svg",
  3005. bottom: 0.015
  3006. }
  3007. },
  3008. frontAlt: {
  3009. height: math.unit(1.5, "meter"),
  3010. weight: math.unit(50, "kg"),
  3011. name: "Front (Alt)",
  3012. image: {
  3013. source: "./media/characters/kurribird/front-alt.svg",
  3014. extra: 1.45
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Normal",
  3021. height: math.unit(7, "feet")
  3022. },
  3023. {
  3024. name: "Big",
  3025. height: math.unit(12, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(1500, "feet")
  3031. },
  3032. {
  3033. name: "Megamacro",
  3034. height: math.unit(2, "miles")
  3035. }
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3040. {
  3041. front: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(80, "kg"),
  3044. name: "Front",
  3045. image: {
  3046. source: "./media/characters/elbial/front.svg",
  3047. extra: 1643 / 1556,
  3048. bottom: 60.2 / 1696
  3049. }
  3050. },
  3051. side: {
  3052. height: math.unit(2, "meter"),
  3053. weight: math.unit(80, "kg"),
  3054. name: "Side",
  3055. image: {
  3056. source: "./media/characters/elbial/side.svg",
  3057. extra: 1630 / 1565,
  3058. bottom: 71.5 / 1697
  3059. }
  3060. },
  3061. back: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(80, "kg"),
  3064. name: "Back",
  3065. image: {
  3066. source: "./media/characters/elbial/back.svg",
  3067. extra: 1668 / 1595,
  3068. bottom: 5.6 / 1672
  3069. }
  3070. },
  3071. frontDressed: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(80, "kg"),
  3074. name: "Front (Dressed)",
  3075. image: {
  3076. source: "./media/characters/elbial/front-dressed.svg",
  3077. extra: 1653 / 1584,
  3078. bottom: 57 / 1708
  3079. }
  3080. },
  3081. genitals: {
  3082. height: math.unit(2 / 3.367, "meter"),
  3083. name: "Genitals",
  3084. image: {
  3085. source: "./media/characters/elbial/genitals.svg"
  3086. }
  3087. },
  3088. },
  3089. [
  3090. {
  3091. name: "Large",
  3092. height: math.unit(100, "feet")
  3093. },
  3094. {
  3095. name: "Macro",
  3096. height: math.unit(500, "feet"),
  3097. default: true
  3098. },
  3099. {
  3100. name: "Megamacro",
  3101. height: math.unit(10, "miles")
  3102. },
  3103. {
  3104. name: "Gigamacro",
  3105. height: math.unit(25000, "miles")
  3106. },
  3107. {
  3108. name: "Full-Size",
  3109. height: math.unit(8000000, "gigaparsecs")
  3110. }
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(60, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/noah/front.svg"
  3122. }
  3123. },
  3124. talons: {
  3125. height: math.unit(0.315, "meter"),
  3126. name: "Talons",
  3127. image: {
  3128. source: "./media/characters/noah/talons.svg"
  3129. }
  3130. }
  3131. },
  3132. [
  3133. {
  3134. name: "Large",
  3135. height: math.unit(50, "feet")
  3136. },
  3137. {
  3138. name: "Macro",
  3139. height: math.unit(750, "feet"),
  3140. default: true
  3141. },
  3142. {
  3143. name: "Megamacro",
  3144. height: math.unit(50, "miles")
  3145. },
  3146. {
  3147. name: "Gigamacro",
  3148. height: math.unit(100000, "miles")
  3149. },
  3150. {
  3151. name: "Full-Size",
  3152. height: math.unit(3000000000, "miles")
  3153. }
  3154. ]
  3155. ))
  3156. characterMakers.push(() => makeCharacter(
  3157. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3158. {
  3159. front: {
  3160. height: math.unit(2, "meter"),
  3161. weight: math.unit(80, "kg"),
  3162. name: "Front",
  3163. image: {
  3164. source: "./media/characters/natalya/front.svg"
  3165. }
  3166. },
  3167. back: {
  3168. height: math.unit(2, "meter"),
  3169. weight: math.unit(80, "kg"),
  3170. name: "Back",
  3171. image: {
  3172. source: "./media/characters/natalya/back.svg"
  3173. }
  3174. }
  3175. },
  3176. [
  3177. {
  3178. name: "Normal",
  3179. height: math.unit(150, "feet"),
  3180. default: true
  3181. },
  3182. {
  3183. name: "Megamacro",
  3184. height: math.unit(5, "miles")
  3185. },
  3186. {
  3187. name: "Full-Size",
  3188. height: math.unit(600, "kiloparsecs")
  3189. }
  3190. ]
  3191. ))
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3194. {
  3195. front: {
  3196. height: math.unit(2, "meter"),
  3197. weight: math.unit(50, "kg"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/erestrebah/front.svg",
  3201. extra: 208 / 193,
  3202. bottom: 0.055
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(50, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/erestrebah/back.svg",
  3211. extra: 1.3
  3212. }
  3213. }
  3214. },
  3215. [
  3216. {
  3217. name: "Normal",
  3218. height: math.unit(10, "feet")
  3219. },
  3220. {
  3221. name: "Large",
  3222. height: math.unit(50, "feet"),
  3223. default: true
  3224. },
  3225. {
  3226. name: "Macro",
  3227. height: math.unit(300, "feet")
  3228. },
  3229. {
  3230. name: "Macro+",
  3231. height: math.unit(750, "feet")
  3232. },
  3233. {
  3234. name: "Megamacro",
  3235. height: math.unit(3, "miles")
  3236. }
  3237. ]
  3238. ))
  3239. characterMakers.push(() => makeCharacter(
  3240. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3241. {
  3242. front: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(80, "kg"),
  3245. name: "Front",
  3246. image: {
  3247. source: "./media/characters/jennifer/front.svg",
  3248. bottom: 0.11,
  3249. extra: 1.16
  3250. }
  3251. },
  3252. frontAlt: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(80, "kg"),
  3255. name: "Front (Alt)",
  3256. image: {
  3257. source: "./media/characters/jennifer/front-alt.svg"
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Canon Height",
  3264. height: math.unit(120, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Macro+",
  3269. height: math.unit(300, "feet")
  3270. },
  3271. {
  3272. name: "Megamacro",
  3273. height: math.unit(20000, "feet")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(50, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/kalista/front.svg",
  3286. extra: 1947 / 1700,
  3287. bottom: 76.6 / 1412.98
  3288. }
  3289. },
  3290. back: {
  3291. height: math.unit(2, "meter"),
  3292. weight: math.unit(50, "kg"),
  3293. name: "Back",
  3294. image: {
  3295. source: "./media/characters/kalista/back.svg",
  3296. extra: 1366 / 1156,
  3297. bottom: 33.9 / 1362.78
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Uncomfortably Small",
  3304. height: math.unit(10, "feet")
  3305. },
  3306. {
  3307. name: "Small",
  3308. height: math.unit(30, "feet")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(100, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Macro+",
  3317. height: math.unit(2000, "feet")
  3318. },
  3319. {
  3320. name: "True Form",
  3321. height: math.unit(8924, "miles")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(120, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/ggv/front.svg"
  3334. }
  3335. },
  3336. side: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(120, "kg"),
  3339. name: "Side",
  3340. image: {
  3341. source: "./media/characters/ggv/side.svg"
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Extremely Puny",
  3348. height: math.unit(9 + 5 / 12, "feet")
  3349. },
  3350. {
  3351. name: "Horribly Small",
  3352. height: math.unit(47.7, "miles"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Reasonably Sized",
  3357. height: math.unit(25000, "parsecs")
  3358. },
  3359. {
  3360. name: "Slightly Uncompressed",
  3361. height: math.unit(7.77e31, "parsecs")
  3362. },
  3363. {
  3364. name: "Omniversal",
  3365. height: math.unit(1e300, "meters")
  3366. },
  3367. ]
  3368. ))
  3369. characterMakers.push(() => makeCharacter(
  3370. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3371. {
  3372. front: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(75, "lb"),
  3375. name: "Front",
  3376. image: {
  3377. source: "./media/characters/napalm/front.svg"
  3378. }
  3379. },
  3380. back: {
  3381. height: math.unit(2, "meter"),
  3382. weight: math.unit(75, "lb"),
  3383. name: "Back",
  3384. image: {
  3385. source: "./media/characters/napalm/back.svg"
  3386. }
  3387. }
  3388. },
  3389. [
  3390. {
  3391. name: "Standard",
  3392. height: math.unit(55, "feet"),
  3393. default: true
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(7 + 5 / 6, "feet"),
  3402. weight: math.unit(325, "lb"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/asana/front.svg",
  3406. extra: 1133 / 1060,
  3407. bottom: 15.2 / 1148.6
  3408. }
  3409. },
  3410. back: {
  3411. height: math.unit(7 + 5 / 6, "feet"),
  3412. weight: math.unit(325, "lb"),
  3413. name: "Back",
  3414. image: {
  3415. source: "./media/characters/asana/back.svg",
  3416. extra: 1114 / 1043,
  3417. bottom: 5 / 1120
  3418. }
  3419. },
  3420. dressedDark: {
  3421. height: math.unit(7 + 5 / 6, "feet"),
  3422. weight: math.unit(325, "lb"),
  3423. name: "Dressed (Dark)",
  3424. image: {
  3425. source: "./media/characters/asana/dressed-dark.svg",
  3426. extra: 1133 / 1060,
  3427. bottom: 15.2 / 1148.6
  3428. }
  3429. },
  3430. dressedLight: {
  3431. height: math.unit(7 + 5 / 6, "feet"),
  3432. weight: math.unit(325, "lb"),
  3433. name: "Dressed (Light)",
  3434. image: {
  3435. source: "./media/characters/asana/dressed-light.svg",
  3436. extra: 1133 / 1060,
  3437. bottom: 15.2 / 1148.6
  3438. }
  3439. },
  3440. },
  3441. [
  3442. {
  3443. name: "Standard",
  3444. height: math.unit(7 + 5 / 6, "feet"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Large",
  3449. height: math.unit(10, "meters")
  3450. },
  3451. {
  3452. name: "Macro",
  3453. height: math.unit(2500, "meters")
  3454. },
  3455. {
  3456. name: "Megamacro",
  3457. height: math.unit(5e6, "meters")
  3458. },
  3459. {
  3460. name: "Examacro",
  3461. height: math.unit(5e12, "lightyears")
  3462. },
  3463. {
  3464. name: "Max Size",
  3465. height: math.unit(1e31, "lightyears")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3471. {
  3472. front: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(60, "kg"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/ebony/front.svg",
  3478. bottom: 0.03,
  3479. extra: 1045 / 810 + 0.03
  3480. }
  3481. },
  3482. side: {
  3483. height: math.unit(2, "meter"),
  3484. weight: math.unit(60, "kg"),
  3485. name: "Side",
  3486. image: {
  3487. source: "./media/characters/ebony/side.svg",
  3488. bottom: 0.03,
  3489. extra: 1045 / 810 + 0.03
  3490. }
  3491. },
  3492. back: {
  3493. height: math.unit(2, "meter"),
  3494. weight: math.unit(60, "kg"),
  3495. name: "Back",
  3496. image: {
  3497. source: "./media/characters/ebony/back.svg",
  3498. bottom: 0.01,
  3499. extra: 1045 / 810 + 0.01
  3500. }
  3501. },
  3502. },
  3503. [
  3504. // TODO check why I did this lol
  3505. {
  3506. name: "Standard",
  3507. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(200, "feet")
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(13000, "km")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(6, "feet"),
  3525. weight: math.unit(175, "lb"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/mountain/front.svg",
  3529. extra: 972 / 955,
  3530. bottom: 64 / 1036.6
  3531. }
  3532. },
  3533. back: {
  3534. height: math.unit(6, "feet"),
  3535. weight: math.unit(175, "lb"),
  3536. name: "Back",
  3537. image: {
  3538. source: "./media/characters/mountain/back.svg",
  3539. extra: 970 / 950,
  3540. bottom: 28.25 / 999
  3541. }
  3542. },
  3543. },
  3544. [
  3545. {
  3546. name: "Large",
  3547. height: math.unit(20, "meters")
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(300, "meters")
  3552. },
  3553. {
  3554. name: "Gigamacro",
  3555. height: math.unit(10000, "km"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Examacro",
  3560. height: math.unit(10e9, "lightyears")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3566. {
  3567. front: {
  3568. height: math.unit(8, "feet"),
  3569. weight: math.unit(500, "lb"),
  3570. name: "Front",
  3571. image: {
  3572. source: "./media/characters/rick/front.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(8, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Macro",
  3584. height: math.unit(5, "km")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(8, "feet"),
  3593. weight: math.unit(120, "lb"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/ona/front.svg"
  3597. }
  3598. },
  3599. frontAlt: {
  3600. height: math.unit(8, "feet"),
  3601. weight: math.unit(120, "lb"),
  3602. name: "Front (Alt)",
  3603. image: {
  3604. source: "./media/characters/ona/front-alt.svg"
  3605. }
  3606. },
  3607. back: {
  3608. height: math.unit(8, "feet"),
  3609. weight: math.unit(120, "lb"),
  3610. name: "Back",
  3611. image: {
  3612. source: "./media/characters/ona/back.svg"
  3613. }
  3614. },
  3615. foot: {
  3616. height: math.unit(1.1, "feet"),
  3617. name: "Foot",
  3618. image: {
  3619. source: "./media/characters/ona/foot.svg"
  3620. }
  3621. }
  3622. },
  3623. [
  3624. {
  3625. name: "Megamacro",
  3626. height: math.unit(70, "km"),
  3627. default: true
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(681818, "miles")
  3632. },
  3633. {
  3634. name: "Examacro",
  3635. height: math.unit(3800000, "lightyears")
  3636. },
  3637. ]
  3638. ))
  3639. characterMakers.push(() => makeCharacter(
  3640. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3641. {
  3642. front: {
  3643. height: math.unit(12, "feet"),
  3644. weight: math.unit(3000, "lb"),
  3645. name: "Front",
  3646. image: {
  3647. source: "./media/characters/mech/front.svg",
  3648. extra: 2900 / 2770,
  3649. bottom: 110 / 3010
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(12, "feet"),
  3654. weight: math.unit(3000, "lb"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/mech/back.svg",
  3658. extra: 3011 / 2890,
  3659. bottom: 94 / 3105
  3660. }
  3661. },
  3662. maw: {
  3663. height: math.unit(3.07, "feet"),
  3664. name: "Maw",
  3665. image: {
  3666. source: "./media/characters/mech/maw.svg"
  3667. }
  3668. },
  3669. head: {
  3670. height: math.unit(2.82, "feet"),
  3671. name: "Head",
  3672. image: {
  3673. source: "./media/characters/mech/head.svg"
  3674. }
  3675. },
  3676. dick: {
  3677. height: math.unit(1.43, "feet"),
  3678. name: "Dick",
  3679. image: {
  3680. source: "./media/characters/mech/dick.svg"
  3681. }
  3682. },
  3683. },
  3684. [
  3685. {
  3686. name: "Normal",
  3687. height: math.unit(12, "feet")
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(300, "feet"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Macro+",
  3696. height: math.unit(1500, "feet")
  3697. },
  3698. ]
  3699. ))
  3700. characterMakers.push(() => makeCharacter(
  3701. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3702. {
  3703. front: {
  3704. height: math.unit(1.3, "meter"),
  3705. weight: math.unit(30, "kg"),
  3706. name: "Front",
  3707. image: {
  3708. source: "./media/characters/gregory/front.svg",
  3709. }
  3710. }
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(1.3, "meter"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Macro",
  3720. height: math.unit(20, "meter")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3726. {
  3727. front: {
  3728. height: math.unit(2.8, "meter"),
  3729. weight: math.unit(200, "kg"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/elory/front.svg",
  3733. }
  3734. }
  3735. },
  3736. [
  3737. {
  3738. name: "Normal",
  3739. height: math.unit(2.8, "meter"),
  3740. default: true
  3741. },
  3742. {
  3743. name: "Macro",
  3744. height: math.unit(38, "meter")
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(470, "feet"),
  3753. weight: math.unit(924, "tons"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/angelpatamon/front.svg",
  3757. }
  3758. }
  3759. },
  3760. [
  3761. {
  3762. name: "Normal",
  3763. height: math.unit(470, "feet"),
  3764. default: true
  3765. },
  3766. {
  3767. name: "Deity Size I",
  3768. height: math.unit(28651.2, "km")
  3769. },
  3770. {
  3771. name: "Deity Size II",
  3772. height: math.unit(171907.2, "km")
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3778. {
  3779. side: {
  3780. height: math.unit(7.2, "meter"),
  3781. weight: math.unit(8.2, "tons"),
  3782. name: "Side",
  3783. image: {
  3784. source: "./media/characters/cryae/side.svg",
  3785. extra: 3500 / 1500
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Normal",
  3792. height: math.unit(7.2, "meter"),
  3793. default: true
  3794. }
  3795. ]
  3796. ))
  3797. characterMakers.push(() => makeCharacter(
  3798. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3799. {
  3800. front: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(175, "lb"),
  3803. name: "Front",
  3804. image: {
  3805. source: "./media/characters/xera/front.svg",
  3806. extra: 2377 / 1972,
  3807. bottom: 75.5 / 2452
  3808. }
  3809. },
  3810. side: {
  3811. height: math.unit(6, "feet"),
  3812. weight: math.unit(175, "lb"),
  3813. name: "Side",
  3814. image: {
  3815. source: "./media/characters/xera/side.svg",
  3816. extra: 2345 / 2019,
  3817. bottom: 39.7 / 2384
  3818. }
  3819. },
  3820. back: {
  3821. height: math.unit(6, "feet"),
  3822. weight: math.unit(175, "lb"),
  3823. name: "Back",
  3824. image: {
  3825. source: "./media/characters/xera/back.svg",
  3826. extra: 2095 / 1984,
  3827. bottom: 67 / 2166
  3828. }
  3829. },
  3830. },
  3831. [
  3832. {
  3833. name: "Small",
  3834. height: math.unit(10, "feet")
  3835. },
  3836. {
  3837. name: "Macro",
  3838. height: math.unit(500, "meters"),
  3839. default: true
  3840. },
  3841. {
  3842. name: "Macro+",
  3843. height: math.unit(10, "km")
  3844. },
  3845. {
  3846. name: "Gigamacro",
  3847. height: math.unit(25000, "km")
  3848. },
  3849. {
  3850. name: "Teramacro",
  3851. height: math.unit(3e6, "km")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(175, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/nebula/front.svg",
  3864. extra: 2566 / 2362,
  3865. bottom: 81 / 2644
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Small",
  3872. height: math.unit(4.5, "meters")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(1500, "meters"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Megamacro",
  3881. height: math.unit(150, "km")
  3882. },
  3883. {
  3884. name: "Gigamacro",
  3885. height: math.unit(27000, "km")
  3886. }
  3887. ]
  3888. ))
  3889. characterMakers.push(() => makeCharacter(
  3890. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3891. {
  3892. front: {
  3893. height: math.unit(6, "feet"),
  3894. weight: math.unit(225, "lb"),
  3895. name: "Front",
  3896. image: {
  3897. source: "./media/characters/abysgar/front.svg"
  3898. }
  3899. }
  3900. },
  3901. [
  3902. {
  3903. name: "Small",
  3904. height: math.unit(4.5, "meters")
  3905. },
  3906. {
  3907. name: "Macro",
  3908. height: math.unit(1250, "meters"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Megamacro",
  3913. height: math.unit(125, "km")
  3914. },
  3915. {
  3916. name: "Gigamacro",
  3917. height: math.unit(26000, "km")
  3918. }
  3919. ]
  3920. ))
  3921. characterMakers.push(() => makeCharacter(
  3922. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3923. {
  3924. front: {
  3925. height: math.unit(6, "feet"),
  3926. weight: math.unit(180, "lb"),
  3927. name: "Front",
  3928. image: {
  3929. source: "./media/characters/yakuz/front.svg"
  3930. }
  3931. }
  3932. },
  3933. [
  3934. {
  3935. name: "Small",
  3936. height: math.unit(5, "meters")
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(1500, "meters"),
  3941. default: true
  3942. },
  3943. {
  3944. name: "Megamacro",
  3945. height: math.unit(200, "km")
  3946. },
  3947. {
  3948. name: "Gigamacro",
  3949. height: math.unit(100000, "km")
  3950. }
  3951. ]
  3952. ))
  3953. characterMakers.push(() => makeCharacter(
  3954. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3955. {
  3956. front: {
  3957. height: math.unit(6, "feet"),
  3958. weight: math.unit(175, "lb"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/mirova/front.svg",
  3962. extra: 3334 / 3071,
  3963. bottom: 42 / 3375.6
  3964. }
  3965. }
  3966. },
  3967. [
  3968. {
  3969. name: "Small",
  3970. height: math.unit(5, "meters")
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(900, "meters"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Megamacro",
  3979. height: math.unit(135, "km")
  3980. },
  3981. {
  3982. name: "Gigamacro",
  3983. height: math.unit(20000, "km")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3989. {
  3990. side: {
  3991. height: math.unit(28.35, "feet"),
  3992. weight: math.unit(99.75, "tons"),
  3993. name: "Side",
  3994. image: {
  3995. source: "./media/characters/asana-mech/side.svg",
  3996. extra: 923 / 699,
  3997. bottom: 50 / 975
  3998. }
  3999. },
  4000. chaingun: {
  4001. height: math.unit(7, "feet"),
  4002. weight: math.unit(2400, "lb"),
  4003. name: "Chaingun",
  4004. image: {
  4005. source: "./media/characters/asana-mech/chaingun.svg"
  4006. }
  4007. },
  4008. laser: {
  4009. height: math.unit(7.12, "feet"),
  4010. weight: math.unit(2000, "lb"),
  4011. name: "Laser",
  4012. image: {
  4013. source: "./media/characters/asana-mech/laser.svg"
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(28.35, "feet"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(2500, "feet")
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(25, "miles")
  4030. },
  4031. {
  4032. name: "Examacro",
  4033. height: math.unit(6e8, "lightyears")
  4034. },
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(5, "meters"),
  4042. weight: math.unit(1000, "kg"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/asche/front.svg",
  4046. extra: 1258 / 1190,
  4047. bottom: 47 / 1305
  4048. }
  4049. },
  4050. frontUnderwear: {
  4051. height: math.unit(5, "meters"),
  4052. weight: math.unit(1000, "kg"),
  4053. name: "Front (Underwear)",
  4054. image: {
  4055. source: "./media/characters/asche/front-underwear.svg",
  4056. extra: 1258 / 1190,
  4057. bottom: 47 / 1305
  4058. }
  4059. },
  4060. frontDressed: {
  4061. height: math.unit(5, "meters"),
  4062. weight: math.unit(1000, "kg"),
  4063. name: "Front (Dressed)",
  4064. image: {
  4065. source: "./media/characters/asche/front-dressed.svg",
  4066. extra: 1258 / 1190,
  4067. bottom: 47 / 1305
  4068. }
  4069. },
  4070. frontArmor: {
  4071. height: math.unit(5, "meters"),
  4072. weight: math.unit(1000, "kg"),
  4073. name: "Front (Armored)",
  4074. image: {
  4075. source: "./media/characters/asche/front-armored.svg",
  4076. extra: 1374 / 1308,
  4077. bottom: 23 / 1397
  4078. }
  4079. },
  4080. mp724: {
  4081. height: math.unit(0.96, "meters"),
  4082. weight: math.unit(38, "kg"),
  4083. name: "H&K MP724",
  4084. image: {
  4085. source: "./media/characters/asche/h&k-mp724.svg"
  4086. }
  4087. },
  4088. side: {
  4089. height: math.unit(5, "meters"),
  4090. weight: math.unit(1000, "kg"),
  4091. name: "Side",
  4092. image: {
  4093. source: "./media/characters/asche/side.svg",
  4094. extra: 1717 / 1609,
  4095. bottom: 0.005
  4096. }
  4097. },
  4098. back: {
  4099. height: math.unit(5, "meters"),
  4100. weight: math.unit(1000, "kg"),
  4101. name: "Back",
  4102. image: {
  4103. source: "./media/characters/asche/back.svg",
  4104. extra: 1570 / 1501
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "DEFCON 5",
  4111. height: math.unit(5, "meters")
  4112. },
  4113. {
  4114. name: "DEFCON 4",
  4115. height: math.unit(500, "meters"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "DEFCON 3",
  4120. height: math.unit(5, "km")
  4121. },
  4122. {
  4123. name: "DEFCON 2",
  4124. height: math.unit(500, "km")
  4125. },
  4126. {
  4127. name: "DEFCON 1",
  4128. height: math.unit(500000, "km")
  4129. },
  4130. {
  4131. name: "DEFCON 0",
  4132. height: math.unit(3, "gigaparsecs")
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(2, "meters"),
  4141. weight: math.unit(76, "kg"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/gale/front.svg"
  4145. }
  4146. },
  4147. frontAlt1: {
  4148. height: math.unit(2, "meters"),
  4149. weight: math.unit(76, "kg"),
  4150. name: "Front (Alt 1)",
  4151. image: {
  4152. source: "./media/characters/gale/front-alt-1.svg"
  4153. }
  4154. },
  4155. frontAlt2: {
  4156. height: math.unit(2, "meters"),
  4157. weight: math.unit(76, "kg"),
  4158. name: "Front (Alt 2)",
  4159. image: {
  4160. source: "./media/characters/gale/front-alt-2.svg"
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(7, "feet")
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(150, "feet"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "Macro+",
  4176. height: math.unit(300, "feet")
  4177. },
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(2, "meters"),
  4185. weight: math.unit(76, "kg"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/draylen/front.svg"
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(150, "feet"),
  4196. default: true
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(7 + 9 / 12, "feet"),
  4205. weight: math.unit(379, "lbs"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/chez/front.svg"
  4209. }
  4210. },
  4211. side: {
  4212. height: math.unit(7 + 9 / 12, "feet"),
  4213. weight: math.unit(379, "lbs"),
  4214. name: "Side",
  4215. image: {
  4216. source: "./media/characters/chez/side.svg"
  4217. }
  4218. }
  4219. },
  4220. [
  4221. {
  4222. name: "Normal",
  4223. height: math.unit(7 + 9 / 12, "feet"),
  4224. default: true
  4225. },
  4226. {
  4227. name: "God King",
  4228. height: math.unit(9750000, "meters")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(275, "lbs"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/kaylum/front.svg",
  4241. bottom: 0.01,
  4242. extra: 1166 / 1031
  4243. }
  4244. },
  4245. frontWingless: {
  4246. height: math.unit(6, "feet"),
  4247. weight: math.unit(275, "lbs"),
  4248. name: "Front (Wingless)",
  4249. image: {
  4250. source: "./media/characters/kaylum/front-wingless.svg",
  4251. bottom: 0.01,
  4252. extra: 1117 / 1031
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(3.05, "meters")
  4260. },
  4261. {
  4262. name: "Master",
  4263. height: math.unit(5.5, "meters")
  4264. },
  4265. {
  4266. name: "Rampage",
  4267. height: math.unit(19, "meters")
  4268. },
  4269. {
  4270. name: "Macro Lite",
  4271. height: math.unit(37, "meters")
  4272. },
  4273. {
  4274. name: "Hyper Predator",
  4275. height: math.unit(61, "meters")
  4276. },
  4277. {
  4278. name: "Macro",
  4279. height: math.unit(138, "meters"),
  4280. default: true
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(6, "feet"),
  4289. weight: math.unit(150, "lbs"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/geta/front.svg"
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Micro",
  4299. height: math.unit(3, "inches"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(5 + 5 / 12, "feet")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(6, "feet"),
  4313. weight: math.unit(300, "lbs"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/tyrnn/front.svg"
  4317. }
  4318. }
  4319. },
  4320. [
  4321. {
  4322. name: "Main Height",
  4323. height: math.unit(355, "feet"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Fave. Height",
  4328. height: math.unit(2400, "feet")
  4329. }
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(300, "lbs"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/appledectomy/front.svg"
  4341. }
  4342. }
  4343. },
  4344. [
  4345. {
  4346. name: "Macro",
  4347. height: math.unit(2500, "feet")
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(50, "miles"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Gigamacro",
  4356. height: math.unit(5000, "miles")
  4357. },
  4358. {
  4359. name: "Teramacro",
  4360. height: math.unit(250000, "miles")
  4361. },
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4366. {
  4367. front: {
  4368. height: math.unit(6, "feet"),
  4369. weight: math.unit(200, "lbs"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/vulpes/front.svg",
  4373. extra: 573 / 543,
  4374. bottom: 0.033
  4375. }
  4376. },
  4377. side: {
  4378. height: math.unit(6, "feet"),
  4379. weight: math.unit(200, "lbs"),
  4380. name: "Side",
  4381. image: {
  4382. source: "./media/characters/vulpes/side.svg",
  4383. extra: 577 / 549,
  4384. bottom: 11 / 588
  4385. }
  4386. },
  4387. back: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(200, "lbs"),
  4390. name: "Back",
  4391. image: {
  4392. source: "./media/characters/vulpes/back.svg",
  4393. extra: 573 / 549,
  4394. bottom: 20 / 593
  4395. }
  4396. },
  4397. feet: {
  4398. height: math.unit(1.276, "feet"),
  4399. name: "Feet",
  4400. image: {
  4401. source: "./media/characters/vulpes/feet.svg"
  4402. }
  4403. },
  4404. maw: {
  4405. height: math.unit(1.18, "feet"),
  4406. name: "Maw",
  4407. image: {
  4408. source: "./media/characters/vulpes/maw.svg"
  4409. }
  4410. },
  4411. },
  4412. [
  4413. {
  4414. name: "Micro",
  4415. height: math.unit(2, "inches")
  4416. },
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(6.3, "feet")
  4420. },
  4421. {
  4422. name: "Macro",
  4423. height: math.unit(850, "feet")
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(7500, "feet"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Gigamacro",
  4432. height: math.unit(570000, "miles")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4438. {
  4439. front: {
  4440. height: math.unit(6, "feet"),
  4441. weight: math.unit(210, "lbs"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/rain-fallen/front.svg"
  4445. }
  4446. },
  4447. side: {
  4448. height: math.unit(6, "feet"),
  4449. weight: math.unit(210, "lbs"),
  4450. name: "Side",
  4451. image: {
  4452. source: "./media/characters/rain-fallen/side.svg"
  4453. }
  4454. },
  4455. back: {
  4456. height: math.unit(6, "feet"),
  4457. weight: math.unit(210, "lbs"),
  4458. name: "Back",
  4459. image: {
  4460. source: "./media/characters/rain-fallen/back.svg"
  4461. }
  4462. },
  4463. feral: {
  4464. height: math.unit(9, "feet"),
  4465. weight: math.unit(700, "lbs"),
  4466. name: "Feral",
  4467. image: {
  4468. source: "./media/characters/rain-fallen/feral.svg"
  4469. }
  4470. },
  4471. },
  4472. [
  4473. {
  4474. name: "Meddling with Mortals",
  4475. height: math.unit(8 + 8/12, "feet")
  4476. },
  4477. {
  4478. name: "Normal",
  4479. height: math.unit(5, "meter")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(150, "meter"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Megamacro",
  4488. height: math.unit(278e6, "meter")
  4489. },
  4490. {
  4491. name: "Gigamacro",
  4492. height: math.unit(2e9, "meter")
  4493. },
  4494. {
  4495. name: "Teramacro",
  4496. height: math.unit(8e12, "meter")
  4497. },
  4498. {
  4499. name: "Devourer",
  4500. height: math.unit(14, "zettameters")
  4501. },
  4502. {
  4503. name: "Scarlet King",
  4504. height: math.unit(18, "yottameters")
  4505. },
  4506. {
  4507. name: "Void",
  4508. height: math.unit(1e88, "yottameters")
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4514. {
  4515. standing: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(180, "lbs"),
  4518. name: "Standing",
  4519. image: {
  4520. source: "./media/characters/zaakira/standing.svg"
  4521. }
  4522. },
  4523. laying: {
  4524. height: math.unit(3, "feet"),
  4525. weight: math.unit(180, "lbs"),
  4526. name: "Laying",
  4527. image: {
  4528. source: "./media/characters/zaakira/laying.svg"
  4529. }
  4530. },
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(12, "feet")
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(279, "feet"),
  4540. default: true
  4541. }
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4546. {
  4547. femSfw: {
  4548. height: math.unit(8, "feet"),
  4549. weight: math.unit(350, "lb"),
  4550. name: "Fem",
  4551. image: {
  4552. source: "./media/characters/sigvald/fem-sfw.svg",
  4553. extra: 182 / 164,
  4554. bottom: 8.7 / 190.5
  4555. }
  4556. },
  4557. femNsfw: {
  4558. height: math.unit(8, "feet"),
  4559. weight: math.unit(350, "lb"),
  4560. name: "Fem (NSFW)",
  4561. image: {
  4562. source: "./media/characters/sigvald/fem-nsfw.svg",
  4563. extra: 182 / 164,
  4564. bottom: 8.7 / 190.5
  4565. }
  4566. },
  4567. maleNsfw: {
  4568. height: math.unit(8, "feet"),
  4569. weight: math.unit(350, "lb"),
  4570. name: "Male (NSFW)",
  4571. image: {
  4572. source: "./media/characters/sigvald/male-nsfw.svg",
  4573. extra: 182 / 164,
  4574. bottom: 8.7 / 190.5
  4575. }
  4576. },
  4577. hermNsfw: {
  4578. height: math.unit(8, "feet"),
  4579. weight: math.unit(350, "lb"),
  4580. name: "Herm (NSFW)",
  4581. image: {
  4582. source: "./media/characters/sigvald/herm-nsfw.svg",
  4583. extra: 182 / 164,
  4584. bottom: 8.7 / 190.5
  4585. }
  4586. },
  4587. dick: {
  4588. height: math.unit(2.36, "feet"),
  4589. name: "Dick",
  4590. image: {
  4591. source: "./media/characters/sigvald/dick.svg"
  4592. }
  4593. },
  4594. eye: {
  4595. height: math.unit(0.31, "feet"),
  4596. name: "Eye",
  4597. image: {
  4598. source: "./media/characters/sigvald/eye.svg"
  4599. }
  4600. },
  4601. mouth: {
  4602. height: math.unit(0.92, "feet"),
  4603. name: "Mouth",
  4604. image: {
  4605. source: "./media/characters/sigvald/mouth.svg"
  4606. }
  4607. },
  4608. paws: {
  4609. height: math.unit(2.2, "feet"),
  4610. name: "Paws",
  4611. image: {
  4612. source: "./media/characters/sigvald/paws.svg"
  4613. }
  4614. }
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(8, "feet")
  4620. },
  4621. {
  4622. name: "Large",
  4623. height: math.unit(12, "feet")
  4624. },
  4625. {
  4626. name: "Larger",
  4627. height: math.unit(20, "feet")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(150, "feet")
  4632. },
  4633. {
  4634. name: "Macro+",
  4635. height: math.unit(200, "feet"),
  4636. default: true
  4637. },
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4642. {
  4643. side: {
  4644. height: math.unit(12, "feet"),
  4645. weight: math.unit(2000, "kg"),
  4646. name: "Side",
  4647. image: {
  4648. source: "./media/characters/scott/side.svg",
  4649. extra: 754 / 724,
  4650. bottom: 0.069
  4651. }
  4652. },
  4653. upright: {
  4654. height: math.unit(12, "feet"),
  4655. weight: math.unit(2000, "kg"),
  4656. name: "Upright",
  4657. image: {
  4658. source: "./media/characters/scott/upright.svg",
  4659. extra: 3881 / 3722,
  4660. bottom: 0.05
  4661. }
  4662. },
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(12, "feet"),
  4668. default: true
  4669. },
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4674. {
  4675. side: {
  4676. height: math.unit(8, "meters"),
  4677. weight: math.unit(84755, "lbs"),
  4678. name: "Side",
  4679. image: {
  4680. source: "./media/characters/tobias/side.svg",
  4681. extra: 1474 / 1096,
  4682. bottom: 38.9 / 1513.1235
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(8, "meters"),
  4690. default: true
  4691. },
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4696. {
  4697. front: {
  4698. height: math.unit(5.5, "feet"),
  4699. weight: math.unit(400, "lbs"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/kieran/front.svg",
  4703. extra: 2694 / 2364,
  4704. bottom: 217 / 2908
  4705. }
  4706. },
  4707. side: {
  4708. height: math.unit(5.5, "feet"),
  4709. weight: math.unit(400, "lbs"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/kieran/side.svg",
  4713. extra: 875 / 777,
  4714. bottom: 84.6 / 959
  4715. }
  4716. },
  4717. },
  4718. [
  4719. {
  4720. name: "Normal",
  4721. height: math.unit(5.5, "feet"),
  4722. default: true
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4728. {
  4729. side: {
  4730. height: math.unit(2, "meters"),
  4731. weight: math.unit(70, "kg"),
  4732. name: "Side",
  4733. image: {
  4734. source: "./media/characters/sanya/side.svg",
  4735. bottom: 0.02,
  4736. extra: 1.02
  4737. }
  4738. },
  4739. },
  4740. [
  4741. {
  4742. name: "Small",
  4743. height: math.unit(2, "meters")
  4744. },
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(3, "meters")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(16, "meters"),
  4752. default: true
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(2, "meters"),
  4761. weight: math.unit(120, "kg"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/miranda/front.svg",
  4765. extra: 195 / 185,
  4766. bottom: 10.9 / 206.5
  4767. }
  4768. },
  4769. back: {
  4770. height: math.unit(2, "meters"),
  4771. weight: math.unit(120, "kg"),
  4772. name: "Back",
  4773. image: {
  4774. source: "./media/characters/miranda/back.svg",
  4775. extra: 201 / 193,
  4776. bottom: 2.3 / 203.7
  4777. }
  4778. },
  4779. },
  4780. [
  4781. {
  4782. name: "Normal",
  4783. height: math.unit(10, "feet"),
  4784. default: true
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "James", species: ["deer"], tags: ["anthro"] },
  4790. {
  4791. side: {
  4792. height: math.unit(2, "meters"),
  4793. weight: math.unit(100, "kg"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/james/front.svg",
  4797. extra: 10 / 8.5
  4798. }
  4799. },
  4800. },
  4801. [
  4802. {
  4803. name: "Normal",
  4804. height: math.unit(8.5, "feet"),
  4805. default: true
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4811. {
  4812. side: {
  4813. height: math.unit(9.5, "feet"),
  4814. weight: math.unit(2500, "lbs"),
  4815. name: "Side",
  4816. image: {
  4817. source: "./media/characters/heather/side.svg"
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(9.5, "feet"),
  4825. default: true
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4831. {
  4832. side: {
  4833. height: math.unit(6.5, "feet"),
  4834. weight: math.unit(400, "lbs"),
  4835. name: "Side",
  4836. image: {
  4837. source: "./media/characters/lukas/side.svg",
  4838. extra: 7.25 / 6.5
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(6.5, "feet"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4852. {
  4853. side: {
  4854. height: math.unit(5, "feet"),
  4855. weight: math.unit(3000, "lbs"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/louise/side.svg"
  4859. }
  4860. },
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5, "feet"),
  4866. default: true
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4872. {
  4873. side: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(150, "lbs"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/ramona/side.svg"
  4879. }
  4880. },
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(5.3, "meters"),
  4886. default: true
  4887. },
  4888. {
  4889. name: "Macro",
  4890. height: math.unit(20, "stories")
  4891. },
  4892. {
  4893. name: "Macro+",
  4894. height: math.unit(50, "stories")
  4895. },
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4900. {
  4901. standing: {
  4902. height: math.unit(5.75, "feet"),
  4903. weight: math.unit(160, "lbs"),
  4904. name: "Standing",
  4905. image: {
  4906. source: "./media/characters/deerpuff/standing.svg",
  4907. extra: 682 / 624
  4908. }
  4909. },
  4910. sitting: {
  4911. height: math.unit(5.75 / 1.79, "feet"),
  4912. weight: math.unit(160, "lbs"),
  4913. name: "Sitting",
  4914. image: {
  4915. source: "./media/characters/deerpuff/sitting.svg",
  4916. bottom: 44 / 400,
  4917. extra: 1
  4918. }
  4919. },
  4920. taurLaying: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(400, "lbs"),
  4923. name: "Taur (Laying)",
  4924. image: {
  4925. source: "./media/characters/deerpuff/taur-laying.svg"
  4926. }
  4927. },
  4928. },
  4929. [
  4930. {
  4931. name: "Puffball",
  4932. height: math.unit(6, "inches")
  4933. },
  4934. {
  4935. name: "Normalpuff",
  4936. height: math.unit(5.75, "feet")
  4937. },
  4938. {
  4939. name: "Macropuff",
  4940. height: math.unit(1500, "feet"),
  4941. default: true
  4942. },
  4943. {
  4944. name: "Megapuff",
  4945. height: math.unit(500, "miles")
  4946. },
  4947. {
  4948. name: "Gigapuff",
  4949. height: math.unit(250000, "miles")
  4950. },
  4951. {
  4952. name: "Omegapuff",
  4953. height: math.unit(1000, "lightyears")
  4954. },
  4955. ]
  4956. ))
  4957. characterMakers.push(() => makeCharacter(
  4958. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4959. {
  4960. stomping: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(170, "lbs"),
  4963. name: "Stomping",
  4964. image: {
  4965. source: "./media/characters/vivian/stomping.svg"
  4966. }
  4967. },
  4968. sitting: {
  4969. height: math.unit(6 / 1.75, "feet"),
  4970. weight: math.unit(170, "lbs"),
  4971. name: "Sitting",
  4972. image: {
  4973. source: "./media/characters/vivian/sitting.svg",
  4974. bottom: 1 / 6.4,
  4975. extra: 1,
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(7, "feet"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Macro",
  4987. height: math.unit(10, "stories")
  4988. },
  4989. {
  4990. name: "Macro+",
  4991. height: math.unit(30, "stories")
  4992. },
  4993. {
  4994. name: "Megamacro",
  4995. height: math.unit(10, "miles")
  4996. },
  4997. {
  4998. name: "Megamacro+",
  4999. height: math.unit(2750000, "meters")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(6, "feet"),
  5008. weight: math.unit(160, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/prince/front.svg",
  5012. extra: 3400 / 3000
  5013. }
  5014. },
  5015. jumping: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(160, "lbs"),
  5018. name: "Jumping",
  5019. image: {
  5020. source: "./media/characters/prince/jump.svg",
  5021. extra: 2555 / 2134
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(7.75, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Not cute",
  5033. height: math.unit(17, "feet")
  5034. },
  5035. {
  5036. name: "I said NOT",
  5037. height: math.unit(91, "feet")
  5038. },
  5039. {
  5040. name: "Please stop",
  5041. height: math.unit(560, "feet")
  5042. },
  5043. {
  5044. name: "What have you done",
  5045. height: math.unit(2200, "feet")
  5046. },
  5047. {
  5048. name: "Deer God",
  5049. height: math.unit(3.6, "miles")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5055. {
  5056. standing: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(300, "lbs"),
  5059. name: "Standing",
  5060. image: {
  5061. source: "./media/characters/psymon/standing.svg",
  5062. extra: 1888 / 1810,
  5063. bottom: 0.05
  5064. }
  5065. },
  5066. slithering: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(300, "lbs"),
  5069. name: "Slithering",
  5070. image: {
  5071. source: "./media/characters/psymon/slithering.svg",
  5072. extra: 1330 / 1224
  5073. }
  5074. },
  5075. slitheringAlt: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(300, "lbs"),
  5078. name: "Slithering (Alt)",
  5079. image: {
  5080. source: "./media/characters/psymon/slithering-alt.svg",
  5081. extra: 1330 / 1224
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(11.25, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Large",
  5093. height: math.unit(27, "feet")
  5094. },
  5095. {
  5096. name: "Giant",
  5097. height: math.unit(87, "feet")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(365, "feet")
  5102. },
  5103. {
  5104. name: "Megamacro",
  5105. height: math.unit(3, "miles")
  5106. },
  5107. {
  5108. name: "World Serpent",
  5109. height: math.unit(8000, "miles")
  5110. },
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5115. {
  5116. front: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(180, "lbs"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/daimos/front.svg",
  5122. extra: 4160 / 3897,
  5123. bottom: 0.021
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(8, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Big Dog",
  5135. height: math.unit(22, "feet")
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(127, "feet")
  5140. },
  5141. {
  5142. name: "Megamacro",
  5143. height: math.unit(3600, "feet")
  5144. },
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5149. {
  5150. side: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(180, "lbs"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/blake/side.svg",
  5156. extra: 1212 / 1120,
  5157. bottom: 0.05
  5158. }
  5159. },
  5160. crouched: {
  5161. height: math.unit(6 * 0.57, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Crouched",
  5164. image: {
  5165. source: "./media/characters/blake/crouched.svg",
  5166. extra: 840 / 587,
  5167. bottom: 0.04
  5168. }
  5169. },
  5170. bent: {
  5171. height: math.unit(6 * 0.75, "feet"),
  5172. weight: math.unit(180, "lbs"),
  5173. name: "Bent",
  5174. image: {
  5175. source: "./media/characters/blake/bent.svg",
  5176. extra: 592 / 544,
  5177. bottom: 0.035
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(8 + 1 / 6, "feet"),
  5185. default: true
  5186. },
  5187. {
  5188. name: "Big Backside",
  5189. height: math.unit(37, "feet")
  5190. },
  5191. {
  5192. name: "Subway Shredder",
  5193. height: math.unit(72, "feet")
  5194. },
  5195. {
  5196. name: "City Carver",
  5197. height: math.unit(1675, "feet")
  5198. },
  5199. {
  5200. name: "Tectonic Tweaker",
  5201. height: math.unit(2300, "miles")
  5202. },
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5207. {
  5208. front: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(180, "lbs"),
  5211. name: "Front",
  5212. image: {
  5213. source: "./media/characters/guisetto/front.svg",
  5214. extra: 856 / 817,
  5215. bottom: 0.06
  5216. }
  5217. },
  5218. airborne: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(180, "lbs"),
  5221. name: "Airborne",
  5222. image: {
  5223. source: "./media/characters/guisetto/airborne.svg",
  5224. extra: 584 / 525
  5225. }
  5226. },
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(10 + 11 / 12, "feet"),
  5232. default: true
  5233. },
  5234. {
  5235. name: "Large",
  5236. height: math.unit(35, "feet")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(475, "feet")
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5246. {
  5247. front: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(180, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/luxor/front.svg",
  5253. extra: 2940 / 2152
  5254. }
  5255. },
  5256. back: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(180, "lbs"),
  5259. name: "Back",
  5260. image: {
  5261. source: "./media/characters/luxor/back.svg",
  5262. extra: 1083 / 960
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(5 + 5 / 6, "feet"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Lamp",
  5274. height: math.unit(50, "feet")
  5275. },
  5276. {
  5277. name: "Lämp",
  5278. height: math.unit(300, "feet")
  5279. },
  5280. {
  5281. name: "The sun is a lamp",
  5282. height: math.unit(250000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(50, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/huoyan/front.svg"
  5295. }
  5296. },
  5297. side: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/huoyan/side.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Chef",
  5309. height: math.unit(9, "feet")
  5310. },
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(65, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(780, "feet")
  5319. },
  5320. {
  5321. name: "Flaming Mountain",
  5322. height: math.unit(4.8, "miles")
  5323. },
  5324. {
  5325. name: "Celestial",
  5326. height: math.unit(765000, "miles")
  5327. },
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(5 + 3 / 4, "feet"),
  5335. weight: math.unit(120, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/tails/front.svg"
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(5 + 3 / 4, "feet"),
  5346. default: true
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(4, "feet"),
  5355. weight: math.unit(50, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/rainy/front.svg"
  5359. }
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(800, "feet"),
  5366. default: true
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(150, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/rainier/front.svg"
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Micro",
  5385. height: math.unit(2, "mm"),
  5386. default: true
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(180, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/andy/front.svg"
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(8, "feet"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1000, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(5, "miles")
  5415. },
  5416. {
  5417. name: "Gigamacro",
  5418. height: math.unit(5000, "miles")
  5419. },
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(210, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/cimmaron/front-sfw.svg",
  5431. extra: 701 / 676,
  5432. bottom: 0.046
  5433. }
  5434. },
  5435. back: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(210, "lbs"),
  5438. name: "Back",
  5439. image: {
  5440. source: "./media/characters/cimmaron/back-sfw.svg",
  5441. extra: 701 / 676,
  5442. bottom: 0.046
  5443. }
  5444. },
  5445. frontNsfw: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(210, "lbs"),
  5448. name: "Front (NSFW)",
  5449. image: {
  5450. source: "./media/characters/cimmaron/front-nsfw.svg",
  5451. extra: 701 / 676,
  5452. bottom: 0.046
  5453. }
  5454. },
  5455. backNsfw: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(210, "lbs"),
  5458. name: "Back (NSFW)",
  5459. image: {
  5460. source: "./media/characters/cimmaron/back-nsfw.svg",
  5461. extra: 701 / 676,
  5462. bottom: 0.046
  5463. }
  5464. },
  5465. dick: {
  5466. height: math.unit(1.714, "feet"),
  5467. name: "Dick",
  5468. image: {
  5469. source: "./media/characters/cimmaron/dick.svg"
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(6, "feet"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Macro Mayor",
  5481. height: math.unit(350, "meters")
  5482. },
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5487. {
  5488. front: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(200, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/akari/front.svg",
  5494. extra: 962 / 901,
  5495. bottom: 0.04
  5496. }
  5497. }
  5498. },
  5499. [
  5500. {
  5501. name: "Micro",
  5502. height: math.unit(5, "inches"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Normal",
  5507. height: math.unit(7, "feet")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(140, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/cynosura/front.svg",
  5520. extra: 896 / 847
  5521. }
  5522. },
  5523. back: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(140, "lbs"),
  5526. name: "Back",
  5527. image: {
  5528. source: "./media/characters/cynosura/back.svg",
  5529. extra: 1365 / 1250
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Micro",
  5536. height: math.unit(4, "inches")
  5537. },
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(5.75, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Tall",
  5545. height: math.unit(10, "feet")
  5546. },
  5547. {
  5548. name: "Big",
  5549. height: math.unit(20, "feet")
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(50, "feet")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(170, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/gin/front.svg",
  5566. extra: 1.053,
  5567. bottom: 0.025
  5568. }
  5569. },
  5570. foot: {
  5571. height: math.unit(6 / 4.25, "feet"),
  5572. name: "Foot",
  5573. image: {
  5574. source: "./media/characters/gin/foot.svg"
  5575. }
  5576. },
  5577. sole: {
  5578. height: math.unit(6 / 4.40, "feet"),
  5579. name: "Sole",
  5580. image: {
  5581. source: "./media/characters/gin/sole.svg"
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(13 + 2 / 12, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(1500, "feet")
  5593. },
  5594. {
  5595. name: "Megamacro",
  5596. height: math.unit(200, "miles"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Gigamacro",
  5601. height: math.unit(500, "megameters")
  5602. },
  5603. {
  5604. name: "Teramacro",
  5605. height: math.unit(15, "lightyears")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6 + 1 / 6, "feet"),
  5614. weight: math.unit(178, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/guy/front.svg"
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(6 + 1 / 6, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Large",
  5629. height: math.unit(25 + 7 / 12, "feet")
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(60 + 9 / 12, "feet")
  5634. },
  5635. {
  5636. name: "Macro+",
  5637. height: math.unit(246, "feet")
  5638. },
  5639. {
  5640. name: "Macro++",
  5641. height: math.unit(878, "feet")
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(9, "feet"),
  5650. weight: math.unit(800, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/tiberius/front.svg",
  5654. extra: 2295 / 2071
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(9, "feet"),
  5659. weight: math.unit(800, "lbs"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/tiberius/back.svg",
  5663. extra: 2373 / 2160
  5664. }
  5665. },
  5666. },
  5667. [
  5668. {
  5669. name: "Normal",
  5670. height: math.unit(9, "feet"),
  5671. default: true
  5672. }
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5677. {
  5678. front: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(600, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/surgo/front.svg",
  5684. extra: 3591 / 2227
  5685. }
  5686. },
  5687. back: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(600, "lbs"),
  5690. name: "Back",
  5691. image: {
  5692. source: "./media/characters/surgo/back.svg",
  5693. extra: 3557 / 2228
  5694. }
  5695. },
  5696. laying: {
  5697. height: math.unit(6 * 0.85, "feet"),
  5698. weight: math.unit(600, "lbs"),
  5699. name: "Laying",
  5700. image: {
  5701. source: "./media/characters/surgo/laying.svg"
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Normal",
  5708. height: math.unit(6, "feet"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5715. {
  5716. side: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(150, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/cibus/side.svg",
  5722. extra: 800 / 400
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(6, "feet"),
  5730. default: true
  5731. }
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5736. {
  5737. front: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(240, "lbs"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/nibbles/front.svg"
  5743. }
  5744. },
  5745. side: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(240, "lbs"),
  5748. name: "Side",
  5749. image: {
  5750. source: "./media/characters/nibbles/side.svg"
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(9, "feet"),
  5758. default: true
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5764. {
  5765. side: {
  5766. height: math.unit(5 + 1 / 6, "feet"),
  5767. weight: math.unit(130, "lbs"),
  5768. name: "Side",
  5769. image: {
  5770. source: "./media/characters/rikky/side.svg",
  5771. extra: 851 / 801
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(5 + 1 / 6, "feet")
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(152, "feet"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Megamacro",
  5787. height: math.unit(7, "miles")
  5788. }
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5793. {
  5794. side: {
  5795. height: math.unit(370, "cm"),
  5796. weight: math.unit(350, "lbs"),
  5797. name: "Side",
  5798. image: {
  5799. source: "./media/characters/malfressa/side.svg"
  5800. }
  5801. },
  5802. walking: {
  5803. height: math.unit(370, "cm"),
  5804. weight: math.unit(350, "lbs"),
  5805. name: "Walking",
  5806. image: {
  5807. source: "./media/characters/malfressa/walking.svg"
  5808. }
  5809. },
  5810. feral: {
  5811. height: math.unit(2500, "cm"),
  5812. weight: math.unit(100000, "lbs"),
  5813. name: "Feral",
  5814. image: {
  5815. source: "./media/characters/malfressa/feral.svg",
  5816. extra: 2108 / 837,
  5817. bottom: 0.02
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(370, "cm")
  5825. },
  5826. {
  5827. name: "Macro",
  5828. height: math.unit(300, "meters"),
  5829. default: true
  5830. }
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(60, "kg"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/jaro/front.svg"
  5842. }
  5843. },
  5844. back: {
  5845. height: math.unit(6, "feet"),
  5846. weight: math.unit(60, "kg"),
  5847. name: "Back",
  5848. image: {
  5849. source: "./media/characters/jaro/back.svg"
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Micro",
  5856. height: math.unit(7, "inches")
  5857. },
  5858. {
  5859. name: "Normal",
  5860. height: math.unit(5.5, "feet"),
  5861. default: true
  5862. },
  5863. {
  5864. name: "Minimacro",
  5865. height: math.unit(20, "feet")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(200, "meters")
  5870. }
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5875. {
  5876. front: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(195, "lb"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/rogue/front.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(90, "feet"),
  5889. default: true
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(5 + 8 / 12, "feet"),
  5898. weight: math.unit(140, "lb"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/piper/front.svg",
  5902. extra: 3948/3655,
  5903. bottom: 0/3948
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(2, "inches")
  5911. },
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(5 + 8 / 12, "feet")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(250, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(7, "miles")
  5924. },
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(220, "lb"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/gemini/front.svg"
  5936. }
  5937. },
  5938. back: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(220, "lb"),
  5941. name: "Back",
  5942. image: {
  5943. source: "./media/characters/gemini/back.svg"
  5944. }
  5945. },
  5946. kneeling: {
  5947. height: math.unit(6 / 1.5, "feet"),
  5948. weight: math.unit(220, "lb"),
  5949. name: "Kneeling",
  5950. image: {
  5951. source: "./media/characters/gemini/kneeling.svg",
  5952. bottom: 0.02
  5953. }
  5954. },
  5955. },
  5956. [
  5957. {
  5958. name: "Macro",
  5959. height: math.unit(300, "meters"),
  5960. default: true
  5961. },
  5962. {
  5963. name: "Megamacro",
  5964. height: math.unit(6900, "meters")
  5965. },
  5966. ]
  5967. ))
  5968. characterMakers.push(() => makeCharacter(
  5969. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5970. {
  5971. anthro: {
  5972. height: math.unit(2.35, "meters"),
  5973. weight: math.unit(73, "kg"),
  5974. name: "Anthro",
  5975. image: {
  5976. source: "./media/characters/alicia/anthro.svg",
  5977. extra: 2571 / 2385,
  5978. bottom: 75 / 2648
  5979. }
  5980. },
  5981. paw: {
  5982. height: math.unit(1.32, "feet"),
  5983. name: "Paw",
  5984. image: {
  5985. source: "./media/characters/alicia/paw.svg"
  5986. }
  5987. },
  5988. feral: {
  5989. height: math.unit(1.69, "meters"),
  5990. weight: math.unit(73, "kg"),
  5991. name: "Feral",
  5992. image: {
  5993. source: "./media/characters/alicia/feral.svg",
  5994. extra: 2123 / 1715,
  5995. bottom: 222 / 2349
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(2.35, "meters")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(60, "meters"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Megamacro",
  6011. height: math.unit(10000, "kilometers")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(7, "feet"),
  6020. weight: math.unit(250, "lbs"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/archy/front.svg"
  6024. }
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Micro",
  6030. height: math.unit(1, "inch")
  6031. },
  6032. {
  6033. name: "Shorty",
  6034. height: math.unit(5, "feet")
  6035. },
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(7, "feet")
  6039. },
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(600, "meters"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Megamacro",
  6047. height: math.unit(1, "mile")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(1.65, "meters"),
  6056. weight: math.unit(74, "kg"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/berri/front.svg",
  6060. extra: 857 / 837,
  6061. bottom: 18 / 877
  6062. }
  6063. },
  6064. bum: {
  6065. height: math.unit(1.46, "feet"),
  6066. name: "Bum",
  6067. image: {
  6068. source: "./media/characters/berri/bum.svg"
  6069. }
  6070. },
  6071. mouth: {
  6072. height: math.unit(0.44, "feet"),
  6073. name: "Mouth",
  6074. image: {
  6075. source: "./media/characters/berri/mouth.svg"
  6076. }
  6077. },
  6078. paw: {
  6079. height: math.unit(0.826, "feet"),
  6080. name: "Paw",
  6081. image: {
  6082. source: "./media/characters/berri/paw.svg"
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(1.65, "meters")
  6090. },
  6091. {
  6092. name: "Macro",
  6093. height: math.unit(60, "m"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Megamacro",
  6098. height: math.unit(9.213, "km")
  6099. },
  6100. {
  6101. name: "Planet Eater",
  6102. height: math.unit(489, "megameters")
  6103. },
  6104. {
  6105. name: "Teramacro",
  6106. height: math.unit(2471635000000, "meters")
  6107. },
  6108. {
  6109. name: "Examacro",
  6110. height: math.unit(8.0624e+26, "meters")
  6111. }
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(1.72, "meters"),
  6119. weight: math.unit(68, "kg"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/lexi/front.svg"
  6123. }
  6124. }
  6125. },
  6126. [
  6127. {
  6128. name: "Very Smol",
  6129. height: math.unit(10, "mm")
  6130. },
  6131. {
  6132. name: "Micro",
  6133. height: math.unit(6.8, "cm"),
  6134. default: true
  6135. },
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(1.72, "m")
  6139. }
  6140. ]
  6141. ))
  6142. characterMakers.push(() => makeCharacter(
  6143. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6144. {
  6145. front: {
  6146. height: math.unit(1.69, "meters"),
  6147. weight: math.unit(68, "kg"),
  6148. name: "Front",
  6149. image: {
  6150. source: "./media/characters/martin/front.svg",
  6151. extra: 596 / 581
  6152. }
  6153. }
  6154. },
  6155. [
  6156. {
  6157. name: "Micro",
  6158. height: math.unit(6.85, "cm"),
  6159. default: true
  6160. },
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(1.69, "m")
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6169. {
  6170. front: {
  6171. height: math.unit(1.69, "meters"),
  6172. weight: math.unit(68, "kg"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/juno/front.svg"
  6176. }
  6177. }
  6178. },
  6179. [
  6180. {
  6181. name: "Micro",
  6182. height: math.unit(7, "cm")
  6183. },
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(1.89, "m")
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(353, "meters"),
  6191. default: true
  6192. }
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(1.93, "meters"),
  6200. weight: math.unit(83, "kg"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/samantha/front.svg"
  6204. }
  6205. },
  6206. frontClothed: {
  6207. height: math.unit(1.93, "meters"),
  6208. weight: math.unit(83, "kg"),
  6209. name: "Front (Clothed)",
  6210. image: {
  6211. source: "./media/characters/samantha/front-clothed.svg"
  6212. }
  6213. },
  6214. back: {
  6215. height: math.unit(1.93, "meters"),
  6216. weight: math.unit(83, "kg"),
  6217. name: "Back",
  6218. image: {
  6219. source: "./media/characters/samantha/back.svg"
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(1.93, "m")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(74, "meters"),
  6231. default: true
  6232. },
  6233. {
  6234. name: "Macro+",
  6235. height: math.unit(223, "meters"),
  6236. },
  6237. {
  6238. name: "Megamacro",
  6239. height: math.unit(8381, "meters"),
  6240. },
  6241. {
  6242. name: "Megamacro+",
  6243. height: math.unit(12000, "kilometers")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(1.92, "meters"),
  6252. weight: math.unit(80, "kg"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/dr-clay/front.svg"
  6256. }
  6257. },
  6258. frontClothed: {
  6259. height: math.unit(1.92, "meters"),
  6260. weight: math.unit(80, "kg"),
  6261. name: "Front (Clothed)",
  6262. image: {
  6263. source: "./media/characters/dr-clay/front-clothed.svg"
  6264. }
  6265. }
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(1.92, "m")
  6271. },
  6272. {
  6273. name: "Macro",
  6274. height: math.unit(214, "meters"),
  6275. default: true
  6276. },
  6277. {
  6278. name: "Macro+",
  6279. height: math.unit(12.237, "meters"),
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(557, "megameters"),
  6284. },
  6285. {
  6286. name: "Unimaginable",
  6287. height: math.unit(120e9, "lightyears")
  6288. },
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6293. {
  6294. front: {
  6295. height: math.unit(2, "meters"),
  6296. weight: math.unit(80, "kg"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6300. }
  6301. }
  6302. },
  6303. [
  6304. {
  6305. name: "Teramacro",
  6306. height: math.unit(500000, "lightyears"),
  6307. default: true
  6308. },
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6313. {
  6314. front: {
  6315. height: math.unit(2, "meters"),
  6316. weight: math.unit(150, "kg"),
  6317. name: "Front",
  6318. image: {
  6319. source: "./media/characters/vemus/front.svg",
  6320. extra: 2384 / 2084,
  6321. bottom: 0.0123
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(3.75, "meters"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Big",
  6333. height: math.unit(8, "meters")
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(100, "meters")
  6338. },
  6339. {
  6340. name: "Macro+",
  6341. height: math.unit(1500, "meters")
  6342. },
  6343. {
  6344. name: "Stellar",
  6345. height: math.unit(14e8, "meters")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(2, "meters"),
  6354. weight: math.unit(70, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/beherit/front.svg",
  6358. extra: 1408 / 1242
  6359. }
  6360. }
  6361. },
  6362. [
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(6, "feet")
  6366. },
  6367. {
  6368. name: "Lorg",
  6369. height: math.unit(25, "feet"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Lorger",
  6374. height: math.unit(75, "feet")
  6375. },
  6376. {
  6377. name: "Macro",
  6378. height: math.unit(200, "meters")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(2, "meters"),
  6387. weight: math.unit(150, "kg"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/everett/front.svg",
  6391. extra: 2038 / 1737,
  6392. bottom: 0.03
  6393. }
  6394. },
  6395. paw: {
  6396. height: math.unit(2 / 3.6, "meters"),
  6397. name: "Paw",
  6398. image: {
  6399. source: "./media/characters/everett/paw.svg"
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(15, "feet"),
  6407. default: true
  6408. },
  6409. {
  6410. name: "Lorg",
  6411. height: math.unit(70, "feet"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Lorger",
  6416. height: math.unit(250, "feet")
  6417. },
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(500, "meters")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(2, "meters"),
  6429. weight: math.unit(86, "kg"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/rose/front.svg",
  6433. extra: 350/335,
  6434. bottom: 10/360
  6435. }
  6436. },
  6437. frontAlt: {
  6438. height: math.unit(1.6, "meters"),
  6439. weight: math.unit(86, "kg"),
  6440. name: "Front (Alt)",
  6441. image: {
  6442. source: "./media/characters/rose/front-alt.svg",
  6443. extra: 299/283,
  6444. bottom: 3/302
  6445. }
  6446. },
  6447. plush: {
  6448. height: math.unit(2, "meters"),
  6449. weight: math.unit(86/3, "kg"),
  6450. name: "Plush",
  6451. image: {
  6452. source: "./media/characters/rose/plush.svg",
  6453. extra: 361/337,
  6454. bottom: 11/372
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Mini-Micro",
  6461. height: math.unit(1, "cm")
  6462. },
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(3.5, "inches"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(6 + 1 / 6, "feet")
  6471. },
  6472. {
  6473. name: "Mini-Macro",
  6474. height: math.unit(9 + 10 / 12, "feet")
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(2, "meters"),
  6483. weight: math.unit(350, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/regal/front.svg"
  6487. }
  6488. },
  6489. back: {
  6490. height: math.unit(2, "meters"),
  6491. weight: math.unit(350, "lbs"),
  6492. name: "Back",
  6493. image: {
  6494. source: "./media/characters/regal/back.svg"
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(350, "feet"),
  6502. default: true
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(4 + 11 / 12, "feet"),
  6511. weight: math.unit(100, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/opal/front.svg"
  6515. }
  6516. },
  6517. frontAlt: {
  6518. height: math.unit(4 + 11 / 12, "feet"),
  6519. weight: math.unit(100, "lbs"),
  6520. name: "Front (Alt)",
  6521. image: {
  6522. source: "./media/characters/opal/front-alt.svg"
  6523. }
  6524. },
  6525. },
  6526. [
  6527. {
  6528. name: "Small",
  6529. height: math.unit(4 + 11 / 12, "feet")
  6530. },
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(20, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(120, "feet")
  6539. },
  6540. {
  6541. name: "Megamacro",
  6542. height: math.unit(80, "miles")
  6543. },
  6544. {
  6545. name: "True Size",
  6546. height: math.unit(100000, "lightyears")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(200, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/vector-wuff/front.svg"
  6559. }
  6560. }
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(2.8, "meters")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(450, "meters"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(15, "kilometers")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(256, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/dannik/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(69.57, "meters"),
  6594. default: true
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(120, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/azura-saharah/front.svg"
  6607. }
  6608. },
  6609. back: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(120, "lbs"),
  6612. name: "Back",
  6613. image: {
  6614. source: "./media/characters/azura-saharah/back.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(100, "feet"),
  6622. default: true
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6628. {
  6629. side: {
  6630. height: math.unit(5 + 4 / 12, "feet"),
  6631. weight: math.unit(163, "lbs"),
  6632. name: "Side",
  6633. image: {
  6634. source: "./media/characters/kennedy/side.svg"
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Standard Doggo",
  6641. height: math.unit(5 + 4 / 12, "feet")
  6642. },
  6643. {
  6644. name: "Big Doggo",
  6645. height: math.unit(25 + 3 / 12, "feet"),
  6646. default: true
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(90, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/odi-lunar/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Micro",
  6665. height: math.unit(3, "inches"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(5.5, "feet")
  6671. }
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6676. {
  6677. back: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(220, "lbs"),
  6680. name: "Back",
  6681. image: {
  6682. source: "./media/characters/mandake/back.svg"
  6683. }
  6684. }
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(7, "feet"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(78, "feet")
  6695. },
  6696. {
  6697. name: "Macro+",
  6698. height: math.unit(300, "meters")
  6699. },
  6700. {
  6701. name: "Macro++",
  6702. height: math.unit(2400, "feet")
  6703. },
  6704. {
  6705. name: "Megamacro",
  6706. height: math.unit(5167, "meters")
  6707. },
  6708. {
  6709. name: "Gigamacro",
  6710. height: math.unit(41769, "miles")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(120, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/yozey/front.svg"
  6723. }
  6724. },
  6725. frontAlt: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(120, "lbs"),
  6728. name: "Front (Alt)",
  6729. image: {
  6730. source: "./media/characters/yozey/front-alt.svg"
  6731. }
  6732. },
  6733. side: {
  6734. height: math.unit(6, "feet"),
  6735. weight: math.unit(120, "lbs"),
  6736. name: "Side",
  6737. image: {
  6738. source: "./media/characters/yozey/side.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Micro",
  6745. height: math.unit(3, "inches"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(6, "feet")
  6751. }
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(103, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/valeska-voss/front.svg"
  6763. }
  6764. }
  6765. },
  6766. [
  6767. {
  6768. name: "Mini-Sized Sub",
  6769. height: math.unit(3.1, "inches")
  6770. },
  6771. {
  6772. name: "Mid-Sized Sub",
  6773. height: math.unit(6.2, "inches")
  6774. },
  6775. {
  6776. name: "Full-Sized Sub",
  6777. height: math.unit(9.3, "inches")
  6778. },
  6779. {
  6780. name: "Normal",
  6781. height: math.unit(5 + 2 / 12, "foot"),
  6782. default: true
  6783. },
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(160, "lbs"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/gene-zeta/front.svg",
  6795. extra: 3006 / 2826,
  6796. bottom: 182 / 3188
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Micro",
  6803. height: math.unit(6, "inches")
  6804. },
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(5 + 11 / 12, "foot"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(140, "feet")
  6813. },
  6814. {
  6815. name: "Supercharged",
  6816. height: math.unit(2500, "feet")
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(6, "feet"),
  6825. weight: math.unit(350, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/razinox/front.svg",
  6829. extra: 1686 / 1548,
  6830. bottom: 28.2 / 1868
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(350, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/razinox/back.svg",
  6839. extra: 1660 / 1590,
  6840. bottom: 15 / 1665
  6841. }
  6842. },
  6843. },
  6844. [
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(10 + 8 / 12, "foot")
  6848. },
  6849. {
  6850. name: "Minimacro",
  6851. height: math.unit(15, "foot")
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(60, "foot"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Megamacro",
  6860. height: math.unit(5, "miles")
  6861. },
  6862. {
  6863. name: "Gigamacro",
  6864. height: math.unit(6000, "miles")
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(150, "lbs"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/cobalt/front.svg"
  6877. }
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(8 + 1 / 12, "foot")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(111, "foot"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Supracosmic",
  6892. height: math.unit(1e42, "feet")
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6898. {
  6899. front: {
  6900. height: math.unit(6, "feet"),
  6901. weight: math.unit(140, "lbs"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/amanda/front.svg"
  6905. }
  6906. }
  6907. },
  6908. [
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(5, "inches"),
  6912. default: true
  6913. },
  6914. ]
  6915. ))
  6916. characterMakers.push(() => makeCharacter(
  6917. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6918. {
  6919. front: {
  6920. height: math.unit(2.75, "meters"),
  6921. weight: math.unit(1200, "lb"),
  6922. name: "Front",
  6923. image: {
  6924. source: "./media/characters/teal/front.svg",
  6925. extra: 2463 / 2320,
  6926. bottom: 166 / 2629
  6927. }
  6928. },
  6929. back: {
  6930. height: math.unit(2.75, "meters"),
  6931. weight: math.unit(1200, "lb"),
  6932. name: "Back",
  6933. image: {
  6934. source: "./media/characters/teal/back.svg",
  6935. extra: 2580 / 2489,
  6936. bottom: 151 / 2731
  6937. }
  6938. },
  6939. sitting: {
  6940. height: math.unit(1.9, "meters"),
  6941. weight: math.unit(1200, "lb"),
  6942. name: "Sitting",
  6943. image: {
  6944. source: "./media/characters/teal/sitting.svg",
  6945. extra: 623 / 590,
  6946. bottom: 121 / 744
  6947. }
  6948. },
  6949. standing: {
  6950. height: math.unit(2.75, "meters"),
  6951. weight: math.unit(1200, "lb"),
  6952. name: "Standing",
  6953. image: {
  6954. source: "./media/characters/teal/standing.svg",
  6955. extra: 923 / 893,
  6956. bottom: 60 / 983
  6957. }
  6958. },
  6959. stretching: {
  6960. height: math.unit(3.65, "meters"),
  6961. weight: math.unit(1200, "lb"),
  6962. name: "Stretching",
  6963. image: {
  6964. source: "./media/characters/teal/stretching.svg",
  6965. extra: 1276 / 1244,
  6966. bottom: 0 / 1276
  6967. }
  6968. },
  6969. legged: {
  6970. height: math.unit(1.3, "meters"),
  6971. weight: math.unit(100, "lb"),
  6972. name: "Legged",
  6973. image: {
  6974. source: "./media/characters/teal/legged.svg",
  6975. extra: 462 / 437,
  6976. bottom: 24 / 486
  6977. }
  6978. },
  6979. naga: {
  6980. height: math.unit(5.4, "meters"),
  6981. weight: math.unit(4000, "lb"),
  6982. name: "Naga",
  6983. image: {
  6984. source: "./media/characters/teal/naga.svg",
  6985. extra: 1902 / 1858,
  6986. bottom: 0 / 1902
  6987. }
  6988. },
  6989. hand: {
  6990. height: math.unit(0.52, "meters"),
  6991. name: "Hand",
  6992. image: {
  6993. source: "./media/characters/teal/hand.svg"
  6994. }
  6995. },
  6996. maw: {
  6997. height: math.unit(0.43, "meters"),
  6998. name: "Maw",
  6999. image: {
  7000. source: "./media/characters/teal/maw.svg"
  7001. }
  7002. },
  7003. slit: {
  7004. height: math.unit(0.25, "meters"),
  7005. name: "Slit",
  7006. image: {
  7007. source: "./media/characters/teal/slit.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(2.75, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(300, "feet")
  7020. },
  7021. {
  7022. name: "Macro+",
  7023. height: math.unit(2000, "feet")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7029. {
  7030. frontCat: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(180, "lbs"),
  7033. name: "Front (Cat)",
  7034. image: {
  7035. source: "./media/characters/ravin-amulet/front-cat.svg"
  7036. }
  7037. },
  7038. frontCatAlt: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(180, "lbs"),
  7041. name: "Front (Alt, Cat)",
  7042. image: {
  7043. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7044. }
  7045. },
  7046. frontWerewolf: {
  7047. height: math.unit(6 * 1.2, "feet"),
  7048. weight: math.unit(225, "lbs"),
  7049. name: "Front (Werewolf)",
  7050. image: {
  7051. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7052. }
  7053. },
  7054. backWerewolf: {
  7055. height: math.unit(6 * 1.2, "feet"),
  7056. weight: math.unit(225, "lbs"),
  7057. name: "Back (Werewolf)",
  7058. image: {
  7059. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Nano",
  7066. height: math.unit(1, "micrometer")
  7067. },
  7068. {
  7069. name: "Micro",
  7070. height: math.unit(1, "inch")
  7071. },
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(6, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(60, "feet")
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(165, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/fluoresce/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Micro",
  7098. height: math.unit(6, "cm")
  7099. },
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(5 + 7 / 12, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(56, "feet")
  7108. },
  7109. {
  7110. name: "Megamacro",
  7111. height: math.unit(1.9, "miles")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(9 + 6 / 12, "feet"),
  7120. weight: math.unit(523, "lbs"),
  7121. name: "Side",
  7122. image: {
  7123. source: "./media/characters/aurora/side.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(9 + 6 / 12, "feet")
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(96, "feet"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Macro+",
  7139. height: math.unit(243, "feet")
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(194, "cm"),
  7148. weight: math.unit(90, "kg"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/ranek/front.svg"
  7152. }
  7153. },
  7154. side: {
  7155. height: math.unit(194, "cm"),
  7156. weight: math.unit(90, "kg"),
  7157. name: "Side",
  7158. image: {
  7159. source: "./media/characters/ranek/side.svg"
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(194, "cm"),
  7164. weight: math.unit(90, "kg"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/ranek/back.svg"
  7168. }
  7169. },
  7170. feral: {
  7171. height: math.unit(30, "cm"),
  7172. weight: math.unit(1.6, "lbs"),
  7173. name: "Feral",
  7174. image: {
  7175. source: "./media/characters/ranek/feral.svg"
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(194, "cm"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Macro",
  7187. height: math.unit(100, "meters")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(5 + 6 / 12, "feet"),
  7196. weight: math.unit(153, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/andrew-cooper/front.svg"
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Nano",
  7206. height: math.unit(1, "mm")
  7207. },
  7208. {
  7209. name: "Micro",
  7210. height: math.unit(2, "inches")
  7211. },
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(5 + 6 / 12, "feet"),
  7215. default: true
  7216. }
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(180, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/akane-sato/front.svg",
  7228. extra: 1219 / 1140
  7229. }
  7230. },
  7231. back: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(180, "lbs"),
  7234. name: "Back",
  7235. image: {
  7236. source: "./media/characters/akane-sato/back.svg",
  7237. extra: 1219 / 1170
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(2.5, "meters")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(250, "meters"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Megamacro",
  7253. height: math.unit(25, "km")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(65, "kg"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/rook/front.svg",
  7266. extra: 960 / 950
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(8.8, "feet")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(88, "feet"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Megamacro",
  7282. height: math.unit(8, "miles")
  7283. },
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(12 + 2 / 12, "feet"),
  7291. weight: math.unit(808, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/prodigy/front.svg"
  7295. }
  7296. }
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(12 + 2 / 12, "feet"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro",
  7306. height: math.unit(143, "feet")
  7307. },
  7308. {
  7309. name: "Macro+",
  7310. height: math.unit(400, "feet")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(225, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/daniel/front.svg"
  7323. }
  7324. },
  7325. leaning: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(225, "lbs"),
  7328. name: "Leaning",
  7329. image: {
  7330. source: "./media/characters/daniel/leaning.svg"
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Macro",
  7337. height: math.unit(1000, "feet"),
  7338. default: true
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(88, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/chiros/front.svg",
  7351. extra: 306 / 226
  7352. }
  7353. },
  7354. side: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(88, "lbs"),
  7357. name: "Side",
  7358. image: {
  7359. source: "./media/characters/chiros/side.svg",
  7360. extra: 306 / 226
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(6, "cm"),
  7368. default: true
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(100, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/selka/front.svg",
  7381. extra: 947 / 887
  7382. }
  7383. }
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(5, "cm"),
  7389. default: true
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(8 + 3 / 12, "feet"),
  7398. weight: math.unit(424, "lbs"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/verin/front.svg",
  7402. extra: 1845 / 1550
  7403. }
  7404. },
  7405. frontArmored: {
  7406. height: math.unit(8 + 3 / 12, "feet"),
  7407. weight: math.unit(424, "lbs"),
  7408. name: "Front (Armored)",
  7409. image: {
  7410. source: "./media/characters/verin/front-armor.svg",
  7411. extra: 1845 / 1550,
  7412. bottom: 0.01
  7413. }
  7414. },
  7415. back: {
  7416. height: math.unit(8 + 3 / 12, "feet"),
  7417. weight: math.unit(424, "lbs"),
  7418. name: "Back",
  7419. image: {
  7420. source: "./media/characters/verin/back.svg",
  7421. bottom: 0.1,
  7422. extra: 1
  7423. }
  7424. },
  7425. foot: {
  7426. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7427. name: "Foot",
  7428. image: {
  7429. source: "./media/characters/verin/foot.svg"
  7430. }
  7431. },
  7432. },
  7433. [
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(8 + 3 / 12, "feet")
  7437. },
  7438. {
  7439. name: "Minimacro",
  7440. height: math.unit(21, "feet"),
  7441. default: true
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(626, "feet")
  7446. },
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7451. {
  7452. front: {
  7453. height: math.unit(2.718, "meters"),
  7454. weight: math.unit(150, "lbs"),
  7455. name: "Front",
  7456. image: {
  7457. source: "./media/characters/sovrim-terraquian/front.svg"
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(2.718, "meters"),
  7462. weight: math.unit(150, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/sovrim-terraquian/back.svg"
  7466. }
  7467. }
  7468. },
  7469. [
  7470. {
  7471. name: "Micro",
  7472. height: math.unit(2, "inches")
  7473. },
  7474. {
  7475. name: "Small",
  7476. height: math.unit(1, "meter")
  7477. },
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(Math.E, "meters"),
  7481. default: true
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(20, "meters")
  7486. },
  7487. {
  7488. name: "Macro+",
  7489. height: math.unit(400, "meters")
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(7, "feet"),
  7498. weight: math.unit(489, "lbs"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/reece-silvermane/front.svg",
  7502. bottom: 0.02,
  7503. extra: 1
  7504. }
  7505. },
  7506. },
  7507. [
  7508. {
  7509. name: "Macro",
  7510. height: math.unit(1.5, "miles"),
  7511. default: true
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(6, "feet"),
  7520. weight: math.unit(78, "kg"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/kane/front.svg",
  7524. extra: 978 / 899
  7525. }
  7526. },
  7527. },
  7528. [
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(2.1, "m"),
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(1, "km"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7542. {
  7543. front: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(200, "kg"),
  7546. name: "Front",
  7547. image: {
  7548. source: "./media/characters/tegon/front.svg",
  7549. bottom: 0.01,
  7550. extra: 1
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(1, "inch")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(6 + 3 / 12, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(300, "feet")
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(69, "miles")
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7576. {
  7577. side: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(2304, "lbs"),
  7580. name: "Side",
  7581. image: {
  7582. source: "./media/characters/arcturax/side.svg",
  7583. extra: 790 / 376,
  7584. bottom: 0.01
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Micro",
  7591. height: math.unit(2, "inch")
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(6, "feet")
  7596. },
  7597. {
  7598. name: "Macro",
  7599. height: math.unit(39, "feet"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Megamacro",
  7604. height: math.unit(7, "miles")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(50, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/sentri/front.svg",
  7617. extra: 1750 / 1570,
  7618. bottom: 0.025
  7619. }
  7620. },
  7621. frontAlt: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(50, "lbs"),
  7624. name: "Front (Alt)",
  7625. image: {
  7626. source: "./media/characters/sentri/front-alt.svg",
  7627. extra: 1750 / 1570,
  7628. bottom: 0.025
  7629. }
  7630. },
  7631. },
  7632. [
  7633. {
  7634. name: "Normal",
  7635. height: math.unit(15, "feet"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Macro",
  7640. height: math.unit(2500, "feet")
  7641. }
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(5 + 8 / 12, "feet"),
  7649. weight: math.unit(130, "lbs"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/corvin/front.svg",
  7653. extra: 1803 / 1629
  7654. }
  7655. },
  7656. frontShirt: {
  7657. height: math.unit(5 + 8 / 12, "feet"),
  7658. weight: math.unit(130, "lbs"),
  7659. name: "Front (Shirt)",
  7660. image: {
  7661. source: "./media/characters/corvin/front-shirt.svg",
  7662. extra: 1803 / 1629
  7663. }
  7664. },
  7665. frontPoncho: {
  7666. height: math.unit(5 + 8 / 12, "feet"),
  7667. weight: math.unit(130, "lbs"),
  7668. name: "Front (Poncho)",
  7669. image: {
  7670. source: "./media/characters/corvin/front-poncho.svg",
  7671. extra: 1803 / 1629
  7672. }
  7673. },
  7674. side: {
  7675. height: math.unit(5 + 8 / 12, "feet"),
  7676. weight: math.unit(130, "lbs"),
  7677. name: "Side",
  7678. image: {
  7679. source: "./media/characters/corvin/side.svg",
  7680. extra: 1012 / 945
  7681. }
  7682. },
  7683. back: {
  7684. height: math.unit(5 + 8 / 12, "feet"),
  7685. weight: math.unit(130, "lbs"),
  7686. name: "Back",
  7687. image: {
  7688. source: "./media/characters/corvin/back.svg",
  7689. extra: 1803 / 1629
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Micro",
  7696. height: math.unit(3, "inches")
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(5 + 8 / 12, "feet")
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(300, "feet"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(500, "miles")
  7710. }
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(6, "feet"),
  7718. weight: math.unit(135, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/q/front.svg",
  7722. extra: 854 / 752,
  7723. bottom: 0.005
  7724. }
  7725. },
  7726. back: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(130, "lbs"),
  7729. name: "Back",
  7730. image: {
  7731. source: "./media/characters/q/back.svg",
  7732. extra: 854 / 752
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(90, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Extra Macro",
  7744. height: math.unit(300, "feet"),
  7745. },
  7746. {
  7747. name: "BIG WALF",
  7748. height: math.unit(750, "feet"),
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(150, "lbs"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/carley/front.svg",
  7761. extra: 3927 / 3540,
  7762. bottom: 29.2 / 735
  7763. }
  7764. }
  7765. },
  7766. [
  7767. {
  7768. name: "Normal",
  7769. height: math.unit(6 + 3 / 12, "feet")
  7770. },
  7771. {
  7772. name: "Macro",
  7773. height: math.unit(185, "feet"),
  7774. default: true
  7775. },
  7776. {
  7777. name: "Megamacro",
  7778. height: math.unit(8, "miles"),
  7779. },
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(3, "feet"),
  7787. weight: math.unit(28, "lbs"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/citrine/front.svg"
  7791. }
  7792. }
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(3, "feet"),
  7798. default: true
  7799. }
  7800. ]
  7801. ))
  7802. characterMakers.push(() => makeCharacter(
  7803. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7804. {
  7805. front: {
  7806. height: math.unit(14, "feet"),
  7807. weight: math.unit(1450, "kg"),
  7808. capacity: math.unit(15, "people"),
  7809. name: "Front",
  7810. image: {
  7811. source: "./media/characters/aura-starwind/front.svg",
  7812. extra: 1455 / 1335
  7813. }
  7814. },
  7815. side: {
  7816. height: math.unit(14, "feet"),
  7817. weight: math.unit(1450, "kg"),
  7818. capacity: math.unit(15, "people"),
  7819. name: "Side",
  7820. image: {
  7821. source: "./media/characters/aura-starwind/side.svg",
  7822. extra: 1654 / 1497
  7823. }
  7824. },
  7825. taur: {
  7826. height: math.unit(18, "feet"),
  7827. weight: math.unit(5500, "kg"),
  7828. capacity: math.unit(50, "people"),
  7829. name: "Taur",
  7830. image: {
  7831. source: "./media/characters/aura-starwind/taur.svg",
  7832. extra: 1760 / 1650
  7833. }
  7834. },
  7835. feral: {
  7836. height: math.unit(46, "feet"),
  7837. weight: math.unit(25000, "kg"),
  7838. capacity: math.unit(120, "people"),
  7839. name: "Feral",
  7840. image: {
  7841. source: "./media/characters/aura-starwind/feral.svg"
  7842. }
  7843. },
  7844. },
  7845. [
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(14, "feet"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(50, "meters")
  7854. },
  7855. {
  7856. name: "Megamacro",
  7857. height: math.unit(5000, "meters")
  7858. },
  7859. {
  7860. name: "Gigamacro",
  7861. height: math.unit(100000, "kilometers")
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(2 + 7 / 12, "feet"),
  7870. weight: math.unit(32, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/rivet/front.svg",
  7874. extra: 1716 / 1658,
  7875. bottom: 0.03
  7876. }
  7877. },
  7878. foot: {
  7879. height: math.unit(0.551, "feet"),
  7880. name: "Rivet's Foot",
  7881. image: {
  7882. source: "./media/characters/rivet/foot.svg"
  7883. },
  7884. rename: true
  7885. }
  7886. },
  7887. [
  7888. {
  7889. name: "Micro",
  7890. height: math.unit(1.5, "inches"),
  7891. },
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(2 + 7 / 12, "feet"),
  7895. default: true
  7896. },
  7897. {
  7898. name: "Macro",
  7899. height: math.unit(85, "feet")
  7900. },
  7901. {
  7902. name: "Megamacro",
  7903. height: math.unit(2.2, "km")
  7904. }
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(5 + 9 / 12, "feet"),
  7912. weight: math.unit(150, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/coffee/front.svg",
  7916. extra: 3666 / 3032,
  7917. bottom: 0.04
  7918. }
  7919. },
  7920. foot: {
  7921. height: math.unit(1.29, "feet"),
  7922. name: "Foot",
  7923. image: {
  7924. source: "./media/characters/coffee/foot.svg"
  7925. }
  7926. },
  7927. },
  7928. [
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(2, "inches"),
  7932. },
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(5 + 9 / 12, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(800, "feet")
  7941. },
  7942. {
  7943. name: "Megamacro",
  7944. height: math.unit(25, "miles")
  7945. }
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(6, "feet"),
  7953. weight: math.unit(200, "lbs"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/chari-gal/front.svg",
  7957. extra: 1568 / 1385,
  7958. bottom: 0.047
  7959. }
  7960. },
  7961. gigantamax: {
  7962. height: math.unit(6 * 16, "feet"),
  7963. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7964. name: "Gigantamax",
  7965. image: {
  7966. source: "./media/characters/chari-gal/gigantamax.svg",
  7967. extra: 1124 / 888,
  7968. bottom: 0.03
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(5 + 7 / 12, "feet")
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(200, "feet"),
  7980. default: true
  7981. }
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(6, "feet"),
  7989. weight: math.unit(150, "lbs"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/nova/front.svg",
  7993. extra: 5000 / 4722,
  7994. bottom: 0.02
  7995. }
  7996. }
  7997. },
  7998. [
  7999. {
  8000. name: "Micro-",
  8001. height: math.unit(0.8, "inches")
  8002. },
  8003. {
  8004. name: "Micro",
  8005. height: math.unit(2, "inches"),
  8006. default: true
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(3 + 1 / 12, "feet"),
  8015. weight: math.unit(21.7, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/argent/front.svg",
  8019. extra: 1471 / 1331,
  8020. bottom: 100.8 / 1575.5
  8021. }
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(2, "inches")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(3 + 1 / 12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(120, "feet")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8042. {
  8043. lamp: {
  8044. height: math.unit(7 * 1559 / 989, "feet"),
  8045. name: "Magic Lamp",
  8046. image: {
  8047. source: "./media/characters/mira-al-cul/lamp.svg",
  8048. extra: 1617 / 1559
  8049. }
  8050. },
  8051. front: {
  8052. height: math.unit(7, "feet"),
  8053. name: "Front",
  8054. image: {
  8055. source: "./media/characters/mira-al-cul/front.svg",
  8056. extra: 1044 / 990
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Heavily Restricted",
  8063. height: math.unit(7 * 1559 / 989, "feet")
  8064. },
  8065. {
  8066. name: "Freshly Freed",
  8067. height: math.unit(50 * 1559 / 989, "feet")
  8068. },
  8069. {
  8070. name: "World Encompassing",
  8071. height: math.unit(10000 * 1559 / 989, "miles")
  8072. },
  8073. {
  8074. name: "Galactic",
  8075. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8076. },
  8077. {
  8078. name: "Palmed Universe",
  8079. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Multiversal Matriarch",
  8084. height: math.unit(8.87e10, "yottameters")
  8085. },
  8086. {
  8087. name: "Void Mother",
  8088. height: math.unit(3.14e110, "yottaparsecs")
  8089. },
  8090. {
  8091. name: "Toying with Transcendence",
  8092. height: math.unit(1e307, "meters")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8098. {
  8099. front: {
  8100. height: math.unit(17 + 1 / 12, "feet"),
  8101. weight: math.unit(476.2 * 5, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/kuro-shi-uchū/front.svg",
  8105. extra: 2329 / 1835,
  8106. bottom: 0.02
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(2, "inches")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(12, "meters")
  8118. },
  8119. {
  8120. name: "Planetary",
  8121. height: math.unit(0.00929, "AU"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Universal",
  8126. height: math.unit(20, "gigaparsecs")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(5 + 2 / 12, "feet"),
  8135. weight: math.unit(120, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/katherine/front.svg",
  8139. extra: 2075 / 1969
  8140. }
  8141. },
  8142. dress: {
  8143. height: math.unit(5 + 2 / 12, "feet"),
  8144. weight: math.unit(120, "lbs"),
  8145. name: "Dress",
  8146. image: {
  8147. source: "./media/characters/katherine/dress.svg",
  8148. extra: 2258 / 2064
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Micro",
  8155. height: math.unit(1, "inches"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(5 + 2 / 12, "feet")
  8161. },
  8162. {
  8163. name: "Macro",
  8164. height: math.unit(100, "meters")
  8165. },
  8166. {
  8167. name: "Megamacro",
  8168. height: math.unit(80, "miles")
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(7 + 8 / 12, "feet"),
  8177. weight: math.unit(250, "lbs"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/yevis/front.svg",
  8181. extra: 1938 / 1755
  8182. }
  8183. }
  8184. },
  8185. [
  8186. {
  8187. name: "Mortal",
  8188. height: math.unit(7 + 8 / 12, "feet")
  8189. },
  8190. {
  8191. name: "Battle",
  8192. height: math.unit(25 + 11 / 12, "feet")
  8193. },
  8194. {
  8195. name: "Wrath",
  8196. height: math.unit(1654 + 11 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Planet Destroyer",
  8200. height: math.unit(12000, "miles")
  8201. },
  8202. {
  8203. name: "Galaxy Conqueror",
  8204. height: math.unit(1.45, "zettameters"),
  8205. default: true
  8206. },
  8207. {
  8208. name: "Universal War",
  8209. height: math.unit(184, "gigaparsecs")
  8210. },
  8211. {
  8212. name: "Eternity War",
  8213. height: math.unit(1.98e55, "yottaparsecs")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8219. {
  8220. front: {
  8221. height: math.unit(5 + 8 / 12, "feet"),
  8222. weight: math.unit(63, "kg"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/xavier/front.svg",
  8226. extra: 944 / 883
  8227. }
  8228. },
  8229. frontStretch: {
  8230. height: math.unit(5 + 8 / 12, "feet"),
  8231. weight: math.unit(63, "kg"),
  8232. name: "Stretching",
  8233. image: {
  8234. source: "./media/characters/xavier/front-stretch.svg",
  8235. extra: 962 / 820
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(5 + 8 / 12, "feet")
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(100, "meters"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "McLargeHuge",
  8251. height: math.unit(10, "miles")
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8257. {
  8258. front: {
  8259. height: math.unit(5 + 5 / 12, "feet"),
  8260. weight: math.unit(150, "lb"),
  8261. name: "Front",
  8262. image: {
  8263. source: "./media/characters/joshii/front.svg",
  8264. extra: 765 / 653,
  8265. bottom: 51 / 816
  8266. }
  8267. },
  8268. foot: {
  8269. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8270. name: "Foot",
  8271. image: {
  8272. source: "./media/characters/joshii/foot.svg"
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(2, "inches"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(5 + 5 / 12, "feet")
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(785, "feet")
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(24.5, "miles")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(150, "lb"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/goddess-elizabeth/front.svg",
  8305. extra: 1800 / 1525,
  8306. bottom: 0.005
  8307. }
  8308. },
  8309. foot: {
  8310. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8311. name: "Foot",
  8312. image: {
  8313. source: "./media/characters/goddess-elizabeth/foot.svg"
  8314. }
  8315. },
  8316. mouth: {
  8317. height: math.unit(6, "feet"),
  8318. name: "Mouth",
  8319. image: {
  8320. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Micro",
  8327. height: math.unit(12, "feet")
  8328. },
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(80, "miles"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(15000, "parsecs")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(5 + 9 / 12, "feet"),
  8345. weight: math.unit(144, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/kara/front.svg"
  8349. }
  8350. },
  8351. feet: {
  8352. height: math.unit(6 / 6.765, "feet"),
  8353. name: "Kara's Feet",
  8354. rename: true,
  8355. image: {
  8356. source: "./media/characters/kara/feet.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 9 / 12, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(174, "feet"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(18, "feet"),
  8377. weight: math.unit(4050, "lb"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/tyrone/front.svg",
  8381. extra: 2405 / 2270,
  8382. bottom: 182 / 2587
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(18, "feet"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(300, "feet")
  8395. },
  8396. {
  8397. name: "Megamacro",
  8398. height: math.unit(15, "km")
  8399. },
  8400. {
  8401. name: "Gigamacro",
  8402. height: math.unit(500, "km")
  8403. },
  8404. {
  8405. name: "Teramacro",
  8406. height: math.unit(0.5, "gigameters")
  8407. },
  8408. {
  8409. name: "Omnimacro",
  8410. height: math.unit(1e252, "yottauniverse")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(7 + 8 / 12, "feet"),
  8419. weight: math.unit(120, "lb"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/danny/front.svg",
  8423. extra: 1490 / 1350
  8424. }
  8425. },
  8426. back: {
  8427. height: math.unit(7 + 8 / 12, "feet"),
  8428. weight: math.unit(120, "lb"),
  8429. name: "Back",
  8430. image: {
  8431. source: "./media/characters/danny/back.svg",
  8432. extra: 1490 / 1350
  8433. }
  8434. },
  8435. },
  8436. [
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(7 + 8 / 12, "feet"),
  8440. default: true
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(3.5, "inches"),
  8449. weight: math.unit(19, "grams"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/mallow/front.svg",
  8453. extra: 471 / 431
  8454. }
  8455. },
  8456. back: {
  8457. height: math.unit(3.5, "inches"),
  8458. weight: math.unit(19, "grams"),
  8459. name: "Back",
  8460. image: {
  8461. source: "./media/characters/mallow/back.svg",
  8462. extra: 471 / 431
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(3.5, "inches"),
  8470. default: true
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(9, "feet"),
  8479. weight: math.unit(230, "kg"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/starry-aqua/front.svg"
  8483. }
  8484. },
  8485. back: {
  8486. height: math.unit(9, "feet"),
  8487. weight: math.unit(230, "kg"),
  8488. name: "Back",
  8489. image: {
  8490. source: "./media/characters/starry-aqua/back.svg"
  8491. }
  8492. },
  8493. hand: {
  8494. height: math.unit(9 * 0.1168, "feet"),
  8495. name: "Hand",
  8496. image: {
  8497. source: "./media/characters/starry-aqua/hand.svg"
  8498. }
  8499. },
  8500. foot: {
  8501. height: math.unit(9 * 0.18, "feet"),
  8502. name: "Foot",
  8503. image: {
  8504. source: "./media/characters/starry-aqua/foot.svg"
  8505. }
  8506. }
  8507. },
  8508. [
  8509. {
  8510. name: "Micro",
  8511. height: math.unit(3, "inches")
  8512. },
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(9, "feet")
  8516. },
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(300, "feet"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Megamacro",
  8524. height: math.unit(3200, "feet")
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(230, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/luka/front.svg",
  8537. extra: 1,
  8538. bottom: 0.025
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(12 + 8 / 12, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Minimacro",
  8550. height: math.unit(20, "feet")
  8551. },
  8552. {
  8553. name: "Macro",
  8554. height: math.unit(250, "feet")
  8555. },
  8556. {
  8557. name: "Megamacro",
  8558. height: math.unit(5, "miles")
  8559. },
  8560. {
  8561. name: "Gigamacro",
  8562. height: math.unit(8000, "miles")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(150, "lb"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/natalie-nightring/front.svg",
  8575. extra: 1,
  8576. bottom: 0.06
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Uh Oh",
  8583. height: math.unit(0.1, "mm")
  8584. },
  8585. {
  8586. name: "Small",
  8587. height: math.unit(3, "inches")
  8588. },
  8589. {
  8590. name: "Human Scale",
  8591. height: math.unit(6, "feet")
  8592. },
  8593. {
  8594. name: "Librarian",
  8595. height: math.unit(50, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Immense",
  8600. height: math.unit(200, "miles")
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(180, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/danni-rosie/front.svg",
  8613. extra: 1260 / 1128,
  8614. bottom: 0.022
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Micro",
  8621. height: math.unit(2, "inches"),
  8622. default: true
  8623. },
  8624. ]
  8625. ))
  8626. characterMakers.push(() => makeCharacter(
  8627. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8628. {
  8629. front: {
  8630. height: math.unit(5 + 9 / 12, "feet"),
  8631. weight: math.unit(220, "lb"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/samantha-kruse/front.svg",
  8635. extra: (985 / 935),
  8636. bottom: 0.03
  8637. }
  8638. },
  8639. frontUndressed: {
  8640. height: math.unit(5 + 9 / 12, "feet"),
  8641. weight: math.unit(220, "lb"),
  8642. name: "Front (Undressed)",
  8643. image: {
  8644. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8645. extra: (973 / 923),
  8646. bottom: 0.025
  8647. }
  8648. },
  8649. fat: {
  8650. height: math.unit(5 + 9 / 12, "feet"),
  8651. weight: math.unit(900, "lb"),
  8652. name: "Front (Fat)",
  8653. image: {
  8654. source: "./media/characters/samantha-kruse/fat.svg",
  8655. extra: 2688 / 2561
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 9 / 12, "feet"),
  8663. default: true
  8664. }
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8669. {
  8670. back: {
  8671. height: math.unit(5 + 4 / 12, "feet"),
  8672. weight: math.unit(4963, "lb"),
  8673. name: "Back",
  8674. image: {
  8675. source: "./media/characters/amelia-rosie/back.svg",
  8676. extra: 1113 / 963,
  8677. bottom: 0.01
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Level 0",
  8684. height: math.unit(5 + 4 / 12, "feet")
  8685. },
  8686. {
  8687. name: "Level 1",
  8688. height: math.unit(164597, "feet"),
  8689. default: true
  8690. },
  8691. {
  8692. name: "Level 2",
  8693. height: math.unit(956243, "miles")
  8694. },
  8695. {
  8696. name: "Level 3",
  8697. height: math.unit(29421709423, "miles")
  8698. },
  8699. {
  8700. name: "Level 4",
  8701. height: math.unit(154, "lightyears")
  8702. },
  8703. {
  8704. name: "Level 5",
  8705. height: math.unit(4738272, "lightyears")
  8706. },
  8707. {
  8708. name: "Level 6",
  8709. height: math.unit(145787152896, "lightyears")
  8710. },
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(5 + 11 / 12, "feet"),
  8718. weight: math.unit(65, "kg"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/rook-kitara/front.svg",
  8722. extra: 1347 / 1274,
  8723. bottom: 0.005
  8724. }
  8725. },
  8726. },
  8727. [
  8728. {
  8729. name: "Totally Unfair",
  8730. height: math.unit(1.8, "mm")
  8731. },
  8732. {
  8733. name: "Lap Rookie",
  8734. height: math.unit(1.4, "feet")
  8735. },
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(5 + 11 / 12, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "How Did This Happen",
  8743. height: math.unit(80, "miles")
  8744. }
  8745. ]
  8746. ))
  8747. characterMakers.push(() => makeCharacter(
  8748. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8749. {
  8750. front: {
  8751. height: math.unit(7, "feet"),
  8752. weight: math.unit(300, "lb"),
  8753. name: "Front",
  8754. image: {
  8755. source: "./media/characters/pisces/front.svg",
  8756. extra: 2255 / 2115,
  8757. bottom: 0.03
  8758. }
  8759. },
  8760. back: {
  8761. height: math.unit(7, "feet"),
  8762. weight: math.unit(300, "lb"),
  8763. name: "Back",
  8764. image: {
  8765. source: "./media/characters/pisces/back.svg",
  8766. extra: 2146 / 2055,
  8767. bottom: 0.04
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(7, "feet"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Swimming Pool",
  8779. height: math.unit(12.2, "meters")
  8780. },
  8781. {
  8782. name: "Olympic Swimming Pool",
  8783. height: math.unit(56.3, "meters")
  8784. },
  8785. {
  8786. name: "Lake Superior",
  8787. height: math.unit(93900, "meters")
  8788. },
  8789. {
  8790. name: "Mediterranean Sea",
  8791. height: math.unit(644457, "meters")
  8792. },
  8793. {
  8794. name: "World's Oceans",
  8795. height: math.unit(4567491, "meters")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(2.3, "meters"),
  8804. weight: math.unit(120, "kg"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/zelas/front.svg"
  8808. }
  8809. },
  8810. side: {
  8811. height: math.unit(2.3, "meters"),
  8812. weight: math.unit(120, "kg"),
  8813. name: "Side",
  8814. image: {
  8815. source: "./media/characters/zelas/side.svg"
  8816. }
  8817. },
  8818. back: {
  8819. height: math.unit(2.3, "meters"),
  8820. weight: math.unit(120, "kg"),
  8821. name: "Back",
  8822. image: {
  8823. source: "./media/characters/zelas/back.svg"
  8824. }
  8825. },
  8826. foot: {
  8827. height: math.unit(1.116, "feet"),
  8828. name: "Foot",
  8829. image: {
  8830. source: "./media/characters/zelas/foot.svg"
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Normal",
  8837. height: math.unit(2.3, "meters")
  8838. },
  8839. {
  8840. name: "Macro",
  8841. height: math.unit(30, "meters"),
  8842. default: true
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8848. {
  8849. front: {
  8850. height: math.unit(1, "inch"),
  8851. weight: math.unit(0.21, "grams"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/talbot/front.svg",
  8855. extra: 594 / 544
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(1, "inch"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8869. {
  8870. front: {
  8871. height: math.unit(3 + 3 / 12, "feet"),
  8872. weight: math.unit(51.8, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/fliss/front.svg",
  8876. extra: 840 / 640
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Teeny Tiny",
  8883. height: math.unit(1, "mm")
  8884. },
  8885. {
  8886. name: "Small",
  8887. height: math.unit(1, "inch"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Standard Sylveon",
  8892. height: math.unit(3 + 3 / 12, "feet")
  8893. },
  8894. {
  8895. name: "Large Nuisance",
  8896. height: math.unit(33, "feet")
  8897. },
  8898. {
  8899. name: "City Filler",
  8900. height: math.unit(3000, "feet")
  8901. },
  8902. {
  8903. name: "New Horizon",
  8904. height: math.unit(6000, "miles")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(5, "cm"),
  8913. weight: math.unit(1.94, "g"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/fleta/front.svg",
  8917. extra: 835 / 803
  8918. }
  8919. },
  8920. back: {
  8921. height: math.unit(5, "cm"),
  8922. weight: math.unit(1.94, "g"),
  8923. name: "Back",
  8924. image: {
  8925. source: "./media/characters/fleta/back.svg",
  8926. extra: 835 / 803
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(5, "cm"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(6, "feet"),
  8943. weight: math.unit(225, "lb"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/dominic/front.svg",
  8947. extra: 1770 / 1620,
  8948. bottom: 0.025
  8949. }
  8950. },
  8951. back: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(225, "lb"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/dominic/back.svg",
  8957. extra: 1745 / 1620,
  8958. bottom: 0.065
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Nano",
  8965. height: math.unit(0.1, "mm")
  8966. },
  8967. {
  8968. name: "Micro-",
  8969. height: math.unit(1, "mm")
  8970. },
  8971. {
  8972. name: "Micro",
  8973. height: math.unit(4, "inches")
  8974. },
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(6 + 4 / 12, "feet"),
  8978. default: true
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(115, "feet")
  8983. },
  8984. {
  8985. name: "Macro+",
  8986. height: math.unit(955, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(8990, "feet")
  8991. },
  8992. {
  8993. name: "Gigmacro",
  8994. height: math.unit(9310, "miles")
  8995. },
  8996. {
  8997. name: "Teramacro",
  8998. height: math.unit(1567005010, "miles")
  8999. },
  9000. {
  9001. name: "Examacro",
  9002. height: math.unit(1425, "parsecs")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(400, "feet"),
  9011. weight: math.unit(44444444, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/major-colonel/front.svg"
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(400, "feet"),
  9019. weight: math.unit(44444444, "lb"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/major-colonel/back.svg"
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(400, "feet"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9036. {
  9037. catFront: {
  9038. height: math.unit(6, "feet"),
  9039. weight: math.unit(120, "lb"),
  9040. name: "Front (Cat Side)",
  9041. image: {
  9042. source: "./media/characters/axel-lycan/cat-front.svg",
  9043. extra: 430 / 402,
  9044. bottom: 43 / 472.35
  9045. }
  9046. },
  9047. catBack: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(120, "lb"),
  9050. name: "Back (Cat Side)",
  9051. image: {
  9052. source: "./media/characters/axel-lycan/cat-back.svg",
  9053. extra: 447 / 419,
  9054. bottom: 23.3 / 469
  9055. }
  9056. },
  9057. wolfFront: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(120, "lb"),
  9060. name: "Front (Wolf Side)",
  9061. image: {
  9062. source: "./media/characters/axel-lycan/wolf-front.svg",
  9063. extra: 485 / 456,
  9064. bottom: 19 / 504
  9065. }
  9066. },
  9067. wolfBack: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(120, "lb"),
  9070. name: "Back (Wolf Side)",
  9071. image: {
  9072. source: "./media/characters/axel-lycan/wolf-back.svg",
  9073. extra: 475 / 438,
  9074. bottom: 39.2 / 514
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Macro",
  9081. height: math.unit(1, "km"),
  9082. default: true
  9083. },
  9084. ]
  9085. ))
  9086. characterMakers.push(() => makeCharacter(
  9087. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9088. {
  9089. front: {
  9090. height: math.unit(5 + 9 / 12, "feet"),
  9091. weight: math.unit(175, "lb"),
  9092. name: "Front",
  9093. image: {
  9094. source: "./media/characters/vanrel-hyena/front.svg",
  9095. extra: 1086 / 1010,
  9096. bottom: 0.04
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(5 + 9 / 12, "feet"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(103, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/abbott-absol/front.svg",
  9117. extra: 2010 / 1842
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Megamicro",
  9124. height: math.unit(0.1, "mm")
  9125. },
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(1, "inch")
  9129. },
  9130. {
  9131. name: "Normal",
  9132. height: math.unit(6, "feet"),
  9133. default: true
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(264, "lb"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/hector/front.svg",
  9146. extra: 2280 / 2130,
  9147. bottom: 0.07
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(12.25, "foot"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(160, "feet")
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(150, "lb"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/sal/front.svg",
  9172. extra: 1846 / 1699,
  9173. bottom: 0.04
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(10, "miles"),
  9181. default: true
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9187. {
  9188. front: {
  9189. height: math.unit(3, "meters"),
  9190. weight: math.unit(450, "kg"),
  9191. name: "front",
  9192. image: {
  9193. source: "./media/characters/ranger/front.svg",
  9194. extra: 2401 / 2243,
  9195. bottom: 0.05
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(3, "meters"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(14, "feet"),
  9212. weight: math.unit(800, "kg"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/theresa/front.svg",
  9216. extra: 3575 / 3346,
  9217. bottom: 0.03
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(14, "feet"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(3, "kg"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/ine/front.svg",
  9238. extra: 678 / 539,
  9239. bottom: 0.023
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Normal",
  9246. height: math.unit(2.265, "feet"),
  9247. default: true
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(5, "feet"),
  9256. weight: math.unit(30, "kg"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/vial/front.svg",
  9260. extra: 1365 / 1277,
  9261. bottom: 0.04
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(5, "feet"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9275. {
  9276. side: {
  9277. height: math.unit(3.4, "meters"),
  9278. weight: math.unit(1000, "lb"),
  9279. name: "Side",
  9280. image: {
  9281. source: "./media/characters/rovoska/side.svg",
  9282. extra: 4403 / 1515
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(3.4, "meters"),
  9290. default: true
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(8, "feet"),
  9299. weight: math.unit(315, "lb"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/gunner-rotthbauer/front.svg"
  9303. }
  9304. },
  9305. back: {
  9306. height: math.unit(8, "feet"),
  9307. weight: math.unit(315, "lb"),
  9308. name: "Back",
  9309. image: {
  9310. source: "./media/characters/gunner-rotthbauer/back.svg"
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(3.5, "inches")
  9318. },
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(8, "feet"),
  9322. default: true
  9323. },
  9324. {
  9325. name: "Macro",
  9326. height: math.unit(250, "feet")
  9327. },
  9328. {
  9329. name: "Megamacro",
  9330. height: math.unit(1, "AU")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(5 + 5 / 12, "feet"),
  9339. weight: math.unit(140, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/allatia/front.svg",
  9343. extra: 1227 / 1180,
  9344. bottom: 0.027
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(5 + 5 / 12, "feet")
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(250, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Megamacro",
  9360. height: math.unit(8, "miles")
  9361. }
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(120, "lb"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/tene/front.svg",
  9373. extra: 1728 / 1578,
  9374. bottom: 0.022
  9375. }
  9376. },
  9377. stomping: {
  9378. height: math.unit(2.025, "meters"),
  9379. weight: math.unit(120, "lb"),
  9380. name: "Stomping",
  9381. image: {
  9382. source: "./media/characters/tene/stomping.svg",
  9383. extra: 938 / 873,
  9384. bottom: 0.01
  9385. }
  9386. },
  9387. sitting: {
  9388. height: math.unit(1, "meter"),
  9389. weight: math.unit(120, "lb"),
  9390. name: "Sitting",
  9391. image: {
  9392. source: "./media/characters/tene/sitting.svg",
  9393. extra: 437 / 415,
  9394. bottom: 0.1
  9395. }
  9396. },
  9397. feral: {
  9398. height: math.unit(3.9, "feet"),
  9399. weight: math.unit(250, "lb"),
  9400. name: "Feral",
  9401. image: {
  9402. source: "./media/characters/tene/feral.svg",
  9403. extra: 717 / 458,
  9404. bottom: 0.179
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(6, "feet")
  9412. },
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(300, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(5, "miles")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9426. {
  9427. side: {
  9428. height: math.unit(6, "feet"),
  9429. name: "Side",
  9430. image: {
  9431. source: "./media/characters/evander/side.svg",
  9432. extra: 877 / 477
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(0.83, "meters"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9446. {
  9447. front: {
  9448. height: math.unit(12, "feet"),
  9449. weight: math.unit(1000, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9453. extra: 1762 / 1611
  9454. }
  9455. },
  9456. back: {
  9457. height: math.unit(12, "feet"),
  9458. weight: math.unit(1000, "lb"),
  9459. name: "Back",
  9460. image: {
  9461. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9462. extra: 1762 / 1611
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(12, "feet"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Kaiju",
  9474. height: math.unit(150, "feet")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/zero-alurus/front.svg"
  9487. }
  9488. },
  9489. back: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(150, "lb"),
  9492. name: "Back",
  9493. image: {
  9494. source: "./media/characters/zero-alurus/back.svg"
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(5 + 10 / 12, "feet")
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(60, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Macro+",
  9510. height: math.unit(450, "feet")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(200, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/mega-shi/front.svg",
  9523. extra: 1279 / 1250,
  9524. bottom: 0.02
  9525. }
  9526. },
  9527. back: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(200, "lb"),
  9530. name: "Back",
  9531. image: {
  9532. source: "./media/characters/mega-shi/back.svg",
  9533. extra: 1279 / 1250,
  9534. bottom: 0.02
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(16 + 6 / 12, "feet")
  9542. },
  9543. {
  9544. name: "Third Dimension",
  9545. height: math.unit(40, "meters")
  9546. },
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(660, "feet"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(10, "miles")
  9555. },
  9556. {
  9557. name: "Planetary Launch",
  9558. height: math.unit(500, "miles")
  9559. },
  9560. {
  9561. name: "Interstellar",
  9562. height: math.unit(1e9, "miles")
  9563. },
  9564. {
  9565. name: "Leaving the Universe",
  9566. height: math.unit(1, "gigaparsec")
  9567. },
  9568. {
  9569. name: "Travelling Universes",
  9570. height: math.unit(30e15, "parsecs")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(6, "feet"),
  9579. weight: math.unit(150, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/odyssey/front.svg",
  9583. extra: 1782 / 1582,
  9584. bottom: 0.01
  9585. }
  9586. },
  9587. side: {
  9588. height: math.unit(5.7, "feet"),
  9589. weight: math.unit(140, "lb"),
  9590. name: "Side",
  9591. image: {
  9592. source: "./media/characters/odyssey/side.svg",
  9593. extra: 6462 / 5700
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(5 + 4 / 12, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(1, "km")
  9605. },
  9606. {
  9607. name: "Megamacro",
  9608. height: math.unit(3000, "km")
  9609. },
  9610. {
  9611. name: "Gigamacro",
  9612. height: math.unit(1, "AU"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Omniversal",
  9617. height: math.unit(100e14, "lightyears")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(300, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/mekuto/front.svg",
  9630. extra: 921 / 832,
  9631. bottom: 0.03
  9632. }
  9633. },
  9634. hand: {
  9635. height: math.unit(6 / 10.24, "feet"),
  9636. name: "Hand",
  9637. image: {
  9638. source: "./media/characters/mekuto/hand.svg"
  9639. }
  9640. },
  9641. foot: {
  9642. height: math.unit(6 / 5.05, "feet"),
  9643. name: "Foot",
  9644. image: {
  9645. source: "./media/characters/mekuto/foot.svg"
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Minimicro",
  9652. height: math.unit(0.2, "inches")
  9653. },
  9654. {
  9655. name: "Micro",
  9656. height: math.unit(1.5, "inches")
  9657. },
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(5 + 11 / 12, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Minimacro",
  9665. height: math.unit(17 + 9 / 12, "feet")
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(177.5, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(152, "miles")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(6.5, "inches"),
  9682. weight: math.unit(13, "oz"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/dafydd-tomos/front.svg",
  9686. extra: 2990 / 2603,
  9687. bottom: 0.03
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Micro",
  9694. height: math.unit(6.5, "inches"),
  9695. default: true
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(6, "feet"),
  9704. weight: math.unit(150, "lb"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/splinter/front.svg",
  9708. extra: 2990 / 2882,
  9709. bottom: 0.04
  9710. }
  9711. },
  9712. back: {
  9713. height: math.unit(6, "feet"),
  9714. weight: math.unit(150, "lb"),
  9715. name: "Back",
  9716. image: {
  9717. source: "./media/characters/splinter/back.svg",
  9718. extra: 2990 / 2882,
  9719. bottom: 0.04
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(6, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(230, "meters"),
  9731. default: true
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(4 + 10 / 12, "feet"),
  9740. weight: math.unit(480, "lb"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/snow-gabumon/front.svg",
  9744. extra: 1140 / 963,
  9745. bottom: 0.058
  9746. }
  9747. },
  9748. back: {
  9749. height: math.unit(4 + 10 / 12, "feet"),
  9750. weight: math.unit(480, "lb"),
  9751. name: "Back",
  9752. image: {
  9753. source: "./media/characters/snow-gabumon/back.svg",
  9754. extra: 1115 / 962,
  9755. bottom: 0.041
  9756. }
  9757. },
  9758. frontUndresed: {
  9759. height: math.unit(4 + 10 / 12, "feet"),
  9760. weight: math.unit(480, "lb"),
  9761. name: "Front (Undressed)",
  9762. image: {
  9763. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9764. extra: 1061 / 960,
  9765. bottom: 0.045
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Micro",
  9772. height: math.unit(1, "inch")
  9773. },
  9774. {
  9775. name: "Normal",
  9776. height: math.unit(4 + 10 / 12, "feet"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(200, "feet")
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(120, "miles")
  9786. },
  9787. {
  9788. name: "Gigamacro",
  9789. height: math.unit(9800, "miles")
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9795. {
  9796. front: {
  9797. height: math.unit(1.7, "meters"),
  9798. weight: math.unit(140, "lb"),
  9799. name: "Front",
  9800. image: {
  9801. source: "./media/characters/moody/front.svg",
  9802. extra: 3226 / 3007,
  9803. bottom: 0.087
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Micro",
  9810. height: math.unit(1, "mm")
  9811. },
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(1.7, "meters"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(80, "meters")
  9820. },
  9821. {
  9822. name: "Macro+",
  9823. height: math.unit(500, "meters")
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(150, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/zyas/front.svg",
  9836. extra: 1180 / 1120,
  9837. bottom: 0.045
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Normal",
  9844. height: math.unit(10, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Macro",
  9849. height: math.unit(500, "feet")
  9850. },
  9851. {
  9852. name: "Megamacro",
  9853. height: math.unit(5, "miles")
  9854. },
  9855. {
  9856. name: "Teramacro",
  9857. height: math.unit(150000, "miles")
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9863. {
  9864. front: {
  9865. height: math.unit(6, "feet"),
  9866. weight: math.unit(150, "lb"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/cuon/front.svg",
  9870. extra: 1390 / 1320,
  9871. bottom: 0.008
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Micro",
  9878. height: math.unit(3, "inches")
  9879. },
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(18 + 9 / 12, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Macro",
  9887. height: math.unit(360, "feet")
  9888. },
  9889. {
  9890. name: "Megamacro",
  9891. height: math.unit(360, "miles")
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(2.4, "meters"),
  9900. weight: math.unit(70, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/nyanuxk/front.svg",
  9904. extra: 1172 / 1084,
  9905. bottom: 0.065
  9906. }
  9907. },
  9908. side: {
  9909. height: math.unit(2.4, "meters"),
  9910. weight: math.unit(70, "kg"),
  9911. name: "Side",
  9912. image: {
  9913. source: "./media/characters/nyanuxk/side.svg",
  9914. extra: 1190 / 1132,
  9915. bottom: 0.007
  9916. }
  9917. },
  9918. back: {
  9919. height: math.unit(2.4, "meters"),
  9920. weight: math.unit(70, "kg"),
  9921. name: "Back",
  9922. image: {
  9923. source: "./media/characters/nyanuxk/back.svg",
  9924. extra: 1200 / 1141,
  9925. bottom: 0.015
  9926. }
  9927. },
  9928. foot: {
  9929. height: math.unit(0.52, "meters"),
  9930. name: "Foot",
  9931. image: {
  9932. source: "./media/characters/nyanuxk/foot.svg"
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(2, "cm")
  9940. },
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(2.4, "meters"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Smaller Macro",
  9948. height: math.unit(120, "meters")
  9949. },
  9950. {
  9951. name: "Bigger Macro",
  9952. height: math.unit(1.2, "km")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(15, "kilometers")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(2000, "km")
  9961. },
  9962. {
  9963. name: "Teramacro",
  9964. height: math.unit(500000, "km")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9970. {
  9971. side: {
  9972. height: math.unit(6, "feet"),
  9973. name: "Side",
  9974. image: {
  9975. source: "./media/characters/ailbhe/side.svg",
  9976. extra: 757 / 464,
  9977. bottom: 0.041
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Normal",
  9984. height: math.unit(1.07, "meters"),
  9985. default: true
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(120, "kg"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/zevulfius/front.svg",
  9998. extra: 965 / 903
  9999. }
  10000. },
  10001. side: {
  10002. height: math.unit(6, "feet"),
  10003. weight: math.unit(120, "kg"),
  10004. name: "Side",
  10005. image: {
  10006. source: "./media/characters/zevulfius/side.svg",
  10007. extra: 939 / 900
  10008. }
  10009. },
  10010. back: {
  10011. height: math.unit(6, "feet"),
  10012. weight: math.unit(120, "kg"),
  10013. name: "Back",
  10014. image: {
  10015. source: "./media/characters/zevulfius/back.svg",
  10016. extra: 918 / 854,
  10017. bottom: 0.005
  10018. }
  10019. },
  10020. foot: {
  10021. height: math.unit(6 / 3.72, "feet"),
  10022. name: "Foot",
  10023. image: {
  10024. source: "./media/characters/zevulfius/foot.svg"
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(750, "meters")
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(20, "km"),
  10036. default: true
  10037. },
  10038. {
  10039. name: "Gigamacro",
  10040. height: math.unit(2000, "km")
  10041. },
  10042. {
  10043. name: "Teramacro",
  10044. height: math.unit(250000, "km")
  10045. },
  10046. ]
  10047. ))
  10048. characterMakers.push(() => makeCharacter(
  10049. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10050. {
  10051. front: {
  10052. height: math.unit(100, "feet"),
  10053. weight: math.unit(350, "kg"),
  10054. name: "Front",
  10055. image: {
  10056. source: "./media/characters/rikes/front.svg",
  10057. extra: 1565 / 1483,
  10058. bottom: 0.017
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(100, "feet"),
  10066. default: true
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10072. {
  10073. anthro: {
  10074. height: math.unit(8, "feet"),
  10075. weight: math.unit(120, "kg"),
  10076. name: "Anthro",
  10077. image: {
  10078. source: "./media/characters/adam-silver-mane/anthro.svg",
  10079. extra: 5743 / 5339,
  10080. bottom: 0.07
  10081. }
  10082. },
  10083. taur: {
  10084. height: math.unit(16, "feet"),
  10085. weight: math.unit(1500, "kg"),
  10086. name: "Taur",
  10087. image: {
  10088. source: "./media/characters/adam-silver-mane/taur.svg",
  10089. extra: 1713 / 1571,
  10090. bottom: 0.01
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(8, "feet")
  10098. },
  10099. {
  10100. name: "Minimacro",
  10101. height: math.unit(80, "feet")
  10102. },
  10103. {
  10104. name: "Macro",
  10105. height: math.unit(800, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Megamacro",
  10110. height: math.unit(8000, "feet")
  10111. },
  10112. {
  10113. name: "Gigamacro",
  10114. height: math.unit(800, "miles")
  10115. },
  10116. {
  10117. name: "Teramacro",
  10118. height: math.unit(80000, "miles")
  10119. },
  10120. {
  10121. name: "Celestial",
  10122. height: math.unit(8e6, "miles")
  10123. },
  10124. {
  10125. name: "Star Dragon",
  10126. height: math.unit(800000, "parsecs")
  10127. },
  10128. {
  10129. name: "Godly",
  10130. height: math.unit(800, "teraparsecs")
  10131. },
  10132. ]
  10133. ))
  10134. characterMakers.push(() => makeCharacter(
  10135. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10136. {
  10137. front: {
  10138. height: math.unit(6, "feet"),
  10139. weight: math.unit(150, "lb"),
  10140. name: "Front",
  10141. image: {
  10142. source: "./media/characters/ky'owin/front.svg",
  10143. extra: 3888 / 3068,
  10144. bottom: 0.015
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(6 + 8 / 12, "feet")
  10152. },
  10153. {
  10154. name: "Large",
  10155. height: math.unit(68, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(132, "feet")
  10160. },
  10161. {
  10162. name: "Macro+",
  10163. height: math.unit(340, "feet")
  10164. },
  10165. {
  10166. name: "Macro++",
  10167. height: math.unit(680, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(1, "mile")
  10173. },
  10174. {
  10175. name: "Megamacro+",
  10176. height: math.unit(10, "miles")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(4, "feet"),
  10185. weight: math.unit(50, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/mal/front.svg",
  10189. extra: 785 / 724,
  10190. bottom: 0.07
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Micro",
  10197. height: math.unit(4, "inches")
  10198. },
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(4, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(200, "feet")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/jordan-deware/front.svg",
  10219. extra: 1191 / 1012
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Nano",
  10226. height: math.unit(0.01, "mm")
  10227. },
  10228. {
  10229. name: "Minimicro",
  10230. height: math.unit(1, "mm")
  10231. },
  10232. {
  10233. name: "Micro",
  10234. height: math.unit(0.5, "inches")
  10235. },
  10236. {
  10237. name: "Normal",
  10238. height: math.unit(4, "feet"),
  10239. default: true
  10240. },
  10241. {
  10242. name: "Minimacro",
  10243. height: math.unit(40, "meters")
  10244. },
  10245. {
  10246. name: "Small Macro",
  10247. height: math.unit(400, "meters")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(4, "miles")
  10252. },
  10253. {
  10254. name: "Megamacro",
  10255. height: math.unit(40, "miles")
  10256. },
  10257. {
  10258. name: "Megamacro+",
  10259. height: math.unit(400, "miles")
  10260. },
  10261. {
  10262. name: "Gigamacro",
  10263. height: math.unit(400000, "miles")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10269. {
  10270. side: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(150, "lb"),
  10273. name: "Side",
  10274. image: {
  10275. source: "./media/characters/kimiko/side.svg",
  10276. extra: 600 / 358
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(15, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(220, "feet")
  10289. },
  10290. {
  10291. name: "Macro+",
  10292. height: math.unit(1450, "feet")
  10293. },
  10294. {
  10295. name: "Megamacro",
  10296. height: math.unit(11500, "feet")
  10297. },
  10298. {
  10299. name: "Gigamacro",
  10300. height: math.unit(9500, "miles")
  10301. },
  10302. {
  10303. name: "Teramacro",
  10304. height: math.unit(2208005005, "miles")
  10305. },
  10306. {
  10307. name: "Examacro",
  10308. height: math.unit(2750, "parsecs")
  10309. },
  10310. {
  10311. name: "Zettamacro",
  10312. height: math.unit(101500, "parsecs")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(70, "kg"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/andrew-sleepy/front.svg"
  10325. }
  10326. },
  10327. side: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(70, "kg"),
  10330. name: "Side",
  10331. image: {
  10332. source: "./media/characters/andrew-sleepy/side.svg"
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Micro",
  10339. height: math.unit(1, "mm"),
  10340. default: true
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(150, "lb"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/judio/front.svg",
  10353. extra: 1258 / 1110
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(5 + 6 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(1000, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Megamacro",
  10369. height: math.unit(10, "miles")
  10370. },
  10371. ]
  10372. ))
  10373. characterMakers.push(() => makeCharacter(
  10374. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10375. {
  10376. front: {
  10377. height: math.unit(6, "feet"),
  10378. weight: math.unit(68, "kg"),
  10379. name: "Front",
  10380. image: {
  10381. source: "./media/characters/nomaxice/front.svg",
  10382. extra: 1498 / 1073,
  10383. bottom: 0.075
  10384. }
  10385. },
  10386. foot: {
  10387. height: math.unit(1.1, "feet"),
  10388. name: "Foot",
  10389. image: {
  10390. source: "./media/characters/nomaxice/foot.svg"
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(8, "cm")
  10398. },
  10399. {
  10400. name: "Norm",
  10401. height: math.unit(1.82, "m")
  10402. },
  10403. {
  10404. name: "Norm+",
  10405. height: math.unit(8.8, "feet")
  10406. },
  10407. {
  10408. name: "Big",
  10409. height: math.unit(8, "meters"),
  10410. default: true
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(18, "meters")
  10415. },
  10416. {
  10417. name: "Macro+",
  10418. height: math.unit(88, "meters")
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(12, "feet"),
  10427. weight: math.unit(1.5, "tons"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/dydros/front.svg",
  10431. extra: 863 / 800,
  10432. bottom: 0.015
  10433. }
  10434. },
  10435. back: {
  10436. height: math.unit(12, "feet"),
  10437. weight: math.unit(1.5, "tons"),
  10438. name: "Back",
  10439. image: {
  10440. source: "./media/characters/dydros/back.svg",
  10441. extra: 900 / 843,
  10442. bottom: 0.005
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(12, "feet"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(100, "kg"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/riggi/front.svg",
  10463. extra: 5787 / 5303
  10464. }
  10465. },
  10466. hyper: {
  10467. height: math.unit(6 * 5 / 3, "feet"),
  10468. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10469. name: "Hyper",
  10470. image: {
  10471. source: "./media/characters/riggi/hyper.svg",
  10472. extra: 3595 / 3485
  10473. }
  10474. },
  10475. },
  10476. [
  10477. {
  10478. name: "Small Macro",
  10479. height: math.unit(50, "feet")
  10480. },
  10481. {
  10482. name: "Default",
  10483. height: math.unit(200, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Loom",
  10488. height: math.unit(10000, "feet")
  10489. },
  10490. {
  10491. name: "Cruising Altitude",
  10492. height: math.unit(30000, "feet")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(100, "miles")
  10497. },
  10498. {
  10499. name: "Continent Sized",
  10500. height: math.unit(2800, "miles")
  10501. },
  10502. {
  10503. name: "Earth Sized",
  10504. height: math.unit(8000, "miles")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(250, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/alexi/front.svg",
  10517. extra: 3483 / 3291,
  10518. bottom: 0.04
  10519. }
  10520. },
  10521. back: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(250, "lb"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/alexi/back.svg",
  10527. extra: 3533 / 3356,
  10528. bottom: 0.021
  10529. }
  10530. },
  10531. frontTransforming: {
  10532. height: math.unit(8.58, "feet"),
  10533. weight: math.unit(1300, "lb"),
  10534. name: "Transforming",
  10535. image: {
  10536. source: "./media/characters/alexi/front-transforming.svg",
  10537. extra: 437 / 409,
  10538. bottom: 19 / 458.66
  10539. }
  10540. },
  10541. frontTransformed: {
  10542. height: math.unit(12.5, "feet"),
  10543. weight: math.unit(4000, "lb"),
  10544. name: "Transformed",
  10545. image: {
  10546. source: "./media/characters/alexi/front-transformed.svg",
  10547. extra: 639 / 614,
  10548. bottom: 30.55 / 671
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(14, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Minimacro",
  10560. height: math.unit(30, "meters")
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(500, "meters")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(9000, "km")
  10569. },
  10570. {
  10571. name: "Teramacro",
  10572. height: math.unit(384000, "km")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(150, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/kayroo/front.svg",
  10585. extra: 1153 / 1038,
  10586. bottom: 0.06
  10587. }
  10588. },
  10589. foot: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(150, "lb"),
  10592. name: "Foot",
  10593. image: {
  10594. source: "./media/characters/kayroo/foot.svg"
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(8, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Minimacro",
  10606. height: math.unit(250, "feet")
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(2800, "feet")
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(5200, "feet")
  10615. },
  10616. {
  10617. name: "Gigamacro",
  10618. height: math.unit(27000, "feet")
  10619. },
  10620. {
  10621. name: "Omega",
  10622. height: math.unit(45000, "feet")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(18, "feet"),
  10631. weight: math.unit(5800, "lb"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/rhys/front.svg",
  10635. extra: 3386 / 3090,
  10636. bottom: 0.07
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(18, "feet"),
  10644. default: true
  10645. },
  10646. {
  10647. name: "Working Size",
  10648. height: math.unit(200, "feet")
  10649. },
  10650. {
  10651. name: "Demolition Size",
  10652. height: math.unit(2000, "feet")
  10653. },
  10654. {
  10655. name: "Maximum Licensed Size",
  10656. height: math.unit(5, "miles")
  10657. },
  10658. {
  10659. name: "Maximum Observed Size",
  10660. height: math.unit(10, "yottameters")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(250, "lb"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/toto/front.svg",
  10673. extra: 527 / 479,
  10674. bottom: 0.05
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Micro",
  10681. height: math.unit(3, "feet")
  10682. },
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(10, "feet")
  10686. },
  10687. {
  10688. name: "Macro",
  10689. height: math.unit(150, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Megamacro",
  10694. height: math.unit(1200, "feet")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "King", species: ["lion"], tags: ["anthro"] },
  10700. {
  10701. back: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Back",
  10705. image: {
  10706. source: "./media/characters/king/back.svg"
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(2, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(8, "feet")
  10718. },
  10719. {
  10720. name: "Macro",
  10721. height: math.unit(200, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(50, "miles")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10732. {
  10733. anthro: {
  10734. height: math.unit(6 + 5 / 12, "feet"),
  10735. weight: math.unit(280, "lb"),
  10736. name: "Anthro",
  10737. image: {
  10738. source: "./media/characters/cordite/anthro.svg",
  10739. extra: 1986 / 1905,
  10740. bottom: 0.025
  10741. }
  10742. },
  10743. feral: {
  10744. height: math.unit(2, "feet"),
  10745. weight: math.unit(90, "lb"),
  10746. name: "Feral",
  10747. image: {
  10748. source: "./media/characters/cordite/feral.svg",
  10749. extra: 1260 / 755,
  10750. bottom: 0.05
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(6 + 5 / 12, "feet"),
  10758. default: true
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(6, "feet"),
  10767. weight: math.unit(150, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/pianostrong/front.svg",
  10771. extra: 6577 / 6254,
  10772. bottom: 0.02
  10773. }
  10774. },
  10775. side: {
  10776. height: math.unit(6, "feet"),
  10777. weight: math.unit(150, "lb"),
  10778. name: "Side",
  10779. image: {
  10780. source: "./media/characters/pianostrong/side.svg",
  10781. extra: 6106 / 5730
  10782. }
  10783. },
  10784. back: {
  10785. height: math.unit(6, "feet"),
  10786. weight: math.unit(150, "lb"),
  10787. name: "Back",
  10788. image: {
  10789. source: "./media/characters/pianostrong/back.svg",
  10790. extra: 6085 / 5733,
  10791. bottom: 0.01
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(100, "feet")
  10799. },
  10800. {
  10801. name: "Macro+",
  10802. height: math.unit(300, "feet"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Macro++",
  10807. height: math.unit(1000, "feet")
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10813. {
  10814. front: {
  10815. height: math.unit(6, "feet"),
  10816. weight: math.unit(150, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/kona/front.svg",
  10820. extra: 2960 / 2629,
  10821. bottom: 0.005
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Normal",
  10828. height: math.unit(11 + 8 / 12, "feet")
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(850, "feet"),
  10833. default: true
  10834. },
  10835. {
  10836. name: "Macro+",
  10837. height: math.unit(1.5, "km"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(80, "miles")
  10843. },
  10844. {
  10845. name: "Gigamacro",
  10846. height: math.unit(3500, "miles")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10852. {
  10853. side: {
  10854. height: math.unit(1.9, "meters"),
  10855. weight: math.unit(326, "kg"),
  10856. name: "Side",
  10857. image: {
  10858. source: "./media/characters/levi/side.svg",
  10859. extra: 1704 / 1334,
  10860. bottom: 0.02
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(1.9, "meters"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(20, "meters")
  10873. },
  10874. {
  10875. name: "Macro+",
  10876. height: math.unit(200, "meters")
  10877. },
  10878. {
  10879. name: "Megamacro",
  10880. height: math.unit(2, "km")
  10881. },
  10882. {
  10883. name: "Megamacro+",
  10884. height: math.unit(20, "km")
  10885. },
  10886. {
  10887. name: "Gigamacro",
  10888. height: math.unit(2500, "km")
  10889. },
  10890. {
  10891. name: "Gigamacro+",
  10892. height: math.unit(120000, "km")
  10893. },
  10894. {
  10895. name: "Teramacro",
  10896. height: math.unit(7.77e6, "km")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(6 + 4 / 12, "feet"),
  10905. weight: math.unit(188, "lb"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/bmc/front.svg",
  10909. extra: 1067 / 1022,
  10910. bottom: 0.047
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Human-sized",
  10917. height: math.unit(6 + 4 / 12, "feet")
  10918. },
  10919. {
  10920. name: "Small",
  10921. height: math.unit(250, "feet")
  10922. },
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(1250, "feet"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Good Day",
  10930. height: math.unit(88, "miles")
  10931. },
  10932. {
  10933. name: "Largest Measured Size",
  10934. height: math.unit(11.2e6, "lightyears")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(20, "feet"),
  10943. weight: math.unit(2016, "kg"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/sven-the-kaiju/front.svg",
  10947. extra: 1479 / 1449,
  10948. bottom: 0.05
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Fairy",
  10955. height: math.unit(6, "inches")
  10956. },
  10957. {
  10958. name: "Normal",
  10959. height: math.unit(20, "feet"),
  10960. default: true
  10961. },
  10962. {
  10963. name: "Rampage",
  10964. height: math.unit(200, "feet")
  10965. },
  10966. {
  10967. name: "Archfey Forest Guardian",
  10968. height: math.unit(1, "mile")
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10974. {
  10975. front: {
  10976. height: math.unit(4, "meters"),
  10977. weight: math.unit(2, "tons"),
  10978. name: "Front",
  10979. image: {
  10980. source: "./media/characters/marik/front.svg",
  10981. extra: 1057 / 1003,
  10982. bottom: 0.08
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(4, "meters"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Macro",
  10994. height: math.unit(20, "meters")
  10995. },
  10996. {
  10997. name: "Megamacro",
  10998. height: math.unit(50, "km")
  10999. },
  11000. {
  11001. name: "Gigamacro",
  11002. height: math.unit(100, "km")
  11003. },
  11004. {
  11005. name: "Alpha Macro",
  11006. height: math.unit(7.88e7, "yottameters")
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(110, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/mel/front.svg",
  11019. extra: 736 / 617,
  11020. bottom: 0.017
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Pico",
  11027. height: math.unit(3, "pm")
  11028. },
  11029. {
  11030. name: "Nano",
  11031. height: math.unit(3, "nm")
  11032. },
  11033. {
  11034. name: "Micro",
  11035. height: math.unit(0.3, "mm"),
  11036. default: true
  11037. },
  11038. {
  11039. name: "Micro+",
  11040. height: math.unit(3, "mm")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(5 + 10.5 / 12, "feet")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11050. {
  11051. kaiju: {
  11052. height: math.unit(1.75, "meters"),
  11053. weight: math.unit(55, "kg"),
  11054. name: "Kaiju",
  11055. image: {
  11056. source: "./media/characters/lykonous/kaiju.svg",
  11057. extra: 1055 / 946,
  11058. bottom: 0.135
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(2.5, "meters"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Kaiju Dragon",
  11070. height: math.unit(60, "meters")
  11071. },
  11072. {
  11073. name: "Mega Kaiju",
  11074. height: math.unit(120, "km")
  11075. },
  11076. {
  11077. name: "Giga Kaiju",
  11078. height: math.unit(200, "megameters")
  11079. },
  11080. {
  11081. name: "Terra Kaiju",
  11082. height: math.unit(400, "gigameters")
  11083. },
  11084. {
  11085. name: "Kaiju Dragon God",
  11086. height: math.unit(13000, "exaparsecs")
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11092. {
  11093. front: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Front",
  11097. image: {
  11098. source: "./media/characters/blü/front.svg",
  11099. extra: 1883 / 1564,
  11100. bottom: 0.031
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(13, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Big Boi",
  11112. height: math.unit(150, "meters")
  11113. },
  11114. {
  11115. name: "Mini Stomper",
  11116. height: math.unit(300, "meters")
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(1000, "meters")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(11000, "meters")
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(11000, "km")
  11129. },
  11130. {
  11131. name: "Teramacro",
  11132. height: math.unit(420000, "km")
  11133. },
  11134. {
  11135. name: "Examacro",
  11136. height: math.unit(120, "parsecs")
  11137. },
  11138. {
  11139. name: "God Tho",
  11140. height: math.unit(98000000000, "parsecs")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11146. {
  11147. taurFront: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(200, "lb"),
  11150. name: "Taur (Front)",
  11151. image: {
  11152. source: "./media/characters/scales/taur-front.svg",
  11153. extra: 1,
  11154. bottom: 0.05
  11155. }
  11156. },
  11157. taurBack: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(200, "lb"),
  11160. name: "Taur (Back)",
  11161. image: {
  11162. source: "./media/characters/scales/taur-back.svg",
  11163. extra: 1,
  11164. bottom: 0.08
  11165. }
  11166. },
  11167. anthro: {
  11168. height: math.unit(6 * 7 / 12, "feet"),
  11169. weight: math.unit(100, "lb"),
  11170. name: "Anthro",
  11171. image: {
  11172. source: "./media/characters/scales/anthro.svg",
  11173. extra: 1,
  11174. bottom: 0.06
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(12, "feet"),
  11182. default: true
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/koragos/front.svg",
  11195. extra: 841 / 794,
  11196. bottom: 0.035
  11197. }
  11198. },
  11199. back: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(150, "lb"),
  11202. name: "Back",
  11203. image: {
  11204. source: "./media/characters/koragos/back.svg",
  11205. extra: 841 / 810,
  11206. bottom: 0.022
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(6 + 11 / 12, "feet"),
  11214. default: true
  11215. },
  11216. {
  11217. name: "Macro",
  11218. height: math.unit(490, "feet")
  11219. },
  11220. {
  11221. name: "Megamacro",
  11222. height: math.unit(10, "miles")
  11223. },
  11224. {
  11225. name: "Gigamacro",
  11226. height: math.unit(50, "miles")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(250, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/xylrem/front.svg",
  11239. extra: 3323 / 3050,
  11240. bottom: 0.065
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Micro",
  11247. height: math.unit(4, "feet")
  11248. },
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(16, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Macro",
  11256. height: math.unit(2720, "feet")
  11257. },
  11258. {
  11259. name: "Megamacro",
  11260. height: math.unit(25000, "miles")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(8, "feet"),
  11269. weight: math.unit(250, "kg"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/ikideru/front.svg",
  11273. extra: 930 / 870,
  11274. bottom: 0.087
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(8, "feet"),
  11279. weight: math.unit(250, "kg"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/ikideru/back.svg",
  11283. extra: 919 / 852,
  11284. bottom: 0.055
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Rare",
  11291. height: math.unit(8, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Playful Loom",
  11296. height: math.unit(80, "feet")
  11297. },
  11298. {
  11299. name: "City Leaner",
  11300. height: math.unit(230, "feet")
  11301. },
  11302. {
  11303. name: "Megamacro",
  11304. height: math.unit(2500, "feet")
  11305. },
  11306. {
  11307. name: "Gigamacro",
  11308. height: math.unit(26400, "feet")
  11309. },
  11310. {
  11311. name: "Tectonic Shifter",
  11312. height: math.unit(1.7, "megameters")
  11313. },
  11314. {
  11315. name: "Planet Carer",
  11316. height: math.unit(21, "megameters")
  11317. },
  11318. {
  11319. name: "God",
  11320. height: math.unit(11157.22, "parsecs")
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(120, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/neo/front.svg"
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Micro",
  11339. height: math.unit(2, "inches"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Human Size",
  11344. height: math.unit(5 + 8 / 12, "feet")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(13 + 10 / 12, "feet"),
  11353. weight: math.unit(5320, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/chauncey-chantz/front.svg",
  11357. extra: 1587 / 1435,
  11358. bottom: 0.02
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(13 + 10 / 12, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(45, "feet")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(250, "miles")
  11375. },
  11376. {
  11377. name: "Planetary",
  11378. height: math.unit(10000, "miles")
  11379. },
  11380. {
  11381. name: "Galactic",
  11382. height: math.unit(40000, "parsecs")
  11383. },
  11384. {
  11385. name: "Universal",
  11386. height: math.unit(1, "yottameter")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(150, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/epifox/front.svg",
  11399. extra: 1,
  11400. bottom: 0.075
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Micro",
  11407. height: math.unit(6, "inches")
  11408. },
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(12, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(3810, "feet")
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(500, "miles")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(1.8796, "m"),
  11429. weight: math.unit(230, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/colin-t/front.svg",
  11433. extra: 1272 / 1193,
  11434. bottom: 0.07
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Micro",
  11441. height: math.unit(0.571, "meters")
  11442. },
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(1.8796, "meters"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Tall",
  11450. height: math.unit(4, "meters")
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(67.241, "meters")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(371.856, "meters")
  11459. },
  11460. {
  11461. name: "Planetary",
  11462. height: math.unit(12631.5689, "km")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(1.85, "meters"),
  11471. weight: math.unit(80, "kg"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/matvei/front.svg",
  11475. extra: 614 / 594,
  11476. bottom: 0.01
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(1.85, "meters"),
  11484. default: true
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(5 + 9 / 12, "feet"),
  11493. weight: math.unit(70, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/quincy/front.svg",
  11497. extra: 3041 / 2751
  11498. }
  11499. },
  11500. back: {
  11501. height: math.unit(5 + 9 / 12, "feet"),
  11502. weight: math.unit(70, "lb"),
  11503. name: "Back",
  11504. image: {
  11505. source: "./media/characters/quincy/back.svg",
  11506. extra: 3041 / 2751
  11507. }
  11508. },
  11509. flying: {
  11510. height: math.unit(5 + 4 / 12, "feet"),
  11511. weight: math.unit(70, "lb"),
  11512. name: "Flying",
  11513. image: {
  11514. source: "./media/characters/quincy/flying.svg",
  11515. extra: 1044 / 930
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Micro",
  11522. height: math.unit(3, "cm")
  11523. },
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(5 + 9 / 12, "feet")
  11527. },
  11528. {
  11529. name: "Macro",
  11530. height: math.unit(200, "meters"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Megamacro",
  11535. height: math.unit(1000, "meters")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(4 + 7 / 12, "feet"),
  11544. weight: math.unit(50, "lb"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/vanrel/front.svg",
  11548. extra: 1,
  11549. bottom: 0.02
  11550. }
  11551. },
  11552. frontAlt: {
  11553. height: math.unit(4 + 7 / 12, "feet"),
  11554. weight: math.unit(50, "lb"),
  11555. name: "Front-alt",
  11556. image: {
  11557. source: "./media/characters/vanrel/front-alt.svg",
  11558. extra: 1,
  11559. bottom: 15 / 1511
  11560. }
  11561. },
  11562. elemental: {
  11563. height: math.unit(3, "feet"),
  11564. weight: math.unit(50, "lb"),
  11565. name: "Elemental",
  11566. image: {
  11567. source: "./media/characters/vanrel/elemental.svg",
  11568. extra: 192.3 / 162.8,
  11569. bottom: 1.79 / 194.17
  11570. }
  11571. },
  11572. side: {
  11573. height: math.unit(4 + 7 / 12, "feet"),
  11574. weight: math.unit(50, "lb"),
  11575. name: "Side",
  11576. image: {
  11577. source: "./media/characters/vanrel/side.svg",
  11578. extra: 1,
  11579. bottom: 0.025
  11580. }
  11581. },
  11582. tome: {
  11583. height: math.unit(1.35, "feet"),
  11584. weight: math.unit(10, "lb"),
  11585. name: "Vanrel's Tome",
  11586. rename: true,
  11587. image: {
  11588. source: "./media/characters/vanrel/tome.svg"
  11589. }
  11590. },
  11591. beans: {
  11592. height: math.unit(0.89, "feet"),
  11593. name: "Beans",
  11594. image: {
  11595. source: "./media/characters/vanrel/beans.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(4 + 7 / 12, "feet"),
  11603. default: true
  11604. },
  11605. ]
  11606. ))
  11607. characterMakers.push(() => makeCharacter(
  11608. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11609. {
  11610. front: {
  11611. height: math.unit(7 + 5 / 12, "feet"),
  11612. weight: math.unit(150, "lb"),
  11613. name: "Front",
  11614. image: {
  11615. source: "./media/characters/kuiper-vanrel/front.svg",
  11616. extra: 1118 / 1068,
  11617. bottom: 0.09
  11618. }
  11619. },
  11620. foot: {
  11621. height: math.unit(0.55, "meters"),
  11622. name: "Foot",
  11623. image: {
  11624. source: "./media/characters/kuiper-vanrel/foot.svg",
  11625. }
  11626. },
  11627. battle: {
  11628. height: math.unit(6.824, "feet"),
  11629. weight: math.unit(150, "lb"),
  11630. name: "Battle",
  11631. image: {
  11632. source: "./media/characters/kuiper-vanrel/battle.svg",
  11633. extra: 1466 / 1327,
  11634. bottom: 29 / 1492.5
  11635. }
  11636. },
  11637. battleAlt: {
  11638. height: math.unit(6.824, "feet"),
  11639. weight: math.unit(150, "lb"),
  11640. name: "Battle (Alt)",
  11641. image: {
  11642. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11643. extra: 2081 / 1965,
  11644. bottom: 40 / 2121
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(7 + 5 / 12, "feet"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(8 + 5 / 12, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/keset-vanrel/front.svg",
  11665. extra: 1150 / 1084,
  11666. bottom: 0.05
  11667. }
  11668. },
  11669. hand: {
  11670. height: math.unit(0.6, "meters"),
  11671. name: "Hand",
  11672. image: {
  11673. source: "./media/characters/keset-vanrel/hand.svg"
  11674. }
  11675. },
  11676. foot: {
  11677. height: math.unit(0.94978, "meters"),
  11678. name: "Foot",
  11679. image: {
  11680. source: "./media/characters/keset-vanrel/foot.svg"
  11681. }
  11682. },
  11683. battle: {
  11684. height: math.unit(7.408, "feet"),
  11685. weight: math.unit(150, "lb"),
  11686. name: "Battle",
  11687. image: {
  11688. source: "./media/characters/keset-vanrel/battle.svg",
  11689. extra: 1890 / 1386,
  11690. bottom: 73.28 / 1970
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(8 + 5 / 12, "feet"),
  11698. default: true
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/neos/front.svg",
  11711. extra: 1696 / 992,
  11712. bottom: 0.14
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(54, "cm"),
  11720. default: true
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(100, "m")
  11725. },
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(10, "km")
  11729. },
  11730. {
  11731. name: "Megamacro+",
  11732. height: math.unit(100, "km")
  11733. },
  11734. {
  11735. name: "Gigamacro",
  11736. height: math.unit(100, "Mm")
  11737. },
  11738. {
  11739. name: "Teramacro",
  11740. height: math.unit(100, "Gm")
  11741. },
  11742. {
  11743. name: "Examacro",
  11744. height: math.unit(100, "Em")
  11745. },
  11746. {
  11747. name: "Godly",
  11748. height: math.unit(10000, "Ym")
  11749. },
  11750. {
  11751. name: "Beyond Godly",
  11752. height: math.unit(25, "multiverses")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11758. {
  11759. feminine: {
  11760. height: math.unit(5, "feet"),
  11761. weight: math.unit(100, "lb"),
  11762. name: "Feminine",
  11763. image: {
  11764. source: "./media/characters/sammy-mouse/feminine.svg",
  11765. extra: 2526 / 2425,
  11766. bottom: 0.123
  11767. }
  11768. },
  11769. masculine: {
  11770. height: math.unit(5, "feet"),
  11771. weight: math.unit(100, "lb"),
  11772. name: "Masculine",
  11773. image: {
  11774. source: "./media/characters/sammy-mouse/masculine.svg",
  11775. extra: 2526 / 2425,
  11776. bottom: 0.123
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Micro",
  11783. height: math.unit(5, "inches")
  11784. },
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(5, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Macro",
  11792. height: math.unit(60, "feet")
  11793. },
  11794. ]
  11795. ))
  11796. characterMakers.push(() => makeCharacter(
  11797. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11798. {
  11799. front: {
  11800. height: math.unit(4, "feet"),
  11801. weight: math.unit(50, "lb"),
  11802. name: "Front",
  11803. image: {
  11804. source: "./media/characters/kole/front.svg",
  11805. extra: 1423 / 1303,
  11806. bottom: 0.025
  11807. }
  11808. },
  11809. back: {
  11810. height: math.unit(4, "feet"),
  11811. weight: math.unit(50, "lb"),
  11812. name: "Back",
  11813. image: {
  11814. source: "./media/characters/kole/back.svg",
  11815. extra: 1426 / 1280,
  11816. bottom: 0.02
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(4, "feet"),
  11824. default: true
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(2 + 6 / 12, "feet"),
  11833. weight: math.unit(20, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/rufran/front.svg",
  11837. extra: 2041 / 1839,
  11838. bottom: 0.055
  11839. }
  11840. },
  11841. back: {
  11842. height: math.unit(2 + 6 / 12, "feet"),
  11843. weight: math.unit(20, "lb"),
  11844. name: "Back",
  11845. image: {
  11846. source: "./media/characters/rufran/back.svg",
  11847. extra: 2054 / 1839,
  11848. bottom: 0.01
  11849. }
  11850. },
  11851. hand: {
  11852. height: math.unit(0.2166, "meters"),
  11853. name: "Hand",
  11854. image: {
  11855. source: "./media/characters/rufran/hand.svg"
  11856. }
  11857. },
  11858. foot: {
  11859. height: math.unit(0.185, "meters"),
  11860. name: "Foot",
  11861. image: {
  11862. source: "./media/characters/rufran/foot.svg"
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Micro",
  11869. height: math.unit(1, "inch")
  11870. },
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(2 + 6 / 12, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Big",
  11878. height: math.unit(60, "feet")
  11879. },
  11880. {
  11881. name: "Macro",
  11882. height: math.unit(325, "feet")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(0.3, "meters"),
  11891. weight: math.unit(3.5, "kg"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/chip/front.svg",
  11895. extra: 748 / 674
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Micro",
  11902. height: math.unit(1, "inch"),
  11903. default: true
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11909. {
  11910. side: {
  11911. height: math.unit(2.3, "meters"),
  11912. weight: math.unit(3500, "lb"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/torvid/side.svg",
  11916. extra: 1972 / 722,
  11917. bottom: 0.035
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(2.3, "meters"),
  11925. default: true
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(2, "meters"),
  11934. weight: math.unit(150.5, "kg"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/susan/front.svg",
  11938. extra: 693 / 635,
  11939. bottom: 0.05
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Megamacro",
  11946. height: math.unit(505, "miles"),
  11947. default: true
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(150, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/raindrops/front.svg",
  11960. extra: 2655 / 2461,
  11961. bottom: 49 / 2705
  11962. }
  11963. },
  11964. back: {
  11965. height: math.unit(6, "feet"),
  11966. weight: math.unit(150, "lb"),
  11967. name: "Back",
  11968. image: {
  11969. source: "./media/characters/raindrops/back.svg",
  11970. extra: 2574 / 2400,
  11971. bottom: 65 / 2634
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Micro",
  11978. height: math.unit(6, "inches")
  11979. },
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(6 + 2 / 12, "feet")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(131, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(15, "miles")
  11992. },
  11993. {
  11994. name: "Gigamacro",
  11995. height: math.unit(4000, "miles")
  11996. },
  11997. {
  11998. name: "Teramacro",
  11999. height: math.unit(315000, "miles")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(2.794, "meters"),
  12008. weight: math.unit(325, "kg"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/tezwa/front.svg",
  12012. extra: 2083 / 1906,
  12013. bottom: 0.031
  12014. }
  12015. },
  12016. foot: {
  12017. height: math.unit(0.687, "meters"),
  12018. name: "Foot",
  12019. image: {
  12020. source: "./media/characters/tezwa/foot.svg"
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(9 + 2 / 12, "feet"),
  12028. default: true
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(58, "feet"),
  12037. weight: math.unit(89000, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/typhus/front.svg",
  12041. extra: 816 / 800,
  12042. bottom: 0.065
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Macro",
  12049. height: math.unit(58, "feet"),
  12050. default: true
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(12, "feet"),
  12059. weight: math.unit(6, "tonnes"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/lyra-von-wulf/front.svg",
  12063. extra: 1,
  12064. bottom: 0.10
  12065. }
  12066. },
  12067. frontMecha: {
  12068. height: math.unit(12, "feet"),
  12069. weight: math.unit(12, "tonnes"),
  12070. name: "Front (Mecha)",
  12071. image: {
  12072. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12073. extra: 1,
  12074. bottom: 0.042
  12075. }
  12076. },
  12077. maw: {
  12078. height: math.unit(2.2, "feet"),
  12079. name: "Maw",
  12080. image: {
  12081. source: "./media/characters/lyra-von-wulf/maw.svg"
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(12, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Classic",
  12093. height: math.unit(50, "feet")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(500, "feet")
  12098. },
  12099. {
  12100. name: "Megamacro",
  12101. height: math.unit(1, "mile")
  12102. },
  12103. {
  12104. name: "Gigamacro",
  12105. height: math.unit(400, "miles")
  12106. },
  12107. {
  12108. name: "Teramacro",
  12109. height: math.unit(22000, "miles")
  12110. },
  12111. {
  12112. name: "Solarmacro",
  12113. height: math.unit(8600000, "miles")
  12114. },
  12115. {
  12116. name: "Galactic",
  12117. height: math.unit(1057000, "lightyears")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12123. {
  12124. front: {
  12125. height: math.unit(6 + 10 / 12, "feet"),
  12126. weight: math.unit(150, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/dixon/front.svg",
  12130. extra: 3361 / 3209,
  12131. bottom: 0.01
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(6 + 10 / 12, "feet"),
  12139. default: true
  12140. },
  12141. {
  12142. name: "Big",
  12143. height: math.unit(12, "meters")
  12144. },
  12145. {
  12146. name: "Macro",
  12147. height: math.unit(500, "meters")
  12148. },
  12149. {
  12150. name: "Megamacro",
  12151. height: math.unit(2, "km")
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12157. {
  12158. front: {
  12159. height: math.unit(185, "cm"),
  12160. weight: math.unit(68, "kg"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/kauko/front.svg",
  12164. extra: 1455 / 1421,
  12165. bottom: 0.03
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(185, "cm"),
  12170. weight: math.unit(68, "kg"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/kauko/back.svg",
  12174. extra: 1455 / 1421,
  12175. bottom: 0.004
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(185, "cm"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(150, "kg"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/varg/front.svg",
  12196. extra: 1108 / 1018,
  12197. bottom: 0.0375
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(5, "meters")
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(200, "meters")
  12209. },
  12210. {
  12211. name: "Megamacro",
  12212. height: math.unit(20, "kilometers")
  12213. },
  12214. {
  12215. name: "True Size",
  12216. height: math.unit(211, "km"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Gigamacro",
  12221. height: math.unit(1000, "km")
  12222. },
  12223. {
  12224. name: "Gigamacro+",
  12225. height: math.unit(8000, "km")
  12226. },
  12227. {
  12228. name: "Teramacro",
  12229. height: math.unit(1000000, "km")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(7 + 7 / 12, "feet"),
  12238. weight: math.unit(267, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/dayza/front.svg",
  12242. extra: 1262 / 1200,
  12243. bottom: 0.035
  12244. }
  12245. },
  12246. side: {
  12247. height: math.unit(7 + 7 / 12, "feet"),
  12248. weight: math.unit(267, "lb"),
  12249. name: "Side",
  12250. image: {
  12251. source: "./media/characters/dayza/side.svg",
  12252. extra: 1295 / 1245,
  12253. bottom: 0.05
  12254. }
  12255. },
  12256. back: {
  12257. height: math.unit(7 + 7 / 12, "feet"),
  12258. weight: math.unit(267, "lb"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/dayza/back.svg",
  12262. extra: 1241 / 1170
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(7 + 7 / 12, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(155, "feet")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6 + 5 / 12, "feet"),
  12283. weight: math.unit(160, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/xanthos/front.svg",
  12287. extra: 1,
  12288. bottom: 0.04
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(6 + 5 / 12, "feet"),
  12293. weight: math.unit(160, "lb"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/xanthos/back.svg",
  12297. extra: 1,
  12298. bottom: 0.03
  12299. }
  12300. },
  12301. hand: {
  12302. height: math.unit(0.928, "feet"),
  12303. name: "Hand",
  12304. image: {
  12305. source: "./media/characters/xanthos/hand.svg"
  12306. }
  12307. },
  12308. foot: {
  12309. height: math.unit(1.286, "feet"),
  12310. name: "Foot",
  12311. image: {
  12312. source: "./media/characters/xanthos/foot.svg"
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(6 + 5 / 12, "feet"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Normal+",
  12324. height: math.unit(6, "meters")
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(40, "feet")
  12329. },
  12330. {
  12331. name: "Macro+",
  12332. height: math.unit(200, "meters")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(20, "km")
  12337. },
  12338. {
  12339. name: "Megamacro+",
  12340. height: math.unit(100, "km")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(6 + 3 / 12, "feet"),
  12349. weight: math.unit(215, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/grynn/front.svg",
  12353. extra: 4627 / 4209,
  12354. bottom: 0.047
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(6, "inches")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(6 + 3 / 12, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Big",
  12370. height: math.unit(104, "feet")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(944, "feet")
  12375. },
  12376. {
  12377. name: "Macro+",
  12378. height: math.unit(9480, "feet")
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(78752, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro+",
  12386. height: math.unit(630128, "feet")
  12387. },
  12388. {
  12389. name: "Megamacro++",
  12390. height: math.unit(3150695, "feet")
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(7 + 5 / 12, "feet"),
  12399. weight: math.unit(450, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/mocha-aura/front.svg",
  12403. extra: 1907 / 1817,
  12404. bottom: 0.04
  12405. }
  12406. },
  12407. back: {
  12408. height: math.unit(7 + 5 / 12, "feet"),
  12409. weight: math.unit(450, "lb"),
  12410. name: "Back",
  12411. image: {
  12412. source: "./media/characters/mocha-aura/back.svg",
  12413. extra: 1900 / 1825,
  12414. bottom: 0.045
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Nano",
  12421. height: math.unit(1, "nm")
  12422. },
  12423. {
  12424. name: "Megamicro",
  12425. height: math.unit(1, "mm")
  12426. },
  12427. {
  12428. name: "Micro",
  12429. height: math.unit(3, "inches")
  12430. },
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(7 + 5 / 12, "feet"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(30, "feet")
  12439. },
  12440. {
  12441. name: "Megamacro",
  12442. height: math.unit(3500, "feet")
  12443. },
  12444. {
  12445. name: "Teramacro",
  12446. height: math.unit(500000, "miles")
  12447. },
  12448. {
  12449. name: "Petamacro",
  12450. height: math.unit(50000000000000000, "parsecs")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/ilisha-devya/front.svg",
  12463. extra: 1,
  12464. bottom: 0.175
  12465. }
  12466. },
  12467. back: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/ilisha-devya/back.svg",
  12473. extra: 1,
  12474. bottom: 0.015
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(500, "feet"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Megamacro",
  12486. height: math.unit(10, "miles")
  12487. },
  12488. {
  12489. name: "Gigamacro",
  12490. height: math.unit(100000, "miles")
  12491. },
  12492. {
  12493. name: "Examacro",
  12494. height: math.unit(1e9, "lightyears")
  12495. },
  12496. {
  12497. name: "Omniversal",
  12498. height: math.unit(1e33, "lightyears")
  12499. },
  12500. {
  12501. name: "Beyond Infinite",
  12502. height: math.unit(1e100, "lightyears")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12508. {
  12509. Side: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(150, "lb"),
  12512. name: "Side",
  12513. image: {
  12514. source: "./media/characters/mira/side.svg",
  12515. extra: 900 / 799,
  12516. bottom: 0.02
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Human Size",
  12523. height: math.unit(6, "feet")
  12524. },
  12525. {
  12526. name: "Macro",
  12527. height: math.unit(100, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Megamacro",
  12532. height: math.unit(10, "miles")
  12533. },
  12534. {
  12535. name: "Gigamacro",
  12536. height: math.unit(25000, "miles")
  12537. },
  12538. {
  12539. name: "Teramacro",
  12540. height: math.unit(300, "AU")
  12541. },
  12542. {
  12543. name: "Full Size",
  12544. height: math.unit(4.5e10, "lightyears")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/holly/front.svg",
  12557. extra: 639 / 606
  12558. }
  12559. },
  12560. back: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(150, "lb"),
  12563. name: "Back",
  12564. image: {
  12565. source: "./media/characters/holly/back.svg",
  12566. extra: 623 / 598
  12567. }
  12568. },
  12569. frontWorking: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(150, "lb"),
  12572. name: "Front (Working)",
  12573. image: {
  12574. source: "./media/characters/holly/front-working.svg",
  12575. extra: 607 / 577,
  12576. bottom: 0.048
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(12 + 3 / 12, "feet"),
  12584. default: true
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12590. {
  12591. front: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Front",
  12595. image: {
  12596. source: "./media/characters/porter/front.svg",
  12597. extra: 1,
  12598. bottom: 0.01
  12599. }
  12600. },
  12601. frontRobes: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(150, "lb"),
  12604. name: "Front (Robes)",
  12605. image: {
  12606. source: "./media/characters/porter/front-robes.svg",
  12607. extra: 1.01,
  12608. bottom: 0.01
  12609. }
  12610. },
  12611. },
  12612. [
  12613. {
  12614. name: "Normal",
  12615. height: math.unit(11 + 9 / 12, "feet"),
  12616. default: true
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12622. {
  12623. legendary: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(150, "lb"),
  12626. name: "Legendary",
  12627. image: {
  12628. source: "./media/characters/lucy/legendary.svg",
  12629. extra: 1355 / 1100,
  12630. bottom: 0.045
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Legendary",
  12637. height: math.unit(86882 * 2, "miles"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/drusilla/front.svg",
  12651. extra: 678 / 635,
  12652. bottom: 0.03
  12653. }
  12654. },
  12655. back: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Back",
  12659. image: {
  12660. source: "./media/characters/drusilla/back.svg",
  12661. extra: 678 / 635,
  12662. bottom: 0.005
  12663. }
  12664. },
  12665. },
  12666. [
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(100, "feet")
  12670. },
  12671. {
  12672. name: "Canon Height",
  12673. height: math.unit(2000, "feet"),
  12674. default: true
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(180, "lb"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/renard-thatch/front.svg",
  12687. extra: 2411 / 2275,
  12688. bottom: 0.01
  12689. }
  12690. },
  12691. frontPosing: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(180, "lb"),
  12694. name: "Front (Posing)",
  12695. image: {
  12696. source: "./media/characters/renard-thatch/front-posing.svg",
  12697. extra: 2381 / 2261,
  12698. bottom: 0.01
  12699. }
  12700. },
  12701. back: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(180, "lb"),
  12704. name: "Back",
  12705. image: {
  12706. source: "./media/characters/renard-thatch/back.svg",
  12707. extra: 2428 / 2288
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Micro",
  12714. height: math.unit(3, "inches")
  12715. },
  12716. {
  12717. name: "Default",
  12718. height: math.unit(6, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Macro",
  12723. height: math.unit(75, "feet")
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(1450, "feet"),
  12732. weight: math.unit(1.21e6, "tons"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/sekvra/front.svg",
  12736. extra: 1,
  12737. bottom: 0.03
  12738. }
  12739. },
  12740. frontClothed: {
  12741. height: math.unit(1450, "feet"),
  12742. weight: math.unit(1.21e6, "tons"),
  12743. name: "Front (Clothed)",
  12744. image: {
  12745. source: "./media/characters/sekvra/front-clothed.svg",
  12746. extra: 1,
  12747. bottom: 0.03
  12748. }
  12749. },
  12750. side: {
  12751. height: math.unit(1450, "feet"),
  12752. weight: math.unit(1.21e6, "tons"),
  12753. name: "Side",
  12754. image: {
  12755. source: "./media/characters/sekvra/side.svg",
  12756. extra: 1,
  12757. bottom: 0.025
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(1450, "feet"),
  12762. weight: math.unit(1.21e6, "tons"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/sekvra/back.svg",
  12766. extra: 1,
  12767. bottom: 0.005
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Macro",
  12774. height: math.unit(1450, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Megamacro",
  12779. height: math.unit(15000, "feet")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/carmine/front.svg",
  12792. extra: 1,
  12793. bottom: 0.035
  12794. }
  12795. },
  12796. frontArmor: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Front (Armor)",
  12800. image: {
  12801. source: "./media/characters/carmine/front-armor.svg",
  12802. extra: 1,
  12803. bottom: 0.035
  12804. }
  12805. },
  12806. },
  12807. [
  12808. {
  12809. name: "Large",
  12810. height: math.unit(1, "mile")
  12811. },
  12812. {
  12813. name: "Huge",
  12814. height: math.unit(40, "miles"),
  12815. default: true
  12816. },
  12817. {
  12818. name: "Colossal",
  12819. height: math.unit(2500, "miles")
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(150, "lb"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/elyssia/front.svg",
  12832. extra: 2201 / 2035,
  12833. bottom: 0.05
  12834. }
  12835. },
  12836. frontClothed: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front (Clothed)",
  12840. image: {
  12841. source: "./media/characters/elyssia/front-clothed.svg",
  12842. extra: 2201 / 2035,
  12843. bottom: 0.05
  12844. }
  12845. },
  12846. back: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "lb"),
  12849. name: "Back",
  12850. image: {
  12851. source: "./media/characters/elyssia/back.svg",
  12852. extra: 2201 / 2035,
  12853. bottom: 0.013
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Smaller",
  12860. height: math.unit(150, "feet")
  12861. },
  12862. {
  12863. name: "Standard",
  12864. height: math.unit(1400, "feet"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Distracted",
  12869. height: math.unit(15000, "feet")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(7 + 4 / 12, "feet"),
  12878. weight: math.unit(500, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/geno-maxwell/front.svg",
  12882. extra: 2207 / 2040,
  12883. bottom: 0.015
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Micro",
  12890. height: math.unit(3, "inches")
  12891. },
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(7 + 4 / 12, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(220, "feet")
  12900. },
  12901. {
  12902. name: "Megamacro",
  12903. height: math.unit(11, "miles")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(7 + 4 / 12, "feet"),
  12912. weight: math.unit(500, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/regena-maxwell/front.svg",
  12916. extra: 3115 / 2770,
  12917. bottom: 0.02
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(7 + 4 / 12, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(220, "feet")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(11, "miles")
  12934. },
  12935. ]
  12936. ))
  12937. characterMakers.push(() => makeCharacter(
  12938. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12939. {
  12940. front: {
  12941. height: math.unit(6, "feet"),
  12942. weight: math.unit(150, "lb"),
  12943. name: "Front",
  12944. image: {
  12945. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12946. extra: 860 / 690,
  12947. bottom: 0.03
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(1.7, "meters"),
  12955. default: true
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/quilly/front.svg",
  12968. extra: 890 / 776
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Gigamacro",
  12975. height: math.unit(404090, "miles"),
  12976. default: true
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(7 + 8 / 12, "feet"),
  12985. weight: math.unit(350, "lb"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/tempest/front.svg",
  12989. extra: 1175 / 1086,
  12990. bottom: 0.02
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(7 + 8 / 12, "feet"),
  12998. default: true
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13004. {
  13005. side: {
  13006. height: math.unit(4 + 5 / 12, "feet"),
  13007. weight: math.unit(80, "lb"),
  13008. name: "Side",
  13009. image: {
  13010. source: "./media/characters/rodger/side.svg",
  13011. extra: 1235 / 1118
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Micro",
  13018. height: math.unit(1, "inch")
  13019. },
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(4 + 5 / 12, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Macro",
  13027. height: math.unit(120, "feet")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(150, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/danyel/front.svg",
  13040. extra: 1185 / 1123,
  13041. bottom: 0.05
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Shrunken",
  13048. height: math.unit(0.5, "mm")
  13049. },
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(1, "mm"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Upsized",
  13057. height: math.unit(5 + 5 / 12, "feet")
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13063. {
  13064. front: {
  13065. height: math.unit(5 + 6 / 12, "feet"),
  13066. weight: math.unit(200, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/vivian-bijoux/front.svg",
  13070. extra: 1,
  13071. bottom: 0.072
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(5 + 6 / 12, "feet"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Bad Dream",
  13083. height: math.unit(500, "feet")
  13084. },
  13085. {
  13086. name: "Nightmare",
  13087. height: math.unit(500, "miles")
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(6 + 1 / 12, "feet"),
  13096. weight: math.unit(260, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/zeta/front.svg",
  13100. extra: 1968 / 1889,
  13101. bottom: 0.06
  13102. }
  13103. },
  13104. back: {
  13105. height: math.unit(6 + 1 / 12, "feet"),
  13106. weight: math.unit(260, "lb"),
  13107. name: "Back",
  13108. image: {
  13109. source: "./media/characters/zeta/back.svg",
  13110. extra: 1944 / 1858,
  13111. bottom: 0.03
  13112. }
  13113. },
  13114. hand: {
  13115. height: math.unit(1.112, "feet"),
  13116. name: "Hand",
  13117. image: {
  13118. source: "./media/characters/zeta/hand.svg"
  13119. }
  13120. },
  13121. foot: {
  13122. height: math.unit(1.48, "feet"),
  13123. name: "Foot",
  13124. image: {
  13125. source: "./media/characters/zeta/foot.svg"
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Micro",
  13132. height: math.unit(6, "inches")
  13133. },
  13134. {
  13135. name: "Normal",
  13136. height: math.unit(6 + 1 / 12, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Macro",
  13141. height: math.unit(20, "feet")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/jamie-larsen/front.svg",
  13154. extra: 962 / 933,
  13155. bottom: 0.02
  13156. }
  13157. },
  13158. back: {
  13159. height: math.unit(6, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Back",
  13162. image: {
  13163. source: "./media/characters/jamie-larsen/back.svg",
  13164. extra: 997 / 946
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(28 + 7 / 12, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Macro+",
  13176. height: math.unit(180, "feet")
  13177. },
  13178. {
  13179. name: "Megamacro",
  13180. height: math.unit(10, "miles")
  13181. },
  13182. {
  13183. name: "Gigamacro",
  13184. height: math.unit(200000, "miles")
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(120, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/vance/front.svg",
  13197. extra: 1980 / 1890,
  13198. bottom: 0.09
  13199. }
  13200. },
  13201. back: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(120, "lb"),
  13204. name: "Back",
  13205. image: {
  13206. source: "./media/characters/vance/back.svg",
  13207. extra: 2081 / 1994,
  13208. bottom: 0.014
  13209. }
  13210. },
  13211. hand: {
  13212. height: math.unit(0.88, "feet"),
  13213. name: "Hand",
  13214. image: {
  13215. source: "./media/characters/vance/hand.svg"
  13216. }
  13217. },
  13218. foot: {
  13219. height: math.unit(0.64, "feet"),
  13220. name: "Foot",
  13221. image: {
  13222. source: "./media/characters/vance/foot.svg"
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Small",
  13229. height: math.unit(90, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Macro",
  13234. height: math.unit(100, "meters")
  13235. },
  13236. {
  13237. name: "Megamacro",
  13238. height: math.unit(15, "miles")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(180, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/xochitl/front.svg",
  13251. extra: 2297 / 2261,
  13252. bottom: 0.065
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(180, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/xochitl/back.svg",
  13261. extra: 2386 / 2354,
  13262. bottom: 0.01
  13263. }
  13264. },
  13265. foot: {
  13266. height: math.unit(6 / 5 * 1.15, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Foot",
  13269. image: {
  13270. source: "./media/characters/xochitl/foot.svg"
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(80, "feet")
  13278. },
  13279. {
  13280. name: "Macro+",
  13281. height: math.unit(400, "feet"),
  13282. default: true
  13283. },
  13284. {
  13285. name: "Gigamacro",
  13286. height: math.unit(80000, "miles")
  13287. },
  13288. {
  13289. name: "Gigamacro+",
  13290. height: math.unit(400000, "miles")
  13291. },
  13292. {
  13293. name: "Teramacro",
  13294. height: math.unit(300, "AU")
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/vincent/front.svg",
  13307. extra: 1130 / 1080,
  13308. bottom: 0.055
  13309. }
  13310. },
  13311. beak: {
  13312. height: math.unit(6 * 0.1, "feet"),
  13313. name: "Beak",
  13314. image: {
  13315. source: "./media/characters/vincent/beak.svg"
  13316. }
  13317. },
  13318. hand: {
  13319. height: math.unit(6 * 0.85, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Hand",
  13322. image: {
  13323. source: "./media/characters/vincent/hand.svg"
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(6 * 0.19, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Foot",
  13330. image: {
  13331. source: "./media/characters/vincent/foot.svg"
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Base",
  13338. height: math.unit(6 + 5 / 12, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(300, "feet")
  13344. },
  13345. {
  13346. name: "Megamacro",
  13347. height: math.unit(2, "miles")
  13348. },
  13349. {
  13350. name: "Gigamacro",
  13351. height: math.unit(1000, "miles")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(6 + 2 / 12, "feet"),
  13360. weight: math.unit(265, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/jay/front.svg",
  13364. extra: 1510 / 1430,
  13365. bottom: 0.042
  13366. }
  13367. },
  13368. back: {
  13369. height: math.unit(6 + 2 / 12, "feet"),
  13370. weight: math.unit(265, "lb"),
  13371. name: "Back",
  13372. image: {
  13373. source: "./media/characters/jay/back.svg",
  13374. extra: 1510 / 1430,
  13375. bottom: 0.025
  13376. }
  13377. },
  13378. clothed: {
  13379. height: math.unit(6 + 2 / 12, "feet"),
  13380. weight: math.unit(265, "lb"),
  13381. name: "Front (Clothed)",
  13382. image: {
  13383. source: "./media/characters/jay/clothed.svg",
  13384. extra: 744 / 699,
  13385. bottom: 0.043
  13386. }
  13387. },
  13388. head: {
  13389. height: math.unit(1.772, "feet"),
  13390. name: "Head",
  13391. image: {
  13392. source: "./media/characters/jay/head.svg"
  13393. }
  13394. },
  13395. sizeRay: {
  13396. height: math.unit(1.331, "feet"),
  13397. name: "Size Ray",
  13398. image: {
  13399. source: "./media/characters/jay/size-ray.svg"
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Micro",
  13406. height: math.unit(1, "inch")
  13407. },
  13408. {
  13409. name: "Normal",
  13410. height: math.unit(6 + 2 / 12, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(1, "mile")
  13416. },
  13417. {
  13418. name: "Megamacro",
  13419. height: math.unit(100, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(2, "meters"),
  13428. weight: math.unit(500, "kg"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/coatl/front.svg",
  13432. extra: 3948 / 3500,
  13433. bottom: 0.082
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Normal",
  13440. height: math.unit(4, "meters")
  13441. },
  13442. {
  13443. name: "Macro",
  13444. height: math.unit(100, "meters"),
  13445. default: true
  13446. },
  13447. {
  13448. name: "Macro+",
  13449. height: math.unit(300, "meters")
  13450. },
  13451. {
  13452. name: "Megamacro",
  13453. height: math.unit(3, "gigameters")
  13454. },
  13455. {
  13456. name: "Megamacro+",
  13457. height: math.unit(300, "terameters")
  13458. },
  13459. {
  13460. name: "Megamacro++",
  13461. height: math.unit(3, "lightyears")
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(6, "feet"),
  13470. weight: math.unit(50, "kg"),
  13471. name: "front",
  13472. image: {
  13473. source: "./media/characters/shiroryu/front.svg",
  13474. extra: 1990 / 1935
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Mortal Mingling",
  13481. height: math.unit(3, "meters")
  13482. },
  13483. {
  13484. name: "Kaiju-ish",
  13485. height: math.unit(250, "meters")
  13486. },
  13487. {
  13488. name: "Somewhat Godly",
  13489. height: math.unit(400, "km"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Planetary",
  13494. height: math.unit(300, "megameters")
  13495. },
  13496. {
  13497. name: "Galaxy-dwarfing",
  13498. height: math.unit(450, "kiloparsecs")
  13499. },
  13500. {
  13501. name: "Universe Eater",
  13502. height: math.unit(150, "gigaparsecs")
  13503. },
  13504. {
  13505. name: "Almost Immeasurable",
  13506. height: math.unit(1.3e266, "yottaparsecs")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/umeko/front.svg",
  13519. extra: 1,
  13520. bottom: 0.019
  13521. }
  13522. },
  13523. frontArmored: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front (Armored)",
  13527. image: {
  13528. source: "./media/characters/umeko/front-armored.svg",
  13529. extra: 1,
  13530. bottom: 0.021
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Macro",
  13537. height: math.unit(220, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Guardian Dragon",
  13542. height: math.unit(50, "miles")
  13543. },
  13544. {
  13545. name: "Cosmic",
  13546. height: math.unit(800000, "miles")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/cassidy/front.svg",
  13559. extra: 1,
  13560. bottom: 0.043
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Canon Height",
  13567. height: math.unit(120, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Macro+",
  13572. height: math.unit(400, "feet")
  13573. },
  13574. {
  13575. name: "Macro++",
  13576. height: math.unit(4000, "feet")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(3, "miles")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(6, "feet"),
  13589. weight: math.unit(150, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/isaac/front.svg",
  13593. extra: 896 / 815,
  13594. bottom: 0.11
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Human Size",
  13601. height: math.unit(8, "feet"),
  13602. default: true
  13603. },
  13604. {
  13605. name: "Macro",
  13606. height: math.unit(400, "feet")
  13607. },
  13608. {
  13609. name: "Megamacro",
  13610. height: math.unit(50, "miles")
  13611. },
  13612. {
  13613. name: "Canon Height",
  13614. height: math.unit(200, "AU")
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13620. {
  13621. front: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(72, "kg"),
  13624. name: "Front",
  13625. image: {
  13626. source: "./media/characters/sleekit/front.svg",
  13627. extra: 4693 / 4487,
  13628. bottom: 0.012
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Minimum Height",
  13635. height: math.unit(10, "meters")
  13636. },
  13637. {
  13638. name: "Smaller",
  13639. height: math.unit(25, "meters")
  13640. },
  13641. {
  13642. name: "Larger",
  13643. height: math.unit(38, "meters"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Maximum height",
  13648. height: math.unit(100, "meters")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/nillia/front.svg",
  13661. extra: 2195 / 2037,
  13662. bottom: 0.005
  13663. }
  13664. },
  13665. back: {
  13666. height: math.unit(6, "feet"),
  13667. weight: math.unit(150, "lb"),
  13668. name: "Back",
  13669. image: {
  13670. source: "./media/characters/nillia/back.svg",
  13671. extra: 2195 / 2037,
  13672. bottom: 0.005
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Canon Height",
  13679. height: math.unit(489, "feet"),
  13680. default: true
  13681. }
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/mesmyriza/front.svg",
  13693. extra: 2067 / 1784,
  13694. bottom: 0.035
  13695. }
  13696. },
  13697. foot: {
  13698. height: math.unit(6 / (250 / 35), "feet"),
  13699. name: "Foot",
  13700. image: {
  13701. source: "./media/characters/mesmyriza/foot.svg"
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Macro",
  13708. height: math.unit(457, "meters"),
  13709. default: true
  13710. },
  13711. {
  13712. name: "Megamacro",
  13713. height: math.unit(8, "megameters")
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(250, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/saudade/front.svg",
  13726. extra: 1172 / 1139,
  13727. bottom: 0.035
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(3, "inches")
  13735. },
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(6, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(50, "feet")
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(2800, "feet")
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(5 + 4 / 12, "feet"),
  13756. weight: math.unit(100, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/keireer/front.svg",
  13760. extra: 716 / 666,
  13761. bottom: 0.05
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(5 + 4 / 12, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(6, "feet"),
  13778. weight: math.unit(90, "kg"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/mirja/front.svg",
  13782. extra: 1789 / 1683,
  13783. bottom: 0.05
  13784. }
  13785. },
  13786. frontDressed: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(90, "lb"),
  13789. name: "Front (Dressed)",
  13790. image: {
  13791. source: "./media/characters/mirja/front-dressed.svg",
  13792. extra: 1789 / 1683,
  13793. bottom: 0.05
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(90, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/mirja/back.svg",
  13802. extra: 953 / 917,
  13803. bottom: 0.017
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "\"Incognito\"",
  13810. height: math.unit(3, "meters")
  13811. },
  13812. {
  13813. name: "Strolling Size",
  13814. height: math.unit(15, "km")
  13815. },
  13816. {
  13817. name: "Larger Strolling Size",
  13818. height: math.unit(400, "km")
  13819. },
  13820. {
  13821. name: "Preferred Size",
  13822. height: math.unit(5000, "km")
  13823. },
  13824. {
  13825. name: "True Size",
  13826. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(15, "feet"),
  13836. weight: math.unit(880, "kg"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/nightraver/front.svg",
  13840. extra: 2444 / 2160,
  13841. bottom: 0.027
  13842. }
  13843. },
  13844. back: {
  13845. height: math.unit(15, "feet"),
  13846. weight: math.unit(880, "kg"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/nightraver/back.svg",
  13850. extra: 2309 / 2180,
  13851. bottom: 0.005
  13852. }
  13853. },
  13854. sole: {
  13855. height: math.unit(2.878, "feet"),
  13856. name: "Sole",
  13857. image: {
  13858. source: "./media/characters/nightraver/sole.svg"
  13859. }
  13860. },
  13861. foot: {
  13862. height: math.unit(2.285, "feet"),
  13863. name: "Foot",
  13864. image: {
  13865. source: "./media/characters/nightraver/foot.svg"
  13866. }
  13867. },
  13868. maw: {
  13869. height: math.unit(2.67, "feet"),
  13870. name: "Maw",
  13871. image: {
  13872. source: "./media/characters/nightraver/maw.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Micro",
  13879. height: math.unit(1, "cm")
  13880. },
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(15, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Macro",
  13888. height: math.unit(300, "feet")
  13889. },
  13890. {
  13891. name: "Megamacro",
  13892. height: math.unit(300, "miles")
  13893. },
  13894. {
  13895. name: "Gigamacro",
  13896. height: math.unit(10000, "miles")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13902. {
  13903. side: {
  13904. height: math.unit(2, "inches"),
  13905. weight: math.unit(5, "grams"),
  13906. name: "Side",
  13907. image: {
  13908. source: "./media/characters/arc/side.svg"
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Micro",
  13915. height: math.unit(2, "inches"),
  13916. default: true
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(1.1938, "meters"),
  13925. weight: math.unit(54, "kg"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/nebula-shahar/front.svg",
  13929. extra: 1642 / 1436,
  13930. bottom: 0.06
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Megamicro",
  13937. height: math.unit(0.3, "mm")
  13938. },
  13939. {
  13940. name: "Micro",
  13941. height: math.unit(3, "cm")
  13942. },
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(138, "cm"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(30, "m")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(5.24, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/shayla/front.svg",
  13963. extra: 1512 / 1414,
  13964. bottom: 0.01
  13965. }
  13966. },
  13967. back: {
  13968. height: math.unit(5.24, "feet"),
  13969. weight: math.unit(150, "lb"),
  13970. name: "Back",
  13971. image: {
  13972. source: "./media/characters/shayla/back.svg",
  13973. extra: 1512 / 1414
  13974. }
  13975. },
  13976. hand: {
  13977. height: math.unit(0.7781496062992126, "feet"),
  13978. name: "Hand",
  13979. image: {
  13980. source: "./media/characters/shayla/hand.svg"
  13981. }
  13982. },
  13983. foot: {
  13984. height: math.unit(1.4206036745406823, "feet"),
  13985. name: "Foot",
  13986. image: {
  13987. source: "./media/characters/shayla/foot.svg"
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Micro",
  13994. height: math.unit(0.32, "feet")
  13995. },
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(5.24, "feet"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Macro",
  14003. height: math.unit(492.12, "feet")
  14004. },
  14005. {
  14006. name: "Megamacro",
  14007. height: math.unit(186.41, "miles")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(2.2, "m"),
  14016. weight: math.unit(120, "kg"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/pia-jr/front.svg",
  14020. extra: 1000 / 970,
  14021. bottom: 0.035
  14022. }
  14023. },
  14024. hand: {
  14025. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14026. name: "Hand",
  14027. image: {
  14028. source: "./media/characters/pia-jr/hand.svg"
  14029. }
  14030. },
  14031. paw: {
  14032. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14033. name: "Paw",
  14034. image: {
  14035. source: "./media/characters/pia-jr/paw.svg"
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Micro",
  14042. height: math.unit(1.2, "cm")
  14043. },
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(2.2, "m"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(180, "m")
  14052. },
  14053. {
  14054. name: "Megamacro",
  14055. height: math.unit(420, "km")
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(2, "m"),
  14064. weight: math.unit(115, "kg"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/pia-sr/front.svg",
  14068. extra: 760 / 730,
  14069. bottom: 0.015
  14070. }
  14071. },
  14072. back: {
  14073. height: math.unit(2, "m"),
  14074. weight: math.unit(115, "kg"),
  14075. name: "Back",
  14076. image: {
  14077. source: "./media/characters/pia-sr/back.svg",
  14078. extra: 760 / 730,
  14079. bottom: 0.01
  14080. }
  14081. },
  14082. hand: {
  14083. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14084. name: "Hand",
  14085. image: {
  14086. source: "./media/characters/pia-sr/hand.svg"
  14087. }
  14088. },
  14089. foot: {
  14090. height: math.unit(1.83, "feet"),
  14091. name: "Foot",
  14092. image: {
  14093. source: "./media/characters/pia-sr/foot.svg"
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Micro",
  14100. height: math.unit(88, "mm")
  14101. },
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(2, "m"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Macro",
  14109. height: math.unit(200, "m")
  14110. },
  14111. {
  14112. name: "Megamacro",
  14113. height: math.unit(420, "km")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(8 + 2 / 12, "feet"),
  14122. weight: math.unit(300, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/kibibyte/front.svg",
  14126. extra: 2221 / 2098,
  14127. bottom: 0.04
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(8 + 2 / 12, "feet"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Socialable Macro",
  14139. height: math.unit(50, "feet")
  14140. },
  14141. {
  14142. name: "Macro",
  14143. height: math.unit(300, "feet")
  14144. },
  14145. {
  14146. name: "Megamacro",
  14147. height: math.unit(500, "miles")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(6, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/felix/front.svg",
  14160. extra: 762 / 722,
  14161. bottom: 0.02
  14162. }
  14163. },
  14164. frontClothed: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(150, "lb"),
  14167. name: "Front (Clothed)",
  14168. image: {
  14169. source: "./media/characters/felix/front-clothed.svg",
  14170. extra: 762 / 722,
  14171. bottom: 0.02
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(6 + 8 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(2600, "feet")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(450, "miles")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(6 + 1 / 12, "feet"),
  14196. weight: math.unit(250, "lb"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/tobo/front.svg",
  14200. extra: 608 / 586,
  14201. bottom: 0.023
  14202. }
  14203. },
  14204. back: {
  14205. height: math.unit(6 + 1 / 12, "feet"),
  14206. weight: math.unit(250, "lb"),
  14207. name: "Back",
  14208. image: {
  14209. source: "./media/characters/tobo/back.svg",
  14210. extra: 608 / 586
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Nano",
  14217. height: math.unit(2, "nm")
  14218. },
  14219. {
  14220. name: "Megamicro",
  14221. height: math.unit(0.1, "mm")
  14222. },
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(1, "inch"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Human-sized",
  14230. height: math.unit(6 + 1 / 12, "feet")
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(250, "feet")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(75, "miles")
  14239. },
  14240. {
  14241. name: "Texas-sized",
  14242. height: math.unit(750, "miles")
  14243. },
  14244. {
  14245. name: "Teramacro",
  14246. height: math.unit(50000, "miles")
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14252. {
  14253. front: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(269, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/danny-kapowsky/front.svg",
  14259. extra: 766 / 736,
  14260. bottom: 0.044
  14261. }
  14262. },
  14263. back: {
  14264. height: math.unit(6, "feet"),
  14265. weight: math.unit(269, "lb"),
  14266. name: "Back",
  14267. image: {
  14268. source: "./media/characters/danny-kapowsky/back.svg",
  14269. extra: 797 / 760,
  14270. bottom: 0.025
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(150, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro+",
  14282. height: math.unit(200, "feet")
  14283. },
  14284. {
  14285. name: "Macro++",
  14286. height: math.unit(300, "feet")
  14287. },
  14288. {
  14289. name: "Macro+++",
  14290. height: math.unit(400, "feet")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14296. {
  14297. side: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(170, "lb"),
  14300. name: "Side",
  14301. image: {
  14302. source: "./media/characters/finn/side.svg",
  14303. extra: 1953 / 1807,
  14304. bottom: 0.057
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Megamacro",
  14311. height: math.unit(14445, "feet"),
  14312. default: true
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(5 + 6 / 12, "feet"),
  14321. weight: math.unit(125, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/roy/front.svg",
  14325. extra: 1,
  14326. bottom: 0.11
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Micro",
  14333. height: math.unit(3, "inches"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(5 + 6 / 12, "feet")
  14339. },
  14340. {
  14341. name: "Lesser Macro",
  14342. height: math.unit(60, "feet")
  14343. },
  14344. {
  14345. name: "Greater Macro",
  14346. height: math.unit(120, "feet")
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14352. {
  14353. front: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(100, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/aevsivs/front.svg",
  14359. extra: 1,
  14360. bottom: 0.03
  14361. }
  14362. },
  14363. back: {
  14364. height: math.unit(6, "feet"),
  14365. weight: math.unit(100, "lb"),
  14366. name: "Back",
  14367. image: {
  14368. source: "./media/characters/aevsivs/back.svg"
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Micro",
  14375. height: math.unit(2, "inches"),
  14376. default: true
  14377. },
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(5, "feet")
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(5 + 7 / 12, "feet"),
  14389. weight: math.unit(159, "lb"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/hildegard/front.svg",
  14393. extra: 289 / 269,
  14394. bottom: 7.63 / 297.8
  14395. }
  14396. },
  14397. back: {
  14398. height: math.unit(5 + 7 / 12, "feet"),
  14399. weight: math.unit(159, "lb"),
  14400. name: "Back",
  14401. image: {
  14402. source: "./media/characters/hildegard/back.svg",
  14403. extra: 280 / 260,
  14404. bottom: 2.3 / 282
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(5 + 7 / 12, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14418. {
  14419. bernard: {
  14420. height: math.unit(2 + 7 / 12, "feet"),
  14421. weight: math.unit(66, "lb"),
  14422. name: "Bernard",
  14423. rename: true,
  14424. image: {
  14425. source: "./media/characters/bernard-wilder/bernard.svg",
  14426. extra: 192 / 128,
  14427. bottom: 0.05
  14428. }
  14429. },
  14430. wilder: {
  14431. height: math.unit(5 + 8 / 12, "feet"),
  14432. weight: math.unit(143, "lb"),
  14433. name: "Wilder",
  14434. rename: true,
  14435. image: {
  14436. source: "./media/characters/bernard-wilder/wilder.svg",
  14437. extra: 361 / 312,
  14438. bottom: 0.02
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(2 + 7 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14452. {
  14453. anthro: {
  14454. height: math.unit(6 + 1 / 12, "feet"),
  14455. weight: math.unit(155, "lb"),
  14456. name: "Anthro",
  14457. image: {
  14458. source: "./media/characters/hearth/anthro.svg",
  14459. extra: 260 / 250,
  14460. bottom: 0.02
  14461. }
  14462. },
  14463. feral: {
  14464. height: math.unit(3.78, "feet"),
  14465. weight: math.unit(35, "kg"),
  14466. name: "Feral",
  14467. image: {
  14468. source: "./media/characters/hearth/feral.svg",
  14469. extra: 153 / 135,
  14470. bottom: 0.03
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(6 + 1 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(182, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/ingrid/front.svg",
  14491. extra: 294 / 268,
  14492. bottom: 0.027
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(6, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14506. {
  14507. eevee: {
  14508. height: math.unit(2 + 10 / 12, "feet"),
  14509. weight: math.unit(86, "lb"),
  14510. name: "Malgam",
  14511. image: {
  14512. source: "./media/characters/malgam/eevee.svg",
  14513. extra: 218 / 180,
  14514. bottom: 0.2
  14515. }
  14516. },
  14517. sylveon: {
  14518. height: math.unit(4, "feet"),
  14519. weight: math.unit(101, "lb"),
  14520. name: "Future Malgam",
  14521. rename: true,
  14522. image: {
  14523. source: "./media/characters/malgam/sylveon.svg",
  14524. extra: 371 / 325,
  14525. bottom: 0.015
  14526. }
  14527. },
  14528. gigantamax: {
  14529. height: math.unit(50, "feet"),
  14530. name: "Gigantamax Malgam",
  14531. rename: true,
  14532. image: {
  14533. source: "./media/characters/malgam/gigantamax.svg"
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(2 + 10 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(5 + 11 / 12, "feet"),
  14550. weight: math.unit(188, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/fleur/front.svg",
  14554. extra: 309 / 283,
  14555. bottom: 0.007
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(5 + 11 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(5 + 4 / 12, "feet"),
  14572. weight: math.unit(122, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/jude/front.svg",
  14576. extra: 288 / 273,
  14577. bottom: 0.03
  14578. }
  14579. },
  14580. },
  14581. [
  14582. {
  14583. name: "Normal",
  14584. height: math.unit(5 + 4 / 12, "feet"),
  14585. default: true
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(5 + 11 / 12, "feet"),
  14594. weight: math.unit(190, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/seara/front.svg",
  14598. extra: 1,
  14599. bottom: 0.05
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(5 + 11 / 12, "feet"),
  14607. default: true
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(16 + 5 / 12, "feet"),
  14616. weight: math.unit(524, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/caspian/front.svg",
  14620. extra: 1,
  14621. bottom: 0.04
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(16 + 5 / 12, "feet"),
  14629. default: true
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(5 + 7 / 12, "feet"),
  14638. weight: math.unit(170, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/mika/front.svg",
  14642. extra: 1,
  14643. bottom: 0.016
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(5 + 7 / 12, "feet"),
  14651. default: true
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(6 + 2 / 12, "feet"),
  14660. weight: math.unit(268, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/sol/front.svg",
  14664. extra: 247 / 231,
  14665. bottom: 0.05
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(6 + 2 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14679. {
  14680. buizel: {
  14681. height: math.unit(2 + 5 / 12, "feet"),
  14682. weight: math.unit(87, "lb"),
  14683. name: "Buizel",
  14684. image: {
  14685. source: "./media/characters/umiko/buizel.svg",
  14686. extra: 172 / 157,
  14687. bottom: 0.01
  14688. }
  14689. },
  14690. floatzel: {
  14691. height: math.unit(5 + 9 / 12, "feet"),
  14692. weight: math.unit(250, "lb"),
  14693. name: "Floatzel",
  14694. image: {
  14695. source: "./media/characters/umiko/floatzel.svg",
  14696. extra: 262 / 248
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(2 + 5 / 12, "feet"),
  14704. default: true
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(6 + 2 / 12, "feet"),
  14713. weight: math.unit(146, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/iliac/front.svg",
  14717. extra: 389 / 365,
  14718. bottom: 0.035
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(6 + 2 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(170, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/topaz/front.svg",
  14739. extra: 317 / 303,
  14740. bottom: 0.055
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(6, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(5 + 11 / 12, "feet"),
  14757. weight: math.unit(144, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/gabriel/front.svg",
  14761. extra: 285 / 262,
  14762. bottom: 0.004
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(5 + 11 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14776. {
  14777. side: {
  14778. height: math.unit(6 + 5 / 12, "feet"),
  14779. weight: math.unit(300, "lb"),
  14780. name: "Side",
  14781. image: {
  14782. source: "./media/characters/tempest-suicune/side.svg",
  14783. extra: 195 / 154,
  14784. bottom: 0.04
  14785. }
  14786. },
  14787. },
  14788. [
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(6 + 5 / 12, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(7 + 2 / 12, "feet"),
  14801. weight: math.unit(322, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/vulcan/front.svg",
  14805. extra: 154 / 147,
  14806. bottom: 0.04
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(7 + 2 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(5 + 10 / 12, "feet"),
  14823. weight: math.unit(264, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/gault/front.svg",
  14827. extra: 161 / 140,
  14828. bottom: 0.028
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(5 + 10 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/shard/front.svg",
  14849. extra: 273 / 238,
  14850. bottom: 0.02
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(3 + 6 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(5 + 11 / 12, "feet"),
  14867. weight: math.unit(146, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/ashe/front.svg",
  14871. extra: 400 / 373,
  14872. bottom: 0.01
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(5 + 11 / 12, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(5 + 5 / 12, "feet"),
  14889. weight: math.unit(135, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/beatrix/front.svg",
  14893. extra: 392 / 379,
  14894. bottom: 0.01
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(6, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(150, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/ignatius/front.svg",
  14915. extra: 245 / 222,
  14916. bottom: 0.01
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(5 + 5 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6 + 2 / 12, "feet"),
  14933. weight: math.unit(138, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/mei-li/front.svg",
  14937. extra: 237 / 229,
  14938. bottom: 0.03
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(6 + 2 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(2 + 4 / 12, "feet"),
  14955. weight: math.unit(62, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/puru/front.svg",
  14959. extra: 206 / 149,
  14960. bottom: 0.06
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(2 + 4 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14974. {
  14975. taur: {
  14976. height: math.unit(11, "feet"),
  14977. weight: math.unit(500, "lb"),
  14978. name: "Taur",
  14979. image: {
  14980. source: "./media/characters/kee/taur.svg",
  14981. extra: 1,
  14982. bottom: 0.04
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(11, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14996. {
  14997. anthro: {
  14998. height: math.unit(7, "feet"),
  14999. weight: math.unit(190, "lb"),
  15000. name: "Anthro",
  15001. image: {
  15002. source: "./media/characters/cobalt-dracha/anthro.svg",
  15003. extra: 231 / 225,
  15004. bottom: 0.04
  15005. }
  15006. },
  15007. feral: {
  15008. height: math.unit(9 + 7 / 12, "feet"),
  15009. weight: math.unit(294, "lb"),
  15010. name: "Feral",
  15011. image: {
  15012. source: "./media/characters/cobalt-dracha/feral.svg",
  15013. extra: 692 / 633,
  15014. bottom: 0.05
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(7, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15028. {
  15029. fallen: {
  15030. height: math.unit(11 + 8 / 12, "feet"),
  15031. weight: math.unit(485, "lb"),
  15032. name: "Java (Fallen)",
  15033. rename: true,
  15034. image: {
  15035. source: "./media/characters/java/fallen.svg",
  15036. extra: 226 / 208,
  15037. bottom: 0.005
  15038. }
  15039. },
  15040. godkin: {
  15041. height: math.unit(10 + 6 / 12, "feet"),
  15042. weight: math.unit(328, "lb"),
  15043. name: "Java (Godkin)",
  15044. rename: true,
  15045. image: {
  15046. source: "./media/characters/java/godkin.svg",
  15047. extra: 270 / 262,
  15048. bottom: 0.02
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(11 + 8 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(7 + 8 / 12, "feet"),
  15065. weight: math.unit(320, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/skoll/front.svg",
  15069. extra: 232 / 220,
  15070. bottom: 0.02
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(7 + 8 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(5 + 9 / 12, "feet"),
  15087. weight: math.unit(170, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/purna/front.svg",
  15091. extra: 239 / 229,
  15092. bottom: 0.01
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(5 + 9 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(5 + 9 / 12, "feet"),
  15109. weight: math.unit(142, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/kuva/front.svg",
  15113. extra: 281 / 271,
  15114. bottom: 0.006
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(5 + 9 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(9 + 2 / 12, "feet"),
  15131. weight: math.unit(270, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/embra/anthro.svg",
  15135. extra: 200 / 187,
  15136. bottom: 0.02
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(18 + 8 / 12, "feet"),
  15141. weight: math.unit(576, "lb"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/embra/feral.svg",
  15145. extra: 152 / 137,
  15146. bottom: 0.037
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(9 + 2 / 12, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15160. {
  15161. anthro: {
  15162. height: math.unit(10 + 9 / 12, "feet"),
  15163. weight: math.unit(224, "lb"),
  15164. name: "Anthro",
  15165. image: {
  15166. source: "./media/characters/grottos/anthro.svg",
  15167. extra: 350 / 332,
  15168. bottom: 0.045
  15169. }
  15170. },
  15171. feral: {
  15172. height: math.unit(20 + 7 / 12, "feet"),
  15173. weight: math.unit(629, "lb"),
  15174. name: "Feral",
  15175. image: {
  15176. source: "./media/characters/grottos/feral.svg",
  15177. extra: 207 / 190,
  15178. bottom: 0.05
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(10 + 9 / 12, "feet"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15192. {
  15193. anthro: {
  15194. height: math.unit(9 + 6 / 12, "feet"),
  15195. weight: math.unit(298, "lb"),
  15196. name: "Anthro",
  15197. image: {
  15198. source: "./media/characters/frifna/anthro.svg",
  15199. extra: 282 / 269,
  15200. bottom: 0.015
  15201. }
  15202. },
  15203. feral: {
  15204. height: math.unit(16 + 2 / 12, "feet"),
  15205. weight: math.unit(624, "lb"),
  15206. name: "Feral",
  15207. image: {
  15208. source: "./media/characters/frifna/feral.svg"
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(9 + 6 / 12, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6 + 2 / 12, "feet"),
  15225. weight: math.unit(168, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/elise/front.svg",
  15229. extra: 276 / 271
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Normal",
  15236. height: math.unit(6 + 2 / 12, "feet"),
  15237. default: true
  15238. },
  15239. ]
  15240. ))
  15241. characterMakers.push(() => makeCharacter(
  15242. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15243. {
  15244. front: {
  15245. height: math.unit(5 + 10 / 12, "feet"),
  15246. weight: math.unit(210, "lb"),
  15247. name: "Front",
  15248. image: {
  15249. source: "./media/characters/glade/front.svg",
  15250. extra: 258 / 247,
  15251. bottom: 0.008
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(5 + 10 / 12, "feet"),
  15259. default: true
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(5 + 10 / 12, "feet"),
  15268. weight: math.unit(129, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/rina/front.svg",
  15272. extra: 266 / 255,
  15273. bottom: 0.005
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Normal",
  15280. height: math.unit(5 + 10 / 12, "feet"),
  15281. default: true
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(6 + 1 / 12, "feet"),
  15290. weight: math.unit(192, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/veronica/front.svg",
  15294. extra: 319 / 309,
  15295. bottom: 0.005
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(6 + 1 / 12, "feet"),
  15303. default: true
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15309. {
  15310. front: {
  15311. height: math.unit(9 + 3 / 12, "feet"),
  15312. weight: math.unit(1100, "lb"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/braxton/front.svg",
  15316. extra: 1057 / 984,
  15317. bottom: 0.05
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(9 + 3 / 12, "feet")
  15325. },
  15326. {
  15327. name: "Giant",
  15328. height: math.unit(300, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(700, "feet")
  15334. },
  15335. {
  15336. name: "Megamacro",
  15337. height: math.unit(6000, "feet")
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(6 + 7 / 12, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/blue-feyonics/front.svg",
  15350. extra: 1403 / 1306,
  15351. bottom: 0.047
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(6 + 7 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(1.8, "meters"),
  15368. weight: math.unit(60, "kg"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/maxwell/front.svg",
  15372. extra: 2060 / 1873
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Micro",
  15379. height: math.unit(1, "mm")
  15380. },
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(1.8, "meter"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Macro",
  15388. height: math.unit(30, "meters")
  15389. },
  15390. {
  15391. name: "Megamacro",
  15392. height: math.unit(10, "km")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/jack/front.svg",
  15405. extra: 1754 / 1640,
  15406. bottom: 0.01
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(80000, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Max size",
  15418. height: math.unit(10, "lightyears")
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15424. {
  15425. upright: {
  15426. height: math.unit(7, "feet"),
  15427. weight: math.unit(170, "lb"),
  15428. name: "Upright",
  15429. image: {
  15430. source: "./media/characters/cafat/upright.svg",
  15431. bottom: 0.01
  15432. }
  15433. },
  15434. uprightFull: {
  15435. height: math.unit(7, "feet"),
  15436. weight: math.unit(170, "lb"),
  15437. name: "Upright (Full)",
  15438. image: {
  15439. source: "./media/characters/cafat/upright-full.svg",
  15440. bottom: 0.01
  15441. }
  15442. },
  15443. side: {
  15444. height: math.unit(5, "feet"),
  15445. weight: math.unit(150, "lb"),
  15446. name: "Side",
  15447. image: {
  15448. source: "./media/characters/cafat/side.svg"
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Small",
  15455. height: math.unit(7, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Large",
  15460. height: math.unit(15.5, "feet")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/verin-raharra/front.svg",
  15473. extra: 5019 / 4835,
  15474. bottom: 0.023
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(7 + 5 / 12, "feet"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Upsized",
  15486. height: math.unit(20, "feet")
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(7, "feet"),
  15495. weight: math.unit(230, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/nakata/front.svg",
  15499. extra: 1.005,
  15500. bottom: 0.01
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(7, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Big",
  15512. height: math.unit(14, "feet")
  15513. },
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(400, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(4.91, "feet"),
  15525. weight: math.unit(100, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/lily/front.svg",
  15529. extra: 1585 / 1415,
  15530. bottom: 0.02
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(4.91, "feet"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15544. {
  15545. laying: {
  15546. height: math.unit(4 + 4 / 12, "feet"),
  15547. weight: math.unit(600, "lb"),
  15548. name: "Laying",
  15549. image: {
  15550. source: "./media/characters/sheila/laying.svg",
  15551. extra: 1333 / 1265,
  15552. bottom: 0.16
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(4 + 4 / 12, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(190, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/sax/front.svg",
  15573. extra: 1187 / 973,
  15574. bottom: 0.042
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Micro",
  15581. height: math.unit(4, "inches"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/pandora/front.svg",
  15595. extra: 2720 / 2556,
  15596. bottom: 0.015
  15597. }
  15598. },
  15599. back: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Back",
  15603. image: {
  15604. source: "./media/characters/pandora/back.svg",
  15605. extra: 2720 / 2556,
  15606. bottom: 0.01
  15607. }
  15608. },
  15609. beans: {
  15610. height: math.unit(6 / 8, "feet"),
  15611. name: "Beans",
  15612. image: {
  15613. source: "./media/characters/pandora/beans.svg"
  15614. }
  15615. },
  15616. skirt: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Skirt",
  15620. image: {
  15621. source: "./media/characters/pandora/skirt.svg",
  15622. extra: 1622 / 1525,
  15623. bottom: 0.015
  15624. }
  15625. },
  15626. hoodie: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(150, "lb"),
  15629. name: "Hoodie",
  15630. image: {
  15631. source: "./media/characters/pandora/hoodie.svg",
  15632. extra: 1622 / 1525,
  15633. bottom: 0.015
  15634. }
  15635. },
  15636. casual: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Casual",
  15640. image: {
  15641. source: "./media/characters/pandora/casual.svg",
  15642. extra: 1622 / 1525,
  15643. bottom: 0.015
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(6, "feet")
  15651. },
  15652. {
  15653. name: "Big Steppy",
  15654. height: math.unit(1, "km"),
  15655. default: true
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15661. {
  15662. side: {
  15663. height: math.unit(10, "feet"),
  15664. weight: math.unit(800, "kg"),
  15665. name: "Side",
  15666. image: {
  15667. source: "./media/characters/venio-darcony/side.svg",
  15668. extra: 1373 / 1003,
  15669. bottom: 0.037
  15670. }
  15671. },
  15672. front: {
  15673. height: math.unit(19, "feet"),
  15674. weight: math.unit(800, "kg"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/front.svg"
  15678. }
  15679. },
  15680. back: {
  15681. height: math.unit(19, "feet"),
  15682. weight: math.unit(800, "kg"),
  15683. name: "Back",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/back.svg"
  15686. }
  15687. },
  15688. sideNsfw: {
  15689. height: math.unit(10, "feet"),
  15690. weight: math.unit(800, "kg"),
  15691. name: "Side (NSFW)",
  15692. image: {
  15693. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15694. extra: 1373 / 1003,
  15695. bottom: 0.037
  15696. }
  15697. },
  15698. frontNsfw: {
  15699. height: math.unit(19, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Front (NSFW)",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15704. }
  15705. },
  15706. backNsfw: {
  15707. height: math.unit(19, "feet"),
  15708. weight: math.unit(800, "kg"),
  15709. name: "Back (NSFW)",
  15710. image: {
  15711. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15712. }
  15713. },
  15714. sideArmored: {
  15715. height: math.unit(10, "feet"),
  15716. weight: math.unit(800, "kg"),
  15717. name: "Side (Armored)",
  15718. image: {
  15719. source: "./media/characters/venio-darcony/side-armored.svg",
  15720. extra: 1373 / 1003,
  15721. bottom: 0.037
  15722. }
  15723. },
  15724. frontArmored: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(900, "kg"),
  15727. name: "Front (Armored)",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/front-armored.svg"
  15730. }
  15731. },
  15732. backArmored: {
  15733. height: math.unit(19, "feet"),
  15734. weight: math.unit(900, "kg"),
  15735. name: "Back (Armored)",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/back-armored.svg"
  15738. }
  15739. },
  15740. sword: {
  15741. height: math.unit(10, "feet"),
  15742. weight: math.unit(50, "lb"),
  15743. name: "Sword",
  15744. image: {
  15745. source: "./media/characters/venio-darcony/sword.svg"
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(10, "feet")
  15753. },
  15754. {
  15755. name: "Macro",
  15756. height: math.unit(130, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Macro+",
  15761. height: math.unit(240, "feet")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(6, "feet"),
  15770. weight: math.unit(150, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/veski/front.svg",
  15774. extra: 1299 / 1225,
  15775. bottom: 0.04
  15776. }
  15777. },
  15778. back: {
  15779. height: math.unit(6, "feet"),
  15780. weight: math.unit(150, "lb"),
  15781. name: "Back",
  15782. image: {
  15783. source: "./media/characters/veski/back.svg",
  15784. extra: 1299 / 1225,
  15785. bottom: 0.008
  15786. }
  15787. },
  15788. maw: {
  15789. height: math.unit(1.5 * 1.21, "feet"),
  15790. name: "Maw",
  15791. image: {
  15792. source: "./media/characters/veski/maw.svg"
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(2, "km"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(5 + 7 / 12, "feet"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/isabelle/front.svg",
  15812. extra: 2130 / 1976,
  15813. bottom: 0.05
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Supermicro",
  15820. height: math.unit(10, "micrometers")
  15821. },
  15822. {
  15823. name: "Micro",
  15824. height: math.unit(1, "inch")
  15825. },
  15826. {
  15827. name: "Tiny",
  15828. height: math.unit(5, "inches")
  15829. },
  15830. {
  15831. name: "Standard",
  15832. height: math.unit(5 + 7 / 12, "inches")
  15833. },
  15834. {
  15835. name: "Macro",
  15836. height: math.unit(80, "meters"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Megamacro",
  15841. height: math.unit(250, "meters")
  15842. },
  15843. {
  15844. name: "Gigamacro",
  15845. height: math.unit(5, "km")
  15846. },
  15847. {
  15848. name: "Cosmic",
  15849. height: math.unit(2.5e6, "miles")
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/hanzo/front.svg",
  15862. extra: 374 / 344,
  15863. bottom: 0.02
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(8, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(7, "feet"),
  15880. weight: math.unit(130, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/anna/front.svg",
  15884. extra: 169 / 145,
  15885. bottom: 0.06
  15886. }
  15887. },
  15888. full: {
  15889. height: math.unit(4.96, "feet"),
  15890. weight: math.unit(220, "lb"),
  15891. name: "Full",
  15892. image: {
  15893. source: "./media/characters/anna/full.svg",
  15894. extra: 138 / 114,
  15895. bottom: 0.15
  15896. }
  15897. },
  15898. tongue: {
  15899. height: math.unit(2.53, "feet"),
  15900. name: "Tongue",
  15901. image: {
  15902. source: "./media/characters/anna/tongue.svg"
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(7, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(7, "feet"),
  15919. weight: math.unit(150, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/ian-corvid/front.svg",
  15923. extra: 150 / 142,
  15924. bottom: 0.02
  15925. }
  15926. },
  15927. back: {
  15928. height: math.unit(7, "feet"),
  15929. weight: math.unit(150, "lb"),
  15930. name: "Back",
  15931. image: {
  15932. source: "./media/characters/ian-corvid/back.svg",
  15933. extra: 150 / 143,
  15934. bottom: 0.01
  15935. }
  15936. },
  15937. stomping: {
  15938. height: math.unit(7, "feet"),
  15939. weight: math.unit(150, "lb"),
  15940. name: "Stomping",
  15941. image: {
  15942. source: "./media/characters/ian-corvid/stomping.svg",
  15943. extra: 76 / 72
  15944. }
  15945. },
  15946. sitting: {
  15947. height: math.unit(7 / 1.8, "feet"),
  15948. weight: math.unit(150, "lb"),
  15949. name: "Sitting",
  15950. image: {
  15951. source: "./media/characters/ian-corvid/sitting.svg",
  15952. extra: 1400 / 1269,
  15953. bottom: 0.15
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Tiny Microw",
  15960. height: math.unit(1, "inch")
  15961. },
  15962. {
  15963. name: "Microw",
  15964. height: math.unit(6, "inches")
  15965. },
  15966. {
  15967. name: "Crow",
  15968. height: math.unit(7 + 1 / 12, "feet"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Macrow",
  15973. height: math.unit(176, "feet")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(5 + 7 / 12, "feet"),
  15982. weight: math.unit(147, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/natalie-kellon/front.svg",
  15986. extra: 1214 / 1141,
  15987. bottom: 0.02
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Micro",
  15994. height: math.unit(1 / 16, "inch")
  15995. },
  15996. {
  15997. name: "Tiny",
  15998. height: math.unit(4, "inches")
  15999. },
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(5 + 7 / 12, "feet"),
  16003. default: true
  16004. },
  16005. {
  16006. name: "Amazon",
  16007. height: math.unit(12, "feet")
  16008. },
  16009. {
  16010. name: "Giantess",
  16011. height: math.unit(160, "meters")
  16012. },
  16013. {
  16014. name: "Titaness",
  16015. height: math.unit(800, "meters")
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(150, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/alluria/front.svg",
  16028. extra: 806 / 738,
  16029. bottom: 0.01
  16030. }
  16031. },
  16032. side: {
  16033. height: math.unit(6, "feet"),
  16034. weight: math.unit(150, "lb"),
  16035. name: "Side",
  16036. image: {
  16037. source: "./media/characters/alluria/side.svg",
  16038. extra: 800 / 750,
  16039. }
  16040. },
  16041. back: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Back",
  16045. image: {
  16046. source: "./media/characters/alluria/back.svg",
  16047. extra: 806 / 738,
  16048. }
  16049. },
  16050. frontMaid: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Front (Maid)",
  16054. image: {
  16055. source: "./media/characters/alluria/front-maid.svg",
  16056. extra: 806 / 738,
  16057. bottom: 0.01
  16058. }
  16059. },
  16060. sideMaid: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Side (Maid)",
  16064. image: {
  16065. source: "./media/characters/alluria/side-maid.svg",
  16066. extra: 800 / 750,
  16067. bottom: 0.005
  16068. }
  16069. },
  16070. backMaid: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Back (Maid)",
  16074. image: {
  16075. source: "./media/characters/alluria/back-maid.svg",
  16076. extra: 806 / 738,
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Micro",
  16083. height: math.unit(6, "inches"),
  16084. default: true
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(6, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/kyle/front.svg",
  16097. extra: 1069 / 962,
  16098. bottom: 77.228 / 1727.45
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Macro",
  16105. height: math.unit(150, "feet"),
  16106. default: true
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(6, "feet"),
  16115. weight: math.unit(300, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/duncan/front.svg",
  16119. extra: 1650 / 1482,
  16120. bottom: 0.05
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Macro",
  16127. height: math.unit(100, "feet"),
  16128. default: true
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(5 + 4 / 12, "feet"),
  16137. weight: math.unit(220, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/memory/front.svg",
  16141. extra: 3641 / 3545,
  16142. bottom: 0.03
  16143. }
  16144. },
  16145. back: {
  16146. height: math.unit(5 + 4 / 12, "feet"),
  16147. weight: math.unit(220, "lb"),
  16148. name: "Back",
  16149. image: {
  16150. source: "./media/characters/memory/back.svg",
  16151. extra: 3641 / 3545,
  16152. bottom: 0.025
  16153. }
  16154. },
  16155. frontSkirt: {
  16156. height: math.unit(5 + 4 / 12, "feet"),
  16157. weight: math.unit(220, "lb"),
  16158. name: "Front (Skirt)",
  16159. image: {
  16160. source: "./media/characters/memory/front-skirt.svg",
  16161. extra: 3641 / 3545,
  16162. bottom: 0.03
  16163. }
  16164. },
  16165. frontDress: {
  16166. height: math.unit(5 + 4 / 12, "feet"),
  16167. weight: math.unit(220, "lb"),
  16168. name: "Front (Dress)",
  16169. image: {
  16170. source: "./media/characters/memory/front-dress.svg",
  16171. extra: 3641 / 3545,
  16172. bottom: 0.03
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Micro",
  16179. height: math.unit(6, "inches"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(5 + 4 / 12, "feet")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(4 + 11 / 12, "feet"),
  16193. weight: math.unit(100, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/luno/front.svg",
  16197. extra: 1535 / 1487,
  16198. bottom: 0.03
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Micro",
  16205. height: math.unit(3, "inches")
  16206. },
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(4 + 11 / 12, "feet"),
  16210. default: true
  16211. },
  16212. {
  16213. name: "Macro",
  16214. height: math.unit(300, "feet")
  16215. },
  16216. {
  16217. name: "Megamacro",
  16218. height: math.unit(700, "miles")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(6 + 2 / 12, "feet"),
  16227. weight: math.unit(170, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/jamesy/front.svg",
  16231. extra: 440 / 382,
  16232. bottom: 0.005
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Micro",
  16239. height: math.unit(3, "inches")
  16240. },
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(6 + 2 / 12, "feet"),
  16244. default: true
  16245. },
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(300, "feet")
  16249. },
  16250. {
  16251. name: "Megamacro",
  16252. height: math.unit(700, "miles")
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6, "feet"),
  16261. weight: math.unit(160, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/mark/front.svg",
  16265. extra: 3300 / 3100,
  16266. bottom: 136.42 / 3440.47
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Macro",
  16273. height: math.unit(120, "meters")
  16274. },
  16275. {
  16276. name: "Bigger Macro",
  16277. height: math.unit(350, "meters")
  16278. },
  16279. {
  16280. name: "Megamacro",
  16281. height: math.unit(8, "km"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Continental",
  16286. height: math.unit(4550, "km")
  16287. },
  16288. {
  16289. name: "Planetary",
  16290. height: math.unit(65000, "km")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(400, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/mac/front.svg",
  16303. extra: 1048 / 987.7,
  16304. bottom: 60 / 1107.6,
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(500, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(5 + 2 / 12, "feet"),
  16321. weight: math.unit(190, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/bari/front.svg",
  16325. extra: 3156 / 2880,
  16326. bottom: 0.03
  16327. }
  16328. },
  16329. back: {
  16330. height: math.unit(5 + 2 / 12, "feet"),
  16331. weight: math.unit(190, "lb"),
  16332. name: "Back",
  16333. image: {
  16334. source: "./media/characters/bari/back.svg",
  16335. extra: 3260 / 2834,
  16336. bottom: 0.025
  16337. }
  16338. },
  16339. frontPlush: {
  16340. height: math.unit(5 + 2 / 12, "feet"),
  16341. weight: math.unit(190, "lb"),
  16342. name: "Front (Plush)",
  16343. image: {
  16344. source: "./media/characters/bari/front-plush.svg",
  16345. extra: 1112 / 1061,
  16346. bottom: 0.002
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Micro",
  16353. height: math.unit(3, "inches")
  16354. },
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(5 + 2 / 12, "feet"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(20, "feet")
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16368. {
  16369. front: {
  16370. height: math.unit(6 + 1 / 12, "feet"),
  16371. weight: math.unit(275, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/hunter-misha-raven/front.svg"
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Mortal",
  16381. height: math.unit(6 + 1 / 12, "feet")
  16382. },
  16383. {
  16384. name: "Divine",
  16385. height: math.unit(1.12134e34, "parsecs"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6 + 3 / 12, "feet"),
  16395. weight: math.unit(220, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/max-calore/front.svg",
  16399. extra: 1700 / 1648,
  16400. bottom: 0.01
  16401. }
  16402. },
  16403. back: {
  16404. height: math.unit(6 + 3 / 12, "feet"),
  16405. weight: math.unit(220, "lb"),
  16406. name: "Back",
  16407. image: {
  16408. source: "./media/characters/max-calore/back.svg",
  16409. extra: 1700 / 1648,
  16410. bottom: 0.01
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(6 + 3 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16424. {
  16425. side: {
  16426. height: math.unit(2 + 8 / 12, "feet"),
  16427. weight: math.unit(99, "lb"),
  16428. name: "Side",
  16429. image: {
  16430. source: "./media/characters/aspen/side.svg",
  16431. extra: 152 / 138,
  16432. bottom: 0.032
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(2 + 8 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16446. {
  16447. side: {
  16448. height: math.unit(3 + 2 / 12, "feet"),
  16449. weight: math.unit(224, "lb"),
  16450. name: "Side",
  16451. image: {
  16452. source: "./media/characters/sheila-feral-wolf/side.svg",
  16453. extra: 179 / 166,
  16454. bottom: 0.03
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(3 + 2 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16468. {
  16469. side: {
  16470. height: math.unit(1 + 9 / 12, "feet"),
  16471. weight: math.unit(38, "lb"),
  16472. name: "Side",
  16473. image: {
  16474. source: "./media/characters/michelle/side.svg",
  16475. extra: 147 / 136.7,
  16476. bottom: 0.03
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(1 + 9 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(1 + 1 / 12, "feet"),
  16493. weight: math.unit(18, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/nino/front.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(1 + 1 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(1, "feet"),
  16513. weight: math.unit(16, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/viola/front.svg"
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(1, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(6 + 5 / 12, "feet"),
  16533. weight: math.unit(580, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/atlas/front.svg",
  16537. extra: 298.5 / 290,
  16538. bottom: 0.015
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(6 + 5 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16552. {
  16553. side: {
  16554. height: math.unit(1 + 10 / 12, "feet"),
  16555. weight: math.unit(25, "lb"),
  16556. name: "Side",
  16557. image: {
  16558. source: "./media/characters/davy/side.svg",
  16559. extra: 200 / 170,
  16560. bottom: 0.01
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(1 + 10 / 12, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16574. {
  16575. side: {
  16576. height: math.unit(4 + 8 / 12, "feet"),
  16577. weight: math.unit(166, "lb"),
  16578. name: "Side",
  16579. image: {
  16580. source: "./media/characters/fiona/side.svg",
  16581. extra: 232 / 220,
  16582. bottom: 0.03
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(4 + 8 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16596. {
  16597. front: {
  16598. height: math.unit(2, "feet"),
  16599. weight: math.unit(62, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/lyla/front.svg",
  16603. bottom: 0.1
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(2, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16617. {
  16618. side: {
  16619. height: math.unit(1.8, "feet"),
  16620. weight: math.unit(44, "lb"),
  16621. name: "Side",
  16622. image: {
  16623. source: "./media/characters/perseus/side.svg",
  16624. bottom: 0.21
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(1.8, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16638. {
  16639. side: {
  16640. height: math.unit(4 + 2 / 12, "feet"),
  16641. weight: math.unit(20, "lb"),
  16642. name: "Side",
  16643. image: {
  16644. source: "./media/characters/remus/side.svg"
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(4 + 2 / 12, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16658. {
  16659. front: {
  16660. height: math.unit(4 + 11 / 12, "feet"),
  16661. weight: math.unit(114, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/raf/front.svg",
  16665. bottom: 20.5 / 1863
  16666. }
  16667. },
  16668. side: {
  16669. height: math.unit(4 + 11 / 12, "feet"),
  16670. weight: math.unit(114, "lb"),
  16671. name: "Side",
  16672. image: {
  16673. source: "./media/characters/raf/side.svg",
  16674. bottom: 22 / 1822
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Micro",
  16681. height: math.unit(2, "inches")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(4 + 11 / 12, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro",
  16690. height: math.unit(70, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(1.5, "meters"),
  16699. weight: math.unit(68, "kg"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/liam-einarr/front.svg",
  16703. extra: 2822 / 2666
  16704. }
  16705. },
  16706. back: {
  16707. height: math.unit(1.5, "meters"),
  16708. weight: math.unit(68, "kg"),
  16709. name: "Back",
  16710. image: {
  16711. source: "./media/characters/liam-einarr/back.svg",
  16712. extra: 2822 / 2666,
  16713. bottom: 0.015
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(1.5, "meters"),
  16721. default: true
  16722. },
  16723. {
  16724. name: "Macro",
  16725. height: math.unit(150, "meters")
  16726. },
  16727. {
  16728. name: "Megamacro",
  16729. height: math.unit(35, "km")
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(6, "feet"),
  16738. weight: math.unit(75, "kg"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/linda/front.svg",
  16742. extra: 930 / 874,
  16743. bottom: 0.004
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(6 + 8 / 12, "feet"),
  16760. weight: math.unit(220, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/caylex/front.svg",
  16764. extra: 821 / 772,
  16765. bottom: 0.07
  16766. }
  16767. },
  16768. back: {
  16769. height: math.unit(6 + 8 / 12, "feet"),
  16770. weight: math.unit(220, "lb"),
  16771. name: "Back",
  16772. image: {
  16773. source: "./media/characters/caylex/back.svg",
  16774. extra: 821 / 772,
  16775. bottom: 0.022
  16776. }
  16777. },
  16778. hand: {
  16779. height: math.unit(1.25, "feet"),
  16780. name: "Hand",
  16781. image: {
  16782. source: "./media/characters/caylex/hand.svg"
  16783. }
  16784. },
  16785. foot: {
  16786. height: math.unit(1.6, "feet"),
  16787. name: "Foot",
  16788. image: {
  16789. source: "./media/characters/caylex/foot.svg"
  16790. }
  16791. },
  16792. armored: {
  16793. height: math.unit(6 + 8 / 12, "feet"),
  16794. weight: math.unit(250, "lb"),
  16795. name: "Armored",
  16796. image: {
  16797. source: "./media/characters/caylex/armored.svg",
  16798. extra: 1420 / 1310,
  16799. bottom: 0.045
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 8 / 12, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Normal+",
  16811. height: math.unit(12, "feet")
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(7 + 6 / 12, "feet"),
  16820. weight: math.unit(288, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/alana/front.svg",
  16824. extra: 679 / 653,
  16825. bottom: 22.5 / 701
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(7 + 6 / 12, "feet")
  16833. },
  16834. {
  16835. name: "Large",
  16836. height: math.unit(50, "feet")
  16837. },
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(100, "feet"),
  16841. default: true
  16842. },
  16843. {
  16844. name: "Macro+",
  16845. height: math.unit(200, "feet")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6 + 1 / 12, "feet"),
  16854. weight: math.unit(210, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/hasani/front.svg",
  16858. extra: 244 / 232,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. back: {
  16863. height: math.unit(6 + 1 / 12, "feet"),
  16864. weight: math.unit(210, "lb"),
  16865. name: "Back",
  16866. image: {
  16867. source: "./media/characters/hasani/back.svg",
  16868. extra: 244 / 232,
  16869. bottom: 0.01
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(6 + 1 / 12, "feet")
  16877. },
  16878. {
  16879. name: "Macro",
  16880. height: math.unit(175, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(1.82, "meters"),
  16890. weight: math.unit(140, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/nita/front.svg",
  16894. extra: 2473 / 2363,
  16895. bottom: 0.01
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(1.82, "m")
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(300, "m")
  16907. },
  16908. {
  16909. name: "Mistake Canon",
  16910. height: math.unit(0.5, "miles"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Big Mistake",
  16915. height: math.unit(13, "miles")
  16916. },
  16917. {
  16918. name: "Playing God",
  16919. height: math.unit(2450, "miles")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(4, "feet"),
  16928. weight: math.unit(120, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/shiriko/front.svg",
  16932. extra: 195 / 188
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(4, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. name: "front",
  16950. image: {
  16951. source: "./media/characters/deja/front.svg",
  16952. extra: 926 / 840,
  16953. bottom: 0.07
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Planck Length",
  16960. height: math.unit(1.6e-35, "meters")
  16961. },
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(30.48, "meters"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Universal",
  16969. height: math.unit(8.8e26, "meters")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16975. {
  16976. side: {
  16977. height: math.unit(8, "feet"),
  16978. weight: math.unit(6300, "lb"),
  16979. name: "Side",
  16980. image: {
  16981. source: "./media/characters/anima/side.svg",
  16982. bottom: 0.035
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(8, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(8, "feet"),
  16999. weight: math.unit(350, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/bianca/front.svg",
  17003. extra: 234 / 225,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(8, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(6, "feet"),
  17021. weight: math.unit(150, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/adinia/front.svg",
  17025. extra: 1845 / 1672,
  17026. bottom: 0.02
  17027. }
  17028. },
  17029. back: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Back",
  17033. image: {
  17034. source: "./media/characters/adinia/back.svg",
  17035. extra: 1845 / 1672,
  17036. bottom: 0.002
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(11 + 5 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(3, "meters"),
  17053. weight: math.unit(200, "kg"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/lykasa/front.svg",
  17057. extra: 1076 / 976,
  17058. bottom: 0.06
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(3, "meters")
  17066. },
  17067. {
  17068. name: "Kaiju",
  17069. height: math.unit(120, "meters"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Mega Kaiju",
  17074. height: math.unit(240, "km")
  17075. },
  17076. {
  17077. name: "Giga Kaiju",
  17078. height: math.unit(400, "megameters")
  17079. },
  17080. {
  17081. name: "Tera Kaiju",
  17082. height: math.unit(800, "gigameters")
  17083. },
  17084. {
  17085. name: "Kaiju Dragon Goddess",
  17086. height: math.unit(26, "zettaparsecs")
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17092. {
  17093. side: {
  17094. height: math.unit(283 / 124 * 6, "feet"),
  17095. weight: math.unit(35000, "lb"),
  17096. name: "Side",
  17097. image: {
  17098. source: "./media/characters/malfaren/side.svg",
  17099. extra: 2500 / 1010,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. front: {
  17104. height: math.unit(22.36, "feet"),
  17105. weight: math.unit(35000, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/malfaren/front.svg",
  17109. extra: 1631 / 1476,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. maw: {
  17114. height: math.unit(6.9, "feet"),
  17115. name: "Maw",
  17116. image: {
  17117. source: "./media/characters/malfaren/maw.svg"
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Big",
  17124. height: math.unit(283 / 162 * 6, "feet"),
  17125. },
  17126. {
  17127. name: "Bigger",
  17128. height: math.unit(283 / 124 * 6, "feet")
  17129. },
  17130. {
  17131. name: "Massive",
  17132. height: math.unit(283 / 92 * 6, "feet"),
  17133. default: true
  17134. },
  17135. {
  17136. name: "👀💦",
  17137. height: math.unit(283 / 73 * 6, "feet"),
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17143. {
  17144. front: {
  17145. height: math.unit(1.7, "m"),
  17146. weight: math.unit(70, "kg"),
  17147. name: "Front",
  17148. image: {
  17149. source: "./media/characters/kernel/front.svg",
  17150. extra: 222 / 210,
  17151. bottom: 0.007
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Nano",
  17158. height: math.unit(17, "micrometers")
  17159. },
  17160. {
  17161. name: "Micro",
  17162. height: math.unit(1.7, "mm")
  17163. },
  17164. {
  17165. name: "Small",
  17166. height: math.unit(1.7, "cm")
  17167. },
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(1.7, "m"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(1.75, "meters"),
  17180. weight: math.unit(65, "kg"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/jayne-folest/front.svg",
  17184. extra: 2115 / 2007,
  17185. bottom: 0.02
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(1.75, "meters"),
  17190. weight: math.unit(65, "kg"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/jayne-folest/back.svg",
  17194. extra: 2115 / 2007,
  17195. bottom: 0.005
  17196. }
  17197. },
  17198. frontClothed: {
  17199. height: math.unit(1.75, "meters"),
  17200. weight: math.unit(65, "kg"),
  17201. name: "Front (Clothed)",
  17202. image: {
  17203. source: "./media/characters/jayne-folest/front-clothed.svg",
  17204. extra: 2115 / 2007,
  17205. bottom: 0.035
  17206. }
  17207. },
  17208. hand: {
  17209. height: math.unit(1 / 1.260, "feet"),
  17210. name: "Hand",
  17211. image: {
  17212. source: "./media/characters/jayne-folest/hand.svg"
  17213. }
  17214. },
  17215. foot: {
  17216. height: math.unit(1 / 0.918, "feet"),
  17217. name: "Foot",
  17218. image: {
  17219. source: "./media/characters/jayne-folest/foot.svg"
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Micro",
  17226. height: math.unit(4, "cm")
  17227. },
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(1.75, "meters")
  17231. },
  17232. {
  17233. name: "Macro",
  17234. height: math.unit(47.5, "meters"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(180, "cm"),
  17244. weight: math.unit(70, "kg"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/algier/front.svg",
  17248. extra: 596 / 572,
  17249. bottom: 0.04
  17250. }
  17251. },
  17252. back: {
  17253. height: math.unit(180, "cm"),
  17254. weight: math.unit(70, "kg"),
  17255. name: "Back",
  17256. image: {
  17257. source: "./media/characters/algier/back.svg",
  17258. extra: 596 / 572,
  17259. bottom: 0.025
  17260. }
  17261. },
  17262. frontdressed: {
  17263. height: math.unit(180, "cm"),
  17264. weight: math.unit(150, "kg"),
  17265. name: "Front-dressed",
  17266. image: {
  17267. source: "./media/characters/algier/front-dressed.svg",
  17268. extra: 596 / 572,
  17269. bottom: 0.038
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Micro",
  17276. height: math.unit(5, "cm")
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(180, "cm"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(64, "m")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17291. {
  17292. upright: {
  17293. height: math.unit(7, "feet"),
  17294. weight: math.unit(300, "lb"),
  17295. name: "Upright",
  17296. image: {
  17297. source: "./media/characters/pretzel/upright.svg",
  17298. extra: 534 / 522,
  17299. bottom: 0.065
  17300. }
  17301. },
  17302. sprawling: {
  17303. height: math.unit(3.75, "feet"),
  17304. weight: math.unit(300, "lb"),
  17305. name: "Sprawling",
  17306. image: {
  17307. source: "./media/characters/pretzel/sprawling.svg",
  17308. extra: 314 / 281,
  17309. bottom: 0.1
  17310. }
  17311. },
  17312. tongue: {
  17313. height: math.unit(2, "feet"),
  17314. name: "Tongue",
  17315. image: {
  17316. source: "./media/characters/pretzel/tongue.svg"
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(7, "feet"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Oversized",
  17328. height: math.unit(15, "feet")
  17329. },
  17330. {
  17331. name: "Huge",
  17332. height: math.unit(30, "feet")
  17333. },
  17334. {
  17335. name: "Macro",
  17336. height: math.unit(250, "feet")
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17342. {
  17343. sideFront: {
  17344. height: math.unit(5 + 2 / 12, "feet"),
  17345. weight: math.unit(120, "lb"),
  17346. name: "Front Side",
  17347. image: {
  17348. source: "./media/characters/roxi/side-front.svg",
  17349. extra: 2924 / 2717,
  17350. bottom: 0.08
  17351. }
  17352. },
  17353. sideBack: {
  17354. height: math.unit(5 + 2 / 12, "feet"),
  17355. weight: math.unit(120, "lb"),
  17356. name: "Back Side",
  17357. image: {
  17358. source: "./media/characters/roxi/side-back.svg",
  17359. extra: 2904 / 2693,
  17360. bottom: 0.06
  17361. }
  17362. },
  17363. front: {
  17364. height: math.unit(5 + 2 / 12, "feet"),
  17365. weight: math.unit(120, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/roxi/front.svg",
  17369. extra: 2028 / 1907,
  17370. bottom: 0.01
  17371. }
  17372. },
  17373. frontAlt: {
  17374. height: math.unit(5 + 2 / 12, "feet"),
  17375. weight: math.unit(120, "lb"),
  17376. name: "Front (Alt)",
  17377. image: {
  17378. source: "./media/characters/roxi/front-alt.svg",
  17379. extra: 1828 / 1798,
  17380. bottom: 0.01
  17381. }
  17382. },
  17383. sitting: {
  17384. height: math.unit(2.8, "feet"),
  17385. weight: math.unit(120, "lb"),
  17386. name: "Sitting",
  17387. image: {
  17388. source: "./media/characters/roxi/sitting.svg",
  17389. extra: 2660 / 2462,
  17390. bottom: 0.1
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(5 + 2 / 12, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17404. {
  17405. side: {
  17406. height: math.unit(55, "feet"),
  17407. weight: math.unit(153, "tons"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/shadow/side.svg",
  17411. extra: 701 / 628,
  17412. bottom: 0.02
  17413. }
  17414. },
  17415. flying: {
  17416. height: math.unit(145, "feet"),
  17417. weight: math.unit(153, "tons"),
  17418. name: "Flying",
  17419. image: {
  17420. source: "./media/characters/shadow/flying.svg"
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(55, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(200, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/marcie/front.svg",
  17441. extra: 960 / 876,
  17442. bottom: 58 / 1017.87
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Macro",
  17449. height: math.unit(1, "mile"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(7, "feet"),
  17459. weight: math.unit(200, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/kachina/front.svg",
  17463. extra: 1290.68 / 1119,
  17464. bottom: 36.5 / 1327.18
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(7, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17478. {
  17479. looking: {
  17480. height: math.unit(2, "meters"),
  17481. weight: math.unit(300, "kg"),
  17482. name: "Looking",
  17483. image: {
  17484. source: "./media/characters/kash/looking.svg",
  17485. extra: 474 / 344,
  17486. bottom: 0.03
  17487. }
  17488. },
  17489. side: {
  17490. height: math.unit(2, "meters"),
  17491. weight: math.unit(300, "kg"),
  17492. name: "Side",
  17493. image: {
  17494. source: "./media/characters/kash/side.svg",
  17495. extra: 302 / 251,
  17496. bottom: 0.03
  17497. }
  17498. },
  17499. front: {
  17500. height: math.unit(2, "meters"),
  17501. weight: math.unit(300, "kg"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/kash/front.svg",
  17505. extra: 495 / 360,
  17506. bottom: 0.015
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(2, "meters"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Big",
  17518. height: math.unit(3, "meters")
  17519. },
  17520. {
  17521. name: "Large",
  17522. height: math.unit(5, "meters")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17528. {
  17529. feeding: {
  17530. height: math.unit(6.7, "feet"),
  17531. weight: math.unit(350, "lb"),
  17532. name: "Feeding",
  17533. image: {
  17534. source: "./media/characters/lalim/feeding.svg",
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(6.7, "feet"),
  17542. default: true
  17543. },
  17544. ]
  17545. ))
  17546. characterMakers.push(() => makeCharacter(
  17547. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17548. {
  17549. front: {
  17550. height: math.unit(9.5, "feet"),
  17551. weight: math.unit(600, "lb"),
  17552. name: "Front",
  17553. image: {
  17554. source: "./media/characters/de'vout/front.svg",
  17555. extra: 1443 / 1328,
  17556. bottom: 0.025
  17557. }
  17558. },
  17559. back: {
  17560. height: math.unit(9.5, "feet"),
  17561. weight: math.unit(600, "lb"),
  17562. name: "Back",
  17563. image: {
  17564. source: "./media/characters/de'vout/back.svg",
  17565. extra: 1443 / 1328
  17566. }
  17567. },
  17568. frontDressed: {
  17569. height: math.unit(9.5, "feet"),
  17570. weight: math.unit(600, "lb"),
  17571. name: "Front (Dressed",
  17572. image: {
  17573. source: "./media/characters/de'vout/front-dressed.svg",
  17574. extra: 1443 / 1328,
  17575. bottom: 0.025
  17576. }
  17577. },
  17578. backDressed: {
  17579. height: math.unit(9.5, "feet"),
  17580. weight: math.unit(600, "lb"),
  17581. name: "Back (Dressed",
  17582. image: {
  17583. source: "./media/characters/de'vout/back-dressed.svg",
  17584. extra: 1443 / 1328
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(9.5, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(8, "feet"),
  17601. weight: math.unit(225, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/talana/front.svg",
  17605. extra: 1410 / 1300,
  17606. bottom: 0.015
  17607. }
  17608. },
  17609. frontDressed: {
  17610. height: math.unit(8, "feet"),
  17611. weight: math.unit(225, "lb"),
  17612. name: "Front (Dressed",
  17613. image: {
  17614. source: "./media/characters/talana/front-dressed.svg",
  17615. extra: 1410 / 1300,
  17616. bottom: 0.015
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(8, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17630. {
  17631. side: {
  17632. height: math.unit(7.2, "feet"),
  17633. weight: math.unit(150, "lb"),
  17634. name: "Side",
  17635. image: {
  17636. source: "./media/characters/xeauvok/side.svg",
  17637. extra: 1975 / 1523,
  17638. bottom: 0.07
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(7.2, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17652. {
  17653. side: {
  17654. height: math.unit(10, "feet"),
  17655. weight: math.unit(900, "kg"),
  17656. name: "Side",
  17657. image: {
  17658. source: "./media/characters/zara/side.svg",
  17659. extra: 504 / 498
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(10, "feet"),
  17667. default: true
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17673. {
  17674. side: {
  17675. height: math.unit(6, "feet"),
  17676. weight: math.unit(150, "lb"),
  17677. name: "Side",
  17678. image: {
  17679. source: "./media/characters/richard-dragon/side.svg",
  17680. extra: 845 / 340,
  17681. bottom: 0.017
  17682. }
  17683. },
  17684. maw: {
  17685. height: math.unit(2.97, "feet"),
  17686. name: "Maw",
  17687. image: {
  17688. source: "./media/characters/richard-dragon/maw.svg"
  17689. }
  17690. },
  17691. },
  17692. [
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(4, "feet"),
  17700. weight: math.unit(100, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/richard-smeargle/front.svg",
  17704. extra: 2952 / 2820,
  17705. bottom: 0.028
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(4, "feet"),
  17713. default: true
  17714. },
  17715. {
  17716. name: "Dynamax",
  17717. height: math.unit(20, "meters")
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(6, "feet"),
  17726. weight: math.unit(110, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/klay/front.svg",
  17730. extra: 962 / 883,
  17731. bottom: 0.04
  17732. }
  17733. },
  17734. back: {
  17735. height: math.unit(6, "feet"),
  17736. weight: math.unit(110, "lb"),
  17737. name: "Back",
  17738. image: {
  17739. source: "./media/characters/klay/back.svg",
  17740. extra: 962 / 883
  17741. }
  17742. },
  17743. beans: {
  17744. height: math.unit(1.15, "feet"),
  17745. name: "Beans",
  17746. image: {
  17747. source: "./media/characters/klay/beans.svg"
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(6, "inches")
  17755. },
  17756. {
  17757. name: "Mini",
  17758. height: math.unit(3, "feet")
  17759. },
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(6, "feet"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Big",
  17767. height: math.unit(25, "feet")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(100, "feet")
  17772. },
  17773. {
  17774. name: "Megamacro",
  17775. height: math.unit(400, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(6, "feet"),
  17784. weight: math.unit(160, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/marcus/front.svg",
  17788. extra: 734 / 676,
  17789. bottom: 0.03
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Little",
  17796. height: math.unit(6, "feet")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(110, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Macro",
  17805. height: math.unit(250, "feet")
  17806. },
  17807. {
  17808. name: "Megamacro",
  17809. height: math.unit(1000, "feet")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(7, "feet"),
  17818. weight: math.unit(275, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/claude-delroute/front.svg",
  17822. extra: 230 / 214,
  17823. bottom: 0.007
  17824. }
  17825. },
  17826. side: {
  17827. height: math.unit(7, "feet"),
  17828. weight: math.unit(275, "lb"),
  17829. name: "Side",
  17830. image: {
  17831. source: "./media/characters/claude-delroute/side.svg",
  17832. extra: 222 / 214,
  17833. bottom: 0.01
  17834. }
  17835. },
  17836. back: {
  17837. height: math.unit(7, "feet"),
  17838. weight: math.unit(275, "lb"),
  17839. name: "Back",
  17840. image: {
  17841. source: "./media/characters/claude-delroute/back.svg",
  17842. extra: 230 / 214,
  17843. bottom: 0.015
  17844. }
  17845. },
  17846. maw: {
  17847. height: math.unit(0.6407, "meters"),
  17848. name: "Maw",
  17849. image: {
  17850. source: "./media/characters/claude-delroute/maw.svg"
  17851. }
  17852. },
  17853. },
  17854. [
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(7, "feet"),
  17858. default: true
  17859. },
  17860. {
  17861. name: "Lorge",
  17862. height: math.unit(20, "feet")
  17863. },
  17864. ]
  17865. ))
  17866. characterMakers.push(() => makeCharacter(
  17867. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17868. {
  17869. front: {
  17870. height: math.unit(8 + 4 / 12, "feet"),
  17871. weight: math.unit(600, "lb"),
  17872. name: "Front",
  17873. image: {
  17874. source: "./media/characters/dragonien/front.svg",
  17875. extra: 100 / 94,
  17876. bottom: 3.3 / 103.3445
  17877. }
  17878. },
  17879. back: {
  17880. height: math.unit(8 + 4 / 12, "feet"),
  17881. weight: math.unit(600, "lb"),
  17882. name: "Back",
  17883. image: {
  17884. source: "./media/characters/dragonien/back.svg",
  17885. extra: 776 / 746,
  17886. bottom: 6.4 / 782.0616
  17887. }
  17888. },
  17889. foot: {
  17890. height: math.unit(1.54, "feet"),
  17891. name: "Foot",
  17892. image: {
  17893. source: "./media/characters/dragonien/foot.svg",
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(8 + 4 / 12, "feet"),
  17901. default: true
  17902. },
  17903. {
  17904. name: "Macro",
  17905. height: math.unit(200, "feet")
  17906. },
  17907. {
  17908. name: "Megamacro",
  17909. height: math.unit(1, "mile")
  17910. },
  17911. {
  17912. name: "Gigamacro",
  17913. height: math.unit(1000, "miles")
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(5 + 2 / 12, "feet"),
  17922. weight: math.unit(110, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/desta/front.svg",
  17926. extra: 767 / 726,
  17927. bottom: 11.7 / 779
  17928. }
  17929. },
  17930. back: {
  17931. height: math.unit(5 + 2 / 12, "feet"),
  17932. weight: math.unit(110, "lb"),
  17933. name: "Back",
  17934. image: {
  17935. source: "./media/characters/desta/back.svg",
  17936. extra: 777 / 728,
  17937. bottom: 6 / 784
  17938. }
  17939. },
  17940. frontAlt: {
  17941. height: math.unit(5 + 2 / 12, "feet"),
  17942. weight: math.unit(110, "lb"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/desta/front-alt.svg",
  17946. extra: 1482 / 1417
  17947. }
  17948. },
  17949. side: {
  17950. height: math.unit(5 + 2 / 12, "feet"),
  17951. weight: math.unit(110, "lb"),
  17952. name: "Side",
  17953. image: {
  17954. source: "./media/characters/desta/side.svg",
  17955. extra: 2579 / 2491,
  17956. bottom: 0.053
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Micro",
  17963. height: math.unit(6, "inches")
  17964. },
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(5 + 2 / 12, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(62, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(1800, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(10, "feet"),
  17985. weight: math.unit(700, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/storm-alystar/front.svg",
  17989. extra: 2112 / 1898,
  17990. bottom: 0.034
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(3.5, "inches")
  17998. },
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(10, "feet"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Macro",
  18006. height: math.unit(400, "feet")
  18007. },
  18008. {
  18009. name: "Deific",
  18010. height: math.unit(60, "miles")
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(2.35, "meters"),
  18019. weight: math.unit(119, "kg"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/ilia/front.svg",
  18023. extra: 1285 / 1255,
  18024. bottom: 0.06
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(2.35, "meters")
  18032. },
  18033. {
  18034. name: "Macro",
  18035. height: math.unit(140, "meters"),
  18036. default: true
  18037. },
  18038. {
  18039. name: "Megamacro",
  18040. height: math.unit(100, "miles")
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(6 + 5 / 12, "feet"),
  18049. weight: math.unit(190, "lb"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/kingdead/front.svg",
  18053. extra: 1228 / 1177
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(7, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6 + 5 / 12, "feet")
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(150, "feet"),
  18069. default: true
  18070. },
  18071. {
  18072. name: "Megamacro",
  18073. height: math.unit(200, "miles")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18079. {
  18080. front: {
  18081. height: math.unit(8, "feet"),
  18082. weight: math.unit(600, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/kyrehx/front.svg",
  18086. extra: 1195 / 1095,
  18087. bottom: 0.034
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Micro",
  18094. height: math.unit(2, "inches")
  18095. },
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(8, "feet"),
  18099. default: true
  18100. },
  18101. {
  18102. name: "Macro",
  18103. height: math.unit(255, "feet")
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18109. {
  18110. front: {
  18111. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18112. weight: math.unit(184, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/xang/front.svg",
  18116. extra: 845 / 755
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(0.935 * 146, "feet")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(0.935 * 3, "miles")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18138. {
  18139. frontDressed: {
  18140. height: math.unit(5 + 7 / 12, "feet"),
  18141. weight: math.unit(140, "lb"),
  18142. name: "Front (Dressed)",
  18143. image: {
  18144. source: "./media/characters/doc-weardno/front-dressed.svg",
  18145. extra: 263 / 234
  18146. }
  18147. },
  18148. backDressed: {
  18149. height: math.unit(5 + 7 / 12, "feet"),
  18150. weight: math.unit(140, "lb"),
  18151. name: "Back (Dressed)",
  18152. image: {
  18153. source: "./media/characters/doc-weardno/back-dressed.svg",
  18154. extra: 266 / 238
  18155. }
  18156. },
  18157. front: {
  18158. height: math.unit(5 + 7 / 12, "feet"),
  18159. weight: math.unit(140, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/doc-weardno/front.svg",
  18163. extra: 254 / 233
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Micro",
  18170. height: math.unit(3, "inches")
  18171. },
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(5 + 7 / 12, "feet"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(25, "feet")
  18180. },
  18181. {
  18182. name: "Megamacro",
  18183. height: math.unit(2, "miles")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(6 + 2 / 12, "feet"),
  18192. weight: math.unit(153, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/seth-whilst/front.svg",
  18196. bottom: 0.07
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Micro",
  18203. height: math.unit(5, "inches")
  18204. },
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(6 + 2 / 12, "feet"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(3, "inches"),
  18217. weight: math.unit(8, "grams"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/pocket-jabari/front.svg",
  18221. extra: 1024 / 974,
  18222. bottom: 0.039
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Minimicro",
  18229. height: math.unit(8, "mm")
  18230. },
  18231. {
  18232. name: "Micro",
  18233. height: math.unit(3, "inches"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(3, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(15, "feet"),
  18247. weight: math.unit(3280, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/sapphy/front.svg",
  18251. extra: 671 / 577,
  18252. bottom: 0.085
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(15, "feet"),
  18257. weight: math.unit(3280, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/sapphy/back.svg",
  18261. extra: 631 / 607,
  18262. bottom: 0.045
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(15, "feet")
  18270. },
  18271. {
  18272. name: "Casual Macro",
  18273. height: math.unit(120, "feet")
  18274. },
  18275. {
  18276. name: "Macro",
  18277. height: math.unit(2150, "feet"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Megamacro",
  18282. height: math.unit(8, "miles")
  18283. },
  18284. {
  18285. name: "Galaxy Mom",
  18286. height: math.unit(6, "megalightyears")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(6, "feet"),
  18295. weight: math.unit(170, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/kiro/front.svg",
  18299. extra: 1064 / 1012,
  18300. bottom: 0.052
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Micro",
  18307. height: math.unit(6, "inches")
  18308. },
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(6, "feet"),
  18312. default: true
  18313. },
  18314. {
  18315. name: "Macro",
  18316. height: math.unit(72, "feet")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(5 + 9 / 12, "feet"),
  18325. weight: math.unit(175, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/irishfox/front.svg",
  18329. extra: 1912 / 1680,
  18330. bottom: 0.02
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Nano",
  18337. height: math.unit(1, "mm")
  18338. },
  18339. {
  18340. name: "Micro",
  18341. height: math.unit(2, "inches")
  18342. },
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(5 + 9 / 12, "feet"),
  18346. default: true
  18347. },
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(45, "feet")
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(6 + 1 / 12, "feet"),
  18359. weight: math.unit(75, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/aronai-sieyes/front.svg",
  18363. extra: 1556 / 1480,
  18364. bottom: 0.015
  18365. }
  18366. },
  18367. side: {
  18368. height: math.unit(6 + 1 / 12, "feet"),
  18369. weight: math.unit(75, "lb"),
  18370. name: "Side",
  18371. image: {
  18372. source: "./media/characters/aronai-sieyes/side.svg",
  18373. extra: 1433 / 1390,
  18374. bottom: 0.0393
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(6 + 1 / 12, "feet"),
  18379. weight: math.unit(75, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/aronai-sieyes/back.svg",
  18383. extra: 1544 / 1494,
  18384. bottom: 0.02
  18385. }
  18386. },
  18387. frontClothed: {
  18388. height: math.unit(6 + 1 / 12, "feet"),
  18389. weight: math.unit(75, "lb"),
  18390. name: "Front (Clothed)",
  18391. image: {
  18392. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18393. extra: 1582 / 1527
  18394. }
  18395. },
  18396. feral: {
  18397. height: math.unit(18, "feet"),
  18398. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18399. name: "Feral",
  18400. image: {
  18401. source: "./media/characters/aronai-sieyes/feral.svg",
  18402. extra: 1530 / 1240,
  18403. bottom: 0.035
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(2, "inches")
  18411. },
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(6 + 1 / 12, "feet"),
  18415. default: true
  18416. }
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(12, "feet"),
  18424. weight: math.unit(410, "kg"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/xuna/front.svg",
  18428. extra: 2184 / 1980
  18429. }
  18430. },
  18431. side: {
  18432. height: math.unit(12, "feet"),
  18433. weight: math.unit(410, "kg"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/xuna/side.svg",
  18437. extra: 2184 / 1980
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(12, "feet"),
  18442. weight: math.unit(410, "kg"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/xuna/back.svg",
  18446. extra: 2184 / 1980
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Nano glow",
  18453. height: math.unit(10, "nm")
  18454. },
  18455. {
  18456. name: "Micro floof",
  18457. height: math.unit(0.3, "m")
  18458. },
  18459. {
  18460. name: "Huggable softy boi",
  18461. height: math.unit(3.6576, "m"),
  18462. default: true
  18463. },
  18464. {
  18465. name: "Admirable floof",
  18466. height: math.unit(80, "meters")
  18467. },
  18468. {
  18469. name: "Gentle macro",
  18470. height: math.unit(300, "meters")
  18471. },
  18472. {
  18473. name: "Very careful floof",
  18474. height: math.unit(3200, "meters")
  18475. },
  18476. {
  18477. name: "The mega floof",
  18478. height: math.unit(36000, "meters")
  18479. },
  18480. {
  18481. name: "Giga-fur-Wicker",
  18482. height: math.unit(4800000, "meters")
  18483. },
  18484. {
  18485. name: "Licky world",
  18486. height: math.unit(20000000, "meters")
  18487. },
  18488. {
  18489. name: "Floofy cyan sun",
  18490. height: math.unit(1500000000, "meters")
  18491. },
  18492. {
  18493. name: "Milky Wicker",
  18494. height: math.unit(1000000000000000000000, "meters")
  18495. },
  18496. {
  18497. name: "The observing Wicker",
  18498. height: math.unit(999999999999999999999999999, "meters")
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 9 / 12, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/arokha-sieyes/front.svg",
  18511. extra: 1425 / 1284,
  18512. bottom: 0.05
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(5 + 9 / 12, "feet")
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(30, "meters"),
  18524. default: true
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18530. {
  18531. front: {
  18532. height: math.unit(6, "feet"),
  18533. weight: math.unit(180, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/arokh-sieyes/front.svg",
  18537. extra: 1830 / 1769,
  18538. bottom: 0.01
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(6, "feet")
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(30, "meters"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18556. {
  18557. side: {
  18558. height: math.unit(13 + 1 / 12, "feet"),
  18559. weight: math.unit(8.5, "tonnes"),
  18560. name: "Side",
  18561. image: {
  18562. source: "./media/characters/goldeneye/side.svg",
  18563. extra: 1182 / 778,
  18564. bottom: 0.067
  18565. }
  18566. },
  18567. paw: {
  18568. height: math.unit(3.4, "feet"),
  18569. name: "Paw",
  18570. image: {
  18571. source: "./media/characters/goldeneye/paw.svg"
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(13 + 1 / 12, "feet"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18585. {
  18586. front: {
  18587. height: math.unit(6 + 1 / 12, "feet"),
  18588. weight: math.unit(210, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/leonardo-lycheborne/front.svg",
  18592. extra: 390 / 365,
  18593. bottom: 0.032
  18594. }
  18595. },
  18596. side: {
  18597. height: math.unit(6 + 1 / 12, "feet"),
  18598. weight: math.unit(210, "lb"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/leonardo-lycheborne/side.svg",
  18602. extra: 390 / 365,
  18603. bottom: 0.005
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(6 + 1 / 12, "feet"),
  18608. weight: math.unit(210, "lb"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/leonardo-lycheborne/back.svg",
  18612. extra: 392 / 366,
  18613. bottom: 0.01
  18614. }
  18615. },
  18616. hand: {
  18617. height: math.unit(1.08, "feet"),
  18618. name: "Hand",
  18619. image: {
  18620. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18621. }
  18622. },
  18623. foot: {
  18624. height: math.unit(1.32, "feet"),
  18625. name: "Foot",
  18626. image: {
  18627. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18628. }
  18629. },
  18630. were: {
  18631. height: math.unit(20, "feet"),
  18632. weight: math.unit(7800, "lb"),
  18633. name: "Were",
  18634. image: {
  18635. source: "./media/characters/leonardo-lycheborne/were.svg",
  18636. extra: 308 / 294,
  18637. bottom: 0.048
  18638. }
  18639. },
  18640. feral: {
  18641. height: math.unit(7.5, "feet"),
  18642. weight: math.unit(600, "lb"),
  18643. name: "Feral",
  18644. image: {
  18645. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18646. extra: 210 / 186,
  18647. bottom: 0.108
  18648. }
  18649. },
  18650. taur: {
  18651. height: math.unit(11, "feet"),
  18652. weight: math.unit(3300, "lb"),
  18653. name: "Taur",
  18654. image: {
  18655. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18656. extra: 320 / 303,
  18657. bottom: 0.025
  18658. }
  18659. },
  18660. barghest: {
  18661. height: math.unit(11, "feet"),
  18662. weight: math.unit(1300, "lb"),
  18663. name: "Barghest",
  18664. image: {
  18665. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18666. extra: 323 / 302,
  18667. bottom: 0.027
  18668. }
  18669. },
  18670. dick: {
  18671. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18672. name: "Dick",
  18673. image: {
  18674. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18675. }
  18676. },
  18677. dickWere: {
  18678. height: math.unit((20) / 3.8, "feet"),
  18679. name: "Dick (Were)",
  18680. image: {
  18681. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(6 + 1 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(10, "feet"),
  18698. weight: math.unit(350, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/jet/front.svg",
  18702. extra: 2050 / 1980,
  18703. bottom: 0.013
  18704. }
  18705. },
  18706. back: {
  18707. height: math.unit(10, "feet"),
  18708. weight: math.unit(350, "lb"),
  18709. name: "Back",
  18710. image: {
  18711. source: "./media/characters/jet/back.svg",
  18712. extra: 2050 / 1980,
  18713. bottom: 0.013
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(6, "inches")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(10, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro",
  18729. height: math.unit(100, "feet")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(15, "feet"),
  18738. weight: math.unit(2800, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/tanarath/front.svg",
  18742. extra: 2392 / 2220,
  18743. bottom: 0.03
  18744. }
  18745. },
  18746. back: {
  18747. height: math.unit(15, "feet"),
  18748. weight: math.unit(2800, "lb"),
  18749. name: "Back",
  18750. image: {
  18751. source: "./media/characters/tanarath/back.svg",
  18752. extra: 2392 / 2220,
  18753. bottom: 0.03
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(15, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(7 + 1 / 12, "feet"),
  18770. weight: math.unit(175, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/patty-cattybatty/front.svg",
  18774. extra: 908 / 874,
  18775. bottom: 0.025
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Micro",
  18782. height: math.unit(1, "inch")
  18783. },
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(7 + 1 / 12, "feet")
  18787. },
  18788. {
  18789. name: "Mini Macro",
  18790. height: math.unit(155, "feet")
  18791. },
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(1077, "feet")
  18795. },
  18796. {
  18797. name: "Mega Macro",
  18798. height: math.unit(47650, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Giga Macro",
  18803. height: math.unit(440, "miles")
  18804. },
  18805. {
  18806. name: "Tera Macro",
  18807. height: math.unit(8700, "miles")
  18808. },
  18809. {
  18810. name: "Planetary Macro",
  18811. height: math.unit(32700, "miles")
  18812. },
  18813. {
  18814. name: "Solar Macro",
  18815. height: math.unit(550000, "miles")
  18816. },
  18817. {
  18818. name: "Celestial Macro",
  18819. height: math.unit(2.5, "AU")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(4 + 5 / 12, "feet"),
  18828. weight: math.unit(90, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/cappu/front.svg",
  18832. extra: 1247 / 1152,
  18833. bottom: 0.012
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(4 + 5 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18847. {
  18848. frontDressed: {
  18849. height: math.unit(70, "cm"),
  18850. weight: math.unit(6, "kg"),
  18851. name: "Front (Dressed)",
  18852. image: {
  18853. source: "./media/characters/sebi/front-dressed.svg",
  18854. extra: 713.5 / 686.5,
  18855. bottom: 0.003
  18856. }
  18857. },
  18858. front: {
  18859. height: math.unit(70, "cm"),
  18860. weight: math.unit(5, "kg"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/sebi/front.svg",
  18864. extra: 713.5 / 686.5,
  18865. bottom: 0.003
  18866. }
  18867. }
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(70, "cm"),
  18873. default: true
  18874. },
  18875. {
  18876. name: "Macro",
  18877. height: math.unit(8, "meters")
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18883. {
  18884. front: {
  18885. height: math.unit(6, "feet"),
  18886. weight: math.unit(150, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/typhek/front.svg",
  18890. extra: 1948 / 1929,
  18891. bottom: 0.025
  18892. }
  18893. },
  18894. side: {
  18895. height: math.unit(6, "feet"),
  18896. weight: math.unit(150, "lb"),
  18897. name: "Side",
  18898. image: {
  18899. source: "./media/characters/typhek/side.svg",
  18900. extra: 2034 / 2010,
  18901. bottom: 0.003
  18902. }
  18903. },
  18904. back: {
  18905. height: math.unit(6, "feet"),
  18906. weight: math.unit(150, "lb"),
  18907. name: "Back",
  18908. image: {
  18909. source: "./media/characters/typhek/back.svg",
  18910. extra: 2005 / 1978,
  18911. bottom: 0.004
  18912. }
  18913. },
  18914. palm: {
  18915. height: math.unit(1.2, "feet"),
  18916. name: "Palm",
  18917. image: {
  18918. source: "./media/characters/typhek/palm.svg"
  18919. }
  18920. },
  18921. fist: {
  18922. height: math.unit(1.1, "feet"),
  18923. name: "Fist",
  18924. image: {
  18925. source: "./media/characters/typhek/fist.svg"
  18926. }
  18927. },
  18928. foot: {
  18929. height: math.unit(1.57, "feet"),
  18930. name: "Foot",
  18931. image: {
  18932. source: "./media/characters/typhek/foot.svg"
  18933. }
  18934. },
  18935. sole: {
  18936. height: math.unit(2.05, "feet"),
  18937. name: "Sole",
  18938. image: {
  18939. source: "./media/characters/typhek/sole.svg"
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(40, "stories"),
  18947. default: true
  18948. },
  18949. {
  18950. name: "Megamacro",
  18951. height: math.unit(1, "mile")
  18952. },
  18953. {
  18954. name: "Gigamacro",
  18955. height: math.unit(4000, "solarradii")
  18956. },
  18957. {
  18958. name: "Universal",
  18959. height: math.unit(1.1, "universes")
  18960. }
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18965. {
  18966. side: {
  18967. height: math.unit(5 + 7 / 12, "feet"),
  18968. weight: math.unit(150, "lb"),
  18969. name: "Side",
  18970. image: {
  18971. source: "./media/characters/kassy/side.svg",
  18972. extra: 1280 / 1225,
  18973. bottom: 0.002
  18974. }
  18975. },
  18976. front: {
  18977. height: math.unit(5 + 7 / 12, "feet"),
  18978. weight: math.unit(150, "lb"),
  18979. name: "Front",
  18980. image: {
  18981. source: "./media/characters/kassy/front.svg",
  18982. extra: 1280 / 1225,
  18983. bottom: 0.025
  18984. }
  18985. },
  18986. back: {
  18987. height: math.unit(5 + 7 / 12, "feet"),
  18988. weight: math.unit(150, "lb"),
  18989. name: "Back",
  18990. image: {
  18991. source: "./media/characters/kassy/back.svg",
  18992. extra: 1280 / 1225,
  18993. bottom: 0.002
  18994. }
  18995. },
  18996. foot: {
  18997. height: math.unit(1.266, "feet"),
  18998. name: "Foot",
  18999. image: {
  19000. source: "./media/characters/kassy/foot.svg"
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(5 + 7 / 12, "feet")
  19008. },
  19009. {
  19010. name: "Macro",
  19011. height: math.unit(137, "feet"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Megamacro",
  19016. height: math.unit(1, "mile")
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(6 + 1 / 12, "feet"),
  19025. weight: math.unit(200, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/neil/front.svg",
  19029. extra: 1326 / 1250,
  19030. bottom: 0.023
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(6 + 1 / 12, "feet"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(200, "feet")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(5 + 9 / 12, "feet"),
  19051. weight: math.unit(190, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/atticus/front.svg",
  19055. extra: 2934 / 2785,
  19056. bottom: 0.025
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(5 + 9 / 12, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Macro",
  19068. height: math.unit(180, "feet")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19074. {
  19075. side: {
  19076. height: math.unit(9, "feet"),
  19077. weight: math.unit(650, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/milo/side.svg",
  19081. extra: 2644 / 2310,
  19082. bottom: 0.032
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(9, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(300, "feet")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19100. {
  19101. side: {
  19102. height: math.unit(8, "meters"),
  19103. weight: math.unit(90000, "kg"),
  19104. name: "Side",
  19105. image: {
  19106. source: "./media/characters/ijzer/side.svg",
  19107. extra: 2756 / 1600,
  19108. bottom: 0.01
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Small",
  19115. height: math.unit(3, "meters")
  19116. },
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(8, "meters"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Normal+",
  19124. height: math.unit(10, "meters")
  19125. },
  19126. {
  19127. name: "Bigger",
  19128. height: math.unit(24, "meters")
  19129. },
  19130. {
  19131. name: "Huge",
  19132. height: math.unit(80, "meters")
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(6 + 2 / 12, "feet"),
  19141. weight: math.unit(153, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/luca-cervicum/front.svg",
  19145. extra: 370 / 327,
  19146. bottom: 0.015
  19147. }
  19148. },
  19149. back: {
  19150. height: math.unit(6 + 2 / 12, "feet"),
  19151. weight: math.unit(153, "lb"),
  19152. name: "Back",
  19153. image: {
  19154. source: "./media/characters/luca-cervicum/back.svg",
  19155. extra: 367 / 333,
  19156. bottom: 0.005
  19157. }
  19158. },
  19159. frontGear: {
  19160. height: math.unit(6 + 2 / 12, "feet"),
  19161. weight: math.unit(173, "lb"),
  19162. name: "Front (Gear)",
  19163. image: {
  19164. source: "./media/characters/luca-cervicum/front-gear.svg",
  19165. extra: 377 / 333,
  19166. bottom: 0.006
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(6 + 2 / 12, "feet"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19180. {
  19181. front: {
  19182. height: math.unit(6 + 1 / 12, "feet"),
  19183. weight: math.unit(304, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/oliver/front.svg",
  19187. extra: 157 / 143,
  19188. bottom: 0.08
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(6 + 1 / 12, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(5 + 7 / 12, "feet"),
  19205. weight: math.unit(140, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/shane/front.svg",
  19209. extra: 304 / 289,
  19210. bottom: 0.005
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(5 + 7 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(5 + 9 / 12, "feet"),
  19227. weight: math.unit(178, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/shin/front.svg",
  19231. extra: 159 / 151,
  19232. bottom: 0.015
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(5 + 9 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(5 + 10 / 12, "feet"),
  19249. weight: math.unit(168, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/xerxes/front.svg",
  19253. extra: 282 / 260,
  19254. bottom: 0.045
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(5 + 10 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(6 + 7 / 12, "feet"),
  19271. weight: math.unit(208, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/chaska/front.svg",
  19275. extra: 332 / 319,
  19276. bottom: 0.015
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(6 + 7 / 12, "feet"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(5 + 8 / 12, "feet"),
  19293. weight: math.unit(208, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/enuk/front.svg",
  19297. extra: 437 / 406,
  19298. bottom: 0.02
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(5 + 8 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 10 / 12, "feet"),
  19315. weight: math.unit(252, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/bruun/front.svg",
  19319. extra: 197 / 187,
  19320. bottom: 0.012
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(5 + 10 / 12, "feet"),
  19328. default: true
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19334. {
  19335. front: {
  19336. height: math.unit(6 + 10 / 12, "feet"),
  19337. weight: math.unit(255, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/alexeev/front.svg",
  19341. extra: 213 / 200,
  19342. bottom: 0.05
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(6 + 10 / 12, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(2 + 8 / 12, "feet"),
  19359. weight: math.unit(22, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/evelyn/front.svg",
  19363. extra: 208 / 180
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(2 + 8 / 12, "feet"),
  19371. default: true
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19377. {
  19378. front: {
  19379. height: math.unit(5 + 9 / 12, "feet"),
  19380. weight: math.unit(139, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/inca/front.svg",
  19384. extra: 294 / 291,
  19385. bottom: 0.03
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(5 + 9 / 12, "feet"),
  19393. default: true
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19399. {
  19400. front: {
  19401. height: math.unit(5 + 1 / 12, "feet"),
  19402. weight: math.unit(84, "lb"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/magdalene/front.svg",
  19406. extra: 293 / 273
  19407. }
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Normal",
  19413. height: math.unit(5 + 1 / 12, "feet"),
  19414. default: true
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19420. {
  19421. front: {
  19422. height: math.unit(6 + 3 / 12, "feet"),
  19423. weight: math.unit(185, "lb"),
  19424. name: "Front",
  19425. image: {
  19426. source: "./media/characters/mera/front.svg",
  19427. extra: 291 / 277,
  19428. bottom: 0.03
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(6 + 3 / 12, "feet"),
  19436. default: true
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(6 + 7 / 12, "feet"),
  19445. weight: math.unit(160, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/ceres/front.svg",
  19449. extra: 1023 / 950,
  19450. bottom: 0.027
  19451. }
  19452. },
  19453. back: {
  19454. height: math.unit(6 + 7 / 12, "feet"),
  19455. weight: math.unit(160, "lb"),
  19456. name: "Back",
  19457. image: {
  19458. source: "./media/characters/ceres/back.svg",
  19459. extra: 1023 / 950
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(6 + 7 / 12, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(5 + 10 / 12, "feet"),
  19476. weight: math.unit(150, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/kris/front.svg",
  19480. extra: 885 / 803,
  19481. bottom: 0.03
  19482. }
  19483. },
  19484. },
  19485. [
  19486. {
  19487. name: "Normal",
  19488. height: math.unit(5 + 10 / 12, "feet"),
  19489. default: true
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19495. {
  19496. front: {
  19497. height: math.unit(7, "feet"),
  19498. weight: math.unit(120, "kg"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/taluthus/front.svg",
  19502. extra: 903 / 833,
  19503. bottom: 0.015
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(7, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Macro",
  19515. height: math.unit(300, "feet")
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 9 / 12, "feet"),
  19524. weight: math.unit(145, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/dawn/front.svg",
  19528. extra: 2094 / 2016,
  19529. bottom: 0.025
  19530. }
  19531. },
  19532. back: {
  19533. height: math.unit(5 + 9 / 12, "feet"),
  19534. weight: math.unit(160, "lb"),
  19535. name: "Back",
  19536. image: {
  19537. source: "./media/characters/dawn/back.svg",
  19538. extra: 2112 / 2080,
  19539. bottom: 0.005
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(6 + 7 / 12, "feet"),
  19547. default: true
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19553. {
  19554. anthro: {
  19555. height: math.unit(8 + 3 / 12, "feet"),
  19556. weight: math.unit(450, "lb"),
  19557. name: "Anthro",
  19558. image: {
  19559. source: "./media/characters/arador/anthro.svg",
  19560. extra: 1835 / 1718,
  19561. bottom: 0.025
  19562. }
  19563. },
  19564. feral: {
  19565. height: math.unit(4, "feet"),
  19566. weight: math.unit(200, "lb"),
  19567. name: "Feral",
  19568. image: {
  19569. source: "./media/characters/arador/feral.svg",
  19570. extra: 1683 / 1514,
  19571. bottom: 0.07
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Normal",
  19578. height: math.unit(8 + 3 / 12, "feet")
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(82.5, "feet"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19589. {
  19590. front: {
  19591. height: math.unit(5 + 10 / 12, "feet"),
  19592. weight: math.unit(125, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/dharsi/front.svg",
  19596. extra: 716 / 630,
  19597. bottom: 0.035
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Nano",
  19604. height: math.unit(100, "nm")
  19605. },
  19606. {
  19607. name: "Micro",
  19608. height: math.unit(2, "inches")
  19609. },
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(5 + 10 / 12, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(1000, "feet")
  19618. },
  19619. {
  19620. name: "Megamacro",
  19621. height: math.unit(10, "miles")
  19622. },
  19623. {
  19624. name: "Gigamacro",
  19625. height: math.unit(3000, "miles")
  19626. },
  19627. {
  19628. name: "Teramacro",
  19629. height: math.unit(500000, "miles")
  19630. },
  19631. {
  19632. name: "Teramacro+",
  19633. height: math.unit(30, "galaxies")
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(6, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/deathy/front.svg",
  19646. extra: 1552 / 1463,
  19647. bottom: 0.025
  19648. }
  19649. },
  19650. side: {
  19651. height: math.unit(6, "feet"),
  19652. weight: math.unit(150, "lb"),
  19653. name: "Side",
  19654. image: {
  19655. source: "./media/characters/deathy/side.svg",
  19656. extra: 1604 / 1455,
  19657. bottom: 0.025
  19658. }
  19659. },
  19660. back: {
  19661. height: math.unit(6, "feet"),
  19662. weight: math.unit(150, "lb"),
  19663. name: "Back",
  19664. image: {
  19665. source: "./media/characters/deathy/back.svg",
  19666. extra: 1580 / 1463,
  19667. bottom: 0.005
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Micro",
  19674. height: math.unit(5, "millimeters")
  19675. },
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6 + 5 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19685. {
  19686. front: {
  19687. height: math.unit(16, "feet"),
  19688. weight: math.unit(4000, "lb"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/juniper/front.svg",
  19692. bottom: 0.04
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(16, "feet"),
  19700. default: true
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19706. {
  19707. front: {
  19708. height: math.unit(6, "feet"),
  19709. weight: math.unit(150, "lb"),
  19710. name: "Front",
  19711. image: {
  19712. source: "./media/characters/hipster/front.svg",
  19713. extra: 1312 / 1209,
  19714. bottom: 0.025
  19715. }
  19716. },
  19717. back: {
  19718. height: math.unit(6, "feet"),
  19719. weight: math.unit(150, "lb"),
  19720. name: "Back",
  19721. image: {
  19722. source: "./media/characters/hipster/back.svg",
  19723. extra: 1281 / 1196,
  19724. bottom: 0.01
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Micro",
  19731. height: math.unit(1, "mm")
  19732. },
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(4, "inches"),
  19736. default: true
  19737. },
  19738. {
  19739. name: "Macro",
  19740. height: math.unit(500, "feet")
  19741. },
  19742. {
  19743. name: "Megamacro",
  19744. height: math.unit(1000, "miles")
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(6, "feet"),
  19753. weight: math.unit(150, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/tendirmuldr/front.svg",
  19757. extra: 1878 / 1772,
  19758. bottom: 0.015
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Megamacro",
  19765. height: math.unit(1500, "miles"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19772. {
  19773. front: {
  19774. height: math.unit(14, "feet"),
  19775. weight: math.unit(12000, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/mort/front.svg",
  19779. extra: 365 / 318,
  19780. bottom: 0.01
  19781. }
  19782. },
  19783. side: {
  19784. height: math.unit(14, "feet"),
  19785. weight: math.unit(12000, "lb"),
  19786. name: "Side",
  19787. image: {
  19788. source: "./media/characters/mort/side.svg",
  19789. extra: 365 / 318,
  19790. bottom: 0.052
  19791. },
  19792. default: true
  19793. },
  19794. back: {
  19795. height: math.unit(14, "feet"),
  19796. weight: math.unit(12000, "lb"),
  19797. name: "Back",
  19798. image: {
  19799. source: "./media/characters/mort/back.svg",
  19800. extra: 371 / 332,
  19801. bottom: 0.18
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(14, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19815. {
  19816. front: {
  19817. height: math.unit(8, "feet"),
  19818. weight: math.unit(1, "ton"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/lycoa/front.svg",
  19822. extra: 1875 / 1789,
  19823. bottom: 0.022
  19824. }
  19825. },
  19826. back: {
  19827. height: math.unit(8, "feet"),
  19828. weight: math.unit(1, "ton"),
  19829. name: "Back",
  19830. image: {
  19831. source: "./media/characters/lycoa/back.svg",
  19832. extra: 1835 / 1781,
  19833. bottom: 0.03
  19834. }
  19835. },
  19836. head: {
  19837. height: math.unit(2.1, "feet"),
  19838. name: "Head",
  19839. image: {
  19840. source: "./media/characters/lycoa/head.svg"
  19841. }
  19842. },
  19843. tailmaw: {
  19844. height: math.unit(1.9, "feet"),
  19845. name: "Tailmaw",
  19846. image: {
  19847. source: "./media/characters/lycoa/tailmaw.svg"
  19848. }
  19849. },
  19850. tentacles: {
  19851. height: math.unit(2.1, "feet"),
  19852. name: "Tentacles",
  19853. image: {
  19854. source: "./media/characters/lycoa/tentacles.svg"
  19855. }
  19856. },
  19857. dick: {
  19858. height: math.unit(1.73, "feet"),
  19859. name: "Dick",
  19860. image: {
  19861. source: "./media/characters/lycoa/dick.svg"
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(8, "feet"),
  19869. default: true
  19870. },
  19871. {
  19872. name: "Macro",
  19873. height: math.unit(30, "feet")
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19879. {
  19880. front: {
  19881. height: math.unit(4 + 2 / 12, "feet"),
  19882. weight: math.unit(70, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/naldara/front.svg",
  19886. extra: 841 / 720,
  19887. bottom: 0.04
  19888. }
  19889. },
  19890. naga: {
  19891. height: math.unit(23, "feet"),
  19892. weight: math.unit(15000, "kg"),
  19893. name: "Naga",
  19894. image: {
  19895. source: "./media/characters/naldara/naga.svg",
  19896. extra: 3290 / 2959,
  19897. bottom: 124 / 3432
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(4 + 2 / 12, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(13 + 7 / 12, "feet"),
  19914. weight: math.unit(1500, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/briar/front.svg",
  19918. extra: 626 / 596,
  19919. bottom: 0.08
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(13 + 7 / 12, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19933. {
  19934. side: {
  19935. height: math.unit(10, "feet"),
  19936. weight: math.unit(500, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/vanguard/side.svg",
  19940. extra: 502 / 425,
  19941. bottom: 0.087
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(10, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(7.5, "feet"),
  19958. weight: math.unit(2, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/artemis/front.svg",
  19962. extra: 1192 / 1075,
  19963. bottom: 0.07
  19964. }
  19965. },
  19966. frontNsfw: {
  19967. height: math.unit(7.5, "feet"),
  19968. weight: math.unit(2, "lb"),
  19969. name: "Front (NSFW)",
  19970. image: {
  19971. source: "./media/characters/artemis/front-nsfw.svg",
  19972. extra: 1192 / 1075,
  19973. bottom: 0.07
  19974. }
  19975. },
  19976. frontNsfwer: {
  19977. height: math.unit(7.5, "feet"),
  19978. weight: math.unit(2, "lb"),
  19979. name: "Front (NSFW-er)",
  19980. image: {
  19981. source: "./media/characters/artemis/front-nsfwer.svg",
  19982. extra: 1192 / 1075,
  19983. bottom: 0.07
  19984. }
  19985. },
  19986. side: {
  19987. height: math.unit(7.5, "feet"),
  19988. weight: math.unit(2, "lb"),
  19989. name: "Side",
  19990. image: {
  19991. source: "./media/characters/artemis/side.svg",
  19992. extra: 1192 / 1075,
  19993. bottom: 0.07
  19994. }
  19995. },
  19996. sideNsfw: {
  19997. height: math.unit(7.5, "feet"),
  19998. weight: math.unit(2, "lb"),
  19999. name: "Side (NSFW)",
  20000. image: {
  20001. source: "./media/characters/artemis/side-nsfw.svg",
  20002. extra: 1192 / 1075,
  20003. bottom: 0.07
  20004. }
  20005. },
  20006. sideNsfwer: {
  20007. height: math.unit(7.5, "feet"),
  20008. weight: math.unit(2, "lb"),
  20009. name: "Side (NSFW-er)",
  20010. image: {
  20011. source: "./media/characters/artemis/side-nsfwer.svg",
  20012. extra: 1192 / 1075,
  20013. bottom: 0.07
  20014. }
  20015. },
  20016. maw: {
  20017. height: math.unit(1.1, "feet"),
  20018. name: "Maw",
  20019. image: {
  20020. source: "./media/characters/artemis/maw.svg"
  20021. }
  20022. },
  20023. stomach: {
  20024. height: math.unit(0.95, "feet"),
  20025. name: "Stomach",
  20026. image: {
  20027. source: "./media/characters/artemis/stomach.svg"
  20028. }
  20029. },
  20030. dickCanine: {
  20031. height: math.unit(1, "feet"),
  20032. name: "Dick (Canine)",
  20033. image: {
  20034. source: "./media/characters/artemis/dick-canine.svg"
  20035. }
  20036. },
  20037. dickEquine: {
  20038. height: math.unit(0.85, "feet"),
  20039. name: "Dick (Equine)",
  20040. image: {
  20041. source: "./media/characters/artemis/dick-equine.svg"
  20042. }
  20043. },
  20044. dickExotic: {
  20045. height: math.unit(0.85, "feet"),
  20046. name: "Dick (Exotic)",
  20047. image: {
  20048. source: "./media/characters/artemis/dick-exotic.svg"
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(7.5, "feet"),
  20056. default: true
  20057. },
  20058. {
  20059. name: "Enlarged",
  20060. height: math.unit(12, "feet")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(5 + 3 / 12, "feet"),
  20069. weight: math.unit(160, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/kira/front.svg",
  20073. extra: 906 / 786,
  20074. bottom: 0.01
  20075. }
  20076. },
  20077. back: {
  20078. height: math.unit(5 + 3 / 12, "feet"),
  20079. weight: math.unit(160, "lb"),
  20080. name: "Back",
  20081. image: {
  20082. source: "./media/characters/kira/back.svg",
  20083. extra: 882 / 757,
  20084. bottom: 0.005
  20085. }
  20086. },
  20087. frontDressed: {
  20088. height: math.unit(5 + 3 / 12, "feet"),
  20089. weight: math.unit(160, "lb"),
  20090. name: "Front (Dressed)",
  20091. image: {
  20092. source: "./media/characters/kira/front-dressed.svg",
  20093. extra: 906 / 786,
  20094. bottom: 0.01
  20095. }
  20096. },
  20097. beans: {
  20098. height: math.unit(0.92, "feet"),
  20099. name: "Beans",
  20100. image: {
  20101. source: "./media/characters/kira/beans.svg"
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(5 + 3 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(5 + 4 / 12, "feet"),
  20118. weight: math.unit(145, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/scramble/front.svg",
  20122. extra: 763 / 727,
  20123. bottom: 0.05
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(5 + 4 / 12, "feet"),
  20128. weight: math.unit(145, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/scramble/back.svg",
  20132. extra: 826 / 737,
  20133. bottom: 0.002
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 4 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20147. {
  20148. side: {
  20149. height: math.unit(6 + 2 / 12, "feet"),
  20150. weight: math.unit(190, "lb"),
  20151. name: "Side",
  20152. image: {
  20153. source: "./media/characters/biscuit/side.svg",
  20154. extra: 858 / 791,
  20155. bottom: 0.044
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(6 + 2 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(5 + 2 / 12, "feet"),
  20172. weight: math.unit(120, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/poffin/front.svg",
  20176. extra: 786 / 680,
  20177. bottom: 0.005
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 2 / 12, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(6 + 3 / 12, "feet"),
  20194. weight: math.unit(519, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/dhari/front.svg",
  20198. extra: 1048 / 946,
  20199. bottom: 0.015
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(6 + 3 / 12, "feet"),
  20204. weight: math.unit(519, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/dhari/back.svg",
  20208. extra: 1048 / 931,
  20209. bottom: 0.005
  20210. }
  20211. },
  20212. frontDressed: {
  20213. height: math.unit(6 + 3 / 12, "feet"),
  20214. weight: math.unit(519, "lb"),
  20215. name: "Front (Dressed)",
  20216. image: {
  20217. source: "./media/characters/dhari/front-dressed.svg",
  20218. extra: 1713 / 1546,
  20219. bottom: 0.02
  20220. }
  20221. },
  20222. backDressed: {
  20223. height: math.unit(6 + 3 / 12, "feet"),
  20224. weight: math.unit(519, "lb"),
  20225. name: "Back (Dressed)",
  20226. image: {
  20227. source: "./media/characters/dhari/back-dressed.svg",
  20228. extra: 1699 / 1537,
  20229. bottom: 0.01
  20230. }
  20231. },
  20232. maw: {
  20233. height: math.unit(0.95, "feet"),
  20234. name: "Maw",
  20235. image: {
  20236. source: "./media/characters/dhari/maw.svg"
  20237. }
  20238. },
  20239. wereFront: {
  20240. height: math.unit(12 + 8 / 12, "feet"),
  20241. weight: math.unit(4000, "lb"),
  20242. name: "Front (Were)",
  20243. image: {
  20244. source: "./media/characters/dhari/were-front.svg",
  20245. extra: 1065 / 969,
  20246. bottom: 0.015
  20247. }
  20248. },
  20249. wereBack: {
  20250. height: math.unit(12 + 8 / 12, "feet"),
  20251. weight: math.unit(4000, "lb"),
  20252. name: "Back (Were)",
  20253. image: {
  20254. source: "./media/characters/dhari/were-back.svg",
  20255. extra: 1065 / 969,
  20256. bottom: 0.012
  20257. }
  20258. },
  20259. wereMaw: {
  20260. height: math.unit(0.625, "meters"),
  20261. name: "Maw (Were)",
  20262. image: {
  20263. source: "./media/characters/dhari/were-maw.svg"
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(6 + 3 / 12, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20277. {
  20278. anthro: {
  20279. height: math.unit(5 + 7 / 12, "feet"),
  20280. weight: math.unit(175, "lb"),
  20281. name: "Anthro",
  20282. image: {
  20283. source: "./media/characters/rena-dyne/anthro.svg",
  20284. extra: 1849 / 1785,
  20285. bottom: 0.005
  20286. }
  20287. },
  20288. taur: {
  20289. height: math.unit(15 + 6 / 12, "feet"),
  20290. weight: math.unit(8000, "lb"),
  20291. name: "Taur",
  20292. image: {
  20293. source: "./media/characters/rena-dyne/taur.svg",
  20294. extra: 2315 / 2234,
  20295. bottom: 0.033
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(5 + 7 / 12, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(8, "feet"),
  20312. weight: math.unit(600, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/weremeep/front.svg",
  20316. extra: 967 / 862,
  20317. bottom: 0.01
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(8, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Lorg",
  20329. height: math.unit(12, "feet")
  20330. },
  20331. {
  20332. name: "Oh Lawd She Comin'",
  20333. height: math.unit(20, "feet")
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20339. {
  20340. front: {
  20341. height: math.unit(4, "feet"),
  20342. weight: math.unit(90, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/reza/front.svg",
  20346. extra: 1183 / 1111,
  20347. bottom: 0.017
  20348. }
  20349. },
  20350. back: {
  20351. height: math.unit(4, "feet"),
  20352. weight: math.unit(90, "lb"),
  20353. name: "Back",
  20354. image: {
  20355. source: "./media/characters/reza/back.svg",
  20356. extra: 1183 / 1111,
  20357. bottom: 0.01
  20358. }
  20359. },
  20360. drake: {
  20361. height: math.unit(30, "feet"),
  20362. weight: math.unit(246960, "lb"),
  20363. name: "Drake",
  20364. image: {
  20365. source: "./media/characters/reza/drake.svg",
  20366. extra: 2350 / 2024,
  20367. bottom: 60.7 / 2403
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(4, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20381. {
  20382. side: {
  20383. height: math.unit(15, "feet"),
  20384. weight: math.unit(14, "tons"),
  20385. name: "Side",
  20386. image: {
  20387. source: "./media/characters/athea/side.svg",
  20388. extra: 960 / 540,
  20389. bottom: 0.003
  20390. }
  20391. },
  20392. sitting: {
  20393. height: math.unit(6 * 2.85, "feet"),
  20394. weight: math.unit(14, "tons"),
  20395. name: "Sitting",
  20396. image: {
  20397. source: "./media/characters/athea/sitting.svg",
  20398. extra: 621 / 581,
  20399. bottom: 0.075
  20400. }
  20401. },
  20402. maw: {
  20403. height: math.unit(7.59498031496063, "feet"),
  20404. name: "Maw",
  20405. image: {
  20406. source: "./media/characters/athea/maw.svg"
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Lap Cat",
  20413. height: math.unit(2.5, "feet")
  20414. },
  20415. {
  20416. name: "Minimacro",
  20417. height: math.unit(15, "feet"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Macro",
  20422. height: math.unit(120, "feet")
  20423. },
  20424. {
  20425. name: "Macro+",
  20426. height: math.unit(640, "feet")
  20427. },
  20428. {
  20429. name: "Colossus",
  20430. height: math.unit(2.2, "miles")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20436. {
  20437. front: {
  20438. height: math.unit(8 + 8 / 12, "feet"),
  20439. weight: math.unit(130, "kg"),
  20440. name: "Front",
  20441. image: {
  20442. source: "./media/characters/seroko/front.svg",
  20443. extra: 1385 / 1280,
  20444. bottom: 0.025
  20445. }
  20446. },
  20447. back: {
  20448. height: math.unit(8 + 8 / 12, "feet"),
  20449. weight: math.unit(130, "kg"),
  20450. name: "Back",
  20451. image: {
  20452. source: "./media/characters/seroko/back.svg",
  20453. extra: 1369 / 1238,
  20454. bottom: 0.018
  20455. }
  20456. },
  20457. frontDressed: {
  20458. height: math.unit(8 + 8 / 12, "feet"),
  20459. weight: math.unit(130, "kg"),
  20460. name: "Front (Dressed)",
  20461. image: {
  20462. source: "./media/characters/seroko/front-dressed.svg",
  20463. extra: 1366 / 1275,
  20464. bottom: 0.03
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(8 + 8 / 12, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(5.5, "feet"),
  20481. weight: math.unit(160, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/quatzi/front.svg",
  20485. extra: 2346 / 2242,
  20486. bottom: 0.015
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(5.5, "feet"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Big",
  20498. height: math.unit(7.7, "feet")
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(5 + 11 / 12, "feet"),
  20507. weight: math.unit(180, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/sen/front.svg",
  20511. extra: 1321 / 1254,
  20512. bottom: 0.015
  20513. }
  20514. },
  20515. side: {
  20516. height: math.unit(5 + 11 / 12, "feet"),
  20517. weight: math.unit(180, "lb"),
  20518. name: "Side",
  20519. image: {
  20520. source: "./media/characters/sen/side.svg",
  20521. extra: 1321 / 1254,
  20522. bottom: 0.007
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(5 + 11 / 12, "feet"),
  20527. weight: math.unit(180, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/sen/back.svg",
  20531. extra: 1321 / 1254
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 11 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(166.6, "cm"),
  20548. weight: math.unit(66.6, "kg"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/fruity/front.svg",
  20552. extra: 1510 / 1386,
  20553. bottom: 0.04
  20554. }
  20555. },
  20556. back: {
  20557. height: math.unit(166.6, "cm"),
  20558. weight: math.unit(66.6, "lb"),
  20559. name: "Back",
  20560. image: {
  20561. source: "./media/characters/fruity/back.svg",
  20562. extra: 1563 / 1435,
  20563. bottom: 0.005
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(166.6, "cm"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Demonic",
  20575. height: math.unit(166.6, "feet")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20581. {
  20582. side: {
  20583. height: math.unit(10, "feet"),
  20584. weight: math.unit(500, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/zost/side.svg",
  20588. extra: 966 / 880,
  20589. bottom: 0.075
  20590. }
  20591. },
  20592. mawFront: {
  20593. height: math.unit(1.08, "meters"),
  20594. name: "Maw (Front)",
  20595. image: {
  20596. source: "./media/characters/zost/maw-front.svg"
  20597. }
  20598. },
  20599. mawSide: {
  20600. height: math.unit(2.66, "feet"),
  20601. name: "Maw (Side)",
  20602. image: {
  20603. source: "./media/characters/zost/maw-side.svg"
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(10, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(5 + 4 / 12, "feet"),
  20620. weight: math.unit(120, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/luci/front.svg",
  20624. extra: 1985 / 1884,
  20625. bottom: 0.04
  20626. }
  20627. },
  20628. back: {
  20629. height: math.unit(5 + 4 / 12, "feet"),
  20630. weight: math.unit(120, "lb"),
  20631. name: "Back",
  20632. image: {
  20633. source: "./media/characters/luci/back.svg",
  20634. extra: 1892 / 1791,
  20635. bottom: 0.002
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(5 + 4 / 12, "feet"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(1500, "feet"),
  20652. weight: math.unit(3.8e6, "tons"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/2th/front.svg",
  20656. extra: 3489 / 3350,
  20657. bottom: 0.1
  20658. }
  20659. },
  20660. foot: {
  20661. height: math.unit(461, "feet"),
  20662. name: "Foot",
  20663. image: {
  20664. source: "./media/characters/2th/foot.svg"
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "\"Micro\"",
  20671. height: math.unit(15 + 7 / 12, "feet")
  20672. },
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(1500, "feet"),
  20676. default: true
  20677. },
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(5000, "feet")
  20681. },
  20682. {
  20683. name: "Megamacro",
  20684. height: math.unit(15, "miles")
  20685. },
  20686. {
  20687. name: "Gigamacro",
  20688. height: math.unit(4000, "miles")
  20689. },
  20690. {
  20691. name: "Galactic",
  20692. height: math.unit(50, "AU")
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(5 + 6 / 12, "feet"),
  20701. weight: math.unit(220, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/amethyst/front.svg",
  20705. extra: 2078 / 2040,
  20706. bottom: 0.045
  20707. }
  20708. },
  20709. back: {
  20710. height: math.unit(5 + 6 / 12, "feet"),
  20711. weight: math.unit(220, "lb"),
  20712. name: "Back",
  20713. image: {
  20714. source: "./media/characters/amethyst/back.svg",
  20715. extra: 2021 / 1989,
  20716. bottom: 0.02
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Normal",
  20723. height: math.unit(5 + 6 / 12, "feet"),
  20724. default: true
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(4 + 11 / 12, "feet"),
  20733. weight: math.unit(120, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/yumi-akiyama/front.svg",
  20737. extra: 1327 / 1235,
  20738. bottom: 0.02
  20739. }
  20740. },
  20741. back: {
  20742. height: math.unit(4 + 11 / 12, "feet"),
  20743. weight: math.unit(120, "lb"),
  20744. name: "Back",
  20745. image: {
  20746. source: "./media/characters/yumi-akiyama/back.svg",
  20747. extra: 1287 / 1245,
  20748. bottom: 0.002
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Galactic",
  20755. height: math.unit(50, "galaxies"),
  20756. default: true
  20757. },
  20758. {
  20759. name: "Universal",
  20760. height: math.unit(100, "universes")
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(8, "feet"),
  20769. weight: math.unit(500, "lb"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/rifter-yrmori/front.svg",
  20773. extra: 1180 / 1125,
  20774. bottom: 0.02
  20775. }
  20776. },
  20777. back: {
  20778. height: math.unit(8, "feet"),
  20779. weight: math.unit(500, "lb"),
  20780. name: "Back",
  20781. image: {
  20782. source: "./media/characters/rifter-yrmori/back.svg",
  20783. extra: 1190 / 1145,
  20784. bottom: 0.001
  20785. }
  20786. },
  20787. wings: {
  20788. height: math.unit(7.75, "feet"),
  20789. weight: math.unit(500, "lb"),
  20790. name: "Wings",
  20791. image: {
  20792. source: "./media/characters/rifter-yrmori/wings.svg",
  20793. extra: 1357 / 1285
  20794. }
  20795. },
  20796. maw: {
  20797. height: math.unit(0.8, "feet"),
  20798. name: "Maw",
  20799. image: {
  20800. source: "./media/characters/rifter-yrmori/maw.svg"
  20801. }
  20802. },
  20803. mawfront: {
  20804. height: math.unit(1.45, "feet"),
  20805. name: "Maw (Front)",
  20806. image: {
  20807. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(8, "feet"),
  20815. default: true
  20816. },
  20817. {
  20818. name: "Macro",
  20819. height: math.unit(42, "meters")
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20825. {
  20826. were: {
  20827. height: math.unit(25 + 6 / 12, "feet"),
  20828. weight: math.unit(10000, "lb"),
  20829. name: "Were",
  20830. image: {
  20831. source: "./media/characters/tahajin/were.svg",
  20832. extra: 801 / 770,
  20833. bottom: 0.042
  20834. }
  20835. },
  20836. aquatic: {
  20837. height: math.unit(6 + 4 / 12, "feet"),
  20838. weight: math.unit(160, "lb"),
  20839. name: "Aquatic",
  20840. image: {
  20841. source: "./media/characters/tahajin/aquatic.svg",
  20842. extra: 572 / 542,
  20843. bottom: 0.04
  20844. }
  20845. },
  20846. chow: {
  20847. height: math.unit(8 + 11 / 12, "feet"),
  20848. weight: math.unit(450, "lb"),
  20849. name: "Chow",
  20850. image: {
  20851. source: "./media/characters/tahajin/chow.svg",
  20852. extra: 660 / 640,
  20853. bottom: 0.015
  20854. }
  20855. },
  20856. demiNaga: {
  20857. height: math.unit(6 + 8 / 12, "feet"),
  20858. weight: math.unit(300, "lb"),
  20859. name: "Demi Naga",
  20860. image: {
  20861. source: "./media/characters/tahajin/demi-naga.svg",
  20862. extra: 643 / 615,
  20863. bottom: 0.1
  20864. }
  20865. },
  20866. data: {
  20867. height: math.unit(5, "inches"),
  20868. weight: math.unit(0.1, "lb"),
  20869. name: "Data",
  20870. image: {
  20871. source: "./media/characters/tahajin/data.svg"
  20872. }
  20873. },
  20874. fluu: {
  20875. height: math.unit(5 + 7 / 12, "feet"),
  20876. weight: math.unit(140, "lb"),
  20877. name: "Fluu",
  20878. image: {
  20879. source: "./media/characters/tahajin/fluu.svg",
  20880. extra: 628 / 592,
  20881. bottom: 0.02
  20882. }
  20883. },
  20884. starWarrior: {
  20885. height: math.unit(4 + 5 / 12, "feet"),
  20886. weight: math.unit(50, "lb"),
  20887. name: "Star Warrior",
  20888. image: {
  20889. source: "./media/characters/tahajin/star-warrior.svg"
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(25 + 6 / 12, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(8, "feet"),
  20906. weight: math.unit(350, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/gabira/front.svg",
  20910. extra: 608 / 580,
  20911. bottom: 0.03
  20912. }
  20913. },
  20914. back: {
  20915. height: math.unit(8, "feet"),
  20916. weight: math.unit(350, "lb"),
  20917. name: "Back",
  20918. image: {
  20919. source: "./media/characters/gabira/back.svg",
  20920. extra: 608 / 580,
  20921. bottom: 0.03
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(8, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(5 + 3 / 12, "feet"),
  20938. weight: math.unit(137, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/sasha-katraine/front.svg",
  20942. bottom: 0.045
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Micro",
  20949. height: math.unit(5, "inches")
  20950. },
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(5 + 3 / 12, "feet"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20960. {
  20961. side: {
  20962. height: math.unit(4, "inches"),
  20963. weight: math.unit(200, "grams"),
  20964. name: "Side",
  20965. image: {
  20966. source: "./media/characters/der/side.svg",
  20967. extra: 719 / 400,
  20968. bottom: 30.6 / 749.9187
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(4, "inches"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20982. {
  20983. side: {
  20984. height: math.unit(30, "meters"),
  20985. weight: math.unit(700, "tonnes"),
  20986. name: "Side",
  20987. image: {
  20988. source: "./media/characters/fixerdragon/side.svg",
  20989. extra: (1293.0514 - 116.03) / 1106.86,
  20990. bottom: 116.03 / 1293.0514
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Planck",
  20997. height: math.unit(1.6e-35, "meters")
  20998. },
  20999. {
  21000. name: "Micro",
  21001. height: math.unit(0.4, "meters")
  21002. },
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(30, "meters"),
  21006. default: true
  21007. },
  21008. {
  21009. name: "Megamacro",
  21010. height: math.unit(1.2, "megameters")
  21011. },
  21012. {
  21013. name: "Teramacro",
  21014. height: math.unit(130, "terameters")
  21015. },
  21016. {
  21017. name: "Yottamacro",
  21018. height: math.unit(6200, "yottameters")
  21019. },
  21020. ]
  21021. ));
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(8, "feet"),
  21027. weight: math.unit(250, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/kite/front.svg",
  21031. extra: 2796 / 2659,
  21032. bottom: 0.002
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(8, "feet"),
  21040. default: true
  21041. },
  21042. {
  21043. name: "Macro",
  21044. height: math.unit(360, "feet")
  21045. },
  21046. {
  21047. name: "Megamacro",
  21048. height: math.unit(1500, "feet")
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(5 + 10 / 12, "feet"),
  21057. weight: math.unit(150, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/poojawa-vynar/front.svg",
  21061. extra: (1506.1547 - 55) / 1356.6,
  21062. bottom: 55 / 1506.1547
  21063. }
  21064. },
  21065. frontTailless: {
  21066. height: math.unit(5 + 10 / 12, "feet"),
  21067. weight: math.unit(150, "lb"),
  21068. name: "Front (Tailless)",
  21069. image: {
  21070. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21071. extra: (1506.1547 - 55) / 1356.6,
  21072. bottom: 55 / 1506.1547
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(5 + 10 / 12, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(293, "meters"),
  21089. weight: math.unit(70400, "tons"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/violette/front.svg",
  21093. extra: 1227 / 1180,
  21094. bottom: 0.005
  21095. }
  21096. },
  21097. back: {
  21098. height: math.unit(293, "meters"),
  21099. weight: math.unit(70400, "tons"),
  21100. name: "Back",
  21101. image: {
  21102. source: "./media/characters/violette/back.svg",
  21103. extra: 1227 / 1180,
  21104. bottom: 0.005
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(293, "meters"),
  21112. default: true
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(1050, "feet"),
  21121. weight: math.unit(200000, "tons"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/alessandra/front.svg",
  21125. extra: 960 / 912,
  21126. bottom: 0.06
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(1050, "feet")
  21134. },
  21135. {
  21136. name: "Macro+",
  21137. height: math.unit(900, "meters"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21144. {
  21145. front: {
  21146. height: math.unit(5, "feet"),
  21147. weight: math.unit(187, "lb"),
  21148. name: "Front",
  21149. image: {
  21150. source: "./media/characters/person/front.svg",
  21151. extra: 3087 / 2945,
  21152. bottom: 91 / 3181
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Micro",
  21159. height: math.unit(3, "inches")
  21160. },
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(5, "feet"),
  21164. default: true
  21165. },
  21166. {
  21167. name: "Macro",
  21168. height: math.unit(90, "feet")
  21169. },
  21170. {
  21171. name: "Max Size",
  21172. height: math.unit(280, "feet")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(4.5, "meters"),
  21181. weight: math.unit(3200, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/ty/front.svg",
  21185. extra: 1038 / 960,
  21186. bottom: 31.156 / 1068
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(4.5, "meters"),
  21191. weight: math.unit(3200, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/ty/back.svg",
  21195. extra: 1044 / 966,
  21196. bottom: 7.48 / 1049
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(4.5, "meters"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(5 + 4 / 12, "feet"),
  21213. weight: math.unit(115, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/rocky/front.svg",
  21217. extra: 1012 / 975,
  21218. bottom: 54 / 1066
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(5 + 4 / 12, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21232. {
  21233. upright: {
  21234. height: math.unit(6, "meters"),
  21235. weight: math.unit(4000, "kg"),
  21236. name: "Upright",
  21237. image: {
  21238. source: "./media/characters/ruin/upright.svg",
  21239. extra: 668 / 661,
  21240. bottom: 42 / 799.8396
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(6, "meters"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(5, "feet"),
  21257. weight: math.unit(106, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/robin/front.svg",
  21261. extra: 862 / 799,
  21262. bottom: 42.4 / 914.8856
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Normal",
  21269. height: math.unit(5, "feet"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21276. {
  21277. side: {
  21278. height: math.unit(3, "feet"),
  21279. weight: math.unit(225, "lb"),
  21280. name: "Side",
  21281. image: {
  21282. source: "./media/characters/saian/side.svg",
  21283. extra: 566 / 356,
  21284. bottom: 79.7 / 643
  21285. }
  21286. },
  21287. maw: {
  21288. height: math.unit(2.85, "feet"),
  21289. name: "Maw",
  21290. image: {
  21291. source: "./media/characters/saian/maw.svg"
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(3, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21305. {
  21306. side: {
  21307. height: math.unit(8, "feet"),
  21308. weight: math.unit(300, "lb"),
  21309. name: "Side",
  21310. image: {
  21311. source: "./media/characters/equus-silvermane/side.svg",
  21312. extra: 2176 / 2050,
  21313. bottom: 65.7 / 2245
  21314. }
  21315. },
  21316. front: {
  21317. height: math.unit(8, "feet"),
  21318. weight: math.unit(300, "lb"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/equus-silvermane/front.svg",
  21322. extra: 4633 / 4400,
  21323. bottom: 71.3 / 4706.915
  21324. }
  21325. },
  21326. sideStepping: {
  21327. height: math.unit(8, "feet"),
  21328. weight: math.unit(300, "lb"),
  21329. name: "Side (Stepping)",
  21330. image: {
  21331. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21332. extra: 1968 / 1860,
  21333. bottom: 16.4 / 1989
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(8, "feet")
  21341. },
  21342. {
  21343. name: "Minimacro",
  21344. height: math.unit(75, "feet"),
  21345. default: true
  21346. },
  21347. {
  21348. name: "Macro",
  21349. height: math.unit(150, "feet")
  21350. },
  21351. {
  21352. name: "Macro+",
  21353. height: math.unit(1000, "feet")
  21354. },
  21355. {
  21356. name: "Megamacro",
  21357. height: math.unit(1, "mile")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21363. {
  21364. side: {
  21365. height: math.unit(20, "feet"),
  21366. weight: math.unit(30000, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/windar/side.svg",
  21370. extra: 1491 / 1248,
  21371. bottom: 82.56 / 1568
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(20, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21385. {
  21386. side: {
  21387. height: math.unit(15.66, "feet"),
  21388. weight: math.unit(150, "lb"),
  21389. name: "Side",
  21390. image: {
  21391. source: "./media/characters/melody/side.svg",
  21392. extra: 1097 / 944,
  21393. bottom: 11.8 / 1109
  21394. }
  21395. },
  21396. sideOutfit: {
  21397. height: math.unit(15.66, "feet"),
  21398. weight: math.unit(150, "lb"),
  21399. name: "Side (Outfit)",
  21400. image: {
  21401. source: "./media/characters/melody/side-outfit.svg",
  21402. extra: 1097 / 944,
  21403. bottom: 11.8 / 1109
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(15.66, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(8, "feet"),
  21420. weight: math.unit(325, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/windera/front.svg",
  21424. extra: 3180 / 2845,
  21425. bottom: 178 / 3365
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(8, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21439. {
  21440. front: {
  21441. height: math.unit(28.75, "feet"),
  21442. weight: math.unit(2000, "kg"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/sonear/front.svg",
  21446. extra: 1041.1 / 964.9,
  21447. bottom: 53.7 / 1096.6
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(28.75, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21461. {
  21462. side: {
  21463. height: math.unit(25.5, "feet"),
  21464. weight: math.unit(23000, "kg"),
  21465. name: "Side",
  21466. image: {
  21467. source: "./media/characters/kanara/side.svg"
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(25.5, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21481. {
  21482. side: {
  21483. height: math.unit(10, "feet"),
  21484. weight: math.unit(1000, "kg"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/ereus/side.svg",
  21488. extra: 1157 / 959,
  21489. bottom: 153 / 1312.5
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(10, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21503. {
  21504. side: {
  21505. height: math.unit(4.5, "feet"),
  21506. weight: math.unit(500, "lb"),
  21507. name: "Side",
  21508. image: {
  21509. source: "./media/characters/e-ter/side.svg",
  21510. extra: 1550 / 1248,
  21511. bottom: 146 / 1694
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(4.5, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21525. {
  21526. side: {
  21527. height: math.unit(9.7, "feet"),
  21528. weight: math.unit(4000, "kg"),
  21529. name: "Side",
  21530. image: {
  21531. source: "./media/characters/yamie/side.svg"
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(9.7, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(50, "feet"),
  21548. weight: math.unit(50000, "kg"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/anders/front.svg",
  21552. extra: 570 / 539,
  21553. bottom: 14.7 / 586.7
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Large",
  21560. height: math.unit(50, "feet")
  21561. },
  21562. {
  21563. name: "Macro",
  21564. height: math.unit(2000, "feet"),
  21565. default: true
  21566. },
  21567. {
  21568. name: "Megamacro",
  21569. height: math.unit(12, "miles")
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(7 + 2 / 12, "feet"),
  21578. weight: math.unit(300, "lb"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/reban/front.svg",
  21582. extra: 516 / 487,
  21583. bottom: 42.82 / 558.356
  21584. }
  21585. },
  21586. dick: {
  21587. height: math.unit(7 / 5, "feet"),
  21588. name: "Dick",
  21589. image: {
  21590. source: "./media/characters/reban/dick.svg"
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Natural Height",
  21597. height: math.unit(7 + 2 / 12, "feet")
  21598. },
  21599. {
  21600. name: "Macro",
  21601. height: math.unit(500, "feet"),
  21602. default: true
  21603. },
  21604. {
  21605. name: "Canon Height",
  21606. height: math.unit(50, "AU")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(6, "feet"),
  21615. weight: math.unit(150, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/terrance-keayes/front.svg",
  21619. extra: 1.005,
  21620. bottom: 151 / 1615
  21621. }
  21622. },
  21623. side: {
  21624. height: math.unit(6, "feet"),
  21625. weight: math.unit(150, "lb"),
  21626. name: "Side",
  21627. image: {
  21628. source: "./media/characters/terrance-keayes/side.svg",
  21629. extra: 1.005,
  21630. bottom: 129.4 / 1544
  21631. }
  21632. },
  21633. back: {
  21634. height: math.unit(6, "feet"),
  21635. weight: math.unit(150, "lb"),
  21636. name: "Back",
  21637. image: {
  21638. source: "./media/characters/terrance-keayes/back.svg",
  21639. extra: 1.005,
  21640. bottom: 58.4 / 1557.3
  21641. }
  21642. },
  21643. dick: {
  21644. height: math.unit(6 * 0.208, "feet"),
  21645. name: "Dick",
  21646. image: {
  21647. source: "./media/characters/terrance-keayes/dick.svg"
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Canon Height",
  21654. height: math.unit(35, "miles"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(6, "feet"),
  21664. weight: math.unit(150, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/ofelia/front.svg",
  21668. extra: 546 / 541,
  21669. bottom: 39 / 583
  21670. }
  21671. },
  21672. back: {
  21673. height: math.unit(6, "feet"),
  21674. weight: math.unit(150, "lb"),
  21675. name: "Back",
  21676. image: {
  21677. source: "./media/characters/ofelia/back.svg",
  21678. extra: 564 / 559.5,
  21679. bottom: 8.69 / 573.02
  21680. }
  21681. },
  21682. maw: {
  21683. height: math.unit(1, "feet"),
  21684. name: "Maw",
  21685. image: {
  21686. source: "./media/characters/ofelia/maw.svg"
  21687. }
  21688. },
  21689. foot: {
  21690. height: math.unit(1.949, "feet"),
  21691. name: "Foot",
  21692. image: {
  21693. source: "./media/characters/ofelia/foot.svg"
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Canon Height",
  21700. height: math.unit(2000, "miles"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(6, "feet"),
  21710. weight: math.unit(150, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/samuel/front.svg",
  21714. extra: 265 / 258,
  21715. bottom: 2 / 266.1566
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Macro",
  21722. height: math.unit(100, "feet"),
  21723. default: true
  21724. },
  21725. {
  21726. name: "Full Size",
  21727. height: math.unit(1000, "miles")
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21733. {
  21734. front: {
  21735. height: math.unit(6, "feet"),
  21736. weight: math.unit(300, "lb"),
  21737. name: "Front",
  21738. image: {
  21739. source: "./media/characters/beishir-kiel/front.svg",
  21740. extra: 569 / 547,
  21741. bottom: 41.9 / 609
  21742. }
  21743. },
  21744. maw: {
  21745. height: math.unit(6 * 0.202, "feet"),
  21746. name: "Maw",
  21747. image: {
  21748. source: "./media/characters/beishir-kiel/maw.svg"
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Macro",
  21755. height: math.unit(300, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 8 / 12, "feet"),
  21765. weight: math.unit(120, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/logan-grey/front.svg",
  21769. extra: 2539 / 2393,
  21770. bottom: 97.6 / 2636.37
  21771. }
  21772. },
  21773. frontAlt: {
  21774. height: math.unit(5 + 8 / 12, "feet"),
  21775. weight: math.unit(120, "lb"),
  21776. name: "Front (Alt)",
  21777. image: {
  21778. source: "./media/characters/logan-grey/front-alt.svg",
  21779. extra: 958 / 893,
  21780. bottom: 15 / 970.768
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(5 + 8 / 12, "feet"),
  21785. weight: math.unit(120, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/logan-grey/back.svg",
  21789. extra: 958 / 893,
  21790. bottom: 2.1881 / 970.9788
  21791. }
  21792. },
  21793. dick: {
  21794. height: math.unit(1.437, "feet"),
  21795. name: "Dick",
  21796. image: {
  21797. source: "./media/characters/logan-grey/dick.svg"
  21798. }
  21799. },
  21800. },
  21801. [
  21802. {
  21803. name: "Normal",
  21804. height: math.unit(5 + 8 / 12, "feet")
  21805. },
  21806. {
  21807. name: "The 500 Foot Femboy",
  21808. height: math.unit(500, "feet"),
  21809. default: true
  21810. },
  21811. {
  21812. name: "Megmacro",
  21813. height: math.unit(20, "miles")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(8 + 2 / 12, "feet"),
  21822. weight: math.unit(275, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/draganta/front.svg",
  21826. extra: 1177 / 1135,
  21827. bottom: 33.46 / 1212.1
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(8 + 6 / 12, "feet"),
  21835. default: true
  21836. },
  21837. {
  21838. name: "Macro",
  21839. height: math.unit(150, "feet")
  21840. },
  21841. {
  21842. name: "Megamacro",
  21843. height: math.unit(1000, "miles")
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(1.72, "m"),
  21852. weight: math.unit(80, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/voski/front.svg",
  21856. extra: 2076.22 / 2022.4,
  21857. bottom: 102.7 / 2177.3866
  21858. }
  21859. },
  21860. frontNsfw: {
  21861. height: math.unit(1.72, "m"),
  21862. weight: math.unit(80, "lb"),
  21863. name: "Front (NSFW)",
  21864. image: {
  21865. source: "./media/characters/voski/front-nsfw.svg",
  21866. extra: 2076.22 / 2022.4,
  21867. bottom: 102.7 / 2177.3866
  21868. }
  21869. },
  21870. back: {
  21871. height: math.unit(1.72, "m"),
  21872. weight: math.unit(80, "lb"),
  21873. name: "Back",
  21874. image: {
  21875. source: "./media/characters/voski/back.svg",
  21876. extra: 2104 / 2051,
  21877. bottom: 10.45 / 2113.63
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(1.72, "m")
  21885. },
  21886. {
  21887. name: "Macro",
  21888. height: math.unit(55, "m"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro+",
  21893. height: math.unit(300, "m")
  21894. },
  21895. {
  21896. name: "Macro++",
  21897. height: math.unit(700, "m")
  21898. },
  21899. {
  21900. name: "Macro+++",
  21901. height: math.unit(4500, "m")
  21902. },
  21903. {
  21904. name: "Macro++++",
  21905. height: math.unit(45, "km")
  21906. },
  21907. {
  21908. name: "Macro+++++",
  21909. height: math.unit(1220, "km")
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(2.3, "m"),
  21918. weight: math.unit(304, "kg"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/icowom-lee/front.svg",
  21922. extra: 985 / 955,
  21923. bottom: 25.4 / 1012
  21924. }
  21925. },
  21926. fronttentacles: {
  21927. height: math.unit(2.3, "m"),
  21928. weight: math.unit(304, "kg"),
  21929. name: "Front-tentacles",
  21930. image: {
  21931. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21932. extra: 985 / 955,
  21933. bottom: 25.4 / 1012
  21934. }
  21935. },
  21936. back: {
  21937. height: math.unit(2.3, "m"),
  21938. weight: math.unit(304, "kg"),
  21939. name: "Back",
  21940. image: {
  21941. source: "./media/characters/icowom-lee/back.svg",
  21942. extra: 975 / 954,
  21943. bottom: 9.5 / 985
  21944. }
  21945. },
  21946. backtentacles: {
  21947. height: math.unit(2.3, "m"),
  21948. weight: math.unit(304, "kg"),
  21949. name: "Back-tentacles",
  21950. image: {
  21951. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21952. extra: 975 / 954,
  21953. bottom: 9.5 / 985
  21954. }
  21955. },
  21956. frontDressed: {
  21957. height: math.unit(2.3, "m"),
  21958. weight: math.unit(304, "kg"),
  21959. name: "Front (Dressed)",
  21960. image: {
  21961. source: "./media/characters/icowom-lee/front-dressed.svg",
  21962. extra: 3076 / 2933,
  21963. bottom: 51.4 / 3125.1889
  21964. }
  21965. },
  21966. rump: {
  21967. height: math.unit(0.776, "meters"),
  21968. name: "Rump",
  21969. image: {
  21970. source: "./media/characters/icowom-lee/rump.svg"
  21971. }
  21972. },
  21973. genitals: {
  21974. height: math.unit(0.78, "meters"),
  21975. name: "Genitals",
  21976. image: {
  21977. source: "./media/characters/icowom-lee/genitals.svg"
  21978. }
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Normal",
  21984. height: math.unit(2.3, "meters"),
  21985. default: true
  21986. },
  21987. {
  21988. name: "Macro",
  21989. height: math.unit(94, "meters"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(22, "meters"),
  21999. weight: math.unit(21000, "kg"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/shock-diamond/front.svg",
  22003. extra: 2204 / 2053,
  22004. bottom: 65 / 2239.47
  22005. }
  22006. },
  22007. frontNude: {
  22008. height: math.unit(22, "meters"),
  22009. weight: math.unit(21000, "kg"),
  22010. name: "Front (Nude)",
  22011. image: {
  22012. source: "./media/characters/shock-diamond/front-nude.svg",
  22013. extra: 2514 / 2285,
  22014. bottom: 13 / 2527.56
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(3, "meters")
  22022. },
  22023. {
  22024. name: "Macro",
  22025. height: math.unit(22, "meters"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(5 + 4 / 12, "feet"),
  22035. weight: math.unit(120, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/rory/front.svg",
  22039. extra: 589 / 556,
  22040. bottom: 45.7 / 635.76
  22041. }
  22042. },
  22043. frontNude: {
  22044. height: math.unit(5 + 4 / 12, "feet"),
  22045. weight: math.unit(120, "lb"),
  22046. name: "Front (Nude)",
  22047. image: {
  22048. source: "./media/characters/rory/front-nude.svg",
  22049. extra: 589 / 556,
  22050. bottom: 45.7 / 635.76
  22051. }
  22052. },
  22053. side: {
  22054. height: math.unit(5 + 4 / 12, "feet"),
  22055. weight: math.unit(120, "lb"),
  22056. name: "Side",
  22057. image: {
  22058. source: "./media/characters/rory/side.svg",
  22059. extra: 597 / 564,
  22060. bottom: 55 / 653
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(5 + 4 / 12, "feet"),
  22065. weight: math.unit(120, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/rory/back.svg",
  22069. extra: 620 / 585,
  22070. bottom: 8.86 / 630.43
  22071. }
  22072. },
  22073. dick: {
  22074. height: math.unit(0.86, "feet"),
  22075. name: "Dick",
  22076. image: {
  22077. source: "./media/characters/rory/dick.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(5 + 4 / 12, "feet"),
  22085. default: true
  22086. },
  22087. {
  22088. name: "Macro",
  22089. height: math.unit(100, "feet")
  22090. },
  22091. {
  22092. name: "Macro+",
  22093. height: math.unit(140, "feet")
  22094. },
  22095. {
  22096. name: "Macro++",
  22097. height: math.unit(300, "feet")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(5 + 9 / 12, "feet"),
  22106. weight: math.unit(190, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/sprisk/front.svg",
  22110. extra: 1225 / 1180,
  22111. bottom: 42.7 / 1266.4
  22112. }
  22113. },
  22114. frontNsfw: {
  22115. height: math.unit(5 + 9 / 12, "feet"),
  22116. weight: math.unit(190, "lb"),
  22117. name: "Front (NSFW)",
  22118. image: {
  22119. source: "./media/characters/sprisk/front-nsfw.svg",
  22120. extra: 1225 / 1180,
  22121. bottom: 42.7 / 1266.4
  22122. }
  22123. },
  22124. back: {
  22125. height: math.unit(5 + 9 / 12, "feet"),
  22126. weight: math.unit(190, "lb"),
  22127. name: "Back",
  22128. image: {
  22129. source: "./media/characters/sprisk/back.svg",
  22130. extra: 1247 / 1200,
  22131. bottom: 5.6 / 1253.04
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Tiny",
  22138. height: math.unit(2, "inches")
  22139. },
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(5 + 9 / 12, "feet"),
  22143. default: true
  22144. },
  22145. {
  22146. name: "Mini Macro",
  22147. height: math.unit(18, "feet")
  22148. },
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(100, "feet")
  22152. },
  22153. {
  22154. name: "MACRO",
  22155. height: math.unit(50, "miles")
  22156. },
  22157. {
  22158. name: "M A C R O",
  22159. height: math.unit(300, "miles")
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22165. {
  22166. side: {
  22167. height: math.unit(15.6, "meters"),
  22168. weight: math.unit(700000, "kg"),
  22169. name: "Side",
  22170. image: {
  22171. source: "./media/characters/bunsen/side.svg",
  22172. extra: 1644 / 358
  22173. }
  22174. },
  22175. foot: {
  22176. height: math.unit(1.611 * 1644 / 358, "meter"),
  22177. name: "Foot",
  22178. image: {
  22179. source: "./media/characters/bunsen/foot.svg"
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Small",
  22186. height: math.unit(10, "feet")
  22187. },
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(15.6, "meters"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(4 + 11 / 12, "feet"),
  22200. weight: math.unit(140, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/sesh/front.svg",
  22204. extra: 3420 / 3231,
  22205. bottom: 72 / 3949.5
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(4 + 11 / 12, "feet")
  22213. },
  22214. {
  22215. name: "Grown",
  22216. height: math.unit(15, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(1500, "feet")
  22222. },
  22223. {
  22224. name: "Megamacro",
  22225. height: math.unit(30, "miles")
  22226. },
  22227. {
  22228. name: "Continental",
  22229. height: math.unit(3000, "miles")
  22230. },
  22231. {
  22232. name: "Gravity Mass",
  22233. height: math.unit(300000, "miles")
  22234. },
  22235. {
  22236. name: "Planet Buster",
  22237. height: math.unit(30000000, "miles")
  22238. },
  22239. {
  22240. name: "Big",
  22241. height: math.unit(3000000000, "miles")
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(9, "feet"),
  22250. weight: math.unit(350, "lb"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/pepper/front.svg",
  22254. extra: 1448 / 1312,
  22255. bottom: 9.4 / 1457.88
  22256. }
  22257. },
  22258. back: {
  22259. height: math.unit(9, "feet"),
  22260. weight: math.unit(350, "lb"),
  22261. name: "Back",
  22262. image: {
  22263. source: "./media/characters/pepper/back.svg",
  22264. extra: 1423 / 1300,
  22265. bottom: 4.6 / 1429
  22266. }
  22267. },
  22268. maw: {
  22269. height: math.unit(0.932, "feet"),
  22270. name: "Maw",
  22271. image: {
  22272. source: "./media/characters/pepper/maw.svg"
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(9, "feet"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(6, "feet"),
  22289. weight: math.unit(150, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/maelstrom/front.svg",
  22293. extra: 2100 / 1883,
  22294. bottom: 94 / 2196.7
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Less Kaiju",
  22301. height: math.unit(200, "feet")
  22302. },
  22303. {
  22304. name: "Kaiju",
  22305. height: math.unit(400, "feet"),
  22306. default: true
  22307. },
  22308. {
  22309. name: "Kaiju-er",
  22310. height: math.unit(600, "feet")
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(6 + 5 / 12, "feet"),
  22319. weight: math.unit(180, "lb"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/lexir/front.svg",
  22323. extra: 180 / 172,
  22324. bottom: 12 / 192
  22325. }
  22326. },
  22327. back: {
  22328. height: math.unit(6 + 5 / 12, "feet"),
  22329. weight: math.unit(180, "lb"),
  22330. name: "Back",
  22331. image: {
  22332. source: "./media/characters/lexir/back.svg",
  22333. extra: 183.84 / 175.5,
  22334. bottom: 3.1 / 187
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Very Smal",
  22341. height: math.unit(1, "nm")
  22342. },
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(6 + 5 / 12, "feet"),
  22346. default: true
  22347. },
  22348. {
  22349. name: "Macro",
  22350. height: math.unit(1, "mile")
  22351. },
  22352. {
  22353. name: "Megamacro",
  22354. height: math.unit(50, "miles")
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(1.5, "meters"),
  22363. weight: math.unit(100, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/maksio/front.svg",
  22367. extra: 1549 / 1531,
  22368. bottom: 123.7 / 1674.5429
  22369. }
  22370. },
  22371. back: {
  22372. height: math.unit(1.5, "meters"),
  22373. weight: math.unit(100, "lb"),
  22374. name: "Back",
  22375. image: {
  22376. source: "./media/characters/maksio/back.svg",
  22377. extra: 1541 / 1509,
  22378. bottom: 97 / 1639
  22379. }
  22380. },
  22381. hand: {
  22382. height: math.unit(0.621, "feet"),
  22383. name: "Hand",
  22384. image: {
  22385. source: "./media/characters/maksio/hand.svg"
  22386. }
  22387. },
  22388. foot: {
  22389. height: math.unit(1.611, "feet"),
  22390. name: "Foot",
  22391. image: {
  22392. source: "./media/characters/maksio/foot.svg"
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Shrunken",
  22399. height: math.unit(10, "cm")
  22400. },
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(150, "cm"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(100, "feet"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/erza-bear/front.svg",
  22416. extra: 2449 / 2390,
  22417. bottom: 46 / 2494
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(100, "feet"),
  22422. name: "Back",
  22423. image: {
  22424. source: "./media/characters/erza-bear/back.svg",
  22425. extra: 2489 / 2430,
  22426. bottom: 85.4 / 2480
  22427. }
  22428. },
  22429. tail: {
  22430. height: math.unit(42, "feet"),
  22431. name: "Tail",
  22432. image: {
  22433. source: "./media/characters/erza-bear/tail.svg"
  22434. }
  22435. },
  22436. tongue: {
  22437. height: math.unit(8, "feet"),
  22438. name: "Tongue",
  22439. image: {
  22440. source: "./media/characters/erza-bear/tongue.svg"
  22441. }
  22442. },
  22443. dick: {
  22444. height: math.unit(10.5, "feet"),
  22445. name: "Dick",
  22446. image: {
  22447. source: "./media/characters/erza-bear/dick.svg"
  22448. }
  22449. },
  22450. dickVertical: {
  22451. height: math.unit(16.9, "feet"),
  22452. name: "Dick (Vertical)",
  22453. image: {
  22454. source: "./media/characters/erza-bear/dick-vertical.svg"
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Macro",
  22461. height: math.unit(100, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(172, "cm"),
  22471. weight: math.unit(73, "kg"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/violet-flor/front.svg",
  22475. extra: 1530 / 1442,
  22476. bottom: 61.9 / 1588.8
  22477. }
  22478. },
  22479. back: {
  22480. height: math.unit(180, "cm"),
  22481. weight: math.unit(73, "kg"),
  22482. name: "Back",
  22483. image: {
  22484. source: "./media/characters/violet-flor/back.svg",
  22485. extra: 1692 / 1630,
  22486. bottom: 20 / 1712
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Normal",
  22493. height: math.unit(172, "cm"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(6, "feet"),
  22503. weight: math.unit(220, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/lynn-rhea/front.svg",
  22507. extra: 310 / 273
  22508. }
  22509. },
  22510. back: {
  22511. height: math.unit(6, "feet"),
  22512. weight: math.unit(220, "lb"),
  22513. name: "Back",
  22514. image: {
  22515. source: "./media/characters/lynn-rhea/back.svg",
  22516. extra: 310 / 273
  22517. }
  22518. },
  22519. dicks: {
  22520. height: math.unit(0.9, "feet"),
  22521. name: "Dicks",
  22522. image: {
  22523. source: "./media/characters/lynn-rhea/dicks.svg"
  22524. }
  22525. },
  22526. slit: {
  22527. height: math.unit(0.4, "feet"),
  22528. name: "Slit",
  22529. image: {
  22530. source: "./media/characters/lynn-rhea/slit.svg"
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Micro",
  22537. height: math.unit(1, "inch")
  22538. },
  22539. {
  22540. name: "Macro",
  22541. height: math.unit(60, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Megamacro",
  22546. height: math.unit(2, "miles")
  22547. },
  22548. {
  22549. name: "Gigamacro",
  22550. height: math.unit(3, "earths")
  22551. },
  22552. {
  22553. name: "Galactic",
  22554. height: math.unit(0.8, "galaxies")
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22560. {
  22561. front: {
  22562. height: math.unit(1600, "feet"),
  22563. weight: math.unit(85758785169, "kg"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/valathos/front.svg",
  22567. extra: 1451 / 1339
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Macro",
  22574. height: math.unit(1600, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(7 + 5 / 12, "feet"),
  22584. weight: math.unit(300, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/azula/front.svg",
  22588. extra: 3208 / 2880,
  22589. bottom: 80.2 / 3277
  22590. }
  22591. },
  22592. back: {
  22593. height: math.unit(7 + 5 / 12, "feet"),
  22594. weight: math.unit(300, "lb"),
  22595. name: "Back",
  22596. image: {
  22597. source: "./media/characters/azula/back.svg",
  22598. extra: 3169 / 2822,
  22599. bottom: 150.6 / 3321
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(7 + 5 / 12, "feet"),
  22607. default: true
  22608. },
  22609. {
  22610. name: "Big",
  22611. height: math.unit(20, "feet")
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(5 + 1 / 12, "feet"),
  22620. weight: math.unit(110, "lb"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/rupert/front.svg",
  22624. extra: 1549 / 1495,
  22625. bottom: 54.2 / 1604.4
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Normal",
  22632. height: math.unit(5 + 1 / 12, "feet"),
  22633. default: true
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22639. {
  22640. front: {
  22641. height: math.unit(8 + 4 / 12, "feet"),
  22642. weight: math.unit(350, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/sheera-castellar/front.svg",
  22646. extra: 1957 / 1894,
  22647. bottom: 26.97 / 1975.017
  22648. }
  22649. },
  22650. side: {
  22651. height: math.unit(8 + 4 / 12, "feet"),
  22652. weight: math.unit(350, "lb"),
  22653. name: "Side",
  22654. image: {
  22655. source: "./media/characters/sheera-castellar/side.svg",
  22656. extra: 1957 / 1894
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(8 + 4 / 12, "feet"),
  22661. weight: math.unit(350, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/sheera-castellar/back.svg",
  22665. extra: 1957 / 1894
  22666. }
  22667. },
  22668. angled: {
  22669. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22670. weight: math.unit(350, "lb"),
  22671. name: "Angled",
  22672. image: {
  22673. source: "./media/characters/sheera-castellar/angled.svg",
  22674. extra: 1807 / 1707,
  22675. bottom: 68 / 1875
  22676. }
  22677. },
  22678. genitals: {
  22679. height: math.unit(2.2, "feet"),
  22680. name: "Genitals",
  22681. image: {
  22682. source: "./media/characters/sheera-castellar/genitals.svg"
  22683. }
  22684. },
  22685. taur: {
  22686. height: math.unit(10 + 6/12, "feet"),
  22687. name: "Taur",
  22688. image: {
  22689. source: "./media/characters/sheera-castellar/taur.svg",
  22690. extra: 2017/1909,
  22691. bottom: 185/2202
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(8 + 4 / 12, "feet")
  22699. },
  22700. {
  22701. name: "Macro",
  22702. height: math.unit(150, "feet"),
  22703. default: true
  22704. },
  22705. {
  22706. name: "Macro+",
  22707. height: math.unit(800, "feet")
  22708. },
  22709. ]
  22710. ))
  22711. characterMakers.push(() => makeCharacter(
  22712. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22713. {
  22714. front: {
  22715. height: math.unit(6, "feet"),
  22716. weight: math.unit(150, "lb"),
  22717. name: "Front",
  22718. image: {
  22719. source: "./media/characters/jaipur/front.svg",
  22720. extra: 3860 / 3731,
  22721. bottom: 287 / 4140
  22722. }
  22723. },
  22724. back: {
  22725. height: math.unit(6, "feet"),
  22726. weight: math.unit(150, "lb"),
  22727. name: "Back",
  22728. image: {
  22729. source: "./media/characters/jaipur/back.svg",
  22730. extra: 4060 / 3930,
  22731. bottom: 151 / 4200
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(1.85, "meters"),
  22739. default: true
  22740. },
  22741. {
  22742. name: "Macro",
  22743. height: math.unit(150, "meters")
  22744. },
  22745. {
  22746. name: "Macro+",
  22747. height: math.unit(0.5, "miles")
  22748. },
  22749. {
  22750. name: "Macro++",
  22751. height: math.unit(2.5, "miles")
  22752. },
  22753. {
  22754. name: "Macro+++",
  22755. height: math.unit(12, "miles")
  22756. },
  22757. {
  22758. name: "Macro++++",
  22759. height: math.unit(120, "miles")
  22760. },
  22761. {
  22762. name: "Macro+++++",
  22763. height: math.unit(1200, "miles")
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(6, "feet"),
  22772. weight: math.unit(150, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/sheila-wolf/front.svg",
  22776. extra: 1931 / 1808,
  22777. bottom: 29.5 / 1960
  22778. }
  22779. },
  22780. dick: {
  22781. height: math.unit(1.464, "feet"),
  22782. name: "Dick",
  22783. image: {
  22784. source: "./media/characters/sheila-wolf/dick.svg"
  22785. }
  22786. },
  22787. muzzle: {
  22788. height: math.unit(0.513, "feet"),
  22789. name: "Muzzle",
  22790. image: {
  22791. source: "./media/characters/sheila-wolf/muzzle.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Macro",
  22798. height: math.unit(70, "feet"),
  22799. default: true
  22800. },
  22801. ]
  22802. ))
  22803. characterMakers.push(() => makeCharacter(
  22804. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22805. {
  22806. front: {
  22807. height: math.unit(32, "meters"),
  22808. weight: math.unit(300000, "kg"),
  22809. name: "Front",
  22810. image: {
  22811. source: "./media/characters/almor/front.svg",
  22812. extra: 1408 / 1322,
  22813. bottom: 94.6 / 1506.5
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(32, "meters"),
  22821. default: true
  22822. },
  22823. ]
  22824. ))
  22825. characterMakers.push(() => makeCharacter(
  22826. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22827. {
  22828. front: {
  22829. height: math.unit(7, "feet"),
  22830. weight: math.unit(200, "lb"),
  22831. name: "Front",
  22832. image: {
  22833. source: "./media/characters/silver/front.svg",
  22834. extra: 472.1 / 450.5,
  22835. bottom: 26.5 / 499.424
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(7, "feet"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(800, "feet")
  22848. },
  22849. {
  22850. name: "Megamacro",
  22851. height: math.unit(250, "miles")
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(6, "feet"),
  22860. weight: math.unit(150, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/pliskin/front.svg",
  22864. extra: 1469 / 1359,
  22865. bottom: 70 / 1540
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Micro",
  22872. height: math.unit(3, "inches")
  22873. },
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(5 + 11 / 12, "feet"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(120, "feet")
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22887. {
  22888. front: {
  22889. height: math.unit(6, "feet"),
  22890. weight: math.unit(150, "lb"),
  22891. name: "Front",
  22892. image: {
  22893. source: "./media/characters/sammy/front.svg",
  22894. extra: 1193 / 1089,
  22895. bottom: 30.5 / 1226
  22896. }
  22897. },
  22898. },
  22899. [
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(1700, "feet"),
  22903. default: true
  22904. },
  22905. {
  22906. name: "Examacro",
  22907. height: math.unit(2.5e9, "lightyears")
  22908. },
  22909. ]
  22910. ))
  22911. characterMakers.push(() => makeCharacter(
  22912. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22913. {
  22914. front: {
  22915. height: math.unit(21, "meters"),
  22916. weight: math.unit(12, "tonnes"),
  22917. name: "Front",
  22918. image: {
  22919. source: "./media/characters/kuru/front.svg",
  22920. extra: 4301 / 3785,
  22921. bottom: 371.3 / 4691
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Macro",
  22928. height: math.unit(21, "meters"),
  22929. default: true
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22935. {
  22936. front: {
  22937. height: math.unit(23, "meters"),
  22938. weight: math.unit(12.2, "tonnes"),
  22939. name: "Front",
  22940. image: {
  22941. source: "./media/characters/rakka/front.svg",
  22942. extra: 4670 / 4169,
  22943. bottom: 301 / 4968.7
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Macro",
  22950. height: math.unit(23, "meters"),
  22951. default: true
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22957. {
  22958. front: {
  22959. height: math.unit(6, "feet"),
  22960. weight: math.unit(150, "lb"),
  22961. name: "Front",
  22962. image: {
  22963. source: "./media/characters/rhys-feline/front.svg",
  22964. extra: 2488 / 2308,
  22965. bottom: 35.67 / 2519.19
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Really Small",
  22972. height: math.unit(1, "nm")
  22973. },
  22974. {
  22975. name: "Micro",
  22976. height: math.unit(4, "inches")
  22977. },
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(4 + 10 / 12, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Macro",
  22985. height: math.unit(100, "feet")
  22986. },
  22987. {
  22988. name: "Megamacto",
  22989. height: math.unit(50, "miles")
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22995. {
  22996. side: {
  22997. height: math.unit(30, "feet"),
  22998. weight: math.unit(35000, "kg"),
  22999. name: "Side",
  23000. image: {
  23001. source: "./media/characters/alydar/side.svg",
  23002. extra: 234 / 222,
  23003. bottom: 6.5 / 241
  23004. }
  23005. },
  23006. front: {
  23007. height: math.unit(30, "feet"),
  23008. weight: math.unit(35000, "kg"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/alydar/front.svg",
  23012. extra: 223.37 / 210.2,
  23013. bottom: 22.3 / 246.76
  23014. }
  23015. },
  23016. top: {
  23017. height: math.unit(64.54, "feet"),
  23018. weight: math.unit(35000, "kg"),
  23019. name: "Top",
  23020. image: {
  23021. source: "./media/characters/alydar/top.svg"
  23022. }
  23023. },
  23024. anthro: {
  23025. height: math.unit(30, "feet"),
  23026. weight: math.unit(9000, "kg"),
  23027. name: "Anthro",
  23028. image: {
  23029. source: "./media/characters/alydar/anthro.svg",
  23030. extra: 432 / 421,
  23031. bottom: 7.18 / 440
  23032. }
  23033. },
  23034. maw: {
  23035. height: math.unit(11.693, "feet"),
  23036. name: "Maw",
  23037. image: {
  23038. source: "./media/characters/alydar/maw.svg"
  23039. }
  23040. },
  23041. head: {
  23042. height: math.unit(11.693, "feet"),
  23043. name: "Head",
  23044. image: {
  23045. source: "./media/characters/alydar/head.svg"
  23046. }
  23047. },
  23048. headAlt: {
  23049. height: math.unit(12.861, "feet"),
  23050. name: "Head (Alt)",
  23051. image: {
  23052. source: "./media/characters/alydar/head-alt.svg"
  23053. }
  23054. },
  23055. wing: {
  23056. height: math.unit(20.712, "feet"),
  23057. name: "Wing",
  23058. image: {
  23059. source: "./media/characters/alydar/wing.svg"
  23060. }
  23061. },
  23062. wingFeather: {
  23063. height: math.unit(9.662, "feet"),
  23064. name: "Wing Feather",
  23065. image: {
  23066. source: "./media/characters/alydar/wing-feather.svg"
  23067. }
  23068. },
  23069. countourFeather: {
  23070. height: math.unit(4.154, "feet"),
  23071. name: "Contour Feather",
  23072. image: {
  23073. source: "./media/characters/alydar/contour-feather.svg"
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Diplomatic",
  23080. height: math.unit(13, "feet"),
  23081. default: true
  23082. },
  23083. {
  23084. name: "Small",
  23085. height: math.unit(30, "feet")
  23086. },
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(95, "feet"),
  23090. default: true
  23091. },
  23092. {
  23093. name: "Large",
  23094. height: math.unit(285, "feet")
  23095. },
  23096. {
  23097. name: "Incomprehensible",
  23098. height: math.unit(450, "megameters")
  23099. },
  23100. ]
  23101. ))
  23102. characterMakers.push(() => makeCharacter(
  23103. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23104. {
  23105. side: {
  23106. height: math.unit(11, "feet"),
  23107. weight: math.unit(1750, "kg"),
  23108. name: "Side",
  23109. image: {
  23110. source: "./media/characters/selicia/side.svg",
  23111. extra: 440 / 396,
  23112. bottom: 24.8 / 465.979
  23113. }
  23114. },
  23115. maw: {
  23116. height: math.unit(4.665, "feet"),
  23117. name: "Maw",
  23118. image: {
  23119. source: "./media/characters/selicia/maw.svg"
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Normal",
  23126. height: math.unit(11, "feet"),
  23127. default: true
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23133. {
  23134. side: {
  23135. height: math.unit(2 + 6 / 12, "feet"),
  23136. weight: math.unit(30, "lb"),
  23137. name: "Side",
  23138. image: {
  23139. source: "./media/characters/layla/side.svg",
  23140. extra: 244 / 188,
  23141. bottom: 18.2 / 262.1
  23142. }
  23143. },
  23144. back: {
  23145. height: math.unit(2 + 6 / 12, "feet"),
  23146. weight: math.unit(30, "lb"),
  23147. name: "Back",
  23148. image: {
  23149. source: "./media/characters/layla/back.svg",
  23150. extra: 308 / 241.5,
  23151. bottom: 8.9 / 316.8
  23152. }
  23153. },
  23154. cumming: {
  23155. height: math.unit(2 + 6 / 12, "feet"),
  23156. weight: math.unit(30, "lb"),
  23157. name: "Cumming",
  23158. image: {
  23159. source: "./media/characters/layla/cumming.svg",
  23160. extra: 342 / 279,
  23161. bottom: 595 / 938
  23162. }
  23163. },
  23164. dickFlaccid: {
  23165. height: math.unit(2.595, "feet"),
  23166. name: "Flaccid Genitals",
  23167. image: {
  23168. source: "./media/characters/layla/dick-flaccid.svg"
  23169. }
  23170. },
  23171. dickErect: {
  23172. height: math.unit(2.359, "feet"),
  23173. name: "Erect Genitals",
  23174. image: {
  23175. source: "./media/characters/layla/dick-erect.svg"
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Micro",
  23182. height: math.unit(1, "inch")
  23183. },
  23184. {
  23185. name: "Small",
  23186. height: math.unit(1, "foot")
  23187. },
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(2 + 6 / 12, "feet"),
  23191. default: true
  23192. },
  23193. {
  23194. name: "Macro",
  23195. height: math.unit(200, "feet")
  23196. },
  23197. {
  23198. name: "Megamacro",
  23199. height: math.unit(1000, "miles")
  23200. },
  23201. {
  23202. name: "Planetary",
  23203. height: math.unit(8000, "miles")
  23204. },
  23205. {
  23206. name: "True Layla",
  23207. height: math.unit(200000 * 7, "multiverses")
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23213. {
  23214. back: {
  23215. height: math.unit(10.5, "feet"),
  23216. weight: math.unit(800, "lb"),
  23217. name: "Back",
  23218. image: {
  23219. source: "./media/characters/knox/back.svg",
  23220. extra: 1486 / 1089,
  23221. bottom: 107 / 1601.4
  23222. }
  23223. },
  23224. side: {
  23225. height: math.unit(10.5, "feet"),
  23226. weight: math.unit(800, "lb"),
  23227. name: "Side",
  23228. image: {
  23229. source: "./media/characters/knox/side.svg",
  23230. extra: 244 / 218,
  23231. bottom: 14 / 260
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Compact",
  23238. height: math.unit(10.5, "feet"),
  23239. default: true
  23240. },
  23241. {
  23242. name: "Dynamax",
  23243. height: math.unit(210, "feet")
  23244. },
  23245. {
  23246. name: "Full Macro",
  23247. height: math.unit(850, "feet")
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(6, "feet"),
  23256. weight: math.unit(152, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/shin-pikachu/front.svg",
  23260. extra: 1574 / 1480,
  23261. bottom: 53.3 / 1626
  23262. }
  23263. },
  23264. hand: {
  23265. height: math.unit(1.055, "feet"),
  23266. name: "Hand",
  23267. image: {
  23268. source: "./media/characters/shin-pikachu/hand.svg"
  23269. }
  23270. },
  23271. foot: {
  23272. height: math.unit(1.1, "feet"),
  23273. name: "Foot",
  23274. image: {
  23275. source: "./media/characters/shin-pikachu/foot.svg"
  23276. }
  23277. },
  23278. collar: {
  23279. height: math.unit(0.386, "feet"),
  23280. name: "Collar",
  23281. image: {
  23282. source: "./media/characters/shin-pikachu/collar.svg"
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Smallest",
  23289. height: math.unit(0.5, "inches")
  23290. },
  23291. {
  23292. name: "Micro",
  23293. height: math.unit(6, "inches")
  23294. },
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(6, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(150, "feet")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(28, "feet"),
  23311. weight: math.unit(10500, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/kayda/front.svg",
  23315. extra: 1536 / 1428,
  23316. bottom: 68.7 / 1603
  23317. }
  23318. },
  23319. back: {
  23320. height: math.unit(28, "feet"),
  23321. weight: math.unit(10500, "lb"),
  23322. name: "Back",
  23323. image: {
  23324. source: "./media/characters/kayda/back.svg",
  23325. extra: 1557 / 1464,
  23326. bottom: 39.5 / 1597.49
  23327. }
  23328. },
  23329. dick: {
  23330. height: math.unit(3.858, "feet"),
  23331. name: "Dick",
  23332. image: {
  23333. source: "./media/characters/kayda/dick.svg"
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Macro",
  23340. height: math.unit(28, "feet"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(10 + 11 / 12, "feet"),
  23350. weight: math.unit(1400, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/brian/front.svg",
  23354. extra: 737 / 692,
  23355. bottom: 55.4 / 785
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Normal",
  23362. height: math.unit(10 + 11 / 12, "feet"),
  23363. default: true
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(5 + 8 / 12, "feet"),
  23372. weight: math.unit(140, "lb"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/khemri/front.svg",
  23376. extra: 4780 / 4059,
  23377. bottom: 80.1 / 4859.25
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Micro",
  23384. height: math.unit(6, "inches")
  23385. },
  23386. {
  23387. name: "Normal",
  23388. height: math.unit(5 + 8 / 12, "feet"),
  23389. default: true
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23395. {
  23396. front: {
  23397. height: math.unit(13, "feet"),
  23398. weight: math.unit(1700, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/felix-braveheart/front.svg",
  23402. extra: 1222 / 1157,
  23403. bottom: 53.2 / 1280
  23404. }
  23405. },
  23406. back: {
  23407. height: math.unit(13, "feet"),
  23408. weight: math.unit(1700, "lb"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/felix-braveheart/back.svg",
  23412. extra: 1277 / 1203,
  23413. bottom: 50.2 / 1327
  23414. }
  23415. },
  23416. feral: {
  23417. height: math.unit(6, "feet"),
  23418. weight: math.unit(400, "lb"),
  23419. name: "Feral",
  23420. image: {
  23421. source: "./media/characters/felix-braveheart/feral.svg",
  23422. extra: 682 / 625,
  23423. bottom: 6.9 / 688
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(13, "feet"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23437. {
  23438. side: {
  23439. height: math.unit(5 + 11 / 12, "feet"),
  23440. weight: math.unit(1400, "lb"),
  23441. name: "Side",
  23442. image: {
  23443. source: "./media/characters/shadow-blade/side.svg",
  23444. extra: 1726 / 1267,
  23445. bottom: 58.4 / 1785
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(5 + 11 / 12, "feet"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(1 + 6 / 12, "feet"),
  23462. weight: math.unit(25, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/karla-halldor/front.svg",
  23466. extra: 1459 / 1383,
  23467. bottom: 12 / 1472
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(1 + 6 / 12, "feet"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(6 + 2 / 12, "feet"),
  23484. weight: math.unit(160, "lb"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/ariam/front.svg",
  23488. extra: 714 / 617,
  23489. bottom: 23.4 / 737,
  23490. }
  23491. },
  23492. squatting: {
  23493. height: math.unit(4.1, "feet"),
  23494. weight: math.unit(160, "lb"),
  23495. name: "Squatting",
  23496. image: {
  23497. source: "./media/characters/ariam/squatting.svg",
  23498. extra: 2617 / 2112,
  23499. bottom: 61.2 / 2681,
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(6 + 2 / 12, "feet"),
  23507. default: true
  23508. },
  23509. {
  23510. name: "Normal+",
  23511. height: math.unit(4, "meters")
  23512. },
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(50, "meters")
  23516. },
  23517. {
  23518. name: "Macro+",
  23519. height: math.unit(100, "meters")
  23520. },
  23521. {
  23522. name: "Megamacro",
  23523. height: math.unit(20, "km")
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(1.67, "meters"),
  23532. weight: math.unit(140, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23536. extra: 438 / 410,
  23537. bottom: 0.75 / 439
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Shrunken",
  23544. height: math.unit(7.6, "cm")
  23545. },
  23546. {
  23547. name: "Human Scale",
  23548. height: math.unit(1.67, "meters")
  23549. },
  23550. {
  23551. name: "Wolxi Scale",
  23552. height: math.unit(36.7, "meters"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(1.73, "meters"),
  23562. weight: math.unit(240, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/izue-two-mothers/front.svg",
  23566. extra: 469 / 437,
  23567. bottom: 1.24 / 470.6
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Shrunken",
  23574. height: math.unit(7.86, "cm")
  23575. },
  23576. {
  23577. name: "Human Scale",
  23578. height: math.unit(1.73, "meters")
  23579. },
  23580. {
  23581. name: "Wolxi Scale",
  23582. height: math.unit(38, "meters"),
  23583. default: true
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(1.55, "meters"),
  23592. weight: math.unit(120, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/teeku-love-shack/front.svg",
  23596. extra: 387 / 362,
  23597. bottom: 1.51 / 388
  23598. }
  23599. },
  23600. },
  23601. [
  23602. {
  23603. name: "Shrunken",
  23604. height: math.unit(7, "cm")
  23605. },
  23606. {
  23607. name: "Human Scale",
  23608. height: math.unit(1.55, "meters")
  23609. },
  23610. {
  23611. name: "Wolxi Scale",
  23612. height: math.unit(34.1, "meters"),
  23613. default: true
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(1.83, "meters"),
  23622. weight: math.unit(135, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/dejma-the-red/front.svg",
  23626. extra: 480 / 458,
  23627. bottom: 1.8 / 482
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Shrunken",
  23634. height: math.unit(8.3, "cm")
  23635. },
  23636. {
  23637. name: "Human Scale",
  23638. height: math.unit(1.83, "meters")
  23639. },
  23640. {
  23641. name: "Wolxi Scale",
  23642. height: math.unit(40, "meters"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23649. {
  23650. front: {
  23651. height: math.unit(1.78, "meters"),
  23652. weight: math.unit(65, "kg"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/aki/front.svg",
  23656. extra: 452 / 415
  23657. }
  23658. },
  23659. frontNsfw: {
  23660. height: math.unit(1.78, "meters"),
  23661. weight: math.unit(65, "kg"),
  23662. name: "Front (NSFW)",
  23663. image: {
  23664. source: "./media/characters/aki/front-nsfw.svg",
  23665. extra: 452 / 415
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(1.78, "meters"),
  23670. weight: math.unit(65, "kg"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/aki/back.svg",
  23674. extra: 452 / 415
  23675. }
  23676. },
  23677. rump: {
  23678. height: math.unit(2.05, "feet"),
  23679. name: "Rump",
  23680. image: {
  23681. source: "./media/characters/aki/rump.svg"
  23682. }
  23683. },
  23684. dick: {
  23685. height: math.unit(0.95, "feet"),
  23686. name: "Dick",
  23687. image: {
  23688. source: "./media/characters/aki/dick.svg"
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Micro",
  23695. height: math.unit(15, "cm")
  23696. },
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(178, "cm"),
  23700. default: true
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(214, "m")
  23705. },
  23706. {
  23707. name: "Macro+",
  23708. height: math.unit(534, "m")
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(5 + 5 / 12, "feet"),
  23717. weight: math.unit(120, "lb"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/ari/front.svg",
  23721. extra: 714.5 / 682,
  23722. bottom: 8 / 722.5
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(5 + 5 / 12, "feet")
  23730. },
  23731. {
  23732. name: "Macro",
  23733. height: math.unit(100, "feet"),
  23734. default: true
  23735. },
  23736. {
  23737. name: "Megamacro",
  23738. height: math.unit(100, "miles")
  23739. },
  23740. {
  23741. name: "Gigamacro",
  23742. height: math.unit(80000, "miles")
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23748. {
  23749. side: {
  23750. height: math.unit(9, "feet"),
  23751. weight: math.unit(400, "kg"),
  23752. name: "Side",
  23753. image: {
  23754. source: "./media/characters/bolt/side.svg",
  23755. extra: 1126 / 896,
  23756. bottom: 60 / 1187.3,
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Micro",
  23763. height: math.unit(5, "inches")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(9, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(700, "feet")
  23773. },
  23774. {
  23775. name: "Max Size",
  23776. height: math.unit(1.52e22, "yottameters")
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(4.53, "meters"),
  23785. weight: math.unit(3, "tons"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/draekon-sylviar/front.svg",
  23789. extra: 1228 / 1068,
  23790. bottom: 41 / 1270
  23791. }
  23792. },
  23793. tail: {
  23794. height: math.unit(1.772, "meter"),
  23795. name: "Tail",
  23796. image: {
  23797. source: "./media/characters/draekon-sylviar/tail.svg"
  23798. }
  23799. },
  23800. head: {
  23801. height: math.unit(1.331, "meter"),
  23802. name: "Head",
  23803. image: {
  23804. source: "./media/characters/draekon-sylviar/head.svg"
  23805. }
  23806. },
  23807. hand: {
  23808. height: math.unit(0.564, "meter"),
  23809. name: "Hand",
  23810. image: {
  23811. source: "./media/characters/draekon-sylviar/hand.svg"
  23812. }
  23813. },
  23814. foot: {
  23815. height: math.unit(0.621, "meter"),
  23816. name: "Foot",
  23817. image: {
  23818. source: "./media/characters/draekon-sylviar/foot.svg",
  23819. bottom: 32 / 324
  23820. }
  23821. },
  23822. dick: {
  23823. height: math.unit(61, "cm"),
  23824. name: "Dick",
  23825. image: {
  23826. source: "./media/characters/draekon-sylviar/dick.svg"
  23827. }
  23828. },
  23829. dickseparated: {
  23830. height: math.unit(61, "cm"),
  23831. name: "Dick-separated",
  23832. image: {
  23833. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Small",
  23840. height: math.unit(4.53 / 2, "meters"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Normal",
  23845. height: math.unit(4.53, "meters"),
  23846. default: true
  23847. },
  23848. {
  23849. name: "Large",
  23850. height: math.unit(4.53 * 2, "meters"),
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(6 + 2 / 12, "feet"),
  23859. weight: math.unit(180, "lb"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/brawler/front.svg",
  23863. extra: 3301 / 3027,
  23864. bottom: 138 / 3439
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Normal",
  23871. height: math.unit(6 + 2 / 12, "feet"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(11, "feet"),
  23881. weight: math.unit(1000, "lb"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/alex/front.svg",
  23885. bottom: 44.5 / 620
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Micro",
  23892. height: math.unit(5, "inches")
  23893. },
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(11, "feet"),
  23897. default: true
  23898. },
  23899. {
  23900. name: "Macro",
  23901. height: math.unit(9.5e9, "feet")
  23902. },
  23903. {
  23904. name: "Max Size",
  23905. height: math.unit(1.4e283, "yottameters")
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23911. {
  23912. female: {
  23913. height: math.unit(29.9, "m"),
  23914. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23915. name: "Female",
  23916. image: {
  23917. source: "./media/characters/zenari/female.svg",
  23918. extra: 3281.6 / 3217,
  23919. bottom: 72.2 / 3353
  23920. }
  23921. },
  23922. male: {
  23923. height: math.unit(27.7, "m"),
  23924. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23925. name: "Male",
  23926. image: {
  23927. source: "./media/characters/zenari/male.svg",
  23928. extra: 3008 / 2991,
  23929. bottom: 54.6 / 3069
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Macro",
  23936. height: math.unit(29.7, "meters"),
  23937. default: true
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23943. {
  23944. female: {
  23945. height: math.unit(23.8, "m"),
  23946. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23947. name: "Female",
  23948. image: {
  23949. source: "./media/characters/mactarian/female.svg",
  23950. extra: 2662 / 2569,
  23951. bottom: 73 / 2736
  23952. }
  23953. },
  23954. male: {
  23955. height: math.unit(23.8, "m"),
  23956. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23957. name: "Male",
  23958. image: {
  23959. source: "./media/characters/mactarian/male.svg",
  23960. extra: 2673 / 2600,
  23961. bottom: 76 / 2750
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(23.8, "meters"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23975. {
  23976. female: {
  23977. height: math.unit(19.3, "m"),
  23978. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23979. name: "Female",
  23980. image: {
  23981. source: "./media/characters/umok/female.svg",
  23982. extra: 2186 / 2078,
  23983. bottom: 87 / 2277
  23984. }
  23985. },
  23986. male: {
  23987. height: math.unit(19.5, "m"),
  23988. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23989. name: "Male",
  23990. image: {
  23991. source: "./media/characters/umok/male.svg",
  23992. extra: 2233 / 2140,
  23993. bottom: 24.4 / 2258
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(19.3, "meters"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24007. {
  24008. female: {
  24009. height: math.unit(26.15, "m"),
  24010. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24011. name: "Female",
  24012. image: {
  24013. source: "./media/characters/joraxian/female.svg",
  24014. extra: 2912 / 2824,
  24015. bottom: 36 / 2956
  24016. }
  24017. },
  24018. male: {
  24019. height: math.unit(25.4, "m"),
  24020. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24021. name: "Male",
  24022. image: {
  24023. source: "./media/characters/joraxian/male.svg",
  24024. extra: 2877 / 2721,
  24025. bottom: 82 / 2967
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(26.15, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24039. {
  24040. female: {
  24041. height: math.unit(21.6, "m"),
  24042. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24043. name: "Female",
  24044. image: {
  24045. source: "./media/characters/sthara/female.svg",
  24046. extra: 2516 / 2347,
  24047. bottom: 21.5 / 2537
  24048. }
  24049. },
  24050. male: {
  24051. height: math.unit(24, "m"),
  24052. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24053. name: "Male",
  24054. image: {
  24055. source: "./media/characters/sthara/male.svg",
  24056. extra: 2732 / 2607,
  24057. bottom: 23 / 2732
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Macro",
  24064. height: math.unit(21.6, "meters"),
  24065. default: true
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(6 + 4 / 12, "feet"),
  24074. weight: math.unit(175, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/luka-bryzant/front.svg",
  24078. extra: 311 / 289,
  24079. bottom: 4 / 315
  24080. }
  24081. },
  24082. back: {
  24083. height: math.unit(6 + 4 / 12, "feet"),
  24084. weight: math.unit(175, "lb"),
  24085. name: "Back",
  24086. image: {
  24087. source: "./media/characters/luka-bryzant/back.svg",
  24088. extra: 311 / 289,
  24089. bottom: 3.8 / 313.7
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Micro",
  24096. height: math.unit(10, "inches")
  24097. },
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(6 + 4 / 12, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Large",
  24105. height: math.unit(12, "feet")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(5 + 7 / 12, "feet"),
  24114. weight: math.unit(185, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/aman-aquila/front.svg",
  24118. extra: 1013 / 976,
  24119. bottom: 45.6 / 1057
  24120. }
  24121. },
  24122. side: {
  24123. height: math.unit(5 + 7 / 12, "feet"),
  24124. weight: math.unit(185, "lb"),
  24125. name: "Side",
  24126. image: {
  24127. source: "./media/characters/aman-aquila/side.svg",
  24128. extra: 1054 / 1011,
  24129. bottom: 15 / 1070
  24130. }
  24131. },
  24132. back: {
  24133. height: math.unit(5 + 7 / 12, "feet"),
  24134. weight: math.unit(185, "lb"),
  24135. name: "Back",
  24136. image: {
  24137. source: "./media/characters/aman-aquila/back.svg",
  24138. extra: 1026 / 970,
  24139. bottom: 12 / 1039
  24140. }
  24141. },
  24142. head: {
  24143. height: math.unit(1.211, "feet"),
  24144. name: "Head",
  24145. image: {
  24146. source: "./media/characters/aman-aquila/head.svg",
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Minimicro",
  24153. height: math.unit(0.057, "inches")
  24154. },
  24155. {
  24156. name: "Micro",
  24157. height: math.unit(7, "inches")
  24158. },
  24159. {
  24160. name: "Mini",
  24161. height: math.unit(3 + 7 / 12, "feet")
  24162. },
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(5 + 7 / 12, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(157 + 7 / 12, "feet")
  24171. },
  24172. {
  24173. name: "Megamacro",
  24174. height: math.unit(1557 + 7 / 12, "feet")
  24175. },
  24176. {
  24177. name: "Gigamacro",
  24178. height: math.unit(15557 + 7 / 12, "feet")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(3 + 2 / 12, "inches"),
  24187. weight: math.unit(0.3, "ounces"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/hiphae/front.svg",
  24191. extra: 1931 / 1683,
  24192. bottom: 24 / 1955
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(3 + 1 / 2, "inches"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24206. {
  24207. front: {
  24208. height: math.unit(5 + 10 / 12, "feet"),
  24209. weight: math.unit(165, "lb"),
  24210. name: "Front",
  24211. image: {
  24212. source: "./media/characters/nicky/front.svg",
  24213. extra: 3144 / 2886,
  24214. bottom: 45.6 / 3192
  24215. }
  24216. },
  24217. back: {
  24218. height: math.unit(5 + 10 / 12, "feet"),
  24219. weight: math.unit(165, "lb"),
  24220. name: "Back",
  24221. image: {
  24222. source: "./media/characters/nicky/back.svg",
  24223. extra: 3055 / 2804,
  24224. bottom: 28.4 / 3087
  24225. }
  24226. },
  24227. frontclothed: {
  24228. height: math.unit(5 + 10 / 12, "feet"),
  24229. weight: math.unit(165, "lb"),
  24230. name: "Front-clothed",
  24231. image: {
  24232. source: "./media/characters/nicky/front-clothed.svg",
  24233. extra: 3184.9 / 2926.9,
  24234. bottom: 86.5 / 3239.9
  24235. }
  24236. },
  24237. foot: {
  24238. height: math.unit(1.16, "feet"),
  24239. name: "Foot",
  24240. image: {
  24241. source: "./media/characters/nicky/foot.svg"
  24242. }
  24243. },
  24244. feet: {
  24245. height: math.unit(1.34, "feet"),
  24246. name: "Feet",
  24247. image: {
  24248. source: "./media/characters/nicky/feet.svg"
  24249. }
  24250. },
  24251. maw: {
  24252. height: math.unit(0.9, "feet"),
  24253. name: "Maw",
  24254. image: {
  24255. source: "./media/characters/nicky/maw.svg"
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(5 + 10 / 12, "feet"),
  24263. default: true
  24264. },
  24265. {
  24266. name: "Macro",
  24267. height: math.unit(60, "feet")
  24268. },
  24269. {
  24270. name: "Megamacro",
  24271. height: math.unit(1, "mile")
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24277. {
  24278. side: {
  24279. height: math.unit(10, "feet"),
  24280. weight: math.unit(600, "lb"),
  24281. name: "Side",
  24282. image: {
  24283. source: "./media/characters/blair/side.svg",
  24284. bottom: 16.6 / 475,
  24285. extra: 458 / 431
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Micro",
  24292. height: math.unit(8, "inches")
  24293. },
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(10, "feet"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Macro",
  24301. height: math.unit(180, "feet")
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(5 + 4 / 12, "feet"),
  24310. weight: math.unit(125, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/fisher/front.svg",
  24314. extra: 444 / 390,
  24315. bottom: 2 / 444.8
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Micro",
  24322. height: math.unit(4, "inches")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(5 + 4 / 12, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(100, "feet")
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6.71, "feet"),
  24340. weight: math.unit(200, "lb"),
  24341. capacity: math.unit(1000000, "people"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/gliss/front.svg",
  24345. extra: 2347 / 2231,
  24346. bottom: 113 / 2462
  24347. }
  24348. },
  24349. hammerspaceSize: {
  24350. height: math.unit(6.71 * 717, "feet"),
  24351. weight: math.unit(200, "lb"),
  24352. capacity: math.unit(1000000, "people"),
  24353. name: "Hammerspace Size",
  24354. image: {
  24355. source: "./media/characters/gliss/front.svg",
  24356. extra: 2347 / 2231,
  24357. bottom: 113 / 2462
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Normal",
  24364. height: math.unit(6.71, "feet"),
  24365. default: true
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24371. {
  24372. side: {
  24373. height: math.unit(1.44, "m"),
  24374. weight: math.unit(80, "kg"),
  24375. name: "Side",
  24376. image: {
  24377. source: "./media/characters/dune-anderson/side.svg",
  24378. bottom: 49 / 1426
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Wolf-sized",
  24385. height: math.unit(1.44, "meters")
  24386. },
  24387. {
  24388. name: "Normal",
  24389. height: math.unit(5.05, "meters"),
  24390. default: true
  24391. },
  24392. {
  24393. name: "Big",
  24394. height: math.unit(14.4, "meters")
  24395. },
  24396. {
  24397. name: "Huge",
  24398. height: math.unit(144, "meters")
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(7, "feet"),
  24407. weight: math.unit(425, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/hind/front.svg",
  24411. extra: 2091 / 1860,
  24412. bottom: 129 / 2220
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(7, "feet"),
  24417. weight: math.unit(425, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/hind/back.svg",
  24421. extra: 2091 / 1860,
  24422. bottom: 24.6 / 2309
  24423. }
  24424. },
  24425. tail: {
  24426. height: math.unit(2.8, "feet"),
  24427. name: "Tail",
  24428. image: {
  24429. source: "./media/characters/hind/tail.svg"
  24430. }
  24431. },
  24432. head: {
  24433. height: math.unit(2.55, "feet"),
  24434. name: "Head",
  24435. image: {
  24436. source: "./media/characters/hind/head.svg"
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "XS",
  24443. height: math.unit(0.7, "feet")
  24444. },
  24445. {
  24446. name: "Normal",
  24447. height: math.unit(7, "feet"),
  24448. default: true
  24449. },
  24450. {
  24451. name: "XL",
  24452. height: math.unit(70, "feet")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(6, "feet"),
  24461. weight: math.unit(150, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/dylan-skaven/front.svg",
  24465. extra: 2318 / 2063,
  24466. bottom: 93.4 / 2410
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Nano",
  24473. height: math.unit(1, "mm")
  24474. },
  24475. {
  24476. name: "Micro",
  24477. height: math.unit(1, "cm")
  24478. },
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(2.1, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(7 + 5 / 12, "feet"),
  24491. weight: math.unit(357, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/solex-draconov/front.svg",
  24495. extra: 1993 / 1865,
  24496. bottom: 117 / 2111
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Natural Height",
  24503. height: math.unit(7 + 5 / 12, "feet"),
  24504. default: true
  24505. },
  24506. {
  24507. name: "Macro",
  24508. height: math.unit(350, "feet")
  24509. },
  24510. {
  24511. name: "Macro+",
  24512. height: math.unit(1000, "feet")
  24513. },
  24514. {
  24515. name: "Megamacro",
  24516. height: math.unit(20, "km")
  24517. },
  24518. {
  24519. name: "Megamacro+",
  24520. height: math.unit(1000, "km")
  24521. },
  24522. {
  24523. name: "Gigamacro",
  24524. height: math.unit(2.5, "Gm")
  24525. },
  24526. {
  24527. name: "Teramacro",
  24528. height: math.unit(15, "Tm")
  24529. },
  24530. {
  24531. name: "Galactic",
  24532. height: math.unit(30, "Zm")
  24533. },
  24534. {
  24535. name: "Universal",
  24536. height: math.unit(21000, "Ym")
  24537. },
  24538. {
  24539. name: "Omniversal",
  24540. height: math.unit(9.861e50, "Ym")
  24541. },
  24542. {
  24543. name: "Existential",
  24544. height: math.unit(1e300, "meters")
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24550. {
  24551. side: {
  24552. height: math.unit(25, "feet"),
  24553. weight: math.unit(90000, "lb"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/mandarax/side.svg",
  24557. extra: 614 / 332,
  24558. bottom: 55 / 630
  24559. }
  24560. },
  24561. head: {
  24562. height: math.unit(11.4, "feet"),
  24563. name: "Head",
  24564. image: {
  24565. source: "./media/characters/mandarax/head.svg"
  24566. }
  24567. },
  24568. belly: {
  24569. height: math.unit(33, "feet"),
  24570. name: "Belly",
  24571. capacity: math.unit(500, "people"),
  24572. image: {
  24573. source: "./media/characters/mandarax/belly.svg"
  24574. }
  24575. },
  24576. dick: {
  24577. height: math.unit(8.46, "feet"),
  24578. name: "Dick",
  24579. image: {
  24580. source: "./media/characters/mandarax/dick.svg"
  24581. }
  24582. },
  24583. top: {
  24584. height: math.unit(28, "meters"),
  24585. name: "Top",
  24586. image: {
  24587. source: "./media/characters/mandarax/top.svg"
  24588. }
  24589. },
  24590. },
  24591. [
  24592. {
  24593. name: "Normal",
  24594. height: math.unit(25, "feet"),
  24595. default: true
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24601. {
  24602. front: {
  24603. height: math.unit(5, "feet"),
  24604. weight: math.unit(90, "lb"),
  24605. name: "Front",
  24606. image: {
  24607. source: "./media/characters/pixil/front.svg",
  24608. extra: 2000 / 1618,
  24609. bottom: 12.3 / 2011
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Normal",
  24616. height: math.unit(5, "feet"),
  24617. default: true
  24618. },
  24619. {
  24620. name: "Megamacro",
  24621. height: math.unit(10, "miles"),
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24627. {
  24628. front: {
  24629. height: math.unit(7 + 2 / 12, "feet"),
  24630. weight: math.unit(200, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/angel/front.svg",
  24634. extra: 1830 / 1737,
  24635. bottom: 22.6 / 1854,
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(7 + 2 / 12, "feet"),
  24643. default: true
  24644. },
  24645. {
  24646. name: "Macro",
  24647. height: math.unit(1000, "feet")
  24648. },
  24649. {
  24650. name: "Megamacro",
  24651. height: math.unit(2, "miles")
  24652. },
  24653. {
  24654. name: "Gigamacro",
  24655. height: math.unit(20, "earths")
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(5, "feet"),
  24664. weight: math.unit(180, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/mekana/front.svg",
  24668. extra: 1671 / 1605,
  24669. bottom: 3.5 / 1691
  24670. }
  24671. },
  24672. side: {
  24673. height: math.unit(5, "feet"),
  24674. weight: math.unit(180, "lb"),
  24675. name: "Side",
  24676. image: {
  24677. source: "./media/characters/mekana/side.svg",
  24678. extra: 1671 / 1605,
  24679. bottom: 3.5 / 1691
  24680. }
  24681. },
  24682. back: {
  24683. height: math.unit(5, "feet"),
  24684. weight: math.unit(180, "lb"),
  24685. name: "Back",
  24686. image: {
  24687. source: "./media/characters/mekana/back.svg",
  24688. extra: 1671 / 1605,
  24689. bottom: 3.5 / 1691
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(5, "feet"),
  24697. default: true
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(4 + 6 / 12, "feet"),
  24706. weight: math.unit(80, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/pixie/front.svg",
  24710. extra: 1924 / 1825,
  24711. bottom: 22.4 / 1946
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(4 + 6 / 12, "feet"),
  24719. default: true
  24720. },
  24721. {
  24722. name: "Macro",
  24723. height: math.unit(40, "feet")
  24724. },
  24725. ]
  24726. ))
  24727. characterMakers.push(() => makeCharacter(
  24728. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24729. {
  24730. front: {
  24731. height: math.unit(2.1, "meters"),
  24732. weight: math.unit(200, "lb"),
  24733. name: "Front",
  24734. image: {
  24735. source: "./media/characters/the-lascivious/front.svg",
  24736. extra: 1 / 0.893,
  24737. bottom: 3.5 / 573.7
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Human Scale",
  24744. height: math.unit(2.1, "meters")
  24745. },
  24746. {
  24747. name: "Wolxi Scale",
  24748. height: math.unit(46.2, "m"),
  24749. default: true
  24750. },
  24751. {
  24752. name: "Boinker of Buildings",
  24753. height: math.unit(10, "km")
  24754. },
  24755. {
  24756. name: "Shagger of Skyscrapers",
  24757. height: math.unit(40, "km")
  24758. },
  24759. {
  24760. name: "Banger of Boroughs",
  24761. height: math.unit(4000, "km")
  24762. },
  24763. {
  24764. name: "Screwer of States",
  24765. height: math.unit(100000, "km")
  24766. },
  24767. {
  24768. name: "Pounder of Planets",
  24769. height: math.unit(2000000, "km")
  24770. },
  24771. ]
  24772. ))
  24773. characterMakers.push(() => makeCharacter(
  24774. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24775. {
  24776. front: {
  24777. height: math.unit(6, "feet"),
  24778. weight: math.unit(150, "lb"),
  24779. name: "Front",
  24780. image: {
  24781. source: "./media/characters/aj/front.svg",
  24782. extra: 2039 / 1562,
  24783. bottom: 40 / 2079
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(11 + 6 / 12, "feet"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Megamacro",
  24795. height: math.unit(60, "megameters")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24801. {
  24802. side: {
  24803. height: math.unit(31 + 8 / 12, "feet"),
  24804. weight: math.unit(75000, "kg"),
  24805. name: "Side",
  24806. image: {
  24807. source: "./media/characters/koros/side.svg",
  24808. extra: 1442 / 1297,
  24809. bottom: 122.7 / 1562
  24810. }
  24811. },
  24812. dicksKingsCrown: {
  24813. height: math.unit(6, "feet"),
  24814. name: "Dicks (King's Crown)",
  24815. image: {
  24816. source: "./media/characters/koros/dicks-kings-crown.svg"
  24817. }
  24818. },
  24819. dicksTailSet: {
  24820. height: math.unit(3, "feet"),
  24821. name: "Dicks (Tail Set)",
  24822. image: {
  24823. source: "./media/characters/koros/dicks-tail-set.svg"
  24824. }
  24825. },
  24826. dickCumming: {
  24827. height: math.unit(7.98, "feet"),
  24828. name: "Dick (Cumming)",
  24829. image: {
  24830. source: "./media/characters/koros/dick-cumming.svg"
  24831. }
  24832. },
  24833. dicksBack: {
  24834. height: math.unit(5.9, "feet"),
  24835. name: "Dicks (Back)",
  24836. image: {
  24837. source: "./media/characters/koros/dicks-back.svg"
  24838. }
  24839. },
  24840. dicksFront: {
  24841. height: math.unit(3.72, "feet"),
  24842. name: "Dicks (Front)",
  24843. image: {
  24844. source: "./media/characters/koros/dicks-front.svg"
  24845. }
  24846. },
  24847. dicksPeeking: {
  24848. height: math.unit(3.0, "feet"),
  24849. name: "Dicks (Peeking)",
  24850. image: {
  24851. source: "./media/characters/koros/dicks-peeking.svg"
  24852. }
  24853. },
  24854. eye: {
  24855. height: math.unit(1.7, "feet"),
  24856. name: "Eye",
  24857. image: {
  24858. source: "./media/characters/koros/eye.svg"
  24859. }
  24860. },
  24861. headFront: {
  24862. height: math.unit(11.69, "feet"),
  24863. name: "Head (Front)",
  24864. image: {
  24865. source: "./media/characters/koros/head-front.svg"
  24866. }
  24867. },
  24868. headSide: {
  24869. height: math.unit(14, "feet"),
  24870. name: "Head (Side)",
  24871. image: {
  24872. source: "./media/characters/koros/head-side.svg"
  24873. }
  24874. },
  24875. leg: {
  24876. height: math.unit(17, "feet"),
  24877. name: "Leg",
  24878. image: {
  24879. source: "./media/characters/koros/leg.svg"
  24880. }
  24881. },
  24882. mawSide: {
  24883. height: math.unit(12.8, "feet"),
  24884. name: "Maw (Side)",
  24885. image: {
  24886. source: "./media/characters/koros/maw-side.svg"
  24887. }
  24888. },
  24889. mawSpitting: {
  24890. height: math.unit(17, "feet"),
  24891. name: "Maw (Spitting)",
  24892. image: {
  24893. source: "./media/characters/koros/maw-spitting.svg"
  24894. }
  24895. },
  24896. slit: {
  24897. height: math.unit(2.8, "feet"),
  24898. name: "Slit",
  24899. image: {
  24900. source: "./media/characters/koros/slit.svg"
  24901. }
  24902. },
  24903. stomach: {
  24904. height: math.unit(6.8, "feet"),
  24905. capacity: math.unit(20, "people"),
  24906. name: "Stomach",
  24907. image: {
  24908. source: "./media/characters/koros/stomach.svg"
  24909. }
  24910. },
  24911. wingspanBottom: {
  24912. height: math.unit(114, "feet"),
  24913. name: "Wingspan (Bottom)",
  24914. image: {
  24915. source: "./media/characters/koros/wingspan-bottom.svg"
  24916. }
  24917. },
  24918. wingspanTop: {
  24919. height: math.unit(104, "feet"),
  24920. name: "Wingspan (Top)",
  24921. image: {
  24922. source: "./media/characters/koros/wingspan-top.svg"
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Normal",
  24929. height: math.unit(31 + 8 / 12, "feet"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(18 + 5 / 12, "feet"),
  24939. weight: math.unit(3750, "kg"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/vexx/front.svg",
  24943. extra: 426 / 396,
  24944. bottom: 31.5 / 458
  24945. }
  24946. },
  24947. maw: {
  24948. height: math.unit(6, "feet"),
  24949. name: "Maw",
  24950. image: {
  24951. source: "./media/characters/vexx/maw.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(18 + 5 / 12, "feet"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(17 + 6 / 12, "feet"),
  24968. weight: math.unit(150, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/baadra/front.svg",
  24972. extra: 3137 / 2890,
  24973. bottom: 168.4 / 3305
  24974. }
  24975. },
  24976. back: {
  24977. height: math.unit(17 + 6 / 12, "feet"),
  24978. weight: math.unit(150, "lb"),
  24979. name: "Back",
  24980. image: {
  24981. source: "./media/characters/baadra/back.svg",
  24982. extra: 3142 / 2890,
  24983. bottom: 220 / 3371
  24984. }
  24985. },
  24986. head: {
  24987. height: math.unit(5.45, "feet"),
  24988. name: "Head",
  24989. image: {
  24990. source: "./media/characters/baadra/head.svg"
  24991. }
  24992. },
  24993. headAngry: {
  24994. height: math.unit(4.95, "feet"),
  24995. name: "Head (Angry)",
  24996. image: {
  24997. source: "./media/characters/baadra/head-angry.svg"
  24998. }
  24999. },
  25000. headOpen: {
  25001. height: math.unit(6, "feet"),
  25002. name: "Head (Open)",
  25003. image: {
  25004. source: "./media/characters/baadra/head-open.svg"
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(17 + 6 / 12, "feet"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(7 + 3 / 12, "feet"),
  25021. weight: math.unit(180, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/juri/front.svg",
  25025. extra: 1401 / 1237,
  25026. bottom: 18.5 / 1418
  25027. }
  25028. },
  25029. side: {
  25030. height: math.unit(7 + 3 / 12, "feet"),
  25031. weight: math.unit(180, "lb"),
  25032. name: "Side",
  25033. image: {
  25034. source: "./media/characters/juri/side.svg",
  25035. extra: 1424 / 1242,
  25036. bottom: 18.5 / 1447
  25037. }
  25038. },
  25039. sitting: {
  25040. height: math.unit(6, "feet"),
  25041. weight: math.unit(180, "lb"),
  25042. name: "Sitting",
  25043. image: {
  25044. source: "./media/characters/juri/sitting.svg",
  25045. extra: 1270 / 1143,
  25046. bottom: 100 / 1343
  25047. }
  25048. },
  25049. back: {
  25050. height: math.unit(7 + 3 / 12, "feet"),
  25051. weight: math.unit(180, "lb"),
  25052. name: "Back",
  25053. image: {
  25054. source: "./media/characters/juri/back.svg",
  25055. extra: 1377 / 1240,
  25056. bottom: 23.7 / 1405
  25057. }
  25058. },
  25059. maw: {
  25060. height: math.unit(2.8, "feet"),
  25061. name: "Maw",
  25062. image: {
  25063. source: "./media/characters/juri/maw.svg"
  25064. }
  25065. },
  25066. stomach: {
  25067. height: math.unit(0.89, "feet"),
  25068. capacity: math.unit(4, "liters"),
  25069. name: "Stomach",
  25070. image: {
  25071. source: "./media/characters/juri/stomach.svg"
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(7 + 3 / 12, "feet"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25085. {
  25086. fox: {
  25087. height: math.unit(5 + 6 / 12, "feet"),
  25088. weight: math.unit(140, "lb"),
  25089. name: "Fox",
  25090. image: {
  25091. source: "./media/characters/maxene-sita/fox.svg",
  25092. extra: 146 / 138,
  25093. bottom: 2.1 / 148.19
  25094. }
  25095. },
  25096. foxLaying: {
  25097. height: math.unit(1.70, "feet"),
  25098. weight: math.unit(140, "lb"),
  25099. name: "Fox (Laying)",
  25100. image: {
  25101. source: "./media/characters/maxene-sita/fox-laying.svg",
  25102. extra: 910 / 572,
  25103. bottom: 71 / 981
  25104. }
  25105. },
  25106. kitsune: {
  25107. height: math.unit(10, "feet"),
  25108. weight: math.unit(800, "lb"),
  25109. name: "Kitsune",
  25110. image: {
  25111. source: "./media/characters/maxene-sita/kitsune.svg",
  25112. extra: 185 / 176,
  25113. bottom: 4.7 / 189.9
  25114. }
  25115. },
  25116. hellhound: {
  25117. height: math.unit(10, "feet"),
  25118. weight: math.unit(700, "lb"),
  25119. name: "Hellhound",
  25120. image: {
  25121. source: "./media/characters/maxene-sita/hellhound.svg",
  25122. extra: 1600 / 1545,
  25123. bottom: 81 / 1681
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(5 + 6 / 12, "feet"),
  25131. default: true
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25137. {
  25138. front: {
  25139. height: math.unit(3 + 4 / 12, "feet"),
  25140. weight: math.unit(70, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/maia/front.svg",
  25144. extra: 227 / 219.5,
  25145. bottom: 40 / 267
  25146. }
  25147. },
  25148. back: {
  25149. height: math.unit(3 + 4 / 12, "feet"),
  25150. weight: math.unit(70, "lb"),
  25151. name: "Back",
  25152. image: {
  25153. source: "./media/characters/maia/back.svg",
  25154. extra: 237 / 225
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(3 + 4 / 12, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(5 + 10 / 12, "feet"),
  25171. weight: math.unit(197, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/jabaro/front.svg",
  25175. extra: 225 / 216,
  25176. bottom: 5.06 / 230
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(5 + 10 / 12, "feet"),
  25181. weight: math.unit(197, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/jabaro/back.svg",
  25185. extra: 225 / 219,
  25186. bottom: 1.9 / 227
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(5 + 10 / 12, "feet"),
  25194. default: true
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(5 + 8 / 12, "feet"),
  25203. weight: math.unit(139, "lb"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/risa/front.svg",
  25207. extra: 270 / 260,
  25208. bottom: 11.2 / 282
  25209. }
  25210. },
  25211. back: {
  25212. height: math.unit(5 + 8 / 12, "feet"),
  25213. weight: math.unit(139, "lb"),
  25214. name: "Back",
  25215. image: {
  25216. source: "./media/characters/risa/back.svg",
  25217. extra: 264 / 255,
  25218. bottom: 4 / 268
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5 + 8 / 12, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(2 + 11 / 12, "feet"),
  25235. weight: math.unit(30, "lb"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/weatley/front.svg",
  25239. bottom: 10.7 / 414,
  25240. extra: 403.5 / 362
  25241. }
  25242. },
  25243. back: {
  25244. height: math.unit(2 + 11 / 12, "feet"),
  25245. weight: math.unit(30, "lb"),
  25246. name: "Back",
  25247. image: {
  25248. source: "./media/characters/weatley/back.svg",
  25249. bottom: 10.7 / 414,
  25250. extra: 403.5 / 362
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(2 + 11 / 12, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(5 + 2 / 12, "feet"),
  25267. weight: math.unit(50, "kg"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/mercury-crescent/front.svg",
  25271. extra: 1088 / 1033,
  25272. bottom: 18.9 / 1109
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(5 + 2 / 12, "feet"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(2, "feet"),
  25289. weight: math.unit(15, "kg"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/diamond-jones/front.svg",
  25293. bottom: 16 / 568
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(2, "feet"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(3, "feet"),
  25310. weight: math.unit(30, "kg"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/sweet-bit/front.svg",
  25314. extra: 675 / 567,
  25315. bottom: 27.7 / 703
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(3, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25329. {
  25330. side: {
  25331. height: math.unit(9.178, "feet"),
  25332. weight: math.unit(500, "lb"),
  25333. name: "Side",
  25334. image: {
  25335. source: "./media/characters/umbrazen/side.svg",
  25336. extra: 1730 / 1473,
  25337. bottom: 34.6 / 1765
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(9.178, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(10, "feet"),
  25354. weight: math.unit(750, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/arlist/front.svg",
  25358. extra: 961 / 778,
  25359. bottom: 6.2 / 986
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(10, "feet"),
  25367. default: true
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(5 + 1 / 12, "feet"),
  25376. weight: math.unit(110, "lb"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/aradel/front.svg",
  25380. extra: 324 / 303,
  25381. bottom: 3.6 / 329.4
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(5 + 1 / 12, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(3 + 8 / 12, "feet"),
  25398. weight: math.unit(50, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/serryn/front.svg",
  25402. extra: 1792 / 1656,
  25403. bottom: 43.5 / 1840
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(3 + 8 / 12, "feet"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Xavier Thyme" },
  25417. {
  25418. front: {
  25419. height: math.unit(7 + 10 / 12, "feet"),
  25420. weight: math.unit(255, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/xavier-thyme/front.svg",
  25424. extra: 3733 / 3642,
  25425. bottom: 131 / 3869
  25426. }
  25427. },
  25428. frontRaven: {
  25429. height: math.unit(7 + 10 / 12, "feet"),
  25430. weight: math.unit(255, "lb"),
  25431. name: "Front (Raven)",
  25432. image: {
  25433. source: "./media/characters/xavier-thyme/front-raven.svg",
  25434. extra: 4385 / 3642,
  25435. bottom: 131 / 4517
  25436. }
  25437. },
  25438. },
  25439. [
  25440. {
  25441. name: "Normal",
  25442. height: math.unit(7 + 10 / 12, "feet"),
  25443. default: true
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25449. {
  25450. front: {
  25451. height: math.unit(1.6, "m"),
  25452. weight: math.unit(50, "kg"),
  25453. name: "Front",
  25454. image: {
  25455. source: "./media/characters/kiki/front.svg",
  25456. extra: 4682 / 3610,
  25457. bottom: 115 / 4777
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(1.6, "meters"),
  25465. default: true
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(50, "m"),
  25474. weight: math.unit(500, "tonnes"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/ryoko/front.svg",
  25478. extra: 4632 / 3926,
  25479. bottom: 193 / 4823
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(50, "meters"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25493. {
  25494. front: {
  25495. height: math.unit(30, "m"),
  25496. weight: math.unit(22, "tonnes"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/elio/front.svg",
  25500. extra: 4582 / 3720,
  25501. bottom: 236 / 4828
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(30, "meters"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(6 + 3 / 12, "feet"),
  25518. weight: math.unit(120, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/azura/front.svg",
  25522. extra: 1149 / 1135,
  25523. bottom: 45 / 1194
  25524. }
  25525. },
  25526. frontClothed: {
  25527. height: math.unit(6 + 3 / 12, "feet"),
  25528. weight: math.unit(120, "lb"),
  25529. name: "Front (Clothed)",
  25530. image: {
  25531. source: "./media/characters/azura/front-clothed.svg",
  25532. extra: 1149 / 1135,
  25533. bottom: 45 / 1194
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(6 + 3 / 12, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Macro",
  25545. height: math.unit(20 + 6 / 12, "feet")
  25546. },
  25547. {
  25548. name: "Megamacro",
  25549. height: math.unit(12, "miles")
  25550. },
  25551. {
  25552. name: "Gigamacro",
  25553. height: math.unit(10000, "miles")
  25554. },
  25555. {
  25556. name: "Teramacro",
  25557. height: math.unit(900000, "miles")
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(12, "feet"),
  25566. weight: math.unit(1, "ton"),
  25567. capacity: math.unit(660000, "gallons"),
  25568. name: "Front",
  25569. image: {
  25570. source: "./media/characters/zeus/front.svg",
  25571. extra: 5005 / 4717,
  25572. bottom: 363 / 5388
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Normal",
  25579. height: math.unit(12, "feet")
  25580. },
  25581. {
  25582. name: "Preferred Size",
  25583. height: math.unit(0.5, "miles"),
  25584. default: true
  25585. },
  25586. {
  25587. name: "Giga Horse",
  25588. height: math.unit(300, "miles")
  25589. },
  25590. {
  25591. name: "Riding Planets",
  25592. height: math.unit(30, "megameters")
  25593. },
  25594. {
  25595. name: "Cosmic Giant",
  25596. height: math.unit(3, "zettameters")
  25597. },
  25598. {
  25599. name: "Breeding God",
  25600. height: math.unit(9.92e22, "yottameters")
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25606. {
  25607. side: {
  25608. height: math.unit(9, "feet"),
  25609. weight: math.unit(1500, "kg"),
  25610. name: "Side",
  25611. image: {
  25612. source: "./media/characters/fang/side.svg",
  25613. extra: 924 / 866,
  25614. bottom: 47.5 / 972.3
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(9, "feet"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Macro",
  25626. height: math.unit(75 + 6 / 12, "feet")
  25627. },
  25628. {
  25629. name: "Teramacro",
  25630. height: math.unit(50000, "miles")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(10, "feet"),
  25639. weight: math.unit(2, "tons"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/rekhit/front.svg",
  25643. extra: 2796 / 2590,
  25644. bottom: 225 / 3022
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(10, "feet"),
  25652. default: true
  25653. },
  25654. {
  25655. name: "Macro",
  25656. height: math.unit(500, "feet")
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Dahlia Verrick" },
  25662. {
  25663. front: {
  25664. height: math.unit(7 + 6.451 / 12, "feet"),
  25665. weight: math.unit(310, "lb"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/dahlia-verrick/front.svg",
  25669. extra: 1488 / 1365,
  25670. bottom: 6.2 / 1495
  25671. }
  25672. },
  25673. back: {
  25674. height: math.unit(7 + 6.451 / 12, "feet"),
  25675. weight: math.unit(310, "lb"),
  25676. name: "Back",
  25677. image: {
  25678. source: "./media/characters/dahlia-verrick/back.svg",
  25679. extra: 1472 / 1351,
  25680. bottom: 5.28 / 1477
  25681. }
  25682. },
  25683. frontBusiness: {
  25684. height: math.unit(7 + 6.451 / 12, "feet"),
  25685. weight: math.unit(200, "lb"),
  25686. name: "Front (Business)",
  25687. image: {
  25688. source: "./media/characters/dahlia-verrick/front-business.svg",
  25689. extra: 1478 / 1381,
  25690. bottom: 5.5 / 1484
  25691. }
  25692. },
  25693. frontCasual: {
  25694. height: math.unit(7 + 6.451 / 12, "feet"),
  25695. weight: math.unit(200, "lb"),
  25696. name: "Front (Casual)",
  25697. image: {
  25698. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25699. extra: 1478 / 1381,
  25700. bottom: 5.5 / 1484
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Travel-Sized",
  25707. height: math.unit(7.45, "inches")
  25708. },
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(7 + 6.451 / 12, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Hitting the Town",
  25716. height: math.unit(37 + 8 / 12, "feet")
  25717. },
  25718. {
  25719. name: "Stomp in the Suburbs",
  25720. height: math.unit(964 + 9.728 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Sit on the City",
  25724. height: math.unit(61747 + 10.592 / 12, "feet")
  25725. },
  25726. {
  25727. name: "Glomp the Globe",
  25728. height: math.unit(252919327 + 4.832 / 12, "feet")
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(6 + 4 / 12, "feet"),
  25737. weight: math.unit(320, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/balina-mahigan/front.svg",
  25741. extra: 447 / 428,
  25742. bottom: 18 / 466
  25743. }
  25744. },
  25745. back: {
  25746. height: math.unit(6 + 4 / 12, "feet"),
  25747. weight: math.unit(320, "lb"),
  25748. name: "Back",
  25749. image: {
  25750. source: "./media/characters/balina-mahigan/back.svg",
  25751. extra: 445 / 428,
  25752. bottom: 4.07 / 448
  25753. }
  25754. },
  25755. arm: {
  25756. height: math.unit(1.88, "feet"),
  25757. name: "Arm",
  25758. image: {
  25759. source: "./media/characters/balina-mahigan/arm.svg"
  25760. }
  25761. },
  25762. backPort: {
  25763. height: math.unit(0.685, "feet"),
  25764. name: "Back Port",
  25765. image: {
  25766. source: "./media/characters/balina-mahigan/back-port.svg"
  25767. }
  25768. },
  25769. hoofpaw: {
  25770. height: math.unit(1.41, "feet"),
  25771. name: "Hoofpaw",
  25772. image: {
  25773. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25774. }
  25775. },
  25776. leftHandBack: {
  25777. height: math.unit(0.938, "feet"),
  25778. name: "Left Hand (Back)",
  25779. image: {
  25780. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25781. }
  25782. },
  25783. leftHandFront: {
  25784. height: math.unit(0.938, "feet"),
  25785. name: "Left Hand (Front)",
  25786. image: {
  25787. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25788. }
  25789. },
  25790. rightHandBack: {
  25791. height: math.unit(0.95, "feet"),
  25792. name: "Right Hand (Back)",
  25793. image: {
  25794. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25795. }
  25796. },
  25797. rightHandFront: {
  25798. height: math.unit(0.95, "feet"),
  25799. name: "Right Hand (Front)",
  25800. image: {
  25801. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(6 + 4 / 12, "feet"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(6, "feet"),
  25818. weight: math.unit(320, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/balina-mejeri/front.svg",
  25822. extra: 517 / 488,
  25823. bottom: 44.2 / 561
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(6 + 4 / 12, "feet")
  25831. },
  25832. {
  25833. name: "Business",
  25834. height: math.unit(155, "feet"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25841. {
  25842. kneeling: {
  25843. height: math.unit(6 + 4 / 12, "feet"),
  25844. weight: math.unit(300 * 20, "lb"),
  25845. name: "Kneeling",
  25846. image: {
  25847. source: "./media/characters/balbarian/kneeling.svg",
  25848. extra: 922 / 862,
  25849. bottom: 42.4 / 965
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(6 + 4 / 12, "feet")
  25857. },
  25858. {
  25859. name: "Treasured",
  25860. height: math.unit(18 + 9 / 12, "feet"),
  25861. default: true
  25862. },
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(900, "feet")
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(6 + 4 / 12, "feet"),
  25874. weight: math.unit(325, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/balina-amarini/front.svg",
  25878. extra: 415 / 403,
  25879. bottom: 19 / 433.4
  25880. }
  25881. },
  25882. back: {
  25883. height: math.unit(6 + 4 / 12, "feet"),
  25884. weight: math.unit(325, "lb"),
  25885. name: "Back",
  25886. image: {
  25887. source: "./media/characters/balina-amarini/back.svg",
  25888. extra: 415 / 403,
  25889. bottom: 13.5 / 432
  25890. }
  25891. },
  25892. overdrive: {
  25893. height: math.unit(6 + 4 / 12, "feet"),
  25894. weight: math.unit(400, "lb"),
  25895. name: "Overdrive",
  25896. image: {
  25897. source: "./media/characters/balina-amarini/overdrive.svg",
  25898. extra: 269 / 259,
  25899. bottom: 12 / 282
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Boom",
  25906. height: math.unit(9 + 10 / 12, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(280, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25917. {
  25918. goddess: {
  25919. height: math.unit(600, "feet"),
  25920. weight: math.unit(2000000, "tons"),
  25921. name: "Goddess",
  25922. image: {
  25923. source: "./media/characters/lady-kubwa/goddess.svg",
  25924. extra: 1240.5 / 1223,
  25925. bottom: 22 / 1263
  25926. }
  25927. },
  25928. goddesser: {
  25929. height: math.unit(900, "feet"),
  25930. weight: math.unit(20000000, "lb"),
  25931. name: "Goddess-er",
  25932. image: {
  25933. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25934. extra: 899 / 888,
  25935. bottom: 12.6 / 912
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Macro",
  25942. height: math.unit(600, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Megamacro",
  25947. height: math.unit(250, "miles")
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(7 + 7 / 12, "feet"),
  25956. weight: math.unit(250, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/tala-grovehorn/front.svg",
  25960. extra: 2636 / 2525,
  25961. bottom: 147 / 2781
  25962. }
  25963. },
  25964. back: {
  25965. height: math.unit(7 + 7 / 12, "feet"),
  25966. weight: math.unit(250, "lb"),
  25967. name: "Back",
  25968. image: {
  25969. source: "./media/characters/tala-grovehorn/back.svg",
  25970. extra: 2635 / 2539,
  25971. bottom: 100 / 2732.8
  25972. }
  25973. },
  25974. mouth: {
  25975. height: math.unit(1.15, "feet"),
  25976. name: "Mouth",
  25977. image: {
  25978. source: "./media/characters/tala-grovehorn/mouth.svg"
  25979. }
  25980. },
  25981. dick: {
  25982. height: math.unit(2.36, "feet"),
  25983. name: "Dick",
  25984. image: {
  25985. source: "./media/characters/tala-grovehorn/dick.svg"
  25986. }
  25987. },
  25988. slit: {
  25989. height: math.unit(0.61, "feet"),
  25990. name: "Slit",
  25991. image: {
  25992. source: "./media/characters/tala-grovehorn/slit.svg"
  25993. }
  25994. },
  25995. },
  25996. [
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(7 + 7 / 12, "feet"),
  26004. weight: math.unit(225, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/epona/front.svg",
  26008. extra: 2445 / 2290,
  26009. bottom: 251 / 2696
  26010. }
  26011. },
  26012. back: {
  26013. height: math.unit(7 + 7 / 12, "feet"),
  26014. weight: math.unit(225, "lb"),
  26015. name: "Back",
  26016. image: {
  26017. source: "./media/characters/epona/back.svg",
  26018. extra: 2546 / 2408,
  26019. bottom: 44 / 2589
  26020. }
  26021. },
  26022. genitals: {
  26023. height: math.unit(1.5, "feet"),
  26024. name: "Genitals",
  26025. image: {
  26026. source: "./media/characters/epona/genitals.svg"
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(7 + 7 / 12, "feet"),
  26034. default: true
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(7, "feet"),
  26043. weight: math.unit(518, "lb"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/avia-bloodbourn/front.svg",
  26047. extra: 1466 / 1350,
  26048. bottom: 65 / 1527
  26049. }
  26050. },
  26051. },
  26052. [
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(9.35, "feet"),
  26060. weight: math.unit(600, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/amera/front.svg",
  26064. extra: 891 / 818,
  26065. bottom: 30 / 922.7
  26066. }
  26067. },
  26068. back: {
  26069. height: math.unit(9.35, "feet"),
  26070. weight: math.unit(600, "lb"),
  26071. name: "Back",
  26072. image: {
  26073. source: "./media/characters/amera/back.svg",
  26074. extra: 876 / 824,
  26075. bottom: 6.8 / 884
  26076. }
  26077. },
  26078. dick: {
  26079. height: math.unit(2.14, "feet"),
  26080. name: "Dick",
  26081. image: {
  26082. source: "./media/characters/amera/dick.svg"
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(9.35, "feet"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26096. {
  26097. kneeling: {
  26098. height: math.unit(3 + 4 / 12, "feet"),
  26099. weight: math.unit(90, "lb"),
  26100. name: "Kneeling",
  26101. image: {
  26102. source: "./media/characters/rosewen/kneeling.svg",
  26103. extra: 1835 / 1571,
  26104. bottom: 27.7 / 1862
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(3 + 4 / 12, "feet"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(5 + 10 / 12, "feet"),
  26121. weight: math.unit(200, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/sabah/front.svg",
  26125. extra: 849 / 763,
  26126. bottom: 33.9 / 881
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(5 + 10 / 12, "feet"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26140. {
  26141. front: {
  26142. height: math.unit(3 + 5 / 12, "feet"),
  26143. weight: math.unit(40, "kg"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/purple-flame/front.svg",
  26147. extra: 1577 / 1412,
  26148. bottom: 97 / 1694
  26149. }
  26150. },
  26151. frontDressed: {
  26152. height: math.unit(3 + 5 / 12, "feet"),
  26153. weight: math.unit(40, "kg"),
  26154. name: "Front (Dressed)",
  26155. image: {
  26156. source: "./media/characters/purple-flame/front-dressed.svg",
  26157. extra: 1577 / 1412,
  26158. bottom: 97 / 1694
  26159. }
  26160. },
  26161. headphones: {
  26162. height: math.unit(0.85, "feet"),
  26163. name: "Headphones",
  26164. image: {
  26165. source: "./media/characters/purple-flame/headphones.svg"
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Really Small",
  26172. height: math.unit(5, "cm")
  26173. },
  26174. {
  26175. name: "Micro",
  26176. height: math.unit(1 + 5 / 12, "feet")
  26177. },
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(3 + 5 / 12, "feet"),
  26181. default: true
  26182. },
  26183. {
  26184. name: "Minimacro",
  26185. height: math.unit(125, "feet")
  26186. },
  26187. {
  26188. name: "Macro",
  26189. height: math.unit(0.5, "miles")
  26190. },
  26191. {
  26192. name: "Megamacro",
  26193. height: math.unit(50, "miles")
  26194. },
  26195. {
  26196. name: "Gigantic",
  26197. height: math.unit(750, "miles")
  26198. },
  26199. {
  26200. name: "Planetary",
  26201. height: math.unit(15000, "miles")
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(14, "feet"),
  26210. weight: math.unit(959, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/arsenal/front.svg",
  26214. extra: 2357 / 2157,
  26215. bottom: 93 / 2458
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(14, "feet"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(6, "feet"),
  26232. weight: math.unit(150, "lb"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/adira/front.svg",
  26236. extra: 1078 / 1029,
  26237. bottom: 87 / 1166
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Micro",
  26244. height: math.unit(4, "inches"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Macro",
  26249. height: math.unit(50, "feet")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(16, "feet"),
  26258. weight: math.unit(1000, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/grim/front.svg",
  26262. extra: 622 / 614,
  26263. bottom: 18.1 / 642
  26264. }
  26265. },
  26266. back: {
  26267. height: math.unit(16, "feet"),
  26268. weight: math.unit(1000, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/grim/back.svg",
  26272. extra: 610.6 / 602,
  26273. bottom: 40.8 / 652
  26274. }
  26275. },
  26276. hunched: {
  26277. height: math.unit(9.75, "feet"),
  26278. weight: math.unit(1000, "lb"),
  26279. name: "Hunched",
  26280. image: {
  26281. source: "./media/characters/grim/hunched.svg",
  26282. extra: 304 / 297,
  26283. bottom: 35.4 / 394
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Normal",
  26290. height: math.unit(16, "feet"),
  26291. default: true
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(2.3, "meters"),
  26300. weight: math.unit(300, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/sinja/front-sfw.svg",
  26304. extra: 1393 / 1294,
  26305. bottom: 70 / 1463
  26306. }
  26307. },
  26308. frontNsfw: {
  26309. height: math.unit(2.3, "meters"),
  26310. weight: math.unit(300, "lb"),
  26311. name: "Front (NSFW)",
  26312. image: {
  26313. source: "./media/characters/sinja/front-nsfw.svg",
  26314. extra: 1393 / 1294,
  26315. bottom: 70 / 1463
  26316. }
  26317. },
  26318. back: {
  26319. height: math.unit(2.3, "meters"),
  26320. weight: math.unit(300, "lb"),
  26321. name: "Back",
  26322. image: {
  26323. source: "./media/characters/sinja/back.svg",
  26324. extra: 1393 / 1294,
  26325. bottom: 70 / 1463
  26326. }
  26327. },
  26328. head: {
  26329. height: math.unit(1.771, "feet"),
  26330. name: "Head",
  26331. image: {
  26332. source: "./media/characters/sinja/head.svg"
  26333. }
  26334. },
  26335. slit: {
  26336. height: math.unit(0.8, "feet"),
  26337. name: "Slit",
  26338. image: {
  26339. source: "./media/characters/sinja/slit.svg"
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(2.3, "meters")
  26347. },
  26348. {
  26349. name: "Macro",
  26350. height: math.unit(91, "meters"),
  26351. default: true
  26352. },
  26353. {
  26354. name: "Megamacro",
  26355. height: math.unit(91440, "meters")
  26356. },
  26357. {
  26358. name: "Gigamacro",
  26359. height: math.unit(60960000, "meters")
  26360. },
  26361. {
  26362. name: "Teramacro",
  26363. height: math.unit(9144000000, "meters")
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26369. {
  26370. front: {
  26371. height: math.unit(1.7, "meters"),
  26372. weight: math.unit(130, "lb"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/kyu/front.svg",
  26376. extra: 415 / 395,
  26377. bottom: 5 / 420
  26378. }
  26379. },
  26380. head: {
  26381. height: math.unit(1.75, "feet"),
  26382. name: "Head",
  26383. image: {
  26384. source: "./media/characters/kyu/head.svg"
  26385. }
  26386. },
  26387. foot: {
  26388. height: math.unit(0.81, "feet"),
  26389. name: "Foot",
  26390. image: {
  26391. source: "./media/characters/kyu/foot.svg"
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Normal",
  26398. height: math.unit(1.7, "meters")
  26399. },
  26400. {
  26401. name: "Macro",
  26402. height: math.unit(131, "feet"),
  26403. default: true
  26404. },
  26405. {
  26406. name: "Megamacro",
  26407. height: math.unit(91440, "meters")
  26408. },
  26409. {
  26410. name: "Gigamacro",
  26411. height: math.unit(60960000, "meters")
  26412. },
  26413. {
  26414. name: "Teramacro",
  26415. height: math.unit(9144000000, "meters")
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26421. {
  26422. front: {
  26423. height: math.unit(7 + 1 / 12, "feet"),
  26424. weight: math.unit(250, "lb"),
  26425. name: "Front",
  26426. image: {
  26427. source: "./media/characters/joey/front.svg",
  26428. extra: 1791 / 1537,
  26429. bottom: 28 / 1816
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Micro",
  26436. height: math.unit(3, "inches")
  26437. },
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(7 + 1 / 12, "feet"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(165, "cm"),
  26450. weight: math.unit(140, "lb"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/sam-evans/front.svg",
  26454. extra: 3417 / 3230,
  26455. bottom: 41.3 / 3417
  26456. }
  26457. },
  26458. frontSixTails: {
  26459. height: math.unit(165, "cm"),
  26460. weight: math.unit(140, "lb"),
  26461. name: "Front-six-tails",
  26462. image: {
  26463. source: "./media/characters/sam-evans/front-six-tails.svg",
  26464. extra: 3417 / 3230,
  26465. bottom: 41.3 / 3417
  26466. }
  26467. },
  26468. back: {
  26469. height: math.unit(165, "cm"),
  26470. weight: math.unit(140, "lb"),
  26471. name: "Back",
  26472. image: {
  26473. source: "./media/characters/sam-evans/back.svg",
  26474. extra: 3227 / 3032,
  26475. bottom: 6.8 / 3234
  26476. }
  26477. },
  26478. face: {
  26479. height: math.unit(0.68, "feet"),
  26480. name: "Face",
  26481. image: {
  26482. source: "./media/characters/sam-evans/face.svg"
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(165, "cm"),
  26490. default: true
  26491. },
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(100, "meters")
  26495. },
  26496. {
  26497. name: "Macro+",
  26498. height: math.unit(800, "meters")
  26499. },
  26500. {
  26501. name: "Macro++",
  26502. height: math.unit(3, "km")
  26503. },
  26504. {
  26505. name: "Macro+++",
  26506. height: math.unit(30, "km")
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(10, "feet"),
  26515. weight: math.unit(750, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/juliet-a/front.svg",
  26519. extra: 1766 / 1720,
  26520. bottom: 43 / 1809
  26521. }
  26522. },
  26523. back: {
  26524. height: math.unit(10, "feet"),
  26525. weight: math.unit(750, "lb"),
  26526. name: "Back",
  26527. image: {
  26528. source: "./media/characters/juliet-a/back.svg",
  26529. extra: 1781 / 1734,
  26530. bottom: 35 / 1810,
  26531. }
  26532. },
  26533. },
  26534. [
  26535. {
  26536. name: "Normal",
  26537. height: math.unit(10, "feet"),
  26538. default: true
  26539. },
  26540. {
  26541. name: "Dragon Form",
  26542. height: math.unit(250, "feet")
  26543. },
  26544. {
  26545. name: "Macro",
  26546. height: math.unit(1000, "feet")
  26547. },
  26548. {
  26549. name: "Megamacro",
  26550. height: math.unit(10000, "feet")
  26551. }
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26556. {
  26557. regular: {
  26558. height: math.unit(7 + 3 / 12, "feet"),
  26559. weight: math.unit(260, "lb"),
  26560. name: "Regular",
  26561. image: {
  26562. source: "./media/characters/wild/regular.svg",
  26563. extra: 97.45 / 92,
  26564. bottom: 6.8 / 104.3
  26565. }
  26566. },
  26567. biggums: {
  26568. height: math.unit(8 + 6 / 12, "feet"),
  26569. weight: math.unit(425, "lb"),
  26570. name: "Biggums",
  26571. image: {
  26572. source: "./media/characters/wild/biggums.svg",
  26573. extra: 97.45 / 92,
  26574. bottom: 7.5 / 132.34
  26575. }
  26576. },
  26577. mawRegular: {
  26578. height: math.unit(1.24, "feet"),
  26579. name: "Maw (Regular)",
  26580. image: {
  26581. source: "./media/characters/wild/maw.svg"
  26582. }
  26583. },
  26584. mawBiggums: {
  26585. height: math.unit(1.47, "feet"),
  26586. name: "Maw (Biggums)",
  26587. image: {
  26588. source: "./media/characters/wild/maw.svg"
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(7 + 3 / 12, "feet"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26602. {
  26603. front: {
  26604. height: math.unit(2.5, "meters"),
  26605. weight: math.unit(200, "kg"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/vidar/front.svg",
  26609. extra: 2994 / 2795,
  26610. bottom: 56 / 3061
  26611. }
  26612. },
  26613. back: {
  26614. height: math.unit(2.5, "meters"),
  26615. weight: math.unit(200, "kg"),
  26616. name: "Back",
  26617. image: {
  26618. source: "./media/characters/vidar/back.svg",
  26619. extra: 3131 / 2928,
  26620. bottom: 13.5 / 3141.5
  26621. }
  26622. },
  26623. feral: {
  26624. height: math.unit(2.5, "meters"),
  26625. weight: math.unit(2000, "kg"),
  26626. name: "Feral",
  26627. image: {
  26628. source: "./media/characters/vidar/feral.svg",
  26629. extra: 2790 / 1765,
  26630. bottom: 6 / 2796
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(2.5, "meters"),
  26638. default: true
  26639. },
  26640. {
  26641. name: "Macro",
  26642. height: math.unit(100, "meters")
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(5 + 9 / 12, "feet"),
  26651. weight: math.unit(120, "lb"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/ash/front.svg",
  26655. extra: 2189 / 1961,
  26656. bottom: 5.2 / 2194
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(5 + 9 / 12, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(9, "feet"),
  26673. weight: math.unit(10000, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/gygabite/front.svg",
  26677. bottom: 31.7 / 537.8,
  26678. extra: 505 / 370
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(9, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(12, "feet"),
  26695. weight: math.unit(35000, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/p0tat0/front.svg",
  26699. extra: 1065 / 921,
  26700. bottom: 55.7 / 1121.25
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(12, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26714. {
  26715. side: {
  26716. height: math.unit(6.5, "feet"),
  26717. weight: math.unit(800, "lb"),
  26718. name: "Side",
  26719. image: {
  26720. source: "./media/characters/dusk/side.svg",
  26721. extra: 615 / 373,
  26722. bottom: 53 / 664
  26723. }
  26724. },
  26725. sitting: {
  26726. height: math.unit(7, "feet"),
  26727. weight: math.unit(800, "lb"),
  26728. name: "Sitting",
  26729. image: {
  26730. source: "./media/characters/dusk/sitting.svg",
  26731. extra: 753 / 425,
  26732. bottom: 33 / 774
  26733. }
  26734. },
  26735. head: {
  26736. height: math.unit(6.1, "feet"),
  26737. name: "Head",
  26738. image: {
  26739. source: "./media/characters/dusk/head.svg"
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(7, "feet"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(15, "feet"),
  26756. weight: math.unit(7000, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/jay-direwolf/front.svg",
  26760. extra: 1810 / 1732,
  26761. bottom: 66 / 1892
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(15, "feet"),
  26769. default: true
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26775. {
  26776. front: {
  26777. height: math.unit(4 + 9 / 12, "feet"),
  26778. weight: math.unit(130, "lb"),
  26779. name: "Front",
  26780. image: {
  26781. source: "./media/characters/anchovie/front.svg",
  26782. extra: 382 / 350,
  26783. bottom: 25 / 409
  26784. }
  26785. },
  26786. back: {
  26787. height: math.unit(4 + 9 / 12, "feet"),
  26788. weight: math.unit(130, "lb"),
  26789. name: "Back",
  26790. image: {
  26791. source: "./media/characters/anchovie/back.svg",
  26792. extra: 385 / 352,
  26793. bottom: 16.6 / 402
  26794. }
  26795. },
  26796. frontDressed: {
  26797. height: math.unit(4 + 9 / 12, "feet"),
  26798. weight: math.unit(130, "lb"),
  26799. name: "Front (Dressed)",
  26800. image: {
  26801. source: "./media/characters/anchovie/front-dressed.svg",
  26802. extra: 382 / 350,
  26803. bottom: 25 / 409
  26804. }
  26805. },
  26806. backDressed: {
  26807. height: math.unit(4 + 9 / 12, "feet"),
  26808. weight: math.unit(130, "lb"),
  26809. name: "Back (Dressed)",
  26810. image: {
  26811. source: "./media/characters/anchovie/back-dressed.svg",
  26812. extra: 385 / 352,
  26813. bottom: 16.6 / 402
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Micro",
  26820. height: math.unit(6.4, "inches")
  26821. },
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(4 + 9 / 12, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(2, "meters"),
  26834. weight: math.unit(180, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/acidrenamon/front.svg",
  26838. extra: 987 / 890,
  26839. bottom: 22.8 / 1009
  26840. }
  26841. },
  26842. back: {
  26843. height: math.unit(2, "meters"),
  26844. weight: math.unit(180, "lb"),
  26845. name: "Back",
  26846. image: {
  26847. source: "./media/characters/acidrenamon/back.svg",
  26848. extra: 983 / 891,
  26849. bottom: 8.4 / 992
  26850. }
  26851. },
  26852. head: {
  26853. height: math.unit(1.92, "feet"),
  26854. name: "Head",
  26855. image: {
  26856. source: "./media/characters/acidrenamon/head.svg"
  26857. }
  26858. },
  26859. rump: {
  26860. height: math.unit(1.72, "feet"),
  26861. name: "Rump",
  26862. image: {
  26863. source: "./media/characters/acidrenamon/rump.svg"
  26864. }
  26865. },
  26866. tail: {
  26867. height: math.unit(4.2, "feet"),
  26868. name: "Tail",
  26869. image: {
  26870. source: "./media/characters/acidrenamon/tail.svg"
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(2, "meters"),
  26878. default: true
  26879. },
  26880. {
  26881. name: "Minimacro",
  26882. height: math.unit(7, "meters")
  26883. },
  26884. {
  26885. name: "Macro",
  26886. height: math.unit(200, "meters")
  26887. },
  26888. {
  26889. name: "Gigamacro",
  26890. height: math.unit(0.2, "earths")
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(6, "feet"),
  26899. weight: math.unit(150, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/kenzie-lee/front.svg",
  26903. extra: 1525 / 1465,
  26904. bottom: 45 / 1570
  26905. }
  26906. },
  26907. side: {
  26908. height: math.unit(6, "feet"),
  26909. weight: math.unit(150, "lb"),
  26910. name: "Side",
  26911. image: {
  26912. source: "./media/characters/kenzie-lee/side.svg",
  26913. extra: 5505 / 5383,
  26914. bottom: 60 / 5573
  26915. }
  26916. },
  26917. paw: {
  26918. height: math.unit(0.57, "feet"),
  26919. name: "Paw",
  26920. image: {
  26921. source: "./media/characters/kenzie-lee/paw.svg"
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(152, "feet"),
  26929. default: true
  26930. },
  26931. {
  26932. name: "Megamacro",
  26933. height: math.unit(7, "miles")
  26934. },
  26935. {
  26936. name: "Gigamacro",
  26937. height: math.unit(8000, "miles")
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26943. {
  26944. side: {
  26945. height: math.unit(6, "feet"),
  26946. weight: math.unit(150, "lb"),
  26947. name: "Side",
  26948. image: {
  26949. source: "./media/characters/withers/side.svg",
  26950. extra: 1830 / 1728,
  26951. bottom: 96 / 1927
  26952. }
  26953. },
  26954. front: {
  26955. height: math.unit(6, "feet"),
  26956. weight: math.unit(150, "lb"),
  26957. name: "Front",
  26958. image: {
  26959. source: "./media/characters/withers/front.svg",
  26960. extra: 1514 / 1438,
  26961. bottom: 118 / 1632
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(168, "feet"),
  26969. default: true
  26970. },
  26971. {
  26972. name: "Megamacro",
  26973. height: math.unit(15, "miles")
  26974. }
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(6 + 7 / 12, "feet"),
  26982. weight: math.unit(250, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/nemoskii/front.svg",
  26986. extra: 2270 / 1734,
  26987. bottom: 86 / 2354
  26988. }
  26989. },
  26990. back: {
  26991. height: math.unit(6 + 7 / 12, "feet"),
  26992. weight: math.unit(250, "lb"),
  26993. name: "Back",
  26994. image: {
  26995. source: "./media/characters/nemoskii/back.svg",
  26996. extra: 1845 / 1788,
  26997. bottom: 10.5 / 1852
  26998. }
  26999. },
  27000. head: {
  27001. height: math.unit(1.31, "feet"),
  27002. name: "Head",
  27003. image: {
  27004. source: "./media/characters/nemoskii/head.svg"
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Micro",
  27011. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27012. },
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(6 + 7 / 12, "feet"),
  27016. default: true
  27017. },
  27018. {
  27019. name: "Macro",
  27020. height: math.unit((6 + 7 / 12) * 150, "feet")
  27021. },
  27022. {
  27023. name: "Macro+",
  27024. height: math.unit((6 + 7 / 12) * 500, "feet")
  27025. },
  27026. {
  27027. name: "Megamacro",
  27028. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27029. },
  27030. ]
  27031. ))
  27032. characterMakers.push(() => makeCharacter(
  27033. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27034. {
  27035. front: {
  27036. height: math.unit(1, "mile"),
  27037. weight: math.unit(265261.9, "lb"),
  27038. name: "Front",
  27039. image: {
  27040. source: "./media/characters/shui/front.svg",
  27041. extra: 1633 / 1564,
  27042. bottom: 91.5 / 1726
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(1, "mile"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27056. {
  27057. front: {
  27058. height: math.unit(12 + 6 / 12, "feet"),
  27059. weight: math.unit(1342, "lb"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/arokh-takakura/front.svg",
  27063. extra: 1089 / 1043,
  27064. bottom: 77.4 / 1176.7
  27065. }
  27066. },
  27067. back: {
  27068. height: math.unit(12 + 6 / 12, "feet"),
  27069. weight: math.unit(1342, "lb"),
  27070. name: "Back",
  27071. image: {
  27072. source: "./media/characters/arokh-takakura/back.svg",
  27073. extra: 1046 / 1019,
  27074. bottom: 102 / 1150
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Big",
  27081. height: math.unit(12 + 6 / 12, "feet"),
  27082. default: true
  27083. },
  27084. ]
  27085. ))
  27086. characterMakers.push(() => makeCharacter(
  27087. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27088. {
  27089. front: {
  27090. height: math.unit(5 + 6 / 12, "feet"),
  27091. weight: math.unit(150, "lb"),
  27092. name: "Front",
  27093. image: {
  27094. source: "./media/characters/theo/front.svg",
  27095. extra: 1184 / 1131,
  27096. bottom: 7.4 / 1191
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Micro",
  27103. height: math.unit(5, "inches")
  27104. },
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(5 + 6 / 12, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(5 + 9 / 12, "feet"),
  27117. weight: math.unit(130, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/cecelia-swift/front.svg",
  27121. extra: 502 / 484,
  27122. bottom: 23 / 523
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(5 + 9 / 12, "feet"),
  27127. weight: math.unit(130, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/cecelia-swift/back.svg",
  27131. extra: 499 / 485,
  27132. bottom: 12 / 511
  27133. }
  27134. },
  27135. head: {
  27136. height: math.unit(0.90, "feet"),
  27137. name: "Head",
  27138. image: {
  27139. source: "./media/characters/cecelia-swift/head.svg"
  27140. }
  27141. },
  27142. rump: {
  27143. height: math.unit(1.75, "feet"),
  27144. name: "Rump",
  27145. image: {
  27146. source: "./media/characters/cecelia-swift/rump.svg"
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(5 + 9 / 12, "feet"),
  27154. default: true
  27155. },
  27156. {
  27157. name: "Big",
  27158. height: math.unit(50, "feet")
  27159. },
  27160. {
  27161. name: "Macro",
  27162. height: math.unit(100, "feet")
  27163. },
  27164. {
  27165. name: "Macro+",
  27166. height: math.unit(500, "feet")
  27167. },
  27168. {
  27169. name: "Macro++",
  27170. height: math.unit(1000, "feet")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(6, "feet"),
  27179. weight: math.unit(150, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/kaunan/front.svg",
  27183. extra: 2890 / 2523,
  27184. bottom: 49 / 2939
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(150, "feet"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27198. {
  27199. front: {
  27200. height: math.unit(175, "cm"),
  27201. weight: math.unit(60, "kg"),
  27202. name: "Front",
  27203. image: {
  27204. source: "./media/characters/fei/front.svg",
  27205. extra: 2581 / 2400,
  27206. bottom: 82.2 / 2663
  27207. }
  27208. },
  27209. },
  27210. [
  27211. {
  27212. name: "Mortal",
  27213. height: math.unit(175, "cm")
  27214. },
  27215. {
  27216. name: "Normal",
  27217. height: math.unit(3500, "m"),
  27218. default: true
  27219. },
  27220. {
  27221. name: "Stroll",
  27222. height: math.unit(17.5, "km")
  27223. },
  27224. {
  27225. name: "Showoff",
  27226. height: math.unit(175, "km")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(7, "feet"),
  27235. weight: math.unit(1000, "kg"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/edrax/front.svg",
  27239. extra: 2838 / 2550,
  27240. bottom: 130 / 2968
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Small",
  27247. height: math.unit(7, "feet")
  27248. },
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(1500, "meters")
  27252. },
  27253. {
  27254. name: "Mega",
  27255. height: math.unit(12000000, "km"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Megamacro",
  27260. height: math.unit(10600000, "lightyears")
  27261. },
  27262. {
  27263. name: "Hypermacro",
  27264. height: math.unit(256, "yottameters")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(10, "feet"),
  27273. weight: math.unit(750, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/clove/front.svg",
  27277. extra: 2031 / 1860,
  27278. bottom: 47.8 / 2080
  27279. }
  27280. },
  27281. back: {
  27282. height: math.unit(10, "feet"),
  27283. weight: math.unit(750, "lb"),
  27284. name: "Back",
  27285. image: {
  27286. source: "./media/characters/clove/back.svg",
  27287. extra: 2025 / 1859,
  27288. bottom: 46 / 2071
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(10, "feet"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(4, "feet"),
  27305. weight: math.unit(50, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/alex-rabbit/front.svg",
  27309. extra: 507 / 458,
  27310. bottom: 18.5 / 527
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(4, "feet"),
  27315. weight: math.unit(50, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/alex-rabbit/back.svg",
  27319. extra: 502 / 460,
  27320. bottom: 18.9 / 521
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(4, "feet"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(1 + 3 / 12, "feet"),
  27337. weight: math.unit(80, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/zander-rose/front.svg",
  27341. extra: 916 / 797,
  27342. bottom: 17 / 933
  27343. }
  27344. },
  27345. back: {
  27346. height: math.unit(1 + 3 / 12, "feet"),
  27347. weight: math.unit(80, "lb"),
  27348. name: "Back",
  27349. image: {
  27350. source: "./media/characters/zander-rose/back.svg",
  27351. extra: 903 / 779,
  27352. bottom: 31 / 934
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(1 + 3 / 12, "feet"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27366. {
  27367. anthro: {
  27368. height: math.unit(6, "feet"),
  27369. weight: math.unit(150, "lb"),
  27370. name: "Anthro",
  27371. image: {
  27372. source: "./media/characters/razz/anthro.svg",
  27373. extra: 1437 / 1343,
  27374. bottom: 48 / 1485
  27375. }
  27376. },
  27377. feral: {
  27378. height: math.unit(6, "feet"),
  27379. weight: math.unit(150, "lb"),
  27380. name: "Feral",
  27381. image: {
  27382. source: "./media/characters/razz/feral.svg",
  27383. extra: 2569 / 1385,
  27384. bottom: 95 / 2664
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(6, "feet"),
  27392. default: true
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27398. {
  27399. front: {
  27400. height: math.unit(9 + 4 / 12, "feet"),
  27401. weight: math.unit(500, "lb"),
  27402. name: "Front",
  27403. image: {
  27404. source: "./media/characters/morrigan/front.svg",
  27405. extra: 2707 / 2579,
  27406. bottom: 156 / 2863
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(9 + 4 / 12, "feet"),
  27414. default: true
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27420. {
  27421. front: {
  27422. height: math.unit(5, "stories"),
  27423. weight: math.unit(4000, "lb"),
  27424. name: "Front",
  27425. image: {
  27426. source: "./media/characters/jenene/front.svg",
  27427. extra: 1780 / 1710,
  27428. bottom: 57 / 1837
  27429. }
  27430. },
  27431. },
  27432. [
  27433. {
  27434. name: "Normal",
  27435. height: math.unit(5, "stories"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27442. {
  27443. front: {
  27444. height: math.unit(6, "feet"),
  27445. weight: math.unit(150, "lb"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/vix-archaser/front.svg",
  27449. extra: 2767 / 2562,
  27450. bottom: 36 / 2803
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Micro",
  27457. height: math.unit(1, "foot")
  27458. },
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(6 + 5 / 12, "feet")
  27462. },
  27463. {
  27464. name: "Minimacro",
  27465. height: math.unit(500, "feet")
  27466. },
  27467. {
  27468. name: "Macro",
  27469. height: math.unit(4, "miles")
  27470. },
  27471. {
  27472. name: "Megamacro",
  27473. height: math.unit(250, "miles"),
  27474. default: true
  27475. },
  27476. {
  27477. name: "Gigamacro",
  27478. height: math.unit(1, "universe")
  27479. },
  27480. {
  27481. name: "Endgame",
  27482. height: math.unit(100, "multiverses")
  27483. }
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27488. {
  27489. taurSfw: {
  27490. height: math.unit(10, "meters"),
  27491. weight: math.unit(17500, "kg"),
  27492. name: "Taur",
  27493. image: {
  27494. source: "./media/characters/faey/taur-sfw.svg",
  27495. extra: 1200 / 968,
  27496. bottom: 41 / 1241
  27497. }
  27498. },
  27499. chestmaw: {
  27500. height: math.unit(2.01, "meters"),
  27501. name: "Chestmaw",
  27502. image: {
  27503. source: "./media/characters/faey/chestmaw.svg"
  27504. }
  27505. },
  27506. foot: {
  27507. height: math.unit(2.43, "meters"),
  27508. name: "Foot",
  27509. image: {
  27510. source: "./media/characters/faey/foot.svg"
  27511. }
  27512. },
  27513. jaws: {
  27514. height: math.unit(1.66, "meters"),
  27515. name: "Jaws",
  27516. image: {
  27517. source: "./media/characters/faey/jaws.svg"
  27518. }
  27519. },
  27520. tongues: {
  27521. height: math.unit(2.01, "meters"),
  27522. name: "Tongues",
  27523. image: {
  27524. source: "./media/characters/faey/tongues.svg"
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Small",
  27531. height: math.unit(10, "meters"),
  27532. default: true
  27533. },
  27534. {
  27535. name: "Big",
  27536. height: math.unit(500000, "km")
  27537. },
  27538. ]
  27539. ))
  27540. characterMakers.push(() => makeCharacter(
  27541. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27542. {
  27543. front: {
  27544. height: math.unit(7, "feet"),
  27545. weight: math.unit(275, "lb"),
  27546. name: "Front",
  27547. image: {
  27548. source: "./media/characters/roku/front.svg",
  27549. extra: 903 / 878,
  27550. bottom: 37 / 940
  27551. }
  27552. },
  27553. },
  27554. [
  27555. {
  27556. name: "Normal",
  27557. height: math.unit(7, "feet"),
  27558. default: true
  27559. },
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(500, "feet")
  27563. },
  27564. {
  27565. name: "Megamacro",
  27566. height: math.unit(200, "miles")
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(6 + 2 / 12, "feet"),
  27575. weight: math.unit(150, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/lira/front.svg",
  27579. extra: 1727 / 1605,
  27580. bottom: 26 / 1753
  27581. }
  27582. },
  27583. back: {
  27584. height: math.unit(6 + 2 / 12, "feet"),
  27585. weight: math.unit(150, "lb"),
  27586. name: "Back",
  27587. image: {
  27588. source: "./media/characters/lira/back.svg",
  27589. extra: 1713 / 159,
  27590. bottom: 20 / 1733
  27591. }
  27592. },
  27593. hand: {
  27594. height: math.unit(0.75, "feet"),
  27595. name: "Hand",
  27596. image: {
  27597. source: "./media/characters/lira/hand.svg"
  27598. }
  27599. },
  27600. maw: {
  27601. height: math.unit(0.65, "feet"),
  27602. name: "Maw",
  27603. image: {
  27604. source: "./media/characters/lira/maw.svg"
  27605. }
  27606. },
  27607. pawDigi: {
  27608. height: math.unit(1.6, "feet"),
  27609. name: "Paw Digi",
  27610. image: {
  27611. source: "./media/characters/lira/paw-digi.svg"
  27612. }
  27613. },
  27614. pawPlanti: {
  27615. height: math.unit(1.4, "feet"),
  27616. name: "Paw Planti",
  27617. image: {
  27618. source: "./media/characters/lira/paw-planti.svg"
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(6 + 2 / 12, "feet"),
  27626. default: true
  27627. },
  27628. {
  27629. name: "Macro",
  27630. height: math.unit(100, "feet")
  27631. },
  27632. {
  27633. name: "Macro²",
  27634. height: math.unit(1600, "feet")
  27635. },
  27636. {
  27637. name: "Planetary",
  27638. height: math.unit(20, "earths")
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27644. {
  27645. front: {
  27646. height: math.unit(6, "feet"),
  27647. weight: math.unit(150, "lb"),
  27648. name: "Front",
  27649. image: {
  27650. source: "./media/characters/hadjet/front.svg",
  27651. extra: 1480 / 1346,
  27652. bottom: 26 / 1506
  27653. }
  27654. },
  27655. frontNsfw: {
  27656. height: math.unit(6, "feet"),
  27657. weight: math.unit(150, "lb"),
  27658. name: "Front (NSFW)",
  27659. image: {
  27660. source: "./media/characters/hadjet/front-nsfw.svg",
  27661. extra: 1440 / 1358,
  27662. bottom: 52 / 1492
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Macro",
  27669. height: math.unit(10, "stories"),
  27670. default: true
  27671. },
  27672. {
  27673. name: "Megamacro",
  27674. height: math.unit(1.5, "miles")
  27675. },
  27676. {
  27677. name: "Megamacro+",
  27678. height: math.unit(5, "miles")
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27684. {
  27685. side: {
  27686. height: math.unit(106, "feet"),
  27687. weight: math.unit(500, "tonnes"),
  27688. name: "Side",
  27689. image: {
  27690. source: "./media/characters/kodran/side.svg",
  27691. extra: 553 / 480,
  27692. bottom: 33 / 586
  27693. }
  27694. },
  27695. front: {
  27696. height: math.unit(132, "feet"),
  27697. weight: math.unit(500, "tonnes"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/kodran/front.svg",
  27701. extra: 667 / 643,
  27702. bottom: 42 / 709
  27703. }
  27704. },
  27705. flying: {
  27706. height: math.unit(350, "feet"),
  27707. weight: math.unit(500, "tonnes"),
  27708. name: "Flying",
  27709. image: {
  27710. source: "./media/characters/kodran/flying.svg"
  27711. }
  27712. },
  27713. foot: {
  27714. height: math.unit(33, "feet"),
  27715. name: "Foot",
  27716. image: {
  27717. source: "./media/characters/kodran/foot.svg"
  27718. }
  27719. },
  27720. footFront: {
  27721. height: math.unit(19, "feet"),
  27722. name: "Foot (Front)",
  27723. image: {
  27724. source: "./media/characters/kodran/foot-front.svg",
  27725. extra: 261 / 261,
  27726. bottom: 91 / 352
  27727. }
  27728. },
  27729. headFront: {
  27730. height: math.unit(53, "feet"),
  27731. name: "Head (Front)",
  27732. image: {
  27733. source: "./media/characters/kodran/head-front.svg"
  27734. }
  27735. },
  27736. headSide: {
  27737. height: math.unit(65, "feet"),
  27738. name: "Head (Side)",
  27739. image: {
  27740. source: "./media/characters/kodran/head-side.svg"
  27741. }
  27742. },
  27743. throat: {
  27744. height: math.unit(79, "feet"),
  27745. name: "Throat",
  27746. image: {
  27747. source: "./media/characters/kodran/throat.svg"
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Large",
  27754. height: math.unit(106, "feet"),
  27755. default: true
  27756. },
  27757. ]
  27758. ))
  27759. characterMakers.push(() => makeCharacter(
  27760. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27761. {
  27762. side: {
  27763. height: math.unit(11, "feet"),
  27764. weight: math.unit(150, "lb"),
  27765. name: "Side",
  27766. image: {
  27767. source: "./media/characters/pyxaron/side.svg",
  27768. extra: 305 / 195,
  27769. bottom: 17 / 322
  27770. }
  27771. },
  27772. },
  27773. [
  27774. {
  27775. name: "Normal",
  27776. height: math.unit(11, "feet"),
  27777. default: true
  27778. },
  27779. ]
  27780. ))
  27781. characterMakers.push(() => makeCharacter(
  27782. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27783. {
  27784. front: {
  27785. height: math.unit(6, "feet"),
  27786. weight: math.unit(150, "lb"),
  27787. name: "Front",
  27788. image: {
  27789. source: "./media/characters/meep/front.svg",
  27790. extra: 88 / 80,
  27791. bottom: 6 / 94
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Fun Sized",
  27798. height: math.unit(2, "inches"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Friend Sized",
  27803. height: math.unit(8, "inches")
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(15, "feet"),
  27812. weight: math.unit(2500, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/holly-rabbit/front.svg",
  27816. extra: 1433 / 1233,
  27817. bottom: 125 / 1558
  27818. }
  27819. },
  27820. dick: {
  27821. height: math.unit(4.6, "feet"),
  27822. name: "Dick",
  27823. image: {
  27824. source: "./media/characters/holly-rabbit/dick.svg"
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(15, "feet"),
  27832. default: true
  27833. },
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(250, "feet")
  27837. },
  27838. {
  27839. name: "Macro+",
  27840. height: math.unit(2500, "feet")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(3.02, "meters"),
  27849. weight: math.unit(500, "kg"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/drena/front.svg",
  27853. extra: 282 / 243,
  27854. bottom: 8 / 290
  27855. }
  27856. },
  27857. side: {
  27858. height: math.unit(3.02, "meters"),
  27859. weight: math.unit(500, "kg"),
  27860. name: "Side",
  27861. image: {
  27862. source: "./media/characters/drena/side.svg",
  27863. extra: 280 / 245,
  27864. bottom: 10 / 290
  27865. }
  27866. },
  27867. back: {
  27868. height: math.unit(3.02, "meters"),
  27869. weight: math.unit(500, "kg"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/drena/back.svg",
  27873. extra: 278 / 243,
  27874. bottom: 2 / 280
  27875. }
  27876. },
  27877. foot: {
  27878. height: math.unit(0.75, "meters"),
  27879. name: "Foot",
  27880. image: {
  27881. source: "./media/characters/drena/foot.svg"
  27882. }
  27883. },
  27884. maw: {
  27885. height: math.unit(0.82, "meters"),
  27886. name: "Maw",
  27887. image: {
  27888. source: "./media/characters/drena/maw.svg"
  27889. }
  27890. },
  27891. rump: {
  27892. height: math.unit(0.93, "meters"),
  27893. name: "Rump",
  27894. image: {
  27895. source: "./media/characters/drena/rump.svg"
  27896. }
  27897. },
  27898. },
  27899. [
  27900. {
  27901. name: "Normal",
  27902. height: math.unit(3.02, "meters"),
  27903. default: true
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(6 + 4 / 12, "feet"),
  27912. weight: math.unit(250, "lb"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/remmyzilla/front.svg",
  27916. extra: 4033 / 3588,
  27917. bottom: 123 / 4156
  27918. }
  27919. },
  27920. back: {
  27921. height: math.unit(6 + 4 / 12, "feet"),
  27922. weight: math.unit(250, "lb"),
  27923. name: "Back",
  27924. image: {
  27925. source: "./media/characters/remmyzilla/back.svg",
  27926. extra: 2687 / 2555,
  27927. bottom: 48 / 2735
  27928. }
  27929. },
  27930. frontFancy: {
  27931. height: math.unit(6 + 4 / 12, "feet"),
  27932. weight: math.unit(250, "lb"),
  27933. name: "Front (Fancy)",
  27934. image: {
  27935. source: "./media/characters/remmyzilla/front-fancy.svg",
  27936. extra: 4119 / 3419,
  27937. bottom: 237 / 4356
  27938. }
  27939. },
  27940. paw: {
  27941. height: math.unit(1.73, "feet"),
  27942. name: "Paw",
  27943. image: {
  27944. source: "./media/characters/remmyzilla/paw.svg"
  27945. }
  27946. },
  27947. maw: {
  27948. height: math.unit(1.73, "feet"),
  27949. name: "Maw",
  27950. image: {
  27951. source: "./media/characters/remmyzilla/maw.svg"
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(6 + 4 / 12, "feet")
  27959. },
  27960. {
  27961. name: "Minimacro",
  27962. height: math.unit(12 + 8 / 12, "feet")
  27963. },
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(640, "feet"),
  27967. default: true
  27968. },
  27969. {
  27970. name: "Megamacro",
  27971. height: math.unit(6400, "feet")
  27972. },
  27973. {
  27974. name: "Gigamacro",
  27975. height: math.unit(64000, "miles")
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27981. {
  27982. front: {
  27983. height: math.unit(2.5, "meters"),
  27984. weight: math.unit(300, "lb"),
  27985. name: "Front",
  27986. image: {
  27987. source: "./media/characters/lawrence/front.svg",
  27988. extra: 357 / 335,
  27989. bottom: 30 / 387
  27990. }
  27991. },
  27992. back: {
  27993. height: math.unit(2.5, "meters"),
  27994. weight: math.unit(300, "lb"),
  27995. name: "Back",
  27996. image: {
  27997. source: "./media/characters/lawrence/back.svg",
  27998. extra: 357 / 338,
  27999. bottom: 16 / 373
  28000. }
  28001. },
  28002. head: {
  28003. height: math.unit(0.9, "meter"),
  28004. name: "Head",
  28005. image: {
  28006. source: "./media/characters/lawrence/head.svg"
  28007. }
  28008. },
  28009. maw: {
  28010. height: math.unit(0.7, "meter"),
  28011. name: "Maw",
  28012. image: {
  28013. source: "./media/characters/lawrence/maw.svg"
  28014. }
  28015. },
  28016. footBottom: {
  28017. height: math.unit(0.5, "meter"),
  28018. name: "Foot (Bottom)",
  28019. image: {
  28020. source: "./media/characters/lawrence/foot-bottom.svg"
  28021. }
  28022. },
  28023. footTop: {
  28024. height: math.unit(0.5, "meter"),
  28025. name: "Foot (Top)",
  28026. image: {
  28027. source: "./media/characters/lawrence/foot-top.svg"
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(2.5, "meters"),
  28035. default: true
  28036. },
  28037. {
  28038. name: "Macro",
  28039. height: math.unit(95, "meters")
  28040. },
  28041. {
  28042. name: "Megamacro",
  28043. height: math.unit(150, "km")
  28044. },
  28045. ]
  28046. ))
  28047. characterMakers.push(() => makeCharacter(
  28048. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28049. {
  28050. front: {
  28051. height: math.unit(4.2, "meters"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/sydney/front.svg",
  28055. extra: 1323 / 1277,
  28056. bottom: 111 / 1434
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(4.2, "meters"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28070. {
  28071. back: {
  28072. height: math.unit(201, "feet"),
  28073. name: "Back",
  28074. image: {
  28075. source: "./media/characters/jessica/back.svg",
  28076. extra: 273 / 259,
  28077. bottom: 7 / 280
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(201, "feet"),
  28085. default: true
  28086. },
  28087. {
  28088. name: "Megamacro",
  28089. height: math.unit(8, "miles")
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28095. {
  28096. side: {
  28097. height: math.unit(320, "cm"),
  28098. name: "Side",
  28099. image: {
  28100. source: "./media/characters/victoria/side.svg",
  28101. extra: 778 / 346,
  28102. bottom: 56 / 834
  28103. }
  28104. },
  28105. maw: {
  28106. height: math.unit(5.9, "feet"),
  28107. name: "Maw",
  28108. image: {
  28109. source: "./media/characters/victoria/maw.svg"
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(320, "cm"),
  28117. default: true
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28123. {
  28124. front: {
  28125. height: math.unit(5 + 6 / 12, "feet"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/cat/front.svg",
  28129. extra: 1374 / 1257,
  28130. bottom: 59 / 1433
  28131. }
  28132. },
  28133. back: {
  28134. height: math.unit(5 + 6 / 12, "feet"),
  28135. name: "Back",
  28136. image: {
  28137. source: "./media/characters/cat/back.svg",
  28138. extra: 1337 / 1226,
  28139. bottom: 34 / 1371
  28140. }
  28141. },
  28142. taur: {
  28143. height: math.unit(7, "feet"),
  28144. name: "Taur",
  28145. image: {
  28146. source: "./media/characters/cat/taur.svg",
  28147. extra: 1345 / 1231,
  28148. bottom: 66 / 1411
  28149. }
  28150. },
  28151. lucario: {
  28152. height: math.unit(4, "feet"),
  28153. name: "Lucario",
  28154. image: {
  28155. source: "./media/characters/cat/lucario.svg",
  28156. extra: 1470 / 1318,
  28157. bottom: 65 / 1535
  28158. }
  28159. },
  28160. megaLucario: {
  28161. height: math.unit(4, "feet"),
  28162. name: "Mega Lucario",
  28163. image: {
  28164. source: "./media/characters/cat/mega-lucario.svg",
  28165. extra: 1515 / 1319,
  28166. bottom: 63 / 1578
  28167. }
  28168. },
  28169. nickit: {
  28170. height: math.unit(2, "feet"),
  28171. name: "Nickit",
  28172. image: {
  28173. source: "./media/characters/cat/nickit.svg",
  28174. extra: 1980 / 1585,
  28175. bottom: 102 / 2082
  28176. }
  28177. },
  28178. lopunnyFront: {
  28179. height: math.unit(5, "feet"),
  28180. name: "Lopunny (Front)",
  28181. image: {
  28182. source: "./media/characters/cat/lopunny-front.svg",
  28183. extra: 1782 / 1469,
  28184. bottom: 38 / 1820
  28185. }
  28186. },
  28187. lopunnyBack: {
  28188. height: math.unit(5, "feet"),
  28189. name: "Lopunny (Back)",
  28190. image: {
  28191. source: "./media/characters/cat/lopunny-back.svg",
  28192. extra: 1660 / 1490,
  28193. bottom: 25 / 1685
  28194. }
  28195. },
  28196. },
  28197. [
  28198. {
  28199. name: "Really small",
  28200. height: math.unit(1, "nm")
  28201. },
  28202. {
  28203. name: "Micro",
  28204. height: math.unit(5, "inches")
  28205. },
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(5 + 6 / 12, "feet"),
  28209. default: true
  28210. },
  28211. {
  28212. name: "Macro",
  28213. height: math.unit(50, "feet")
  28214. },
  28215. {
  28216. name: "Macro+",
  28217. height: math.unit(150, "feet")
  28218. },
  28219. {
  28220. name: "Megamacro",
  28221. height: math.unit(100, "miles")
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(63.4, "meters"),
  28230. weight: math.unit(3.28349e+6, "kilograms"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/kirina-violet/front.svg",
  28234. extra: 2812 / 2725,
  28235. bottom: 0 / 2812
  28236. }
  28237. },
  28238. back: {
  28239. height: math.unit(63.4, "meters"),
  28240. weight: math.unit(3.28349e+6, "kilograms"),
  28241. name: "Back",
  28242. image: {
  28243. source: "./media/characters/kirina-violet/back.svg",
  28244. extra: 2812 / 2725,
  28245. bottom: 0 / 2812
  28246. }
  28247. },
  28248. mouth: {
  28249. height: math.unit(4.35, "meters"),
  28250. name: "Mouth",
  28251. image: {
  28252. source: "./media/characters/kirina-violet/mouth.svg"
  28253. }
  28254. },
  28255. paw: {
  28256. height: math.unit(5.6, "meters"),
  28257. name: "Paw",
  28258. image: {
  28259. source: "./media/characters/kirina-violet/paw.svg"
  28260. }
  28261. },
  28262. tail: {
  28263. height: math.unit(18, "meters"),
  28264. name: "Tail",
  28265. image: {
  28266. source: "./media/characters/kirina-violet/tail.svg"
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Macro",
  28273. height: math.unit(63.4, "meters"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(60, "feet"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/cat-gigachu/front.svg",
  28286. extra: 1024 / 780,
  28287. bottom: 23 / 1047
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(60, "feet"),
  28292. name: "Back",
  28293. image: {
  28294. source: "./media/characters/cat-gigachu/back.svg",
  28295. extra: 1024 / 780,
  28296. bottom: 23 / 1047
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Dynamax",
  28303. height: math.unit(60, "feet"),
  28304. default: true
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(6, "feet"),
  28313. weight: math.unit(150, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/sfaiyan/front.svg",
  28317. extra: 999 / 978,
  28318. bottom: 5 / 1004
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(1.82, "meters")
  28326. },
  28327. {
  28328. name: "Giant",
  28329. height: math.unit(2.27, "km"),
  28330. default: true
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28336. {
  28337. front: {
  28338. height: math.unit(179, "cm"),
  28339. weight: math.unit(100, "kg"),
  28340. name: "Front",
  28341. image: {
  28342. source: "./media/characters/raunehkeli/front.svg",
  28343. extra: 1934 / 1926,
  28344. bottom: 0 / 1934
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(179, "cm")
  28352. },
  28353. {
  28354. name: "Maximum",
  28355. height: math.unit(575, "meters"),
  28356. default: true
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(6, "feet"),
  28365. weight: math.unit(150, "lb"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28369. extra: 2625 / 2518,
  28370. bottom: 60 / 2685
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(6 + 2 / 12, "feet")
  28378. },
  28379. {
  28380. name: "Macro",
  28381. height: math.unit(1180, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(5 + 6 / 12, "feet"),
  28391. weight: math.unit(108, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/lilith-zott/front.svg",
  28395. extra: 2510 / 2238,
  28396. bottom: 100 / 2610
  28397. }
  28398. },
  28399. frontDressed: {
  28400. height: math.unit(5 + 6 / 12, "feet"),
  28401. weight: math.unit(108, "lb"),
  28402. name: "Front (Dressed)",
  28403. image: {
  28404. source: "./media/characters/lilith-zott/front-dressed.svg",
  28405. extra: 2510 / 2238,
  28406. bottom: 100 / 2610
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(5 + 6 / 12, "feet")
  28414. },
  28415. {
  28416. name: "Macro",
  28417. height: math.unit(1030, "feet"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(6, "feet"),
  28427. weight: math.unit(150, "lb"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28431. extra: 2567 / 2435,
  28432. bottom: 39 / 2606
  28433. }
  28434. },
  28435. frontSuper: {
  28436. height: math.unit(6, "feet"),
  28437. name: "Front (Super)",
  28438. image: {
  28439. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28440. extra: 2567 / 2435,
  28441. bottom: 39 / 2606
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(5 + 10 / 12, "feet")
  28449. },
  28450. {
  28451. name: "Macro",
  28452. height: math.unit(1100, "feet"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(100, "miles"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/sona/front.svg",
  28465. extra: 2433 / 2201,
  28466. bottom: 53 / 2486
  28467. }
  28468. },
  28469. foot: {
  28470. height: math.unit(16.1, "miles"),
  28471. name: "Foot",
  28472. image: {
  28473. source: "./media/characters/sona/foot.svg"
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(100, "miles"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(6, "feet"),
  28490. weight: math.unit(150, "lb"),
  28491. name: "Front",
  28492. image: {
  28493. source: "./media/characters/bailey/front.svg",
  28494. extra: 1778 / 1724,
  28495. bottom: 30 / 1808
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Micro",
  28502. height: math.unit(4, "inches")
  28503. },
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(5 + 5 / 12, "feet"),
  28507. default: true
  28508. },
  28509. {
  28510. name: "Macro",
  28511. height: math.unit(250, "feet")
  28512. },
  28513. {
  28514. name: "Megamacro",
  28515. height: math.unit(100, "miles")
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(5 + 2 / 12, "feet"),
  28524. weight: math.unit(120, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/snaps/front.svg",
  28528. extra: 2370 / 2177,
  28529. bottom: 48 / 2418
  28530. }
  28531. },
  28532. back: {
  28533. height: math.unit(5 + 2 / 12, "feet"),
  28534. weight: math.unit(120, "lb"),
  28535. name: "Back",
  28536. image: {
  28537. source: "./media/characters/snaps/back.svg",
  28538. extra: 2408 / 2258,
  28539. bottom: 15 / 2423
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Micro",
  28546. height: math.unit(9, "inches")
  28547. },
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(5 + 2 / 12, "feet"),
  28551. default: true
  28552. },
  28553. {
  28554. name: "Mini Macro",
  28555. height: math.unit(10, "feet")
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(1.8, "meters"),
  28564. weight: math.unit(85, "kg"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/azteck/front.svg",
  28568. extra: 2815 / 2625,
  28569. bottom: 89 / 2904
  28570. }
  28571. },
  28572. back: {
  28573. height: math.unit(1.8, "meters"),
  28574. weight: math.unit(85, "kg"),
  28575. name: "Back",
  28576. image: {
  28577. source: "./media/characters/azteck/back.svg",
  28578. extra: 2856 / 2648,
  28579. bottom: 85 / 2941
  28580. }
  28581. },
  28582. frontDressed: {
  28583. height: math.unit(1.8, "meters"),
  28584. weight: math.unit(85, "kg"),
  28585. name: "Front (Dressed)",
  28586. image: {
  28587. source: "./media/characters/azteck/front-dressed.svg",
  28588. extra: 2147 / 2003,
  28589. bottom: 68 / 2215
  28590. }
  28591. },
  28592. head: {
  28593. height: math.unit(0.47, "meters"),
  28594. weight: math.unit(85, "kg"),
  28595. name: "Head",
  28596. image: {
  28597. source: "./media/characters/azteck/head.svg"
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Bite sized",
  28604. height: math.unit(16, "cm")
  28605. },
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(1.8, "meters"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(6, "feet"),
  28618. weight: math.unit(150, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/pidge/front.svg",
  28622. extra: 620 / 588,
  28623. bottom: 9 / 629
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(6, "feet"),
  28628. weight: math.unit(150, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/pidge/back.svg",
  28632. extra: 620 / 588,
  28633. bottom: 9 / 629
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Macro",
  28640. height: math.unit(1, "mile"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(6, "feet"),
  28650. weight: math.unit(150, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/en/front.svg",
  28654. extra: 1697 / 1563,
  28655. bottom: 103 / 1800
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(6, "feet"),
  28660. weight: math.unit(150, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/en/back.svg",
  28664. extra: 1700 / 1570,
  28665. bottom: 51 / 1751
  28666. }
  28667. },
  28668. frontDressed: {
  28669. height: math.unit(6, "feet"),
  28670. weight: math.unit(150, "lb"),
  28671. name: "Front (Dressed)",
  28672. image: {
  28673. source: "./media/characters/en/front-dressed.svg",
  28674. extra: 1697 / 1563,
  28675. bottom: 103 / 1800
  28676. }
  28677. },
  28678. backDressed: {
  28679. height: math.unit(6, "feet"),
  28680. weight: math.unit(150, "lb"),
  28681. name: "Back (Dressed)",
  28682. image: {
  28683. source: "./media/characters/en/back-dressed.svg",
  28684. extra: 1700 / 1570,
  28685. bottom: 51 / 1751
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Macro",
  28692. height: math.unit(210, "feet"),
  28693. default: true
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Front",
  28704. image: {
  28705. source: "./media/characters/haze-orris/front.svg",
  28706. extra: 3975 / 3525,
  28707. bottom: 137 / 4112
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Micro",
  28714. height: math.unit(150, "mm"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Casselene Yaro", species: ["fox"], 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/casselene-yaro/front.svg",
  28728. extra: 4721 / 4541,
  28729. bottom: 82 / 4803
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(6, "feet"),
  28734. weight: math.unit(150, "lb"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/casselene-yaro/back.svg",
  28738. extra: 4569 / 4377,
  28739. bottom: 69 / 4638
  28740. }
  28741. },
  28742. frontDressed: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Front-dressed",
  28746. image: {
  28747. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28748. extra: 4721 / 4541,
  28749. bottom: 82 / 4803
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(190, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(6, "feet"),
  28766. weight: math.unit(150, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/myra-rue-delore/front.svg",
  28770. extra: 1340 / 1308,
  28771. bottom: 67 / 1407
  28772. }
  28773. },
  28774. back: {
  28775. height: math.unit(6, "feet"),
  28776. weight: math.unit(150, "lb"),
  28777. name: "Back",
  28778. image: {
  28779. source: "./media/characters/myra-rue-delore/back.svg",
  28780. extra: 1341 / 1310,
  28781. bottom: 40 / 1381
  28782. }
  28783. },
  28784. frontDressed: {
  28785. height: math.unit(6, "feet"),
  28786. weight: math.unit(150, "lb"),
  28787. name: "Front (Dressed)",
  28788. image: {
  28789. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28790. extra: 1340 / 1308,
  28791. bottom: 67 / 1407
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Macro",
  28798. height: math.unit(150, "feet"),
  28799. default: true
  28800. },
  28801. ]
  28802. ))
  28803. characterMakers.push(() => makeCharacter(
  28804. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28805. {
  28806. front: {
  28807. height: math.unit(10, "feet"),
  28808. weight: math.unit(15015, "lb"),
  28809. name: "Front",
  28810. image: {
  28811. source: "./media/characters/fem!plat/front.svg",
  28812. extra: 2799 / 2604,
  28813. bottom: 149 / 2948
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(10, "feet"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(100, "feet")
  28826. },
  28827. {
  28828. name: "Megamacro",
  28829. height: math.unit(1000, "feet")
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(15 + 5 / 12, "feet"),
  28838. weight: math.unit(4600, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/neapolitan-ananassa/front.svg",
  28842. extra: 2903 / 2736,
  28843. bottom: 0 / 2903
  28844. }
  28845. },
  28846. side: {
  28847. height: math.unit(15 + 5 / 12, "feet"),
  28848. weight: math.unit(4600, "lb"),
  28849. name: "Side",
  28850. image: {
  28851. source: "./media/characters/neapolitan-ananassa/side.svg",
  28852. extra: 2925 / 2719,
  28853. bottom: 0 / 2925
  28854. }
  28855. },
  28856. back: {
  28857. height: math.unit(15 + 5 / 12, "feet"),
  28858. weight: math.unit(4600, "lb"),
  28859. name: "Back",
  28860. image: {
  28861. source: "./media/characters/neapolitan-ananassa/back.svg",
  28862. extra: 2903 / 2736,
  28863. bottom: 0 / 2903
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(15 + 5 / 12, "feet"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Post-Millenium",
  28875. height: math.unit(35 + 5 / 12, "feet")
  28876. },
  28877. {
  28878. name: "Post-Era",
  28879. height: math.unit(450 + 5 / 12, "feet")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(300, "meters"),
  28888. weight: math.unit(125000, "tonnes"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/pazuzu/front.svg",
  28892. extra: 877 / 794,
  28893. bottom: 47 / 924
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Macro",
  28900. height: math.unit(300, "meters"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28907. {
  28908. side: {
  28909. height: math.unit(10 + 7 / 12, "feet"),
  28910. weight: math.unit(2.5, "tons"),
  28911. name: "Side",
  28912. image: {
  28913. source: "./media/characters/aasha/side.svg",
  28914. extra: 1345 / 1245,
  28915. bottom: 111 / 1456
  28916. }
  28917. },
  28918. back: {
  28919. height: math.unit(10 + 7 / 12, "feet"),
  28920. weight: math.unit(2.5, "tons"),
  28921. name: "Back",
  28922. image: {
  28923. source: "./media/characters/aasha/back.svg",
  28924. extra: 1133 / 1057,
  28925. bottom: 257 / 1390
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(10 + 7 / 12, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(6 + 3 / 12, "feet"),
  28942. name: "Front",
  28943. image: {
  28944. source: "./media/characters/nevan/front.svg",
  28945. extra: 704 / 704,
  28946. bottom: 28 / 732
  28947. }
  28948. },
  28949. back: {
  28950. height: math.unit(6 + 3 / 12, "feet"),
  28951. name: "Back",
  28952. image: {
  28953. source: "./media/characters/nevan/back.svg",
  28954. extra: 714 / 714,
  28955. bottom: 21 / 735
  28956. }
  28957. },
  28958. frontFlaccid: {
  28959. height: math.unit(6 + 3 / 12, "feet"),
  28960. name: "Front (Flaccid)",
  28961. image: {
  28962. source: "./media/characters/nevan/front-flaccid.svg",
  28963. extra: 704 / 704,
  28964. bottom: 28 / 732
  28965. }
  28966. },
  28967. frontErect: {
  28968. height: math.unit(6 + 3 / 12, "feet"),
  28969. name: "Front (Erect)",
  28970. image: {
  28971. source: "./media/characters/nevan/front-erect.svg",
  28972. extra: 704 / 704,
  28973. bottom: 28 / 732
  28974. }
  28975. },
  28976. backFlaccid: {
  28977. height: math.unit(6 + 3 / 12, "feet"),
  28978. name: "Back (Flaccid)",
  28979. image: {
  28980. source: "./media/characters/nevan/back-flaccid.svg",
  28981. extra: 714 / 714,
  28982. bottom: 21 / 735
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(6 + 3 / 12, "feet"),
  28990. default: true
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(4, "feet"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/arhan/front.svg",
  29002. extra: 3368 / 3133,
  29003. bottom: 0 / 3368
  29004. }
  29005. },
  29006. side: {
  29007. height: math.unit(4, "feet"),
  29008. name: "Side",
  29009. image: {
  29010. source: "./media/characters/arhan/side.svg",
  29011. extra: 3347 / 3105,
  29012. bottom: 0 / 3347
  29013. }
  29014. },
  29015. tongue: {
  29016. height: math.unit(1.42, "feet"),
  29017. name: "Tongue",
  29018. image: {
  29019. source: "./media/characters/arhan/tongue.svg"
  29020. }
  29021. },
  29022. head: {
  29023. height: math.unit(0.85, "feet"),
  29024. name: "Head",
  29025. image: {
  29026. source: "./media/characters/arhan/head.svg"
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(4, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(5 + 7.5 / 12, "feet"),
  29043. weight: math.unit(120, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/digi-duncan/front.svg",
  29047. extra: 330 / 326,
  29048. bottom: 16 / 346
  29049. }
  29050. },
  29051. side: {
  29052. height: math.unit(5 + 7.5 / 12, "feet"),
  29053. weight: math.unit(120, "lb"),
  29054. name: "Side",
  29055. image: {
  29056. source: "./media/characters/digi-duncan/side.svg",
  29057. extra: 341 / 337,
  29058. bottom: 1 / 342
  29059. }
  29060. },
  29061. back: {
  29062. height: math.unit(5 + 7.5 / 12, "feet"),
  29063. weight: math.unit(120, "lb"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/digi-duncan/back.svg",
  29067. extra: 330 / 326,
  29068. bottom: 12 / 342
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Speck",
  29075. height: math.unit(0.25, "mm")
  29076. },
  29077. {
  29078. name: "Micro",
  29079. height: math.unit(5, "mm")
  29080. },
  29081. {
  29082. name: "Tiny",
  29083. height: math.unit(0.5, "inches"),
  29084. default: true
  29085. },
  29086. {
  29087. name: "Human",
  29088. height: math.unit(5 + 7.5 / 12, "feet")
  29089. },
  29090. {
  29091. name: "Minigiant",
  29092. height: math.unit(8 + 5.25, "feet")
  29093. },
  29094. {
  29095. name: "Giant",
  29096. height: math.unit(2000, "feet")
  29097. },
  29098. {
  29099. name: "Mega",
  29100. height: math.unit(371.1, "miles")
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(2, "meters"),
  29109. weight: math.unit(350, "kg"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29113. extra: 898 / 838,
  29114. bottom: 9 / 907
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Micro",
  29121. height: math.unit(8, "meters")
  29122. },
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(50, "meters"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Macro",
  29130. height: math.unit(500, "meters")
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(6 + 6 / 12, "feet"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/khardesh/front.svg",
  29142. extra: 888 / 797,
  29143. bottom: 25 / 913
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(6 + 6 / 12, "feet"),
  29151. default: true
  29152. },
  29153. {
  29154. name: "Normal+",
  29155. height: math.unit(4, "meters")
  29156. },
  29157. {
  29158. name: "Macro",
  29159. height: math.unit(50, "meters")
  29160. },
  29161. {
  29162. name: "Macro+",
  29163. height: math.unit(100, "meters")
  29164. },
  29165. {
  29166. name: "Megamacro",
  29167. height: math.unit(20, "km")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(6, "feet"),
  29176. weight: math.unit(150, "lb"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/kosho/front.svg",
  29180. extra: 1847 / 1847,
  29181. bottom: 86 / 1933
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Second-stage micro",
  29188. height: math.unit(0.5, "inches")
  29189. },
  29190. {
  29191. name: "First-stage micro",
  29192. height: math.unit(6, "inches")
  29193. },
  29194. {
  29195. name: "Normal",
  29196. height: math.unit(6, "feet"),
  29197. default: true
  29198. },
  29199. {
  29200. name: "First-stage macro",
  29201. height: math.unit(72, "feet")
  29202. },
  29203. {
  29204. name: "Second-stage macro",
  29205. height: math.unit(864, "feet")
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29211. {
  29212. normal: {
  29213. height: math.unit(4 + 6 / 12, "feet"),
  29214. name: "Normal",
  29215. image: {
  29216. source: "./media/characters/hydra/normal.svg",
  29217. extra: 2833 / 2634,
  29218. bottom: 68 / 2901
  29219. }
  29220. },
  29221. smol: {
  29222. height: math.unit(0.705, "inches"),
  29223. name: "Smol",
  29224. image: {
  29225. source: "./media/characters/hydra/smol.svg",
  29226. extra: 2715 / 2540,
  29227. bottom: 0 / 2715
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(4 + 6 / 12, "feet"),
  29235. default: true
  29236. }
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(0.6, "cm"),
  29244. name: "Front",
  29245. image: {
  29246. source: "./media/characters/daz/front.svg",
  29247. extra: 1682 / 1164,
  29248. bottom: 42 / 1724
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Normal",
  29255. height: math.unit(0.6, "cm"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(6, "feet"),
  29265. weight: math.unit(235, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/theo-pangolin/front.svg",
  29269. extra: 1996 / 1969,
  29270. bottom: 115 / 2111
  29271. }
  29272. },
  29273. back: {
  29274. height: math.unit(6, "feet"),
  29275. weight: math.unit(235, "lb"),
  29276. name: "Back",
  29277. image: {
  29278. source: "./media/characters/theo-pangolin/back.svg",
  29279. extra: 1979 / 1979,
  29280. bottom: 40 / 2019
  29281. }
  29282. },
  29283. feral: {
  29284. height: math.unit(2, "feet"),
  29285. weight: math.unit(30, "lb"),
  29286. name: "Feral",
  29287. image: {
  29288. source: "./media/characters/theo-pangolin/feral.svg",
  29289. extra: 803 / 791,
  29290. bottom: 181 / 984
  29291. }
  29292. },
  29293. footFive: {
  29294. height: math.unit(1.43, "feet"),
  29295. name: "Foot (Five Toes)",
  29296. image: {
  29297. source: "./media/characters/theo-pangolin/foot-five.svg"
  29298. }
  29299. },
  29300. footFour: {
  29301. height: math.unit(1.43, "feet"),
  29302. name: "Foot (Four Toes)",
  29303. image: {
  29304. source: "./media/characters/theo-pangolin/foot-four.svg"
  29305. }
  29306. },
  29307. handFour: {
  29308. height: math.unit(0.81, "feet"),
  29309. name: "Hand (Four Fingers)",
  29310. image: {
  29311. source: "./media/characters/theo-pangolin/hand-four.svg"
  29312. }
  29313. },
  29314. handThree: {
  29315. height: math.unit(0.81, "feet"),
  29316. name: "Hand (Three Fingers)",
  29317. image: {
  29318. source: "./media/characters/theo-pangolin/hand-three.svg"
  29319. }
  29320. },
  29321. headFront: {
  29322. height: math.unit(1.37, "feet"),
  29323. name: "Head (Front)",
  29324. image: {
  29325. source: "./media/characters/theo-pangolin/head-front.svg"
  29326. }
  29327. },
  29328. headSide: {
  29329. height: math.unit(1.43, "feet"),
  29330. name: "Head (Side)",
  29331. image: {
  29332. source: "./media/characters/theo-pangolin/head-side.svg"
  29333. }
  29334. },
  29335. tongue: {
  29336. height: math.unit(2.29, "feet"),
  29337. name: "Tongue",
  29338. image: {
  29339. source: "./media/characters/theo-pangolin/tongue.svg"
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(6, "feet")
  29347. },
  29348. {
  29349. name: "Macro",
  29350. height: math.unit(400, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29357. {
  29358. front: {
  29359. height: math.unit(6, "inches"),
  29360. weight: math.unit(0.036, "kg"),
  29361. name: "Front",
  29362. image: {
  29363. source: "./media/characters/renée/front.svg",
  29364. extra: 900 / 886,
  29365. bottom: 8 / 908
  29366. }
  29367. },
  29368. },
  29369. [
  29370. {
  29371. name: "Nano",
  29372. height: math.unit(1, "nm")
  29373. },
  29374. {
  29375. name: "Micro",
  29376. height: math.unit(1, "mm")
  29377. },
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(6, "inches")
  29381. },
  29382. {
  29383. name: "Macro",
  29384. height: math.unit(2000, "feet"),
  29385. default: true
  29386. },
  29387. {
  29388. name: "Megamacro",
  29389. height: math.unit(2, "km")
  29390. },
  29391. {
  29392. name: "Gigamacro",
  29393. height: math.unit(2000, "km")
  29394. },
  29395. {
  29396. name: "Teramacro",
  29397. height: math.unit(250000, "km")
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(4, "meters"),
  29406. weight: math.unit(150, "kg"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/caledvwlch/front.svg",
  29410. extra: 1760 / 1551,
  29411. bottom: 28 / 1788
  29412. }
  29413. },
  29414. side: {
  29415. height: math.unit(4, "meters"),
  29416. weight: math.unit(150, "kg"),
  29417. name: "Side",
  29418. image: {
  29419. source: "./media/characters/caledvwlch/side.svg",
  29420. extra: 1605 / 1536,
  29421. bottom: 31 / 1636
  29422. }
  29423. },
  29424. back: {
  29425. height: math.unit(4, "meters"),
  29426. weight: math.unit(150, "kg"),
  29427. name: "Back",
  29428. image: {
  29429. source: "./media/characters/caledvwlch/back.svg",
  29430. extra: 1635 / 1565,
  29431. bottom: 27 / 1662
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "\"Incognito\"",
  29438. height: math.unit(4, "meters")
  29439. },
  29440. {
  29441. name: "Small rampage",
  29442. height: math.unit(600, "meters")
  29443. },
  29444. {
  29445. name: "Mega",
  29446. height: math.unit(30, "km")
  29447. },
  29448. {
  29449. name: "Home-size",
  29450. height: math.unit(50, "km"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Giga",
  29455. height: math.unit(300, "km")
  29456. },
  29457. {
  29458. name: "Lounging",
  29459. height: math.unit(11000, "km")
  29460. },
  29461. {
  29462. name: "Planet snacking",
  29463. height: math.unit(2000000, "km")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(6, "feet"),
  29472. weight: math.unit(215, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/sapphire-svell/front.svg",
  29476. extra: 495 / 455,
  29477. bottom: 20 / 515
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(216, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/sapphire-svell/back.svg",
  29486. extra: 497 / 477,
  29487. bottom: 7 / 504
  29488. }
  29489. },
  29490. maw: {
  29491. height: math.unit(1.57, "feet"),
  29492. name: "Maw",
  29493. image: {
  29494. source: "./media/characters/sapphire-svell/maw.svg"
  29495. }
  29496. },
  29497. foot: {
  29498. height: math.unit(1.07, "feet"),
  29499. name: "Foot",
  29500. image: {
  29501. source: "./media/characters/sapphire-svell/foot.svg"
  29502. }
  29503. },
  29504. toering: {
  29505. height: math.unit(1.7, "inch"),
  29506. name: "Toering",
  29507. image: {
  29508. source: "./media/characters/sapphire-svell/toering.svg"
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(300, "feet"),
  29516. default: true
  29517. },
  29518. {
  29519. name: "Augmented",
  29520. height: math.unit(1250, "feet")
  29521. },
  29522. {
  29523. name: "Unleashed",
  29524. height: math.unit(3000, "feet")
  29525. },
  29526. ]
  29527. ))
  29528. characterMakers.push(() => makeCharacter(
  29529. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29530. {
  29531. side: {
  29532. height: math.unit(2 + 3 / 12, "feet"),
  29533. weight: math.unit(110, "lb"),
  29534. name: "Side",
  29535. image: {
  29536. source: "./media/characters/glitch-flux/side.svg",
  29537. extra: 997 / 805,
  29538. bottom: 20 / 1017
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(2 + 3 / 12, "feet"),
  29546. default: true
  29547. },
  29548. ]
  29549. ))
  29550. characterMakers.push(() => makeCharacter(
  29551. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29552. {
  29553. front: {
  29554. height: math.unit(4, "meters"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/mid/front.svg",
  29558. extra: 507 / 476,
  29559. bottom: 17 / 524
  29560. }
  29561. },
  29562. back: {
  29563. height: math.unit(4, "meters"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/mid/back.svg",
  29567. extra: 519 / 487,
  29568. bottom: 7 / 526
  29569. }
  29570. },
  29571. stuck: {
  29572. height: math.unit(2.2, "meters"),
  29573. name: "Stuck",
  29574. image: {
  29575. source: "./media/characters/mid/stuck.svg",
  29576. extra: 1951 / 1869,
  29577. bottom: 88 / 2039
  29578. }
  29579. }
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(4, "meters"),
  29585. default: true
  29586. },
  29587. {
  29588. name: "Big",
  29589. height: math.unit(10, "meters")
  29590. },
  29591. {
  29592. name: "Macro",
  29593. height: math.unit(800, "meters")
  29594. },
  29595. {
  29596. name: "Megamacro",
  29597. height: math.unit(100, "km")
  29598. },
  29599. {
  29600. name: "Overgrown",
  29601. height: math.unit(1, "parsec")
  29602. },
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(2.5, "meters"),
  29610. weight: math.unit(225, "kg"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/iris/front.svg",
  29614. extra: 3348 / 3251,
  29615. bottom: 205 / 3553
  29616. }
  29617. },
  29618. maw: {
  29619. height: math.unit(0.56, "meter"),
  29620. name: "Maw",
  29621. image: {
  29622. source: "./media/characters/iris/maw.svg"
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Mewter cat",
  29629. height: math.unit(1.2, "meters")
  29630. },
  29631. {
  29632. name: "Minimacro",
  29633. height: math.unit(2.5, "meters"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(180, "meters")
  29639. },
  29640. {
  29641. name: "Megamacro",
  29642. height: math.unit(2746, "meters")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(135, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/axel/front.svg",
  29655. extra: 908 / 908,
  29656. bottom: 58 / 966
  29657. }
  29658. },
  29659. side: {
  29660. height: math.unit(6, "feet"),
  29661. weight: math.unit(135, "lb"),
  29662. name: "Side",
  29663. image: {
  29664. source: "./media/characters/axel/side.svg",
  29665. extra: 958 / 958,
  29666. bottom: 11 / 969
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(6, "feet"),
  29671. weight: math.unit(135, "lb"),
  29672. name: "Back",
  29673. image: {
  29674. source: "./media/characters/axel/back.svg",
  29675. extra: 887 / 887,
  29676. bottom: 34 / 921
  29677. }
  29678. },
  29679. head: {
  29680. height: math.unit(1.07, "feet"),
  29681. name: "Head",
  29682. image: {
  29683. source: "./media/characters/axel/head.svg"
  29684. }
  29685. },
  29686. beak: {
  29687. height: math.unit(1.4, "feet"),
  29688. name: "Beak",
  29689. image: {
  29690. source: "./media/characters/axel/beak.svg"
  29691. }
  29692. },
  29693. beakSide: {
  29694. height: math.unit(1.4, "feet"),
  29695. name: "Beak Side",
  29696. image: {
  29697. source: "./media/characters/axel/beak-side.svg"
  29698. }
  29699. },
  29700. sheath: {
  29701. height: math.unit(0.5, "feet"),
  29702. name: "Sheath",
  29703. image: {
  29704. source: "./media/characters/axel/sheath.svg"
  29705. }
  29706. },
  29707. dick: {
  29708. height: math.unit(0.98, "feet"),
  29709. name: "Dick",
  29710. image: {
  29711. source: "./media/characters/axel/dick.svg"
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Macro",
  29718. height: math.unit(68, "meters"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(3.5, "meters"),
  29728. weight: math.unit(1200, "kg"),
  29729. name: "Front",
  29730. image: {
  29731. source: "./media/characters/joanna/front.svg",
  29732. extra: 1596 / 1488,
  29733. bottom: 29 / 1625
  29734. }
  29735. },
  29736. back: {
  29737. height: math.unit(3.5, "meters"),
  29738. weight: math.unit(1200, "kg"),
  29739. name: "Back",
  29740. image: {
  29741. source: "./media/characters/joanna/back.svg",
  29742. extra: 1594 / 1495,
  29743. bottom: 26 / 1620
  29744. }
  29745. },
  29746. frontShorts: {
  29747. height: math.unit(3.5, "meters"),
  29748. weight: math.unit(1200, "kg"),
  29749. name: "Front (Shorts)",
  29750. image: {
  29751. source: "./media/characters/joanna/front-shorts.svg",
  29752. extra: 1596 / 1488,
  29753. bottom: 29 / 1625
  29754. }
  29755. },
  29756. frontBiker: {
  29757. height: math.unit(3.5, "meters"),
  29758. weight: math.unit(1200, "kg"),
  29759. name: "Front (Biker)",
  29760. image: {
  29761. source: "./media/characters/joanna/front-biker.svg",
  29762. extra: 1596 / 1488,
  29763. bottom: 29 / 1625
  29764. }
  29765. },
  29766. backBiker: {
  29767. height: math.unit(3.5, "meters"),
  29768. weight: math.unit(1200, "kg"),
  29769. name: "Back (Biker)",
  29770. image: {
  29771. source: "./media/characters/joanna/back-biker.svg",
  29772. extra: 1594 / 1495,
  29773. bottom: 88 / 1682
  29774. }
  29775. },
  29776. bikeLeft: {
  29777. height: math.unit(2.4, "meters"),
  29778. weight: math.unit(1600, "kg"),
  29779. name: "Bike (Left)",
  29780. image: {
  29781. source: "./media/characters/joanna/bike-left.svg",
  29782. extra: 720 / 720,
  29783. bottom: 8 / 728
  29784. }
  29785. },
  29786. bikeRight: {
  29787. height: math.unit(2.4, "meters"),
  29788. weight: math.unit(1600, "kg"),
  29789. name: "Bike (Right)",
  29790. image: {
  29791. source: "./media/characters/joanna/bike-right.svg",
  29792. extra: 720 / 720,
  29793. bottom: 8 / 728
  29794. }
  29795. },
  29796. },
  29797. [
  29798. {
  29799. name: "Incognito",
  29800. height: math.unit(3.5, "meters")
  29801. },
  29802. {
  29803. name: "Casual Big",
  29804. height: math.unit(200, "meters")
  29805. },
  29806. {
  29807. name: "Macro",
  29808. height: math.unit(600, "meters")
  29809. },
  29810. {
  29811. name: "Original",
  29812. height: math.unit(20, "km"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Giga",
  29817. height: math.unit(400, "km")
  29818. },
  29819. {
  29820. name: "Lounging",
  29821. height: math.unit(1500, "km")
  29822. },
  29823. {
  29824. name: "Planetary",
  29825. height: math.unit(200000, "km")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(6, "feet"),
  29834. weight: math.unit(150, "lb"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/hugo-sigil/front.svg",
  29838. extra: 522 / 500,
  29839. bottom: 2 / 524
  29840. }
  29841. },
  29842. back: {
  29843. height: math.unit(6, "feet"),
  29844. weight: math.unit(150, "lb"),
  29845. name: "Back",
  29846. image: {
  29847. source: "./media/characters/hugo-sigil/back.svg",
  29848. extra: 519 / 495,
  29849. bottom: 5 / 524
  29850. }
  29851. },
  29852. maw: {
  29853. height: math.unit(1.4, "feet"),
  29854. weight: math.unit(150, "lb"),
  29855. name: "Maw",
  29856. image: {
  29857. source: "./media/characters/hugo-sigil/maw.svg"
  29858. }
  29859. },
  29860. feet: {
  29861. height: math.unit(1.56, "feet"),
  29862. weight: math.unit(150, "lb"),
  29863. name: "Feet",
  29864. image: {
  29865. source: "./media/characters/hugo-sigil/feet.svg",
  29866. extra: 177 / 177,
  29867. bottom: 12 / 189
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Normal",
  29874. height: math.unit(6, "feet")
  29875. },
  29876. {
  29877. name: "Macro",
  29878. height: math.unit(200, "feet"),
  29879. default: true
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29885. {
  29886. front: {
  29887. height: math.unit(6, "feet"),
  29888. weight: math.unit(150, "lb"),
  29889. name: "Front",
  29890. image: {
  29891. source: "./media/characters/peri/front.svg",
  29892. extra: 2354 / 2233,
  29893. bottom: 49 / 2403
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Really Small",
  29900. height: math.unit(1, "nm")
  29901. },
  29902. {
  29903. name: "Micro",
  29904. height: math.unit(4, "inches")
  29905. },
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(7, "inches"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Macro",
  29913. height: math.unit(400, "feet")
  29914. },
  29915. {
  29916. name: "Megamacro",
  29917. height: math.unit(100, "miles")
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29923. {
  29924. frontSlim: {
  29925. height: math.unit(7, "feet"),
  29926. name: "Front (Slim)",
  29927. image: {
  29928. source: "./media/characters/issilora/front-slim.svg",
  29929. extra: 529 / 449,
  29930. bottom: 53 / 582
  29931. }
  29932. },
  29933. sideSlim: {
  29934. height: math.unit(7, "feet"),
  29935. name: "Side (Slim)",
  29936. image: {
  29937. source: "./media/characters/issilora/side-slim.svg",
  29938. extra: 570 / 480,
  29939. bottom: 30 / 600
  29940. }
  29941. },
  29942. backSlim: {
  29943. height: math.unit(7, "feet"),
  29944. name: "Back (Slim)",
  29945. image: {
  29946. source: "./media/characters/issilora/back-slim.svg",
  29947. extra: 537 / 455,
  29948. bottom: 46 / 583
  29949. }
  29950. },
  29951. frontBuff: {
  29952. height: math.unit(7, "feet"),
  29953. name: "Front (Buff)",
  29954. image: {
  29955. source: "./media/characters/issilora/front-buff.svg",
  29956. extra: 2310 / 2035,
  29957. bottom: 335 / 2645
  29958. }
  29959. },
  29960. head: {
  29961. height: math.unit(1.94, "feet"),
  29962. name: "Head",
  29963. image: {
  29964. source: "./media/characters/issilora/head.svg"
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Minimum",
  29971. height: math.unit(7, "feet")
  29972. },
  29973. {
  29974. name: "Comfortable",
  29975. height: math.unit(17, "feet")
  29976. },
  29977. {
  29978. name: "Fun Size",
  29979. height: math.unit(47, "feet")
  29980. },
  29981. {
  29982. name: "Natural Macro",
  29983. height: math.unit(137, "feet"),
  29984. default: true
  29985. },
  29986. {
  29987. name: "Maximum Kaiju",
  29988. height: math.unit(397, "feet")
  29989. },
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29994. {
  29995. front: {
  29996. height: math.unit(50 + 9/12, "feet"),
  29997. weight: math.unit(32.8, "tons"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/irb'iiritaahn/front.svg",
  30001. extra: 1878/1826,
  30002. bottom: 326/2204
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(50 + 9/12, "feet"),
  30007. weight: math.unit(32.8, "tons"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/irb'iiritaahn/back.svg",
  30011. extra: 2052/2018,
  30012. bottom: 152/2204
  30013. }
  30014. },
  30015. head: {
  30016. height: math.unit(12.86, "feet"),
  30017. name: "Head",
  30018. image: {
  30019. source: "./media/characters/irb'iiritaahn/head.svg"
  30020. }
  30021. },
  30022. maw: {
  30023. height: math.unit(9.66, "feet"),
  30024. name: "Maw",
  30025. image: {
  30026. source: "./media/characters/irb'iiritaahn/maw.svg"
  30027. }
  30028. },
  30029. frontDick: {
  30030. height: math.unit(8.78461, "feet"),
  30031. name: "Front Dick",
  30032. image: {
  30033. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30034. }
  30035. },
  30036. rearDick: {
  30037. height: math.unit(8.78461, "feet"),
  30038. name: "Rear Dick",
  30039. image: {
  30040. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30041. }
  30042. },
  30043. rearDickUnfolded: {
  30044. height: math.unit(8.78, "feet"),
  30045. name: "Rear Dick (Unfolded)",
  30046. image: {
  30047. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30048. }
  30049. },
  30050. wings: {
  30051. height: math.unit(43, "feet"),
  30052. name: "Wings",
  30053. image: {
  30054. source: "./media/characters/irb'iiritaahn/wings.svg"
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Macro",
  30061. height: math.unit(50 + 9/12, "feet"),
  30062. default: true
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30068. {
  30069. front: {
  30070. height: math.unit(205, "cm"),
  30071. weight: math.unit(102, "kg"),
  30072. name: "Front",
  30073. image: {
  30074. source: "./media/characters/irbisgreif/front.svg",
  30075. extra: 785/706,
  30076. bottom: 13/798
  30077. }
  30078. },
  30079. back: {
  30080. height: math.unit(205, "cm"),
  30081. weight: math.unit(102, "kg"),
  30082. name: "Back",
  30083. image: {
  30084. source: "./media/characters/irbisgreif/back.svg",
  30085. extra: 713/701,
  30086. bottom: 26/739
  30087. }
  30088. },
  30089. frontDressed: {
  30090. height: math.unit(216, "cm"),
  30091. weight: math.unit(102, "kg"),
  30092. name: "Front-dressed",
  30093. image: {
  30094. source: "./media/characters/irbisgreif/front-dressed.svg",
  30095. extra: 902/776,
  30096. bottom: 14/916
  30097. }
  30098. },
  30099. sideDressed: {
  30100. height: math.unit(195, "cm"),
  30101. weight: math.unit(102, "kg"),
  30102. name: "Side-dressed",
  30103. image: {
  30104. source: "./media/characters/irbisgreif/side-dressed.svg",
  30105. extra: 788/688,
  30106. bottom: 21/809
  30107. }
  30108. },
  30109. backDressed: {
  30110. height: math.unit(216, "cm"),
  30111. weight: math.unit(102, "kg"),
  30112. name: "Back-dressed",
  30113. image: {
  30114. source: "./media/characters/irbisgreif/back-dressed.svg",
  30115. extra: 901/783,
  30116. bottom: 10/911
  30117. }
  30118. },
  30119. dick: {
  30120. height: math.unit(0.49, "feet"),
  30121. name: "Dick",
  30122. image: {
  30123. source: "./media/characters/irbisgreif/dick.svg"
  30124. }
  30125. },
  30126. wingTop: {
  30127. height: math.unit(1.93 , "feet"),
  30128. name: "Wing-top",
  30129. image: {
  30130. source: "./media/characters/irbisgreif/wing-top.svg"
  30131. }
  30132. },
  30133. wingBottom: {
  30134. height: math.unit(1.93 , "feet"),
  30135. name: "Wing-bottom",
  30136. image: {
  30137. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Normal",
  30144. height: math.unit(216, "cm"),
  30145. default: true
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(6, "feet"),
  30154. weight: math.unit(150, "lb"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/pride/front.svg",
  30158. extra: 1299/1230,
  30159. bottom: 18/1317
  30160. }
  30161. },
  30162. },
  30163. [
  30164. {
  30165. name: "Normal",
  30166. height: math.unit(7, "feet")
  30167. },
  30168. {
  30169. name: "Mini-macro",
  30170. height: math.unit(11, "feet")
  30171. },
  30172. {
  30173. name: "Macro",
  30174. height: math.unit(15, "meters"),
  30175. default: true
  30176. },
  30177. {
  30178. name: "Macro+",
  30179. height: math.unit(40, "meters")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30185. {
  30186. front: {
  30187. height: math.unit(4 + 2 / 12, "feet"),
  30188. weight: math.unit(95, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/vaelophis-nyx/front.svg",
  30192. extra: 2532/2330,
  30193. bottom: 0/2532
  30194. }
  30195. },
  30196. back: {
  30197. height: math.unit(4 + 2 / 12, "feet"),
  30198. weight: math.unit(95, "lb"),
  30199. name: "Back",
  30200. image: {
  30201. source: "./media/characters/vaelophis-nyx/back.svg",
  30202. extra: 2484/2361,
  30203. bottom: 0/2484
  30204. }
  30205. },
  30206. feralSide: {
  30207. height: math.unit(2 + 1/12, "feet"),
  30208. weight: math.unit(20, "lb"),
  30209. name: "Feral (Side)",
  30210. image: {
  30211. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30212. extra: 1721/1581,
  30213. bottom: 70/1791
  30214. }
  30215. },
  30216. feralLazing: {
  30217. height: math.unit(1.08, "feet"),
  30218. weight: math.unit(20, "lb"),
  30219. name: "Feral (Lazing)",
  30220. image: {
  30221. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30222. extra: 822/822,
  30223. bottom: 248/1070
  30224. }
  30225. },
  30226. ear: {
  30227. height: math.unit(0.416, "feet"),
  30228. name: "Ear",
  30229. image: {
  30230. source: "./media/characters/vaelophis-nyx/ear.svg"
  30231. }
  30232. },
  30233. eye: {
  30234. height: math.unit(0.0748, "feet"),
  30235. name: "Eye",
  30236. image: {
  30237. source: "./media/characters/vaelophis-nyx/eye.svg"
  30238. }
  30239. },
  30240. mouth: {
  30241. height: math.unit(0.378, "feet"),
  30242. name: "Mouth",
  30243. image: {
  30244. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30245. }
  30246. },
  30247. spade: {
  30248. height: math.unit(0.55, "feet"),
  30249. name: "Spade",
  30250. image: {
  30251. source: "./media/characters/vaelophis-nyx/spade.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(4 + 2/12, "feet"),
  30259. default: true
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30265. {
  30266. front: {
  30267. height: math.unit(7, "feet"),
  30268. weight: math.unit(231, "lb"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/flux/front.svg",
  30272. extra: 919/871,
  30273. bottom: 0/919
  30274. }
  30275. },
  30276. back: {
  30277. height: math.unit(7, "feet"),
  30278. weight: math.unit(231, "lb"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/flux/back.svg",
  30282. extra: 1040/992,
  30283. bottom: 0/1040
  30284. }
  30285. },
  30286. frontDressed: {
  30287. height: math.unit(7, "feet"),
  30288. weight: math.unit(231, "lb"),
  30289. name: "Front (Dressed)",
  30290. image: {
  30291. source: "./media/characters/flux/front-dressed.svg",
  30292. extra: 919/871,
  30293. bottom: 0/919
  30294. }
  30295. },
  30296. feralSide: {
  30297. height: math.unit(5, "feet"),
  30298. weight: math.unit(150, "lb"),
  30299. name: "Feral (Side)",
  30300. image: {
  30301. source: "./media/characters/flux/feral-side.svg",
  30302. extra: 598/528,
  30303. bottom: 28/626
  30304. }
  30305. },
  30306. head: {
  30307. height: math.unit(1.585, "feet"),
  30308. name: "Head",
  30309. image: {
  30310. source: "./media/characters/flux/head.svg"
  30311. }
  30312. },
  30313. headSide: {
  30314. height: math.unit(1.74, "feet"),
  30315. name: "Head (Side)",
  30316. image: {
  30317. source: "./media/characters/flux/head-side.svg"
  30318. }
  30319. },
  30320. headSideFire: {
  30321. height: math.unit(1.76, "feet"),
  30322. name: "Head (Side, Fire)",
  30323. image: {
  30324. source: "./media/characters/flux/head-side-fire.svg"
  30325. }
  30326. },
  30327. },
  30328. [
  30329. {
  30330. name: "Normal",
  30331. height: math.unit(7, "feet"),
  30332. default: true
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30338. {
  30339. front: {
  30340. height: math.unit(9, "feet"),
  30341. weight: math.unit(1012, "lb"),
  30342. name: "Front",
  30343. image: {
  30344. source: "./media/characters/ulfra-lupae/front.svg",
  30345. extra: 1083/1011,
  30346. bottom: 67/1150
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Micro",
  30353. height: math.unit(6, "inches")
  30354. },
  30355. {
  30356. name: "Socializing",
  30357. height: math.unit(6 + 5/12, "feet")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(9, "feet"),
  30362. default: true
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(150, "feet")
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(5 + 2/12, "feet"),
  30375. weight: math.unit(120, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/timber/front.svg",
  30379. extra: 2814/2705,
  30380. bottom: 181/2995
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(5 + 2/12, "feet"),
  30388. default: true
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(5 + 7/12, "feet"),
  30397. weight: math.unit(220, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/nicki/front.svg",
  30401. extra: 453/419,
  30402. bottom: 7/460
  30403. }
  30404. },
  30405. frontAlt: {
  30406. height: math.unit(5 + 7/12, "feet"),
  30407. weight: math.unit(220, "lb"),
  30408. name: "Front-alt",
  30409. image: {
  30410. source: "./media/characters/nicki/front-alt.svg",
  30411. extra: 435/411,
  30412. bottom: 12/447
  30413. }
  30414. },
  30415. back: {
  30416. height: math.unit(5 + 7/12, "feet"),
  30417. weight: math.unit(220, "lb"),
  30418. name: "Back",
  30419. image: {
  30420. source: "./media/characters/nicki/back.svg",
  30421. extra: 440/413,
  30422. bottom: 19/459
  30423. }
  30424. },
  30425. taur: {
  30426. height: math.unit(7 + 6/12, "feet"),
  30427. weight: math.unit(700, "lb"),
  30428. name: "Taur",
  30429. image: {
  30430. source: "./media/characters/nicki/taur.svg",
  30431. extra: 975/773,
  30432. bottom: 0/975
  30433. }
  30434. },
  30435. frontNsfw: {
  30436. height: math.unit(5 + 7/12, "feet"),
  30437. weight: math.unit(220, "lb"),
  30438. name: "Front (NSFW)",
  30439. image: {
  30440. source: "./media/characters/nicki/front-nsfw.svg",
  30441. extra: 453/419,
  30442. bottom: 7/460
  30443. }
  30444. },
  30445. frontNsfwAlt: {
  30446. height: math.unit(5 + 7/12, "feet"),
  30447. weight: math.unit(220, "lb"),
  30448. name: "Front (Alt, NSFW)",
  30449. image: {
  30450. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30451. extra: 435/411,
  30452. bottom: 12/447
  30453. }
  30454. },
  30455. backNsfw: {
  30456. height: math.unit(5 + 7/12, "feet"),
  30457. weight: math.unit(220, "lb"),
  30458. name: "Back (NSFW)",
  30459. image: {
  30460. source: "./media/characters/nicki/back-nsfw.svg",
  30461. extra: 440/413,
  30462. bottom: 19/459
  30463. }
  30464. },
  30465. head: {
  30466. height: math.unit(2.1, "feet"),
  30467. name: "Head",
  30468. image: {
  30469. source: "./media/characters/nicki/head.svg"
  30470. }
  30471. },
  30472. paw: {
  30473. height: math.unit(1.88, "feet"),
  30474. name: "Paw",
  30475. image: {
  30476. source: "./media/characters/nicki/paw.svg"
  30477. }
  30478. },
  30479. },
  30480. [
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(5 + 7/12, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(7 + 10/12, "feet"),
  30493. weight: math.unit(3.5, "tons"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/lee/front.svg",
  30497. extra: 1773/1615,
  30498. bottom: 86/1859
  30499. }
  30500. },
  30501. hand: {
  30502. height: math.unit(1.78, "feet"),
  30503. name: "Hand",
  30504. image: {
  30505. source: "./media/characters/lee/hand.svg"
  30506. }
  30507. },
  30508. maw: {
  30509. height: math.unit(1.18, "feet"),
  30510. name: "Maw",
  30511. image: {
  30512. source: "./media/characters/lee/maw.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(7 + 10/12, "feet"),
  30520. default: true
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30526. {
  30527. front: {
  30528. height: math.unit(9, "feet"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/guti/front.svg",
  30532. extra: 4551/4355,
  30533. bottom: 123/4674
  30534. }
  30535. },
  30536. tongue: {
  30537. height: math.unit(1, "feet"),
  30538. name: "Tongue",
  30539. image: {
  30540. source: "./media/characters/guti/tongue.svg"
  30541. }
  30542. },
  30543. paw: {
  30544. height: math.unit(1.18, "feet"),
  30545. name: "Paw",
  30546. image: {
  30547. source: "./media/characters/guti/paw.svg"
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(9, "feet"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30561. {
  30562. side: {
  30563. height: math.unit(5, "meters"),
  30564. name: "Side",
  30565. image: {
  30566. source: "./media/characters/vesper/side.svg",
  30567. extra: 1605/1518,
  30568. bottom: 0/1605
  30569. }
  30570. },
  30571. },
  30572. [
  30573. {
  30574. name: "Small",
  30575. height: math.unit(5, "meters")
  30576. },
  30577. {
  30578. name: "Sage",
  30579. height: math.unit(100, "meters"),
  30580. default: true
  30581. },
  30582. {
  30583. name: "Fun Size",
  30584. height: math.unit(600, "meters")
  30585. },
  30586. {
  30587. name: "Goddess",
  30588. height: math.unit(20000, "km")
  30589. },
  30590. {
  30591. name: "Maximum",
  30592. height: math.unit(5, "galaxies")
  30593. },
  30594. ]
  30595. ))
  30596. characterMakers.push(() => makeCharacter(
  30597. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30598. {
  30599. front: {
  30600. height: math.unit(6 + 3/12, "feet"),
  30601. weight: math.unit(190, "lb"),
  30602. name: "Front",
  30603. image: {
  30604. source: "./media/characters/gawain/front.svg",
  30605. extra: 2222/2139,
  30606. bottom: 90/2312
  30607. }
  30608. },
  30609. back: {
  30610. height: math.unit(6 + 3/12, "feet"),
  30611. weight: math.unit(190, "lb"),
  30612. name: "Back",
  30613. image: {
  30614. source: "./media/characters/gawain/back.svg",
  30615. extra: 2199/2111,
  30616. bottom: 73/2272
  30617. }
  30618. },
  30619. },
  30620. [
  30621. {
  30622. name: "Normal",
  30623. height: math.unit(6 + 3/12, "feet"),
  30624. default: true
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30630. {
  30631. side: {
  30632. height: math.unit(3.5, "meters"),
  30633. weight: math.unit(16000, "lb"),
  30634. name: "Side",
  30635. image: {
  30636. source: "./media/characters/dascalti/side.svg",
  30637. extra: 392/273,
  30638. bottom: 47/439
  30639. }
  30640. },
  30641. breath: {
  30642. height: math.unit(7.4, "feet"),
  30643. name: "Breath",
  30644. image: {
  30645. source: "./media/characters/dascalti/breath.svg"
  30646. }
  30647. },
  30648. fed: {
  30649. height: math.unit(3.6, "meters"),
  30650. weight: math.unit(16000, "lb"),
  30651. name: "Fed",
  30652. image: {
  30653. source: "./media/characters/dascalti/fed.svg",
  30654. extra: 1419/820,
  30655. bottom: 95/1514
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(3.5, "meters"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(3 + 5/12, "feet"),
  30672. name: "Front",
  30673. image: {
  30674. source: "./media/characters/mauve/front.svg",
  30675. extra: 1126/1033,
  30676. bottom: 65/1191
  30677. }
  30678. },
  30679. side: {
  30680. height: math.unit(3 + 5/12, "feet"),
  30681. name: "Side",
  30682. image: {
  30683. source: "./media/characters/mauve/side.svg",
  30684. extra: 1089/1001,
  30685. bottom: 29/1118
  30686. }
  30687. },
  30688. back: {
  30689. height: math.unit(3 + 5/12, "feet"),
  30690. name: "Back",
  30691. image: {
  30692. source: "./media/characters/mauve/back.svg",
  30693. extra: 1173/1053,
  30694. bottom: 109/1282
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Normal",
  30701. height: math.unit(3 + 5/12, "feet"),
  30702. default: true
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30708. {
  30709. front: {
  30710. height: math.unit(6 + 3/12, "feet"),
  30711. weight: math.unit(430, "lb"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/carlos/front.svg",
  30715. extra: 1964/1913,
  30716. bottom: 70/2034
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(6 + 3/12, "feet"),
  30724. default: true
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30730. {
  30731. back: {
  30732. height: math.unit(5 + 10/12, "feet"),
  30733. weight: math.unit(200, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/jax/back.svg",
  30737. extra: 764/739,
  30738. bottom: 25/789
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(5 + 10/12, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(8, "feet"),
  30755. weight: math.unit(250, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/eikthynir/front.svg",
  30759. extra: 1332/1166,
  30760. bottom: 82/1414
  30761. }
  30762. },
  30763. back: {
  30764. height: math.unit(8, "feet"),
  30765. weight: math.unit(250, "lb"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/eikthynir/back.svg",
  30769. extra: 1342/1190,
  30770. bottom: 19/1361
  30771. }
  30772. },
  30773. dick: {
  30774. height: math.unit(2.35, "feet"),
  30775. name: "Dick",
  30776. image: {
  30777. source: "./media/characters/eikthynir/dick.svg"
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(8, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(99, "meters"),
  30794. weight: math.unit(13000, "tons"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/zlmos/front.svg",
  30798. extra: 2202/1992,
  30799. bottom: 315/2517
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Macro",
  30806. height: math.unit(99, "meters"),
  30807. default: true
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(6 + 5/12, "feet"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/purri/front.svg",
  30819. extra: 1698/1610,
  30820. bottom: 32/1730
  30821. }
  30822. },
  30823. frontAlt: {
  30824. height: math.unit(6 + 5/12, "feet"),
  30825. name: "Front (Alt)",
  30826. image: {
  30827. source: "./media/characters/purri/front-alt.svg",
  30828. extra: 450/420,
  30829. bottom: 26/476
  30830. }
  30831. },
  30832. boots: {
  30833. height: math.unit(5.5, "feet"),
  30834. name: "Boots",
  30835. image: {
  30836. source: "./media/characters/purri/boots.svg",
  30837. extra: 905/853,
  30838. bottom: 18/923
  30839. }
  30840. },
  30841. lying: {
  30842. height: math.unit(2, "feet"),
  30843. name: "Lying",
  30844. image: {
  30845. source: "./media/characters/purri/lying.svg",
  30846. extra: 940/843,
  30847. bottom: 146/1086
  30848. }
  30849. },
  30850. devious: {
  30851. height: math.unit(1.77, "feet"),
  30852. name: "Devious",
  30853. image: {
  30854. source: "./media/characters/purri/devious.svg",
  30855. extra: 1440/1155,
  30856. bottom: 147/1587
  30857. }
  30858. },
  30859. bean: {
  30860. height: math.unit(1.94, "feet"),
  30861. name: "Bean",
  30862. image: {
  30863. source: "./media/characters/purri/bean.svg"
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Micro",
  30870. height: math.unit(1, "mm")
  30871. },
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(6 + 5/12, "feet"),
  30875. default: true
  30876. },
  30877. {
  30878. name: "Macro :3c",
  30879. height: math.unit(2, "miles")
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(6 + 2/12, "feet"),
  30888. weight: math.unit(250, "lb"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/moonlight/front.svg",
  30892. extra: 1044/908,
  30893. bottom: 56/1100
  30894. }
  30895. },
  30896. feral: {
  30897. height: math.unit(3 + 1/12, "feet"),
  30898. weight: math.unit(50, "kg"),
  30899. name: "Feral",
  30900. image: {
  30901. source: "./media/characters/moonlight/feral.svg",
  30902. extra: 3705/2791,
  30903. bottom: 145/3850
  30904. }
  30905. },
  30906. paw: {
  30907. height: math.unit(1, "feet"),
  30908. name: "Paw",
  30909. image: {
  30910. source: "./media/characters/moonlight/paw.svg"
  30911. }
  30912. },
  30913. paws: {
  30914. height: math.unit(0.98, "feet"),
  30915. name: "Paws",
  30916. image: {
  30917. source: "./media/characters/moonlight/paws.svg",
  30918. extra: 939/939,
  30919. bottom: 50/989
  30920. }
  30921. },
  30922. mouth: {
  30923. height: math.unit(0.48, "feet"),
  30924. name: "Mouth",
  30925. image: {
  30926. source: "./media/characters/moonlight/mouth.svg"
  30927. }
  30928. },
  30929. dick: {
  30930. height: math.unit(1.46, "feet"),
  30931. name: "Dick",
  30932. image: {
  30933. source: "./media/characters/moonlight/dick.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Normal",
  30940. height: math.unit(6 + 2/12, "feet"),
  30941. default: true
  30942. },
  30943. {
  30944. name: "Macro",
  30945. height: math.unit(300, "feet")
  30946. },
  30947. {
  30948. name: "Macro+",
  30949. height: math.unit(1, "mile")
  30950. },
  30951. {
  30952. name: "Mt. Moon",
  30953. height: math.unit(5, "miles")
  30954. },
  30955. {
  30956. name: "Megamacro",
  30957. height: math.unit(15, "miles")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30963. {
  30964. back: {
  30965. height: math.unit(6, "feet"),
  30966. weight: math.unit(150, "lb"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/sylen/back.svg",
  30970. extra: 1335/1273,
  30971. bottom: 107/1442
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(5 + 5/12, "feet")
  30979. },
  30980. {
  30981. name: "Megamacro",
  30982. height: math.unit(3, "miles"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(6, "feet"),
  30992. weight: math.unit(190, "lb"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/huttser/front.svg",
  30996. extra: 1152/1058,
  30997. bottom: 23/1175
  30998. }
  30999. },
  31000. side: {
  31001. height: math.unit(6, "feet"),
  31002. weight: math.unit(190, "lb"),
  31003. name: "Side",
  31004. image: {
  31005. source: "./media/characters/huttser/side.svg",
  31006. extra: 1174/1065,
  31007. bottom: 18/1192
  31008. }
  31009. },
  31010. back: {
  31011. height: math.unit(6, "feet"),
  31012. weight: math.unit(190, "lb"),
  31013. name: "Back",
  31014. image: {
  31015. source: "./media/characters/huttser/back.svg",
  31016. extra: 1158/1056,
  31017. bottom: 12/1170
  31018. }
  31019. },
  31020. },
  31021. [
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31026. {
  31027. side: {
  31028. height: math.unit(12 + 9/12, "feet"),
  31029. weight: math.unit(15000, "lb"),
  31030. name: "Side",
  31031. image: {
  31032. source: "./media/characters/faan/side.svg",
  31033. extra: 2747/2697,
  31034. bottom: 0/2747
  31035. }
  31036. },
  31037. front: {
  31038. height: math.unit(12 + 9/12, "feet"),
  31039. weight: math.unit(15000, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/faan/front.svg",
  31043. extra: 607/571,
  31044. bottom: 24/631
  31045. }
  31046. },
  31047. head: {
  31048. height: math.unit(2.85, "feet"),
  31049. name: "Head",
  31050. image: {
  31051. source: "./media/characters/faan/head.svg"
  31052. }
  31053. },
  31054. headAlt: {
  31055. height: math.unit(3.13, "feet"),
  31056. name: "Head-alt",
  31057. image: {
  31058. source: "./media/characters/faan/head-alt.svg"
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(12 + 9/12, "feet"),
  31066. default: true
  31067. },
  31068. ]
  31069. ))
  31070. characterMakers.push(() => makeCharacter(
  31071. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31072. {
  31073. front: {
  31074. height: math.unit(6, "feet"),
  31075. weight: math.unit(300, "lb"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/tanio/front.svg",
  31079. extra: 711/673,
  31080. bottom: 25/736
  31081. }
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Normal",
  31087. height: math.unit(6, "feet"),
  31088. default: true
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31094. {
  31095. front: {
  31096. height: math.unit(3, "inches"),
  31097. name: "Front",
  31098. image: {
  31099. source: "./media/characters/noboru/front.svg",
  31100. extra: 1039/932,
  31101. bottom: 18/1057
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Micro",
  31108. height: math.unit(3, "inches"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(1.85, "meters"),
  31118. weight: math.unit(80, "kg"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/daniel-barrett/front.svg",
  31122. extra: 355/337,
  31123. bottom: 9/364
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Pico",
  31130. height: math.unit(0.0433, "mm")
  31131. },
  31132. {
  31133. name: "Nano",
  31134. height: math.unit(1.5, "mm")
  31135. },
  31136. {
  31137. name: "Micro",
  31138. height: math.unit(5.3, "cm"),
  31139. default: true
  31140. },
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(1.85, "meters")
  31144. },
  31145. {
  31146. name: "Macro",
  31147. height: math.unit(64.7, "meters")
  31148. },
  31149. {
  31150. name: "Megamacro",
  31151. height: math.unit(2.26, "km")
  31152. },
  31153. {
  31154. name: "Gigamacro",
  31155. height: math.unit(79, "km")
  31156. },
  31157. {
  31158. name: "Teramacro",
  31159. height: math.unit(2765, "km")
  31160. },
  31161. {
  31162. name: "Petamacro",
  31163. height: math.unit(96678, "km")
  31164. },
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31169. {
  31170. front: {
  31171. height: math.unit(30, "meters"),
  31172. weight: math.unit(400, "tons"),
  31173. name: "Front",
  31174. image: {
  31175. source: "./media/characters/zeel/front.svg",
  31176. extra: 2599/2599,
  31177. bottom: 226/2825
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(30, "meters"),
  31185. default: true
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31191. {
  31192. front: {
  31193. height: math.unit(6 + 7/12, "feet"),
  31194. weight: math.unit(210, "lb"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/tarn/front.svg",
  31198. extra: 3517/3220,
  31199. bottom: 91/3608
  31200. }
  31201. },
  31202. back: {
  31203. height: math.unit(6 + 7/12, "feet"),
  31204. weight: math.unit(210, "lb"),
  31205. name: "Back",
  31206. image: {
  31207. source: "./media/characters/tarn/back.svg",
  31208. extra: 3566/3241,
  31209. bottom: 34/3600
  31210. }
  31211. },
  31212. dick: {
  31213. height: math.unit(1.65, "feet"),
  31214. name: "Dick",
  31215. image: {
  31216. source: "./media/characters/tarn/dick.svg"
  31217. }
  31218. },
  31219. paw: {
  31220. height: math.unit(1.80, "feet"),
  31221. name: "Paw",
  31222. image: {
  31223. source: "./media/characters/tarn/paw.svg"
  31224. }
  31225. },
  31226. tongue: {
  31227. height: math.unit(0.97, "feet"),
  31228. name: "Tongue",
  31229. image: {
  31230. source: "./media/characters/tarn/tongue.svg"
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Micro",
  31237. height: math.unit(4, "inches")
  31238. },
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(6 + 7/12, "feet"),
  31242. default: true
  31243. },
  31244. {
  31245. name: "Macro",
  31246. height: math.unit(300, "feet")
  31247. },
  31248. ]
  31249. ))
  31250. characterMakers.push(() => makeCharacter(
  31251. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31252. {
  31253. front: {
  31254. height: math.unit(5 + 7/12, "feet"),
  31255. weight: math.unit(80, "kg"),
  31256. name: "Front",
  31257. image: {
  31258. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31259. extra: 3023/2865,
  31260. bottom: 33/3056
  31261. }
  31262. },
  31263. back: {
  31264. height: math.unit(5 + 7/12, "feet"),
  31265. weight: math.unit(80, "kg"),
  31266. name: "Back",
  31267. image: {
  31268. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31269. extra: 3020/2886,
  31270. bottom: 30/3050
  31271. }
  31272. },
  31273. dick: {
  31274. height: math.unit(0.98, "feet"),
  31275. name: "Dick",
  31276. image: {
  31277. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31278. }
  31279. },
  31280. anatomy: {
  31281. height: math.unit(2.86, "feet"),
  31282. name: "Anatomy",
  31283. image: {
  31284. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Really Small",
  31291. height: math.unit(2, "inches")
  31292. },
  31293. {
  31294. name: "Micro",
  31295. height: math.unit(5.583, "inches")
  31296. },
  31297. {
  31298. name: "Normal",
  31299. height: math.unit(5 + 7/12, "feet"),
  31300. default: true
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(67, "feet")
  31305. },
  31306. {
  31307. name: "Megamacro",
  31308. height: math.unit(134, "feet")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(9, "feet"),
  31317. weight: math.unit(120, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/sally/front.svg",
  31321. extra: 1506/1349,
  31322. bottom: 66/1572
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Normal",
  31329. height: math.unit(9, "feet"),
  31330. default: true
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(8, "feet"),
  31339. weight: math.unit(900, "lb"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/owen/front.svg",
  31343. extra: 1761/1657,
  31344. bottom: 74/1835
  31345. }
  31346. },
  31347. side: {
  31348. height: math.unit(8, "feet"),
  31349. weight: math.unit(900, "lb"),
  31350. name: "Side",
  31351. image: {
  31352. source: "./media/characters/owen/side.svg",
  31353. extra: 1797/1734,
  31354. bottom: 30/1827
  31355. }
  31356. },
  31357. back: {
  31358. height: math.unit(8, "feet"),
  31359. weight: math.unit(900, "lb"),
  31360. name: "Back",
  31361. image: {
  31362. source: "./media/characters/owen/back.svg",
  31363. extra: 1796/1706,
  31364. bottom: 59/1855
  31365. }
  31366. },
  31367. maw: {
  31368. height: math.unit(1.76, "feet"),
  31369. name: "Maw",
  31370. image: {
  31371. source: "./media/characters/owen/maw.svg"
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Normal",
  31378. height: math.unit(8, "feet"),
  31379. default: true
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31385. {
  31386. front: {
  31387. height: math.unit(4, "feet"),
  31388. weight: math.unit(400, "lb"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/ryth/front.svg",
  31392. extra: 876/691,
  31393. bottom: 25/901
  31394. }
  31395. },
  31396. goia: {
  31397. height: math.unit(12, "feet"),
  31398. weight: math.unit(10800, "lb"),
  31399. name: "Goia",
  31400. image: {
  31401. source: "./media/characters/ryth/goia.svg",
  31402. extra: 3450/3198,
  31403. bottom: 61/3511
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(4, "feet"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(7, "feet"),
  31420. weight: math.unit(180, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/necrolance/front.svg",
  31424. extra: 1062/947,
  31425. bottom: 41/1103
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(7, "feet"),
  31430. weight: math.unit(180, "lb"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/necrolance/back.svg",
  31434. extra: 1045/984,
  31435. bottom: 14/1059
  31436. }
  31437. },
  31438. wing: {
  31439. height: math.unit(2.67, "feet"),
  31440. name: "Wing",
  31441. image: {
  31442. source: "./media/characters/necrolance/wing.svg"
  31443. }
  31444. },
  31445. },
  31446. [
  31447. {
  31448. name: "Normal",
  31449. height: math.unit(7, "feet"),
  31450. default: true
  31451. },
  31452. ]
  31453. ))
  31454. characterMakers.push(() => makeCharacter(
  31455. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31456. {
  31457. front: {
  31458. height: math.unit(76, "meters"),
  31459. weight: math.unit(30000, "tons"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/tyler/front.svg",
  31463. extra: 1640/1640,
  31464. bottom: 114/1754
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Macro",
  31471. height: math.unit(76, "meters"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(4 + 11/12, "feet"),
  31481. weight: math.unit(132, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/icey/front.svg",
  31485. extra: 2750/2550,
  31486. bottom: 33/2783
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(4 + 11/12, "feet"),
  31491. weight: math.unit(132, "lb"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/icey/back.svg",
  31495. extra: 2624/2481,
  31496. bottom: 35/2659
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(4 + 11/12, "feet"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(100, "feet"),
  31513. weight: math.unit(0, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/smile/front.svg",
  31517. extra: 2983/2912,
  31518. bottom: 162/3145
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(100, "feet"),
  31523. weight: math.unit(0, "lb"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/smile/back.svg",
  31527. extra: 3143/3031,
  31528. bottom: 91/3234
  31529. }
  31530. },
  31531. head: {
  31532. height: math.unit(26.3, "feet"),
  31533. weight: math.unit(0, "lb"),
  31534. name: "Head",
  31535. image: {
  31536. source: "./media/characters/smile/head.svg"
  31537. }
  31538. },
  31539. collar: {
  31540. height: math.unit(5.3, "feet"),
  31541. weight: math.unit(0, "lb"),
  31542. name: "Collar",
  31543. image: {
  31544. source: "./media/characters/smile/collar.svg"
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Macro",
  31551. height: math.unit(100, "feet"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31558. {
  31559. dragon: {
  31560. height: math.unit(26, "feet"),
  31561. weight: math.unit(36, "tons"),
  31562. name: "Dragon",
  31563. image: {
  31564. source: "./media/characters/arimphae/dragon.svg",
  31565. extra: 1574/983,
  31566. bottom: 357/1931
  31567. }
  31568. },
  31569. drake: {
  31570. height: math.unit(9, "feet"),
  31571. weight: math.unit(1.5, "tons"),
  31572. name: "Drake",
  31573. image: {
  31574. source: "./media/characters/arimphae/drake.svg",
  31575. extra: 1120/925,
  31576. bottom: 435/1555
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Small",
  31583. height: math.unit(26*5/9, "feet")
  31584. },
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(26, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(8 + 9/12, "feet"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/xander/front.svg",
  31600. extra: 848/673,
  31601. bottom: 62/910
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(8 + 9/12, "feet"),
  31609. default: true
  31610. },
  31611. {
  31612. name: "Gaze Grabber",
  31613. height: math.unit(13 + 8/12, "feet")
  31614. },
  31615. {
  31616. name: "Jaw Dropper",
  31617. height: math.unit(27, "feet")
  31618. },
  31619. {
  31620. name: "Show Stopper",
  31621. height: math.unit(136, "feet")
  31622. },
  31623. {
  31624. name: "Superstar",
  31625. height: math.unit(1.9e6, "miles")
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31631. {
  31632. side: {
  31633. height: math.unit(2100, "feet"),
  31634. name: "Side",
  31635. image: {
  31636. source: "./media/characters/osiris/side.svg",
  31637. extra: 1105/939,
  31638. bottom: 167/1272
  31639. }
  31640. },
  31641. },
  31642. [
  31643. {
  31644. name: "Macro",
  31645. height: math.unit(2100, "feet"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(6 + 8/12, "feet"),
  31655. weight: math.unit(225, "lb"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/rhys-londe/front.svg",
  31659. extra: 2258/2141,
  31660. bottom: 188/2446
  31661. }
  31662. },
  31663. back: {
  31664. height: math.unit(6 + 8/12, "feet"),
  31665. weight: math.unit(225, "lb"),
  31666. name: "Back",
  31667. image: {
  31668. source: "./media/characters/rhys-londe/back.svg",
  31669. extra: 2237/2137,
  31670. bottom: 63/2300
  31671. }
  31672. },
  31673. frontNsfw: {
  31674. height: math.unit(6 + 8/12, "feet"),
  31675. weight: math.unit(225, "lb"),
  31676. name: "Front (NSFW)",
  31677. image: {
  31678. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31679. extra: 2258/2141,
  31680. bottom: 188/2446
  31681. }
  31682. },
  31683. backNsfw: {
  31684. height: math.unit(6 + 8/12, "feet"),
  31685. weight: math.unit(225, "lb"),
  31686. name: "Back (NSFW)",
  31687. image: {
  31688. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31689. extra: 2237/2137,
  31690. bottom: 63/2300
  31691. }
  31692. },
  31693. dick: {
  31694. height: math.unit(30, "inches"),
  31695. name: "Dick",
  31696. image: {
  31697. source: "./media/characters/rhys-londe/dick.svg"
  31698. }
  31699. },
  31700. maw: {
  31701. height: math.unit(1.6, "feet"),
  31702. name: "Maw",
  31703. image: {
  31704. source: "./media/characters/rhys-londe/maw.svg"
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Normal",
  31711. height: math.unit(6 + 8/12, "feet"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(3 + 10/12, "feet"),
  31721. weight: math.unit(90, "lb"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/taivas-ensim/front.svg",
  31725. extra: 1327/1216,
  31726. bottom: 96/1423
  31727. }
  31728. },
  31729. back: {
  31730. height: math.unit(3 + 10/12, "feet"),
  31731. weight: math.unit(90, "lb"),
  31732. name: "Back",
  31733. image: {
  31734. source: "./media/characters/taivas-ensim/back.svg",
  31735. extra: 1355/1247,
  31736. bottom: 11/1366
  31737. }
  31738. },
  31739. frontNsfw: {
  31740. height: math.unit(3 + 10/12, "feet"),
  31741. weight: math.unit(90, "lb"),
  31742. name: "Front (NSFW)",
  31743. image: {
  31744. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31745. extra: 1327/1216,
  31746. bottom: 96/1423
  31747. }
  31748. },
  31749. backNsfw: {
  31750. height: math.unit(3 + 10/12, "feet"),
  31751. weight: math.unit(90, "lb"),
  31752. name: "Back (NSFW)",
  31753. image: {
  31754. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31755. extra: 1355/1247,
  31756. bottom: 11/1366
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(3 + 10/12, "feet"),
  31764. default: true
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(9 + 6/12, "feet"),
  31773. weight: math.unit(940, "lb"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/byliss/front.svg",
  31777. extra: 1327/1290,
  31778. bottom: 82/1409
  31779. }
  31780. },
  31781. back: {
  31782. height: math.unit(9 + 6/12, "feet"),
  31783. weight: math.unit(940, "lb"),
  31784. name: "Back",
  31785. image: {
  31786. source: "./media/characters/byliss/back.svg",
  31787. extra: 1376/1349,
  31788. bottom: 9/1385
  31789. }
  31790. },
  31791. frontNsfw: {
  31792. height: math.unit(9 + 6/12, "feet"),
  31793. weight: math.unit(940, "lb"),
  31794. name: "Front (NSFW)",
  31795. image: {
  31796. source: "./media/characters/byliss/front-nsfw.svg",
  31797. extra: 1327/1290,
  31798. bottom: 82/1409
  31799. }
  31800. },
  31801. backNsfw: {
  31802. height: math.unit(9 + 6/12, "feet"),
  31803. weight: math.unit(940, "lb"),
  31804. name: "Back (NSFW)",
  31805. image: {
  31806. source: "./media/characters/byliss/back-nsfw.svg",
  31807. extra: 1376/1349,
  31808. bottom: 9/1385
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(9 + 6/12, "feet"),
  31816. default: true
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31822. {
  31823. front: {
  31824. height: math.unit(5 + 2/12, "feet"),
  31825. weight: math.unit(200, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/noraly/front.svg",
  31829. extra: 4985/4773,
  31830. bottom: 150/5135
  31831. }
  31832. },
  31833. full: {
  31834. height: math.unit(5 + 2/12, "feet"),
  31835. weight: math.unit(164, "lb"),
  31836. name: "Full",
  31837. image: {
  31838. source: "./media/characters/noraly/full.svg",
  31839. extra: 1114/1059,
  31840. bottom: 35/1149
  31841. }
  31842. },
  31843. fuller: {
  31844. height: math.unit(5 + 2/12, "feet"),
  31845. weight: math.unit(230, "lb"),
  31846. name: "Fuller",
  31847. image: {
  31848. source: "./media/characters/noraly/fuller.svg",
  31849. extra: 1114/1059,
  31850. bottom: 35/1149
  31851. }
  31852. },
  31853. fullest: {
  31854. height: math.unit(5 + 2/12, "feet"),
  31855. weight: math.unit(300, "lb"),
  31856. name: "Fullest",
  31857. image: {
  31858. source: "./media/characters/noraly/fullest.svg",
  31859. extra: 1114/1059,
  31860. bottom: 35/1149
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Normal",
  31867. height: math.unit(5 + 2/12, "feet"),
  31868. default: true
  31869. },
  31870. ]
  31871. ))
  31872. characterMakers.push(() => makeCharacter(
  31873. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31874. {
  31875. front: {
  31876. height: math.unit(5 + 2/12, "feet"),
  31877. weight: math.unit(210, "lb"),
  31878. name: "Front",
  31879. image: {
  31880. source: "./media/characters/pera/front.svg",
  31881. extra: 1560/1531,
  31882. bottom: 165/1725
  31883. }
  31884. },
  31885. back: {
  31886. height: math.unit(5 + 2/12, "feet"),
  31887. weight: math.unit(210, "lb"),
  31888. name: "Back",
  31889. image: {
  31890. source: "./media/characters/pera/back.svg",
  31891. extra: 1523/1493,
  31892. bottom: 152/1675
  31893. }
  31894. },
  31895. dick: {
  31896. height: math.unit(2.4, "feet"),
  31897. name: "Dick",
  31898. image: {
  31899. source: "./media/characters/pera/dick.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(5 + 2/12, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(12, "feet"),
  31916. weight: math.unit(3200, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/julian/front.svg",
  31920. extra: 2962/2701,
  31921. bottom: 184/3146
  31922. }
  31923. },
  31924. maw: {
  31925. height: math.unit(5.35, "feet"),
  31926. name: "Maw",
  31927. image: {
  31928. source: "./media/characters/julian/maw.svg"
  31929. }
  31930. },
  31931. paw: {
  31932. height: math.unit(3.07, "feet"),
  31933. name: "Paw",
  31934. image: {
  31935. source: "./media/characters/julian/paw.svg"
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Default",
  31942. height: math.unit(12, "feet"),
  31943. default: true
  31944. },
  31945. {
  31946. name: "Big",
  31947. height: math.unit(50, "feet")
  31948. },
  31949. {
  31950. name: "Really Big",
  31951. height: math.unit(1, "mile")
  31952. },
  31953. {
  31954. name: "Extremely Big",
  31955. height: math.unit(100, "miles")
  31956. },
  31957. {
  31958. name: "Planet Hugger",
  31959. height: math.unit(200, "megameters")
  31960. },
  31961. {
  31962. name: "Unreasonably Big",
  31963. height: math.unit(1e300, "meters")
  31964. },
  31965. ]
  31966. ))
  31967. characterMakers.push(() => makeCharacter(
  31968. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31969. {
  31970. solgooleo: {
  31971. height: math.unit(4, "meters"),
  31972. weight: math.unit(6000*1.5, "kg"),
  31973. volume: math.unit(6000, "liters"),
  31974. name: "Solgooleo",
  31975. image: {
  31976. source: "./media/characters/pi/solgooleo.svg",
  31977. extra: 388/331,
  31978. bottom: 29/417
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(4, "meters"),
  31986. default: true
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31992. {
  31993. front: {
  31994. height: math.unit(8 + 2/12, "feet"),
  31995. weight: math.unit(4, "tons"),
  31996. name: "Front",
  31997. image: {
  31998. source: "./media/characters/shaun/front.svg",
  31999. extra: 1550/1505,
  32000. bottom: 353/1903
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Lorg",
  32007. height: math.unit(8 + 2/12, "feet"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32014. {
  32015. front: {
  32016. height: math.unit(7, "feet"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/sini/front.svg",
  32020. extra: 726/678,
  32021. bottom: 35/761
  32022. }
  32023. },
  32024. back: {
  32025. height: math.unit(7, "feet"),
  32026. name: "Back",
  32027. image: {
  32028. source: "./media/characters/sini/back.svg",
  32029. extra: 743/701,
  32030. bottom: 12/755
  32031. }
  32032. },
  32033. mawAnthro: {
  32034. height: math.unit(2.14, "feet"),
  32035. name: "Maw (Anthro)",
  32036. image: {
  32037. source: "./media/characters/sini/maw-anthro.svg"
  32038. }
  32039. },
  32040. dick: {
  32041. height: math.unit(1.45, "feet"),
  32042. name: "Dick (Anthro)",
  32043. image: {
  32044. source: "./media/characters/sini/dick-anthro.svg"
  32045. }
  32046. },
  32047. feral: {
  32048. height: math.unit(13, "feet"),
  32049. name: "Feral",
  32050. image: {
  32051. source: "./media/characters/sini/feral.svg",
  32052. extra: 814/605,
  32053. bottom: 11/825
  32054. }
  32055. },
  32056. mawFeral: {
  32057. height: math.unit(4.6, "feet"),
  32058. name: "Maw-feral",
  32059. image: {
  32060. source: "./media/characters/sini/maw-feral.svg"
  32061. }
  32062. },
  32063. footFeral: {
  32064. height: math.unit(4.2, "feet"),
  32065. name: "Foot-feral",
  32066. image: {
  32067. source: "./media/characters/sini/foot-feral.svg"
  32068. }
  32069. },
  32070. },
  32071. [
  32072. {
  32073. name: "Normal",
  32074. height: math.unit(7, "feet"),
  32075. default: true
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32081. {
  32082. side: {
  32083. height: math.unit(13, "meters"),
  32084. weight: math.unit(9072, "kg"),
  32085. name: "Side",
  32086. image: {
  32087. source: "./media/characters/raylldo/side.svg",
  32088. extra: 403/344,
  32089. bottom: 42/445
  32090. }
  32091. },
  32092. leaping: {
  32093. height: math.unit(12.3, "meters"),
  32094. weight: math.unit(9072, "kg"),
  32095. name: "Leaping",
  32096. image: {
  32097. source: "./media/characters/raylldo/leaping.svg",
  32098. extra: 470/249,
  32099. bottom: 13/483
  32100. }
  32101. },
  32102. flying: {
  32103. height: math.unit(18, "meters"),
  32104. weight: math.unit(9072, "kg"),
  32105. name: "Flying",
  32106. image: {
  32107. source: "./media/characters/raylldo/flying.svg"
  32108. }
  32109. },
  32110. head: {
  32111. height: math.unit(5.85, "meters"),
  32112. name: "Head",
  32113. image: {
  32114. source: "./media/characters/raylldo/head.svg"
  32115. }
  32116. },
  32117. maw: {
  32118. height: math.unit(5.32, "meters"),
  32119. name: "Maw",
  32120. image: {
  32121. source: "./media/characters/raylldo/maw.svg"
  32122. }
  32123. },
  32124. eye: {
  32125. height: math.unit(0.54, "meters"),
  32126. name: "Eye",
  32127. image: {
  32128. source: "./media/characters/raylldo/eye.svg"
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "Normal",
  32135. height: math.unit(13, "meters"),
  32136. default: true
  32137. },
  32138. ]
  32139. ))
  32140. characterMakers.push(() => makeCharacter(
  32141. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32142. {
  32143. anthroFront: {
  32144. height: math.unit(9, "feet"),
  32145. weight: math.unit(600, "lb"),
  32146. name: "Anthro (Front)",
  32147. image: {
  32148. source: "./media/characters/glint/anthro-front.svg",
  32149. extra: 1097/1018,
  32150. bottom: 28/1125
  32151. }
  32152. },
  32153. anthroBack: {
  32154. height: math.unit(9, "feet"),
  32155. weight: math.unit(600, "lb"),
  32156. name: "Anthro (Back)",
  32157. image: {
  32158. source: "./media/characters/glint/anthro-back.svg",
  32159. extra: 1154/997,
  32160. bottom: 36/1190
  32161. }
  32162. },
  32163. feral: {
  32164. height: math.unit(11, "feet"),
  32165. weight: math.unit(50000, "lb"),
  32166. name: "Feral",
  32167. image: {
  32168. source: "./media/characters/glint/feral.svg",
  32169. extra: 3035/1585,
  32170. bottom: 1169/4204
  32171. }
  32172. },
  32173. dickAnthro: {
  32174. height: math.unit(0.7, "meters"),
  32175. name: "Dick (Anthro)",
  32176. image: {
  32177. source: "./media/characters/glint/dick-anthro.svg"
  32178. }
  32179. },
  32180. dickFeral: {
  32181. height: math.unit(2.65, "meters"),
  32182. name: "Dick (Feral)",
  32183. image: {
  32184. source: "./media/characters/glint/dick-feral.svg"
  32185. }
  32186. },
  32187. slitHidden: {
  32188. height: math.unit(5.85, "meters"),
  32189. name: "Slit (Hidden)",
  32190. image: {
  32191. source: "./media/characters/glint/slit-hidden.svg"
  32192. }
  32193. },
  32194. slitErect: {
  32195. height: math.unit(5.85, "meters"),
  32196. name: "Slit (Erect)",
  32197. image: {
  32198. source: "./media/characters/glint/slit-erect.svg"
  32199. }
  32200. },
  32201. mawAnthro: {
  32202. height: math.unit(0.63, "meters"),
  32203. name: "Maw (Anthro)",
  32204. image: {
  32205. source: "./media/characters/glint/maw.svg"
  32206. }
  32207. },
  32208. mawFeral: {
  32209. height: math.unit(2.89, "meters"),
  32210. name: "Maw (Feral)",
  32211. image: {
  32212. source: "./media/characters/glint/maw.svg"
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(9, "feet"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32226. {
  32227. side: {
  32228. height: math.unit(15, "feet"),
  32229. weight: math.unit(5000, "kg"),
  32230. name: "Side",
  32231. image: {
  32232. source: "./media/characters/kairne/side.svg",
  32233. extra: 979/811,
  32234. bottom: 13/992
  32235. }
  32236. },
  32237. front: {
  32238. height: math.unit(15, "feet"),
  32239. weight: math.unit(5000, "kg"),
  32240. name: "Front",
  32241. image: {
  32242. source: "./media/characters/kairne/front.svg",
  32243. extra: 908/814,
  32244. bottom: 26/934
  32245. }
  32246. },
  32247. sideNsfw: {
  32248. height: math.unit(15, "feet"),
  32249. weight: math.unit(5000, "kg"),
  32250. name: "Side (NSFW)",
  32251. image: {
  32252. source: "./media/characters/kairne/side-nsfw.svg",
  32253. extra: 979/811,
  32254. bottom: 13/992
  32255. }
  32256. },
  32257. frontNsfw: {
  32258. height: math.unit(15, "feet"),
  32259. weight: math.unit(5000, "kg"),
  32260. name: "Front (NSFW)",
  32261. image: {
  32262. source: "./media/characters/kairne/front-nsfw.svg",
  32263. extra: 908/814,
  32264. bottom: 26/934
  32265. }
  32266. },
  32267. dickCaged: {
  32268. height: math.unit(0.65, "meters"),
  32269. name: "Dick-caged",
  32270. image: {
  32271. source: "./media/characters/kairne/dick-caged.svg"
  32272. }
  32273. },
  32274. dick: {
  32275. height: math.unit(0.79, "meters"),
  32276. name: "Dick",
  32277. image: {
  32278. source: "./media/characters/kairne/dick.svg"
  32279. }
  32280. },
  32281. genitals: {
  32282. height: math.unit(1.29, "meters"),
  32283. name: "Genitals",
  32284. image: {
  32285. source: "./media/characters/kairne/genitals.svg"
  32286. }
  32287. },
  32288. maw: {
  32289. height: math.unit(1.73, "meters"),
  32290. name: "Maw",
  32291. image: {
  32292. source: "./media/characters/kairne/maw.svg"
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Normal",
  32299. height: math.unit(15, "feet"),
  32300. default: true
  32301. },
  32302. ]
  32303. ))
  32304. characterMakers.push(() => makeCharacter(
  32305. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32306. {
  32307. front: {
  32308. height: math.unit(5 + 8/12, "feet"),
  32309. weight: math.unit(139, "lb"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/biscuit-jackal/front.svg",
  32313. extra: 2106/1961,
  32314. bottom: 58/2164
  32315. }
  32316. },
  32317. back: {
  32318. height: math.unit(5 + 8/12, "feet"),
  32319. weight: math.unit(139, "lb"),
  32320. name: "Back",
  32321. image: {
  32322. source: "./media/characters/biscuit-jackal/back.svg",
  32323. extra: 2132/1976,
  32324. bottom: 57/2189
  32325. }
  32326. },
  32327. werejackal: {
  32328. height: math.unit(6 + 3/12, "feet"),
  32329. weight: math.unit(188, "lb"),
  32330. name: "Werejackal",
  32331. image: {
  32332. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32333. extra: 2373/2178,
  32334. bottom: 53/2426
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(5 + 8/12, "feet"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(140, "cm"),
  32351. weight: math.unit(45, "kg"),
  32352. name: "Front",
  32353. image: {
  32354. source: "./media/characters/tayra-white/front.svg",
  32355. extra: 2229/2192,
  32356. bottom: 75/2304
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Normal",
  32363. height: math.unit(140, "cm"),
  32364. default: true
  32365. },
  32366. ]
  32367. ))
  32368. characterMakers.push(() => makeCharacter(
  32369. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32370. {
  32371. front: {
  32372. height: math.unit(4 + 5/12, "feet"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/scoop/front.svg",
  32376. extra: 1257/1136,
  32377. bottom: 69/1326
  32378. }
  32379. },
  32380. back: {
  32381. height: math.unit(4 + 5/12, "feet"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/scoop/back.svg",
  32385. extra: 1321/1152,
  32386. bottom: 32/1353
  32387. }
  32388. },
  32389. maw: {
  32390. height: math.unit(0.68, "feet"),
  32391. name: "Maw",
  32392. image: {
  32393. source: "./media/characters/scoop/maw.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Really Small",
  32400. height: math.unit(1, "mm")
  32401. },
  32402. {
  32403. name: "Micro",
  32404. height: math.unit(1, "inch")
  32405. },
  32406. {
  32407. name: "Normal",
  32408. height: math.unit(4 + 5/12, "feet"),
  32409. default: true
  32410. },
  32411. {
  32412. name: "Macro",
  32413. height: math.unit(200, "feet")
  32414. },
  32415. {
  32416. name: "Megamacro",
  32417. height: math.unit(3240, "feet")
  32418. },
  32419. {
  32420. name: "Teramacro",
  32421. height: math.unit(2500, "miles")
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(15 + 7/12, "feet"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/saphinara/front.svg",
  32433. extra: 604/546,
  32434. bottom: 19/623
  32435. }
  32436. },
  32437. side: {
  32438. height: math.unit(15 + 7/12, "feet"),
  32439. name: "Side",
  32440. image: {
  32441. source: "./media/characters/saphinara/side.svg",
  32442. extra: 605/547,
  32443. bottom: 6/611
  32444. }
  32445. },
  32446. back: {
  32447. height: math.unit(15 + 7/12, "feet"),
  32448. name: "Back",
  32449. image: {
  32450. source: "./media/characters/saphinara/back.svg",
  32451. extra: 591/531,
  32452. bottom: 13/604
  32453. }
  32454. },
  32455. frontTail: {
  32456. height: math.unit(15 + 7/12, "feet"),
  32457. name: "Front (Full Tail)",
  32458. image: {
  32459. source: "./media/characters/saphinara/front-tail.svg",
  32460. extra: 748/547,
  32461. bottom: 66/814
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(15 + 7/12, "feet"),
  32469. default: true
  32470. },
  32471. {
  32472. name: "Angry",
  32473. height: math.unit(30 + 6/12, "feet")
  32474. },
  32475. {
  32476. name: "Enraged",
  32477. height: math.unit(102 + 1/12, "feet")
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32483. {
  32484. front: {
  32485. height: math.unit(6 + 8/12, "feet"),
  32486. weight: math.unit(300, "lb"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/jrain/front.svg",
  32490. extra: 3039/2865,
  32491. bottom: 399/3438
  32492. }
  32493. },
  32494. back: {
  32495. height: math.unit(6 + 8/12, "feet"),
  32496. weight: math.unit(300, "lb"),
  32497. name: "Back",
  32498. image: {
  32499. source: "./media/characters/jrain/back.svg",
  32500. extra: 3089/2938,
  32501. bottom: 172/3261
  32502. }
  32503. },
  32504. head: {
  32505. height: math.unit(2.14, "feet"),
  32506. name: "Head",
  32507. image: {
  32508. source: "./media/characters/jrain/head.svg"
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(1.77, "feet"),
  32513. name: "Maw",
  32514. image: {
  32515. source: "./media/characters/jrain/maw.svg"
  32516. }
  32517. },
  32518. leftHand: {
  32519. height: math.unit(1.1, "feet"),
  32520. name: "Left Hand",
  32521. image: {
  32522. source: "./media/characters/jrain/left-hand.svg"
  32523. }
  32524. },
  32525. rightHand: {
  32526. height: math.unit(1.1, "feet"),
  32527. name: "Right Hand",
  32528. image: {
  32529. source: "./media/characters/jrain/right-hand.svg"
  32530. }
  32531. },
  32532. eye: {
  32533. height: math.unit(0.35, "feet"),
  32534. name: "Eye",
  32535. image: {
  32536. source: "./media/characters/jrain/eye.svg"
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(6 + 8/12, "feet"),
  32544. default: true
  32545. },
  32546. {
  32547. name: "Casually Large",
  32548. height: math.unit(25, "feet")
  32549. },
  32550. {
  32551. name: "Giant",
  32552. height: math.unit(100, "feet")
  32553. },
  32554. {
  32555. name: "Kaiju",
  32556. height: math.unit(300, "feet")
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32562. {
  32563. dragon: {
  32564. height: math.unit(5, "meters"),
  32565. name: "Dragon",
  32566. image: {
  32567. source: "./media/characters/sabrina/dragon.svg",
  32568. extra: 3670 / 2365,
  32569. bottom: 333 / 4003
  32570. }
  32571. },
  32572. gryphon: {
  32573. height: math.unit(3, "meters"),
  32574. name: "Gryphon",
  32575. image: {
  32576. source: "./media/characters/sabrina/gryphon.svg",
  32577. extra: 1576 / 945,
  32578. bottom: 71 / 1647
  32579. }
  32580. },
  32581. snake: {
  32582. height: math.unit(12, "meters"),
  32583. name: "Snake",
  32584. image: {
  32585. source: "./media/characters/sabrina/snake.svg",
  32586. extra: 1758 / 1320,
  32587. bottom: 186 / 1944
  32588. }
  32589. },
  32590. collar: {
  32591. height: math.unit(1.86, "meters"),
  32592. name: "Collar",
  32593. image: {
  32594. source: "./media/characters/sabrina/collar.svg"
  32595. }
  32596. },
  32597. eye: {
  32598. height: math.unit(0.53, "meters"),
  32599. name: "Eye",
  32600. image: {
  32601. source: "./media/characters/sabrina/eye.svg"
  32602. }
  32603. },
  32604. foot: {
  32605. height: math.unit(1.86, "meters"),
  32606. name: "Foot",
  32607. image: {
  32608. source: "./media/characters/sabrina/foot.svg"
  32609. }
  32610. },
  32611. hand: {
  32612. height: math.unit(1.32, "meters"),
  32613. name: "Hand",
  32614. image: {
  32615. source: "./media/characters/sabrina/hand.svg"
  32616. }
  32617. },
  32618. head: {
  32619. height: math.unit(2.44, "meters"),
  32620. name: "Head",
  32621. image: {
  32622. source: "./media/characters/sabrina/head.svg"
  32623. }
  32624. },
  32625. headAngry: {
  32626. height: math.unit(2.44, "meters"),
  32627. name: "Head (Angry))",
  32628. image: {
  32629. source: "./media/characters/sabrina/head-angry.svg"
  32630. }
  32631. },
  32632. maw: {
  32633. height: math.unit(1.65, "meters"),
  32634. name: "Maw",
  32635. image: {
  32636. source: "./media/characters/sabrina/maw.svg"
  32637. }
  32638. },
  32639. spikes: {
  32640. height: math.unit(1.69, "meters"),
  32641. name: "Spikes",
  32642. image: {
  32643. source: "./media/characters/sabrina/spikes.svg"
  32644. }
  32645. },
  32646. stomach: {
  32647. height: math.unit(1.15, "meters"),
  32648. name: "Stomach",
  32649. image: {
  32650. source: "./media/characters/sabrina/stomach.svg"
  32651. }
  32652. },
  32653. tongue: {
  32654. height: math.unit(1.27, "meters"),
  32655. name: "Tongue",
  32656. image: {
  32657. source: "./media/characters/sabrina/tongue.svg"
  32658. }
  32659. },
  32660. wingDorsal: {
  32661. height: math.unit(4.85, "meters"),
  32662. name: "Wing (Dorsal)",
  32663. image: {
  32664. source: "./media/characters/sabrina/wing-dorsal.svg"
  32665. }
  32666. },
  32667. wingVentral: {
  32668. height: math.unit(4.85, "meters"),
  32669. name: "Wing (Ventral)",
  32670. image: {
  32671. source: "./media/characters/sabrina/wing-ventral.svg"
  32672. }
  32673. },
  32674. },
  32675. [
  32676. {
  32677. name: "Normal",
  32678. height: math.unit(5, "meters"),
  32679. default: true
  32680. },
  32681. ]
  32682. ))
  32683. characterMakers.push(() => makeCharacter(
  32684. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32685. {
  32686. frontMaid: {
  32687. height: math.unit(5 + 5/12, "feet"),
  32688. weight: math.unit(130, "lb"),
  32689. name: "Front (Maid)",
  32690. image: {
  32691. source: "./media/characters/midnight-tales/front-maid.svg",
  32692. extra: 489/454,
  32693. bottom: 61/550
  32694. }
  32695. },
  32696. frontFormal: {
  32697. height: math.unit(5 + 5/12, "feet"),
  32698. weight: math.unit(130, "lb"),
  32699. name: "Front (Formal)",
  32700. image: {
  32701. source: "./media/characters/midnight-tales/front-formal.svg",
  32702. extra: 489/454,
  32703. bottom: 61/550
  32704. }
  32705. },
  32706. back: {
  32707. height: math.unit(5 + 5/12, "feet"),
  32708. weight: math.unit(130, "lb"),
  32709. name: "Back",
  32710. image: {
  32711. source: "./media/characters/midnight-tales/back.svg",
  32712. extra: 498/456,
  32713. bottom: 33/531
  32714. }
  32715. },
  32716. frontBeast: {
  32717. height: math.unit(40, "feet"),
  32718. weight: math.unit(64000, "lb"),
  32719. name: "Front (Beast)",
  32720. image: {
  32721. source: "./media/characters/midnight-tales/front-beast.svg",
  32722. extra: 927/860,
  32723. bottom: 53/980
  32724. }
  32725. },
  32726. backBeast: {
  32727. height: math.unit(40, "feet"),
  32728. weight: math.unit(64000, "lb"),
  32729. name: "Back (Beast)",
  32730. image: {
  32731. source: "./media/characters/midnight-tales/back-beast.svg",
  32732. extra: 929/855,
  32733. bottom: 16/945
  32734. }
  32735. },
  32736. footBeast: {
  32737. height: math.unit(6.7, "feet"),
  32738. name: "Foot (Beast)",
  32739. image: {
  32740. source: "./media/characters/midnight-tales/foot-beast.svg"
  32741. }
  32742. },
  32743. headBeast: {
  32744. height: math.unit(8, "feet"),
  32745. name: "Head (Beast)",
  32746. image: {
  32747. source: "./media/characters/midnight-tales/head-beast.svg"
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(5 + 5 / 12, "feet"),
  32755. default: true
  32756. },
  32757. {
  32758. name: "Macro",
  32759. height: math.unit(25, "feet")
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(5 + 10/12, "feet"),
  32768. name: "Front",
  32769. image: {
  32770. source: "./media/characters/argon/front.svg",
  32771. extra: 2009/1935,
  32772. bottom: 118/2127
  32773. }
  32774. },
  32775. back: {
  32776. height: math.unit(5 + 10/12, "feet"),
  32777. name: "Back",
  32778. image: {
  32779. source: "./media/characters/argon/back.svg",
  32780. extra: 2047/1992,
  32781. bottom: 20/2067
  32782. }
  32783. },
  32784. frontDressed: {
  32785. height: math.unit(5 + 10/12, "feet"),
  32786. name: "Front (Dressed)",
  32787. image: {
  32788. source: "./media/characters/argon/front-dressed.svg",
  32789. extra: 2009/1935,
  32790. bottom: 118/2127
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(5 + 10/12, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(8 + 6/12, "feet"),
  32807. weight: math.unit(1150, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/kichi/front.svg",
  32811. extra: 1267/1164,
  32812. bottom: 61/1328
  32813. }
  32814. },
  32815. back: {
  32816. height: math.unit(8 + 6/12, "feet"),
  32817. weight: math.unit(1150, "lb"),
  32818. name: "Back",
  32819. image: {
  32820. source: "./media/characters/kichi/back.svg",
  32821. extra: 1273/1166,
  32822. bottom: 33/1306
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(8 + 6/12, "feet"),
  32830. default: true
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(6, "feet"),
  32839. weight: math.unit(210, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/manetel-greyscale/front.svg",
  32843. extra: 350/312,
  32844. bottom: 8/358
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Micro",
  32851. height: math.unit(2, "inches")
  32852. },
  32853. {
  32854. name: "Normal",
  32855. height: math.unit(6, "feet"),
  32856. default: true
  32857. },
  32858. {
  32859. name: "Minimacro",
  32860. height: math.unit(17, "feet")
  32861. },
  32862. {
  32863. name: "Macro",
  32864. height: math.unit(117, "feet")
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32870. {
  32871. side: {
  32872. height: math.unit(5 + 1/12, "feet"),
  32873. weight: math.unit(418, "lb"),
  32874. name: "Side",
  32875. image: {
  32876. source: "./media/characters/softpurr/side.svg",
  32877. extra: 1993/1945,
  32878. bottom: 134/2127
  32879. }
  32880. },
  32881. front: {
  32882. height: math.unit(5 + 1/12, "feet"),
  32883. weight: math.unit(418, "lb"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/softpurr/front.svg",
  32887. extra: 1950/1856,
  32888. bottom: 174/2124
  32889. }
  32890. },
  32891. paw: {
  32892. height: math.unit(1, "feet"),
  32893. name: "Paw",
  32894. image: {
  32895. source: "./media/characters/softpurr/paw.svg"
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(5 + 1/12, "feet"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(260, "meters"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/anahita/front.svg",
  32915. extra: 665/635,
  32916. bottom: 89/754
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Macro",
  32923. height: math.unit(260, "meters"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32930. {
  32931. front: {
  32932. height: math.unit(4 + 10/12, "feet"),
  32933. weight: math.unit(160, "lb"),
  32934. name: "Front",
  32935. image: {
  32936. source: "./media/characters/chip-mouse/front.svg",
  32937. extra: 3528/3408,
  32938. bottom: 0/3528
  32939. }
  32940. },
  32941. frontNsfw: {
  32942. height: math.unit(4 + 10/12, "feet"),
  32943. weight: math.unit(160, "lb"),
  32944. name: "Front (NSFW)",
  32945. image: {
  32946. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32947. extra: 3528/3408,
  32948. bottom: 0/3528
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(4 + 10/12, "feet"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32962. {
  32963. side: {
  32964. height: math.unit(10, "feet"),
  32965. weight: math.unit(14000, "lb"),
  32966. name: "Side",
  32967. image: {
  32968. source: "./media/characters/kremm/side.svg",
  32969. extra: 1390/1053,
  32970. bottom: 90/1480
  32971. }
  32972. },
  32973. gut: {
  32974. height: math.unit(5.8, "feet"),
  32975. name: "Gut",
  32976. image: {
  32977. source: "./media/characters/kremm/gut.svg"
  32978. }
  32979. },
  32980. ass: {
  32981. height: math.unit(6.1, "feet"),
  32982. name: "Ass",
  32983. image: {
  32984. source: "./media/characters/kremm/ass.svg"
  32985. }
  32986. },
  32987. jaws: {
  32988. height: math.unit(2.2, "feet"),
  32989. name: "Jaws",
  32990. image: {
  32991. source: "./media/characters/kremm/jaws.svg"
  32992. }
  32993. },
  32994. dick: {
  32995. height: math.unit(4.26, "feet"),
  32996. name: "Dick",
  32997. image: {
  32998. source: "./media/characters/kremm/dick.svg"
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(10, "feet"),
  33006. default: true
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33012. {
  33013. front: {
  33014. height: math.unit(30, "stories"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/kai/front.svg",
  33018. extra: 1892/1718,
  33019. bottom: 162/2054
  33020. }
  33021. },
  33022. },
  33023. [
  33024. {
  33025. name: "Macro",
  33026. height: math.unit(30, "stories"),
  33027. default: true
  33028. },
  33029. ]
  33030. ))
  33031. characterMakers.push(() => makeCharacter(
  33032. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33033. {
  33034. front: {
  33035. height: math.unit(6 + 4/12, "feet"),
  33036. weight: math.unit(145, "lb"),
  33037. name: "Front",
  33038. image: {
  33039. source: "./media/characters/sykes/front.svg",
  33040. extra: 1321 / 1187,
  33041. bottom: 66 / 1387
  33042. }
  33043. },
  33044. back: {
  33045. height: math.unit(6 + 4/12, "feet"),
  33046. weight: math.unit(145, "lb"),
  33047. name: "Back",
  33048. image: {
  33049. source: "./media/characters/sykes/back.svg",
  33050. extra: 1326/1181,
  33051. bottom: 31/1357
  33052. }
  33053. },
  33054. handBack: {
  33055. height: math.unit(0.9, "feet"),
  33056. name: "Hand (Back)",
  33057. image: {
  33058. source: "./media/characters/sykes/hand-back.svg"
  33059. }
  33060. },
  33061. handFront: {
  33062. height: math.unit(0.839, "feet"),
  33063. name: "Hand (Front)",
  33064. image: {
  33065. source: "./media/characters/sykes/hand-front.svg"
  33066. }
  33067. },
  33068. leftFoot: {
  33069. height: math.unit(1.2, "feet"),
  33070. name: "Foot (Left)",
  33071. image: {
  33072. source: "./media/characters/sykes/foot-left.svg"
  33073. }
  33074. },
  33075. rightFoot: {
  33076. height: math.unit(1.2, "feet"),
  33077. name: "Foot (Right)",
  33078. image: {
  33079. source: "./media/characters/sykes/foot-right.svg"
  33080. }
  33081. },
  33082. maw: {
  33083. height: math.unit(1.93, "feet"),
  33084. name: "Maw",
  33085. image: {
  33086. source: "./media/characters/sykes/maw.svg"
  33087. }
  33088. },
  33089. teeth: {
  33090. height: math.unit(0.51, "feet"),
  33091. name: "Teeth",
  33092. image: {
  33093. source: "./media/characters/sykes/teeth.svg"
  33094. }
  33095. },
  33096. tongue: {
  33097. height: math.unit(2.13, "feet"),
  33098. name: "Tongue",
  33099. image: {
  33100. source: "./media/characters/sykes/tongue.svg"
  33101. }
  33102. },
  33103. uvula: {
  33104. height: math.unit(0.16, "feet"),
  33105. name: "Uvula",
  33106. image: {
  33107. source: "./media/characters/sykes/uvula.svg"
  33108. }
  33109. },
  33110. collar: {
  33111. height: math.unit(0.287, "feet"),
  33112. name: "Collar",
  33113. image: {
  33114. source: "./media/characters/sykes/collar.svg"
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Shrunken",
  33121. height: math.unit(5, "inches")
  33122. },
  33123. {
  33124. name: "Normal",
  33125. height: math.unit(6 + 4 / 12, "feet"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Big",
  33130. height: math.unit(15, "feet")
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(5 + 8/12, "feet"),
  33139. weight: math.unit(190, "lb"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/oven-otter/front.svg",
  33143. extra: 1809/1740,
  33144. bottom: 181/1990
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(5 + 8/12, "feet"),
  33149. weight: math.unit(190, "lb"),
  33150. name: "Back",
  33151. image: {
  33152. source: "./media/characters/oven-otter/back.svg",
  33153. extra: 1709/1635,
  33154. bottom: 118/1827
  33155. }
  33156. },
  33157. hand: {
  33158. height: math.unit(1.07, "feet"),
  33159. name: "Hand",
  33160. image: {
  33161. source: "./media/characters/oven-otter/hand.svg"
  33162. }
  33163. },
  33164. beans: {
  33165. height: math.unit(1.74, "feet"),
  33166. name: "Beans",
  33167. image: {
  33168. source: "./media/characters/oven-otter/beans.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Micro",
  33175. height: math.unit(0.5, "inches")
  33176. },
  33177. {
  33178. name: "Normal",
  33179. height: math.unit(5 + 8/12, "feet"),
  33180. default: true
  33181. },
  33182. {
  33183. name: "Macro",
  33184. height: math.unit(250, "feet")
  33185. },
  33186. {
  33187. name: "Really High",
  33188. height: math.unit(420, "feet")
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33194. {
  33195. front: {
  33196. height: math.unit(5, "meters"),
  33197. weight: math.unit(292000000000000, "kg"),
  33198. name: "Front",
  33199. image: {
  33200. source: "./media/characters/devourer/front.svg",
  33201. extra: 1800/1733,
  33202. bottom: 211/2011
  33203. }
  33204. },
  33205. maw: {
  33206. height: math.unit(1.1, "meter"),
  33207. name: "Maw",
  33208. image: {
  33209. source: "./media/characters/devourer/maw.svg"
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Small",
  33216. height: math.unit(3, "meters")
  33217. },
  33218. {
  33219. name: "Large",
  33220. height: math.unit(5, "meters"),
  33221. default: true
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33227. {
  33228. front: {
  33229. height: math.unit(6, "feet"),
  33230. weight: math.unit(400, "lb"),
  33231. name: "Front",
  33232. image: {
  33233. source: "./media/characters/ellarby/front.svg",
  33234. extra: 1909/1763,
  33235. bottom: 80/1989
  33236. }
  33237. },
  33238. back: {
  33239. height: math.unit(6, "feet"),
  33240. weight: math.unit(400, "lb"),
  33241. name: "Back",
  33242. image: {
  33243. source: "./media/characters/ellarby/back.svg",
  33244. extra: 1914/1784,
  33245. bottom: 172/2086
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Mischief",
  33252. height: math.unit(18, "inches")
  33253. },
  33254. {
  33255. name: "Trouble",
  33256. height: math.unit(12, "feet")
  33257. },
  33258. {
  33259. name: "Havoc",
  33260. height: math.unit(200, "feet"),
  33261. default: true
  33262. },
  33263. {
  33264. name: "Pandemonium",
  33265. height: math.unit(1, "mile")
  33266. },
  33267. {
  33268. name: "Catastrophe",
  33269. height: math.unit(100, "miles")
  33270. },
  33271. ]
  33272. ))
  33273. characterMakers.push(() => makeCharacter(
  33274. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33275. {
  33276. front: {
  33277. height: math.unit(4.7, "meters"),
  33278. weight: math.unit(6500, "kg"),
  33279. name: "Front",
  33280. image: {
  33281. source: "./media/characters/vex/front.svg",
  33282. extra: 1288/1140,
  33283. bottom: 100/1388
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(4.7, "meters"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33297. {
  33298. normal: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(350, "lb"),
  33301. name: "Normal",
  33302. image: {
  33303. source: "./media/characters/teshy/normal.svg",
  33304. extra: 1795/1735,
  33305. bottom: 16/1811
  33306. }
  33307. },
  33308. monsterFront: {
  33309. height: math.unit(12, "feet"),
  33310. weight: math.unit(4700, "lb"),
  33311. name: "Monster (Front)",
  33312. image: {
  33313. source: "./media/characters/teshy/monster-front.svg",
  33314. extra: 2042/2034,
  33315. bottom: 128/2170
  33316. }
  33317. },
  33318. monsterSide: {
  33319. height: math.unit(12, "feet"),
  33320. weight: math.unit(4700, "lb"),
  33321. name: "Monster (Side)",
  33322. image: {
  33323. source: "./media/characters/teshy/monster-side.svg",
  33324. extra: 2067/2056,
  33325. bottom: 70/2137
  33326. }
  33327. },
  33328. monsterBack: {
  33329. height: math.unit(12, "feet"),
  33330. weight: math.unit(4700, "lb"),
  33331. name: "Monster (Back)",
  33332. image: {
  33333. source: "./media/characters/teshy/monster-back.svg",
  33334. extra: 1921/1914,
  33335. bottom: 171/2092
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(6, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(6, "feet"),
  33352. name: "Front",
  33353. image: {
  33354. source: "./media/characters/ramey/front.svg",
  33355. extra: 790/787,
  33356. bottom: 27/817
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Normal",
  33363. height: math.unit(6, "feet"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33370. {
  33371. front: {
  33372. height: math.unit(5 + 5/12, "feet"),
  33373. weight: math.unit(120, "lb"),
  33374. name: "Front",
  33375. image: {
  33376. source: "./media/characters/phirae/front.svg",
  33377. extra: 2491/2436,
  33378. bottom: 38/2529
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Normal",
  33385. height: math.unit(5 + 5/12, "feet"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(6, "feet"),
  33395. weight: math.unit(150, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/stagglas/front.svg",
  33399. extra: 962/882,
  33400. bottom: 53/1015
  33401. }
  33402. },
  33403. },
  33404. [
  33405. {
  33406. name: "Normal",
  33407. height: math.unit(5 + 3/12, "feet"),
  33408. default: true
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33414. {
  33415. front: {
  33416. height: math.unit(5 + 4/12, "feet"),
  33417. weight: math.unit(145, "lb"),
  33418. name: "Front",
  33419. image: {
  33420. source: "./media/characters/starra/front.svg",
  33421. extra: 1790/1691,
  33422. bottom: 91/1881
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(5 + 4/12, "feet"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(2.2, "meters"),
  33439. name: "Front",
  33440. image: {
  33441. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33442. extra: 1194/1005,
  33443. bottom: 25/1219
  33444. }
  33445. },
  33446. },
  33447. [
  33448. {
  33449. name: "Normal",
  33450. height: math.unit(2.2, "meters"),
  33451. default: true
  33452. },
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33457. {
  33458. side: {
  33459. height: math.unit(8 + 2/12, "feet"),
  33460. weight: math.unit(1240, "lb"),
  33461. name: "Side",
  33462. image: {
  33463. source: "./media/characters/mika-valentine/side.svg",
  33464. extra: 2670/2501,
  33465. bottom: 250/2920
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(8 + 2/12, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(7 + 2/12, "feet"),
  33482. name: "Front",
  33483. image: {
  33484. source: "./media/characters/xoltol/front.svg",
  33485. extra: 2212/2124,
  33486. bottom: 84/2296
  33487. }
  33488. },
  33489. side: {
  33490. height: math.unit(7 + 2/12, "feet"),
  33491. name: "Side",
  33492. image: {
  33493. source: "./media/characters/xoltol/side.svg",
  33494. extra: 2273/2197,
  33495. bottom: 26/2299
  33496. }
  33497. },
  33498. hand: {
  33499. height: math.unit(2.5, "feet"),
  33500. name: "Hand",
  33501. image: {
  33502. source: "./media/characters/xoltol/hand.svg"
  33503. }
  33504. },
  33505. },
  33506. [
  33507. {
  33508. name: "Small-ish",
  33509. height: math.unit(5 + 11/12, "feet")
  33510. },
  33511. {
  33512. name: "Normal",
  33513. height: math.unit(7 + 2/12, "feet")
  33514. },
  33515. {
  33516. name: "\"Macro\"",
  33517. height: math.unit(14 + 9/12, "feet"),
  33518. default: true
  33519. },
  33520. {
  33521. name: "Alternate Height",
  33522. height: math.unit(20, "feet")
  33523. },
  33524. {
  33525. name: "Actually Macro",
  33526. height: math.unit(100, "feet")
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(5 + 2/12, "feet"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/kotetsu-redwood/front.svg",
  33538. extra: 1053/942,
  33539. bottom: 60/1113
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Normal",
  33546. height: math.unit(5 + 2/12, "feet"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(2.4, "meters"),
  33556. weight: math.unit(125, "kg"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/lilith/front.svg",
  33560. extra: 1590/1513,
  33561. bottom: 203/1793
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Humanoid",
  33568. height: math.unit(2.4, "meters")
  33569. },
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(6, "meters"),
  33573. default: true
  33574. },
  33575. {
  33576. name: "Largest",
  33577. height: math.unit(55, "meters")
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(8 + 4/12, "feet"),
  33586. weight: math.unit(535, "lb"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/beh'kah-bolger/front.svg",
  33590. extra: 1660/1603,
  33591. bottom: 37/1697
  33592. }
  33593. },
  33594. },
  33595. [
  33596. {
  33597. name: "Normal",
  33598. height: math.unit(8 + 4/12, "feet"),
  33599. default: true
  33600. },
  33601. {
  33602. name: "Kaiju",
  33603. height: math.unit(250, "feet")
  33604. },
  33605. {
  33606. name: "Still Growing",
  33607. height: math.unit(10, "miles")
  33608. },
  33609. {
  33610. name: "Continental",
  33611. height: math.unit(5000, "miles")
  33612. },
  33613. {
  33614. name: "Final Form",
  33615. height: math.unit(2500000, "miles")
  33616. },
  33617. ]
  33618. ))
  33619. characterMakers.push(() => makeCharacter(
  33620. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33621. {
  33622. front: {
  33623. height: math.unit(7 + 2/12, "feet"),
  33624. weight: math.unit(230, "kg"),
  33625. name: "Front",
  33626. image: {
  33627. source: "./media/characters/tatyana-milewska/front.svg",
  33628. extra: 1199/1150,
  33629. bottom: 86/1285
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(7 + 2/12, "feet"),
  33637. default: true
  33638. },
  33639. {
  33640. name: "Big",
  33641. height: math.unit(12, "feet")
  33642. },
  33643. {
  33644. name: "Minimacro",
  33645. height: math.unit(20, "feet")
  33646. },
  33647. {
  33648. name: "Macro",
  33649. height: math.unit(120, "feet")
  33650. },
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33655. {
  33656. front: {
  33657. height: math.unit(7 + 8/12, "feet"),
  33658. weight: math.unit(152, "kg"),
  33659. name: "Front",
  33660. image: {
  33661. source: "./media/characters/helen-arri/front.svg",
  33662. extra: 440/423,
  33663. bottom: 14/454
  33664. }
  33665. },
  33666. back: {
  33667. height: math.unit(7 + 8/12, "feet"),
  33668. weight: math.unit(152, "kg"),
  33669. name: "Back",
  33670. image: {
  33671. source: "./media/characters/helen-arri/back.svg",
  33672. extra: 443/426,
  33673. bottom: 8/451
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Normal",
  33680. height: math.unit(7 + 8/12, "feet"),
  33681. default: true
  33682. },
  33683. {
  33684. name: "Big",
  33685. height: math.unit(14, "feet")
  33686. },
  33687. {
  33688. name: "Minimacro",
  33689. height: math.unit(24, "feet")
  33690. },
  33691. {
  33692. name: "Macro",
  33693. height: math.unit(140, "feet")
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(6, "meters"),
  33702. name: "Front",
  33703. image: {
  33704. source: "./media/characters/ehanu-rehu/front.svg",
  33705. extra: 1800/1800,
  33706. bottom: 59/1859
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Normal",
  33713. height: math.unit(6, "meters"),
  33714. default: true
  33715. },
  33716. ]
  33717. ))
  33718. characterMakers.push(() => makeCharacter(
  33719. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33720. {
  33721. front: {
  33722. height: math.unit(7 + 3/12, "feet"),
  33723. name: "Front",
  33724. image: {
  33725. source: "./media/characters/renholder/front.svg",
  33726. extra: 3096/2960,
  33727. bottom: 250/3346
  33728. }
  33729. },
  33730. },
  33731. [
  33732. {
  33733. name: "Normal Bat",
  33734. height: math.unit(7 + 3/12, "feet"),
  33735. default: true
  33736. },
  33737. {
  33738. name: "Slightly Tall Bat",
  33739. height: math.unit(100, "feet")
  33740. },
  33741. {
  33742. name: "Big Bat",
  33743. height: math.unit(1000, "feet")
  33744. },
  33745. {
  33746. name: "City-Sized Bat",
  33747. height: math.unit(200000, "feet")
  33748. },
  33749. {
  33750. name: "Bigger Bat",
  33751. height: math.unit(10000, "miles")
  33752. },
  33753. {
  33754. name: "Solar Sized Bat",
  33755. height: math.unit(100, "AU")
  33756. },
  33757. {
  33758. name: "Galactic Bat",
  33759. height: math.unit(200000, "lightyears")
  33760. },
  33761. {
  33762. name: "Universally Known Bat",
  33763. height: math.unit(1, "universe")
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(6 + 11/12, "feet"),
  33772. weight: math.unit(250, "lb"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/cookiecat/front.svg",
  33776. extra: 893/827,
  33777. bottom: 14/907
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Micro",
  33784. height: math.unit(3, "inches")
  33785. },
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(6 + 11/12, "feet"),
  33789. default: true
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(100, "feet")
  33794. },
  33795. {
  33796. name: "Macro+",
  33797. height: math.unit(404, "feet")
  33798. },
  33799. {
  33800. name: "Megamacro",
  33801. height: math.unit(165, "miles")
  33802. },
  33803. {
  33804. name: "Planetary",
  33805. height: math.unit(4600, "miles")
  33806. },
  33807. ]
  33808. ))
  33809. characterMakers.push(() => makeCharacter(
  33810. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33811. {
  33812. front: {
  33813. height: math.unit(10 + 3/12, "feet"),
  33814. weight: math.unit(1500, "lb"),
  33815. name: "Front",
  33816. image: {
  33817. source: "./media/characters/tux-kusanagi/front.svg",
  33818. extra: 944/840,
  33819. bottom: 39/983
  33820. }
  33821. },
  33822. back: {
  33823. height: math.unit(10 + 3/12, "feet"),
  33824. weight: math.unit(1500, "lb"),
  33825. name: "Back",
  33826. image: {
  33827. source: "./media/characters/tux-kusanagi/back.svg",
  33828. extra: 941/842,
  33829. bottom: 28/969
  33830. }
  33831. },
  33832. rump: {
  33833. height: math.unit(5.25, "feet"),
  33834. name: "Rump",
  33835. image: {
  33836. source: "./media/characters/tux-kusanagi/rump.svg"
  33837. }
  33838. },
  33839. beak: {
  33840. height: math.unit(1.54, "feet"),
  33841. name: "Beak",
  33842. image: {
  33843. source: "./media/characters/tux-kusanagi/beak.svg"
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(10 + 3/12, "feet"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33857. {
  33858. front: {
  33859. height: math.unit(58, "feet"),
  33860. weight: math.unit(200, "tons"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/uzarmazari/front.svg",
  33864. extra: 1575/1455,
  33865. bottom: 152/1727
  33866. }
  33867. },
  33868. back: {
  33869. height: math.unit(58, "feet"),
  33870. weight: math.unit(200, "tons"),
  33871. name: "Back",
  33872. image: {
  33873. source: "./media/characters/uzarmazari/back.svg",
  33874. extra: 1585/1510,
  33875. bottom: 157/1742
  33876. }
  33877. },
  33878. head: {
  33879. height: math.unit(26, "feet"),
  33880. name: "Head",
  33881. image: {
  33882. source: "./media/characters/uzarmazari/head.svg"
  33883. }
  33884. },
  33885. },
  33886. [
  33887. {
  33888. name: "Normal",
  33889. height: math.unit(58, "feet"),
  33890. default: true
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33896. {
  33897. side: {
  33898. height: math.unit(15, "feet"),
  33899. name: "Side",
  33900. image: {
  33901. source: "./media/characters/akitu/side.svg",
  33902. extra: 1421/1321,
  33903. bottom: 157/1578
  33904. }
  33905. },
  33906. front: {
  33907. height: math.unit(15, "feet"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/akitu/front.svg",
  33911. extra: 1435/1326,
  33912. bottom: 232/1667
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(15, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(10 + 8/12, "feet"),
  33929. name: "Front",
  33930. image: {
  33931. source: "./media/characters/azalie-croixland/front.svg",
  33932. extra: 1972/1856,
  33933. bottom: 31/2003
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Original Height",
  33940. height: math.unit(5 + 4/12, "feet")
  33941. },
  33942. {
  33943. name: "Normal Height",
  33944. height: math.unit(10 + 8/12, "feet"),
  33945. default: true
  33946. },
  33947. ]
  33948. ))
  33949. characterMakers.push(() => makeCharacter(
  33950. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33951. {
  33952. side: {
  33953. height: math.unit(7 + 1/12, "feet"),
  33954. weight: math.unit(245, "lb"),
  33955. name: "Side",
  33956. image: {
  33957. source: "./media/characters/kavus-kazian/side.svg",
  33958. extra: 349/342,
  33959. bottom: 15/364
  33960. }
  33961. },
  33962. },
  33963. [
  33964. {
  33965. name: "Normal",
  33966. height: math.unit(7 + 1/12, "feet"),
  33967. default: true
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33973. {
  33974. normal: {
  33975. height: math.unit(5 + 11/12, "feet"),
  33976. name: "Normal",
  33977. image: {
  33978. source: "./media/characters/moonlight-rose/normal.svg",
  33979. extra: 1979/1835,
  33980. bottom: 14/1993
  33981. }
  33982. },
  33983. demon: {
  33984. height: math.unit(5, "km"),
  33985. name: "Demon",
  33986. image: {
  33987. source: "./media/characters/moonlight-rose/demon.svg",
  33988. extra: 986/916,
  33989. bottom: 28/1014
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "\"Natural\" height",
  33996. height: math.unit(5 + 11/12, "feet")
  33997. },
  33998. {
  33999. name: "Comfortable Size",
  34000. height: math.unit(40, "meters")
  34001. },
  34002. {
  34003. name: "Common Size",
  34004. height: math.unit(50, "km"),
  34005. default: true
  34006. },
  34007. {
  34008. name: "Demonic",
  34009. height: math.unit(1.24415e+21, "meters")
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34015. {
  34016. front: {
  34017. height: math.unit(16, "feet"),
  34018. weight: math.unit(610, "kg"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/huckle/front.svg",
  34022. extra: 1731/1625,
  34023. bottom: 33/1764
  34024. }
  34025. },
  34026. back: {
  34027. height: math.unit(16, "feet"),
  34028. weight: math.unit(610, "kg"),
  34029. name: "Back",
  34030. image: {
  34031. source: "./media/characters/huckle/back.svg",
  34032. extra: 1738/1651,
  34033. bottom: 37/1775
  34034. }
  34035. },
  34036. laughing: {
  34037. height: math.unit(3.75, "feet"),
  34038. name: "Laughing",
  34039. image: {
  34040. source: "./media/characters/huckle/laughing.svg"
  34041. }
  34042. },
  34043. angry: {
  34044. height: math.unit(4.15, "feet"),
  34045. name: "Angry",
  34046. image: {
  34047. source: "./media/characters/huckle/angry.svg"
  34048. }
  34049. },
  34050. },
  34051. [
  34052. {
  34053. name: "Normal",
  34054. height: math.unit(16, "feet"),
  34055. default: true
  34056. },
  34057. {
  34058. name: "Mini Macro",
  34059. height: math.unit(463, "feet")
  34060. },
  34061. {
  34062. name: "Macro",
  34063. height: math.unit(1680, "meters")
  34064. },
  34065. {
  34066. name: "Mega Macro",
  34067. height: math.unit(175, "km")
  34068. },
  34069. {
  34070. name: "Terra Macro",
  34071. height: math.unit(32, "gigameters")
  34072. },
  34073. {
  34074. name: "Multiverse+",
  34075. height: math.unit(2.56e23, "yottameters")
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(6 + 9/12, "feet"),
  34084. weight: math.unit(280, "lb"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/candy/front.svg",
  34088. extra: 234/217,
  34089. bottom: 11/245
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Really Small",
  34096. height: math.unit(0.1, "nm")
  34097. },
  34098. {
  34099. name: "Micro",
  34100. height: math.unit(2, "inches")
  34101. },
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(6 + 9/12, "feet"),
  34105. default: true
  34106. },
  34107. {
  34108. name: "Small Macro",
  34109. height: math.unit(69, "feet")
  34110. },
  34111. {
  34112. name: "Macro",
  34113. height: math.unit(160, "feet")
  34114. },
  34115. {
  34116. name: "Megamacro",
  34117. height: math.unit(22000, "miles")
  34118. },
  34119. {
  34120. name: "Gigamacro",
  34121. height: math.unit(50000, "miles")
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(4, "feet"),
  34130. weight: math.unit(90, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/joey-mcdonald/front.svg",
  34134. extra: 1059/852,
  34135. bottom: 33/1092
  34136. }
  34137. },
  34138. back: {
  34139. height: math.unit(4, "feet"),
  34140. weight: math.unit(90, "lb"),
  34141. name: "Back",
  34142. image: {
  34143. source: "./media/characters/joey-mcdonald/back.svg",
  34144. extra: 1077/879,
  34145. bottom: 5/1082
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Normal",
  34152. height: math.unit(4, "feet"),
  34153. default: true
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(12 + 6/12, "feet"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/kass-lockheed/front.svg",
  34165. extra: 354/343,
  34166. bottom: 9/363
  34167. }
  34168. },
  34169. back: {
  34170. height: math.unit(12 + 6/12, "feet"),
  34171. name: "Back",
  34172. image: {
  34173. source: "./media/characters/kass-lockheed/back.svg",
  34174. extra: 364/352,
  34175. bottom: 3/367
  34176. }
  34177. },
  34178. dick: {
  34179. height: math.unit(3.12, "feet"),
  34180. name: "Dick",
  34181. image: {
  34182. source: "./media/characters/kass-lockheed/dick.svg"
  34183. }
  34184. },
  34185. head: {
  34186. height: math.unit(2.6, "feet"),
  34187. name: "Head",
  34188. image: {
  34189. source: "./media/characters/kass-lockheed/head.svg"
  34190. }
  34191. },
  34192. bleh: {
  34193. height: math.unit(2.85, "feet"),
  34194. name: "Bleh",
  34195. image: {
  34196. source: "./media/characters/kass-lockheed/bleh.svg"
  34197. }
  34198. },
  34199. smug: {
  34200. height: math.unit(2.85, "feet"),
  34201. name: "Smug",
  34202. image: {
  34203. source: "./media/characters/kass-lockheed/smug.svg"
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(12 + 6/12, "feet"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34217. {
  34218. front: {
  34219. height: math.unit(6 + 2/12, "feet"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/taylor/front.svg",
  34223. extra: 639/495,
  34224. bottom: 12/651
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(6 + 2/12, "feet"),
  34232. default: true
  34233. },
  34234. {
  34235. name: "Big",
  34236. height: math.unit(15, "feet")
  34237. },
  34238. {
  34239. name: "Lorg",
  34240. height: math.unit(80, "feet")
  34241. },
  34242. {
  34243. name: "Too Lorg",
  34244. height: math.unit(120, "feet")
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34250. {
  34251. front: {
  34252. height: math.unit(15, "feet"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/kaizer/front.svg",
  34256. extra: 1612/1436,
  34257. bottom: 43/1655
  34258. }
  34259. },
  34260. },
  34261. [
  34262. {
  34263. name: "Normal",
  34264. height: math.unit(15, "feet"),
  34265. default: true
  34266. },
  34267. ]
  34268. ))
  34269. characterMakers.push(() => makeCharacter(
  34270. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34271. {
  34272. front: {
  34273. height: math.unit(2, "feet"),
  34274. weight: math.unit(30, "lb"),
  34275. name: "Front",
  34276. image: {
  34277. source: "./media/characters/sandy/front.svg",
  34278. extra: 1439/1307,
  34279. bottom: 194/1633
  34280. }
  34281. },
  34282. },
  34283. [
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(2, "feet"),
  34287. default: true
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34293. {
  34294. front: {
  34295. height: math.unit(3, "feet"),
  34296. name: "Front",
  34297. image: {
  34298. source: "./media/characters/mellvi/front.svg",
  34299. extra: 1831/1630,
  34300. bottom: 58/1889
  34301. }
  34302. },
  34303. },
  34304. [
  34305. {
  34306. name: "Normal",
  34307. height: math.unit(3, "feet"),
  34308. default: true
  34309. },
  34310. ]
  34311. ))
  34312. characterMakers.push(() => makeCharacter(
  34313. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34314. {
  34315. front: {
  34316. height: math.unit(5 + 11/12, "feet"),
  34317. weight: math.unit(200, "lb"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/shirou/front.svg",
  34321. extra: 2491/2383,
  34322. bottom: 189/2680
  34323. }
  34324. },
  34325. back: {
  34326. height: math.unit(5 + 11/12, "feet"),
  34327. weight: math.unit(200, "lb"),
  34328. name: "Back",
  34329. image: {
  34330. source: "./media/characters/shirou/back.svg",
  34331. extra: 2554/2450,
  34332. bottom: 76/2630
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Normal",
  34339. height: math.unit(5 + 11/12, "feet"),
  34340. default: true
  34341. },
  34342. ]
  34343. ))
  34344. characterMakers.push(() => makeCharacter(
  34345. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34346. {
  34347. front: {
  34348. height: math.unit(6 + 3/12, "feet"),
  34349. weight: math.unit(177, "lb"),
  34350. name: "Front",
  34351. image: {
  34352. source: "./media/characters/noryu/front.svg",
  34353. extra: 973/885,
  34354. bottom: 10/983
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(6 + 3/12, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(5 + 6/12, "feet"),
  34371. weight: math.unit(170, "lb"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/mevolas-rubenido/front.svg",
  34375. extra: 2109/1901,
  34376. bottom: 96/2205
  34377. }
  34378. },
  34379. },
  34380. [
  34381. {
  34382. name: "Normal",
  34383. height: math.unit(5 + 6/12, "feet"),
  34384. default: true
  34385. },
  34386. ]
  34387. ))
  34388. characterMakers.push(() => makeCharacter(
  34389. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34390. {
  34391. front: {
  34392. height: math.unit(100, "feet"),
  34393. name: "Front",
  34394. image: {
  34395. source: "./media/characters/dee/front.svg",
  34396. extra: 2153/2036,
  34397. bottom: 59/2212
  34398. }
  34399. },
  34400. back: {
  34401. height: math.unit(100, "feet"),
  34402. name: "Back",
  34403. image: {
  34404. source: "./media/characters/dee/back.svg",
  34405. extra: 2183/2058,
  34406. bottom: 75/2258
  34407. }
  34408. },
  34409. foot: {
  34410. height: math.unit(19.43, "feet"),
  34411. name: "Foot",
  34412. image: {
  34413. source: "./media/characters/dee/foot.svg"
  34414. }
  34415. },
  34416. hoof: {
  34417. height: math.unit(20.6, "feet"),
  34418. name: "Hoof",
  34419. image: {
  34420. source: "./media/characters/dee/hoof.svg"
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Macro",
  34427. height: math.unit(100, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(5 + 6/12, "feet"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/teh/front.svg",
  34440. extra: 1002/847,
  34441. bottom: 62/1064
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(5 + 6/12, "feet"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34455. {
  34456. side: {
  34457. height: math.unit(6 + 1/12, "feet"),
  34458. weight: math.unit(204, "lb"),
  34459. name: "Side",
  34460. image: {
  34461. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34462. extra: 974/775,
  34463. bottom: 169/1143
  34464. }
  34465. },
  34466. sitting: {
  34467. height: math.unit(6 + 2/12, "feet"),
  34468. weight: math.unit(204, "lb"),
  34469. name: "Sitting",
  34470. image: {
  34471. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34472. extra: 1175/964,
  34473. bottom: 378/1553
  34474. }
  34475. },
  34476. },
  34477. [
  34478. {
  34479. name: "Normal",
  34480. height: math.unit(6 + 1/12, "feet"),
  34481. default: true
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34487. {
  34488. front: {
  34489. height: math.unit(6, "inches"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/tululi/front.svg",
  34493. extra: 1997/1876,
  34494. bottom: 20/2017
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(6, "inches"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(4 + 1/12, "feet"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/star/front.svg",
  34514. extra: 1493/1189,
  34515. bottom: 48/1541
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(4 + 1/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(6 + 3/12, "feet"),
  34532. name: "Front",
  34533. image: {
  34534. source: "./media/characters/comet/front.svg",
  34535. extra: 1681/1462,
  34536. bottom: 26/1707
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(6 + 3/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(950, "feet"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/vortex/front.svg",
  34556. extra: 1497/1434,
  34557. bottom: 56/1553
  34558. }
  34559. },
  34560. maw: {
  34561. height: math.unit(285, "feet"),
  34562. name: "Maw",
  34563. image: {
  34564. source: "./media/characters/vortex/maw.svg"
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Macro",
  34571. height: math.unit(950, "feet"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(600, "feet"),
  34581. weight: math.unit(0.02, "grams"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/doodle/front.svg",
  34585. extra: 1578/1413,
  34586. bottom: 37/1615
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Macro",
  34593. height: math.unit(600, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6 + 6/12, "feet"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/jai/front.svg",
  34606. extra: 1645/1534,
  34607. bottom: 115/1760
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(6 + 6/12, "feet"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34621. {
  34622. front: {
  34623. height: math.unit(6 + 8/12, "feet"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/pixel/front.svg",
  34627. extra: 1900/1735,
  34628. bottom: 63/1963
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Normal",
  34635. height: math.unit(6 + 8/12, "feet"),
  34636. default: true
  34637. },
  34638. ]
  34639. ))
  34640. characterMakers.push(() => makeCharacter(
  34641. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34642. {
  34643. front: {
  34644. height: math.unit(4 + 11/12, "feet"),
  34645. weight: math.unit(111, "lb"),
  34646. name: "Front",
  34647. image: {
  34648. source: "./media/characters/rhett/front.svg",
  34649. extra: 1682/1586,
  34650. bottom: 92/1774
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Mini",
  34657. height: math.unit(1 + 1/12, "feet")
  34658. },
  34659. {
  34660. name: "Normal",
  34661. height: math.unit(4 + 11/12, "feet"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(3 + 3/12, "feet"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/penny/front.svg",
  34674. extra: 1406/1311,
  34675. bottom: 26/1432
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(3 + 3/12, "feet"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(4 + 11/12, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/monty/front.svg",
  34695. extra: 1479/1209,
  34696. bottom: 0/1479
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(4 + 11/12, "feet"),
  34704. default: true
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34710. {
  34711. front: {
  34712. height: math.unit(8 + 4/12, "feet"),
  34713. name: "Front",
  34714. image: {
  34715. source: "./media/characters/sterling/front.svg",
  34716. extra: 1420/1236,
  34717. bottom: 27/1447
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Normal",
  34724. height: math.unit(8 + 4/12, "feet"),
  34725. default: true
  34726. },
  34727. ]
  34728. ))
  34729. characterMakers.push(() => makeCharacter(
  34730. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34731. {
  34732. front: {
  34733. height: math.unit(15, "feet"),
  34734. name: "Front",
  34735. image: {
  34736. source: "./media/characters/marble/front.svg",
  34737. extra: 973/937,
  34738. bottom: 32/1005
  34739. }
  34740. },
  34741. },
  34742. [
  34743. {
  34744. name: "Normal",
  34745. height: math.unit(15, "feet"),
  34746. default: true
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34752. {
  34753. front: {
  34754. height: math.unit(3, "inches"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/powder/front.svg",
  34758. extra: 1504/1334,
  34759. bottom: 518/2022
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(3, "inches"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34773. {
  34774. front: {
  34775. height: math.unit(4 + 5/12, "feet"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/joey-raccoon/front.svg",
  34779. extra: 1273/1197,
  34780. bottom: 0/1273
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(4 + 5/12, "feet"),
  34788. default: true
  34789. },
  34790. ]
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34794. {
  34795. front: {
  34796. height: math.unit(8 + 4/12, "feet"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/vick/front.svg",
  34800. extra: 2187/2118,
  34801. bottom: 47/2234
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Normal",
  34808. height: math.unit(8 + 4/12, "feet"),
  34809. default: true
  34810. },
  34811. ]
  34812. ))
  34813. characterMakers.push(() => makeCharacter(
  34814. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34815. {
  34816. front: {
  34817. height: math.unit(5 + 5/12, "feet"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/mitsy/front.svg",
  34821. extra: 1842/1695,
  34822. bottom: 0/1842
  34823. }
  34824. },
  34825. },
  34826. [
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(5 + 5/12, "feet"),
  34830. default: true
  34831. },
  34832. ]
  34833. ))
  34834. characterMakers.push(() => makeCharacter(
  34835. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34836. {
  34837. front: {
  34838. height: math.unit(6 + 3/12, "feet"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/silvy/front.svg",
  34842. extra: 1995/1836,
  34843. bottom: 225/2220
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(6 + 3/12, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(3 + 8/12, "feet"),
  34860. name: "Front",
  34861. image: {
  34862. source: "./media/characters/rodney/front.svg",
  34863. extra: 1956/1747,
  34864. bottom: 31/1987
  34865. }
  34866. },
  34867. frontDressed: {
  34868. height: math.unit(2.9, "feet"),
  34869. name: "Front (Dressed)",
  34870. image: {
  34871. source: "./media/characters/rodney/front-dressed.svg",
  34872. extra: 1382/1241,
  34873. bottom: 385/1767
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(3 + 8/12, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(5 + 9/12, "feet"),
  34890. weight: math.unit(194, "lbs"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/zakail-sudekai/front.svg",
  34894. extra: 2696/2533,
  34895. bottom: 248/2944
  34896. }
  34897. },
  34898. maw: {
  34899. height: math.unit(1.35, "feet"),
  34900. name: "Maw",
  34901. image: {
  34902. source: "./media/characters/zakail-sudekai/maw.svg"
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(5 + 9/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(8 + 4/12, "feet"),
  34919. weight: math.unit(1200, "lb"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/eleanor/front.svg",
  34923. extra: 1226/1192,
  34924. bottom: 52/1278
  34925. }
  34926. },
  34927. back: {
  34928. height: math.unit(8 + 4/12, "feet"),
  34929. weight: math.unit(1200, "lb"),
  34930. name: "Back",
  34931. image: {
  34932. source: "./media/characters/eleanor/back.svg",
  34933. extra: 1242/1184,
  34934. bottom: 60/1302
  34935. }
  34936. },
  34937. head: {
  34938. height: math.unit(2.62, "feet"),
  34939. name: "Head",
  34940. image: {
  34941. source: "./media/characters/eleanor/head.svg"
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(8 + 4/12, "feet"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(8 + 4/12, "feet"),
  34958. weight: math.unit(750, "lb"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/tanya/front.svg",
  34962. extra: 1749/1615,
  34963. bottom: 33/1782
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(8 + 4/12, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(5, "feet"),
  34980. weight: math.unit(225, "lb"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/cindy/front.svg",
  34984. extra: 1320/1250,
  34985. bottom: 42/1362
  34986. }
  34987. },
  34988. frontDressed: {
  34989. height: math.unit(5, "feet"),
  34990. weight: math.unit(225, "lb"),
  34991. name: "Front (Dressed)",
  34992. image: {
  34993. source: "./media/characters/cindy/front-dressed.svg",
  34994. extra: 1320/1250,
  34995. bottom: 42/1362
  34996. }
  34997. },
  34998. back: {
  34999. height: math.unit(5, "feet"),
  35000. weight: math.unit(225, "lb"),
  35001. name: "Back",
  35002. image: {
  35003. source: "./media/characters/cindy/back.svg",
  35004. extra: 1384/1346,
  35005. bottom: 14/1398
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(5, "feet"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35019. {
  35020. front: {
  35021. height: math.unit(6 + 9/12, "feet"),
  35022. weight: math.unit(440, "lb"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/wilbur-owen/front.svg",
  35026. extra: 1575/1448,
  35027. bottom: 72/1647
  35028. }
  35029. },
  35030. back: {
  35031. height: math.unit(6 + 9/12, "feet"),
  35032. weight: math.unit(440, "lb"),
  35033. name: "Back",
  35034. image: {
  35035. source: "./media/characters/wilbur-owen/back.svg",
  35036. extra: 1578/1445,
  35037. bottom: 36/1614
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "Normal",
  35044. height: math.unit(6 + 9/12, "feet"),
  35045. default: true
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(6 + 5/12, "feet"),
  35054. weight: math.unit(650, "lb"),
  35055. name: "Front",
  35056. image: {
  35057. source: "./media/characters/keegan/front.svg",
  35058. extra: 2387/2198,
  35059. bottom: 33/2420
  35060. }
  35061. },
  35062. side: {
  35063. height: math.unit(6 + 5/12, "feet"),
  35064. weight: math.unit(650, "lb"),
  35065. name: "Side",
  35066. image: {
  35067. source: "./media/characters/keegan/side.svg",
  35068. extra: 2390/2202,
  35069. bottom: 47/2437
  35070. }
  35071. },
  35072. back: {
  35073. height: math.unit(6 + 5/12, "feet"),
  35074. weight: math.unit(650, "lb"),
  35075. name: "Back",
  35076. image: {
  35077. source: "./media/characters/keegan/back.svg",
  35078. extra: 2418/2268,
  35079. bottom: 15/2433
  35080. }
  35081. },
  35082. frontSfw: {
  35083. height: math.unit(6 + 5/12, "feet"),
  35084. weight: math.unit(650, "lb"),
  35085. name: "Front (SFW)",
  35086. image: {
  35087. source: "./media/characters/keegan/front-sfw.svg",
  35088. extra: 2387/2198,
  35089. bottom: 33/2420
  35090. }
  35091. },
  35092. beans: {
  35093. height: math.unit(1.85, "feet"),
  35094. name: "Beans",
  35095. image: {
  35096. source: "./media/characters/keegan/beans.svg"
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(6 + 5/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(9, "feet"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/colton/front.svg",
  35116. extra: 1589/1326,
  35117. bottom: 139/1728
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(9, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(2 + 9/12, "feet"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/bora/front.svg",
  35137. extra: 1265/1250,
  35138. bottom: 24/1289
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(2 + 9/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(8, "feet"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/myu-myu/front.svg",
  35158. extra: 1949/1857,
  35159. bottom: 90/2039
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(8, "feet"),
  35167. default: true
  35168. },
  35169. {
  35170. name: "Big",
  35171. height: math.unit(15, "feet")
  35172. },
  35173. {
  35174. name: "BIG",
  35175. height: math.unit(25, "feet")
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35181. {
  35182. side: {
  35183. height: math.unit(7 + 5/12, "feet"),
  35184. weight: math.unit(2800, "lb"),
  35185. name: "Side",
  35186. image: {
  35187. source: "./media/characters/haloren/side.svg",
  35188. extra: 1793/409,
  35189. bottom: 59/1852
  35190. }
  35191. },
  35192. frontPaw: {
  35193. height: math.unit(2.36, "feet"),
  35194. name: "Front paw",
  35195. image: {
  35196. source: "./media/characters/haloren/front-paw.svg"
  35197. }
  35198. },
  35199. hindPaw: {
  35200. height: math.unit(3.18, "feet"),
  35201. name: "Hind paw",
  35202. image: {
  35203. source: "./media/characters/haloren/hind-paw.svg"
  35204. }
  35205. },
  35206. maw: {
  35207. height: math.unit(5.05, "feet"),
  35208. name: "Maw",
  35209. image: {
  35210. source: "./media/characters/haloren/maw.svg"
  35211. }
  35212. },
  35213. dick: {
  35214. height: math.unit(2.90, "feet"),
  35215. name: "Dick",
  35216. image: {
  35217. source: "./media/characters/haloren/dick.svg"
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(7 + 5/12, "feet"),
  35225. default: true
  35226. },
  35227. {
  35228. name: "Enhanced",
  35229. height: math.unit(14 + 3/12, "feet")
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(171, "cm"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/kimmy/front.svg",
  35241. extra: 1491/1435,
  35242. bottom: 53/1544
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Small",
  35249. height: math.unit(9, "cm")
  35250. },
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(171, "cm"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. //characters
  35259. function makeCharacters() {
  35260. const results = [];
  35261. characterMakers.forEach(character => {
  35262. results.push(character());
  35263. });
  35264. return results;
  35265. }