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

41193 wiersze
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. }
  1690. }
  1691. //species
  1692. function getSpeciesInfo(speciesList) {
  1693. let result = new Set();
  1694. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1695. result.add(entry)
  1696. });
  1697. return Array.from(result);
  1698. };
  1699. function getSpeciesInfoHelper(species) {
  1700. if (!speciesData[species]) {
  1701. console.warn(species + " doesn't exist");
  1702. return [];
  1703. }
  1704. if (speciesData[species].parents) {
  1705. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1706. } else {
  1707. return [species];
  1708. }
  1709. }
  1710. characterMakers.push(() => makeCharacter(
  1711. {
  1712. name: "Fen",
  1713. species: ["crux"],
  1714. description: {
  1715. title: "Bio",
  1716. text: "Very furry. Sheds on everything."
  1717. },
  1718. tags: [
  1719. "anthro",
  1720. "goo"
  1721. ]
  1722. },
  1723. {
  1724. back: {
  1725. height: math.unit(2.2428, "meter"),
  1726. weight: math.unit(124.738, "kg"),
  1727. name: "Back",
  1728. image: {
  1729. source: "./media/characters/fen/back.svg",
  1730. },
  1731. info: {
  1732. description: {
  1733. mode: "append",
  1734. text: "\n\nHe is not currently looking at you."
  1735. }
  1736. }
  1737. },
  1738. full: {
  1739. height: math.unit(1.34, "meter"),
  1740. weight: math.unit(225, "kg"),
  1741. name: "Full",
  1742. image: {
  1743. source: "./media/characters/fen/full.svg"
  1744. },
  1745. info: {
  1746. description: {
  1747. mode: "append",
  1748. text: "\n\nMunch."
  1749. }
  1750. }
  1751. },
  1752. kneeling: {
  1753. height: math.unit(5.4, "feet"),
  1754. weight: math.unit(124.738, "kg"),
  1755. name: "Kneeling",
  1756. image: {
  1757. source: "./media/characters/fen/kneeling.svg",
  1758. extra: 563 / 507
  1759. }
  1760. },
  1761. goo: {
  1762. height: math.unit(2.8, "feet"),
  1763. weight: math.unit(125, "kg"),
  1764. capacity: math.unit(1, "people"),
  1765. name: "Goo",
  1766. image: {
  1767. source: "./media/characters/fen/goo.svg",
  1768. bottom: 116 / 613
  1769. }
  1770. },
  1771. lounging: {
  1772. height: math.unit(6.5, "feet"),
  1773. weight: math.unit(125, "kg"),
  1774. name: "Lounging",
  1775. image: {
  1776. source: "./media/characters/fen/lounging.svg"
  1777. }
  1778. },
  1779. },
  1780. [
  1781. {
  1782. name: "Normal",
  1783. height: math.unit(2.2428, "meter")
  1784. },
  1785. {
  1786. name: "Big",
  1787. height: math.unit(12, "feet")
  1788. },
  1789. {
  1790. name: "Minimacro",
  1791. height: math.unit(40, "feet"),
  1792. default: true,
  1793. info: {
  1794. description: {
  1795. mode: "append",
  1796. text: "\n\nTOO DAMN BIG"
  1797. }
  1798. }
  1799. },
  1800. {
  1801. name: "Macro",
  1802. height: math.unit(100, "feet"),
  1803. info: {
  1804. description: {
  1805. mode: "append",
  1806. text: "\n\nTOO DAMN BIG"
  1807. }
  1808. }
  1809. },
  1810. {
  1811. name: "Macro+",
  1812. height: math.unit(300, "feet")
  1813. },
  1814. {
  1815. name: "Megamacro",
  1816. height: math.unit(2, "miles")
  1817. }
  1818. ]
  1819. ))
  1820. characterMakers.push(() => makeCharacter(
  1821. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1822. {
  1823. front: {
  1824. height: math.unit(183, "cm"),
  1825. weight: math.unit(80, "kg"),
  1826. name: "Front",
  1827. image: {
  1828. source: "./media/characters/sofia-fluttertail/front.svg",
  1829. bottom: 0.01,
  1830. extra: 2154 / 2081
  1831. }
  1832. },
  1833. frontAlt: {
  1834. height: math.unit(183, "cm"),
  1835. weight: math.unit(80, "kg"),
  1836. name: "Front (alt)",
  1837. image: {
  1838. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1839. }
  1840. },
  1841. back: {
  1842. height: math.unit(183, "cm"),
  1843. weight: math.unit(80, "kg"),
  1844. name: "Back",
  1845. image: {
  1846. source: "./media/characters/sofia-fluttertail/back.svg"
  1847. }
  1848. },
  1849. kneeling: {
  1850. height: math.unit(125, "cm"),
  1851. weight: math.unit(80, "kg"),
  1852. name: "Kneeling",
  1853. image: {
  1854. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1855. extra: 1033 / 977,
  1856. bottom: 23.7 / 1057
  1857. }
  1858. },
  1859. maw: {
  1860. height: math.unit(183 / 5, "cm"),
  1861. name: "Maw",
  1862. image: {
  1863. source: "./media/characters/sofia-fluttertail/maw.svg"
  1864. }
  1865. },
  1866. mawcloseup: {
  1867. height: math.unit(183 / 5 * 0.41, "cm"),
  1868. name: "Maw (Closeup)",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1871. }
  1872. },
  1873. paws: {
  1874. height: math.unit(1.17, "feet"),
  1875. name: "Paws",
  1876. image: {
  1877. source: "./media/characters/sofia-fluttertail/paws.svg",
  1878. extra: 851 / 851,
  1879. bottom: 17 / 868
  1880. }
  1881. },
  1882. },
  1883. [
  1884. {
  1885. name: "Normal",
  1886. height: math.unit(1.83, "meter")
  1887. },
  1888. {
  1889. name: "Size Thief",
  1890. height: math.unit(18, "feet")
  1891. },
  1892. {
  1893. name: "50 Foot Collie",
  1894. height: math.unit(50, "feet")
  1895. },
  1896. {
  1897. name: "Macro",
  1898. height: math.unit(96, "feet"),
  1899. default: true
  1900. },
  1901. {
  1902. name: "Megamerger",
  1903. height: math.unit(650, "feet")
  1904. },
  1905. ]
  1906. ))
  1907. characterMakers.push(() => makeCharacter(
  1908. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1909. {
  1910. front: {
  1911. height: math.unit(7, "feet"),
  1912. weight: math.unit(100, "kg"),
  1913. name: "Front",
  1914. image: {
  1915. source: "./media/characters/march/front.svg",
  1916. extra: 1992/1851,
  1917. bottom: 39/2031
  1918. }
  1919. },
  1920. foot: {
  1921. height: math.unit(0.9, "feet"),
  1922. name: "Foot",
  1923. image: {
  1924. source: "./media/characters/march/foot.svg"
  1925. }
  1926. },
  1927. },
  1928. [
  1929. {
  1930. name: "Normal",
  1931. height: math.unit(7.9, "feet")
  1932. },
  1933. {
  1934. name: "Macro",
  1935. height: math.unit(220, "meters")
  1936. },
  1937. {
  1938. name: "Megamacro",
  1939. height: math.unit(2.98, "km"),
  1940. default: true
  1941. },
  1942. {
  1943. name: "Gigamacro",
  1944. height: math.unit(15963, "km")
  1945. },
  1946. {
  1947. name: "Teramacro",
  1948. height: math.unit(2980000000, "km")
  1949. },
  1950. {
  1951. name: "Examacro",
  1952. height: math.unit(250, "parsecs")
  1953. },
  1954. ]
  1955. ))
  1956. characterMakers.push(() => makeCharacter(
  1957. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1958. {
  1959. front: {
  1960. height: math.unit(6, "feet"),
  1961. weight: math.unit(60, "kg"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/noir/front.svg",
  1965. extra: 1,
  1966. bottom: 0.032
  1967. }
  1968. },
  1969. },
  1970. [
  1971. {
  1972. name: "Normal",
  1973. height: math.unit(6.6, "feet")
  1974. },
  1975. {
  1976. name: "Macro",
  1977. height: math.unit(500, "feet")
  1978. },
  1979. {
  1980. name: "Megamacro",
  1981. height: math.unit(2.5, "km"),
  1982. default: true
  1983. },
  1984. {
  1985. name: "Gigamacro",
  1986. height: math.unit(22500, "km")
  1987. },
  1988. {
  1989. name: "Teramacro",
  1990. height: math.unit(2500000000, "km")
  1991. },
  1992. {
  1993. name: "Examacro",
  1994. height: math.unit(200, "parsecs")
  1995. },
  1996. ]
  1997. ))
  1998. characterMakers.push(() => makeCharacter(
  1999. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2000. {
  2001. front: {
  2002. height: math.unit(7, "feet"),
  2003. weight: math.unit(100, "kg"),
  2004. name: "Front",
  2005. image: {
  2006. source: "./media/characters/okuri/front.svg",
  2007. extra: 1,
  2008. bottom: 0.037
  2009. }
  2010. },
  2011. back: {
  2012. height: math.unit(7, "feet"),
  2013. weight: math.unit(100, "kg"),
  2014. name: "Back",
  2015. image: {
  2016. source: "./media/characters/okuri/back.svg",
  2017. extra: 1,
  2018. bottom: 0.007
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Megamacro",
  2025. height: math.unit(100, "miles"),
  2026. default: true
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(100, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/manny/front.svg",
  2039. extra: 1,
  2040. bottom: 0.06
  2041. }
  2042. },
  2043. back: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(100, "kg"),
  2046. name: "Back",
  2047. image: {
  2048. source: "./media/characters/manny/back.svg",
  2049. extra: 1,
  2050. bottom: 0.014
  2051. }
  2052. },
  2053. },
  2054. [
  2055. {
  2056. name: "Normal",
  2057. height: math.unit(7, "feet"),
  2058. },
  2059. {
  2060. name: "Macro",
  2061. height: math.unit(78, "feet"),
  2062. default: true
  2063. },
  2064. {
  2065. name: "Macro+",
  2066. height: math.unit(300, "meters")
  2067. },
  2068. {
  2069. name: "Macro++",
  2070. height: math.unit(2400, "meters")
  2071. },
  2072. {
  2073. name: "Megamacro",
  2074. height: math.unit(5167, "meters")
  2075. },
  2076. {
  2077. name: "Gigamacro",
  2078. height: math.unit(41769, "miles")
  2079. },
  2080. ]
  2081. ))
  2082. characterMakers.push(() => makeCharacter(
  2083. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2084. {
  2085. front: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(100, "kg"),
  2088. name: "Front",
  2089. image: {
  2090. source: "./media/characters/adake/front-1.svg"
  2091. }
  2092. },
  2093. frontAlt: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front (Alt)",
  2097. image: {
  2098. source: "./media/characters/adake/front-2.svg",
  2099. extra: 1,
  2100. bottom: 0.01
  2101. }
  2102. },
  2103. back: {
  2104. height: math.unit(7, "feet"),
  2105. weight: math.unit(100, "kg"),
  2106. name: "Back",
  2107. image: {
  2108. source: "./media/characters/adake/back.svg",
  2109. }
  2110. },
  2111. kneel: {
  2112. height: math.unit(5.385, "feet"),
  2113. weight: math.unit(100, "kg"),
  2114. name: "Kneeling",
  2115. image: {
  2116. source: "./media/characters/adake/kneel.svg",
  2117. bottom: 0.052
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(7, "feet"),
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(78, "feet"),
  2129. default: true
  2130. },
  2131. {
  2132. name: "Macro+",
  2133. height: math.unit(300, "meters")
  2134. },
  2135. {
  2136. name: "Macro++",
  2137. height: math.unit(2400, "meters")
  2138. },
  2139. {
  2140. name: "Megamacro",
  2141. height: math.unit(5167, "meters")
  2142. },
  2143. {
  2144. name: "Gigamacro",
  2145. height: math.unit(41769, "miles")
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(1.65, "meters"),
  2154. weight: math.unit(50, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/elijah/front.svg",
  2158. extra: 858 / 830,
  2159. bottom: 95.5 / 953.8559
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(1.65, "meters"),
  2164. weight: math.unit(50, "kg"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/elijah/back.svg",
  2168. extra: 895 / 850,
  2169. bottom: 5.3 / 897.956
  2170. }
  2171. },
  2172. frontNsfw: {
  2173. height: math.unit(1.65, "meters"),
  2174. weight: math.unit(50, "kg"),
  2175. name: "Front (NSFW)",
  2176. image: {
  2177. source: "./media/characters/elijah/front-nsfw.svg",
  2178. extra: 858 / 830,
  2179. bottom: 95.5 / 953.8559
  2180. }
  2181. },
  2182. backNsfw: {
  2183. height: math.unit(1.65, "meters"),
  2184. weight: math.unit(50, "kg"),
  2185. name: "Back (NSFW)",
  2186. image: {
  2187. source: "./media/characters/elijah/back-nsfw.svg",
  2188. extra: 895 / 850,
  2189. bottom: 5.3 / 897.956
  2190. }
  2191. },
  2192. dick: {
  2193. height: math.unit(1, "feet"),
  2194. name: "Dick",
  2195. image: {
  2196. source: "./media/characters/elijah/dick.svg"
  2197. }
  2198. },
  2199. beakOpen: {
  2200. height: math.unit(1.25, "feet"),
  2201. name: "Beak (Open)",
  2202. image: {
  2203. source: "./media/characters/elijah/beak-open.svg"
  2204. }
  2205. },
  2206. beakShut: {
  2207. height: math.unit(1.25, "feet"),
  2208. name: "Beak (Shut)",
  2209. image: {
  2210. source: "./media/characters/elijah/beak-shut.svg"
  2211. }
  2212. },
  2213. footFlexing: {
  2214. height: math.unit(1.61, "feet"),
  2215. name: "Foot (Flexing)",
  2216. image: {
  2217. source: "./media/characters/elijah/foot-flexing.svg"
  2218. }
  2219. },
  2220. footStepping: {
  2221. height: math.unit(1.44, "feet"),
  2222. name: "Foot (Stepping)",
  2223. image: {
  2224. source: "./media/characters/elijah/foot-stepping.svg"
  2225. }
  2226. },
  2227. plantigradeLeg: {
  2228. height: math.unit(2.34, "feet"),
  2229. name: "Plantigrade Leg",
  2230. image: {
  2231. source: "./media/characters/elijah/plantigrade-leg.svg"
  2232. }
  2233. },
  2234. plantigradeFootLeft: {
  2235. height: math.unit(0.9, "feet"),
  2236. name: "Plantigrade Foot (Left)",
  2237. image: {
  2238. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2239. }
  2240. },
  2241. plantigradeFootRight: {
  2242. height: math.unit(0.9, "feet"),
  2243. name: "Plantigrade Foot (Right)",
  2244. image: {
  2245. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(1.65, "meters")
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(55, "meters"),
  2257. default: true
  2258. },
  2259. {
  2260. name: "Macro+",
  2261. height: math.unit(105, "meters")
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(11, "feet"),
  2270. weight: math.unit(320, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/rai/front.svg",
  2274. extra: 1802/1696,
  2275. bottom: 68/1870
  2276. }
  2277. },
  2278. frontDressed: {
  2279. height: math.unit(11, "feet"),
  2280. weight: math.unit(320, "kg"),
  2281. name: "Front (Dressed)",
  2282. image: {
  2283. source: "./media/characters/rai/front-dressed.svg",
  2284. extra: 1802/1696,
  2285. bottom: 68/1870
  2286. }
  2287. },
  2288. side: {
  2289. height: math.unit(11, "feet"),
  2290. weight: math.unit(320, "kg"),
  2291. name: "Side",
  2292. image: {
  2293. source: "./media/characters/rai/side.svg",
  2294. extra: 1789/1710,
  2295. bottom: 115/1904
  2296. }
  2297. },
  2298. back: {
  2299. height: math.unit(11, "feet"),
  2300. weight: math.unit(320, "kg"),
  2301. name: "Back",
  2302. image: {
  2303. source: "./media/characters/rai/back.svg",
  2304. extra: 1770/1707,
  2305. bottom: 28/1798
  2306. }
  2307. },
  2308. feral: {
  2309. height: math.unit(11, "feet"),
  2310. weight: math.unit(640, "kg"),
  2311. name: "Feral",
  2312. image: {
  2313. source: "./media/characters/rai/feral.svg",
  2314. extra: 1035/642,
  2315. bottom: 86/1121
  2316. }
  2317. },
  2318. dragon: {
  2319. height: math.unit(23, "feet"),
  2320. weight: math.unit(50000, "lb"),
  2321. name: "Dragon",
  2322. image: {
  2323. source: "./media/characters/rai/dragon.svg",
  2324. extra: 2498 / 2030,
  2325. bottom: 85.2 / 2584
  2326. }
  2327. },
  2328. maw: {
  2329. height: math.unit(6 / 3.81416, "feet"),
  2330. name: "Maw",
  2331. image: {
  2332. source: "./media/characters/rai/maw.svg"
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Normal",
  2339. height: math.unit(11, "feet")
  2340. },
  2341. {
  2342. name: "Macro",
  2343. height: math.unit(302, "feet"),
  2344. default: true
  2345. },
  2346. ]
  2347. ))
  2348. characterMakers.push(() => makeCharacter(
  2349. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2350. {
  2351. frontDressed: {
  2352. height: math.unit(216, "feet"),
  2353. weight: math.unit(7000000, "lb"),
  2354. name: "Front (Dressed)",
  2355. image: {
  2356. source: "./media/characters/jazzy/front-dressed.svg",
  2357. extra: 2738 / 2651,
  2358. bottom: 41.8 / 2786
  2359. }
  2360. },
  2361. backDressed: {
  2362. height: math.unit(216, "feet"),
  2363. weight: math.unit(7000000, "lb"),
  2364. name: "Back (Dressed)",
  2365. image: {
  2366. source: "./media/characters/jazzy/back-dressed.svg",
  2367. extra: 2775 / 2673,
  2368. bottom: 36.8 / 2817
  2369. }
  2370. },
  2371. front: {
  2372. height: math.unit(216, "feet"),
  2373. weight: math.unit(7000000, "lb"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/jazzy/front.svg",
  2377. extra: 2738 / 2651,
  2378. bottom: 41.8 / 2786
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(216, "feet"),
  2383. weight: math.unit(7000000, "lb"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/jazzy/back.svg",
  2387. extra: 2775 / 2673,
  2388. bottom: 36.8 / 2817
  2389. }
  2390. },
  2391. maw: {
  2392. height: math.unit(20, "feet"),
  2393. name: "Maw",
  2394. image: {
  2395. source: "./media/characters/jazzy/maw.svg"
  2396. }
  2397. },
  2398. paws: {
  2399. height: math.unit(27.5, "feet"),
  2400. name: "Paws",
  2401. image: {
  2402. source: "./media/characters/jazzy/paws.svg"
  2403. }
  2404. },
  2405. eye: {
  2406. height: math.unit(4.4, "feet"),
  2407. name: "Eye",
  2408. image: {
  2409. source: "./media/characters/jazzy/eye.svg"
  2410. }
  2411. },
  2412. droneOffense: {
  2413. height: math.unit(9.5, "inches"),
  2414. name: "Drone (Offense)",
  2415. image: {
  2416. source: "./media/characters/jazzy/drone-offense.svg"
  2417. }
  2418. },
  2419. droneRecon: {
  2420. height: math.unit(9.5, "inches"),
  2421. name: "Drone (Recon)",
  2422. image: {
  2423. source: "./media/characters/jazzy/drone-recon.svg"
  2424. }
  2425. },
  2426. droneDefense: {
  2427. height: math.unit(9.5, "inches"),
  2428. name: "Drone (Defense)",
  2429. image: {
  2430. source: "./media/characters/jazzy/drone-defense.svg"
  2431. }
  2432. },
  2433. },
  2434. [
  2435. {
  2436. name: "Macro",
  2437. height: math.unit(216, "feet"),
  2438. default: true
  2439. },
  2440. ]
  2441. ))
  2442. characterMakers.push(() => makeCharacter(
  2443. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2444. {
  2445. front: {
  2446. height: math.unit(9 + 6/12, "feet"),
  2447. weight: math.unit(700, "lb"),
  2448. name: "Front",
  2449. image: {
  2450. source: "./media/characters/flamm/front.svg",
  2451. extra: 1751/1632,
  2452. bottom: 46/1797
  2453. }
  2454. },
  2455. buff: {
  2456. height: math.unit(9 + 6/12, "feet"),
  2457. weight: math.unit(950, "lb"),
  2458. name: "Buff",
  2459. image: {
  2460. source: "./media/characters/flamm/buff.svg",
  2461. extra: 3018/2874,
  2462. bottom: 221/3239
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(9.5, "feet")
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(200, "feet"),
  2474. default: true
  2475. },
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2480. {
  2481. front: {
  2482. height: math.unit(5 + 3/12, "feet"),
  2483. weight: math.unit(60, "kg"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/zephiro/front.svg",
  2487. extra: 2309 / 2162,
  2488. bottom: 0.069
  2489. }
  2490. },
  2491. side: {
  2492. height: math.unit(5 + 3/12, "feet"),
  2493. weight: math.unit(60, "kg"),
  2494. name: "Side",
  2495. image: {
  2496. source: "./media/characters/zephiro/side.svg",
  2497. extra: 2403 / 2279,
  2498. bottom: 0.015
  2499. }
  2500. },
  2501. back: {
  2502. height: math.unit(5 + 3/12, "feet"),
  2503. weight: math.unit(60, "kg"),
  2504. name: "Back",
  2505. image: {
  2506. source: "./media/characters/zephiro/back.svg",
  2507. extra: 2373 / 2244,
  2508. bottom: 0.013
  2509. }
  2510. },
  2511. hand: {
  2512. height: math.unit(0.68, "feet"),
  2513. name: "Hand",
  2514. image: {
  2515. source: "./media/characters/zephiro/hand.svg"
  2516. }
  2517. },
  2518. paw: {
  2519. height: math.unit(1, "feet"),
  2520. name: "Paw",
  2521. image: {
  2522. source: "./media/characters/zephiro/paw.svg"
  2523. }
  2524. },
  2525. beans: {
  2526. height: math.unit(0.93, "feet"),
  2527. name: "Beans",
  2528. image: {
  2529. source: "./media/characters/zephiro/beans.svg"
  2530. }
  2531. },
  2532. },
  2533. [
  2534. {
  2535. name: "Micro",
  2536. height: math.unit(3, "inches")
  2537. },
  2538. {
  2539. name: "Normal",
  2540. height: math.unit(5 + 3 / 12, "feet"),
  2541. default: true
  2542. },
  2543. {
  2544. name: "Macro",
  2545. height: math.unit(118, "feet")
  2546. },
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2551. {
  2552. front: {
  2553. height: math.unit(5, "feet"),
  2554. weight: math.unit(90, "kg"),
  2555. name: "Front",
  2556. image: {
  2557. source: "./media/characters/fory/front.svg",
  2558. extra: 2862 / 2674,
  2559. bottom: 180 / 3043.8
  2560. }
  2561. },
  2562. back: {
  2563. height: math.unit(5, "feet"),
  2564. weight: math.unit(90, "kg"),
  2565. name: "Back",
  2566. image: {
  2567. source: "./media/characters/fory/back.svg",
  2568. extra: 2962 / 2791,
  2569. bottom: 106 / 3071.8
  2570. }
  2571. },
  2572. foot: {
  2573. height: math.unit(2.14, "feet"),
  2574. name: "Foot",
  2575. image: {
  2576. source: "./media/characters/fory/foot.svg"
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(5, "feet")
  2584. },
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(50, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Megamacro",
  2592. height: math.unit(10, "miles")
  2593. },
  2594. {
  2595. name: "Gigamacro",
  2596. height: math.unit(5, "earths")
  2597. },
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2602. {
  2603. front: {
  2604. height: math.unit(7, "feet"),
  2605. weight: math.unit(90, "kg"),
  2606. name: "Front",
  2607. image: {
  2608. source: "./media/characters/kurrikage/front.svg",
  2609. extra: 1,
  2610. bottom: 0.035
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7, "feet"),
  2615. weight: math.unit(90, "lb"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/kurrikage/back.svg"
  2619. }
  2620. },
  2621. paw: {
  2622. height: math.unit(1.5, "feet"),
  2623. name: "Paw",
  2624. image: {
  2625. source: "./media/characters/kurrikage/paw.svg"
  2626. }
  2627. },
  2628. staff: {
  2629. height: math.unit(6.7, "feet"),
  2630. name: "Staff",
  2631. image: {
  2632. source: "./media/characters/kurrikage/staff.svg"
  2633. }
  2634. },
  2635. peek: {
  2636. height: math.unit(1.05, "feet"),
  2637. name: "Peeking",
  2638. image: {
  2639. source: "./media/characters/kurrikage/peek.svg",
  2640. bottom: 0.08
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(12, "feet"),
  2648. default: true
  2649. },
  2650. {
  2651. name: "Big",
  2652. height: math.unit(20, "feet")
  2653. },
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(500, "feet")
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(20, "miles")
  2661. },
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(6, "feet"),
  2669. weight: math.unit(75, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/shingo/front.svg",
  2673. extra: 706/681,
  2674. bottom: 11/717
  2675. }
  2676. },
  2677. frontAlt: {
  2678. height: math.unit(6, "feet"),
  2679. weight: math.unit(75, "kg"),
  2680. name: "Front (Alt)",
  2681. image: {
  2682. source: "./media/characters/shingo/front-alt.svg",
  2683. extra: 3511 / 3338,
  2684. bottom: 0.005
  2685. }
  2686. },
  2687. paw: {
  2688. height: math.unit(1, "feet"),
  2689. name: "Paw",
  2690. image: {
  2691. source: "./media/characters/shingo/paw.svg"
  2692. }
  2693. },
  2694. },
  2695. [
  2696. {
  2697. name: "Micro",
  2698. height: math.unit(4, "inches")
  2699. },
  2700. {
  2701. name: "Normal",
  2702. height: math.unit(6, "feet"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Macro",
  2707. height: math.unit(108, "feet")
  2708. },
  2709. {
  2710. name: "Macro+",
  2711. height: math.unit(1500, "feet")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2717. {
  2718. side: {
  2719. height: math.unit(6, "feet"),
  2720. weight: math.unit(75, "kg"),
  2721. name: "Side",
  2722. image: {
  2723. source: "./media/characters/aigey/side.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(200, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(100, "miles")
  2736. },
  2737. ]
  2738. )
  2739. )
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2742. {
  2743. front: {
  2744. height: math.unit(5 + 5 / 12, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Front",
  2747. image: {
  2748. source: "./media/characters/natasha/front.svg",
  2749. extra: 859 / 824,
  2750. bottom: 23 / 879.6
  2751. }
  2752. },
  2753. frontNsfw: {
  2754. height: math.unit(5 + 5 / 12, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Front (NSFW)",
  2757. image: {
  2758. source: "./media/characters/natasha/front-nsfw.svg",
  2759. extra: 859 / 824,
  2760. bottom: 23 / 879.6
  2761. }
  2762. },
  2763. frontErect: {
  2764. height: math.unit(5 + 5 / 12, "feet"),
  2765. weight: math.unit(75, "kg"),
  2766. name: "Front (Erect)",
  2767. image: {
  2768. source: "./media/characters/natasha/front-erect.svg",
  2769. extra: 859 / 824,
  2770. bottom: 23 / 879.6
  2771. }
  2772. },
  2773. back: {
  2774. height: math.unit(5 + 5 / 12, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Back",
  2777. image: {
  2778. source: "./media/characters/natasha/back.svg",
  2779. extra: 887.9 / 852.6,
  2780. bottom: 9.7 / 896.4
  2781. }
  2782. },
  2783. backAlt: {
  2784. height: math.unit(5 + 5 / 12, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Back (Alt)",
  2787. image: {
  2788. source: "./media/characters/natasha/back-alt.svg",
  2789. extra: 1236.7 / 1192,
  2790. bottom: 22.3 / 1258.2
  2791. }
  2792. },
  2793. dick: {
  2794. height: math.unit(1.772, "feet"),
  2795. name: "Dick",
  2796. image: {
  2797. source: "./media/characters/natasha/dick.svg"
  2798. }
  2799. },
  2800. paw: {
  2801. height: math.unit(0.250, "meters"),
  2802. name: "Paw",
  2803. image: {
  2804. source: "./media/characters/natasha/paw.svg"
  2805. }
  2806. },
  2807. },
  2808. [
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(5 + 5 / 12, "feet")
  2812. },
  2813. {
  2814. name: "Large",
  2815. height: math.unit(12, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(100, "feet"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Macro+",
  2824. height: math.unit(260, "feet")
  2825. },
  2826. {
  2827. name: "Macro++",
  2828. height: math.unit(1, "mile")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(75, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/malik/front.svg"
  2841. }
  2842. },
  2843. side: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Side",
  2847. image: {
  2848. source: "./media/characters/malik/side.svg",
  2849. extra: 1.1539
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(6, "feet"),
  2854. weight: math.unit(75, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/malik/back.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Macro",
  2864. height: math.unit(156, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Macro+",
  2869. height: math.unit(1188, "feet")
  2870. },
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/sefer/front.svg",
  2882. extra: 848 / 659,
  2883. bottom: 28.3 / 876.442
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/sefer/back.svg",
  2892. extra: 864 / 695,
  2893. bottom: 10 / 871
  2894. }
  2895. },
  2896. frontDressed: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(75, "kg"),
  2899. name: "Front (Dressed)",
  2900. image: {
  2901. source: "./media/characters/sefer/front-dressed.svg",
  2902. extra: 839 / 653,
  2903. bottom: 37.6 / 878
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Normal",
  2910. height: math.unit(6, "feet"),
  2911. default: true
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2917. {
  2918. body: {
  2919. height: math.unit(2.2428, "meter"),
  2920. weight: math.unit(124.738, "kg"),
  2921. name: "Body",
  2922. image: {
  2923. extra: 1225 / 1050,
  2924. source: "./media/characters/north/front.svg"
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Micro",
  2931. height: math.unit(4, "inches")
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(63, "meters")
  2936. },
  2937. {
  2938. name: "Megamacro",
  2939. height: math.unit(101, "miles"),
  2940. default: true
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2946. {
  2947. angled: {
  2948. height: math.unit(4, "meter"),
  2949. weight: math.unit(150, "kg"),
  2950. name: "Angled",
  2951. image: {
  2952. source: "./media/characters/talan/angled-sfw.svg",
  2953. bottom: 29 / 3734
  2954. }
  2955. },
  2956. angledNsfw: {
  2957. height: math.unit(4, "meter"),
  2958. weight: math.unit(150, "kg"),
  2959. name: "Angled (NSFW)",
  2960. image: {
  2961. source: "./media/characters/talan/angled-nsfw.svg",
  2962. bottom: 29 / 3734
  2963. }
  2964. },
  2965. frontNsfw: {
  2966. height: math.unit(4, "meter"),
  2967. weight: math.unit(150, "kg"),
  2968. name: "Front (NSFW)",
  2969. image: {
  2970. source: "./media/characters/talan/front-nsfw.svg",
  2971. bottom: 29 / 3734
  2972. }
  2973. },
  2974. sideNsfw: {
  2975. height: math.unit(4, "meter"),
  2976. weight: math.unit(150, "kg"),
  2977. name: "Side (NSFW)",
  2978. image: {
  2979. source: "./media/characters/talan/side-nsfw.svg",
  2980. bottom: 29 / 3734
  2981. }
  2982. },
  2983. back: {
  2984. height: math.unit(4, "meter"),
  2985. weight: math.unit(150, "kg"),
  2986. name: "Back",
  2987. image: {
  2988. source: "./media/characters/talan/back.svg"
  2989. }
  2990. },
  2991. dickBottom: {
  2992. height: math.unit(0.621, "meter"),
  2993. name: "Dick (Bottom)",
  2994. image: {
  2995. source: "./media/characters/talan/dick-bottom.svg"
  2996. }
  2997. },
  2998. dickTop: {
  2999. height: math.unit(0.621, "meter"),
  3000. name: "Dick (Top)",
  3001. image: {
  3002. source: "./media/characters/talan/dick-top.svg"
  3003. }
  3004. },
  3005. dickSide: {
  3006. height: math.unit(0.305, "meter"),
  3007. name: "Dick (Side)",
  3008. image: {
  3009. source: "./media/characters/talan/dick-side.svg"
  3010. }
  3011. },
  3012. dickFront: {
  3013. height: math.unit(0.305, "meter"),
  3014. name: "Dick (Front)",
  3015. image: {
  3016. source: "./media/characters/talan/dick-front.svg"
  3017. }
  3018. },
  3019. },
  3020. [
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(4, "meters")
  3024. },
  3025. {
  3026. name: "Macro",
  3027. height: math.unit(100, "meters")
  3028. },
  3029. {
  3030. name: "Megamacro",
  3031. height: math.unit(2, "miles"),
  3032. default: true
  3033. },
  3034. {
  3035. name: "Gigamacro",
  3036. height: math.unit(5000, "miles")
  3037. },
  3038. {
  3039. name: "Teramacro",
  3040. height: math.unit(100, "parsecs")
  3041. }
  3042. ]
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3046. {
  3047. front: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(90, "kg"),
  3050. name: "Front",
  3051. image: {
  3052. source: "./media/characters/gael'rathus/front.svg"
  3053. }
  3054. },
  3055. frontAlt: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Front (alt)",
  3059. image: {
  3060. source: "./media/characters/gael'rathus/front-alt.svg"
  3061. }
  3062. },
  3063. frontAlt2: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(90, "kg"),
  3066. name: "Front (alt 2)",
  3067. image: {
  3068. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3069. }
  3070. }
  3071. },
  3072. [
  3073. {
  3074. name: "Normal",
  3075. height: math.unit(9, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Large",
  3080. height: math.unit(25, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(0.25, "miles")
  3085. },
  3086. {
  3087. name: "Megamacro",
  3088. height: math.unit(10, "miles")
  3089. }
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3094. {
  3095. side: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(140, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/sosha/side.svg",
  3101. bottom: 0.042
  3102. }
  3103. },
  3104. },
  3105. [
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(12, "feet"),
  3109. default: true
  3110. }
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3115. {
  3116. side: {
  3117. height: math.unit(5 + 5 / 12, "feet"),
  3118. weight: math.unit(170, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/runnola/side.svg",
  3122. extra: 741 / 448,
  3123. bottom: 0.05
  3124. }
  3125. },
  3126. },
  3127. [
  3128. {
  3129. name: "Small",
  3130. height: math.unit(3, "feet")
  3131. },
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(5 + 5 / 12, "feet"),
  3135. default: true
  3136. },
  3137. {
  3138. name: "Big",
  3139. height: math.unit(10, "feet")
  3140. },
  3141. ]
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3145. {
  3146. front: {
  3147. height: math.unit(2, "meter"),
  3148. weight: math.unit(50, "kg"),
  3149. name: "Front",
  3150. image: {
  3151. source: "./media/characters/kurribird/front.svg",
  3152. bottom: 0.015
  3153. }
  3154. },
  3155. frontAlt: {
  3156. height: math.unit(1.5, "meter"),
  3157. weight: math.unit(50, "kg"),
  3158. name: "Front (Alt)",
  3159. image: {
  3160. source: "./media/characters/kurribird/front-alt.svg",
  3161. extra: 1.45
  3162. }
  3163. },
  3164. },
  3165. [
  3166. {
  3167. name: "Normal",
  3168. height: math.unit(7, "feet")
  3169. },
  3170. {
  3171. name: "Big",
  3172. height: math.unit(12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(1500, "feet")
  3178. },
  3179. {
  3180. name: "Megamacro",
  3181. height: math.unit(2, "miles")
  3182. }
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(2, "meter"),
  3190. weight: math.unit(80, "kg"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/elbial/front.svg",
  3194. extra: 1643 / 1556,
  3195. bottom: 60.2 / 1696
  3196. }
  3197. },
  3198. side: {
  3199. height: math.unit(2, "meter"),
  3200. weight: math.unit(80, "kg"),
  3201. name: "Side",
  3202. image: {
  3203. source: "./media/characters/elbial/side.svg",
  3204. extra: 1630 / 1565,
  3205. bottom: 71.5 / 1697
  3206. }
  3207. },
  3208. back: {
  3209. height: math.unit(2, "meter"),
  3210. weight: math.unit(80, "kg"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/elbial/back.svg",
  3214. extra: 1668 / 1595,
  3215. bottom: 5.6 / 1672
  3216. }
  3217. },
  3218. frontDressed: {
  3219. height: math.unit(2, "meter"),
  3220. weight: math.unit(80, "kg"),
  3221. name: "Front (Dressed)",
  3222. image: {
  3223. source: "./media/characters/elbial/front-dressed.svg",
  3224. extra: 1653 / 1584,
  3225. bottom: 57 / 1708
  3226. }
  3227. },
  3228. genitals: {
  3229. height: math.unit(2 / 3.367, "meter"),
  3230. name: "Genitals",
  3231. image: {
  3232. source: "./media/characters/elbial/genitals.svg"
  3233. }
  3234. },
  3235. },
  3236. [
  3237. {
  3238. name: "Large",
  3239. height: math.unit(100, "feet")
  3240. },
  3241. {
  3242. name: "Macro",
  3243. height: math.unit(500, "feet"),
  3244. default: true
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(10, "miles")
  3249. },
  3250. {
  3251. name: "Gigamacro",
  3252. height: math.unit(25000, "miles")
  3253. },
  3254. {
  3255. name: "Full-Size",
  3256. height: math.unit(8000000, "gigaparsecs")
  3257. }
  3258. ]
  3259. ))
  3260. characterMakers.push(() => makeCharacter(
  3261. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3262. {
  3263. front: {
  3264. height: math.unit(2, "meter"),
  3265. weight: math.unit(60, "kg"),
  3266. name: "Front",
  3267. image: {
  3268. source: "./media/characters/noah/front.svg"
  3269. }
  3270. },
  3271. talons: {
  3272. height: math.unit(0.315, "meter"),
  3273. name: "Talons",
  3274. image: {
  3275. source: "./media/characters/noah/talons.svg"
  3276. }
  3277. }
  3278. },
  3279. [
  3280. {
  3281. name: "Large",
  3282. height: math.unit(50, "feet")
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(750, "feet"),
  3287. default: true
  3288. },
  3289. {
  3290. name: "Megamacro",
  3291. height: math.unit(50, "miles")
  3292. },
  3293. {
  3294. name: "Gigamacro",
  3295. height: math.unit(100000, "miles")
  3296. },
  3297. {
  3298. name: "Full-Size",
  3299. height: math.unit(3000000000, "miles")
  3300. }
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(80, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/natalya/front.svg"
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(80, "kg"),
  3317. name: "Back",
  3318. image: {
  3319. source: "./media/characters/natalya/back.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(150, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Megamacro",
  3331. height: math.unit(5, "miles")
  3332. },
  3333. {
  3334. name: "Full-Size",
  3335. height: math.unit(600, "kiloparsecs")
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(50, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/erestrebah/front.svg",
  3348. extra: 208 / 193,
  3349. bottom: 0.055
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(50, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/erestrebah/back.svg",
  3358. extra: 1.3
  3359. }
  3360. }
  3361. },
  3362. [
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(10, "feet")
  3366. },
  3367. {
  3368. name: "Large",
  3369. height: math.unit(50, "feet"),
  3370. default: true
  3371. },
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(300, "feet")
  3375. },
  3376. {
  3377. name: "Macro+",
  3378. height: math.unit(750, "feet")
  3379. },
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(3, "miles")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(80, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/jennifer/front.svg",
  3395. bottom: 0.11,
  3396. extra: 1.16
  3397. }
  3398. },
  3399. frontAlt: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(80, "kg"),
  3402. name: "Front (Alt)",
  3403. image: {
  3404. source: "./media/characters/jennifer/front-alt.svg"
  3405. }
  3406. }
  3407. },
  3408. [
  3409. {
  3410. name: "Canon Height",
  3411. height: math.unit(120, "feet"),
  3412. default: true
  3413. },
  3414. {
  3415. name: "Macro+",
  3416. height: math.unit(300, "feet")
  3417. },
  3418. {
  3419. name: "Megamacro",
  3420. height: math.unit(20000, "feet")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(50, "kg"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/kalista/front.svg",
  3433. extra: 1947 / 1700,
  3434. bottom: 76.6 / 1412.98
  3435. }
  3436. },
  3437. back: {
  3438. height: math.unit(2, "meter"),
  3439. weight: math.unit(50, "kg"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/kalista/back.svg",
  3443. extra: 1366 / 1156,
  3444. bottom: 33.9 / 1362.78
  3445. }
  3446. }
  3447. },
  3448. [
  3449. {
  3450. name: "Uncomfortably Small",
  3451. height: math.unit(10, "feet")
  3452. },
  3453. {
  3454. name: "Small",
  3455. height: math.unit(30, "feet")
  3456. },
  3457. {
  3458. name: "Macro",
  3459. height: math.unit(100, "feet"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Macro+",
  3464. height: math.unit(2000, "feet")
  3465. },
  3466. {
  3467. name: "True Form",
  3468. height: math.unit(8924, "miles")
  3469. }
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(120, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/ggv/front.svg"
  3481. }
  3482. },
  3483. side: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(120, "kg"),
  3486. name: "Side",
  3487. image: {
  3488. source: "./media/characters/ggv/side.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Extremely Puny",
  3495. height: math.unit(9 + 5 / 12, "feet")
  3496. },
  3497. {
  3498. name: "Horribly Small",
  3499. height: math.unit(47.7, "miles"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Reasonably Sized",
  3504. height: math.unit(25000, "parsecs")
  3505. },
  3506. {
  3507. name: "Slightly Uncompressed",
  3508. height: math.unit(7.77e31, "parsecs")
  3509. },
  3510. {
  3511. name: "Omniversal",
  3512. height: math.unit(1e300, "meters")
  3513. },
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(75, "lb"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/napalm/front.svg"
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(75, "lb"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/napalm/back.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Standard",
  3539. height: math.unit(55, "feet"),
  3540. default: true
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(7 + 5 / 6, "feet"),
  3549. weight: math.unit(325, "lb"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/asana/front.svg",
  3553. extra: 1133 / 1060,
  3554. bottom: 15.2 / 1148.6
  3555. }
  3556. },
  3557. back: {
  3558. height: math.unit(7 + 5 / 6, "feet"),
  3559. weight: math.unit(325, "lb"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/asana/back.svg",
  3563. extra: 1114 / 1043,
  3564. bottom: 5 / 1120
  3565. }
  3566. },
  3567. dressedDark: {
  3568. height: math.unit(7 + 5 / 6, "feet"),
  3569. weight: math.unit(325, "lb"),
  3570. name: "Dressed (Dark)",
  3571. image: {
  3572. source: "./media/characters/asana/dressed-dark.svg",
  3573. extra: 1133 / 1060,
  3574. bottom: 15.2 / 1148.6
  3575. }
  3576. },
  3577. dressedLight: {
  3578. height: math.unit(7 + 5 / 6, "feet"),
  3579. weight: math.unit(325, "lb"),
  3580. name: "Dressed (Light)",
  3581. image: {
  3582. source: "./media/characters/asana/dressed-light.svg",
  3583. extra: 1133 / 1060,
  3584. bottom: 15.2 / 1148.6
  3585. }
  3586. },
  3587. },
  3588. [
  3589. {
  3590. name: "Standard",
  3591. height: math.unit(7 + 5 / 6, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Large",
  3596. height: math.unit(10, "meters")
  3597. },
  3598. {
  3599. name: "Macro",
  3600. height: math.unit(2500, "meters")
  3601. },
  3602. {
  3603. name: "Megamacro",
  3604. height: math.unit(5e6, "meters")
  3605. },
  3606. {
  3607. name: "Examacro",
  3608. height: math.unit(5e12, "lightyears")
  3609. },
  3610. {
  3611. name: "Max Size",
  3612. height: math.unit(1e31, "lightyears")
  3613. }
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3618. {
  3619. front: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(60, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/ebony/front.svg",
  3625. bottom: 0.03,
  3626. extra: 1045 / 810 + 0.03
  3627. }
  3628. },
  3629. side: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(60, "kg"),
  3632. name: "Side",
  3633. image: {
  3634. source: "./media/characters/ebony/side.svg",
  3635. bottom: 0.03,
  3636. extra: 1045 / 810 + 0.03
  3637. }
  3638. },
  3639. back: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(60, "kg"),
  3642. name: "Back",
  3643. image: {
  3644. source: "./media/characters/ebony/back.svg",
  3645. bottom: 0.01,
  3646. extra: 1045 / 810 + 0.01
  3647. }
  3648. },
  3649. },
  3650. [
  3651. // TODO check why I did this lol
  3652. {
  3653. name: "Standard",
  3654. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3655. default: true
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(200, "feet")
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(13000, "km")
  3664. }
  3665. ]
  3666. ))
  3667. characterMakers.push(() => makeCharacter(
  3668. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3669. {
  3670. front: {
  3671. height: math.unit(6, "feet"),
  3672. weight: math.unit(175, "lb"),
  3673. name: "Front",
  3674. image: {
  3675. source: "./media/characters/mountain/front.svg",
  3676. extra: 972 / 955,
  3677. bottom: 64 / 1036.6
  3678. }
  3679. },
  3680. back: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(175, "lb"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/mountain/back.svg",
  3686. extra: 970 / 950,
  3687. bottom: 28.25 / 999
  3688. }
  3689. },
  3690. },
  3691. [
  3692. {
  3693. name: "Large",
  3694. height: math.unit(20, "meters")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(300, "meters")
  3699. },
  3700. {
  3701. name: "Gigamacro",
  3702. height: math.unit(10000, "km"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Examacro",
  3707. height: math.unit(10e9, "lightyears")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(8, "feet"),
  3716. weight: math.unit(500, "lb"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/rick/front.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Normal",
  3726. height: math.unit(8, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(5, "km")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(8, "feet"),
  3740. weight: math.unit(120, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/ona/front.svg"
  3744. }
  3745. },
  3746. frontAlt: {
  3747. height: math.unit(8, "feet"),
  3748. weight: math.unit(120, "lb"),
  3749. name: "Front (Alt)",
  3750. image: {
  3751. source: "./media/characters/ona/front-alt.svg"
  3752. }
  3753. },
  3754. back: {
  3755. height: math.unit(8, "feet"),
  3756. weight: math.unit(120, "lb"),
  3757. name: "Back",
  3758. image: {
  3759. source: "./media/characters/ona/back.svg"
  3760. }
  3761. },
  3762. foot: {
  3763. height: math.unit(1.1, "feet"),
  3764. name: "Foot",
  3765. image: {
  3766. source: "./media/characters/ona/foot.svg"
  3767. }
  3768. }
  3769. },
  3770. [
  3771. {
  3772. name: "Megamacro",
  3773. height: math.unit(70, "km"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Gigamacro",
  3778. height: math.unit(681818, "miles")
  3779. },
  3780. {
  3781. name: "Examacro",
  3782. height: math.unit(3800000, "lightyears")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(12, "feet"),
  3791. weight: math.unit(3000, "lb"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/mech/front.svg",
  3795. extra: 2900 / 2770,
  3796. bottom: 110 / 3010
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(12, "feet"),
  3801. weight: math.unit(3000, "lb"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/mech/back.svg",
  3805. extra: 3011 / 2890,
  3806. bottom: 94 / 3105
  3807. }
  3808. },
  3809. maw: {
  3810. height: math.unit(3.07, "feet"),
  3811. name: "Maw",
  3812. image: {
  3813. source: "./media/characters/mech/maw.svg"
  3814. }
  3815. },
  3816. head: {
  3817. height: math.unit(2.82, "feet"),
  3818. name: "Head",
  3819. image: {
  3820. source: "./media/characters/mech/head.svg"
  3821. }
  3822. },
  3823. dick: {
  3824. height: math.unit(1.43, "feet"),
  3825. name: "Dick",
  3826. image: {
  3827. source: "./media/characters/mech/dick.svg"
  3828. }
  3829. },
  3830. },
  3831. [
  3832. {
  3833. name: "Normal",
  3834. height: math.unit(12, "feet")
  3835. },
  3836. {
  3837. name: "Macro",
  3838. height: math.unit(300, "feet"),
  3839. default: true
  3840. },
  3841. {
  3842. name: "Macro+",
  3843. height: math.unit(1500, "feet")
  3844. },
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(1.3, "meter"),
  3852. weight: math.unit(30, "kg"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/gregory/front.svg",
  3856. }
  3857. }
  3858. },
  3859. [
  3860. {
  3861. name: "Normal",
  3862. height: math.unit(1.3, "meter"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro",
  3867. height: math.unit(20, "meter")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2.8, "meter"),
  3876. weight: math.unit(200, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/elory/front.svg",
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(2.8, "meter"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(38, "meter")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(470, "feet"),
  3900. weight: math.unit(924, "tons"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/angelpatamon/front.svg",
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(470, "feet"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Deity Size I",
  3915. height: math.unit(28651.2, "km")
  3916. },
  3917. {
  3918. name: "Deity Size II",
  3919. height: math.unit(171907.2, "km")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3925. {
  3926. side: {
  3927. height: math.unit(7.2, "meter"),
  3928. weight: math.unit(8.2, "tons"),
  3929. name: "Side",
  3930. image: {
  3931. source: "./media/characters/cryae/side.svg",
  3932. extra: 3500 / 1500
  3933. }
  3934. }
  3935. },
  3936. [
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(7.2, "meter"),
  3940. default: true
  3941. }
  3942. ]
  3943. ))
  3944. characterMakers.push(() => makeCharacter(
  3945. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3946. {
  3947. front: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(175, "lb"),
  3950. name: "Front",
  3951. image: {
  3952. source: "./media/characters/xera/front.svg",
  3953. extra: 2377 / 1972,
  3954. bottom: 75.5 / 2452
  3955. }
  3956. },
  3957. side: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(175, "lb"),
  3960. name: "Side",
  3961. image: {
  3962. source: "./media/characters/xera/side.svg",
  3963. extra: 2345 / 2019,
  3964. bottom: 39.7 / 2384
  3965. }
  3966. },
  3967. back: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(175, "lb"),
  3970. name: "Back",
  3971. image: {
  3972. source: "./media/characters/xera/back.svg",
  3973. extra: 2095 / 1984,
  3974. bottom: 67 / 2166
  3975. }
  3976. },
  3977. },
  3978. [
  3979. {
  3980. name: "Small",
  3981. height: math.unit(10, "feet")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(500, "meters"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Macro+",
  3990. height: math.unit(10, "km")
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(25000, "km")
  3995. },
  3996. {
  3997. name: "Teramacro",
  3998. height: math.unit(3e6, "km")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(175, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/nebula/front.svg",
  4011. extra: 2566 / 2362,
  4012. bottom: 81 / 2644
  4013. }
  4014. }
  4015. },
  4016. [
  4017. {
  4018. name: "Small",
  4019. height: math.unit(4.5, "meters")
  4020. },
  4021. {
  4022. name: "Macro",
  4023. height: math.unit(1500, "meters"),
  4024. default: true
  4025. },
  4026. {
  4027. name: "Megamacro",
  4028. height: math.unit(150, "km")
  4029. },
  4030. {
  4031. name: "Gigamacro",
  4032. height: math.unit(27000, "km")
  4033. }
  4034. ]
  4035. ))
  4036. characterMakers.push(() => makeCharacter(
  4037. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4038. {
  4039. front: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(225, "lb"),
  4042. name: "Front",
  4043. image: {
  4044. source: "./media/characters/abysgar/front.svg"
  4045. }
  4046. }
  4047. },
  4048. [
  4049. {
  4050. name: "Small",
  4051. height: math.unit(4.5, "meters")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(1250, "meters"),
  4056. default: true
  4057. },
  4058. {
  4059. name: "Megamacro",
  4060. height: math.unit(125, "km")
  4061. },
  4062. {
  4063. name: "Gigamacro",
  4064. height: math.unit(26000, "km")
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(180, "lb"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/yakuz/front.svg"
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Small",
  4083. height: math.unit(5, "meters")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(1500, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(200, "km")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(100000, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/mirova/front.svg",
  4109. extra: 3334 / 3071,
  4110. bottom: 42 / 3375.6
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Small",
  4117. height: math.unit(5, "meters")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(900, "meters"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(135, "km")
  4127. },
  4128. {
  4129. name: "Gigamacro",
  4130. height: math.unit(20000, "km")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4136. {
  4137. side: {
  4138. height: math.unit(28.35, "feet"),
  4139. weight: math.unit(99.75, "tons"),
  4140. name: "Side",
  4141. image: {
  4142. source: "./media/characters/asana-mech/side.svg",
  4143. extra: 923 / 699,
  4144. bottom: 50 / 975
  4145. }
  4146. },
  4147. chaingun: {
  4148. height: math.unit(7, "feet"),
  4149. weight: math.unit(2400, "lb"),
  4150. name: "Chaingun",
  4151. image: {
  4152. source: "./media/characters/asana-mech/chaingun.svg"
  4153. }
  4154. },
  4155. laser: {
  4156. height: math.unit(7.12, "feet"),
  4157. weight: math.unit(2000, "lb"),
  4158. name: "Laser",
  4159. image: {
  4160. source: "./media/characters/asana-mech/laser.svg"
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(28.35, "feet"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(2500, "feet")
  4173. },
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(25, "miles")
  4177. },
  4178. {
  4179. name: "Examacro",
  4180. height: math.unit(6e8, "lightyears")
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(5, "meters"),
  4189. weight: math.unit(1000, "kg"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/asche/front.svg",
  4193. extra: 1258 / 1190,
  4194. bottom: 47 / 1305
  4195. }
  4196. },
  4197. frontUnderwear: {
  4198. height: math.unit(5, "meters"),
  4199. weight: math.unit(1000, "kg"),
  4200. name: "Front (Underwear)",
  4201. image: {
  4202. source: "./media/characters/asche/front-underwear.svg",
  4203. extra: 1258 / 1190,
  4204. bottom: 47 / 1305
  4205. }
  4206. },
  4207. frontDressed: {
  4208. height: math.unit(5, "meters"),
  4209. weight: math.unit(1000, "kg"),
  4210. name: "Front (Dressed)",
  4211. image: {
  4212. source: "./media/characters/asche/front-dressed.svg",
  4213. extra: 1258 / 1190,
  4214. bottom: 47 / 1305
  4215. }
  4216. },
  4217. frontArmor: {
  4218. height: math.unit(5, "meters"),
  4219. weight: math.unit(1000, "kg"),
  4220. name: "Front (Armored)",
  4221. image: {
  4222. source: "./media/characters/asche/front-armored.svg",
  4223. extra: 1374 / 1308,
  4224. bottom: 23 / 1397
  4225. }
  4226. },
  4227. mp724: {
  4228. height: math.unit(0.96, "meters"),
  4229. weight: math.unit(38, "kg"),
  4230. name: "H&K MP724",
  4231. image: {
  4232. source: "./media/characters/asche/h&k-mp724.svg"
  4233. }
  4234. },
  4235. side: {
  4236. height: math.unit(5, "meters"),
  4237. weight: math.unit(1000, "kg"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/asche/side.svg",
  4241. extra: 1717 / 1609,
  4242. bottom: 0.005
  4243. }
  4244. },
  4245. back: {
  4246. height: math.unit(5, "meters"),
  4247. weight: math.unit(1000, "kg"),
  4248. name: "Back",
  4249. image: {
  4250. source: "./media/characters/asche/back.svg",
  4251. extra: 1570 / 1501
  4252. }
  4253. },
  4254. },
  4255. [
  4256. {
  4257. name: "DEFCON 5",
  4258. height: math.unit(5, "meters")
  4259. },
  4260. {
  4261. name: "DEFCON 4",
  4262. height: math.unit(500, "meters"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "DEFCON 3",
  4267. height: math.unit(5, "km")
  4268. },
  4269. {
  4270. name: "DEFCON 2",
  4271. height: math.unit(500, "km")
  4272. },
  4273. {
  4274. name: "DEFCON 1",
  4275. height: math.unit(500000, "km")
  4276. },
  4277. {
  4278. name: "DEFCON 0",
  4279. height: math.unit(3, "gigaparsecs")
  4280. },
  4281. ]
  4282. ))
  4283. characterMakers.push(() => makeCharacter(
  4284. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4285. {
  4286. front: {
  4287. height: math.unit(2, "meters"),
  4288. weight: math.unit(76, "kg"),
  4289. name: "Front",
  4290. image: {
  4291. source: "./media/characters/gale/front.svg"
  4292. }
  4293. },
  4294. frontAlt1: {
  4295. height: math.unit(2, "meters"),
  4296. weight: math.unit(76, "kg"),
  4297. name: "Front (Alt 1)",
  4298. image: {
  4299. source: "./media/characters/gale/front-alt-1.svg"
  4300. }
  4301. },
  4302. frontAlt2: {
  4303. height: math.unit(2, "meters"),
  4304. weight: math.unit(76, "kg"),
  4305. name: "Front (Alt 2)",
  4306. image: {
  4307. source: "./media/characters/gale/front-alt-2.svg"
  4308. }
  4309. },
  4310. },
  4311. [
  4312. {
  4313. name: "Normal",
  4314. height: math.unit(7, "feet")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(150, "feet"),
  4319. default: true
  4320. },
  4321. {
  4322. name: "Macro+",
  4323. height: math.unit(300, "feet")
  4324. },
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4329. {
  4330. front: {
  4331. height: math.unit(2, "meters"),
  4332. weight: math.unit(76, "kg"),
  4333. name: "Front",
  4334. image: {
  4335. source: "./media/characters/draylen/front.svg"
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(150, "feet"),
  4343. default: true
  4344. }
  4345. ]
  4346. ))
  4347. characterMakers.push(() => makeCharacter(
  4348. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4349. {
  4350. front: {
  4351. height: math.unit(7 + 9 / 12, "feet"),
  4352. weight: math.unit(379, "lbs"),
  4353. name: "Front",
  4354. image: {
  4355. source: "./media/characters/chez/front.svg"
  4356. }
  4357. },
  4358. side: {
  4359. height: math.unit(7 + 9 / 12, "feet"),
  4360. weight: math.unit(379, "lbs"),
  4361. name: "Side",
  4362. image: {
  4363. source: "./media/characters/chez/side.svg"
  4364. }
  4365. }
  4366. },
  4367. [
  4368. {
  4369. name: "Normal",
  4370. height: math.unit(7 + 9 / 12, "feet"),
  4371. default: true
  4372. },
  4373. {
  4374. name: "God King",
  4375. height: math.unit(9750000, "meters")
  4376. }
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4381. {
  4382. front: {
  4383. height: math.unit(6, "feet"),
  4384. weight: math.unit(275, "lbs"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/kaylum/front.svg",
  4388. bottom: 0.01,
  4389. extra: 1166 / 1031
  4390. }
  4391. },
  4392. frontWingless: {
  4393. height: math.unit(6, "feet"),
  4394. weight: math.unit(275, "lbs"),
  4395. name: "Front (Wingless)",
  4396. image: {
  4397. source: "./media/characters/kaylum/front-wingless.svg",
  4398. bottom: 0.01,
  4399. extra: 1117 / 1031
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(3.05, "meters")
  4407. },
  4408. {
  4409. name: "Master",
  4410. height: math.unit(5.5, "meters")
  4411. },
  4412. {
  4413. name: "Rampage",
  4414. height: math.unit(19, "meters")
  4415. },
  4416. {
  4417. name: "Macro Lite",
  4418. height: math.unit(37, "meters")
  4419. },
  4420. {
  4421. name: "Hyper Predator",
  4422. height: math.unit(61, "meters")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(138, "meters"),
  4427. default: true
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(150, "lbs"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/geta/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Micro",
  4446. height: math.unit(3, "inches"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(5 + 5 / 12, "feet")
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(300, "lbs"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/tyrnn/front.svg"
  4464. }
  4465. }
  4466. },
  4467. [
  4468. {
  4469. name: "Main Height",
  4470. height: math.unit(355, "feet"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Fave. Height",
  4475. height: math.unit(2400, "feet")
  4476. }
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(6, "feet"),
  4484. weight: math.unit(300, "lbs"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/appledectomy/front.svg"
  4488. }
  4489. }
  4490. },
  4491. [
  4492. {
  4493. name: "Macro",
  4494. height: math.unit(2500, "feet")
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(50, "miles"),
  4499. default: true
  4500. },
  4501. {
  4502. name: "Gigamacro",
  4503. height: math.unit(5000, "miles")
  4504. },
  4505. {
  4506. name: "Teramacro",
  4507. height: math.unit(250000, "miles")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(200, "lbs"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/vulpes/front.svg",
  4520. extra: 573 / 543,
  4521. bottom: 0.033
  4522. }
  4523. },
  4524. side: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(200, "lbs"),
  4527. name: "Side",
  4528. image: {
  4529. source: "./media/characters/vulpes/side.svg",
  4530. extra: 577 / 549,
  4531. bottom: 11 / 588
  4532. }
  4533. },
  4534. back: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(200, "lbs"),
  4537. name: "Back",
  4538. image: {
  4539. source: "./media/characters/vulpes/back.svg",
  4540. extra: 573 / 549,
  4541. bottom: 20 / 593
  4542. }
  4543. },
  4544. feet: {
  4545. height: math.unit(1.276, "feet"),
  4546. name: "Feet",
  4547. image: {
  4548. source: "./media/characters/vulpes/feet.svg"
  4549. }
  4550. },
  4551. maw: {
  4552. height: math.unit(1.18, "feet"),
  4553. name: "Maw",
  4554. image: {
  4555. source: "./media/characters/vulpes/maw.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Micro",
  4562. height: math.unit(2, "inches")
  4563. },
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(6.3, "feet")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(850, "feet")
  4571. },
  4572. {
  4573. name: "Megamacro",
  4574. height: math.unit(7500, "feet"),
  4575. default: true
  4576. },
  4577. {
  4578. name: "Gigamacro",
  4579. height: math.unit(570000, "miles")
  4580. }
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4585. {
  4586. front: {
  4587. height: math.unit(6, "feet"),
  4588. weight: math.unit(210, "lbs"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/rain-fallen/front.svg"
  4592. }
  4593. },
  4594. side: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(210, "lbs"),
  4597. name: "Side",
  4598. image: {
  4599. source: "./media/characters/rain-fallen/side.svg"
  4600. }
  4601. },
  4602. back: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(210, "lbs"),
  4605. name: "Back",
  4606. image: {
  4607. source: "./media/characters/rain-fallen/back.svg"
  4608. }
  4609. },
  4610. feral: {
  4611. height: math.unit(9, "feet"),
  4612. weight: math.unit(700, "lbs"),
  4613. name: "Feral",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/feral.svg"
  4616. }
  4617. },
  4618. },
  4619. [
  4620. {
  4621. name: "Meddling with Mortals",
  4622. height: math.unit(8 + 8/12, "feet")
  4623. },
  4624. {
  4625. name: "Normal",
  4626. height: math.unit(5, "meter")
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(150, "meter"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Megamacro",
  4635. height: math.unit(278e6, "meter")
  4636. },
  4637. {
  4638. name: "Gigamacro",
  4639. height: math.unit(2e9, "meter")
  4640. },
  4641. {
  4642. name: "Teramacro",
  4643. height: math.unit(8e12, "meter")
  4644. },
  4645. {
  4646. name: "Devourer",
  4647. height: math.unit(14, "zettameters")
  4648. },
  4649. {
  4650. name: "Scarlet King",
  4651. height: math.unit(18, "yottameters")
  4652. },
  4653. {
  4654. name: "Void",
  4655. height: math.unit(1e88, "yottameters")
  4656. }
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4661. {
  4662. standing: {
  4663. height: math.unit(6, "feet"),
  4664. weight: math.unit(180, "lbs"),
  4665. name: "Standing",
  4666. image: {
  4667. source: "./media/characters/zaakira/standing.svg",
  4668. extra: 1599/1504,
  4669. bottom: 39/1638
  4670. }
  4671. },
  4672. laying: {
  4673. height: math.unit(3, "feet"),
  4674. weight: math.unit(180, "lbs"),
  4675. name: "Laying",
  4676. image: {
  4677. source: "./media/characters/zaakira/laying.svg"
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(12, "feet")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(279, "feet"),
  4689. default: true
  4690. }
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4695. {
  4696. femSfw: {
  4697. height: math.unit(8, "feet"),
  4698. weight: math.unit(350, "lb"),
  4699. name: "Fem",
  4700. image: {
  4701. source: "./media/characters/sigvald/fem-sfw.svg",
  4702. extra: 182 / 164,
  4703. bottom: 8.7 / 190.5
  4704. }
  4705. },
  4706. femNsfw: {
  4707. height: math.unit(8, "feet"),
  4708. weight: math.unit(350, "lb"),
  4709. name: "Fem (NSFW)",
  4710. image: {
  4711. source: "./media/characters/sigvald/fem-nsfw.svg",
  4712. extra: 182 / 164,
  4713. bottom: 8.7 / 190.5
  4714. }
  4715. },
  4716. maleNsfw: {
  4717. height: math.unit(8, "feet"),
  4718. weight: math.unit(350, "lb"),
  4719. name: "Male (NSFW)",
  4720. image: {
  4721. source: "./media/characters/sigvald/male-nsfw.svg",
  4722. extra: 182 / 164,
  4723. bottom: 8.7 / 190.5
  4724. }
  4725. },
  4726. hermNsfw: {
  4727. height: math.unit(8, "feet"),
  4728. weight: math.unit(350, "lb"),
  4729. name: "Herm (NSFW)",
  4730. image: {
  4731. source: "./media/characters/sigvald/herm-nsfw.svg",
  4732. extra: 182 / 164,
  4733. bottom: 8.7 / 190.5
  4734. }
  4735. },
  4736. dick: {
  4737. height: math.unit(2.36, "feet"),
  4738. name: "Dick",
  4739. image: {
  4740. source: "./media/characters/sigvald/dick.svg"
  4741. }
  4742. },
  4743. eye: {
  4744. height: math.unit(0.31, "feet"),
  4745. name: "Eye",
  4746. image: {
  4747. source: "./media/characters/sigvald/eye.svg"
  4748. }
  4749. },
  4750. mouth: {
  4751. height: math.unit(0.92, "feet"),
  4752. name: "Mouth",
  4753. image: {
  4754. source: "./media/characters/sigvald/mouth.svg"
  4755. }
  4756. },
  4757. paws: {
  4758. height: math.unit(2.2, "feet"),
  4759. name: "Paws",
  4760. image: {
  4761. source: "./media/characters/sigvald/paws.svg"
  4762. }
  4763. }
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(8, "feet")
  4769. },
  4770. {
  4771. name: "Large",
  4772. height: math.unit(12, "feet")
  4773. },
  4774. {
  4775. name: "Larger",
  4776. height: math.unit(20, "feet")
  4777. },
  4778. {
  4779. name: "Macro",
  4780. height: math.unit(150, "feet")
  4781. },
  4782. {
  4783. name: "Macro+",
  4784. height: math.unit(200, "feet"),
  4785. default: true
  4786. },
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4791. {
  4792. side: {
  4793. height: math.unit(12, "feet"),
  4794. weight: math.unit(2000, "kg"),
  4795. name: "Side",
  4796. image: {
  4797. source: "./media/characters/scott/side.svg",
  4798. extra: 754 / 724,
  4799. bottom: 0.069
  4800. }
  4801. },
  4802. upright: {
  4803. height: math.unit(12, "feet"),
  4804. weight: math.unit(2000, "kg"),
  4805. name: "Upright",
  4806. image: {
  4807. source: "./media/characters/scott/upright.svg",
  4808. extra: 3881 / 3722,
  4809. bottom: 0.05
  4810. }
  4811. },
  4812. },
  4813. [
  4814. {
  4815. name: "Normal",
  4816. height: math.unit(12, "feet"),
  4817. default: true
  4818. },
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4823. {
  4824. side: {
  4825. height: math.unit(8, "meters"),
  4826. weight: math.unit(84755, "lbs"),
  4827. name: "Side",
  4828. image: {
  4829. source: "./media/characters/tobias/side.svg",
  4830. extra: 1474 / 1096,
  4831. bottom: 38.9 / 1513.1235
  4832. }
  4833. },
  4834. },
  4835. [
  4836. {
  4837. name: "Normal",
  4838. height: math.unit(8, "meters"),
  4839. default: true
  4840. },
  4841. ]
  4842. ))
  4843. characterMakers.push(() => makeCharacter(
  4844. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4845. {
  4846. front: {
  4847. height: math.unit(5.5, "feet"),
  4848. weight: math.unit(400, "lbs"),
  4849. name: "Front",
  4850. image: {
  4851. source: "./media/characters/kieran/front.svg",
  4852. extra: 2694 / 2364,
  4853. bottom: 217 / 2908
  4854. }
  4855. },
  4856. side: {
  4857. height: math.unit(5.5, "feet"),
  4858. weight: math.unit(400, "lbs"),
  4859. name: "Side",
  4860. image: {
  4861. source: "./media/characters/kieran/side.svg",
  4862. extra: 875 / 777,
  4863. bottom: 84.6 / 959
  4864. }
  4865. },
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(5.5, "feet"),
  4871. default: true
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4877. {
  4878. side: {
  4879. height: math.unit(2, "meters"),
  4880. weight: math.unit(70, "kg"),
  4881. name: "Side",
  4882. image: {
  4883. source: "./media/characters/sanya/side.svg",
  4884. bottom: 0.02,
  4885. extra: 1.02
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Small",
  4892. height: math.unit(2, "meters")
  4893. },
  4894. {
  4895. name: "Normal",
  4896. height: math.unit(3, "meters")
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(16, "meters"),
  4901. default: true
  4902. },
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(2, "meters"),
  4910. weight: math.unit(120, "kg"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/miranda/front.svg",
  4914. extra: 195 / 185,
  4915. bottom: 10.9 / 206.5
  4916. }
  4917. },
  4918. back: {
  4919. height: math.unit(2, "meters"),
  4920. weight: math.unit(120, "kg"),
  4921. name: "Back",
  4922. image: {
  4923. source: "./media/characters/miranda/back.svg",
  4924. extra: 201 / 193,
  4925. bottom: 2.3 / 203.7
  4926. }
  4927. },
  4928. },
  4929. [
  4930. {
  4931. name: "Normal",
  4932. height: math.unit(10, "feet"),
  4933. default: true
  4934. }
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "James", species: ["deer"], tags: ["anthro"] },
  4939. {
  4940. side: {
  4941. height: math.unit(2, "meters"),
  4942. weight: math.unit(100, "kg"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/james/front.svg",
  4946. extra: 10 / 8.5
  4947. }
  4948. },
  4949. },
  4950. [
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(8.5, "feet"),
  4954. default: true
  4955. }
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4960. {
  4961. side: {
  4962. height: math.unit(9.5, "feet"),
  4963. weight: math.unit(2500, "lbs"),
  4964. name: "Side",
  4965. image: {
  4966. source: "./media/characters/heather/side.svg"
  4967. }
  4968. },
  4969. },
  4970. [
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(9.5, "feet"),
  4974. default: true
  4975. }
  4976. ]
  4977. ))
  4978. characterMakers.push(() => makeCharacter(
  4979. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4980. {
  4981. side: {
  4982. height: math.unit(6.5, "feet"),
  4983. weight: math.unit(400, "lbs"),
  4984. name: "Side",
  4985. image: {
  4986. source: "./media/characters/lukas/side.svg",
  4987. extra: 7.25 / 6.5
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(6.5, "feet"),
  4995. default: true
  4996. }
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5001. {
  5002. side: {
  5003. height: math.unit(5, "feet"),
  5004. weight: math.unit(3000, "lbs"),
  5005. name: "Side",
  5006. image: {
  5007. source: "./media/characters/louise/side.svg"
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(5, "feet"),
  5015. default: true
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5021. {
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(150, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/ramona/side.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(5.3, "meters"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Macro",
  5039. height: math.unit(20, "stories")
  5040. },
  5041. {
  5042. name: "Macro+",
  5043. height: math.unit(50, "stories")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5049. {
  5050. standing: {
  5051. height: math.unit(5.75, "feet"),
  5052. weight: math.unit(160, "lbs"),
  5053. name: "Standing",
  5054. image: {
  5055. source: "./media/characters/deerpuff/standing.svg",
  5056. extra: 682 / 624
  5057. }
  5058. },
  5059. sitting: {
  5060. height: math.unit(5.75 / 1.79, "feet"),
  5061. weight: math.unit(160, "lbs"),
  5062. name: "Sitting",
  5063. image: {
  5064. source: "./media/characters/deerpuff/sitting.svg",
  5065. bottom: 44 / 400,
  5066. extra: 1
  5067. }
  5068. },
  5069. taurLaying: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(400, "lbs"),
  5072. name: "Taur (Laying)",
  5073. image: {
  5074. source: "./media/characters/deerpuff/taur-laying.svg"
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Puffball",
  5081. height: math.unit(6, "inches")
  5082. },
  5083. {
  5084. name: "Normalpuff",
  5085. height: math.unit(5.75, "feet")
  5086. },
  5087. {
  5088. name: "Macropuff",
  5089. height: math.unit(1500, "feet"),
  5090. default: true
  5091. },
  5092. {
  5093. name: "Megapuff",
  5094. height: math.unit(500, "miles")
  5095. },
  5096. {
  5097. name: "Gigapuff",
  5098. height: math.unit(250000, "miles")
  5099. },
  5100. {
  5101. name: "Omegapuff",
  5102. height: math.unit(1000, "lightyears")
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5108. {
  5109. stomping: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(170, "lbs"),
  5112. name: "Stomping",
  5113. image: {
  5114. source: "./media/characters/vivian/stomping.svg"
  5115. }
  5116. },
  5117. sitting: {
  5118. height: math.unit(6 / 1.75, "feet"),
  5119. weight: math.unit(170, "lbs"),
  5120. name: "Sitting",
  5121. image: {
  5122. source: "./media/characters/vivian/sitting.svg",
  5123. bottom: 1 / 6.4,
  5124. extra: 1,
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(7, "feet"),
  5132. default: true
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(10, "stories")
  5137. },
  5138. {
  5139. name: "Macro+",
  5140. height: math.unit(30, "stories")
  5141. },
  5142. {
  5143. name: "Megamacro",
  5144. height: math.unit(10, "miles")
  5145. },
  5146. {
  5147. name: "Megamacro+",
  5148. height: math.unit(2750000, "meters")
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5154. {
  5155. front: {
  5156. height: math.unit(6, "feet"),
  5157. weight: math.unit(160, "lbs"),
  5158. name: "Front",
  5159. image: {
  5160. source: "./media/characters/prince/front.svg",
  5161. extra: 3400 / 3000
  5162. }
  5163. },
  5164. jumping: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(160, "lbs"),
  5167. name: "Jumping",
  5168. image: {
  5169. source: "./media/characters/prince/jump.svg",
  5170. extra: 2555 / 2134
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(7.75, "feet"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Not cute",
  5182. height: math.unit(17, "feet")
  5183. },
  5184. {
  5185. name: "I said NOT",
  5186. height: math.unit(91, "feet")
  5187. },
  5188. {
  5189. name: "Please stop",
  5190. height: math.unit(560, "feet")
  5191. },
  5192. {
  5193. name: "What have you done",
  5194. height: math.unit(2200, "feet")
  5195. },
  5196. {
  5197. name: "Deer God",
  5198. height: math.unit(3.6, "miles")
  5199. },
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5204. {
  5205. standing: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(300, "lbs"),
  5208. name: "Standing",
  5209. image: {
  5210. source: "./media/characters/psymon/standing.svg",
  5211. extra: 1888 / 1810,
  5212. bottom: 0.05
  5213. }
  5214. },
  5215. slithering: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(300, "lbs"),
  5218. name: "Slithering",
  5219. image: {
  5220. source: "./media/characters/psymon/slithering.svg",
  5221. extra: 1330 / 1224
  5222. }
  5223. },
  5224. slitheringAlt: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(300, "lbs"),
  5227. name: "Slithering (Alt)",
  5228. image: {
  5229. source: "./media/characters/psymon/slithering-alt.svg",
  5230. extra: 1330 / 1224
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(11.25, "feet"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Large",
  5242. height: math.unit(27, "feet")
  5243. },
  5244. {
  5245. name: "Giant",
  5246. height: math.unit(87, "feet")
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(365, "feet")
  5251. },
  5252. {
  5253. name: "Megamacro",
  5254. height: math.unit(3, "miles")
  5255. },
  5256. {
  5257. name: "World Serpent",
  5258. height: math.unit(8000, "miles")
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5264. {
  5265. front: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(180, "lbs"),
  5268. name: "Front",
  5269. image: {
  5270. source: "./media/characters/daimos/front.svg",
  5271. extra: 4160 / 3897,
  5272. bottom: 0.021
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(8, "feet"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Big Dog",
  5284. height: math.unit(22, "feet")
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(127, "feet")
  5289. },
  5290. {
  5291. name: "Megamacro",
  5292. height: math.unit(3600, "feet")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5298. {
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(180, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/blake/side.svg",
  5305. extra: 1212 / 1120,
  5306. bottom: 0.05
  5307. }
  5308. },
  5309. crouched: {
  5310. height: math.unit(6 * 0.57, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Crouched",
  5313. image: {
  5314. source: "./media/characters/blake/crouched.svg",
  5315. extra: 840 / 587,
  5316. bottom: 0.04
  5317. }
  5318. },
  5319. bent: {
  5320. height: math.unit(6 * 0.75, "feet"),
  5321. weight: math.unit(180, "lbs"),
  5322. name: "Bent",
  5323. image: {
  5324. source: "./media/characters/blake/bent.svg",
  5325. extra: 592 / 544,
  5326. bottom: 0.035
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(8 + 1 / 6, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Big Backside",
  5338. height: math.unit(37, "feet")
  5339. },
  5340. {
  5341. name: "Subway Shredder",
  5342. height: math.unit(72, "feet")
  5343. },
  5344. {
  5345. name: "City Carver",
  5346. height: math.unit(1675, "feet")
  5347. },
  5348. {
  5349. name: "Tectonic Tweaker",
  5350. height: math.unit(2300, "miles")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(180, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/guisetto/front.svg",
  5363. extra: 856 / 817,
  5364. bottom: 0.06
  5365. }
  5366. },
  5367. airborne: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(180, "lbs"),
  5370. name: "Airborne",
  5371. image: {
  5372. source: "./media/characters/guisetto/airborne.svg",
  5373. extra: 584 / 525
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(10 + 11 / 12, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Large",
  5385. height: math.unit(35, "feet")
  5386. },
  5387. {
  5388. name: "Macro",
  5389. height: math.unit(475, "feet")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(180, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/luxor/front.svg",
  5402. extra: 2940 / 2152
  5403. }
  5404. },
  5405. back: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(180, "lbs"),
  5408. name: "Back",
  5409. image: {
  5410. source: "./media/characters/luxor/back.svg",
  5411. extra: 1083 / 960
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(5 + 5 / 6, "feet"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Lamp",
  5423. height: math.unit(50, "feet")
  5424. },
  5425. {
  5426. name: "Lämp",
  5427. height: math.unit(300, "feet")
  5428. },
  5429. {
  5430. name: "The sun is a lamp",
  5431. height: math.unit(250000, "miles")
  5432. },
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(50, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/huoyan/front.svg"
  5444. }
  5445. },
  5446. side: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(180, "lbs"),
  5449. name: "Side",
  5450. image: {
  5451. source: "./media/characters/huoyan/side.svg"
  5452. }
  5453. },
  5454. },
  5455. [
  5456. {
  5457. name: "Chef",
  5458. height: math.unit(9, "feet")
  5459. },
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(65, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(780, "feet")
  5468. },
  5469. {
  5470. name: "Flaming Mountain",
  5471. height: math.unit(4.8, "miles")
  5472. },
  5473. {
  5474. name: "Celestial",
  5475. height: math.unit(765000, "miles")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(5 + 3 / 4, "feet"),
  5484. weight: math.unit(120, "lbs"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/tails/front.svg"
  5488. }
  5489. }
  5490. },
  5491. [
  5492. {
  5493. name: "Normal",
  5494. height: math.unit(5 + 3 / 4, "feet"),
  5495. default: true
  5496. }
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(4, "feet"),
  5504. weight: math.unit(50, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/rainy/front.svg"
  5508. }
  5509. }
  5510. },
  5511. [
  5512. {
  5513. name: "Macro",
  5514. height: math.unit(800, "feet"),
  5515. default: true
  5516. }
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(150, "lbs"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/rainier/front.svg"
  5528. }
  5529. }
  5530. },
  5531. [
  5532. {
  5533. name: "Micro",
  5534. height: math.unit(2, "mm"),
  5535. default: true
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5541. {
  5542. front: {
  5543. height: math.unit(8 + 4/12, "feet"),
  5544. name: "Front",
  5545. image: {
  5546. source: "./media/characters/andy-renard/front.svg",
  5547. extra: 1839/1726,
  5548. bottom: 134/1973
  5549. }
  5550. },
  5551. back: {
  5552. height: math.unit(8 + 4/12, "feet"),
  5553. name: "Back",
  5554. image: {
  5555. source: "./media/characters/andy-renard/back.svg",
  5556. extra: 1838/1710,
  5557. bottom: 105/1943
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Tall",
  5564. height: math.unit(8 + 4/12, "feet")
  5565. },
  5566. {
  5567. name: "Mini Macro",
  5568. height: math.unit(15, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(100, "feet")
  5574. },
  5575. {
  5576. name: "Mega Macro",
  5577. height: math.unit(1000, "feet")
  5578. },
  5579. {
  5580. name: "Giga Macro",
  5581. height: math.unit(10, "miles")
  5582. },
  5583. {
  5584. name: "God Macro",
  5585. height: math.unit(1, "multiverse")
  5586. },
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(210, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/cimmaron/front-sfw.svg",
  5598. extra: 701 / 676,
  5599. bottom: 0.046
  5600. }
  5601. },
  5602. back: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(210, "lbs"),
  5605. name: "Back",
  5606. image: {
  5607. source: "./media/characters/cimmaron/back-sfw.svg",
  5608. extra: 701 / 676,
  5609. bottom: 0.046
  5610. }
  5611. },
  5612. frontNsfw: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(210, "lbs"),
  5615. name: "Front (NSFW)",
  5616. image: {
  5617. source: "./media/characters/cimmaron/front-nsfw.svg",
  5618. extra: 701 / 676,
  5619. bottom: 0.046
  5620. }
  5621. },
  5622. backNsfw: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(210, "lbs"),
  5625. name: "Back (NSFW)",
  5626. image: {
  5627. source: "./media/characters/cimmaron/back-nsfw.svg",
  5628. extra: 701 / 676,
  5629. bottom: 0.046
  5630. }
  5631. },
  5632. dick: {
  5633. height: math.unit(1.714, "feet"),
  5634. name: "Dick",
  5635. image: {
  5636. source: "./media/characters/cimmaron/dick.svg"
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(6, "feet"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Macro Mayor",
  5648. height: math.unit(350, "meters")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5654. {
  5655. front: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(200, "lbs"),
  5658. name: "Front",
  5659. image: {
  5660. source: "./media/characters/akari/front.svg",
  5661. extra: 962 / 901,
  5662. bottom: 0.04
  5663. }
  5664. }
  5665. },
  5666. [
  5667. {
  5668. name: "Micro",
  5669. height: math.unit(5, "inches"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(7, "feet")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(140, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/cynosura/front.svg",
  5687. extra: 896 / 847
  5688. }
  5689. },
  5690. back: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(140, "lbs"),
  5693. name: "Back",
  5694. image: {
  5695. source: "./media/characters/cynosura/back.svg",
  5696. extra: 1365 / 1250
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Micro",
  5703. height: math.unit(4, "inches")
  5704. },
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(5.75, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Tall",
  5712. height: math.unit(10, "feet")
  5713. },
  5714. {
  5715. name: "Big",
  5716. height: math.unit(20, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(50, "feet")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(13 + 2/12, "feet"),
  5729. weight: math.unit(800, "kg"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/gin/front.svg",
  5733. extra: 1312/1191,
  5734. bottom: 45/1357
  5735. }
  5736. },
  5737. mouth: {
  5738. height: math.unit(2.39 * 1.8, "feet"),
  5739. name: "Mouth",
  5740. image: {
  5741. source: "./media/characters/gin/mouth.svg"
  5742. }
  5743. },
  5744. hand: {
  5745. height: math.unit(1.57 * 2.19, "feet"),
  5746. name: "Hand",
  5747. image: {
  5748. source: "./media/characters/gin/hand.svg"
  5749. }
  5750. },
  5751. foot: {
  5752. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5753. name: "Foot",
  5754. image: {
  5755. source: "./media/characters/gin/foot.svg"
  5756. }
  5757. },
  5758. sole: {
  5759. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5760. name: "Sole",
  5761. image: {
  5762. source: "./media/characters/gin/sole.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Very Small",
  5769. height: math.unit(13 + 2 / 12, "feet")
  5770. },
  5771. {
  5772. name: "Micro",
  5773. height: math.unit(600, "miles")
  5774. },
  5775. {
  5776. name: "Regular",
  5777. height: math.unit(20, "earths"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(2.2, "solarradii")
  5783. },
  5784. {
  5785. name: "Teramacro",
  5786. height: math.unit(1.2, "galaxies")
  5787. },
  5788. {
  5789. name: "Omegamacro",
  5790. height: math.unit(200, "universes")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6 + 1 / 6, "feet"),
  5799. weight: math.unit(178, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/guy/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(6 + 1 / 6, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Large",
  5814. height: math.unit(25 + 7 / 12, "feet")
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(60 + 9 / 12, "feet")
  5819. },
  5820. {
  5821. name: "Macro+",
  5822. height: math.unit(246, "feet")
  5823. },
  5824. {
  5825. name: "Macro++",
  5826. height: math.unit(878, "feet")
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(9, "feet"),
  5835. weight: math.unit(800, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/tiberius/front.svg",
  5839. extra: 2295 / 2071
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(9, "feet"),
  5844. weight: math.unit(800, "lbs"),
  5845. name: "Back",
  5846. image: {
  5847. source: "./media/characters/tiberius/back.svg",
  5848. extra: 2373 / 2160
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(9, "feet"),
  5856. default: true
  5857. }
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5862. {
  5863. front: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(600, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/surgo/front.svg",
  5869. extra: 3591 / 2227
  5870. }
  5871. },
  5872. back: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(600, "lbs"),
  5875. name: "Back",
  5876. image: {
  5877. source: "./media/characters/surgo/back.svg",
  5878. extra: 3557 / 2228
  5879. }
  5880. },
  5881. laying: {
  5882. height: math.unit(6 * 0.85, "feet"),
  5883. weight: math.unit(600, "lbs"),
  5884. name: "Laying",
  5885. image: {
  5886. source: "./media/characters/surgo/laying.svg"
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(6, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5900. {
  5901. side: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(150, "lbs"),
  5904. name: "Side",
  5905. image: {
  5906. source: "./media/characters/cibus/side.svg",
  5907. extra: 800 / 400
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(6, "feet"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(240, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/nibbles/front.svg"
  5928. }
  5929. },
  5930. side: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(240, "lbs"),
  5933. name: "Side",
  5934. image: {
  5935. source: "./media/characters/nibbles/side.svg"
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(9, "feet"),
  5943. default: true
  5944. }
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5949. {
  5950. side: {
  5951. height: math.unit(5 + 1 / 6, "feet"),
  5952. weight: math.unit(130, "lbs"),
  5953. name: "Side",
  5954. image: {
  5955. source: "./media/characters/rikky/side.svg",
  5956. extra: 851 / 801
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Normal",
  5963. height: math.unit(5 + 1 / 6, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(152, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Megamacro",
  5972. height: math.unit(7, "miles")
  5973. }
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5978. {
  5979. side: {
  5980. height: math.unit(370, "cm"),
  5981. weight: math.unit(350, "lbs"),
  5982. name: "Side",
  5983. image: {
  5984. source: "./media/characters/malfressa/side.svg"
  5985. }
  5986. },
  5987. walking: {
  5988. height: math.unit(370, "cm"),
  5989. weight: math.unit(350, "lbs"),
  5990. name: "Walking",
  5991. image: {
  5992. source: "./media/characters/malfressa/walking.svg"
  5993. }
  5994. },
  5995. feral: {
  5996. height: math.unit(2500, "cm"),
  5997. weight: math.unit(100000, "lbs"),
  5998. name: "Feral",
  5999. image: {
  6000. source: "./media/characters/malfressa/feral.svg",
  6001. extra: 2108 / 837,
  6002. bottom: 0.02
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(370, "cm")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(300, "meters"),
  6014. default: true
  6015. }
  6016. ]
  6017. ))
  6018. characterMakers.push(() => makeCharacter(
  6019. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6020. {
  6021. front: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(60, "kg"),
  6024. name: "Front",
  6025. image: {
  6026. source: "./media/characters/jaro/front.svg"
  6027. }
  6028. },
  6029. back: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(60, "kg"),
  6032. name: "Back",
  6033. image: {
  6034. source: "./media/characters/jaro/back.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Micro",
  6041. height: math.unit(7, "inches")
  6042. },
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(5.5, "feet"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Minimacro",
  6050. height: math.unit(20, "feet")
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(200, "meters")
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(195, "lb"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/rogue/front.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(90, "feet"),
  6074. default: true
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(5 + 8 / 12, "feet"),
  6083. weight: math.unit(140, "lb"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/piper/front.svg",
  6087. extra: 3948/3655,
  6088. bottom: 0/3948
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Micro",
  6095. height: math.unit(2, "inches")
  6096. },
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(5 + 8 / 12, "feet")
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(250, "feet"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Megamacro",
  6108. height: math.unit(7, "miles")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(220, "lb"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/gemini/front.svg"
  6121. }
  6122. },
  6123. back: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(220, "lb"),
  6126. name: "Back",
  6127. image: {
  6128. source: "./media/characters/gemini/back.svg"
  6129. }
  6130. },
  6131. kneeling: {
  6132. height: math.unit(6 / 1.5, "feet"),
  6133. weight: math.unit(220, "lb"),
  6134. name: "Kneeling",
  6135. image: {
  6136. source: "./media/characters/gemini/kneeling.svg",
  6137. bottom: 0.02
  6138. }
  6139. },
  6140. },
  6141. [
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(300, "meters"),
  6145. default: true
  6146. },
  6147. {
  6148. name: "Megamacro",
  6149. height: math.unit(6900, "meters")
  6150. },
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6155. {
  6156. anthro: {
  6157. height: math.unit(2.35, "meters"),
  6158. weight: math.unit(73, "kg"),
  6159. name: "Anthro",
  6160. image: {
  6161. source: "./media/characters/alicia/anthro.svg",
  6162. extra: 2571 / 2385,
  6163. bottom: 75 / 2648
  6164. }
  6165. },
  6166. paw: {
  6167. height: math.unit(1.32, "feet"),
  6168. name: "Paw",
  6169. image: {
  6170. source: "./media/characters/alicia/paw.svg"
  6171. }
  6172. },
  6173. feral: {
  6174. height: math.unit(1.69, "meters"),
  6175. weight: math.unit(73, "kg"),
  6176. name: "Feral",
  6177. image: {
  6178. source: "./media/characters/alicia/feral.svg",
  6179. extra: 2123 / 1715,
  6180. bottom: 222 / 2349
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Normal",
  6187. height: math.unit(2.35, "meters")
  6188. },
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(60, "meters"),
  6192. default: true
  6193. },
  6194. {
  6195. name: "Megamacro",
  6196. height: math.unit(10000, "kilometers")
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(7, "feet"),
  6205. weight: math.unit(250, "lbs"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/archy/front.svg"
  6209. }
  6210. }
  6211. },
  6212. [
  6213. {
  6214. name: "Micro",
  6215. height: math.unit(1, "inch")
  6216. },
  6217. {
  6218. name: "Shorty",
  6219. height: math.unit(5, "feet")
  6220. },
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(7, "feet")
  6224. },
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(600, "meters"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Megamacro",
  6232. height: math.unit(1, "mile")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(1.65, "meters"),
  6241. weight: math.unit(74, "kg"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/berri/front.svg",
  6245. extra: 857 / 837,
  6246. bottom: 18 / 877
  6247. }
  6248. },
  6249. bum: {
  6250. height: math.unit(1.46, "feet"),
  6251. name: "Bum",
  6252. image: {
  6253. source: "./media/characters/berri/bum.svg"
  6254. }
  6255. },
  6256. mouth: {
  6257. height: math.unit(0.44, "feet"),
  6258. name: "Mouth",
  6259. image: {
  6260. source: "./media/characters/berri/mouth.svg"
  6261. }
  6262. },
  6263. paw: {
  6264. height: math.unit(0.826, "feet"),
  6265. name: "Paw",
  6266. image: {
  6267. source: "./media/characters/berri/paw.svg"
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(1.65, "meters")
  6275. },
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(60, "m"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(9.213, "km")
  6284. },
  6285. {
  6286. name: "Planet Eater",
  6287. height: math.unit(489, "megameters")
  6288. },
  6289. {
  6290. name: "Teramacro",
  6291. height: math.unit(2471635000000, "meters")
  6292. },
  6293. {
  6294. name: "Examacro",
  6295. height: math.unit(8.0624e+26, "meters")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(1.72, "meters"),
  6304. weight: math.unit(68, "kg"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/lexi/front.svg"
  6308. }
  6309. }
  6310. },
  6311. [
  6312. {
  6313. name: "Very Smol",
  6314. height: math.unit(10, "mm")
  6315. },
  6316. {
  6317. name: "Micro",
  6318. height: math.unit(6.8, "cm"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(1.72, "m")
  6324. }
  6325. ]
  6326. ))
  6327. characterMakers.push(() => makeCharacter(
  6328. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6329. {
  6330. front: {
  6331. height: math.unit(1.69, "meters"),
  6332. weight: math.unit(68, "kg"),
  6333. name: "Front",
  6334. image: {
  6335. source: "./media/characters/martin/front.svg",
  6336. extra: 596 / 581
  6337. }
  6338. }
  6339. },
  6340. [
  6341. {
  6342. name: "Micro",
  6343. height: math.unit(6.85, "cm"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(1.69, "m")
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6354. {
  6355. front: {
  6356. height: math.unit(1.69, "meters"),
  6357. weight: math.unit(68, "kg"),
  6358. name: "Front",
  6359. image: {
  6360. source: "./media/characters/juno/front.svg"
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(7, "cm")
  6368. },
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(1.89, "m")
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(353, "meters"),
  6376. default: true
  6377. }
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(1.93, "meters"),
  6385. weight: math.unit(83, "kg"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/samantha/front.svg"
  6389. }
  6390. },
  6391. frontClothed: {
  6392. height: math.unit(1.93, "meters"),
  6393. weight: math.unit(83, "kg"),
  6394. name: "Front (Clothed)",
  6395. image: {
  6396. source: "./media/characters/samantha/front-clothed.svg"
  6397. }
  6398. },
  6399. back: {
  6400. height: math.unit(1.93, "meters"),
  6401. weight: math.unit(83, "kg"),
  6402. name: "Back",
  6403. image: {
  6404. source: "./media/characters/samantha/back.svg"
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(1.93, "m")
  6412. },
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(74, "meters"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Macro+",
  6420. height: math.unit(223, "meters"),
  6421. },
  6422. {
  6423. name: "Megamacro",
  6424. height: math.unit(8381, "meters"),
  6425. },
  6426. {
  6427. name: "Megamacro+",
  6428. height: math.unit(12000, "kilometers")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(1.92, "meters"),
  6437. weight: math.unit(80, "kg"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/dr-clay/front.svg"
  6441. }
  6442. },
  6443. frontClothed: {
  6444. height: math.unit(1.92, "meters"),
  6445. weight: math.unit(80, "kg"),
  6446. name: "Front (Clothed)",
  6447. image: {
  6448. source: "./media/characters/dr-clay/front-clothed.svg"
  6449. }
  6450. }
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(1.92, "m")
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(214, "meters"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Macro+",
  6464. height: math.unit(12.237, "meters"),
  6465. },
  6466. {
  6467. name: "Megamacro",
  6468. height: math.unit(557, "megameters"),
  6469. },
  6470. {
  6471. name: "Unimaginable",
  6472. height: math.unit(120e9, "lightyears")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6478. {
  6479. front: {
  6480. height: math.unit(2, "meters"),
  6481. weight: math.unit(80, "kg"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6485. }
  6486. }
  6487. },
  6488. [
  6489. {
  6490. name: "Teramacro",
  6491. height: math.unit(500000, "lightyears"),
  6492. default: true
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(2, "meters"),
  6501. weight: math.unit(150, "kg"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/vemus/front.svg",
  6505. extra: 1074/936,
  6506. bottom: 23/1097
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(3.75, "meters"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Big",
  6518. height: math.unit(8, "meters")
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(100, "meters")
  6523. },
  6524. {
  6525. name: "Macro+",
  6526. height: math.unit(1500, "meters")
  6527. },
  6528. {
  6529. name: "Stellar",
  6530. height: math.unit(14e8, "meters")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(2, "meters"),
  6539. weight: math.unit(70, "kg"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/beherit/front.svg",
  6543. extra: 1408 / 1242
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(6, "feet")
  6551. },
  6552. {
  6553. name: "Lorg",
  6554. height: math.unit(25, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Lorger",
  6559. height: math.unit(75, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(200, "meters")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(2, "meters"),
  6572. weight: math.unit(150, "kg"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/everett/front.svg",
  6576. extra: 2038 / 1737,
  6577. bottom: 0.03
  6578. }
  6579. },
  6580. paw: {
  6581. height: math.unit(2 / 3.6, "meters"),
  6582. name: "Paw",
  6583. image: {
  6584. source: "./media/characters/everett/paw.svg"
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(15, "feet"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Lorg",
  6596. height: math.unit(70, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Lorger",
  6601. height: math.unit(250, "feet")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(500, "meters")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(86, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/rose/front.svg",
  6618. extra: 1785/1636,
  6619. bottom: 30/1815
  6620. }
  6621. },
  6622. frontSporty: {
  6623. height: math.unit(2, "meters"),
  6624. weight: math.unit(86, "kg"),
  6625. name: "Front (Sporty)",
  6626. image: {
  6627. source: "./media/characters/rose/front-sporty.svg",
  6628. extra: 350/335,
  6629. bottom: 10/360
  6630. }
  6631. },
  6632. frontAlt: {
  6633. height: math.unit(1.6, "meters"),
  6634. weight: math.unit(86, "kg"),
  6635. name: "Front (Alt)",
  6636. image: {
  6637. source: "./media/characters/rose/front-alt.svg",
  6638. extra: 299/283,
  6639. bottom: 3/302
  6640. }
  6641. },
  6642. plush: {
  6643. height: math.unit(2, "meters"),
  6644. weight: math.unit(86/3, "kg"),
  6645. name: "Plush",
  6646. image: {
  6647. source: "./media/characters/rose/plush.svg",
  6648. extra: 361/337,
  6649. bottom: 11/372
  6650. }
  6651. },
  6652. },
  6653. [
  6654. {
  6655. name: "True Micro",
  6656. height: math.unit(9, "cm")
  6657. },
  6658. {
  6659. name: "Micro",
  6660. height: math.unit(16, "cm")
  6661. },
  6662. {
  6663. name: "Normal",
  6664. height: math.unit(1.85, "meters"),
  6665. default: true
  6666. },
  6667. {
  6668. name: "Mini-Macro",
  6669. height: math.unit(5, "meters")
  6670. },
  6671. {
  6672. name: "Macro",
  6673. height: math.unit(15, "meters")
  6674. },
  6675. {
  6676. name: "True Macro",
  6677. height: math.unit(40, "meters")
  6678. },
  6679. {
  6680. name: "City Scale",
  6681. height: math.unit(1, "km")
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(2, "meters"),
  6690. weight: math.unit(350, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/regal/front.svg"
  6694. }
  6695. },
  6696. back: {
  6697. height: math.unit(2, "meters"),
  6698. weight: math.unit(350, "lbs"),
  6699. name: "Back",
  6700. image: {
  6701. source: "./media/characters/regal/back.svg"
  6702. }
  6703. },
  6704. },
  6705. [
  6706. {
  6707. name: "Macro",
  6708. height: math.unit(350, "feet"),
  6709. default: true
  6710. }
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6715. {
  6716. front: {
  6717. height: math.unit(4 + 11 / 12, "feet"),
  6718. weight: math.unit(100, "lbs"),
  6719. name: "Front",
  6720. image: {
  6721. source: "./media/characters/opal/front.svg"
  6722. }
  6723. },
  6724. frontAlt: {
  6725. height: math.unit(4 + 11 / 12, "feet"),
  6726. weight: math.unit(100, "lbs"),
  6727. name: "Front (Alt)",
  6728. image: {
  6729. source: "./media/characters/opal/front-alt.svg"
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Small",
  6736. height: math.unit(4 + 11 / 12, "feet")
  6737. },
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(20, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(120, "feet")
  6746. },
  6747. {
  6748. name: "Megamacro",
  6749. height: math.unit(80, "miles")
  6750. },
  6751. {
  6752. name: "True Size",
  6753. height: math.unit(100000, "lightyears")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(6, "feet"),
  6762. weight: math.unit(200, "lbs"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/vector-wuff/front.svg"
  6766. }
  6767. }
  6768. },
  6769. [
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(2.8, "meters")
  6773. },
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(450, "meters"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Megamacro",
  6781. height: math.unit(15, "kilometers")
  6782. }
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(256, "lbs"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/dannik/front.svg"
  6794. }
  6795. }
  6796. },
  6797. [
  6798. {
  6799. name: "Macro",
  6800. height: math.unit(69.57, "meters"),
  6801. default: true
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(120, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/azura-saharah/front.svg"
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(120, "lbs"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/azura-saharah/back.svg"
  6822. }
  6823. },
  6824. },
  6825. [
  6826. {
  6827. name: "Macro",
  6828. height: math.unit(100, "feet"),
  6829. default: true
  6830. },
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6835. {
  6836. side: {
  6837. height: math.unit(5 + 4 / 12, "feet"),
  6838. weight: math.unit(163, "lbs"),
  6839. name: "Side",
  6840. image: {
  6841. source: "./media/characters/kennedy/side.svg"
  6842. }
  6843. }
  6844. },
  6845. [
  6846. {
  6847. name: "Standard Doggo",
  6848. height: math.unit(5 + 4 / 12, "feet")
  6849. },
  6850. {
  6851. name: "Big Doggo",
  6852. height: math.unit(25 + 3 / 12, "feet"),
  6853. default: true
  6854. },
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(6, "feet"),
  6862. weight: math.unit(90, "lbs"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/odi-lunar/front.svg"
  6866. }
  6867. }
  6868. },
  6869. [
  6870. {
  6871. name: "Micro",
  6872. height: math.unit(3, "inches"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(5.5, "feet")
  6878. }
  6879. ]
  6880. ))
  6881. characterMakers.push(() => makeCharacter(
  6882. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6883. {
  6884. back: {
  6885. height: math.unit(6, "feet"),
  6886. weight: math.unit(220, "lbs"),
  6887. name: "Back",
  6888. image: {
  6889. source: "./media/characters/mandake/back.svg"
  6890. }
  6891. }
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(7, "feet"),
  6897. default: true
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(78, "feet")
  6902. },
  6903. {
  6904. name: "Macro+",
  6905. height: math.unit(300, "meters")
  6906. },
  6907. {
  6908. name: "Macro++",
  6909. height: math.unit(2400, "feet")
  6910. },
  6911. {
  6912. name: "Megamacro",
  6913. height: math.unit(5167, "meters")
  6914. },
  6915. {
  6916. name: "Gigamacro",
  6917. height: math.unit(41769, "miles")
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6923. {
  6924. front: {
  6925. height: math.unit(6, "feet"),
  6926. weight: math.unit(120, "lbs"),
  6927. name: "Front",
  6928. image: {
  6929. source: "./media/characters/yozey/front.svg"
  6930. }
  6931. },
  6932. frontAlt: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(120, "lbs"),
  6935. name: "Front (Alt)",
  6936. image: {
  6937. source: "./media/characters/yozey/front-alt.svg"
  6938. }
  6939. },
  6940. side: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(120, "lbs"),
  6943. name: "Side",
  6944. image: {
  6945. source: "./media/characters/yozey/side.svg"
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Micro",
  6952. height: math.unit(3, "inches"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(6, "feet")
  6958. }
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(103, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/valeska-voss/front.svg"
  6970. }
  6971. }
  6972. },
  6973. [
  6974. {
  6975. name: "Mini-Sized Sub",
  6976. height: math.unit(3.1, "inches")
  6977. },
  6978. {
  6979. name: "Mid-Sized Sub",
  6980. height: math.unit(6.2, "inches")
  6981. },
  6982. {
  6983. name: "Full-Sized Sub",
  6984. height: math.unit(9.3, "inches")
  6985. },
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(5 + 2 / 12, "foot"),
  6989. default: true
  6990. },
  6991. ]
  6992. ))
  6993. characterMakers.push(() => makeCharacter(
  6994. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6995. {
  6996. front: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(160, "lbs"),
  6999. name: "Front",
  7000. image: {
  7001. source: "./media/characters/gene-zeta/front.svg",
  7002. extra: 3006 / 2826,
  7003. bottom: 182 / 3188
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(6, "inches")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(5 + 11 / 12, "foot"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(140, "feet")
  7020. },
  7021. {
  7022. name: "Supercharged",
  7023. height: math.unit(2500, "feet")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(350, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/razinox/front.svg",
  7036. extra: 1686 / 1548,
  7037. bottom: 28.2 / 1868
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(350, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/razinox/back.svg",
  7046. extra: 1660 / 1590,
  7047. bottom: 15 / 1665
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(10 + 8 / 12, "foot")
  7055. },
  7056. {
  7057. name: "Minimacro",
  7058. height: math.unit(15, "foot")
  7059. },
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(60, "foot"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Megamacro",
  7067. height: math.unit(5, "miles")
  7068. },
  7069. {
  7070. name: "Gigamacro",
  7071. height: math.unit(6000, "miles")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(150, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/cobalt/front.svg"
  7084. }
  7085. }
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(8 + 1 / 12, "foot")
  7091. },
  7092. {
  7093. name: "Macro",
  7094. height: math.unit(111, "foot"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Supracosmic",
  7099. height: math.unit(1e42, "feet")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(140, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/amanda/front.svg"
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(5, "inches"),
  7119. default: true
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(2.75, "meters"),
  7128. weight: math.unit(1200, "lb"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/teal/front.svg",
  7132. extra: 2463 / 2320,
  7133. bottom: 166 / 2629
  7134. }
  7135. },
  7136. back: {
  7137. height: math.unit(2.75, "meters"),
  7138. weight: math.unit(1200, "lb"),
  7139. name: "Back",
  7140. image: {
  7141. source: "./media/characters/teal/back.svg",
  7142. extra: 2580 / 2489,
  7143. bottom: 151 / 2731
  7144. }
  7145. },
  7146. sitting: {
  7147. height: math.unit(1.9, "meters"),
  7148. weight: math.unit(1200, "lb"),
  7149. name: "Sitting",
  7150. image: {
  7151. source: "./media/characters/teal/sitting.svg",
  7152. extra: 623 / 590,
  7153. bottom: 121 / 744
  7154. }
  7155. },
  7156. standing: {
  7157. height: math.unit(2.75, "meters"),
  7158. weight: math.unit(1200, "lb"),
  7159. name: "Standing",
  7160. image: {
  7161. source: "./media/characters/teal/standing.svg",
  7162. extra: 923 / 893,
  7163. bottom: 60 / 983
  7164. }
  7165. },
  7166. stretching: {
  7167. height: math.unit(3.65, "meters"),
  7168. weight: math.unit(1200, "lb"),
  7169. name: "Stretching",
  7170. image: {
  7171. source: "./media/characters/teal/stretching.svg",
  7172. extra: 1276 / 1244,
  7173. bottom: 0 / 1276
  7174. }
  7175. },
  7176. legged: {
  7177. height: math.unit(1.3, "meters"),
  7178. weight: math.unit(100, "lb"),
  7179. name: "Legged",
  7180. image: {
  7181. source: "./media/characters/teal/legged.svg",
  7182. extra: 462 / 437,
  7183. bottom: 24 / 486
  7184. }
  7185. },
  7186. naga: {
  7187. height: math.unit(5.4, "meters"),
  7188. weight: math.unit(4000, "lb"),
  7189. name: "Naga",
  7190. image: {
  7191. source: "./media/characters/teal/naga.svg",
  7192. extra: 1902 / 1858,
  7193. bottom: 0 / 1902
  7194. }
  7195. },
  7196. hand: {
  7197. height: math.unit(0.52, "meters"),
  7198. name: "Hand",
  7199. image: {
  7200. source: "./media/characters/teal/hand.svg"
  7201. }
  7202. },
  7203. maw: {
  7204. height: math.unit(0.43, "meters"),
  7205. name: "Maw",
  7206. image: {
  7207. source: "./media/characters/teal/maw.svg"
  7208. }
  7209. },
  7210. slit: {
  7211. height: math.unit(0.25, "meters"),
  7212. name: "Slit",
  7213. image: {
  7214. source: "./media/characters/teal/slit.svg"
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(2.75, "meters"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(300, "feet")
  7227. },
  7228. {
  7229. name: "Macro+",
  7230. height: math.unit(2000, "feet")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7236. {
  7237. frontCat: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(180, "lbs"),
  7240. name: "Front (Cat)",
  7241. image: {
  7242. source: "./media/characters/ravin-amulet/front-cat.svg"
  7243. }
  7244. },
  7245. frontCatAlt: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(180, "lbs"),
  7248. name: "Front (Alt, Cat)",
  7249. image: {
  7250. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7251. }
  7252. },
  7253. frontWerewolf: {
  7254. height: math.unit(6 * 1.2, "feet"),
  7255. weight: math.unit(225, "lbs"),
  7256. name: "Front (Werewolf)",
  7257. image: {
  7258. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7259. }
  7260. },
  7261. backWerewolf: {
  7262. height: math.unit(6 * 1.2, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Back (Werewolf)",
  7265. image: {
  7266. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7267. }
  7268. },
  7269. },
  7270. [
  7271. {
  7272. name: "Nano",
  7273. height: math.unit(1, "micrometer")
  7274. },
  7275. {
  7276. name: "Micro",
  7277. height: math.unit(1, "inch")
  7278. },
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(6, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(60, "feet")
  7287. }
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(165, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/fluoresce/front.svg"
  7299. }
  7300. }
  7301. },
  7302. [
  7303. {
  7304. name: "Micro",
  7305. height: math.unit(6, "cm")
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(5 + 7 / 12, "feet"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(56, "feet")
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(1.9, "miles")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(9 + 6 / 12, "feet"),
  7327. weight: math.unit(523, "lbs"),
  7328. name: "Side",
  7329. image: {
  7330. source: "./media/characters/aurora/side.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(9 + 6 / 12, "feet")
  7338. },
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(96, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Macro+",
  7346. height: math.unit(243, "feet")
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(194, "cm"),
  7355. weight: math.unit(90, "kg"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/ranek/front.svg"
  7359. }
  7360. },
  7361. side: {
  7362. height: math.unit(194, "cm"),
  7363. weight: math.unit(90, "kg"),
  7364. name: "Side",
  7365. image: {
  7366. source: "./media/characters/ranek/side.svg"
  7367. }
  7368. },
  7369. back: {
  7370. height: math.unit(194, "cm"),
  7371. weight: math.unit(90, "kg"),
  7372. name: "Back",
  7373. image: {
  7374. source: "./media/characters/ranek/back.svg"
  7375. }
  7376. },
  7377. feral: {
  7378. height: math.unit(30, "cm"),
  7379. weight: math.unit(1.6, "lbs"),
  7380. name: "Feral",
  7381. image: {
  7382. source: "./media/characters/ranek/feral.svg"
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(194, "cm"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(100, "meters")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(5 + 6 / 12, "feet"),
  7403. weight: math.unit(153, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/andrew-cooper/front.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Nano",
  7413. height: math.unit(1, "mm")
  7414. },
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(2, "inches")
  7418. },
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(5 + 6 / 12, "feet"),
  7422. default: true
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(180, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/akane-sato/front.svg",
  7435. extra: 1219 / 1140
  7436. }
  7437. },
  7438. back: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(180, "lbs"),
  7441. name: "Back",
  7442. image: {
  7443. source: "./media/characters/akane-sato/back.svg",
  7444. extra: 1219 / 1170
  7445. }
  7446. },
  7447. },
  7448. [
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(2.5, "meters")
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(250, "meters"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(25, "km")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(65, "kg"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/rook/front.svg",
  7473. extra: 960 / 950
  7474. }
  7475. }
  7476. },
  7477. [
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(8.8, "feet")
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(88, "feet"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Megamacro",
  7489. height: math.unit(8, "miles")
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(12 + 2 / 12, "feet"),
  7498. weight: math.unit(808, "lbs"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/prodigy/front.svg"
  7502. }
  7503. }
  7504. },
  7505. [
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(12 + 2 / 12, "feet"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(143, "feet")
  7514. },
  7515. {
  7516. name: "Macro+",
  7517. height: math.unit(400, "feet")
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(225, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/daniel/front.svg"
  7530. }
  7531. },
  7532. leaning: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(225, "lbs"),
  7535. name: "Leaning",
  7536. image: {
  7537. source: "./media/characters/daniel/leaning.svg"
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(1000, "feet"),
  7545. default: true
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(88, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/chiros/front.svg",
  7558. extra: 306 / 226
  7559. }
  7560. },
  7561. side: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(88, "lbs"),
  7564. name: "Side",
  7565. image: {
  7566. source: "./media/characters/chiros/side.svg",
  7567. extra: 306 / 226
  7568. }
  7569. },
  7570. },
  7571. [
  7572. {
  7573. name: "Normal",
  7574. height: math.unit(6, "cm"),
  7575. default: true
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7581. {
  7582. front: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(100, "lbs"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/selka/front.svg",
  7588. extra: 947 / 887
  7589. }
  7590. }
  7591. },
  7592. [
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5, "cm"),
  7596. default: true
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(8 + 3 / 12, "feet"),
  7605. weight: math.unit(424, "lbs"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/verin/front.svg",
  7609. extra: 1845 / 1550
  7610. }
  7611. },
  7612. frontArmored: {
  7613. height: math.unit(8 + 3 / 12, "feet"),
  7614. weight: math.unit(424, "lbs"),
  7615. name: "Front (Armored)",
  7616. image: {
  7617. source: "./media/characters/verin/front-armor.svg",
  7618. extra: 1845 / 1550,
  7619. bottom: 0.01
  7620. }
  7621. },
  7622. back: {
  7623. height: math.unit(8 + 3 / 12, "feet"),
  7624. weight: math.unit(424, "lbs"),
  7625. name: "Back",
  7626. image: {
  7627. source: "./media/characters/verin/back.svg",
  7628. bottom: 0.1,
  7629. extra: 1
  7630. }
  7631. },
  7632. foot: {
  7633. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7634. name: "Foot",
  7635. image: {
  7636. source: "./media/characters/verin/foot.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(8 + 3 / 12, "feet")
  7644. },
  7645. {
  7646. name: "Minimacro",
  7647. height: math.unit(21, "feet"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(626, "feet")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(2.718, "meters"),
  7661. weight: math.unit(150, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/sovrim-terraquian/front.svg"
  7665. }
  7666. },
  7667. back: {
  7668. height: math.unit(2.718, "meters"),
  7669. weight: math.unit(150, "lbs"),
  7670. name: "Back",
  7671. image: {
  7672. source: "./media/characters/sovrim-terraquian/back.svg"
  7673. }
  7674. }
  7675. },
  7676. [
  7677. {
  7678. name: "Micro",
  7679. height: math.unit(2, "inches")
  7680. },
  7681. {
  7682. name: "Small",
  7683. height: math.unit(1, "meter")
  7684. },
  7685. {
  7686. name: "Normal",
  7687. height: math.unit(Math.E, "meters"),
  7688. default: true
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(20, "meters")
  7693. },
  7694. {
  7695. name: "Macro+",
  7696. height: math.unit(400, "meters")
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7702. {
  7703. front: {
  7704. height: math.unit(7, "feet"),
  7705. weight: math.unit(489, "lbs"),
  7706. name: "Front",
  7707. image: {
  7708. source: "./media/characters/reece-silvermane/front.svg",
  7709. bottom: 0.02,
  7710. extra: 1
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(1.5, "miles"),
  7718. default: true
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(6, "feet"),
  7727. weight: math.unit(78, "kg"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/kane/front.svg",
  7731. extra: 978 / 899
  7732. }
  7733. },
  7734. },
  7735. [
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(2.1, "m"),
  7739. },
  7740. {
  7741. name: "Macro",
  7742. height: math.unit(1, "km"),
  7743. default: true
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(6, "feet"),
  7752. weight: math.unit(200, "kg"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/tegon/front.svg",
  7756. bottom: 0.01,
  7757. extra: 1
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(1, "inch")
  7765. },
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(6 + 3 / 12, "feet"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Macro",
  7773. height: math.unit(300, "feet")
  7774. },
  7775. {
  7776. name: "Megamacro",
  7777. height: math.unit(69, "miles")
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7783. {
  7784. side: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(2304, "lbs"),
  7787. name: "Side",
  7788. image: {
  7789. source: "./media/characters/arcturax/side.svg",
  7790. extra: 790 / 376,
  7791. bottom: 0.01
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Micro",
  7798. height: math.unit(2, "inch")
  7799. },
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(6, "feet")
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(39, "feet"),
  7807. default: true
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(7, "miles")
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7817. {
  7818. front: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(50, "lbs"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/sentri/front.svg",
  7824. extra: 1750 / 1570,
  7825. bottom: 0.025
  7826. }
  7827. },
  7828. frontAlt: {
  7829. height: math.unit(6, "feet"),
  7830. weight: math.unit(50, "lbs"),
  7831. name: "Front (Alt)",
  7832. image: {
  7833. source: "./media/characters/sentri/front-alt.svg",
  7834. extra: 1750 / 1570,
  7835. bottom: 0.025
  7836. }
  7837. },
  7838. },
  7839. [
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(15, "feet"),
  7843. default: true
  7844. },
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(2500, "feet")
  7848. }
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(5 + 8 / 12, "feet"),
  7856. weight: math.unit(130, "lbs"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/corvin/front.svg",
  7860. extra: 1803 / 1629
  7861. }
  7862. },
  7863. frontShirt: {
  7864. height: math.unit(5 + 8 / 12, "feet"),
  7865. weight: math.unit(130, "lbs"),
  7866. name: "Front (Shirt)",
  7867. image: {
  7868. source: "./media/characters/corvin/front-shirt.svg",
  7869. extra: 1803 / 1629
  7870. }
  7871. },
  7872. frontPoncho: {
  7873. height: math.unit(5 + 8 / 12, "feet"),
  7874. weight: math.unit(130, "lbs"),
  7875. name: "Front (Poncho)",
  7876. image: {
  7877. source: "./media/characters/corvin/front-poncho.svg",
  7878. extra: 1803 / 1629
  7879. }
  7880. },
  7881. side: {
  7882. height: math.unit(5 + 8 / 12, "feet"),
  7883. weight: math.unit(130, "lbs"),
  7884. name: "Side",
  7885. image: {
  7886. source: "./media/characters/corvin/side.svg",
  7887. extra: 1012 / 945
  7888. }
  7889. },
  7890. back: {
  7891. height: math.unit(5 + 8 / 12, "feet"),
  7892. weight: math.unit(130, "lbs"),
  7893. name: "Back",
  7894. image: {
  7895. source: "./media/characters/corvin/back.svg",
  7896. extra: 1803 / 1629
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Micro",
  7903. height: math.unit(3, "inches")
  7904. },
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(5 + 8 / 12, "feet")
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(300, "feet"),
  7912. default: true
  7913. },
  7914. {
  7915. name: "Megamacro",
  7916. height: math.unit(500, "miles")
  7917. }
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(135, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/q/front.svg",
  7929. extra: 854 / 752,
  7930. bottom: 0.005
  7931. }
  7932. },
  7933. back: {
  7934. height: math.unit(6, "feet"),
  7935. weight: math.unit(130, "lbs"),
  7936. name: "Back",
  7937. image: {
  7938. source: "./media/characters/q/back.svg",
  7939. extra: 854 / 752
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(90, "feet"),
  7947. default: true
  7948. },
  7949. {
  7950. name: "Extra Macro",
  7951. height: math.unit(300, "feet"),
  7952. },
  7953. {
  7954. name: "BIG WALF",
  7955. height: math.unit(750, "feet"),
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(6, "feet"),
  7964. weight: math.unit(150, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/carley/front.svg",
  7968. extra: 3927 / 3540,
  7969. bottom: 29.2 / 735
  7970. }
  7971. }
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(6 + 3 / 12, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(185, "feet"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Megamacro",
  7985. height: math.unit(8, "miles"),
  7986. },
  7987. ]
  7988. ))
  7989. characterMakers.push(() => makeCharacter(
  7990. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7991. {
  7992. front: {
  7993. height: math.unit(3, "feet"),
  7994. weight: math.unit(28, "lbs"),
  7995. name: "Front",
  7996. image: {
  7997. source: "./media/characters/citrine/front.svg"
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(3, "feet"),
  8005. default: true
  8006. }
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8011. {
  8012. front: {
  8013. height: math.unit(14, "feet"),
  8014. weight: math.unit(1450, "kg"),
  8015. capacity: math.unit(15, "people"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/aura-starwind/front.svg",
  8019. extra: 1455 / 1335
  8020. }
  8021. },
  8022. side: {
  8023. height: math.unit(14, "feet"),
  8024. weight: math.unit(1450, "kg"),
  8025. capacity: math.unit(15, "people"),
  8026. name: "Side",
  8027. image: {
  8028. source: "./media/characters/aura-starwind/side.svg",
  8029. extra: 1654 / 1497
  8030. }
  8031. },
  8032. taur: {
  8033. height: math.unit(18, "feet"),
  8034. weight: math.unit(5500, "kg"),
  8035. capacity: math.unit(50, "people"),
  8036. name: "Taur",
  8037. image: {
  8038. source: "./media/characters/aura-starwind/taur.svg",
  8039. extra: 1760 / 1650
  8040. }
  8041. },
  8042. feral: {
  8043. height: math.unit(46, "feet"),
  8044. weight: math.unit(25000, "kg"),
  8045. capacity: math.unit(120, "people"),
  8046. name: "Feral",
  8047. image: {
  8048. source: "./media/characters/aura-starwind/feral.svg"
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(14, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(50, "meters")
  8061. },
  8062. {
  8063. name: "Megamacro",
  8064. height: math.unit(5000, "meters")
  8065. },
  8066. {
  8067. name: "Gigamacro",
  8068. height: math.unit(100000, "kilometers")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(2 + 7 / 12, "feet"),
  8077. weight: math.unit(32, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/rivet/front.svg",
  8081. extra: 1716 / 1658,
  8082. bottom: 0.03
  8083. }
  8084. },
  8085. foot: {
  8086. height: math.unit(0.551, "feet"),
  8087. name: "Rivet's Foot",
  8088. image: {
  8089. source: "./media/characters/rivet/foot.svg"
  8090. },
  8091. rename: true
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(1.5, "inches"),
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(2 + 7 / 12, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(85, "feet")
  8107. },
  8108. {
  8109. name: "Megamacro",
  8110. height: math.unit(2.2, "km")
  8111. }
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 9 / 12, "feet"),
  8119. weight: math.unit(150, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/coffee/front.svg",
  8123. extra: 3666 / 3032,
  8124. bottom: 0.04
  8125. }
  8126. },
  8127. foot: {
  8128. height: math.unit(1.29, "feet"),
  8129. name: "Foot",
  8130. image: {
  8131. source: "./media/characters/coffee/foot.svg"
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(2, "inches"),
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 9 / 12, "feet"),
  8143. default: true
  8144. },
  8145. {
  8146. name: "Macro",
  8147. height: math.unit(800, "feet")
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(25, "miles")
  8152. }
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(200, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/chari-gal/front.svg",
  8164. extra: 1568 / 1385,
  8165. bottom: 0.047
  8166. }
  8167. },
  8168. gigantamax: {
  8169. height: math.unit(6 * 16, "feet"),
  8170. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8171. name: "Gigantamax",
  8172. image: {
  8173. source: "./media/characters/chari-gal/gigantamax.svg",
  8174. extra: 1124 / 888,
  8175. bottom: 0.03
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(5 + 7 / 12, "feet")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(200, "feet"),
  8187. default: true
  8188. }
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(150, "lbs"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/nova/front.svg",
  8200. extra: 5000 / 4722,
  8201. bottom: 0.02
  8202. }
  8203. }
  8204. },
  8205. [
  8206. {
  8207. name: "Micro-",
  8208. height: math.unit(0.8, "inches")
  8209. },
  8210. {
  8211. name: "Micro",
  8212. height: math.unit(2, "inches"),
  8213. default: true
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8219. {
  8220. front: {
  8221. height: math.unit(3 + 1 / 12, "feet"),
  8222. weight: math.unit(21.7, "lbs"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/argent/front.svg",
  8226. extra: 1471 / 1331,
  8227. bottom: 100.8 / 1575.5
  8228. }
  8229. }
  8230. },
  8231. [
  8232. {
  8233. name: "Micro",
  8234. height: math.unit(2, "inches")
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(3 + 1 / 12, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(120, "feet")
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8249. {
  8250. lamp: {
  8251. height: math.unit(7 * 1559 / 989, "feet"),
  8252. name: "Magic Lamp",
  8253. image: {
  8254. source: "./media/characters/mira-al-cul/lamp.svg",
  8255. extra: 1617 / 1559
  8256. }
  8257. },
  8258. front: {
  8259. height: math.unit(7, "feet"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/mira-al-cul/front.svg",
  8263. extra: 1044 / 990
  8264. }
  8265. },
  8266. },
  8267. [
  8268. {
  8269. name: "Heavily Restricted",
  8270. height: math.unit(7 * 1559 / 989, "feet")
  8271. },
  8272. {
  8273. name: "Freshly Freed",
  8274. height: math.unit(50 * 1559 / 989, "feet")
  8275. },
  8276. {
  8277. name: "World Encompassing",
  8278. height: math.unit(10000 * 1559 / 989, "miles")
  8279. },
  8280. {
  8281. name: "Galactic",
  8282. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8283. },
  8284. {
  8285. name: "Palmed Universe",
  8286. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8287. default: true
  8288. },
  8289. {
  8290. name: "Multiversal Matriarch",
  8291. height: math.unit(8.87e10, "yottameters")
  8292. },
  8293. {
  8294. name: "Void Mother",
  8295. height: math.unit(3.14e110, "yottaparsecs")
  8296. },
  8297. {
  8298. name: "Toying with Transcendence",
  8299. height: math.unit(1e307, "meters")
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8305. {
  8306. front: {
  8307. height: math.unit(17 + 1 / 12, "feet"),
  8308. weight: math.unit(476.2 * 5, "lbs"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/kuro-shi-uchū/front.svg",
  8312. extra: 2329 / 1835,
  8313. bottom: 0.02
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inches")
  8321. },
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(12, "meters")
  8325. },
  8326. {
  8327. name: "Planetary",
  8328. height: math.unit(0.00929, "AU"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Universal",
  8333. height: math.unit(20, "gigaparsecs")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(5 + 2 / 12, "feet"),
  8342. weight: math.unit(120, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/katherine/front.svg",
  8346. extra: 2075 / 1969
  8347. }
  8348. },
  8349. dress: {
  8350. height: math.unit(5 + 2 / 12, "feet"),
  8351. weight: math.unit(120, "lbs"),
  8352. name: "Dress",
  8353. image: {
  8354. source: "./media/characters/katherine/dress.svg",
  8355. extra: 2258 / 2064
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(1, "inches"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(5 + 2 / 12, "feet")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(100, "meters")
  8372. },
  8373. {
  8374. name: "Megamacro",
  8375. height: math.unit(80, "miles")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(7 + 8 / 12, "feet"),
  8384. weight: math.unit(250, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/yevis/front.svg",
  8388. extra: 1938 / 1755
  8389. }
  8390. }
  8391. },
  8392. [
  8393. {
  8394. name: "Mortal",
  8395. height: math.unit(7 + 8 / 12, "feet")
  8396. },
  8397. {
  8398. name: "Battle",
  8399. height: math.unit(25 + 11 / 12, "feet")
  8400. },
  8401. {
  8402. name: "Wrath",
  8403. height: math.unit(1654 + 11 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Planet Destroyer",
  8407. height: math.unit(12000, "miles")
  8408. },
  8409. {
  8410. name: "Galaxy Conqueror",
  8411. height: math.unit(1.45, "zettameters"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Universal War",
  8416. height: math.unit(184, "gigaparsecs")
  8417. },
  8418. {
  8419. name: "Eternity War",
  8420. height: math.unit(1.98e55, "yottaparsecs")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(5 + 8 / 12, "feet"),
  8429. weight: math.unit(63, "kg"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/xavier/front.svg",
  8433. extra: 944 / 883
  8434. }
  8435. },
  8436. frontStretch: {
  8437. height: math.unit(5 + 8 / 12, "feet"),
  8438. weight: math.unit(63, "kg"),
  8439. name: "Stretching",
  8440. image: {
  8441. source: "./media/characters/xavier/front-stretch.svg",
  8442. extra: 962 / 820
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(5 + 8 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(100, "meters"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "McLargeHuge",
  8458. height: math.unit(10, "miles")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(5 + 5 / 12, "feet"),
  8467. weight: math.unit(150, "lb"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/joshii/front.svg",
  8471. extra: 765 / 653,
  8472. bottom: 51 / 816
  8473. }
  8474. },
  8475. foot: {
  8476. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8477. name: "Foot",
  8478. image: {
  8479. source: "./media/characters/joshii/foot.svg"
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(2, "inches"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(5 + 5 / 12, "feet")
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(785, "feet")
  8496. },
  8497. {
  8498. name: "Megamacro",
  8499. height: math.unit(24.5, "miles")
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(6, "feet"),
  8508. weight: math.unit(150, "lb"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/goddess-elizabeth/front.svg",
  8512. extra: 1800 / 1525,
  8513. bottom: 0.005
  8514. }
  8515. },
  8516. foot: {
  8517. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8518. name: "Foot",
  8519. image: {
  8520. source: "./media/characters/goddess-elizabeth/foot.svg"
  8521. }
  8522. },
  8523. mouth: {
  8524. height: math.unit(6, "feet"),
  8525. name: "Mouth",
  8526. image: {
  8527. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Micro",
  8534. height: math.unit(12, "feet")
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(80, "miles"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Macro",
  8543. height: math.unit(15000, "parsecs")
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8549. {
  8550. front: {
  8551. height: math.unit(5 + 9 / 12, "feet"),
  8552. weight: math.unit(144, "lb"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/kara/front.svg"
  8556. }
  8557. },
  8558. feet: {
  8559. height: math.unit(6 / 6.765, "feet"),
  8560. name: "Kara's Feet",
  8561. rename: true,
  8562. image: {
  8563. source: "./media/characters/kara/feet.svg"
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(5 + 9 / 12, "feet")
  8571. },
  8572. {
  8573. name: "Macro",
  8574. height: math.unit(174, "feet"),
  8575. default: true
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8581. {
  8582. front: {
  8583. height: math.unit(18, "feet"),
  8584. weight: math.unit(4050, "lb"),
  8585. name: "Front",
  8586. image: {
  8587. source: "./media/characters/tyrone/front.svg",
  8588. extra: 2405 / 2270,
  8589. bottom: 182 / 2587
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Normal",
  8596. height: math.unit(18, "feet"),
  8597. default: true
  8598. },
  8599. {
  8600. name: "Macro",
  8601. height: math.unit(300, "feet")
  8602. },
  8603. {
  8604. name: "Megamacro",
  8605. height: math.unit(15, "km")
  8606. },
  8607. {
  8608. name: "Gigamacro",
  8609. height: math.unit(500, "km")
  8610. },
  8611. {
  8612. name: "Teramacro",
  8613. height: math.unit(0.5, "gigameters")
  8614. },
  8615. {
  8616. name: "Omnimacro",
  8617. height: math.unit(1e252, "yottauniverse")
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(7 + 8 / 12, "feet"),
  8626. weight: math.unit(120, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/danny/front.svg",
  8630. extra: 1490 / 1350
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(7 + 8 / 12, "feet"),
  8635. weight: math.unit(120, "lb"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/danny/back.svg",
  8639. extra: 1490 / 1350
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(7 + 8 / 12, "feet"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(3.5, "inches"),
  8656. weight: math.unit(19, "grams"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/mallow/front.svg",
  8660. extra: 471 / 431
  8661. }
  8662. },
  8663. back: {
  8664. height: math.unit(3.5, "inches"),
  8665. weight: math.unit(19, "grams"),
  8666. name: "Back",
  8667. image: {
  8668. source: "./media/characters/mallow/back.svg",
  8669. extra: 471 / 431
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(3.5, "inches"),
  8677. default: true
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(9, "feet"),
  8686. weight: math.unit(230, "kg"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/starry-aqua/front.svg"
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(9, "feet"),
  8694. weight: math.unit(230, "kg"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/back.svg"
  8698. }
  8699. },
  8700. hand: {
  8701. height: math.unit(9 * 0.1168, "feet"),
  8702. name: "Hand",
  8703. image: {
  8704. source: "./media/characters/starry-aqua/hand.svg"
  8705. }
  8706. },
  8707. foot: {
  8708. height: math.unit(9 * 0.18, "feet"),
  8709. name: "Foot",
  8710. image: {
  8711. source: "./media/characters/starry-aqua/foot.svg"
  8712. }
  8713. }
  8714. },
  8715. [
  8716. {
  8717. name: "Micro",
  8718. height: math.unit(3, "inches")
  8719. },
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(9, "feet")
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(300, "feet"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "Megamacro",
  8731. height: math.unit(3200, "feet")
  8732. }
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(230, "lb"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/luka/front.svg",
  8744. extra: 1,
  8745. bottom: 0.025
  8746. }
  8747. },
  8748. },
  8749. [
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(12 + 8 / 12, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Minimacro",
  8757. height: math.unit(20, "feet")
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(250, "feet")
  8762. },
  8763. {
  8764. name: "Megamacro",
  8765. height: math.unit(5, "miles")
  8766. },
  8767. {
  8768. name: "Gigamacro",
  8769. height: math.unit(8000, "miles")
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(150, "lb"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/natalie-nightring/front.svg",
  8782. extra: 1,
  8783. bottom: 0.06
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Uh Oh",
  8790. height: math.unit(0.1, "mm")
  8791. },
  8792. {
  8793. name: "Small",
  8794. height: math.unit(3, "inches")
  8795. },
  8796. {
  8797. name: "Human Scale",
  8798. height: math.unit(6, "feet")
  8799. },
  8800. {
  8801. name: "Librarian",
  8802. height: math.unit(50, "feet"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Immense",
  8807. height: math.unit(200, "miles")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(6, "feet"),
  8816. weight: math.unit(180, "lbs"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/danni-rosie/front.svg",
  8820. extra: 1260 / 1128,
  8821. bottom: 0.022
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Micro",
  8828. height: math.unit(2, "inches"),
  8829. default: true
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(5 + 9 / 12, "feet"),
  8838. weight: math.unit(220, "lb"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/samantha-kruse/front.svg",
  8842. extra: (985 / 935),
  8843. bottom: 0.03
  8844. }
  8845. },
  8846. frontUndressed: {
  8847. height: math.unit(5 + 9 / 12, "feet"),
  8848. weight: math.unit(220, "lb"),
  8849. name: "Front (Undressed)",
  8850. image: {
  8851. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8852. extra: (973 / 923),
  8853. bottom: 0.025
  8854. }
  8855. },
  8856. fat: {
  8857. height: math.unit(5 + 9 / 12, "feet"),
  8858. weight: math.unit(900, "lb"),
  8859. name: "Front (Fat)",
  8860. image: {
  8861. source: "./media/characters/samantha-kruse/fat.svg",
  8862. extra: 2688 / 2561
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(5 + 9 / 12, "feet"),
  8870. default: true
  8871. }
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8876. {
  8877. back: {
  8878. height: math.unit(5 + 4 / 12, "feet"),
  8879. weight: math.unit(4963, "lb"),
  8880. name: "Back",
  8881. image: {
  8882. source: "./media/characters/amelia-rosie/back.svg",
  8883. extra: 1113 / 963,
  8884. bottom: 0.01
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Level 0",
  8891. height: math.unit(5 + 4 / 12, "feet")
  8892. },
  8893. {
  8894. name: "Level 1",
  8895. height: math.unit(164597, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Level 2",
  8900. height: math.unit(956243, "miles")
  8901. },
  8902. {
  8903. name: "Level 3",
  8904. height: math.unit(29421709423, "miles")
  8905. },
  8906. {
  8907. name: "Level 4",
  8908. height: math.unit(154, "lightyears")
  8909. },
  8910. {
  8911. name: "Level 5",
  8912. height: math.unit(4738272, "lightyears")
  8913. },
  8914. {
  8915. name: "Level 6",
  8916. height: math.unit(145787152896, "lightyears")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(5 + 11 / 12, "feet"),
  8925. weight: math.unit(65, "kg"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/rook-kitara/front.svg",
  8929. extra: 1347 / 1274,
  8930. bottom: 0.005
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Totally Unfair",
  8937. height: math.unit(1.8, "mm")
  8938. },
  8939. {
  8940. name: "Lap Rookie",
  8941. height: math.unit(1.4, "feet")
  8942. },
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(5 + 11 / 12, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "How Did This Happen",
  8950. height: math.unit(80, "miles")
  8951. }
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(7, "feet"),
  8959. weight: math.unit(300, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/pisces/front.svg",
  8963. extra: 2255 / 2115,
  8964. bottom: 0.03
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(7, "feet"),
  8969. weight: math.unit(300, "lb"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/pisces/back.svg",
  8973. extra: 2146 / 2055,
  8974. bottom: 0.04
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(7, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Swimming Pool",
  8986. height: math.unit(12.2, "meters")
  8987. },
  8988. {
  8989. name: "Olympic Swimming Pool",
  8990. height: math.unit(56.3, "meters")
  8991. },
  8992. {
  8993. name: "Lake Superior",
  8994. height: math.unit(93900, "meters")
  8995. },
  8996. {
  8997. name: "Mediterranean Sea",
  8998. height: math.unit(644457, "meters")
  8999. },
  9000. {
  9001. name: "World's Oceans",
  9002. height: math.unit(4567491, "meters")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(2.3, "meters"),
  9011. weight: math.unit(120, "kg"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/zelas/front.svg"
  9015. }
  9016. },
  9017. side: {
  9018. height: math.unit(2.3, "meters"),
  9019. weight: math.unit(120, "kg"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/zelas/side.svg"
  9023. }
  9024. },
  9025. back: {
  9026. height: math.unit(2.3, "meters"),
  9027. weight: math.unit(120, "kg"),
  9028. name: "Back",
  9029. image: {
  9030. source: "./media/characters/zelas/back.svg"
  9031. }
  9032. },
  9033. foot: {
  9034. height: math.unit(1.116, "feet"),
  9035. name: "Foot",
  9036. image: {
  9037. source: "./media/characters/zelas/foot.svg"
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(2.3, "meters")
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(30, "meters"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(1, "inch"),
  9058. weight: math.unit(0.21, "grams"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/talbot/front.svg",
  9062. extra: 594 / 544
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Micro",
  9069. height: math.unit(1, "inch"),
  9070. default: true
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9076. {
  9077. front: {
  9078. height: math.unit(3 + 3 / 12, "feet"),
  9079. weight: math.unit(51.8, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/fliss/front.svg",
  9083. extra: 840 / 640
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Teeny Tiny",
  9090. height: math.unit(1, "mm")
  9091. },
  9092. {
  9093. name: "Small",
  9094. height: math.unit(1, "inch"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Standard Sylveon",
  9099. height: math.unit(3 + 3 / 12, "feet")
  9100. },
  9101. {
  9102. name: "Large Nuisance",
  9103. height: math.unit(33, "feet")
  9104. },
  9105. {
  9106. name: "City Filler",
  9107. height: math.unit(3000, "feet")
  9108. },
  9109. {
  9110. name: "New Horizon",
  9111. height: math.unit(6000, "miles")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(5, "cm"),
  9120. weight: math.unit(1.94, "g"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/fleta/front.svg",
  9124. extra: 835 / 803
  9125. }
  9126. },
  9127. back: {
  9128. height: math.unit(5, "cm"),
  9129. weight: math.unit(1.94, "g"),
  9130. name: "Back",
  9131. image: {
  9132. source: "./media/characters/fleta/back.svg",
  9133. extra: 835 / 803
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(5, "cm"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(225, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/dominic/front.svg",
  9154. extra: 1770 / 1620,
  9155. bottom: 0.025
  9156. }
  9157. },
  9158. back: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(225, "lb"),
  9161. name: "Back",
  9162. image: {
  9163. source: "./media/characters/dominic/back.svg",
  9164. extra: 1745 / 1620,
  9165. bottom: 0.065
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Nano",
  9172. height: math.unit(0.1, "mm")
  9173. },
  9174. {
  9175. name: "Micro-",
  9176. height: math.unit(1, "mm")
  9177. },
  9178. {
  9179. name: "Micro",
  9180. height: math.unit(4, "inches")
  9181. },
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(6 + 4 / 12, "feet"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Macro",
  9189. height: math.unit(115, "feet")
  9190. },
  9191. {
  9192. name: "Macro+",
  9193. height: math.unit(955, "feet")
  9194. },
  9195. {
  9196. name: "Megamacro",
  9197. height: math.unit(8990, "feet")
  9198. },
  9199. {
  9200. name: "Gigmacro",
  9201. height: math.unit(9310, "miles")
  9202. },
  9203. {
  9204. name: "Teramacro",
  9205. height: math.unit(1567005010, "miles")
  9206. },
  9207. {
  9208. name: "Examacro",
  9209. height: math.unit(1425, "parsecs")
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(400, "feet"),
  9218. weight: math.unit(44444444, "lb"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/major-colonel/front.svg"
  9222. }
  9223. },
  9224. back: {
  9225. height: math.unit(400, "feet"),
  9226. weight: math.unit(44444444, "lb"),
  9227. name: "Back",
  9228. image: {
  9229. source: "./media/characters/major-colonel/back.svg"
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(400, "feet"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9243. {
  9244. catFront: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "lb"),
  9247. name: "Front (Cat Side)",
  9248. image: {
  9249. source: "./media/characters/axel-lycan/cat-front.svg",
  9250. extra: 430 / 402,
  9251. bottom: 43 / 472.35
  9252. }
  9253. },
  9254. catBack: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(120, "lb"),
  9257. name: "Back (Cat Side)",
  9258. image: {
  9259. source: "./media/characters/axel-lycan/cat-back.svg",
  9260. extra: 447 / 419,
  9261. bottom: 23.3 / 469
  9262. }
  9263. },
  9264. wolfFront: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(120, "lb"),
  9267. name: "Front (Wolf Side)",
  9268. image: {
  9269. source: "./media/characters/axel-lycan/wolf-front.svg",
  9270. extra: 485 / 456,
  9271. bottom: 19 / 504
  9272. }
  9273. },
  9274. wolfBack: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(120, "lb"),
  9277. name: "Back (Wolf Side)",
  9278. image: {
  9279. source: "./media/characters/axel-lycan/wolf-back.svg",
  9280. extra: 475 / 438,
  9281. bottom: 39.2 / 514
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(1, "km"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(5 + 9 / 12, "feet"),
  9298. weight: math.unit(175, "lb"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/vanrel-hyena/front.svg",
  9302. extra: 1086 / 1010,
  9303. bottom: 0.04
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(5 + 9 / 12, "feet"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(6, "feet"),
  9320. weight: math.unit(103, "lb"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/abbott-absol/front.svg",
  9324. extra: 2010 / 1842
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Megamicro",
  9331. height: math.unit(0.1, "mm")
  9332. },
  9333. {
  9334. name: "Micro",
  9335. height: math.unit(1, "inch")
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(6, "feet"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(264, "lb"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/hector/front.svg",
  9353. extra: 2280 / 2130,
  9354. bottom: 0.07
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(12.25, "foot"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(160, "feet")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(150, "lb"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/sal/front.svg",
  9379. extra: 1846 / 1699,
  9380. bottom: 0.04
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Megamacro",
  9387. height: math.unit(10, "miles"),
  9388. default: true
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9394. {
  9395. front: {
  9396. height: math.unit(3, "meters"),
  9397. weight: math.unit(450, "kg"),
  9398. name: "front",
  9399. image: {
  9400. source: "./media/characters/ranger/front.svg",
  9401. extra: 2401 / 2243,
  9402. bottom: 0.05
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(3, "meters"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(14, "feet"),
  9419. weight: math.unit(800, "kg"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/theresa/front.svg",
  9423. extra: 3575 / 3346,
  9424. bottom: 0.03
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(14, "feet"),
  9432. default: true
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9438. {
  9439. front: {
  9440. height: math.unit(6, "feet"),
  9441. weight: math.unit(3, "kg"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/ine/front.svg",
  9445. extra: 678 / 539,
  9446. bottom: 0.023
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(2.265, "feet"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(5, "feet"),
  9463. weight: math.unit(30, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/vial/front.svg",
  9467. extra: 1365 / 1277,
  9468. bottom: 0.04
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Normal",
  9475. height: math.unit(5, "feet"),
  9476. default: true
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9482. {
  9483. side: {
  9484. height: math.unit(3.4, "meters"),
  9485. weight: math.unit(1000, "lb"),
  9486. name: "Side",
  9487. image: {
  9488. source: "./media/characters/rovoska/side.svg",
  9489. extra: 4403 / 1515
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(3.4, "meters"),
  9497. default: true
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(8, "feet"),
  9506. weight: math.unit(315, "lb"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/gunner-rotthbauer/front.svg"
  9510. }
  9511. },
  9512. back: {
  9513. height: math.unit(8, "feet"),
  9514. weight: math.unit(315, "lb"),
  9515. name: "Back",
  9516. image: {
  9517. source: "./media/characters/gunner-rotthbauer/back.svg"
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Micro",
  9524. height: math.unit(3.5, "inches")
  9525. },
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(8, "feet"),
  9529. default: true
  9530. },
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(250, "feet")
  9534. },
  9535. {
  9536. name: "Megamacro",
  9537. height: math.unit(1, "AU")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(5 + 5 / 12, "feet"),
  9546. weight: math.unit(140, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/allatia/front.svg",
  9550. extra: 1227 / 1180,
  9551. bottom: 0.027
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(5 + 5 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(250, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(8, "miles")
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/tene/front.svg",
  9580. extra: 1728 / 1578,
  9581. bottom: 0.022
  9582. }
  9583. },
  9584. stomping: {
  9585. height: math.unit(2.025, "meters"),
  9586. weight: math.unit(120, "lb"),
  9587. name: "Stomping",
  9588. image: {
  9589. source: "./media/characters/tene/stomping.svg",
  9590. extra: 938 / 873,
  9591. bottom: 0.01
  9592. }
  9593. },
  9594. sitting: {
  9595. height: math.unit(1, "meter"),
  9596. weight: math.unit(120, "lb"),
  9597. name: "Sitting",
  9598. image: {
  9599. source: "./media/characters/tene/sitting.svg",
  9600. extra: 437 / 415,
  9601. bottom: 0.1
  9602. }
  9603. },
  9604. feral: {
  9605. height: math.unit(3.9, "feet"),
  9606. weight: math.unit(250, "lb"),
  9607. name: "Feral",
  9608. image: {
  9609. source: "./media/characters/tene/feral.svg",
  9610. extra: 717 / 458,
  9611. bottom: 0.179
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(6, "feet")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(300, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(5, "miles")
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9633. {
  9634. side: {
  9635. height: math.unit(6, "feet"),
  9636. name: "Side",
  9637. image: {
  9638. source: "./media/characters/evander/side.svg",
  9639. extra: 877 / 477
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(0.83, "meters"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(12, "feet"),
  9656. weight: math.unit(1000, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9660. extra: 1762 / 1611
  9661. }
  9662. },
  9663. back: {
  9664. height: math.unit(12, "feet"),
  9665. weight: math.unit(1000, "lb"),
  9666. name: "Back",
  9667. image: {
  9668. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9669. extra: 1762 / 1611
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(12, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Kaiju",
  9681. height: math.unit(150, "feet")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(150, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/zero-alurus/front.svg"
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/zero-alurus/back.svg"
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(5 + 10 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(60, "feet"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Macro+",
  9717. height: math.unit(450, "feet")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(200, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/mega-shi/front.svg",
  9730. extra: 1279 / 1250,
  9731. bottom: 0.02
  9732. }
  9733. },
  9734. back: {
  9735. height: math.unit(6, "feet"),
  9736. weight: math.unit(200, "lb"),
  9737. name: "Back",
  9738. image: {
  9739. source: "./media/characters/mega-shi/back.svg",
  9740. extra: 1279 / 1250,
  9741. bottom: 0.02
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(16 + 6 / 12, "feet")
  9749. },
  9750. {
  9751. name: "Third Dimension",
  9752. height: math.unit(40, "meters")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(660, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Megamacro",
  9761. height: math.unit(10, "miles")
  9762. },
  9763. {
  9764. name: "Planetary Launch",
  9765. height: math.unit(500, "miles")
  9766. },
  9767. {
  9768. name: "Interstellar",
  9769. height: math.unit(1e9, "miles")
  9770. },
  9771. {
  9772. name: "Leaving the Universe",
  9773. height: math.unit(1, "gigaparsec")
  9774. },
  9775. {
  9776. name: "Travelling Universes",
  9777. height: math.unit(30e15, "parsecs")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(150, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/odyssey/front.svg",
  9790. extra: 1782 / 1582,
  9791. bottom: 0.01
  9792. }
  9793. },
  9794. side: {
  9795. height: math.unit(5.7, "feet"),
  9796. weight: math.unit(140, "lb"),
  9797. name: "Side",
  9798. image: {
  9799. source: "./media/characters/odyssey/side.svg",
  9800. extra: 6462 / 5700
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 4 / 12, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(1, "km")
  9812. },
  9813. {
  9814. name: "Megamacro",
  9815. height: math.unit(3000, "km")
  9816. },
  9817. {
  9818. name: "Gigamacro",
  9819. height: math.unit(1, "AU"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "Omniversal",
  9824. height: math.unit(100e14, "lightyears")
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9830. {
  9831. front: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(300, "lb"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/mekuto/front.svg",
  9837. extra: 921 / 832,
  9838. bottom: 0.03
  9839. }
  9840. },
  9841. hand: {
  9842. height: math.unit(6 / 10.24, "feet"),
  9843. name: "Hand",
  9844. image: {
  9845. source: "./media/characters/mekuto/hand.svg"
  9846. }
  9847. },
  9848. foot: {
  9849. height: math.unit(6 / 5.05, "feet"),
  9850. name: "Foot",
  9851. image: {
  9852. source: "./media/characters/mekuto/foot.svg"
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Minimicro",
  9859. height: math.unit(0.2, "inches")
  9860. },
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(1.5, "inches")
  9864. },
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(5 + 11 / 12, "feet"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Minimacro",
  9872. height: math.unit(17 + 9 / 12, "feet")
  9873. },
  9874. {
  9875. name: "Macro",
  9876. height: math.unit(177.5, "feet")
  9877. },
  9878. {
  9879. name: "Megamacro",
  9880. height: math.unit(152, "miles")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(6.5, "inches"),
  9889. weight: math.unit(13, "oz"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/dafydd-tomos/front.svg",
  9893. extra: 2990 / 2603,
  9894. bottom: 0.03
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Micro",
  9901. height: math.unit(6.5, "inches"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(6, "feet"),
  9911. weight: math.unit(150, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/splinter/front.svg",
  9915. extra: 2990 / 2882,
  9916. bottom: 0.04
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(150, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/splinter/back.svg",
  9925. extra: 2990 / 2882,
  9926. bottom: 0.04
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(6, "feet")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(230, "meters"),
  9938. default: true
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(4 + 10 / 12, "feet"),
  9947. weight: math.unit(480, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/snow-gabumon/front.svg",
  9951. extra: 1140 / 963,
  9952. bottom: 0.058
  9953. }
  9954. },
  9955. back: {
  9956. height: math.unit(4 + 10 / 12, "feet"),
  9957. weight: math.unit(480, "lb"),
  9958. name: "Back",
  9959. image: {
  9960. source: "./media/characters/snow-gabumon/back.svg",
  9961. extra: 1115 / 962,
  9962. bottom: 0.041
  9963. }
  9964. },
  9965. frontUndresed: {
  9966. height: math.unit(4 + 10 / 12, "feet"),
  9967. weight: math.unit(480, "lb"),
  9968. name: "Front (Undressed)",
  9969. image: {
  9970. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9971. extra: 1061 / 960,
  9972. bottom: 0.045
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(1, "inch")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(4 + 10 / 12, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(200, "feet")
  9989. },
  9990. {
  9991. name: "Megamacro",
  9992. height: math.unit(120, "miles")
  9993. },
  9994. {
  9995. name: "Gigamacro",
  9996. height: math.unit(9800, "miles")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(1.7, "meters"),
  10005. weight: math.unit(140, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/moody/front.svg",
  10009. extra: 3226 / 3007,
  10010. bottom: 0.087
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(1, "mm")
  10018. },
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(1.7, "meters"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(80, "meters")
  10027. },
  10028. {
  10029. name: "Macro+",
  10030. height: math.unit(500, "meters")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(150, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/zyas/front.svg",
  10043. extra: 1180 / 1120,
  10044. bottom: 0.045
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(10, "feet"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Macro",
  10056. height: math.unit(500, "feet")
  10057. },
  10058. {
  10059. name: "Megamacro",
  10060. height: math.unit(5, "miles")
  10061. },
  10062. {
  10063. name: "Teramacro",
  10064. height: math.unit(150000, "miles")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/cuon/front.svg",
  10077. extra: 1390 / 1320,
  10078. bottom: 0.008
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(3, "inches")
  10086. },
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(18 + 9 / 12, "feet"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(360, "feet")
  10095. },
  10096. {
  10097. name: "Megamacro",
  10098. height: math.unit(360, "miles")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(2.4, "meters"),
  10107. weight: math.unit(70, "kg"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/nyanuxk/front.svg",
  10111. extra: 1172 / 1084,
  10112. bottom: 0.065
  10113. }
  10114. },
  10115. side: {
  10116. height: math.unit(2.4, "meters"),
  10117. weight: math.unit(70, "kg"),
  10118. name: "Side",
  10119. image: {
  10120. source: "./media/characters/nyanuxk/side.svg",
  10121. extra: 1190 / 1132,
  10122. bottom: 0.007
  10123. }
  10124. },
  10125. back: {
  10126. height: math.unit(2.4, "meters"),
  10127. weight: math.unit(70, "kg"),
  10128. name: "Back",
  10129. image: {
  10130. source: "./media/characters/nyanuxk/back.svg",
  10131. extra: 1200 / 1141,
  10132. bottom: 0.015
  10133. }
  10134. },
  10135. foot: {
  10136. height: math.unit(0.52, "meters"),
  10137. name: "Foot",
  10138. image: {
  10139. source: "./media/characters/nyanuxk/foot.svg"
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Micro",
  10146. height: math.unit(2, "cm")
  10147. },
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(2.4, "meters"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Smaller Macro",
  10155. height: math.unit(120, "meters")
  10156. },
  10157. {
  10158. name: "Bigger Macro",
  10159. height: math.unit(1.2, "km")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(15, "kilometers")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(2000, "km")
  10168. },
  10169. {
  10170. name: "Teramacro",
  10171. height: math.unit(500000, "km")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10177. {
  10178. side: {
  10179. height: math.unit(6, "feet"),
  10180. name: "Side",
  10181. image: {
  10182. source: "./media/characters/ailbhe/side.svg",
  10183. extra: 757 / 464,
  10184. bottom: 0.041
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(1.07, "meters"),
  10192. default: true
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(120, "kg"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/zevulfius/front.svg",
  10205. extra: 965 / 903
  10206. }
  10207. },
  10208. side: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(120, "kg"),
  10211. name: "Side",
  10212. image: {
  10213. source: "./media/characters/zevulfius/side.svg",
  10214. extra: 939 / 900
  10215. }
  10216. },
  10217. back: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(120, "kg"),
  10220. name: "Back",
  10221. image: {
  10222. source: "./media/characters/zevulfius/back.svg",
  10223. extra: 918 / 854,
  10224. bottom: 0.005
  10225. }
  10226. },
  10227. foot: {
  10228. height: math.unit(6 / 3.72, "feet"),
  10229. name: "Foot",
  10230. image: {
  10231. source: "./media/characters/zevulfius/foot.svg"
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Macro",
  10238. height: math.unit(750, "meters")
  10239. },
  10240. {
  10241. name: "Megamacro",
  10242. height: math.unit(20, "km"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Gigamacro",
  10247. height: math.unit(2000, "km")
  10248. },
  10249. {
  10250. name: "Teramacro",
  10251. height: math.unit(250000, "km")
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10257. {
  10258. front: {
  10259. height: math.unit(100, "feet"),
  10260. weight: math.unit(350, "kg"),
  10261. name: "Front",
  10262. image: {
  10263. source: "./media/characters/rikes/front.svg",
  10264. extra: 1565 / 1483,
  10265. bottom: 0.017
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(100, "feet"),
  10273. default: true
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10279. {
  10280. anthro: {
  10281. height: math.unit(8, "feet"),
  10282. weight: math.unit(120, "kg"),
  10283. name: "Anthro",
  10284. image: {
  10285. source: "./media/characters/adam-silver-mane/anthro.svg",
  10286. extra: 5743 / 5339,
  10287. bottom: 0.07
  10288. }
  10289. },
  10290. taur: {
  10291. height: math.unit(16, "feet"),
  10292. weight: math.unit(1500, "kg"),
  10293. name: "Taur",
  10294. image: {
  10295. source: "./media/characters/adam-silver-mane/taur.svg",
  10296. extra: 1713 / 1571,
  10297. bottom: 0.01
  10298. }
  10299. },
  10300. },
  10301. [
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(8, "feet")
  10305. },
  10306. {
  10307. name: "Minimacro",
  10308. height: math.unit(80, "feet")
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(800, "feet"),
  10313. default: true
  10314. },
  10315. {
  10316. name: "Megamacro",
  10317. height: math.unit(8000, "feet")
  10318. },
  10319. {
  10320. name: "Gigamacro",
  10321. height: math.unit(800, "miles")
  10322. },
  10323. {
  10324. name: "Teramacro",
  10325. height: math.unit(80000, "miles")
  10326. },
  10327. {
  10328. name: "Celestial",
  10329. height: math.unit(8e6, "miles")
  10330. },
  10331. {
  10332. name: "Star Dragon",
  10333. height: math.unit(800000, "parsecs")
  10334. },
  10335. {
  10336. name: "Godly",
  10337. height: math.unit(800, "teraparsecs")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/ky'owin/front.svg",
  10350. extra: 3888 / 3068,
  10351. bottom: 0.015
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(6 + 8 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Large",
  10362. height: math.unit(68, "feet")
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(132, "feet")
  10367. },
  10368. {
  10369. name: "Macro+",
  10370. height: math.unit(340, "feet")
  10371. },
  10372. {
  10373. name: "Macro++",
  10374. height: math.unit(680, "feet"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Megamacro",
  10379. height: math.unit(1, "mile")
  10380. },
  10381. {
  10382. name: "Megamacro+",
  10383. height: math.unit(10, "miles")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(4, "feet"),
  10392. weight: math.unit(50, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/mal/front.svg",
  10396. extra: 785 / 724,
  10397. bottom: 0.07
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Micro",
  10404. height: math.unit(4, "inches")
  10405. },
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(4, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Macro",
  10413. height: math.unit(200, "feet")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10419. {
  10420. front: {
  10421. height: math.unit(6, "feet"),
  10422. weight: math.unit(150, "lb"),
  10423. name: "Front",
  10424. image: {
  10425. source: "./media/characters/jordan-deware/front.svg",
  10426. extra: 1191 / 1012
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Nano",
  10433. height: math.unit(0.01, "mm")
  10434. },
  10435. {
  10436. name: "Minimicro",
  10437. height: math.unit(1, "mm")
  10438. },
  10439. {
  10440. name: "Micro",
  10441. height: math.unit(0.5, "inches")
  10442. },
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(4, "feet"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Minimacro",
  10450. height: math.unit(40, "meters")
  10451. },
  10452. {
  10453. name: "Small Macro",
  10454. height: math.unit(400, "meters")
  10455. },
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(4, "miles")
  10459. },
  10460. {
  10461. name: "Megamacro",
  10462. height: math.unit(40, "miles")
  10463. },
  10464. {
  10465. name: "Megamacro+",
  10466. height: math.unit(400, "miles")
  10467. },
  10468. {
  10469. name: "Gigamacro",
  10470. height: math.unit(400000, "miles")
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10476. {
  10477. side: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(150, "lb"),
  10480. name: "Side",
  10481. image: {
  10482. source: "./media/characters/kimiko/side.svg",
  10483. extra: 600 / 358
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(15, "feet"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Macro",
  10495. height: math.unit(220, "feet")
  10496. },
  10497. {
  10498. name: "Macro+",
  10499. height: math.unit(1450, "feet")
  10500. },
  10501. {
  10502. name: "Megamacro",
  10503. height: math.unit(11500, "feet")
  10504. },
  10505. {
  10506. name: "Gigamacro",
  10507. height: math.unit(9500, "miles")
  10508. },
  10509. {
  10510. name: "Teramacro",
  10511. height: math.unit(2208005005, "miles")
  10512. },
  10513. {
  10514. name: "Examacro",
  10515. height: math.unit(2750, "parsecs")
  10516. },
  10517. {
  10518. name: "Zettamacro",
  10519. height: math.unit(101500, "parsecs")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(6, "feet"),
  10528. weight: math.unit(70, "kg"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/andrew-sleepy/front.svg"
  10532. }
  10533. },
  10534. side: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(70, "kg"),
  10537. name: "Side",
  10538. image: {
  10539. source: "./media/characters/andrew-sleepy/side.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Micro",
  10546. height: math.unit(1, "mm"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/judio/front.svg",
  10560. extra: 1258 / 1110
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(5 + 6 / 12, "feet")
  10568. },
  10569. {
  10570. name: "Macro",
  10571. height: math.unit(1000, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Megamacro",
  10576. height: math.unit(10, "miles")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(68, "kg"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/nomaxice/front.svg",
  10589. extra: 1498 / 1073,
  10590. bottom: 0.075
  10591. }
  10592. },
  10593. foot: {
  10594. height: math.unit(1.1, "feet"),
  10595. name: "Foot",
  10596. image: {
  10597. source: "./media/characters/nomaxice/foot.svg"
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Micro",
  10604. height: math.unit(8, "cm")
  10605. },
  10606. {
  10607. name: "Norm",
  10608. height: math.unit(1.82, "m")
  10609. },
  10610. {
  10611. name: "Norm+",
  10612. height: math.unit(8.8, "feet")
  10613. },
  10614. {
  10615. name: "Big",
  10616. height: math.unit(8, "meters"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(18, "meters")
  10622. },
  10623. {
  10624. name: "Macro+",
  10625. height: math.unit(88, "meters")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(12, "feet"),
  10634. weight: math.unit(1.5, "tons"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/dydros/front.svg",
  10638. extra: 863 / 800,
  10639. bottom: 0.015
  10640. }
  10641. },
  10642. back: {
  10643. height: math.unit(12, "feet"),
  10644. weight: math.unit(1.5, "tons"),
  10645. name: "Back",
  10646. image: {
  10647. source: "./media/characters/dydros/back.svg",
  10648. extra: 900 / 843,
  10649. bottom: 0.005
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(12, "feet"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(100, "kg"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/riggi/front.svg",
  10670. extra: 5787 / 5303
  10671. }
  10672. },
  10673. hyper: {
  10674. height: math.unit(6 * 5 / 3, "feet"),
  10675. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10676. name: "Hyper",
  10677. image: {
  10678. source: "./media/characters/riggi/hyper.svg",
  10679. extra: 3595 / 3485
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Small Macro",
  10686. height: math.unit(50, "feet")
  10687. },
  10688. {
  10689. name: "Default",
  10690. height: math.unit(200, "feet"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Loom",
  10695. height: math.unit(10000, "feet")
  10696. },
  10697. {
  10698. name: "Cruising Altitude",
  10699. height: math.unit(30000, "feet")
  10700. },
  10701. {
  10702. name: "Megamacro",
  10703. height: math.unit(100, "miles")
  10704. },
  10705. {
  10706. name: "Continent Sized",
  10707. height: math.unit(2800, "miles")
  10708. },
  10709. {
  10710. name: "Earth Sized",
  10711. height: math.unit(8000, "miles")
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(250, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/alexi/front.svg",
  10724. extra: 3483 / 3291,
  10725. bottom: 0.04
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(250, "lb"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/alexi/back.svg",
  10734. extra: 3533 / 3356,
  10735. bottom: 0.021
  10736. }
  10737. },
  10738. frontTransforming: {
  10739. height: math.unit(8.58, "feet"),
  10740. weight: math.unit(1300, "lb"),
  10741. name: "Transforming",
  10742. image: {
  10743. source: "./media/characters/alexi/front-transforming.svg",
  10744. extra: 437 / 409,
  10745. bottom: 19 / 458.66
  10746. }
  10747. },
  10748. frontTransformed: {
  10749. height: math.unit(12.5, "feet"),
  10750. weight: math.unit(4000, "lb"),
  10751. name: "Transformed",
  10752. image: {
  10753. source: "./media/characters/alexi/front-transformed.svg",
  10754. extra: 639 / 614,
  10755. bottom: 30.55 / 671
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Normal",
  10762. height: math.unit(14, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Minimacro",
  10767. height: math.unit(30, "meters")
  10768. },
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(500, "meters")
  10772. },
  10773. {
  10774. name: "Megamacro",
  10775. height: math.unit(9000, "km")
  10776. },
  10777. {
  10778. name: "Teramacro",
  10779. height: math.unit(384000, "km")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/kayroo/front.svg",
  10792. extra: 1153 / 1038,
  10793. bottom: 0.06
  10794. }
  10795. },
  10796. foot: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Foot",
  10800. image: {
  10801. source: "./media/characters/kayroo/foot.svg"
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(8, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Minimacro",
  10813. height: math.unit(250, "feet")
  10814. },
  10815. {
  10816. name: "Macro",
  10817. height: math.unit(2800, "feet")
  10818. },
  10819. {
  10820. name: "Megamacro",
  10821. height: math.unit(5200, "feet")
  10822. },
  10823. {
  10824. name: "Gigamacro",
  10825. height: math.unit(27000, "feet")
  10826. },
  10827. {
  10828. name: "Omega",
  10829. height: math.unit(45000, "feet")
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(18, "feet"),
  10838. weight: math.unit(5800, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/rhys/front.svg",
  10842. extra: 3386 / 3090,
  10843. bottom: 0.07
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(18, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Working Size",
  10855. height: math.unit(200, "feet")
  10856. },
  10857. {
  10858. name: "Demolition Size",
  10859. height: math.unit(2000, "feet")
  10860. },
  10861. {
  10862. name: "Maximum Licensed Size",
  10863. height: math.unit(5, "miles")
  10864. },
  10865. {
  10866. name: "Maximum Observed Size",
  10867. height: math.unit(10, "yottameters")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10873. {
  10874. front: {
  10875. height: math.unit(6, "feet"),
  10876. weight: math.unit(250, "lb"),
  10877. name: "Front",
  10878. image: {
  10879. source: "./media/characters/toto/front.svg",
  10880. extra: 527 / 479,
  10881. bottom: 0.05
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Micro",
  10888. height: math.unit(3, "feet")
  10889. },
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(10, "feet")
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(150, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Megamacro",
  10901. height: math.unit(1200, "feet")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "King", species: ["lion"], tags: ["anthro"] },
  10907. {
  10908. back: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(150, "lb"),
  10911. name: "Back",
  10912. image: {
  10913. source: "./media/characters/king/back.svg"
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Micro",
  10920. height: math.unit(2, "inches")
  10921. },
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(8, "feet")
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(200, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(50, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10939. {
  10940. anthro: {
  10941. height: math.unit(6 + 5 / 12, "feet"),
  10942. weight: math.unit(280, "lb"),
  10943. name: "Anthro",
  10944. image: {
  10945. source: "./media/characters/cordite/anthro.svg",
  10946. extra: 1986 / 1905,
  10947. bottom: 0.025
  10948. }
  10949. },
  10950. feral: {
  10951. height: math.unit(2, "feet"),
  10952. weight: math.unit(90, "lb"),
  10953. name: "Feral",
  10954. image: {
  10955. source: "./media/characters/cordite/feral.svg",
  10956. extra: 1260 / 755,
  10957. bottom: 0.05
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(6 + 5 / 12, "feet"),
  10965. default: true
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(150, "lb"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/pianostrong/front.svg",
  10978. extra: 6577 / 6254,
  10979. bottom: 0.02
  10980. }
  10981. },
  10982. side: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Side",
  10986. image: {
  10987. source: "./media/characters/pianostrong/side.svg",
  10988. extra: 6106 / 5730
  10989. }
  10990. },
  10991. back: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Back",
  10995. image: {
  10996. source: "./media/characters/pianostrong/back.svg",
  10997. extra: 6085 / 5733,
  10998. bottom: 0.01
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(100, "feet")
  11006. },
  11007. {
  11008. name: "Macro+",
  11009. height: math.unit(300, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro++",
  11014. height: math.unit(1000, "feet")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/kona/front.svg",
  11027. extra: 2960 / 2629,
  11028. bottom: 0.005
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(11 + 8 / 12, "feet")
  11036. },
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(850, "feet"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Macro+",
  11044. height: math.unit(1.5, "km"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Megamacro",
  11049. height: math.unit(80, "miles")
  11050. },
  11051. {
  11052. name: "Gigamacro",
  11053. height: math.unit(3500, "miles")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11059. {
  11060. side: {
  11061. height: math.unit(1.9, "meters"),
  11062. weight: math.unit(326, "kg"),
  11063. name: "Side",
  11064. image: {
  11065. source: "./media/characters/levi/side.svg",
  11066. extra: 1704 / 1334,
  11067. bottom: 0.02
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(1.9, "meters"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(20, "meters")
  11080. },
  11081. {
  11082. name: "Macro+",
  11083. height: math.unit(200, "meters")
  11084. },
  11085. {
  11086. name: "Megamacro",
  11087. height: math.unit(2, "km")
  11088. },
  11089. {
  11090. name: "Megamacro+",
  11091. height: math.unit(20, "km")
  11092. },
  11093. {
  11094. name: "Gigamacro",
  11095. height: math.unit(2500, "km")
  11096. },
  11097. {
  11098. name: "Gigamacro+",
  11099. height: math.unit(120000, "km")
  11100. },
  11101. {
  11102. name: "Teramacro",
  11103. height: math.unit(7.77e6, "km")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6 + 4 / 12, "feet"),
  11112. weight: math.unit(188, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/bmc/front.svg",
  11116. extra: 1067 / 1022,
  11117. bottom: 0.047
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Human-sized",
  11124. height: math.unit(6 + 4 / 12, "feet")
  11125. },
  11126. {
  11127. name: "Small",
  11128. height: math.unit(250, "feet")
  11129. },
  11130. {
  11131. name: "Normal",
  11132. height: math.unit(1250, "feet"),
  11133. default: true
  11134. },
  11135. {
  11136. name: "Good Day",
  11137. height: math.unit(88, "miles")
  11138. },
  11139. {
  11140. name: "Largest Measured Size",
  11141. height: math.unit(11.2e6, "lightyears")
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11147. {
  11148. front: {
  11149. height: math.unit(20, "feet"),
  11150. weight: math.unit(2016, "kg"),
  11151. name: "Front",
  11152. image: {
  11153. source: "./media/characters/sven-the-kaiju/front.svg",
  11154. extra: 1277/1250,
  11155. bottom: 35/1312
  11156. }
  11157. },
  11158. mouth: {
  11159. height: math.unit(1.85, "feet"),
  11160. name: "Mouth",
  11161. image: {
  11162. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Fairy",
  11169. height: math.unit(6, "inches")
  11170. },
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(20, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Rampage",
  11178. height: math.unit(200, "feet")
  11179. },
  11180. {
  11181. name: "Archfey Forest Guardian",
  11182. height: math.unit(1, "mile")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(4, "meters"),
  11191. weight: math.unit(2, "tons"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/marik/front.svg",
  11195. extra: 1057 / 1003,
  11196. bottom: 0.08
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(4, "meters"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(20, "meters")
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(50, "km")
  11213. },
  11214. {
  11215. name: "Gigamacro",
  11216. height: math.unit(100, "km")
  11217. },
  11218. {
  11219. name: "Alpha Macro",
  11220. height: math.unit(7.88e7, "yottameters")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(110, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/mel/front.svg",
  11233. extra: 736 / 617,
  11234. bottom: 0.017
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Pico",
  11241. height: math.unit(3, "pm")
  11242. },
  11243. {
  11244. name: "Nano",
  11245. height: math.unit(3, "nm")
  11246. },
  11247. {
  11248. name: "Micro",
  11249. height: math.unit(0.3, "mm"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Micro+",
  11254. height: math.unit(3, "mm")
  11255. },
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(5 + 10.5 / 12, "feet")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11264. {
  11265. kaiju: {
  11266. height: math.unit(1.75, "meters"),
  11267. weight: math.unit(55, "kg"),
  11268. name: "Kaiju",
  11269. image: {
  11270. source: "./media/characters/lykonous/kaiju.svg",
  11271. extra: 1055 / 946,
  11272. bottom: 0.135
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(2.5, "meters"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Kaiju Dragon",
  11284. height: math.unit(60, "meters")
  11285. },
  11286. {
  11287. name: "Mega Kaiju",
  11288. height: math.unit(120, "km")
  11289. },
  11290. {
  11291. name: "Giga Kaiju",
  11292. height: math.unit(200, "megameters")
  11293. },
  11294. {
  11295. name: "Terra Kaiju",
  11296. height: math.unit(400, "gigameters")
  11297. },
  11298. {
  11299. name: "Kaiju Dragon God",
  11300. height: math.unit(13000, "exaparsecs")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(150, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/blü/front.svg",
  11313. extra: 1883 / 1564,
  11314. bottom: 0.031
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(13, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Big Boi",
  11326. height: math.unit(150, "meters")
  11327. },
  11328. {
  11329. name: "Mini Stomper",
  11330. height: math.unit(300, "meters")
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(1000, "meters")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(11000, "meters")
  11339. },
  11340. {
  11341. name: "Gigamacro",
  11342. height: math.unit(11000, "km")
  11343. },
  11344. {
  11345. name: "Teramacro",
  11346. height: math.unit(420000, "km")
  11347. },
  11348. {
  11349. name: "Examacro",
  11350. height: math.unit(120, "parsecs")
  11351. },
  11352. {
  11353. name: "God Tho",
  11354. height: math.unit(98000000000, "parsecs")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11360. {
  11361. taurFront: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(200, "lb"),
  11364. name: "Taur (Front)",
  11365. image: {
  11366. source: "./media/characters/scales/taur-front.svg",
  11367. extra: 1,
  11368. bottom: 0.05
  11369. }
  11370. },
  11371. taurBack: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(200, "lb"),
  11374. name: "Taur (Back)",
  11375. image: {
  11376. source: "./media/characters/scales/taur-back.svg",
  11377. extra: 1,
  11378. bottom: 0.08
  11379. }
  11380. },
  11381. anthro: {
  11382. height: math.unit(6 * 7 / 12, "feet"),
  11383. weight: math.unit(100, "lb"),
  11384. name: "Anthro",
  11385. image: {
  11386. source: "./media/characters/scales/anthro.svg",
  11387. extra: 1,
  11388. bottom: 0.06
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(12, "feet"),
  11396. default: true
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(150, "lb"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/koragos/front.svg",
  11409. extra: 841 / 794,
  11410. bottom: 0.035
  11411. }
  11412. },
  11413. back: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(150, "lb"),
  11416. name: "Back",
  11417. image: {
  11418. source: "./media/characters/koragos/back.svg",
  11419. extra: 841 / 810,
  11420. bottom: 0.022
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(6 + 11 / 12, "feet"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(490, "feet")
  11433. },
  11434. {
  11435. name: "Megamacro",
  11436. height: math.unit(10, "miles")
  11437. },
  11438. {
  11439. name: "Gigamacro",
  11440. height: math.unit(50, "miles")
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11446. {
  11447. front: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(250, "lb"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/xylrem/front.svg",
  11453. extra: 3323 / 3050,
  11454. bottom: 0.065
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Micro",
  11461. height: math.unit(4, "feet")
  11462. },
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(16, "feet"),
  11466. default: true
  11467. },
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(2720, "feet")
  11471. },
  11472. {
  11473. name: "Megamacro",
  11474. height: math.unit(25000, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(8, "feet"),
  11483. weight: math.unit(250, "kg"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/ikideru/front.svg",
  11487. extra: 930 / 870,
  11488. bottom: 0.087
  11489. }
  11490. },
  11491. back: {
  11492. height: math.unit(8, "feet"),
  11493. weight: math.unit(250, "kg"),
  11494. name: "Back",
  11495. image: {
  11496. source: "./media/characters/ikideru/back.svg",
  11497. extra: 919 / 852,
  11498. bottom: 0.055
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Rare",
  11505. height: math.unit(8, "feet"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Playful Loom",
  11510. height: math.unit(80, "feet")
  11511. },
  11512. {
  11513. name: "City Leaner",
  11514. height: math.unit(230, "feet")
  11515. },
  11516. {
  11517. name: "Megamacro",
  11518. height: math.unit(2500, "feet")
  11519. },
  11520. {
  11521. name: "Gigamacro",
  11522. height: math.unit(26400, "feet")
  11523. },
  11524. {
  11525. name: "Tectonic Shifter",
  11526. height: math.unit(1.7, "megameters")
  11527. },
  11528. {
  11529. name: "Planet Carer",
  11530. height: math.unit(21, "megameters")
  11531. },
  11532. {
  11533. name: "God",
  11534. height: math.unit(11157.22, "parsecs")
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11540. {
  11541. front: {
  11542. height: math.unit(6, "feet"),
  11543. weight: math.unit(120, "lb"),
  11544. name: "Front",
  11545. image: {
  11546. source: "./media/characters/neo/front.svg"
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Micro",
  11553. height: math.unit(2, "inches"),
  11554. default: true
  11555. },
  11556. {
  11557. name: "Human Size",
  11558. height: math.unit(5 + 8 / 12, "feet")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(13 + 10 / 12, "feet"),
  11567. weight: math.unit(5320, "lb"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/chauncey-chantz/front.svg",
  11571. extra: 1587 / 1435,
  11572. bottom: 0.02
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(13 + 10 / 12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(45, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(250, "miles")
  11589. },
  11590. {
  11591. name: "Planetary",
  11592. height: math.unit(10000, "miles")
  11593. },
  11594. {
  11595. name: "Galactic",
  11596. height: math.unit(40000, "parsecs")
  11597. },
  11598. {
  11599. name: "Universal",
  11600. height: math.unit(1, "yottameter")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(150, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/epifox/front.svg",
  11613. extra: 1,
  11614. bottom: 0.075
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Micro",
  11621. height: math.unit(6, "inches")
  11622. },
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(12, "feet"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(3810, "feet")
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(500, "miles")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(1.8796, "m"),
  11643. weight: math.unit(230, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/colin-t/front.svg",
  11647. extra: 1272 / 1193,
  11648. bottom: 0.07
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(0.571, "meters")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(1.8796, "meters"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Tall",
  11664. height: math.unit(4, "meters")
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(67.241, "meters")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(371.856, "meters")
  11673. },
  11674. {
  11675. name: "Planetary",
  11676. height: math.unit(12631.5689, "km")
  11677. },
  11678. ]
  11679. ))
  11680. characterMakers.push(() => makeCharacter(
  11681. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11682. {
  11683. front: {
  11684. height: math.unit(1.85, "meters"),
  11685. weight: math.unit(80, "kg"),
  11686. name: "Front",
  11687. image: {
  11688. source: "./media/characters/matvei/front.svg",
  11689. extra: 614 / 594,
  11690. bottom: 0.01
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(1.85, "meters"),
  11698. default: true
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(5 + 9 / 12, "feet"),
  11707. weight: math.unit(70, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/quincy/front.svg",
  11711. extra: 3041 / 2751
  11712. }
  11713. },
  11714. back: {
  11715. height: math.unit(5 + 9 / 12, "feet"),
  11716. weight: math.unit(70, "lb"),
  11717. name: "Back",
  11718. image: {
  11719. source: "./media/characters/quincy/back.svg",
  11720. extra: 3041 / 2751
  11721. }
  11722. },
  11723. flying: {
  11724. height: math.unit(5 + 4 / 12, "feet"),
  11725. weight: math.unit(70, "lb"),
  11726. name: "Flying",
  11727. image: {
  11728. source: "./media/characters/quincy/flying.svg",
  11729. extra: 1044 / 930
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Micro",
  11736. height: math.unit(3, "cm")
  11737. },
  11738. {
  11739. name: "Normal",
  11740. height: math.unit(5 + 9 / 12, "feet")
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(200, "meters"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Megamacro",
  11749. height: math.unit(1000, "meters")
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(4 + 7 / 12, "feet"),
  11758. weight: math.unit(50, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/vanrel/front.svg",
  11762. extra: 1,
  11763. bottom: 0.02
  11764. }
  11765. },
  11766. frontAlt: {
  11767. height: math.unit(4 + 7 / 12, "feet"),
  11768. weight: math.unit(50, "lb"),
  11769. name: "Front-alt",
  11770. image: {
  11771. source: "./media/characters/vanrel/front-alt.svg",
  11772. extra: 1,
  11773. bottom: 15 / 1511
  11774. }
  11775. },
  11776. elemental: {
  11777. height: math.unit(3, "feet"),
  11778. weight: math.unit(50, "lb"),
  11779. name: "Elemental",
  11780. image: {
  11781. source: "./media/characters/vanrel/elemental.svg",
  11782. extra: 192.3 / 162.8,
  11783. bottom: 1.79 / 194.17
  11784. }
  11785. },
  11786. side: {
  11787. height: math.unit(4 + 7 / 12, "feet"),
  11788. weight: math.unit(50, "lb"),
  11789. name: "Side",
  11790. image: {
  11791. source: "./media/characters/vanrel/side.svg",
  11792. extra: 1,
  11793. bottom: 0.025
  11794. }
  11795. },
  11796. tome: {
  11797. height: math.unit(1.35, "feet"),
  11798. weight: math.unit(10, "lb"),
  11799. name: "Vanrel's Tome",
  11800. rename: true,
  11801. image: {
  11802. source: "./media/characters/vanrel/tome.svg"
  11803. }
  11804. },
  11805. beans: {
  11806. height: math.unit(0.89, "feet"),
  11807. name: "Beans",
  11808. image: {
  11809. source: "./media/characters/vanrel/beans.svg"
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(4 + 7 / 12, "feet"),
  11817. default: true
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(7 + 5 / 12, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/kuiper-vanrel/front.svg",
  11830. extra: 1118 / 1068,
  11831. bottom: 0.09
  11832. }
  11833. },
  11834. foot: {
  11835. height: math.unit(0.55, "meters"),
  11836. name: "Foot",
  11837. image: {
  11838. source: "./media/characters/kuiper-vanrel/foot.svg",
  11839. }
  11840. },
  11841. battle: {
  11842. height: math.unit(6.824, "feet"),
  11843. weight: math.unit(150, "lb"),
  11844. name: "Battle",
  11845. image: {
  11846. source: "./media/characters/kuiper-vanrel/battle.svg",
  11847. extra: 1466 / 1327,
  11848. bottom: 29 / 1492.5
  11849. }
  11850. },
  11851. battleAlt: {
  11852. height: math.unit(6.824, "feet"),
  11853. weight: math.unit(150, "lb"),
  11854. name: "Battle (Alt)",
  11855. image: {
  11856. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11857. extra: 2081 / 1965,
  11858. bottom: 40 / 2121
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(7 + 5 / 12, "feet"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(8 + 5 / 12, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/keset-vanrel/front.svg",
  11879. extra: 1150 / 1084,
  11880. bottom: 0.05
  11881. }
  11882. },
  11883. hand: {
  11884. height: math.unit(0.6, "meters"),
  11885. name: "Hand",
  11886. image: {
  11887. source: "./media/characters/keset-vanrel/hand.svg"
  11888. }
  11889. },
  11890. foot: {
  11891. height: math.unit(0.94978, "meters"),
  11892. name: "Foot",
  11893. image: {
  11894. source: "./media/characters/keset-vanrel/foot.svg"
  11895. }
  11896. },
  11897. battle: {
  11898. height: math.unit(7.408, "feet"),
  11899. weight: math.unit(150, "lb"),
  11900. name: "Battle",
  11901. image: {
  11902. source: "./media/characters/keset-vanrel/battle.svg",
  11903. extra: 1890 / 1386,
  11904. bottom: 73.28 / 1970
  11905. }
  11906. },
  11907. },
  11908. [
  11909. {
  11910. name: "Normal",
  11911. height: math.unit(8 + 5 / 12, "feet"),
  11912. default: true
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11918. {
  11919. front: {
  11920. height: math.unit(6, "feet"),
  11921. weight: math.unit(150, "lb"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/neos/front.svg",
  11925. extra: 1696 / 992,
  11926. bottom: 0.14
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(54, "cm"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(100, "m")
  11939. },
  11940. {
  11941. name: "Megamacro",
  11942. height: math.unit(10, "km")
  11943. },
  11944. {
  11945. name: "Megamacro+",
  11946. height: math.unit(100, "km")
  11947. },
  11948. {
  11949. name: "Gigamacro",
  11950. height: math.unit(100, "Mm")
  11951. },
  11952. {
  11953. name: "Teramacro",
  11954. height: math.unit(100, "Gm")
  11955. },
  11956. {
  11957. name: "Examacro",
  11958. height: math.unit(100, "Em")
  11959. },
  11960. {
  11961. name: "Godly",
  11962. height: math.unit(10000, "Ym")
  11963. },
  11964. {
  11965. name: "Beyond Godly",
  11966. height: math.unit(25, "multiverses")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11972. {
  11973. feminine: {
  11974. height: math.unit(5, "feet"),
  11975. weight: math.unit(100, "lb"),
  11976. name: "Feminine",
  11977. image: {
  11978. source: "./media/characters/sammy-mouse/feminine.svg",
  11979. extra: 2526 / 2425,
  11980. bottom: 0.123
  11981. }
  11982. },
  11983. masculine: {
  11984. height: math.unit(5, "feet"),
  11985. weight: math.unit(100, "lb"),
  11986. name: "Masculine",
  11987. image: {
  11988. source: "./media/characters/sammy-mouse/masculine.svg",
  11989. extra: 2526 / 2425,
  11990. bottom: 0.123
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Micro",
  11997. height: math.unit(5, "inches")
  11998. },
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(5, "feet"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(60, "feet")
  12007. },
  12008. ]
  12009. ))
  12010. characterMakers.push(() => makeCharacter(
  12011. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12012. {
  12013. front: {
  12014. height: math.unit(4, "feet"),
  12015. weight: math.unit(50, "lb"),
  12016. name: "Front",
  12017. image: {
  12018. source: "./media/characters/kole/front.svg",
  12019. extra: 1423 / 1303,
  12020. bottom: 0.025
  12021. }
  12022. },
  12023. back: {
  12024. height: math.unit(4, "feet"),
  12025. weight: math.unit(50, "lb"),
  12026. name: "Back",
  12027. image: {
  12028. source: "./media/characters/kole/back.svg",
  12029. extra: 1426 / 1280,
  12030. bottom: 0.02
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Normal",
  12037. height: math.unit(4, "feet"),
  12038. default: true
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(2 + 6 / 12, "feet"),
  12047. weight: math.unit(20, "lb"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/rufran/front.svg",
  12051. extra: 2041 / 1839,
  12052. bottom: 0.055
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(2 + 6 / 12, "feet"),
  12057. weight: math.unit(20, "lb"),
  12058. name: "Back",
  12059. image: {
  12060. source: "./media/characters/rufran/back.svg",
  12061. extra: 2054 / 1839,
  12062. bottom: 0.01
  12063. }
  12064. },
  12065. hand: {
  12066. height: math.unit(0.2166, "meters"),
  12067. name: "Hand",
  12068. image: {
  12069. source: "./media/characters/rufran/hand.svg"
  12070. }
  12071. },
  12072. foot: {
  12073. height: math.unit(0.185, "meters"),
  12074. name: "Foot",
  12075. image: {
  12076. source: "./media/characters/rufran/foot.svg"
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(1, "inch")
  12084. },
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(2 + 6 / 12, "feet"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Big",
  12092. height: math.unit(60, "feet")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(325, "feet")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12102. {
  12103. front: {
  12104. height: math.unit(0.3, "meters"),
  12105. weight: math.unit(3.5, "kg"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/chip/front.svg",
  12109. extra: 748 / 674
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Micro",
  12116. height: math.unit(1, "inch"),
  12117. default: true
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12123. {
  12124. side: {
  12125. height: math.unit(2.3, "meters"),
  12126. weight: math.unit(3500, "lb"),
  12127. name: "Side",
  12128. image: {
  12129. source: "./media/characters/torvid/side.svg",
  12130. extra: 1972 / 722,
  12131. bottom: 0.035
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(2.3, "meters"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(2, "meters"),
  12148. weight: math.unit(150.5, "kg"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/susan/front.svg",
  12152. extra: 693 / 635,
  12153. bottom: 0.05
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(505, "miles"),
  12161. default: true
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/raindrops/front.svg",
  12174. extra: 2655 / 2461,
  12175. bottom: 49 / 2705
  12176. }
  12177. },
  12178. back: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Back",
  12182. image: {
  12183. source: "./media/characters/raindrops/back.svg",
  12184. extra: 2574 / 2400,
  12185. bottom: 65 / 2634
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Micro",
  12192. height: math.unit(6, "inches")
  12193. },
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(6 + 2 / 12, "feet")
  12197. },
  12198. {
  12199. name: "Macro",
  12200. height: math.unit(131, "feet"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Megamacro",
  12205. height: math.unit(15, "miles")
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(4000, "miles")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(315000, "miles")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(2.794, "meters"),
  12222. weight: math.unit(325, "kg"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/tezwa/front.svg",
  12226. extra: 2083 / 1906,
  12227. bottom: 0.031
  12228. }
  12229. },
  12230. foot: {
  12231. height: math.unit(0.687, "meters"),
  12232. name: "Foot",
  12233. image: {
  12234. source: "./media/characters/tezwa/foot.svg"
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(9 + 2 / 12, "feet"),
  12242. default: true
  12243. },
  12244. ]
  12245. ))
  12246. characterMakers.push(() => makeCharacter(
  12247. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12248. {
  12249. front: {
  12250. height: math.unit(58, "feet"),
  12251. weight: math.unit(89000, "lb"),
  12252. name: "Front",
  12253. image: {
  12254. source: "./media/characters/typhus/front.svg",
  12255. extra: 816 / 800,
  12256. bottom: 0.065
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Macro",
  12263. height: math.unit(58, "feet"),
  12264. default: true
  12265. },
  12266. ]
  12267. ))
  12268. characterMakers.push(() => makeCharacter(
  12269. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12270. {
  12271. front: {
  12272. height: math.unit(12, "feet"),
  12273. weight: math.unit(6, "tonnes"),
  12274. name: "Front",
  12275. image: {
  12276. source: "./media/characters/lyra-von-wulf/front.svg",
  12277. extra: 1,
  12278. bottom: 0.10
  12279. }
  12280. },
  12281. frontMecha: {
  12282. height: math.unit(12, "feet"),
  12283. weight: math.unit(12, "tonnes"),
  12284. name: "Front (Mecha)",
  12285. image: {
  12286. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12287. extra: 1,
  12288. bottom: 0.042
  12289. }
  12290. },
  12291. maw: {
  12292. height: math.unit(2.2, "feet"),
  12293. name: "Maw",
  12294. image: {
  12295. source: "./media/characters/lyra-von-wulf/maw.svg"
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(12, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Classic",
  12307. height: math.unit(50, "feet")
  12308. },
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(500, "feet")
  12312. },
  12313. {
  12314. name: "Megamacro",
  12315. height: math.unit(1, "mile")
  12316. },
  12317. {
  12318. name: "Gigamacro",
  12319. height: math.unit(400, "miles")
  12320. },
  12321. {
  12322. name: "Teramacro",
  12323. height: math.unit(22000, "miles")
  12324. },
  12325. {
  12326. name: "Solarmacro",
  12327. height: math.unit(8600000, "miles")
  12328. },
  12329. {
  12330. name: "Galactic",
  12331. height: math.unit(1057000, "lightyears")
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(6 + 10 / 12, "feet"),
  12340. weight: math.unit(150, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/dixon/front.svg",
  12344. extra: 3361 / 3209,
  12345. bottom: 0.01
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(6 + 10 / 12, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Big",
  12357. height: math.unit(12, "meters")
  12358. },
  12359. {
  12360. name: "Macro",
  12361. height: math.unit(500, "meters")
  12362. },
  12363. {
  12364. name: "Megamacro",
  12365. height: math.unit(2, "km")
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12371. {
  12372. front: {
  12373. height: math.unit(185, "cm"),
  12374. weight: math.unit(68, "kg"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/kauko/front.svg",
  12378. extra: 1455 / 1421,
  12379. bottom: 0.03
  12380. }
  12381. },
  12382. back: {
  12383. height: math.unit(185, "cm"),
  12384. weight: math.unit(68, "kg"),
  12385. name: "Back",
  12386. image: {
  12387. source: "./media/characters/kauko/back.svg",
  12388. extra: 1455 / 1421,
  12389. bottom: 0.004
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(185, "cm"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(6, "feet"),
  12406. weight: math.unit(150, "kg"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/varg/front.svg",
  12410. extra: 1108 / 1018,
  12411. bottom: 0.0375
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(5, "meters")
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(200, "meters")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(20, "kilometers")
  12427. },
  12428. {
  12429. name: "True Size",
  12430. height: math.unit(211, "km"),
  12431. default: true
  12432. },
  12433. {
  12434. name: "Gigamacro",
  12435. height: math.unit(1000, "km")
  12436. },
  12437. {
  12438. name: "Gigamacro+",
  12439. height: math.unit(8000, "km")
  12440. },
  12441. {
  12442. name: "Teramacro",
  12443. height: math.unit(1000000, "km")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(7 + 7 / 12, "feet"),
  12452. weight: math.unit(267, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/dayza/front.svg",
  12456. extra: 1262 / 1200,
  12457. bottom: 0.035
  12458. }
  12459. },
  12460. side: {
  12461. height: math.unit(7 + 7 / 12, "feet"),
  12462. weight: math.unit(267, "lb"),
  12463. name: "Side",
  12464. image: {
  12465. source: "./media/characters/dayza/side.svg",
  12466. extra: 1295 / 1245,
  12467. bottom: 0.05
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(7 + 7 / 12, "feet"),
  12472. weight: math.unit(267, "lb"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/dayza/back.svg",
  12476. extra: 1241 / 1170
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(7 + 7 / 12, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(155, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6 + 5 / 12, "feet"),
  12497. weight: math.unit(160, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/xanthos/front.svg",
  12501. extra: 1,
  12502. bottom: 0.04
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(6 + 5 / 12, "feet"),
  12507. weight: math.unit(160, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/xanthos/back.svg",
  12511. extra: 1,
  12512. bottom: 0.03
  12513. }
  12514. },
  12515. hand: {
  12516. height: math.unit(0.928, "feet"),
  12517. name: "Hand",
  12518. image: {
  12519. source: "./media/characters/xanthos/hand.svg"
  12520. }
  12521. },
  12522. foot: {
  12523. height: math.unit(1.286, "feet"),
  12524. name: "Foot",
  12525. image: {
  12526. source: "./media/characters/xanthos/foot.svg"
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 5 / 12, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Normal+",
  12538. height: math.unit(6, "meters")
  12539. },
  12540. {
  12541. name: "Macro",
  12542. height: math.unit(40, "feet")
  12543. },
  12544. {
  12545. name: "Macro+",
  12546. height: math.unit(200, "meters")
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(20, "km")
  12551. },
  12552. {
  12553. name: "Megamacro+",
  12554. height: math.unit(100, "km")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6 + 3 / 12, "feet"),
  12563. weight: math.unit(215, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/grynn/front.svg",
  12567. extra: 4627 / 4209,
  12568. bottom: 0.047
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Micro",
  12575. height: math.unit(6, "inches")
  12576. },
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(6 + 3 / 12, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Big",
  12584. height: math.unit(104, "feet")
  12585. },
  12586. {
  12587. name: "Macro",
  12588. height: math.unit(944, "feet")
  12589. },
  12590. {
  12591. name: "Macro+",
  12592. height: math.unit(9480, "feet")
  12593. },
  12594. {
  12595. name: "Megamacro",
  12596. height: math.unit(78752, "feet")
  12597. },
  12598. {
  12599. name: "Megamacro+",
  12600. height: math.unit(630128, "feet")
  12601. },
  12602. {
  12603. name: "Megamacro++",
  12604. height: math.unit(3150695, "feet")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(7 + 5 / 12, "feet"),
  12613. weight: math.unit(450, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/mocha-aura/front.svg",
  12617. extra: 1907 / 1817,
  12618. bottom: 0.04
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(7 + 5 / 12, "feet"),
  12623. weight: math.unit(450, "lb"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/mocha-aura/back.svg",
  12627. extra: 1900 / 1825,
  12628. bottom: 0.045
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Nano",
  12635. height: math.unit(1, "nm")
  12636. },
  12637. {
  12638. name: "Megamicro",
  12639. height: math.unit(1, "mm")
  12640. },
  12641. {
  12642. name: "Micro",
  12643. height: math.unit(3, "inches")
  12644. },
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(7 + 5 / 12, "feet"),
  12648. default: true
  12649. },
  12650. {
  12651. name: "Macro",
  12652. height: math.unit(30, "feet")
  12653. },
  12654. {
  12655. name: "Megamacro",
  12656. height: math.unit(3500, "feet")
  12657. },
  12658. {
  12659. name: "Teramacro",
  12660. height: math.unit(500000, "miles")
  12661. },
  12662. {
  12663. name: "Petamacro",
  12664. height: math.unit(50000000000000000, "parsecs")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/ilisha-devya/front.svg",
  12677. extra: 1,
  12678. bottom: 0.175
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/ilisha-devya/back.svg",
  12687. extra: 1,
  12688. bottom: 0.015
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(500, "feet"),
  12696. default: true
  12697. },
  12698. {
  12699. name: "Megamacro",
  12700. height: math.unit(10, "miles")
  12701. },
  12702. {
  12703. name: "Gigamacro",
  12704. height: math.unit(100000, "miles")
  12705. },
  12706. {
  12707. name: "Examacro",
  12708. height: math.unit(1e9, "lightyears")
  12709. },
  12710. {
  12711. name: "Omniversal",
  12712. height: math.unit(1e33, "lightyears")
  12713. },
  12714. {
  12715. name: "Beyond Infinite",
  12716. height: math.unit(1e100, "lightyears")
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12722. {
  12723. Side: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Side",
  12727. image: {
  12728. source: "./media/characters/mira/side.svg",
  12729. extra: 900 / 799,
  12730. bottom: 0.02
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Human Size",
  12737. height: math.unit(6, "feet")
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(100, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Megamacro",
  12746. height: math.unit(10, "miles")
  12747. },
  12748. {
  12749. name: "Gigamacro",
  12750. height: math.unit(25000, "miles")
  12751. },
  12752. {
  12753. name: "Teramacro",
  12754. height: math.unit(300, "AU")
  12755. },
  12756. {
  12757. name: "Full Size",
  12758. height: math.unit(4.5e10, "lightyears")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/holly/front.svg",
  12771. extra: 639 / 606
  12772. }
  12773. },
  12774. back: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Back",
  12778. image: {
  12779. source: "./media/characters/holly/back.svg",
  12780. extra: 623 / 598
  12781. }
  12782. },
  12783. frontWorking: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front (Working)",
  12787. image: {
  12788. source: "./media/characters/holly/front-working.svg",
  12789. extra: 607 / 577,
  12790. bottom: 0.048
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(12 + 3 / 12, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/porter/front.svg",
  12811. extra: 1,
  12812. bottom: 0.01
  12813. }
  12814. },
  12815. frontRobes: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Front (Robes)",
  12819. image: {
  12820. source: "./media/characters/porter/front-robes.svg",
  12821. extra: 1.01,
  12822. bottom: 0.01
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(11 + 9 / 12, "feet"),
  12830. default: true
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12836. {
  12837. legendary: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Legendary",
  12841. image: {
  12842. source: "./media/characters/lucy/legendary.svg",
  12843. extra: 1355 / 1100,
  12844. bottom: 0.045
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Legendary",
  12851. height: math.unit(86882 * 2, "miles"),
  12852. default: true
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12858. {
  12859. front: {
  12860. height: math.unit(6, "feet"),
  12861. weight: math.unit(150, "lb"),
  12862. name: "Front",
  12863. image: {
  12864. source: "./media/characters/drusilla/front.svg",
  12865. extra: 678 / 635,
  12866. bottom: 0.03
  12867. }
  12868. },
  12869. back: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(150, "lb"),
  12872. name: "Back",
  12873. image: {
  12874. source: "./media/characters/drusilla/back.svg",
  12875. extra: 678 / 635,
  12876. bottom: 0.005
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(100, "feet")
  12884. },
  12885. {
  12886. name: "Canon Height",
  12887. height: math.unit(2000, "feet"),
  12888. default: true
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(180, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/renard-thatch/front.svg",
  12901. extra: 2411 / 2275,
  12902. bottom: 0.01
  12903. }
  12904. },
  12905. frontPosing: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(180, "lb"),
  12908. name: "Front (Posing)",
  12909. image: {
  12910. source: "./media/characters/renard-thatch/front-posing.svg",
  12911. extra: 2381 / 2261,
  12912. bottom: 0.01
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(180, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/renard-thatch/back.svg",
  12921. extra: 2428 / 2288
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Micro",
  12928. height: math.unit(3, "inches")
  12929. },
  12930. {
  12931. name: "Default",
  12932. height: math.unit(6, "feet"),
  12933. default: true
  12934. },
  12935. {
  12936. name: "Macro",
  12937. height: math.unit(75, "feet")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(1450, "feet"),
  12946. weight: math.unit(1.21e6, "tons"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/sekvra/front.svg",
  12950. extra: 1,
  12951. bottom: 0.03
  12952. }
  12953. },
  12954. frontClothed: {
  12955. height: math.unit(1450, "feet"),
  12956. weight: math.unit(1.21e6, "tons"),
  12957. name: "Front (Clothed)",
  12958. image: {
  12959. source: "./media/characters/sekvra/front-clothed.svg",
  12960. extra: 1,
  12961. bottom: 0.03
  12962. }
  12963. },
  12964. side: {
  12965. height: math.unit(1450, "feet"),
  12966. weight: math.unit(1.21e6, "tons"),
  12967. name: "Side",
  12968. image: {
  12969. source: "./media/characters/sekvra/side.svg",
  12970. extra: 1,
  12971. bottom: 0.025
  12972. }
  12973. },
  12974. back: {
  12975. height: math.unit(1450, "feet"),
  12976. weight: math.unit(1.21e6, "tons"),
  12977. name: "Back",
  12978. image: {
  12979. source: "./media/characters/sekvra/back.svg",
  12980. extra: 1,
  12981. bottom: 0.005
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Macro",
  12988. height: math.unit(1450, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Megamacro",
  12993. height: math.unit(15000, "feet")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(150, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/carmine/front.svg",
  13006. extra: 1,
  13007. bottom: 0.035
  13008. }
  13009. },
  13010. frontArmor: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Front (Armor)",
  13014. image: {
  13015. source: "./media/characters/carmine/front-armor.svg",
  13016. extra: 1,
  13017. bottom: 0.035
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Large",
  13024. height: math.unit(1, "mile")
  13025. },
  13026. {
  13027. name: "Huge",
  13028. height: math.unit(40, "miles"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Colossal",
  13033. height: math.unit(2500, "miles")
  13034. },
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/elyssia/front.svg",
  13046. extra: 2201 / 2035,
  13047. bottom: 0.05
  13048. }
  13049. },
  13050. frontClothed: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(150, "lb"),
  13053. name: "Front (Clothed)",
  13054. image: {
  13055. source: "./media/characters/elyssia/front-clothed.svg",
  13056. extra: 2201 / 2035,
  13057. bottom: 0.05
  13058. }
  13059. },
  13060. back: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/elyssia/back.svg",
  13066. extra: 2201 / 2035,
  13067. bottom: 0.013
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Smaller",
  13074. height: math.unit(150, "feet")
  13075. },
  13076. {
  13077. name: "Standard",
  13078. height: math.unit(1400, "feet"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Distracted",
  13083. height: math.unit(15000, "feet")
  13084. },
  13085. ]
  13086. ))
  13087. characterMakers.push(() => makeCharacter(
  13088. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13089. {
  13090. front: {
  13091. height: math.unit(7 + 4 / 12, "feet"),
  13092. weight: math.unit(500, "lb"),
  13093. name: "Front",
  13094. image: {
  13095. source: "./media/characters/geno-maxwell/front.svg",
  13096. extra: 2207 / 2040,
  13097. bottom: 0.015
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Micro",
  13104. height: math.unit(3, "inches")
  13105. },
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(7 + 4 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(220, "feet")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(11, "miles")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(7 + 4 / 12, "feet"),
  13126. weight: math.unit(500, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/regena-maxwell/front.svg",
  13130. extra: 3115 / 2770,
  13131. bottom: 0.02
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(7 + 4 / 12, "feet"),
  13139. default: true
  13140. },
  13141. {
  13142. name: "Macro",
  13143. height: math.unit(220, "feet")
  13144. },
  13145. {
  13146. name: "Megamacro",
  13147. height: math.unit(11, "miles")
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13160. extra: 860 / 690,
  13161. bottom: 0.03
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Normal",
  13168. height: math.unit(1.7, "meters"),
  13169. default: true
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(6, "feet"),
  13178. weight: math.unit(150, "lb"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/quilly/front.svg",
  13182. extra: 890 / 776
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Gigamacro",
  13189. height: math.unit(404090, "miles"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(7 + 8 / 12, "feet"),
  13199. weight: math.unit(350, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/tempest/front.svg",
  13203. extra: 1175 / 1086,
  13204. bottom: 0.02
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Normal",
  13211. height: math.unit(7 + 8 / 12, "feet"),
  13212. default: true
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13218. {
  13219. side: {
  13220. height: math.unit(4 + 5 / 12, "feet"),
  13221. weight: math.unit(80, "lb"),
  13222. name: "Side",
  13223. image: {
  13224. source: "./media/characters/rodger/side.svg",
  13225. extra: 1235 / 1118
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Micro",
  13232. height: math.unit(1, "inch")
  13233. },
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(4 + 5 / 12, "feet"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(120, "feet")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/danyel/front.svg",
  13254. extra: 1185 / 1123,
  13255. bottom: 0.05
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Shrunken",
  13262. height: math.unit(0.5, "mm")
  13263. },
  13264. {
  13265. name: "Micro",
  13266. height: math.unit(1, "mm"),
  13267. default: true
  13268. },
  13269. {
  13270. name: "Upsized",
  13271. height: math.unit(5 + 5 / 12, "feet")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(5 + 6 / 12, "feet"),
  13280. weight: math.unit(200, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/vivian-bijoux/front.svg",
  13284. extra: 1,
  13285. bottom: 0.072
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(5 + 6 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Bad Dream",
  13297. height: math.unit(500, "feet")
  13298. },
  13299. {
  13300. name: "Nightmare",
  13301. height: math.unit(500, "miles")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(6 + 1 / 12, "feet"),
  13310. weight: math.unit(260, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/zeta/front.svg",
  13314. extra: 1968 / 1889,
  13315. bottom: 0.06
  13316. }
  13317. },
  13318. back: {
  13319. height: math.unit(6 + 1 / 12, "feet"),
  13320. weight: math.unit(260, "lb"),
  13321. name: "Back",
  13322. image: {
  13323. source: "./media/characters/zeta/back.svg",
  13324. extra: 1944 / 1858,
  13325. bottom: 0.03
  13326. }
  13327. },
  13328. hand: {
  13329. height: math.unit(1.112, "feet"),
  13330. name: "Hand",
  13331. image: {
  13332. source: "./media/characters/zeta/hand.svg"
  13333. }
  13334. },
  13335. foot: {
  13336. height: math.unit(1.48, "feet"),
  13337. name: "Foot",
  13338. image: {
  13339. source: "./media/characters/zeta/foot.svg"
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Micro",
  13346. height: math.unit(6, "inches")
  13347. },
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(6 + 1 / 12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(20, "feet")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/jamie-larsen/front.svg",
  13368. extra: 962 / 933,
  13369. bottom: 0.02
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/jamie-larsen/back.svg",
  13378. extra: 997 / 946
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(28 + 7 / 12, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Macro+",
  13390. height: math.unit(180, "feet")
  13391. },
  13392. {
  13393. name: "Megamacro",
  13394. height: math.unit(10, "miles")
  13395. },
  13396. {
  13397. name: "Gigamacro",
  13398. height: math.unit(200000, "miles")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(120, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/vance/front.svg",
  13411. extra: 1980 / 1890,
  13412. bottom: 0.09
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(6, "feet"),
  13417. weight: math.unit(120, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/vance/back.svg",
  13421. extra: 2081 / 1994,
  13422. bottom: 0.014
  13423. }
  13424. },
  13425. hand: {
  13426. height: math.unit(0.88, "feet"),
  13427. name: "Hand",
  13428. image: {
  13429. source: "./media/characters/vance/hand.svg"
  13430. }
  13431. },
  13432. foot: {
  13433. height: math.unit(0.64, "feet"),
  13434. name: "Foot",
  13435. image: {
  13436. source: "./media/characters/vance/foot.svg"
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Small",
  13443. height: math.unit(90, "feet"),
  13444. default: true
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(100, "meters")
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(15, "miles")
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(180, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/xochitl/front.svg",
  13465. extra: 2297 / 2261,
  13466. bottom: 0.065
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(180, "lb"),
  13472. name: "Back",
  13473. image: {
  13474. source: "./media/characters/xochitl/back.svg",
  13475. extra: 2386 / 2354,
  13476. bottom: 0.01
  13477. }
  13478. },
  13479. foot: {
  13480. height: math.unit(6 / 5 * 1.15, "feet"),
  13481. weight: math.unit(150, "lb"),
  13482. name: "Foot",
  13483. image: {
  13484. source: "./media/characters/xochitl/foot.svg"
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(80, "feet")
  13492. },
  13493. {
  13494. name: "Macro+",
  13495. height: math.unit(400, "feet"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Gigamacro",
  13500. height: math.unit(80000, "miles")
  13501. },
  13502. {
  13503. name: "Gigamacro+",
  13504. height: math.unit(400000, "miles")
  13505. },
  13506. {
  13507. name: "Teramacro",
  13508. height: math.unit(300, "AU")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/vincent/front.svg",
  13521. extra: 1130 / 1080,
  13522. bottom: 0.055
  13523. }
  13524. },
  13525. beak: {
  13526. height: math.unit(6 * 0.1, "feet"),
  13527. name: "Beak",
  13528. image: {
  13529. source: "./media/characters/vincent/beak.svg"
  13530. }
  13531. },
  13532. hand: {
  13533. height: math.unit(6 * 0.85, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Hand",
  13536. image: {
  13537. source: "./media/characters/vincent/hand.svg"
  13538. }
  13539. },
  13540. foot: {
  13541. height: math.unit(6 * 0.19, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Foot",
  13544. image: {
  13545. source: "./media/characters/vincent/foot.svg"
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Base",
  13552. height: math.unit(6 + 5 / 12, "feet"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(300, "feet")
  13558. },
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(2, "miles")
  13562. },
  13563. {
  13564. name: "Gigamacro",
  13565. height: math.unit(1000, "miles")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(2, "meters"),
  13574. weight: math.unit(500, "kg"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/coatl/front.svg",
  13578. extra: 3948 / 3500,
  13579. bottom: 0.082
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(4, "meters")
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(100, "meters"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Macro+",
  13595. height: math.unit(300, "meters")
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(3, "gigameters")
  13600. },
  13601. {
  13602. name: "Megamacro+",
  13603. height: math.unit(300, "terameters")
  13604. },
  13605. {
  13606. name: "Megamacro++",
  13607. height: math.unit(3, "lightyears")
  13608. },
  13609. ]
  13610. ))
  13611. characterMakers.push(() => makeCharacter(
  13612. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13613. {
  13614. front: {
  13615. height: math.unit(6, "feet"),
  13616. weight: math.unit(50, "kg"),
  13617. name: "front",
  13618. image: {
  13619. source: "./media/characters/shiroryu/front.svg",
  13620. extra: 1990 / 1935
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Mortal Mingling",
  13627. height: math.unit(3, "meters")
  13628. },
  13629. {
  13630. name: "Kaiju-ish",
  13631. height: math.unit(250, "meters")
  13632. },
  13633. {
  13634. name: "Somewhat Godly",
  13635. height: math.unit(400, "km"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Planetary",
  13640. height: math.unit(300, "megameters")
  13641. },
  13642. {
  13643. name: "Galaxy-dwarfing",
  13644. height: math.unit(450, "kiloparsecs")
  13645. },
  13646. {
  13647. name: "Universe Eater",
  13648. height: math.unit(150, "gigaparsecs")
  13649. },
  13650. {
  13651. name: "Almost Immeasurable",
  13652. height: math.unit(1.3e266, "yottaparsecs")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/umeko/front.svg",
  13665. extra: 1,
  13666. bottom: 0.019
  13667. }
  13668. },
  13669. frontArmored: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Front (Armored)",
  13673. image: {
  13674. source: "./media/characters/umeko/front-armored.svg",
  13675. extra: 1,
  13676. bottom: 0.021
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Macro",
  13683. height: math.unit(220, "feet"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Guardian Dragon",
  13688. height: math.unit(50, "miles")
  13689. },
  13690. {
  13691. name: "Cosmic",
  13692. height: math.unit(800000, "miles")
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(150, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/cassidy/front.svg",
  13705. extra: 1,
  13706. bottom: 0.043
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Canon Height",
  13713. height: math.unit(120, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Macro+",
  13718. height: math.unit(400, "feet")
  13719. },
  13720. {
  13721. name: "Macro++",
  13722. height: math.unit(4000, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(3, "miles")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(150, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/isaac/front.svg",
  13739. extra: 896 / 815,
  13740. bottom: 0.11
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Human Size",
  13747. height: math.unit(8, "feet"),
  13748. default: true
  13749. },
  13750. {
  13751. name: "Macro",
  13752. height: math.unit(400, "feet")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(50, "miles")
  13757. },
  13758. {
  13759. name: "Canon Height",
  13760. height: math.unit(200, "AU")
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13766. {
  13767. front: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(72, "kg"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/sleekit/front.svg",
  13773. extra: 4693 / 4487,
  13774. bottom: 0.012
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Minimum Height",
  13781. height: math.unit(10, "meters")
  13782. },
  13783. {
  13784. name: "Smaller",
  13785. height: math.unit(25, "meters")
  13786. },
  13787. {
  13788. name: "Larger",
  13789. height: math.unit(38, "meters"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Maximum height",
  13794. height: math.unit(100, "meters")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/nillia/front.svg",
  13807. extra: 2195 / 2037,
  13808. bottom: 0.005
  13809. }
  13810. },
  13811. back: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Back",
  13815. image: {
  13816. source: "./media/characters/nillia/back.svg",
  13817. extra: 2195 / 2037,
  13818. bottom: 0.005
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Canon Height",
  13825. height: math.unit(489, "feet"),
  13826. default: true
  13827. }
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/mesmyriza/front.svg",
  13839. extra: 2067 / 1784,
  13840. bottom: 0.035
  13841. }
  13842. },
  13843. foot: {
  13844. height: math.unit(6 / (250 / 35), "feet"),
  13845. name: "Foot",
  13846. image: {
  13847. source: "./media/characters/mesmyriza/foot.svg"
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Macro",
  13854. height: math.unit(457, "meters"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(8, "megameters")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(6, "feet"),
  13868. weight: math.unit(250, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/saudade/front.svg",
  13872. extra: 1172 / 1139,
  13873. bottom: 0.035
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Micro",
  13880. height: math.unit(3, "inches")
  13881. },
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(6, "feet"),
  13885. default: true
  13886. },
  13887. {
  13888. name: "Macro",
  13889. height: math.unit(50, "feet")
  13890. },
  13891. {
  13892. name: "Megamacro",
  13893. height: math.unit(2800, "feet")
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(5 + 4 / 12, "feet"),
  13902. weight: math.unit(100, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/keireer/front.svg",
  13906. extra: 716 / 666,
  13907. bottom: 0.05
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(5 + 4 / 12, "feet"),
  13915. default: true
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(6, "feet"),
  13924. weight: math.unit(90, "kg"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/mirja/front.svg",
  13928. extra: 1789 / 1683,
  13929. bottom: 0.05
  13930. }
  13931. },
  13932. frontDressed: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(90, "lb"),
  13935. name: "Front (Dressed)",
  13936. image: {
  13937. source: "./media/characters/mirja/front-dressed.svg",
  13938. extra: 1789 / 1683,
  13939. bottom: 0.05
  13940. }
  13941. },
  13942. back: {
  13943. height: math.unit(6, "feet"),
  13944. weight: math.unit(90, "lb"),
  13945. name: "Back",
  13946. image: {
  13947. source: "./media/characters/mirja/back.svg",
  13948. extra: 953 / 917,
  13949. bottom: 0.017
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "\"Incognito\"",
  13956. height: math.unit(3, "meters")
  13957. },
  13958. {
  13959. name: "Strolling Size",
  13960. height: math.unit(15, "km")
  13961. },
  13962. {
  13963. name: "Larger Strolling Size",
  13964. height: math.unit(400, "km")
  13965. },
  13966. {
  13967. name: "Preferred Size",
  13968. height: math.unit(5000, "km")
  13969. },
  13970. {
  13971. name: "True Size",
  13972. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13973. default: true
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13979. {
  13980. front: {
  13981. height: math.unit(15, "feet"),
  13982. weight: math.unit(880, "kg"),
  13983. name: "Front",
  13984. image: {
  13985. source: "./media/characters/nightraver/front.svg",
  13986. extra: 2444 / 2160,
  13987. bottom: 0.027
  13988. }
  13989. },
  13990. back: {
  13991. height: math.unit(15, "feet"),
  13992. weight: math.unit(880, "kg"),
  13993. name: "Back",
  13994. image: {
  13995. source: "./media/characters/nightraver/back.svg",
  13996. extra: 2309 / 2180,
  13997. bottom: 0.005
  13998. }
  13999. },
  14000. sole: {
  14001. height: math.unit(2.878, "feet"),
  14002. name: "Sole",
  14003. image: {
  14004. source: "./media/characters/nightraver/sole.svg"
  14005. }
  14006. },
  14007. foot: {
  14008. height: math.unit(2.285, "feet"),
  14009. name: "Foot",
  14010. image: {
  14011. source: "./media/characters/nightraver/foot.svg"
  14012. }
  14013. },
  14014. maw: {
  14015. height: math.unit(2.67, "feet"),
  14016. name: "Maw",
  14017. image: {
  14018. source: "./media/characters/nightraver/maw.svg"
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Micro",
  14025. height: math.unit(1, "cm")
  14026. },
  14027. {
  14028. name: "Normal",
  14029. height: math.unit(15, "feet"),
  14030. default: true
  14031. },
  14032. {
  14033. name: "Macro",
  14034. height: math.unit(300, "feet")
  14035. },
  14036. {
  14037. name: "Megamacro",
  14038. height: math.unit(300, "miles")
  14039. },
  14040. {
  14041. name: "Gigamacro",
  14042. height: math.unit(10000, "miles")
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14048. {
  14049. side: {
  14050. height: math.unit(2, "inches"),
  14051. weight: math.unit(5, "grams"),
  14052. name: "Side",
  14053. image: {
  14054. source: "./media/characters/arc/side.svg"
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Micro",
  14061. height: math.unit(2, "inches"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(1.1938, "meters"),
  14071. weight: math.unit(54, "kg"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/nebula-shahar/front.svg",
  14075. extra: 1642 / 1436,
  14076. bottom: 0.06
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Megamicro",
  14083. height: math.unit(0.3, "mm")
  14084. },
  14085. {
  14086. name: "Micro",
  14087. height: math.unit(3, "cm")
  14088. },
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(138, "cm"),
  14092. default: true
  14093. },
  14094. {
  14095. name: "Macro",
  14096. height: math.unit(30, "m")
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(5.24, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/shayla/front.svg",
  14109. extra: 1512 / 1414,
  14110. bottom: 0.01
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(5.24, "feet"),
  14115. weight: math.unit(150, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/shayla/back.svg",
  14119. extra: 1512 / 1414
  14120. }
  14121. },
  14122. hand: {
  14123. height: math.unit(0.7781496062992126, "feet"),
  14124. name: "Hand",
  14125. image: {
  14126. source: "./media/characters/shayla/hand.svg"
  14127. }
  14128. },
  14129. foot: {
  14130. height: math.unit(1.4206036745406823, "feet"),
  14131. name: "Foot",
  14132. image: {
  14133. source: "./media/characters/shayla/foot.svg"
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Micro",
  14140. height: math.unit(0.32, "feet")
  14141. },
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(5.24, "feet"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Macro",
  14149. height: math.unit(492.12, "feet")
  14150. },
  14151. {
  14152. name: "Megamacro",
  14153. height: math.unit(186.41, "miles")
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(2.2, "m"),
  14162. weight: math.unit(120, "kg"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/pia-jr/front.svg",
  14166. extra: 1000 / 970,
  14167. bottom: 0.035
  14168. }
  14169. },
  14170. hand: {
  14171. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14172. name: "Hand",
  14173. image: {
  14174. source: "./media/characters/pia-jr/hand.svg"
  14175. }
  14176. },
  14177. paw: {
  14178. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14179. name: "Paw",
  14180. image: {
  14181. source: "./media/characters/pia-jr/paw.svg"
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Micro",
  14188. height: math.unit(1.2, "cm")
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(2.2, "m"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Macro",
  14197. height: math.unit(180, "m")
  14198. },
  14199. {
  14200. name: "Megamacro",
  14201. height: math.unit(420, "km")
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(2, "m"),
  14210. weight: math.unit(115, "kg"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/pia-sr/front.svg",
  14214. extra: 760 / 730,
  14215. bottom: 0.015
  14216. }
  14217. },
  14218. back: {
  14219. height: math.unit(2, "m"),
  14220. weight: math.unit(115, "kg"),
  14221. name: "Back",
  14222. image: {
  14223. source: "./media/characters/pia-sr/back.svg",
  14224. extra: 760 / 730,
  14225. bottom: 0.01
  14226. }
  14227. },
  14228. hand: {
  14229. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14230. name: "Hand",
  14231. image: {
  14232. source: "./media/characters/pia-sr/hand.svg"
  14233. }
  14234. },
  14235. foot: {
  14236. height: math.unit(1.83, "feet"),
  14237. name: "Foot",
  14238. image: {
  14239. source: "./media/characters/pia-sr/foot.svg"
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(88, "mm")
  14247. },
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(2, "m"),
  14251. default: true
  14252. },
  14253. {
  14254. name: "Macro",
  14255. height: math.unit(200, "m")
  14256. },
  14257. {
  14258. name: "Megamacro",
  14259. height: math.unit(420, "km")
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14265. {
  14266. front: {
  14267. height: math.unit(8 + 2 / 12, "feet"),
  14268. weight: math.unit(300, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/kibibyte/front.svg",
  14272. extra: 2221 / 2098,
  14273. bottom: 0.04
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(8 + 2 / 12, "feet"),
  14281. default: true
  14282. },
  14283. {
  14284. name: "Socialable Macro",
  14285. height: math.unit(50, "feet")
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(300, "feet")
  14290. },
  14291. {
  14292. name: "Megamacro",
  14293. height: math.unit(500, "miles")
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/felix/front.svg",
  14306. extra: 762 / 722,
  14307. bottom: 0.02
  14308. }
  14309. },
  14310. frontClothed: {
  14311. height: math.unit(6, "feet"),
  14312. weight: math.unit(150, "lb"),
  14313. name: "Front (Clothed)",
  14314. image: {
  14315. source: "./media/characters/felix/front-clothed.svg",
  14316. extra: 762 / 722,
  14317. bottom: 0.02
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(6 + 8 / 12, "feet"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(2600, "feet")
  14330. },
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(450, "miles")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(6 + 1 / 12, "feet"),
  14342. weight: math.unit(250, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/tobo/front.svg",
  14346. extra: 608 / 586,
  14347. bottom: 0.023
  14348. }
  14349. },
  14350. back: {
  14351. height: math.unit(6 + 1 / 12, "feet"),
  14352. weight: math.unit(250, "lb"),
  14353. name: "Back",
  14354. image: {
  14355. source: "./media/characters/tobo/back.svg",
  14356. extra: 608 / 586
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Nano",
  14363. height: math.unit(2, "nm")
  14364. },
  14365. {
  14366. name: "Megamicro",
  14367. height: math.unit(0.1, "mm")
  14368. },
  14369. {
  14370. name: "Micro",
  14371. height: math.unit(1, "inch"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Human-sized",
  14376. height: math.unit(6 + 1 / 12, "feet")
  14377. },
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(250, "feet")
  14381. },
  14382. {
  14383. name: "Megamacro",
  14384. height: math.unit(75, "miles")
  14385. },
  14386. {
  14387. name: "Texas-sized",
  14388. height: math.unit(750, "miles")
  14389. },
  14390. {
  14391. name: "Teramacro",
  14392. height: math.unit(50000, "miles")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(269, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/danny-kapowsky/front.svg",
  14405. extra: 766 / 736,
  14406. bottom: 0.044
  14407. }
  14408. },
  14409. back: {
  14410. height: math.unit(6, "feet"),
  14411. weight: math.unit(269, "lb"),
  14412. name: "Back",
  14413. image: {
  14414. source: "./media/characters/danny-kapowsky/back.svg",
  14415. extra: 797 / 760,
  14416. bottom: 0.025
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(150, "feet"),
  14424. default: true
  14425. },
  14426. {
  14427. name: "Macro+",
  14428. height: math.unit(200, "feet")
  14429. },
  14430. {
  14431. name: "Macro++",
  14432. height: math.unit(300, "feet")
  14433. },
  14434. {
  14435. name: "Macro+++",
  14436. height: math.unit(400, "feet")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14442. {
  14443. side: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(170, "lb"),
  14446. name: "Side",
  14447. image: {
  14448. source: "./media/characters/finn/side.svg",
  14449. extra: 1953 / 1807,
  14450. bottom: 0.057
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Megamacro",
  14457. height: math.unit(14445, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(5 + 6 / 12, "feet"),
  14467. weight: math.unit(125, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/roy/front.svg",
  14471. extra: 1,
  14472. bottom: 0.11
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Micro",
  14479. height: math.unit(3, "inches"),
  14480. default: true
  14481. },
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5 + 6 / 12, "feet")
  14485. },
  14486. {
  14487. name: "Lesser Macro",
  14488. height: math.unit(60, "feet")
  14489. },
  14490. {
  14491. name: "Greater Macro",
  14492. height: math.unit(120, "feet")
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14498. {
  14499. front: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(100, "lb"),
  14502. name: "Front",
  14503. image: {
  14504. source: "./media/characters/aevsivs/front.svg",
  14505. extra: 1,
  14506. bottom: 0.03
  14507. }
  14508. },
  14509. back: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(100, "lb"),
  14512. name: "Back",
  14513. image: {
  14514. source: "./media/characters/aevsivs/back.svg"
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Micro",
  14521. height: math.unit(2, "inches"),
  14522. default: true
  14523. },
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(5, "feet")
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(5 + 7 / 12, "feet"),
  14535. weight: math.unit(159, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/hildegard/front.svg",
  14539. extra: 289 / 269,
  14540. bottom: 7.63 / 297.8
  14541. }
  14542. },
  14543. back: {
  14544. height: math.unit(5 + 7 / 12, "feet"),
  14545. weight: math.unit(159, "lb"),
  14546. name: "Back",
  14547. image: {
  14548. source: "./media/characters/hildegard/back.svg",
  14549. extra: 280 / 260,
  14550. bottom: 2.3 / 282
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(5 + 7 / 12, "feet"),
  14558. default: true
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14564. {
  14565. bernard: {
  14566. height: math.unit(2 + 7 / 12, "feet"),
  14567. weight: math.unit(66, "lb"),
  14568. name: "Bernard",
  14569. rename: true,
  14570. image: {
  14571. source: "./media/characters/bernard-wilder/bernard.svg",
  14572. extra: 192 / 128,
  14573. bottom: 0.05
  14574. }
  14575. },
  14576. wilder: {
  14577. height: math.unit(5 + 8 / 12, "feet"),
  14578. weight: math.unit(143, "lb"),
  14579. name: "Wilder",
  14580. rename: true,
  14581. image: {
  14582. source: "./media/characters/bernard-wilder/wilder.svg",
  14583. extra: 361 / 312,
  14584. bottom: 0.02
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(2 + 7 / 12, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14598. {
  14599. anthro: {
  14600. height: math.unit(6 + 1 / 12, "feet"),
  14601. weight: math.unit(155, "lb"),
  14602. name: "Anthro",
  14603. image: {
  14604. source: "./media/characters/hearth/anthro.svg",
  14605. extra: 260 / 250,
  14606. bottom: 0.02
  14607. }
  14608. },
  14609. feral: {
  14610. height: math.unit(3.78, "feet"),
  14611. weight: math.unit(35, "kg"),
  14612. name: "Feral",
  14613. image: {
  14614. source: "./media/characters/hearth/feral.svg",
  14615. extra: 153 / 135,
  14616. bottom: 0.03
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(6 + 1 / 12, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6, "feet"),
  14633. weight: math.unit(182, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/ingrid/front.svg",
  14637. extra: 294 / 268,
  14638. bottom: 0.027
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(6, "feet"),
  14646. default: true
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14652. {
  14653. eevee: {
  14654. height: math.unit(2 + 10 / 12, "feet"),
  14655. weight: math.unit(86, "lb"),
  14656. name: "Malgam",
  14657. image: {
  14658. source: "./media/characters/malgam/eevee.svg",
  14659. extra: 218 / 180,
  14660. bottom: 0.2
  14661. }
  14662. },
  14663. sylveon: {
  14664. height: math.unit(4, "feet"),
  14665. weight: math.unit(101, "lb"),
  14666. name: "Future Malgam",
  14667. rename: true,
  14668. image: {
  14669. source: "./media/characters/malgam/sylveon.svg",
  14670. extra: 371 / 325,
  14671. bottom: 0.015
  14672. }
  14673. },
  14674. gigantamax: {
  14675. height: math.unit(50, "feet"),
  14676. name: "Gigantamax Malgam",
  14677. rename: true,
  14678. image: {
  14679. source: "./media/characters/malgam/gigantamax.svg"
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Normal",
  14686. height: math.unit(2 + 10 / 12, "feet"),
  14687. default: true
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(5 + 11 / 12, "feet"),
  14696. weight: math.unit(188, "lb"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/fleur/front.svg",
  14700. extra: 309 / 283,
  14701. bottom: 0.007
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(5 + 11 / 12, "feet"),
  14709. default: true
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(5 + 4 / 12, "feet"),
  14718. weight: math.unit(122, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/jude/front.svg",
  14722. extra: 288 / 273,
  14723. bottom: 0.03
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(5 + 4 / 12, "feet"),
  14731. default: true
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(5 + 11 / 12, "feet"),
  14740. weight: math.unit(190, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/seara/front.svg",
  14744. extra: 1,
  14745. bottom: 0.05
  14746. }
  14747. },
  14748. },
  14749. [
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(5 + 11 / 12, "feet"),
  14753. default: true
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(16 + 5 / 12, "feet"),
  14762. weight: math.unit(524, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/caspian/front.svg",
  14766. extra: 1,
  14767. bottom: 0.04
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(16 + 5 / 12, "feet"),
  14775. default: true
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14781. {
  14782. front: {
  14783. height: math.unit(5 + 7 / 12, "feet"),
  14784. weight: math.unit(170, "lb"),
  14785. name: "Front",
  14786. image: {
  14787. source: "./media/characters/mika/front.svg",
  14788. extra: 1,
  14789. bottom: 0.016
  14790. }
  14791. },
  14792. },
  14793. [
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(5 + 7 / 12, "feet"),
  14797. default: true
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(6 + 2 / 12, "feet"),
  14806. weight: math.unit(268, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/sol/front.svg",
  14810. extra: 247 / 231,
  14811. bottom: 0.05
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(6 + 2 / 12, "feet"),
  14819. default: true
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14825. {
  14826. buizel: {
  14827. height: math.unit(2 + 5 / 12, "feet"),
  14828. weight: math.unit(87, "lb"),
  14829. name: "Buizel",
  14830. image: {
  14831. source: "./media/characters/umiko/buizel.svg",
  14832. extra: 172 / 157,
  14833. bottom: 0.01
  14834. }
  14835. },
  14836. floatzel: {
  14837. height: math.unit(5 + 9 / 12, "feet"),
  14838. weight: math.unit(250, "lb"),
  14839. name: "Floatzel",
  14840. image: {
  14841. source: "./media/characters/umiko/floatzel.svg",
  14842. extra: 262 / 248
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(2 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6 + 2 / 12, "feet"),
  14859. weight: math.unit(146, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/iliac/front.svg",
  14863. extra: 389 / 365,
  14864. bottom: 0.035
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(6 + 2 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(170, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/topaz/front.svg",
  14885. extra: 317 / 303,
  14886. bottom: 0.055
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(6, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(5 + 11 / 12, "feet"),
  14903. weight: math.unit(144, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/gabriel/front.svg",
  14907. extra: 285 / 262,
  14908. bottom: 0.004
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(5 + 11 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14922. {
  14923. side: {
  14924. height: math.unit(6 + 5 / 12, "feet"),
  14925. weight: math.unit(300, "lb"),
  14926. name: "Side",
  14927. image: {
  14928. source: "./media/characters/tempest-suicune/side.svg",
  14929. extra: 195 / 154,
  14930. bottom: 0.04
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(6 + 5 / 12, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(7 + 2 / 12, "feet"),
  14947. weight: math.unit(322, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/vulcan/front.svg",
  14951. extra: 154 / 147,
  14952. bottom: 0.04
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(7 + 2 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(5 + 10 / 12, "feet"),
  14969. weight: math.unit(264, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/gault/front.svg",
  14973. extra: 161 / 140,
  14974. bottom: 0.028
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(5 + 10 / 12, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14988. {
  14989. front: {
  14990. height: math.unit(6, "feet"),
  14991. weight: math.unit(150, "lb"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/shard/front.svg",
  14995. extra: 273 / 238,
  14996. bottom: 0.02
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(3 + 6 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 11 / 12, "feet"),
  15013. weight: math.unit(146, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/ashe/front.svg",
  15017. extra: 400 / 373,
  15018. bottom: 0.01
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(5 + 11 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(5 + 5 / 12, "feet"),
  15035. weight: math.unit(135, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/beatrix/front.svg",
  15039. extra: 392 / 379,
  15040. bottom: 0.01
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(6, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(6, "feet"),
  15057. weight: math.unit(150, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/ignatius/front.svg",
  15061. extra: 245 / 222,
  15062. bottom: 0.01
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(5 + 5 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(6 + 2 / 12, "feet"),
  15079. weight: math.unit(138, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/mei-li/front.svg",
  15083. extra: 237 / 229,
  15084. bottom: 0.03
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(6 + 2 / 12, "feet"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(2 + 4 / 12, "feet"),
  15101. weight: math.unit(62, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/puru/front.svg",
  15105. extra: 206 / 149,
  15106. bottom: 0.06
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(2 + 4 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(5 + 8/12, "feet"),
  15123. weight: math.unit(200, "lb"),
  15124. energyNeed: math.unit(2000, "kcal"),
  15125. name: "Anthro",
  15126. image: {
  15127. source: "./media/characters/kee/anthro.svg",
  15128. extra: 3251/3184,
  15129. bottom: 250/3501
  15130. }
  15131. },
  15132. taur: {
  15133. height: math.unit(11, "feet"),
  15134. weight: math.unit(500, "lb"),
  15135. energyNeed: math.unit(5000, "kcal"),
  15136. name: "Taur",
  15137. image: {
  15138. source: "./media/characters/kee/taur.svg",
  15139. extra: 1362/1320,
  15140. bottom: 83/1445
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5 + 8/12, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(35, "feet")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15158. {
  15159. anthro: {
  15160. height: math.unit(7, "feet"),
  15161. weight: math.unit(190, "lb"),
  15162. name: "Anthro",
  15163. image: {
  15164. source: "./media/characters/cobalt-dracha/anthro.svg",
  15165. extra: 231 / 225,
  15166. bottom: 0.04
  15167. }
  15168. },
  15169. feral: {
  15170. height: math.unit(9 + 7 / 12, "feet"),
  15171. weight: math.unit(294, "lb"),
  15172. name: "Feral",
  15173. image: {
  15174. source: "./media/characters/cobalt-dracha/feral.svg",
  15175. extra: 692 / 633,
  15176. bottom: 0.05
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15190. {
  15191. fallen: {
  15192. height: math.unit(11 + 8 / 12, "feet"),
  15193. weight: math.unit(485, "lb"),
  15194. name: "Java (Fallen)",
  15195. rename: true,
  15196. image: {
  15197. source: "./media/characters/java/fallen.svg",
  15198. extra: 226 / 208,
  15199. bottom: 0.005
  15200. }
  15201. },
  15202. godkin: {
  15203. height: math.unit(10 + 6 / 12, "feet"),
  15204. weight: math.unit(328, "lb"),
  15205. name: "Java (Godkin)",
  15206. rename: true,
  15207. image: {
  15208. source: "./media/characters/java/godkin.svg",
  15209. extra: 270 / 262,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(11 + 8 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(7 + 8 / 12, "feet"),
  15227. weight: math.unit(320, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/skoll/front.svg",
  15231. extra: 232 / 220,
  15232. bottom: 0.02
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(7 + 8 / 12, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(5 + 9 / 12, "feet"),
  15249. weight: math.unit(170, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/purna/front.svg",
  15253. extra: 239 / 229,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(5 + 9 / 12, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(5 + 9 / 12, "feet"),
  15271. weight: math.unit(142, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/kuva/front.svg",
  15275. extra: 281 / 271,
  15276. bottom: 0.006
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(5 + 9 / 12, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15290. {
  15291. anthro: {
  15292. height: math.unit(9 + 2 / 12, "feet"),
  15293. weight: math.unit(270, "lb"),
  15294. name: "Anthro",
  15295. image: {
  15296. source: "./media/characters/embra/anthro.svg",
  15297. extra: 200 / 187,
  15298. bottom: 0.02
  15299. }
  15300. },
  15301. feral: {
  15302. height: math.unit(18 + 8 / 12, "feet"),
  15303. weight: math.unit(576, "lb"),
  15304. name: "Feral",
  15305. image: {
  15306. source: "./media/characters/embra/feral.svg",
  15307. extra: 152 / 137,
  15308. bottom: 0.037
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(9 + 2 / 12, "feet"),
  15316. default: true
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15322. {
  15323. anthro: {
  15324. height: math.unit(10 + 9 / 12, "feet"),
  15325. weight: math.unit(224, "lb"),
  15326. name: "Anthro",
  15327. image: {
  15328. source: "./media/characters/grottos/anthro.svg",
  15329. extra: 350 / 332,
  15330. bottom: 0.045
  15331. }
  15332. },
  15333. feral: {
  15334. height: math.unit(20 + 7 / 12, "feet"),
  15335. weight: math.unit(629, "lb"),
  15336. name: "Feral",
  15337. image: {
  15338. source: "./media/characters/grottos/feral.svg",
  15339. extra: 207 / 190,
  15340. bottom: 0.05
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(10 + 9 / 12, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15354. {
  15355. anthro: {
  15356. height: math.unit(9 + 6 / 12, "feet"),
  15357. weight: math.unit(298, "lb"),
  15358. name: "Anthro",
  15359. image: {
  15360. source: "./media/characters/frifna/anthro.svg",
  15361. extra: 282 / 269,
  15362. bottom: 0.015
  15363. }
  15364. },
  15365. feral: {
  15366. height: math.unit(16 + 2 / 12, "feet"),
  15367. weight: math.unit(624, "lb"),
  15368. name: "Feral",
  15369. image: {
  15370. source: "./media/characters/frifna/feral.svg"
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(9 + 6 / 12, "feet"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6 + 2 / 12, "feet"),
  15387. weight: math.unit(168, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/elise/front.svg",
  15391. extra: 276 / 271
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(6 + 2 / 12, "feet"),
  15399. default: true
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(5 + 10 / 12, "feet"),
  15408. weight: math.unit(210, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/glade/front.svg",
  15412. extra: 258 / 247,
  15413. bottom: 0.008
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(5 + 10 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(5 + 10 / 12, "feet"),
  15430. weight: math.unit(129, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/rina/front.svg",
  15434. extra: 266 / 255,
  15435. bottom: 0.005
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(5 + 10 / 12, "feet"),
  15443. default: true
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6 + 1 / 12, "feet"),
  15452. weight: math.unit(192, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/veronica/front.svg",
  15456. extra: 319 / 309,
  15457. bottom: 0.005
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(6 + 1 / 12, "feet"),
  15465. default: true
  15466. },
  15467. ]
  15468. ))
  15469. characterMakers.push(() => makeCharacter(
  15470. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15471. {
  15472. front: {
  15473. height: math.unit(9 + 3 / 12, "feet"),
  15474. weight: math.unit(1100, "lb"),
  15475. name: "Front",
  15476. image: {
  15477. source: "./media/characters/braxton/front.svg",
  15478. extra: 1057 / 984,
  15479. bottom: 0.05
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(9 + 3 / 12, "feet")
  15487. },
  15488. {
  15489. name: "Giant",
  15490. height: math.unit(300, "feet"),
  15491. default: true
  15492. },
  15493. {
  15494. name: "Macro",
  15495. height: math.unit(700, "feet")
  15496. },
  15497. {
  15498. name: "Megamacro",
  15499. height: math.unit(6000, "feet")
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(6 + 7 / 12, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/blue-feyonics/front.svg",
  15512. extra: 1403 / 1306,
  15513. bottom: 0.047
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(6 + 7 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15527. {
  15528. front: {
  15529. height: math.unit(1.8, "meters"),
  15530. weight: math.unit(60, "kg"),
  15531. name: "Front",
  15532. image: {
  15533. source: "./media/characters/maxwell/front.svg",
  15534. extra: 2060 / 1873
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Micro",
  15541. height: math.unit(1, "mm")
  15542. },
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(1.8, "meter"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Macro",
  15550. height: math.unit(30, "meters")
  15551. },
  15552. {
  15553. name: "Megamacro",
  15554. height: math.unit(10, "km")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/jack/front.svg",
  15567. extra: 1754 / 1640,
  15568. bottom: 0.01
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(80000, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Max size",
  15580. height: math.unit(10, "lightyears")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15586. {
  15587. urban: {
  15588. height: math.unit(5, "feet"),
  15589. weight: math.unit(240, "lb"),
  15590. name: "Urban",
  15591. image: {
  15592. source: "./media/characters/cafat/urban.svg",
  15593. extra: 1223/1126,
  15594. bottom: 205/1428
  15595. }
  15596. },
  15597. summer: {
  15598. height: math.unit(5, "feet"),
  15599. weight: math.unit(240, "lb"),
  15600. name: "Summer",
  15601. image: {
  15602. source: "./media/characters/cafat/summer.svg",
  15603. extra: 1223/1126,
  15604. bottom: 205/1428
  15605. }
  15606. },
  15607. winter: {
  15608. height: math.unit(5, "feet"),
  15609. weight: math.unit(240, "lb"),
  15610. name: "Winter",
  15611. image: {
  15612. source: "./media/characters/cafat/winter.svg",
  15613. extra: 1223/1126,
  15614. bottom: 205/1428
  15615. }
  15616. },
  15617. lingerie: {
  15618. height: math.unit(5, "feet"),
  15619. weight: math.unit(240, "lb"),
  15620. name: "Lingerie",
  15621. image: {
  15622. source: "./media/characters/cafat/lingerie.svg",
  15623. extra: 1223/1126,
  15624. bottom: 205/1428
  15625. }
  15626. },
  15627. upright: {
  15628. height: math.unit(6.3, "feet"),
  15629. weight: math.unit(240, "lb"),
  15630. name: "Upright",
  15631. image: {
  15632. source: "./media/characters/cafat/upright.svg",
  15633. bottom: 0.01
  15634. }
  15635. },
  15636. uprightFull: {
  15637. height: math.unit(6.3, "feet"),
  15638. weight: math.unit(240, "lb"),
  15639. name: "Upright (Full)",
  15640. image: {
  15641. source: "./media/characters/cafat/upright-full.svg",
  15642. bottom: 0.01
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Small",
  15649. height: math.unit(5, "feet"),
  15650. default: true
  15651. },
  15652. {
  15653. name: "Large",
  15654. height: math.unit(13, "feet")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(150, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/verin-raharra/front.svg",
  15667. extra: 5019 / 4835,
  15668. bottom: 0.023
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(7 + 5 / 12, "feet"),
  15676. default: true
  15677. },
  15678. {
  15679. name: "Upsized",
  15680. height: math.unit(20, "feet")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(7, "feet"),
  15689. weight: math.unit(230, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/nakata/front.svg",
  15693. extra: 1.005,
  15694. bottom: 0.01
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(7, "feet"),
  15702. default: true
  15703. },
  15704. {
  15705. name: "Big",
  15706. height: math.unit(14, "feet")
  15707. },
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(400, "feet")
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(4.91, "feet"),
  15719. weight: math.unit(100, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/lily/front.svg",
  15723. extra: 1585 / 1415,
  15724. bottom: 0.02
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(4.91, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15738. {
  15739. laying: {
  15740. height: math.unit(4 + 4 / 12, "feet"),
  15741. weight: math.unit(600, "lb"),
  15742. name: "Laying",
  15743. image: {
  15744. source: "./media/characters/sheila/laying.svg",
  15745. extra: 1333 / 1265,
  15746. bottom: 0.16
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(4 + 4 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(6, "feet"),
  15763. weight: math.unit(190, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/sax/front.svg",
  15767. extra: 1187 / 973,
  15768. bottom: 0.042
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Micro",
  15775. height: math.unit(4, "inches"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/pandora/front.svg",
  15789. extra: 2720 / 2556,
  15790. bottom: 0.015
  15791. }
  15792. },
  15793. back: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Back",
  15797. image: {
  15798. source: "./media/characters/pandora/back.svg",
  15799. extra: 2720 / 2556,
  15800. bottom: 0.01
  15801. }
  15802. },
  15803. beans: {
  15804. height: math.unit(6 / 8, "feet"),
  15805. name: "Beans",
  15806. image: {
  15807. source: "./media/characters/pandora/beans.svg"
  15808. }
  15809. },
  15810. collar: {
  15811. height: math.unit(0.31, "feet"),
  15812. name: "Collar",
  15813. image: {
  15814. source: "./media/characters/pandora/collar.svg"
  15815. }
  15816. },
  15817. skirt: {
  15818. height: math.unit(6, "feet"),
  15819. weight: math.unit(150, "lb"),
  15820. name: "Skirt",
  15821. image: {
  15822. source: "./media/characters/pandora/skirt.svg",
  15823. extra: 1622 / 1525,
  15824. bottom: 0.015
  15825. }
  15826. },
  15827. hoodie: {
  15828. height: math.unit(6, "feet"),
  15829. weight: math.unit(150, "lb"),
  15830. name: "Hoodie",
  15831. image: {
  15832. source: "./media/characters/pandora/hoodie.svg",
  15833. extra: 1622 / 1525,
  15834. bottom: 0.015
  15835. }
  15836. },
  15837. casual: {
  15838. height: math.unit(6, "feet"),
  15839. weight: math.unit(150, "lb"),
  15840. name: "Casual",
  15841. image: {
  15842. source: "./media/characters/pandora/casual.svg",
  15843. extra: 1622 / 1525,
  15844. bottom: 0.015
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(6, "feet")
  15852. },
  15853. {
  15854. name: "Big Steppy",
  15855. height: math.unit(1, "km"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Galactic Steppy",
  15860. height: math.unit(2, "gigameters")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15866. {
  15867. side: {
  15868. height: math.unit(10, "feet"),
  15869. weight: math.unit(800, "kg"),
  15870. name: "Side",
  15871. image: {
  15872. source: "./media/characters/venio-darcony/side.svg",
  15873. extra: 1373 / 1003,
  15874. bottom: 0.037
  15875. }
  15876. },
  15877. front: {
  15878. height: math.unit(19, "feet"),
  15879. weight: math.unit(800, "kg"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/venio-darcony/front.svg"
  15883. }
  15884. },
  15885. back: {
  15886. height: math.unit(19, "feet"),
  15887. weight: math.unit(800, "kg"),
  15888. name: "Back",
  15889. image: {
  15890. source: "./media/characters/venio-darcony/back.svg"
  15891. }
  15892. },
  15893. sideNsfw: {
  15894. height: math.unit(10, "feet"),
  15895. weight: math.unit(800, "kg"),
  15896. name: "Side (NSFW)",
  15897. image: {
  15898. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15899. extra: 1373 / 1003,
  15900. bottom: 0.037
  15901. }
  15902. },
  15903. frontNsfw: {
  15904. height: math.unit(19, "feet"),
  15905. weight: math.unit(800, "kg"),
  15906. name: "Front (NSFW)",
  15907. image: {
  15908. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15909. }
  15910. },
  15911. backNsfw: {
  15912. height: math.unit(19, "feet"),
  15913. weight: math.unit(800, "kg"),
  15914. name: "Back (NSFW)",
  15915. image: {
  15916. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15917. }
  15918. },
  15919. sideArmored: {
  15920. height: math.unit(10, "feet"),
  15921. weight: math.unit(800, "kg"),
  15922. name: "Side (Armored)",
  15923. image: {
  15924. source: "./media/characters/venio-darcony/side-armored.svg",
  15925. extra: 1373 / 1003,
  15926. bottom: 0.037
  15927. }
  15928. },
  15929. frontArmored: {
  15930. height: math.unit(19, "feet"),
  15931. weight: math.unit(900, "kg"),
  15932. name: "Front (Armored)",
  15933. image: {
  15934. source: "./media/characters/venio-darcony/front-armored.svg"
  15935. }
  15936. },
  15937. backArmored: {
  15938. height: math.unit(19, "feet"),
  15939. weight: math.unit(900, "kg"),
  15940. name: "Back (Armored)",
  15941. image: {
  15942. source: "./media/characters/venio-darcony/back-armored.svg"
  15943. }
  15944. },
  15945. sword: {
  15946. height: math.unit(10, "feet"),
  15947. weight: math.unit(50, "lb"),
  15948. name: "Sword",
  15949. image: {
  15950. source: "./media/characters/venio-darcony/sword.svg"
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(10, "feet")
  15958. },
  15959. {
  15960. name: "Macro",
  15961. height: math.unit(130, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro+",
  15966. height: math.unit(240, "feet")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/veski/front.svg",
  15979. extra: 1299 / 1225,
  15980. bottom: 0.04
  15981. }
  15982. },
  15983. back: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Back",
  15987. image: {
  15988. source: "./media/characters/veski/back.svg",
  15989. extra: 1299 / 1225,
  15990. bottom: 0.008
  15991. }
  15992. },
  15993. maw: {
  15994. height: math.unit(1.5 * 1.21, "feet"),
  15995. name: "Maw",
  15996. image: {
  15997. source: "./media/characters/veski/maw.svg"
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Macro",
  16004. height: math.unit(2, "km"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(5 + 7 / 12, "feet"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/isabelle/front.svg",
  16017. extra: 2130 / 1976,
  16018. bottom: 0.05
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Supermicro",
  16025. height: math.unit(10, "micrometers")
  16026. },
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(1, "inch")
  16030. },
  16031. {
  16032. name: "Tiny",
  16033. height: math.unit(5, "inches")
  16034. },
  16035. {
  16036. name: "Standard",
  16037. height: math.unit(5 + 7 / 12, "inches")
  16038. },
  16039. {
  16040. name: "Macro",
  16041. height: math.unit(80, "meters"),
  16042. default: true
  16043. },
  16044. {
  16045. name: "Megamacro",
  16046. height: math.unit(250, "meters")
  16047. },
  16048. {
  16049. name: "Gigamacro",
  16050. height: math.unit(5, "km")
  16051. },
  16052. {
  16053. name: "Cosmic",
  16054. height: math.unit(2.5e6, "miles")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/hanzo/front.svg",
  16067. extra: 374 / 344,
  16068. bottom: 0.02
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(8, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(7, "feet"),
  16085. weight: math.unit(130, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/anna/front.svg",
  16089. extra: 169 / 145,
  16090. bottom: 0.06
  16091. }
  16092. },
  16093. full: {
  16094. height: math.unit(4.96, "feet"),
  16095. weight: math.unit(220, "lb"),
  16096. name: "Full",
  16097. image: {
  16098. source: "./media/characters/anna/full.svg",
  16099. extra: 138 / 114,
  16100. bottom: 0.15
  16101. }
  16102. },
  16103. tongue: {
  16104. height: math.unit(2.53, "feet"),
  16105. name: "Tongue",
  16106. image: {
  16107. source: "./media/characters/anna/tongue.svg"
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(7, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(7, "feet"),
  16124. weight: math.unit(150, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/ian-corvid/front.svg",
  16128. extra: 150 / 142,
  16129. bottom: 0.02
  16130. }
  16131. },
  16132. back: {
  16133. height: math.unit(7, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Back",
  16136. image: {
  16137. source: "./media/characters/ian-corvid/back.svg",
  16138. extra: 150 / 143,
  16139. bottom: 0.01
  16140. }
  16141. },
  16142. stomping: {
  16143. height: math.unit(7, "feet"),
  16144. weight: math.unit(150, "lb"),
  16145. name: "Stomping",
  16146. image: {
  16147. source: "./media/characters/ian-corvid/stomping.svg",
  16148. extra: 76 / 72
  16149. }
  16150. },
  16151. sitting: {
  16152. height: math.unit(7 / 1.8, "feet"),
  16153. weight: math.unit(150, "lb"),
  16154. name: "Sitting",
  16155. image: {
  16156. source: "./media/characters/ian-corvid/sitting.svg",
  16157. extra: 1400 / 1269,
  16158. bottom: 0.15
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Tiny Microw",
  16165. height: math.unit(1, "inch")
  16166. },
  16167. {
  16168. name: "Microw",
  16169. height: math.unit(6, "inches")
  16170. },
  16171. {
  16172. name: "Crow",
  16173. height: math.unit(7 + 1 / 12, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Macrow",
  16178. height: math.unit(176, "feet")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(5 + 7 / 12, "feet"),
  16187. weight: math.unit(147, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/natalie-kellon/front.svg",
  16191. extra: 1214 / 1141,
  16192. bottom: 0.02
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Micro",
  16199. height: math.unit(1 / 16, "inch")
  16200. },
  16201. {
  16202. name: "Tiny",
  16203. height: math.unit(4, "inches")
  16204. },
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(5 + 7 / 12, "feet"),
  16208. default: true
  16209. },
  16210. {
  16211. name: "Amazon",
  16212. height: math.unit(12, "feet")
  16213. },
  16214. {
  16215. name: "Giantess",
  16216. height: math.unit(160, "meters")
  16217. },
  16218. {
  16219. name: "Titaness",
  16220. height: math.unit(800, "meters")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(150, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/alluria/front.svg",
  16233. extra: 806 / 738,
  16234. bottom: 0.01
  16235. }
  16236. },
  16237. side: {
  16238. height: math.unit(6, "feet"),
  16239. weight: math.unit(150, "lb"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/alluria/side.svg",
  16243. extra: 800 / 750,
  16244. }
  16245. },
  16246. back: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(150, "lb"),
  16249. name: "Back",
  16250. image: {
  16251. source: "./media/characters/alluria/back.svg",
  16252. extra: 806 / 738,
  16253. }
  16254. },
  16255. frontMaid: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(150, "lb"),
  16258. name: "Front (Maid)",
  16259. image: {
  16260. source: "./media/characters/alluria/front-maid.svg",
  16261. extra: 806 / 738,
  16262. bottom: 0.01
  16263. }
  16264. },
  16265. sideMaid: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Side (Maid)",
  16269. image: {
  16270. source: "./media/characters/alluria/side-maid.svg",
  16271. extra: 800 / 750,
  16272. bottom: 0.005
  16273. }
  16274. },
  16275. backMaid: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Back (Maid)",
  16279. image: {
  16280. source: "./media/characters/alluria/back-maid.svg",
  16281. extra: 806 / 738,
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Micro",
  16288. height: math.unit(6, "inches"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/kyle/front.svg",
  16302. extra: 1069 / 962,
  16303. bottom: 77.228 / 1727.45
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Macro",
  16310. height: math.unit(150, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(300, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/duncan/front.svg",
  16324. extra: 1650 / 1482,
  16325. bottom: 0.05
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Macro",
  16332. height: math.unit(100, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(5 + 4 / 12, "feet"),
  16342. weight: math.unit(220, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/memory/front.svg",
  16346. extra: 3641 / 3545,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. back: {
  16351. height: math.unit(5 + 4 / 12, "feet"),
  16352. weight: math.unit(220, "lb"),
  16353. name: "Back",
  16354. image: {
  16355. source: "./media/characters/memory/back.svg",
  16356. extra: 3641 / 3545,
  16357. bottom: 0.025
  16358. }
  16359. },
  16360. frontSkirt: {
  16361. height: math.unit(5 + 4 / 12, "feet"),
  16362. weight: math.unit(220, "lb"),
  16363. name: "Front (Skirt)",
  16364. image: {
  16365. source: "./media/characters/memory/front-skirt.svg",
  16366. extra: 3641 / 3545,
  16367. bottom: 0.03
  16368. }
  16369. },
  16370. frontDress: {
  16371. height: math.unit(5 + 4 / 12, "feet"),
  16372. weight: math.unit(220, "lb"),
  16373. name: "Front (Dress)",
  16374. image: {
  16375. source: "./media/characters/memory/front-dress.svg",
  16376. extra: 3641 / 3545,
  16377. bottom: 0.03
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Micro",
  16384. height: math.unit(6, "inches"),
  16385. default: true
  16386. },
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(5 + 4 / 12, "feet")
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(4 + 11 / 12, "feet"),
  16398. weight: math.unit(100, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/luno/front.svg",
  16402. extra: 1535 / 1487,
  16403. bottom: 0.03
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Micro",
  16410. height: math.unit(3, "inches")
  16411. },
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(4 + 11 / 12, "feet"),
  16415. default: true
  16416. },
  16417. {
  16418. name: "Macro",
  16419. height: math.unit(300, "feet")
  16420. },
  16421. {
  16422. name: "Megamacro",
  16423. height: math.unit(700, "miles")
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(6 + 2 / 12, "feet"),
  16432. weight: math.unit(170, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/jamesy/front.svg",
  16436. extra: 440 / 382,
  16437. bottom: 0.005
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Micro",
  16444. height: math.unit(3, "inches")
  16445. },
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(6 + 2 / 12, "feet"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(300, "feet")
  16454. },
  16455. {
  16456. name: "Megamacro",
  16457. height: math.unit(700, "miles")
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16463. {
  16464. front: {
  16465. height: math.unit(6, "feet"),
  16466. weight: math.unit(160, "lb"),
  16467. name: "Front",
  16468. image: {
  16469. source: "./media/characters/mark/front.svg",
  16470. extra: 3300 / 3100,
  16471. bottom: 136.42 / 3440.47
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(120, "meters")
  16479. },
  16480. {
  16481. name: "Bigger Macro",
  16482. height: math.unit(350, "meters")
  16483. },
  16484. {
  16485. name: "Megamacro",
  16486. height: math.unit(8, "km"),
  16487. default: true
  16488. },
  16489. {
  16490. name: "Continental",
  16491. height: math.unit(4550, "km")
  16492. },
  16493. {
  16494. name: "Planetary",
  16495. height: math.unit(65000, "km")
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(6, "feet"),
  16504. weight: math.unit(400, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/mac/front.svg",
  16508. extra: 1048 / 987.7,
  16509. bottom: 60 / 1107.6,
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(500, "feet"),
  16517. default: true
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(5 + 2 / 12, "feet"),
  16526. weight: math.unit(190, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/bari/front.svg",
  16530. extra: 3156 / 2880,
  16531. bottom: 0.03
  16532. }
  16533. },
  16534. back: {
  16535. height: math.unit(5 + 2 / 12, "feet"),
  16536. weight: math.unit(190, "lb"),
  16537. name: "Back",
  16538. image: {
  16539. source: "./media/characters/bari/back.svg",
  16540. extra: 3260 / 2834,
  16541. bottom: 0.025
  16542. }
  16543. },
  16544. frontPlush: {
  16545. height: math.unit(5 + 2 / 12, "feet"),
  16546. weight: math.unit(190, "lb"),
  16547. name: "Front (Plush)",
  16548. image: {
  16549. source: "./media/characters/bari/front-plush.svg",
  16550. extra: 1112 / 1061,
  16551. bottom: 0.002
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Micro",
  16558. height: math.unit(3, "inches")
  16559. },
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(5 + 2 / 12, "feet"),
  16563. default: true
  16564. },
  16565. {
  16566. name: "Macro",
  16567. height: math.unit(20, "feet")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(6 + 1 / 12, "feet"),
  16576. weight: math.unit(275, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/hunter-misha-raven/front.svg"
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Mortal",
  16586. height: math.unit(6 + 1 / 12, "feet")
  16587. },
  16588. {
  16589. name: "Divine",
  16590. height: math.unit(1.12134e34, "parsecs"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 3 / 12, "feet"),
  16600. weight: math.unit(220, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/max-calore/front.svg",
  16604. extra: 1700 / 1648,
  16605. bottom: 0.01
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(6 + 3 / 12, "feet"),
  16610. weight: math.unit(220, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/max-calore/back.svg",
  16614. extra: 1700 / 1648,
  16615. bottom: 0.01
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(6 + 3 / 12, "feet"),
  16623. default: true
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16629. {
  16630. side: {
  16631. height: math.unit(2 + 8 / 12, "feet"),
  16632. weight: math.unit(99, "lb"),
  16633. name: "Side",
  16634. image: {
  16635. source: "./media/characters/aspen/side.svg",
  16636. extra: 152 / 138,
  16637. bottom: 0.032
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(2 + 8 / 12, "feet"),
  16645. default: true
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16651. {
  16652. side: {
  16653. height: math.unit(3 + 2 / 12, "feet"),
  16654. weight: math.unit(224, "lb"),
  16655. name: "Side",
  16656. image: {
  16657. source: "./media/characters/sheila-feral-wolf/side.svg",
  16658. extra: 179 / 166,
  16659. bottom: 0.03
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(3 + 2 / 12, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16673. {
  16674. side: {
  16675. height: math.unit(1 + 9 / 12, "feet"),
  16676. weight: math.unit(38, "lb"),
  16677. name: "Side",
  16678. image: {
  16679. source: "./media/characters/michelle/side.svg",
  16680. extra: 147 / 136.7,
  16681. bottom: 0.03
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1 + 9 / 12, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(1 + 1 / 12, "feet"),
  16698. weight: math.unit(18, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/nino/front.svg"
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(1 + 1 / 12, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(1, "feet"),
  16718. weight: math.unit(16, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/viola/front.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(1, "feet"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(6 + 5 / 12, "feet"),
  16738. weight: math.unit(580, "lb"),
  16739. name: "Front",
  16740. image: {
  16741. source: "./media/characters/atlas/front.svg",
  16742. extra: 298.5 / 290,
  16743. bottom: 0.015
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6 + 5 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16757. {
  16758. side: {
  16759. height: math.unit(1 + 10 / 12, "feet"),
  16760. weight: math.unit(25, "lb"),
  16761. name: "Side",
  16762. image: {
  16763. source: "./media/characters/davy/side.svg",
  16764. extra: 200 / 170,
  16765. bottom: 0.01
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Normal",
  16772. height: math.unit(1 + 10 / 12, "feet"),
  16773. default: true
  16774. },
  16775. ]
  16776. ))
  16777. characterMakers.push(() => makeCharacter(
  16778. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16779. {
  16780. side: {
  16781. height: math.unit(4 + 8 / 12, "feet"),
  16782. weight: math.unit(166, "lb"),
  16783. name: "Side",
  16784. image: {
  16785. source: "./media/characters/fiona/side.svg",
  16786. extra: 232 / 220,
  16787. bottom: 0.03
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(4 + 8 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16801. {
  16802. front: {
  16803. height: math.unit(2, "feet"),
  16804. weight: math.unit(62, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/lyla/front.svg",
  16808. bottom: 0.1
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(2, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16822. {
  16823. side: {
  16824. height: math.unit(1.8, "feet"),
  16825. weight: math.unit(44, "lb"),
  16826. name: "Side",
  16827. image: {
  16828. source: "./media/characters/perseus/side.svg",
  16829. bottom: 0.21
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(1.8, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16843. {
  16844. side: {
  16845. height: math.unit(4 + 2 / 12, "feet"),
  16846. weight: math.unit(20, "lb"),
  16847. name: "Side",
  16848. image: {
  16849. source: "./media/characters/remus/side.svg"
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(4 + 2 / 12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(4 + 11 / 12, "feet"),
  16866. weight: math.unit(114, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/raf/front.svg",
  16870. bottom: 20.5 / 1863
  16871. }
  16872. },
  16873. side: {
  16874. height: math.unit(4 + 11 / 12, "feet"),
  16875. weight: math.unit(114, "lb"),
  16876. name: "Side",
  16877. image: {
  16878. source: "./media/characters/raf/side.svg",
  16879. bottom: 22 / 1822
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Micro",
  16886. height: math.unit(2, "inches")
  16887. },
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(4 + 11 / 12, "feet"),
  16891. default: true
  16892. },
  16893. {
  16894. name: "Macro",
  16895. height: math.unit(70, "feet")
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(1.5, "meters"),
  16904. weight: math.unit(68, "kg"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/liam-einarr/front.svg",
  16908. extra: 2822 / 2666
  16909. }
  16910. },
  16911. back: {
  16912. height: math.unit(1.5, "meters"),
  16913. weight: math.unit(68, "kg"),
  16914. name: "Back",
  16915. image: {
  16916. source: "./media/characters/liam-einarr/back.svg",
  16917. extra: 2822 / 2666,
  16918. bottom: 0.015
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(1.5, "meters"),
  16926. default: true
  16927. },
  16928. {
  16929. name: "Macro",
  16930. height: math.unit(150, "meters")
  16931. },
  16932. {
  16933. name: "Megamacro",
  16934. height: math.unit(35, "km")
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(6, "feet"),
  16943. weight: math.unit(75, "kg"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/linda/front.svg",
  16947. extra: 930 / 874,
  16948. bottom: 0.004
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(6, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(6 + 8 / 12, "feet"),
  16965. weight: math.unit(220, "lb"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/caylex/front.svg",
  16969. extra: 821 / 772,
  16970. bottom: 0.07
  16971. }
  16972. },
  16973. back: {
  16974. height: math.unit(6 + 8 / 12, "feet"),
  16975. weight: math.unit(220, "lb"),
  16976. name: "Back",
  16977. image: {
  16978. source: "./media/characters/caylex/back.svg",
  16979. extra: 821 / 772,
  16980. bottom: 0.022
  16981. }
  16982. },
  16983. hand: {
  16984. height: math.unit(1.25, "feet"),
  16985. name: "Hand",
  16986. image: {
  16987. source: "./media/characters/caylex/hand.svg"
  16988. }
  16989. },
  16990. foot: {
  16991. height: math.unit(1.6, "feet"),
  16992. name: "Foot",
  16993. image: {
  16994. source: "./media/characters/caylex/foot.svg"
  16995. }
  16996. },
  16997. armored: {
  16998. height: math.unit(6 + 8 / 12, "feet"),
  16999. weight: math.unit(250, "lb"),
  17000. name: "Armored",
  17001. image: {
  17002. source: "./media/characters/caylex/armored.svg",
  17003. extra: 1420 / 1310,
  17004. bottom: 0.045
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(6 + 8 / 12, "feet"),
  17012. default: true
  17013. },
  17014. {
  17015. name: "Normal+",
  17016. height: math.unit(12, "feet")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(7 + 6 / 12, "feet"),
  17025. weight: math.unit(288, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/alana/front.svg",
  17029. extra: 679 / 653,
  17030. bottom: 22.5 / 701
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(7 + 6 / 12, "feet")
  17038. },
  17039. {
  17040. name: "Large",
  17041. height: math.unit(50, "feet")
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(100, "feet"),
  17046. default: true
  17047. },
  17048. {
  17049. name: "Macro+",
  17050. height: math.unit(200, "feet")
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(6 + 1 / 12, "feet"),
  17059. weight: math.unit(210, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/hasani/front.svg",
  17063. extra: 244 / 232,
  17064. bottom: 0.01
  17065. }
  17066. },
  17067. back: {
  17068. height: math.unit(6 + 1 / 12, "feet"),
  17069. weight: math.unit(210, "lb"),
  17070. name: "Back",
  17071. image: {
  17072. source: "./media/characters/hasani/back.svg",
  17073. extra: 244 / 232,
  17074. bottom: 0.01
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 1 / 12, "feet")
  17082. },
  17083. {
  17084. name: "Macro",
  17085. height: math.unit(175, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(1.82, "meters"),
  17095. weight: math.unit(140, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/nita/front.svg",
  17099. extra: 2473 / 2363,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(1.82, "m")
  17108. },
  17109. {
  17110. name: "Macro",
  17111. height: math.unit(300, "m")
  17112. },
  17113. {
  17114. name: "Mistake Canon",
  17115. height: math.unit(0.5, "miles"),
  17116. default: true
  17117. },
  17118. {
  17119. name: "Big Mistake",
  17120. height: math.unit(13, "miles")
  17121. },
  17122. {
  17123. name: "Playing God",
  17124. height: math.unit(2450, "miles")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(4, "feet"),
  17133. weight: math.unit(120, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/shiriko/front.svg",
  17137. extra: 195 / 188
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(4, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17151. {
  17152. front: {
  17153. height: math.unit(6, "feet"),
  17154. name: "front",
  17155. image: {
  17156. source: "./media/characters/deja/front.svg",
  17157. extra: 926 / 840,
  17158. bottom: 0.07
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Planck Length",
  17165. height: math.unit(1.6e-35, "meters")
  17166. },
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(30.48, "meters"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Universal",
  17174. height: math.unit(8.8e26, "meters")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17180. {
  17181. side: {
  17182. height: math.unit(8, "feet"),
  17183. weight: math.unit(6300, "lb"),
  17184. name: "Side",
  17185. image: {
  17186. source: "./media/characters/anima/side.svg",
  17187. bottom: 0.035
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(8, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(8, "feet"),
  17204. weight: math.unit(350, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/bianca/front.svg",
  17208. extra: 234 / 225,
  17209. bottom: 0.03
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(8, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(6, "feet"),
  17226. weight: math.unit(150, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/adinia/front.svg",
  17230. extra: 1845 / 1672,
  17231. bottom: 0.02
  17232. }
  17233. },
  17234. back: {
  17235. height: math.unit(6, "feet"),
  17236. weight: math.unit(150, "lb"),
  17237. name: "Back",
  17238. image: {
  17239. source: "./media/characters/adinia/back.svg",
  17240. extra: 1845 / 1672,
  17241. bottom: 0.002
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(11 + 5 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(3, "meters"),
  17258. weight: math.unit(200, "kg"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/lykasa/front.svg",
  17262. extra: 1076 / 976,
  17263. bottom: 0.06
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(3, "meters")
  17271. },
  17272. {
  17273. name: "Kaiju",
  17274. height: math.unit(120, "meters"),
  17275. default: true
  17276. },
  17277. {
  17278. name: "Mega Kaiju",
  17279. height: math.unit(240, "km")
  17280. },
  17281. {
  17282. name: "Giga Kaiju",
  17283. height: math.unit(400, "megameters")
  17284. },
  17285. {
  17286. name: "Tera Kaiju",
  17287. height: math.unit(800, "gigameters")
  17288. },
  17289. {
  17290. name: "Kaiju Dragon Goddess",
  17291. height: math.unit(26, "zettaparsecs")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17297. {
  17298. side: {
  17299. height: math.unit(283 / 124 * 6, "feet"),
  17300. weight: math.unit(35000, "lb"),
  17301. name: "Side",
  17302. image: {
  17303. source: "./media/characters/malfaren/side.svg",
  17304. extra: 2500 / 1010,
  17305. bottom: 0.01
  17306. }
  17307. },
  17308. front: {
  17309. height: math.unit(22.36, "feet"),
  17310. weight: math.unit(35000, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/malfaren/front.svg",
  17314. extra: 1631 / 1476,
  17315. bottom: 0.01
  17316. }
  17317. },
  17318. maw: {
  17319. height: math.unit(6.9, "feet"),
  17320. name: "Maw",
  17321. image: {
  17322. source: "./media/characters/malfaren/maw.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Big",
  17329. height: math.unit(283 / 162 * 6, "feet"),
  17330. },
  17331. {
  17332. name: "Bigger",
  17333. height: math.unit(283 / 124 * 6, "feet")
  17334. },
  17335. {
  17336. name: "Massive",
  17337. height: math.unit(283 / 92 * 6, "feet"),
  17338. default: true
  17339. },
  17340. {
  17341. name: "👀💦",
  17342. height: math.unit(283 / 73 * 6, "feet"),
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(1.7, "m"),
  17351. weight: math.unit(70, "kg"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/kernel/front.svg",
  17355. extra: 222 / 210,
  17356. bottom: 0.007
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Nano",
  17363. height: math.unit(17, "micrometers")
  17364. },
  17365. {
  17366. name: "Micro",
  17367. height: math.unit(1.7, "mm")
  17368. },
  17369. {
  17370. name: "Small",
  17371. height: math.unit(1.7, "cm")
  17372. },
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(1.7, "m"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(1.75, "meters"),
  17385. weight: math.unit(65, "kg"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/jayne-folest/front.svg",
  17389. extra: 2115 / 2007,
  17390. bottom: 0.02
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(1.75, "meters"),
  17395. weight: math.unit(65, "kg"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/jayne-folest/back.svg",
  17399. extra: 2115 / 2007,
  17400. bottom: 0.005
  17401. }
  17402. },
  17403. frontClothed: {
  17404. height: math.unit(1.75, "meters"),
  17405. weight: math.unit(65, "kg"),
  17406. name: "Front (Clothed)",
  17407. image: {
  17408. source: "./media/characters/jayne-folest/front-clothed.svg",
  17409. extra: 2115 / 2007,
  17410. bottom: 0.035
  17411. }
  17412. },
  17413. hand: {
  17414. height: math.unit(1 / 1.260, "feet"),
  17415. name: "Hand",
  17416. image: {
  17417. source: "./media/characters/jayne-folest/hand.svg"
  17418. }
  17419. },
  17420. foot: {
  17421. height: math.unit(1 / 0.918, "feet"),
  17422. name: "Foot",
  17423. image: {
  17424. source: "./media/characters/jayne-folest/foot.svg"
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Micro",
  17431. height: math.unit(4, "cm")
  17432. },
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(1.75, "meters")
  17436. },
  17437. {
  17438. name: "Macro",
  17439. height: math.unit(47.5, "meters"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(180, "cm"),
  17449. weight: math.unit(70, "kg"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/algier/front.svg",
  17453. extra: 596 / 572,
  17454. bottom: 0.04
  17455. }
  17456. },
  17457. back: {
  17458. height: math.unit(180, "cm"),
  17459. weight: math.unit(70, "kg"),
  17460. name: "Back",
  17461. image: {
  17462. source: "./media/characters/algier/back.svg",
  17463. extra: 596 / 572,
  17464. bottom: 0.025
  17465. }
  17466. },
  17467. frontdressed: {
  17468. height: math.unit(180, "cm"),
  17469. weight: math.unit(150, "kg"),
  17470. name: "Front-dressed",
  17471. image: {
  17472. source: "./media/characters/algier/front-dressed.svg",
  17473. extra: 596 / 572,
  17474. bottom: 0.038
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Micro",
  17481. height: math.unit(5, "cm")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(180, "cm"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(64, "m")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17496. {
  17497. upright: {
  17498. height: math.unit(7, "feet"),
  17499. weight: math.unit(300, "lb"),
  17500. name: "Upright",
  17501. image: {
  17502. source: "./media/characters/pretzel/upright.svg",
  17503. extra: 534 / 522,
  17504. bottom: 0.065
  17505. }
  17506. },
  17507. sprawling: {
  17508. height: math.unit(3.75, "feet"),
  17509. weight: math.unit(300, "lb"),
  17510. name: "Sprawling",
  17511. image: {
  17512. source: "./media/characters/pretzel/sprawling.svg",
  17513. extra: 314 / 281,
  17514. bottom: 0.1
  17515. }
  17516. },
  17517. tongue: {
  17518. height: math.unit(2, "feet"),
  17519. name: "Tongue",
  17520. image: {
  17521. source: "./media/characters/pretzel/tongue.svg"
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(7, "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Oversized",
  17533. height: math.unit(15, "feet")
  17534. },
  17535. {
  17536. name: "Huge",
  17537. height: math.unit(30, "feet")
  17538. },
  17539. {
  17540. name: "Macro",
  17541. height: math.unit(250, "feet")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17547. {
  17548. sideFront: {
  17549. height: math.unit(5 + 2 / 12, "feet"),
  17550. weight: math.unit(120, "lb"),
  17551. name: "Front Side",
  17552. image: {
  17553. source: "./media/characters/roxi/side-front.svg",
  17554. extra: 2924 / 2717,
  17555. bottom: 0.08
  17556. }
  17557. },
  17558. sideBack: {
  17559. height: math.unit(5 + 2 / 12, "feet"),
  17560. weight: math.unit(120, "lb"),
  17561. name: "Back Side",
  17562. image: {
  17563. source: "./media/characters/roxi/side-back.svg",
  17564. extra: 2904 / 2693,
  17565. bottom: 0.06
  17566. }
  17567. },
  17568. front: {
  17569. height: math.unit(5 + 2 / 12, "feet"),
  17570. weight: math.unit(120, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/roxi/front.svg",
  17574. extra: 2028 / 1907,
  17575. bottom: 0.01
  17576. }
  17577. },
  17578. frontAlt: {
  17579. height: math.unit(5 + 2 / 12, "feet"),
  17580. weight: math.unit(120, "lb"),
  17581. name: "Front (Alt)",
  17582. image: {
  17583. source: "./media/characters/roxi/front-alt.svg",
  17584. extra: 1828 / 1798,
  17585. bottom: 0.01
  17586. }
  17587. },
  17588. sitting: {
  17589. height: math.unit(2.8, "feet"),
  17590. weight: math.unit(120, "lb"),
  17591. name: "Sitting",
  17592. image: {
  17593. source: "./media/characters/roxi/sitting.svg",
  17594. extra: 2660 / 2462,
  17595. bottom: 0.1
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(5 + 2 / 12, "feet"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17609. {
  17610. side: {
  17611. height: math.unit(55, "feet"),
  17612. weight: math.unit(153, "tons"),
  17613. name: "Side",
  17614. image: {
  17615. source: "./media/characters/shadow/side.svg",
  17616. extra: 701 / 628,
  17617. bottom: 0.02
  17618. }
  17619. },
  17620. flying: {
  17621. height: math.unit(145, "feet"),
  17622. weight: math.unit(153, "tons"),
  17623. name: "Flying",
  17624. image: {
  17625. source: "./media/characters/shadow/flying.svg"
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(55, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6, "feet"),
  17642. weight: math.unit(200, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/marcie/front.svg",
  17646. extra: 960 / 876,
  17647. bottom: 58 / 1017.87
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Macro",
  17654. height: math.unit(1, "mile"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(200, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/kachina/front.svg",
  17668. extra: 1290.68 / 1119,
  17669. bottom: 36.5 / 1327.18
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(7, "feet"),
  17677. default: true
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17683. {
  17684. looking: {
  17685. height: math.unit(2, "meters"),
  17686. weight: math.unit(300, "kg"),
  17687. name: "Looking",
  17688. image: {
  17689. source: "./media/characters/kash/looking.svg",
  17690. extra: 474 / 344,
  17691. bottom: 0.03
  17692. }
  17693. },
  17694. side: {
  17695. height: math.unit(2, "meters"),
  17696. weight: math.unit(300, "kg"),
  17697. name: "Side",
  17698. image: {
  17699. source: "./media/characters/kash/side.svg",
  17700. extra: 302 / 251,
  17701. bottom: 0.03
  17702. }
  17703. },
  17704. front: {
  17705. height: math.unit(2, "meters"),
  17706. weight: math.unit(300, "kg"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/kash/front.svg",
  17710. extra: 495 / 360,
  17711. bottom: 0.015
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(2, "meters"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Big",
  17723. height: math.unit(3, "meters")
  17724. },
  17725. {
  17726. name: "Large",
  17727. height: math.unit(5, "meters")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17733. {
  17734. feeding: {
  17735. height: math.unit(6.7, "feet"),
  17736. weight: math.unit(350, "lb"),
  17737. name: "Feeding",
  17738. image: {
  17739. source: "./media/characters/lalim/feeding.svg",
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(6.7, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(9.5, "feet"),
  17756. weight: math.unit(600, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/de'vout/front.svg",
  17760. extra: 1443 / 1328,
  17761. bottom: 0.025
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(9.5, "feet"),
  17766. weight: math.unit(600, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/de'vout/back.svg",
  17770. extra: 1443 / 1328
  17771. }
  17772. },
  17773. frontDressed: {
  17774. height: math.unit(9.5, "feet"),
  17775. weight: math.unit(600, "lb"),
  17776. name: "Front (Dressed",
  17777. image: {
  17778. source: "./media/characters/de'vout/front-dressed.svg",
  17779. extra: 1443 / 1328,
  17780. bottom: 0.025
  17781. }
  17782. },
  17783. backDressed: {
  17784. height: math.unit(9.5, "feet"),
  17785. weight: math.unit(600, "lb"),
  17786. name: "Back (Dressed",
  17787. image: {
  17788. source: "./media/characters/de'vout/back-dressed.svg",
  17789. extra: 1443 / 1328
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(9.5, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17803. {
  17804. front: {
  17805. height: math.unit(8, "feet"),
  17806. weight: math.unit(225, "lb"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/talana/front.svg",
  17810. extra: 1410 / 1300,
  17811. bottom: 0.015
  17812. }
  17813. },
  17814. frontDressed: {
  17815. height: math.unit(8, "feet"),
  17816. weight: math.unit(225, "lb"),
  17817. name: "Front (Dressed",
  17818. image: {
  17819. source: "./media/characters/talana/front-dressed.svg",
  17820. extra: 1410 / 1300,
  17821. bottom: 0.015
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(8, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17835. {
  17836. side: {
  17837. height: math.unit(7.2, "feet"),
  17838. weight: math.unit(150, "lb"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/xeauvok/side.svg",
  17842. extra: 1975 / 1523,
  17843. bottom: 0.07
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(7.2, "feet"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17857. {
  17858. side: {
  17859. height: math.unit(10, "feet"),
  17860. weight: math.unit(900, "kg"),
  17861. name: "Side",
  17862. image: {
  17863. source: "./media/characters/zara/side.svg",
  17864. extra: 504 / 498
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(10, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17878. {
  17879. side: {
  17880. height: math.unit(6, "feet"),
  17881. weight: math.unit(150, "lb"),
  17882. name: "Side",
  17883. image: {
  17884. source: "./media/characters/richard-dragon/side.svg",
  17885. extra: 845 / 340,
  17886. bottom: 0.017
  17887. }
  17888. },
  17889. maw: {
  17890. height: math.unit(2.97, "feet"),
  17891. name: "Maw",
  17892. image: {
  17893. source: "./media/characters/richard-dragon/maw.svg"
  17894. }
  17895. },
  17896. },
  17897. [
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(4, "feet"),
  17905. weight: math.unit(100, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/richard-smeargle/front.svg",
  17909. extra: 2952 / 2820,
  17910. bottom: 0.028
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(4, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Dynamax",
  17922. height: math.unit(20, "meters")
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(6, "feet"),
  17931. weight: math.unit(110, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/klay/front.svg",
  17935. extra: 962 / 883,
  17936. bottom: 0.04
  17937. }
  17938. },
  17939. back: {
  17940. height: math.unit(6, "feet"),
  17941. weight: math.unit(110, "lb"),
  17942. name: "Back",
  17943. image: {
  17944. source: "./media/characters/klay/back.svg",
  17945. extra: 962 / 883
  17946. }
  17947. },
  17948. beans: {
  17949. height: math.unit(1.15, "feet"),
  17950. name: "Beans",
  17951. image: {
  17952. source: "./media/characters/klay/beans.svg"
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Micro",
  17959. height: math.unit(6, "inches")
  17960. },
  17961. {
  17962. name: "Mini",
  17963. height: math.unit(3, "feet")
  17964. },
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(6, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Big",
  17972. height: math.unit(25, "feet")
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(100, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(400, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6, "feet"),
  17989. weight: math.unit(160, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/marcus/front.svg",
  17993. extra: 734 / 676,
  17994. bottom: 0.03
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Little",
  18001. height: math.unit(6, "feet")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(110, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(250, "feet")
  18011. },
  18012. {
  18013. name: "Megamacro",
  18014. height: math.unit(1000, "feet")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(7, "feet"),
  18023. weight: math.unit(275, "lb"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/claude-delroute/front.svg",
  18027. extra: 230 / 214,
  18028. bottom: 0.007
  18029. }
  18030. },
  18031. side: {
  18032. height: math.unit(7, "feet"),
  18033. weight: math.unit(275, "lb"),
  18034. name: "Side",
  18035. image: {
  18036. source: "./media/characters/claude-delroute/side.svg",
  18037. extra: 222 / 214,
  18038. bottom: 0.01
  18039. }
  18040. },
  18041. back: {
  18042. height: math.unit(7, "feet"),
  18043. weight: math.unit(275, "lb"),
  18044. name: "Back",
  18045. image: {
  18046. source: "./media/characters/claude-delroute/back.svg",
  18047. extra: 230 / 214,
  18048. bottom: 0.015
  18049. }
  18050. },
  18051. maw: {
  18052. height: math.unit(0.6407, "meters"),
  18053. name: "Maw",
  18054. image: {
  18055. source: "./media/characters/claude-delroute/maw.svg"
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(7, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Lorge",
  18067. height: math.unit(20, "feet")
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(8 + 4 / 12, "feet"),
  18076. weight: math.unit(600, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/dragonien/front.svg",
  18080. extra: 100 / 94,
  18081. bottom: 3.3 / 103.3445
  18082. }
  18083. },
  18084. back: {
  18085. height: math.unit(8 + 4 / 12, "feet"),
  18086. weight: math.unit(600, "lb"),
  18087. name: "Back",
  18088. image: {
  18089. source: "./media/characters/dragonien/back.svg",
  18090. extra: 776 / 746,
  18091. bottom: 6.4 / 782.0616
  18092. }
  18093. },
  18094. foot: {
  18095. height: math.unit(1.54, "feet"),
  18096. name: "Foot",
  18097. image: {
  18098. source: "./media/characters/dragonien/foot.svg",
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(8 + 4 / 12, "feet"),
  18106. default: true
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(200, "feet")
  18111. },
  18112. {
  18113. name: "Megamacro",
  18114. height: math.unit(1, "mile")
  18115. },
  18116. {
  18117. name: "Gigamacro",
  18118. height: math.unit(1000, "miles")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(5 + 2 / 12, "feet"),
  18127. weight: math.unit(110, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/desta/front.svg",
  18131. extra: 767 / 726,
  18132. bottom: 11.7 / 779
  18133. }
  18134. },
  18135. back: {
  18136. height: math.unit(5 + 2 / 12, "feet"),
  18137. weight: math.unit(110, "lb"),
  18138. name: "Back",
  18139. image: {
  18140. source: "./media/characters/desta/back.svg",
  18141. extra: 777 / 728,
  18142. bottom: 6 / 784
  18143. }
  18144. },
  18145. frontAlt: {
  18146. height: math.unit(5 + 2 / 12, "feet"),
  18147. weight: math.unit(110, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/desta/front-alt.svg",
  18151. extra: 1482 / 1417
  18152. }
  18153. },
  18154. side: {
  18155. height: math.unit(5 + 2 / 12, "feet"),
  18156. weight: math.unit(110, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/desta/side.svg",
  18160. extra: 2579 / 2491,
  18161. bottom: 0.053
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Micro",
  18168. height: math.unit(6, "inches")
  18169. },
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(5 + 2 / 12, "feet"),
  18173. default: true
  18174. },
  18175. {
  18176. name: "Macro",
  18177. height: math.unit(62, "feet")
  18178. },
  18179. {
  18180. name: "Megamacro",
  18181. height: math.unit(1800, "feet")
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(10, "feet"),
  18190. weight: math.unit(700, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/storm-alystar/front.svg",
  18194. extra: 2112 / 1898,
  18195. bottom: 0.034
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Micro",
  18202. height: math.unit(3.5, "inches")
  18203. },
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(10, "feet"),
  18207. default: true
  18208. },
  18209. {
  18210. name: "Macro",
  18211. height: math.unit(400, "feet")
  18212. },
  18213. {
  18214. name: "Deific",
  18215. height: math.unit(60, "miles")
  18216. },
  18217. ]
  18218. ))
  18219. characterMakers.push(() => makeCharacter(
  18220. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18221. {
  18222. front: {
  18223. height: math.unit(2.35, "meters"),
  18224. weight: math.unit(119, "kg"),
  18225. name: "Front",
  18226. image: {
  18227. source: "./media/characters/ilia/front.svg",
  18228. extra: 1285 / 1255,
  18229. bottom: 0.06
  18230. }
  18231. },
  18232. },
  18233. [
  18234. {
  18235. name: "Normal",
  18236. height: math.unit(2.35, "meters")
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(140, "meters"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "Megamacro",
  18245. height: math.unit(100, "miles")
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(6 + 5 / 12, "feet"),
  18254. weight: math.unit(190, "lb"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/kingdead/front.svg",
  18258. extra: 1228 / 1177
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Micro",
  18265. height: math.unit(7, "inches")
  18266. },
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(6 + 5 / 12, "feet")
  18270. },
  18271. {
  18272. name: "Macro",
  18273. height: math.unit(150, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Megamacro",
  18278. height: math.unit(200, "miles")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(8, "feet"),
  18287. weight: math.unit(600, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/kyrehx/front.svg",
  18291. extra: 1195 / 1095,
  18292. bottom: 0.034
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Micro",
  18299. height: math.unit(2, "inches")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(8, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(255, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18317. weight: math.unit(184, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/xang/front.svg",
  18321. extra: 845 / 755
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(0.935 * 146, "feet")
  18334. },
  18335. {
  18336. name: "Megamacro",
  18337. height: math.unit(0.935 * 3, "miles")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18343. {
  18344. frontDressed: {
  18345. height: math.unit(5 + 7 / 12, "feet"),
  18346. weight: math.unit(140, "lb"),
  18347. name: "Front (Dressed)",
  18348. image: {
  18349. source: "./media/characters/doc-weardno/front-dressed.svg",
  18350. extra: 263 / 234
  18351. }
  18352. },
  18353. backDressed: {
  18354. height: math.unit(5 + 7 / 12, "feet"),
  18355. weight: math.unit(140, "lb"),
  18356. name: "Back (Dressed)",
  18357. image: {
  18358. source: "./media/characters/doc-weardno/back-dressed.svg",
  18359. extra: 266 / 238
  18360. }
  18361. },
  18362. front: {
  18363. height: math.unit(5 + 7 / 12, "feet"),
  18364. weight: math.unit(140, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/doc-weardno/front.svg",
  18368. extra: 254 / 233
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Micro",
  18375. height: math.unit(3, "inches")
  18376. },
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(5 + 7 / 12, "feet"),
  18380. default: true
  18381. },
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(25, "feet")
  18385. },
  18386. {
  18387. name: "Megamacro",
  18388. height: math.unit(2, "miles")
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(6 + 2 / 12, "feet"),
  18397. weight: math.unit(153, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/seth-whilst/front.svg",
  18401. bottom: 0.07
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Micro",
  18408. height: math.unit(5, "inches")
  18409. },
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(6 + 2 / 12, "feet"),
  18413. default: true
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(3, "inches"),
  18422. weight: math.unit(8, "grams"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/pocket-jabari/front.svg",
  18426. extra: 1024 / 974,
  18427. bottom: 0.039
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Minimicro",
  18434. height: math.unit(8, "mm")
  18435. },
  18436. {
  18437. name: "Micro",
  18438. height: math.unit(3, "inches"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(3, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(15, "feet"),
  18452. weight: math.unit(3280, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/sapphy/front.svg",
  18456. extra: 671 / 577,
  18457. bottom: 0.085
  18458. }
  18459. },
  18460. back: {
  18461. height: math.unit(15, "feet"),
  18462. weight: math.unit(3280, "lb"),
  18463. name: "Back",
  18464. image: {
  18465. source: "./media/characters/sapphy/back.svg",
  18466. extra: 631 / 607,
  18467. bottom: 0.045
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(15, "feet")
  18475. },
  18476. {
  18477. name: "Casual Macro",
  18478. height: math.unit(120, "feet")
  18479. },
  18480. {
  18481. name: "Macro",
  18482. height: math.unit(2150, "feet"),
  18483. default: true
  18484. },
  18485. {
  18486. name: "Megamacro",
  18487. height: math.unit(8, "miles")
  18488. },
  18489. {
  18490. name: "Galaxy Mom",
  18491. height: math.unit(6, "megalightyears")
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(6, "feet"),
  18500. weight: math.unit(170, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/kiro/front.svg",
  18504. extra: 1064 / 1012,
  18505. bottom: 0.052
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Micro",
  18512. height: math.unit(6, "inches")
  18513. },
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(6, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(72, "feet")
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(5 + 9 / 12, "feet"),
  18530. weight: math.unit(175, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/irishfox/front.svg",
  18534. extra: 1912 / 1680,
  18535. bottom: 0.02
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Nano",
  18542. height: math.unit(1, "mm")
  18543. },
  18544. {
  18545. name: "Micro",
  18546. height: math.unit(2, "inches")
  18547. },
  18548. {
  18549. name: "Normal",
  18550. height: math.unit(5 + 9 / 12, "feet"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "Macro",
  18555. height: math.unit(45, "feet")
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(6 + 1 / 12, "feet"),
  18564. weight: math.unit(75, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/aronai-sieyes/front.svg",
  18568. extra: 1556 / 1480,
  18569. bottom: 0.015
  18570. }
  18571. },
  18572. side: {
  18573. height: math.unit(6 + 1 / 12, "feet"),
  18574. weight: math.unit(75, "lb"),
  18575. name: "Side",
  18576. image: {
  18577. source: "./media/characters/aronai-sieyes/side.svg",
  18578. extra: 1433 / 1390,
  18579. bottom: 0.0393
  18580. }
  18581. },
  18582. back: {
  18583. height: math.unit(6 + 1 / 12, "feet"),
  18584. weight: math.unit(75, "lb"),
  18585. name: "Back",
  18586. image: {
  18587. source: "./media/characters/aronai-sieyes/back.svg",
  18588. extra: 1544 / 1494,
  18589. bottom: 0.02
  18590. }
  18591. },
  18592. frontClothed: {
  18593. height: math.unit(6 + 1 / 12, "feet"),
  18594. weight: math.unit(75, "lb"),
  18595. name: "Front (Clothed)",
  18596. image: {
  18597. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18598. extra: 1582 / 1527
  18599. }
  18600. },
  18601. feral: {
  18602. height: math.unit(18, "feet"),
  18603. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18604. name: "Feral",
  18605. image: {
  18606. source: "./media/characters/aronai-sieyes/feral.svg",
  18607. extra: 1530 / 1240,
  18608. bottom: 0.035
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Micro",
  18615. height: math.unit(2, "inches")
  18616. },
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(6 + 1 / 12, "feet"),
  18620. default: true
  18621. }
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(12, "feet"),
  18629. weight: math.unit(410, "kg"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/xuna/front.svg",
  18633. extra: 2184 / 1980
  18634. }
  18635. },
  18636. side: {
  18637. height: math.unit(12, "feet"),
  18638. weight: math.unit(410, "kg"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/xuna/side.svg",
  18642. extra: 2184 / 1980
  18643. }
  18644. },
  18645. back: {
  18646. height: math.unit(12, "feet"),
  18647. weight: math.unit(410, "kg"),
  18648. name: "Back",
  18649. image: {
  18650. source: "./media/characters/xuna/back.svg",
  18651. extra: 2184 / 1980
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Nano glow",
  18658. height: math.unit(10, "nm")
  18659. },
  18660. {
  18661. name: "Micro floof",
  18662. height: math.unit(0.3, "m")
  18663. },
  18664. {
  18665. name: "Huggable softy boi",
  18666. height: math.unit(3.6576, "m"),
  18667. default: true
  18668. },
  18669. {
  18670. name: "Admirable floof",
  18671. height: math.unit(80, "meters")
  18672. },
  18673. {
  18674. name: "Gentle macro",
  18675. height: math.unit(300, "meters")
  18676. },
  18677. {
  18678. name: "Very careful floof",
  18679. height: math.unit(3200, "meters")
  18680. },
  18681. {
  18682. name: "The mega floof",
  18683. height: math.unit(36000, "meters")
  18684. },
  18685. {
  18686. name: "Giga-fur-Wicker",
  18687. height: math.unit(4800000, "meters")
  18688. },
  18689. {
  18690. name: "Licky world",
  18691. height: math.unit(20000000, "meters")
  18692. },
  18693. {
  18694. name: "Floofy cyan sun",
  18695. height: math.unit(1500000000, "meters")
  18696. },
  18697. {
  18698. name: "Milky Wicker",
  18699. height: math.unit(1000000000000000000000, "meters")
  18700. },
  18701. {
  18702. name: "The observing Wicker",
  18703. height: math.unit(999999999999999999999999999, "meters")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(5 + 9 / 12, "feet"),
  18712. weight: math.unit(150, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/arokha-sieyes/front.svg",
  18716. extra: 1425 / 1284,
  18717. bottom: 0.05
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(5 + 9 / 12, "feet")
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(30, "meters"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(6, "feet"),
  18738. weight: math.unit(180, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/arokh-sieyes/front.svg",
  18742. extra: 1830 / 1769,
  18743. bottom: 0.01
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(6, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(30, "meters"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18761. {
  18762. side: {
  18763. height: math.unit(13 + 1 / 12, "feet"),
  18764. weight: math.unit(8.5, "tonnes"),
  18765. name: "Side",
  18766. image: {
  18767. source: "./media/characters/goldeneye/side.svg",
  18768. extra: 1182 / 778,
  18769. bottom: 0.067
  18770. }
  18771. },
  18772. paw: {
  18773. height: math.unit(3.4, "feet"),
  18774. name: "Paw",
  18775. image: {
  18776. source: "./media/characters/goldeneye/paw.svg"
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(13 + 1 / 12, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6 + 1 / 12, "feet"),
  18793. weight: math.unit(210, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/leonardo-lycheborne/front.svg",
  18797. extra: 390 / 365,
  18798. bottom: 0.032
  18799. }
  18800. },
  18801. side: {
  18802. height: math.unit(6 + 1 / 12, "feet"),
  18803. weight: math.unit(210, "lb"),
  18804. name: "Side",
  18805. image: {
  18806. source: "./media/characters/leonardo-lycheborne/side.svg",
  18807. extra: 390 / 365,
  18808. bottom: 0.005
  18809. }
  18810. },
  18811. back: {
  18812. height: math.unit(6 + 1 / 12, "feet"),
  18813. weight: math.unit(210, "lb"),
  18814. name: "Back",
  18815. image: {
  18816. source: "./media/characters/leonardo-lycheborne/back.svg",
  18817. extra: 392 / 366,
  18818. bottom: 0.01
  18819. }
  18820. },
  18821. hand: {
  18822. height: math.unit(1.08, "feet"),
  18823. name: "Hand",
  18824. image: {
  18825. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18826. }
  18827. },
  18828. foot: {
  18829. height: math.unit(1.32, "feet"),
  18830. name: "Foot",
  18831. image: {
  18832. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18833. }
  18834. },
  18835. were: {
  18836. height: math.unit(20, "feet"),
  18837. weight: math.unit(7800, "lb"),
  18838. name: "Were",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/were.svg",
  18841. extra: 308 / 294,
  18842. bottom: 0.048
  18843. }
  18844. },
  18845. feral: {
  18846. height: math.unit(7.5, "feet"),
  18847. weight: math.unit(600, "lb"),
  18848. name: "Feral",
  18849. image: {
  18850. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18851. extra: 210 / 186,
  18852. bottom: 0.108
  18853. }
  18854. },
  18855. taur: {
  18856. height: math.unit(11, "feet"),
  18857. weight: math.unit(3300, "lb"),
  18858. name: "Taur",
  18859. image: {
  18860. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18861. extra: 320 / 303,
  18862. bottom: 0.025
  18863. }
  18864. },
  18865. barghest: {
  18866. height: math.unit(11, "feet"),
  18867. weight: math.unit(1300, "lb"),
  18868. name: "Barghest",
  18869. image: {
  18870. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18871. extra: 323 / 302,
  18872. bottom: 0.027
  18873. }
  18874. },
  18875. dick: {
  18876. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18877. name: "Dick",
  18878. image: {
  18879. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18880. }
  18881. },
  18882. dickWere: {
  18883. height: math.unit((20) / 3.8, "feet"),
  18884. name: "Dick (Were)",
  18885. image: {
  18886. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(6 + 1 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(10, "feet"),
  18903. weight: math.unit(350, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/jet/front.svg",
  18907. extra: 2050 / 1980,
  18908. bottom: 0.013
  18909. }
  18910. },
  18911. back: {
  18912. height: math.unit(10, "feet"),
  18913. weight: math.unit(350, "lb"),
  18914. name: "Back",
  18915. image: {
  18916. source: "./media/characters/jet/back.svg",
  18917. extra: 2050 / 1980,
  18918. bottom: 0.013
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Micro",
  18925. height: math.unit(6, "inches")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(10, "feet"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(100, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(15, "feet"),
  18943. weight: math.unit(2800, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/tanarath/front.svg",
  18947. extra: 2392 / 2220,
  18948. bottom: 0.03
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(15, "feet"),
  18953. weight: math.unit(2800, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/tanarath/back.svg",
  18957. extra: 2392 / 2220,
  18958. bottom: 0.03
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(15, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(7 + 1 / 12, "feet"),
  18975. weight: math.unit(175, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/patty-cattybatty/front.svg",
  18979. extra: 908 / 874,
  18980. bottom: 0.025
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Micro",
  18987. height: math.unit(1, "inch")
  18988. },
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(7 + 1 / 12, "feet")
  18992. },
  18993. {
  18994. name: "Mini Macro",
  18995. height: math.unit(155, "feet")
  18996. },
  18997. {
  18998. name: "Macro",
  18999. height: math.unit(1077, "feet")
  19000. },
  19001. {
  19002. name: "Mega Macro",
  19003. height: math.unit(47650, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Giga Macro",
  19008. height: math.unit(440, "miles")
  19009. },
  19010. {
  19011. name: "Tera Macro",
  19012. height: math.unit(8700, "miles")
  19013. },
  19014. {
  19015. name: "Planetary Macro",
  19016. height: math.unit(32700, "miles")
  19017. },
  19018. {
  19019. name: "Solar Macro",
  19020. height: math.unit(550000, "miles")
  19021. },
  19022. {
  19023. name: "Celestial Macro",
  19024. height: math.unit(2.5, "AU")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(4 + 5 / 12, "feet"),
  19033. weight: math.unit(90, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/cappu/front.svg",
  19037. extra: 1247 / 1152,
  19038. bottom: 0.012
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(4 + 5 / 12, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19052. {
  19053. frontDressed: {
  19054. height: math.unit(70, "cm"),
  19055. weight: math.unit(6, "kg"),
  19056. name: "Front (Dressed)",
  19057. image: {
  19058. source: "./media/characters/sebi/front-dressed.svg",
  19059. extra: 713.5 / 686.5,
  19060. bottom: 0.003
  19061. }
  19062. },
  19063. front: {
  19064. height: math.unit(70, "cm"),
  19065. weight: math.unit(5, "kg"),
  19066. name: "Front",
  19067. image: {
  19068. source: "./media/characters/sebi/front.svg",
  19069. extra: 713.5 / 686.5,
  19070. bottom: 0.003
  19071. }
  19072. }
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(70, "cm"),
  19078. default: true
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(8, "meters")
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(6, "feet"),
  19091. weight: math.unit(150, "lb"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/typhek/front.svg",
  19095. extra: 1948 / 1929,
  19096. bottom: 0.025
  19097. }
  19098. },
  19099. side: {
  19100. height: math.unit(6, "feet"),
  19101. weight: math.unit(150, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/typhek/side.svg",
  19105. extra: 2034 / 2010,
  19106. bottom: 0.003
  19107. }
  19108. },
  19109. back: {
  19110. height: math.unit(6, "feet"),
  19111. weight: math.unit(150, "lb"),
  19112. name: "Back",
  19113. image: {
  19114. source: "./media/characters/typhek/back.svg",
  19115. extra: 2005 / 1978,
  19116. bottom: 0.004
  19117. }
  19118. },
  19119. palm: {
  19120. height: math.unit(1.2, "feet"),
  19121. name: "Palm",
  19122. image: {
  19123. source: "./media/characters/typhek/palm.svg"
  19124. }
  19125. },
  19126. fist: {
  19127. height: math.unit(1.1, "feet"),
  19128. name: "Fist",
  19129. image: {
  19130. source: "./media/characters/typhek/fist.svg"
  19131. }
  19132. },
  19133. foot: {
  19134. height: math.unit(1.57, "feet"),
  19135. name: "Foot",
  19136. image: {
  19137. source: "./media/characters/typhek/foot.svg"
  19138. }
  19139. },
  19140. sole: {
  19141. height: math.unit(2.05, "feet"),
  19142. name: "Sole",
  19143. image: {
  19144. source: "./media/characters/typhek/sole.svg"
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(40, "stories"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Megamacro",
  19156. height: math.unit(1, "mile")
  19157. },
  19158. {
  19159. name: "Gigamacro",
  19160. height: math.unit(4000, "solarradii")
  19161. },
  19162. {
  19163. name: "Universal",
  19164. height: math.unit(1.1, "universes")
  19165. }
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19170. {
  19171. side: {
  19172. height: math.unit(5 + 7 / 12, "feet"),
  19173. weight: math.unit(150, "lb"),
  19174. name: "Side",
  19175. image: {
  19176. source: "./media/characters/kassy/side.svg",
  19177. extra: 1280 / 1225,
  19178. bottom: 0.002
  19179. }
  19180. },
  19181. front: {
  19182. height: math.unit(5 + 7 / 12, "feet"),
  19183. weight: math.unit(150, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/kassy/front.svg",
  19187. extra: 1280 / 1225,
  19188. bottom: 0.025
  19189. }
  19190. },
  19191. back: {
  19192. height: math.unit(5 + 7 / 12, "feet"),
  19193. weight: math.unit(150, "lb"),
  19194. name: "Back",
  19195. image: {
  19196. source: "./media/characters/kassy/back.svg",
  19197. extra: 1280 / 1225,
  19198. bottom: 0.002
  19199. }
  19200. },
  19201. foot: {
  19202. height: math.unit(1.266, "feet"),
  19203. name: "Foot",
  19204. image: {
  19205. source: "./media/characters/kassy/foot.svg"
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(5 + 7 / 12, "feet")
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(137, "feet"),
  19217. default: true
  19218. },
  19219. {
  19220. name: "Megamacro",
  19221. height: math.unit(1, "mile")
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(6 + 1 / 12, "feet"),
  19230. weight: math.unit(200, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/neil/front.svg",
  19234. extra: 1326 / 1250,
  19235. bottom: 0.023
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(6 + 1 / 12, "feet"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(200, "feet")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(5 + 9 / 12, "feet"),
  19256. weight: math.unit(190, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/atticus/front.svg",
  19260. extra: 2934 / 2785,
  19261. bottom: 0.025
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(5 + 9 / 12, "feet"),
  19269. default: true
  19270. },
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(180, "feet")
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19279. {
  19280. side: {
  19281. height: math.unit(9, "feet"),
  19282. weight: math.unit(650, "lb"),
  19283. name: "Side",
  19284. image: {
  19285. source: "./media/characters/milo/side.svg",
  19286. extra: 2644 / 2310,
  19287. bottom: 0.032
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(9, "feet"),
  19295. default: true
  19296. },
  19297. {
  19298. name: "Macro",
  19299. height: math.unit(300, "feet")
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19305. {
  19306. side: {
  19307. height: math.unit(8, "meters"),
  19308. weight: math.unit(90000, "kg"),
  19309. name: "Side",
  19310. image: {
  19311. source: "./media/characters/ijzer/side.svg",
  19312. extra: 2756 / 1600,
  19313. bottom: 0.01
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Small",
  19320. height: math.unit(3, "meters")
  19321. },
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(8, "meters"),
  19325. default: true
  19326. },
  19327. {
  19328. name: "Normal+",
  19329. height: math.unit(10, "meters")
  19330. },
  19331. {
  19332. name: "Bigger",
  19333. height: math.unit(24, "meters")
  19334. },
  19335. {
  19336. name: "Huge",
  19337. height: math.unit(80, "meters")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(6 + 2 / 12, "feet"),
  19346. weight: math.unit(153, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/luca-cervicum/front.svg",
  19350. extra: 370 / 327,
  19351. bottom: 0.015
  19352. }
  19353. },
  19354. back: {
  19355. height: math.unit(6 + 2 / 12, "feet"),
  19356. weight: math.unit(153, "lb"),
  19357. name: "Back",
  19358. image: {
  19359. source: "./media/characters/luca-cervicum/back.svg",
  19360. extra: 367 / 333,
  19361. bottom: 0.005
  19362. }
  19363. },
  19364. frontGear: {
  19365. height: math.unit(6 + 2 / 12, "feet"),
  19366. weight: math.unit(173, "lb"),
  19367. name: "Front (Gear)",
  19368. image: {
  19369. source: "./media/characters/luca-cervicum/front-gear.svg",
  19370. extra: 377 / 333,
  19371. bottom: 0.006
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(6 + 2 / 12, "feet"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(6 + 1 / 12, "feet"),
  19388. weight: math.unit(304, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/oliver/front.svg",
  19392. extra: 157 / 143,
  19393. bottom: 0.08
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(6 + 1 / 12, "feet"),
  19401. default: true
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(5 + 7 / 12, "feet"),
  19410. weight: math.unit(140, "lb"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/shane/front.svg",
  19414. extra: 304 / 289,
  19415. bottom: 0.005
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(5 + 7 / 12, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(5 + 9 / 12, "feet"),
  19432. weight: math.unit(178, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/shin/front.svg",
  19436. extra: 159 / 151,
  19437. bottom: 0.015
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(5 + 9 / 12, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(5 + 10 / 12, "feet"),
  19454. weight: math.unit(168, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/xerxes/front.svg",
  19458. extra: 282 / 260,
  19459. bottom: 0.045
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(5 + 10 / 12, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(6 + 7 / 12, "feet"),
  19476. weight: math.unit(208, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/chaska/front.svg",
  19480. extra: 332 / 319,
  19481. bottom: 0.015
  19482. }
  19483. },
  19484. },
  19485. [
  19486. {
  19487. name: "Normal",
  19488. height: math.unit(6 + 7 / 12, "feet"),
  19489. default: true
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19495. {
  19496. front: {
  19497. height: math.unit(5 + 8 / 12, "feet"),
  19498. weight: math.unit(208, "lb"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/enuk/front.svg",
  19502. extra: 437 / 406,
  19503. bottom: 0.02
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(5 + 8 / 12, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19517. {
  19518. front: {
  19519. height: math.unit(5 + 10 / 12, "feet"),
  19520. weight: math.unit(252, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/bruun/front.svg",
  19524. extra: 197 / 187,
  19525. bottom: 0.012
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(5 + 10 / 12, "feet"),
  19533. default: true
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19539. {
  19540. front: {
  19541. height: math.unit(6 + 10 / 12, "feet"),
  19542. weight: math.unit(255, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/alexeev/front.svg",
  19546. extra: 213 / 200,
  19547. bottom: 0.05
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(6 + 10 / 12, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(2 + 8 / 12, "feet"),
  19564. weight: math.unit(22, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/evelyn/front.svg",
  19568. extra: 208 / 180
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(2 + 8 / 12, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(5 + 9 / 12, "feet"),
  19585. weight: math.unit(139, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/inca/front.svg",
  19589. extra: 294 / 291,
  19590. bottom: 0.03
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(5 + 9 / 12, "feet"),
  19598. default: true
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(5 + 1 / 12, "feet"),
  19607. weight: math.unit(84, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/magdalene/front.svg",
  19611. extra: 293 / 273
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(5 + 1 / 12, "feet"),
  19619. default: true
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19625. {
  19626. front: {
  19627. height: math.unit(6 + 3 / 12, "feet"),
  19628. weight: math.unit(185, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/mera/front.svg",
  19632. extra: 291 / 277,
  19633. bottom: 0.03
  19634. }
  19635. },
  19636. },
  19637. [
  19638. {
  19639. name: "Normal",
  19640. height: math.unit(6 + 3 / 12, "feet"),
  19641. default: true
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(6 + 7 / 12, "feet"),
  19650. weight: math.unit(160, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/ceres/front.svg",
  19654. extra: 1023 / 950,
  19655. bottom: 0.027
  19656. }
  19657. },
  19658. back: {
  19659. height: math.unit(6 + 7 / 12, "feet"),
  19660. weight: math.unit(160, "lb"),
  19661. name: "Back",
  19662. image: {
  19663. source: "./media/characters/ceres/back.svg",
  19664. extra: 1023 / 950
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(6 + 7 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(5 + 10 / 12, "feet"),
  19681. weight: math.unit(150, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/kris/front.svg",
  19685. extra: 885 / 803,
  19686. bottom: 0.03
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(5 + 10 / 12, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(7, "feet"),
  19703. weight: math.unit(120, "kg"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/taluthus/front.svg",
  19707. extra: 903 / 833,
  19708. bottom: 0.015
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(7, "feet"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(300, "feet")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 9 / 12, "feet"),
  19729. weight: math.unit(145, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/dawn/front.svg",
  19733. extra: 2094 / 2016,
  19734. bottom: 0.025
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(5 + 9 / 12, "feet"),
  19739. weight: math.unit(160, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/dawn/back.svg",
  19743. extra: 2112 / 2080,
  19744. bottom: 0.005
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(6 + 7 / 12, "feet"),
  19752. default: true
  19753. },
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19758. {
  19759. anthro: {
  19760. height: math.unit(8 + 3 / 12, "feet"),
  19761. weight: math.unit(450, "lb"),
  19762. name: "Anthro",
  19763. image: {
  19764. source: "./media/characters/arador/anthro.svg",
  19765. extra: 1835 / 1718,
  19766. bottom: 0.025
  19767. }
  19768. },
  19769. feral: {
  19770. height: math.unit(4, "feet"),
  19771. weight: math.unit(200, "lb"),
  19772. name: "Feral",
  19773. image: {
  19774. source: "./media/characters/arador/feral.svg",
  19775. extra: 1683 / 1514,
  19776. bottom: 0.07
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(8 + 3 / 12, "feet")
  19784. },
  19785. {
  19786. name: "Macro",
  19787. height: math.unit(82.5, "feet"),
  19788. default: true
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(5 + 10 / 12, "feet"),
  19797. weight: math.unit(125, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/dharsi/front.svg",
  19801. extra: 716 / 630,
  19802. bottom: 0.035
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Nano",
  19809. height: math.unit(100, "nm")
  19810. },
  19811. {
  19812. name: "Micro",
  19813. height: math.unit(2, "inches")
  19814. },
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(5 + 10 / 12, "feet"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Macro",
  19822. height: math.unit(1000, "feet")
  19823. },
  19824. {
  19825. name: "Megamacro",
  19826. height: math.unit(10, "miles")
  19827. },
  19828. {
  19829. name: "Gigamacro",
  19830. height: math.unit(3000, "miles")
  19831. },
  19832. {
  19833. name: "Teramacro",
  19834. height: math.unit(500000, "miles")
  19835. },
  19836. {
  19837. name: "Teramacro+",
  19838. height: math.unit(30, "galaxies")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(6, "feet"),
  19847. weight: math.unit(150, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/deathy/front.svg",
  19851. extra: 1552 / 1463,
  19852. bottom: 0.025
  19853. }
  19854. },
  19855. side: {
  19856. height: math.unit(6, "feet"),
  19857. weight: math.unit(150, "lb"),
  19858. name: "Side",
  19859. image: {
  19860. source: "./media/characters/deathy/side.svg",
  19861. extra: 1604 / 1455,
  19862. bottom: 0.025
  19863. }
  19864. },
  19865. back: {
  19866. height: math.unit(6, "feet"),
  19867. weight: math.unit(150, "lb"),
  19868. name: "Back",
  19869. image: {
  19870. source: "./media/characters/deathy/back.svg",
  19871. extra: 1580 / 1463,
  19872. bottom: 0.005
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Micro",
  19879. height: math.unit(5, "millimeters")
  19880. },
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(6 + 5 / 12, "feet"),
  19884. default: true
  19885. },
  19886. ]
  19887. ))
  19888. characterMakers.push(() => makeCharacter(
  19889. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19890. {
  19891. front: {
  19892. height: math.unit(16, "feet"),
  19893. weight: math.unit(4000, "lb"),
  19894. name: "Front",
  19895. image: {
  19896. source: "./media/characters/juniper/front.svg",
  19897. bottom: 0.04
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(16, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(6, "feet"),
  19914. weight: math.unit(150, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/hipster/front.svg",
  19918. extra: 1312 / 1209,
  19919. bottom: 0.025
  19920. }
  19921. },
  19922. back: {
  19923. height: math.unit(6, "feet"),
  19924. weight: math.unit(150, "lb"),
  19925. name: "Back",
  19926. image: {
  19927. source: "./media/characters/hipster/back.svg",
  19928. extra: 1281 / 1196,
  19929. bottom: 0.01
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Micro",
  19936. height: math.unit(1, "mm")
  19937. },
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(4, "inches"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(500, "feet")
  19946. },
  19947. {
  19948. name: "Megamacro",
  19949. height: math.unit(1000, "miles")
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(6, "feet"),
  19958. weight: math.unit(150, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/tendirmuldr/front.svg",
  19962. extra: 1878 / 1772,
  19963. bottom: 0.015
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Megamacro",
  19970. height: math.unit(1500, "miles"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19977. {
  19978. front: {
  19979. height: math.unit(14, "feet"),
  19980. weight: math.unit(12000, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/mort/front.svg",
  19984. extra: 365 / 318,
  19985. bottom: 0.01
  19986. }
  19987. },
  19988. side: {
  19989. height: math.unit(14, "feet"),
  19990. weight: math.unit(12000, "lb"),
  19991. name: "Side",
  19992. image: {
  19993. source: "./media/characters/mort/side.svg",
  19994. extra: 365 / 318,
  19995. bottom: 0.052
  19996. },
  19997. default: true
  19998. },
  19999. back: {
  20000. height: math.unit(14, "feet"),
  20001. weight: math.unit(12000, "lb"),
  20002. name: "Back",
  20003. image: {
  20004. source: "./media/characters/mort/back.svg",
  20005. extra: 371 / 332,
  20006. bottom: 0.18
  20007. }
  20008. },
  20009. },
  20010. [
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(14, "feet"),
  20014. default: true
  20015. },
  20016. ]
  20017. ))
  20018. characterMakers.push(() => makeCharacter(
  20019. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20020. {
  20021. front: {
  20022. height: math.unit(8, "feet"),
  20023. weight: math.unit(1, "ton"),
  20024. name: "Front",
  20025. image: {
  20026. source: "./media/characters/lycoa/front.svg",
  20027. extra: 1875 / 1789,
  20028. bottom: 0.022
  20029. }
  20030. },
  20031. back: {
  20032. height: math.unit(8, "feet"),
  20033. weight: math.unit(1, "ton"),
  20034. name: "Back",
  20035. image: {
  20036. source: "./media/characters/lycoa/back.svg",
  20037. extra: 1835 / 1781,
  20038. bottom: 0.03
  20039. }
  20040. },
  20041. head: {
  20042. height: math.unit(2.1, "feet"),
  20043. name: "Head",
  20044. image: {
  20045. source: "./media/characters/lycoa/head.svg"
  20046. }
  20047. },
  20048. tailmaw: {
  20049. height: math.unit(1.9, "feet"),
  20050. name: "Tailmaw",
  20051. image: {
  20052. source: "./media/characters/lycoa/tailmaw.svg"
  20053. }
  20054. },
  20055. tentacles: {
  20056. height: math.unit(2.1, "feet"),
  20057. name: "Tentacles",
  20058. image: {
  20059. source: "./media/characters/lycoa/tentacles.svg"
  20060. }
  20061. },
  20062. dick: {
  20063. height: math.unit(1.73, "feet"),
  20064. name: "Dick",
  20065. image: {
  20066. source: "./media/characters/lycoa/dick.svg"
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(8, "feet"),
  20074. default: true
  20075. },
  20076. {
  20077. name: "Macro",
  20078. height: math.unit(30, "feet")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20084. {
  20085. front: {
  20086. height: math.unit(4 + 2 / 12, "feet"),
  20087. weight: math.unit(70, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/naldara/front.svg",
  20091. extra: 841 / 720,
  20092. bottom: 0.04
  20093. }
  20094. },
  20095. naga: {
  20096. height: math.unit(23, "feet"),
  20097. weight: math.unit(15000, "kg"),
  20098. name: "Naga",
  20099. image: {
  20100. source: "./media/characters/naldara/naga.svg",
  20101. extra: 3290 / 2959,
  20102. bottom: 124 / 3432
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(4 + 2 / 12, "feet"),
  20110. default: true
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(13 + 7 / 12, "feet"),
  20119. weight: math.unit(1500, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/briar/front.svg",
  20123. extra: 626 / 596,
  20124. bottom: 0.08
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(13 + 7 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20138. {
  20139. side: {
  20140. height: math.unit(10, "feet"),
  20141. weight: math.unit(500, "lb"),
  20142. name: "Side",
  20143. image: {
  20144. source: "./media/characters/vanguard/side.svg",
  20145. extra: 502 / 425,
  20146. bottom: 0.087
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(10, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(7.5, "feet"),
  20163. weight: math.unit(2, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/artemis/front.svg",
  20167. extra: 1192 / 1075,
  20168. bottom: 0.07
  20169. }
  20170. },
  20171. frontNsfw: {
  20172. height: math.unit(7.5, "feet"),
  20173. weight: math.unit(2, "lb"),
  20174. name: "Front (NSFW)",
  20175. image: {
  20176. source: "./media/characters/artemis/front-nsfw.svg",
  20177. extra: 1192 / 1075,
  20178. bottom: 0.07
  20179. }
  20180. },
  20181. frontNsfwer: {
  20182. height: math.unit(7.5, "feet"),
  20183. weight: math.unit(2, "lb"),
  20184. name: "Front (NSFW-er)",
  20185. image: {
  20186. source: "./media/characters/artemis/front-nsfwer.svg",
  20187. extra: 1192 / 1075,
  20188. bottom: 0.07
  20189. }
  20190. },
  20191. side: {
  20192. height: math.unit(7.5, "feet"),
  20193. weight: math.unit(2, "lb"),
  20194. name: "Side",
  20195. image: {
  20196. source: "./media/characters/artemis/side.svg",
  20197. extra: 1192 / 1075,
  20198. bottom: 0.07
  20199. }
  20200. },
  20201. sideNsfw: {
  20202. height: math.unit(7.5, "feet"),
  20203. weight: math.unit(2, "lb"),
  20204. name: "Side (NSFW)",
  20205. image: {
  20206. source: "./media/characters/artemis/side-nsfw.svg",
  20207. extra: 1192 / 1075,
  20208. bottom: 0.07
  20209. }
  20210. },
  20211. sideNsfwer: {
  20212. height: math.unit(7.5, "feet"),
  20213. weight: math.unit(2, "lb"),
  20214. name: "Side (NSFW-er)",
  20215. image: {
  20216. source: "./media/characters/artemis/side-nsfwer.svg",
  20217. extra: 1192 / 1075,
  20218. bottom: 0.07
  20219. }
  20220. },
  20221. maw: {
  20222. height: math.unit(1.1, "feet"),
  20223. name: "Maw",
  20224. image: {
  20225. source: "./media/characters/artemis/maw.svg"
  20226. }
  20227. },
  20228. stomach: {
  20229. height: math.unit(0.95, "feet"),
  20230. name: "Stomach",
  20231. image: {
  20232. source: "./media/characters/artemis/stomach.svg"
  20233. }
  20234. },
  20235. dickCanine: {
  20236. height: math.unit(1, "feet"),
  20237. name: "Dick (Canine)",
  20238. image: {
  20239. source: "./media/characters/artemis/dick-canine.svg"
  20240. }
  20241. },
  20242. dickEquine: {
  20243. height: math.unit(0.85, "feet"),
  20244. name: "Dick (Equine)",
  20245. image: {
  20246. source: "./media/characters/artemis/dick-equine.svg"
  20247. }
  20248. },
  20249. dickExotic: {
  20250. height: math.unit(0.85, "feet"),
  20251. name: "Dick (Exotic)",
  20252. image: {
  20253. source: "./media/characters/artemis/dick-exotic.svg"
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(7.5, "feet"),
  20261. default: true
  20262. },
  20263. {
  20264. name: "Enlarged",
  20265. height: math.unit(12, "feet")
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20271. {
  20272. front: {
  20273. height: math.unit(5 + 3 / 12, "feet"),
  20274. weight: math.unit(160, "lb"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/kira/front.svg",
  20278. extra: 906 / 786,
  20279. bottom: 0.01
  20280. }
  20281. },
  20282. back: {
  20283. height: math.unit(5 + 3 / 12, "feet"),
  20284. weight: math.unit(160, "lb"),
  20285. name: "Back",
  20286. image: {
  20287. source: "./media/characters/kira/back.svg",
  20288. extra: 882 / 757,
  20289. bottom: 0.005
  20290. }
  20291. },
  20292. frontDressed: {
  20293. height: math.unit(5 + 3 / 12, "feet"),
  20294. weight: math.unit(160, "lb"),
  20295. name: "Front (Dressed)",
  20296. image: {
  20297. source: "./media/characters/kira/front-dressed.svg",
  20298. extra: 906 / 786,
  20299. bottom: 0.01
  20300. }
  20301. },
  20302. beans: {
  20303. height: math.unit(0.92, "feet"),
  20304. name: "Beans",
  20305. image: {
  20306. source: "./media/characters/kira/beans.svg"
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(5 + 3 / 12, "feet"),
  20314. default: true
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(5 + 4 / 12, "feet"),
  20323. weight: math.unit(145, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/scramble/front.svg",
  20327. extra: 763 / 727,
  20328. bottom: 0.05
  20329. }
  20330. },
  20331. back: {
  20332. height: math.unit(5 + 4 / 12, "feet"),
  20333. weight: math.unit(145, "lb"),
  20334. name: "Back",
  20335. image: {
  20336. source: "./media/characters/scramble/back.svg",
  20337. extra: 826 / 737,
  20338. bottom: 0.002
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(5 + 4 / 12, "feet"),
  20346. default: true
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20352. {
  20353. side: {
  20354. height: math.unit(6 + 2 / 12, "feet"),
  20355. weight: math.unit(190, "lb"),
  20356. name: "Side",
  20357. image: {
  20358. source: "./media/characters/biscuit/side.svg",
  20359. extra: 858 / 791,
  20360. bottom: 0.044
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(6 + 2 / 12, "feet"),
  20368. default: true
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(5 + 2 / 12, "feet"),
  20377. weight: math.unit(120, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/poffin/front.svg",
  20381. extra: 786 / 680,
  20382. bottom: 0.005
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(5 + 2 / 12, "feet"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20396. {
  20397. front: {
  20398. height: math.unit(6 + 3 / 12, "feet"),
  20399. weight: math.unit(519, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/dhari/front.svg",
  20403. extra: 1048 / 946,
  20404. bottom: 0.015
  20405. }
  20406. },
  20407. back: {
  20408. height: math.unit(6 + 3 / 12, "feet"),
  20409. weight: math.unit(519, "lb"),
  20410. name: "Back",
  20411. image: {
  20412. source: "./media/characters/dhari/back.svg",
  20413. extra: 1048 / 931,
  20414. bottom: 0.005
  20415. }
  20416. },
  20417. frontDressed: {
  20418. height: math.unit(6 + 3 / 12, "feet"),
  20419. weight: math.unit(519, "lb"),
  20420. name: "Front (Dressed)",
  20421. image: {
  20422. source: "./media/characters/dhari/front-dressed.svg",
  20423. extra: 1713 / 1546,
  20424. bottom: 0.02
  20425. }
  20426. },
  20427. backDressed: {
  20428. height: math.unit(6 + 3 / 12, "feet"),
  20429. weight: math.unit(519, "lb"),
  20430. name: "Back (Dressed)",
  20431. image: {
  20432. source: "./media/characters/dhari/back-dressed.svg",
  20433. extra: 1699 / 1537,
  20434. bottom: 0.01
  20435. }
  20436. },
  20437. maw: {
  20438. height: math.unit(0.95, "feet"),
  20439. name: "Maw",
  20440. image: {
  20441. source: "./media/characters/dhari/maw.svg"
  20442. }
  20443. },
  20444. wereFront: {
  20445. height: math.unit(12 + 8 / 12, "feet"),
  20446. weight: math.unit(4000, "lb"),
  20447. name: "Front (Were)",
  20448. image: {
  20449. source: "./media/characters/dhari/were-front.svg",
  20450. extra: 1065 / 969,
  20451. bottom: 0.015
  20452. }
  20453. },
  20454. wereBack: {
  20455. height: math.unit(12 + 8 / 12, "feet"),
  20456. weight: math.unit(4000, "lb"),
  20457. name: "Back (Were)",
  20458. image: {
  20459. source: "./media/characters/dhari/were-back.svg",
  20460. extra: 1065 / 969,
  20461. bottom: 0.012
  20462. }
  20463. },
  20464. wereMaw: {
  20465. height: math.unit(0.625, "meters"),
  20466. name: "Maw (Were)",
  20467. image: {
  20468. source: "./media/characters/dhari/were-maw.svg"
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(6 + 3 / 12, "feet"),
  20476. default: true
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20482. {
  20483. anthro: {
  20484. height: math.unit(5 + 7 / 12, "feet"),
  20485. weight: math.unit(175, "lb"),
  20486. name: "Anthro",
  20487. image: {
  20488. source: "./media/characters/rena-dyne/anthro.svg",
  20489. extra: 1849 / 1785,
  20490. bottom: 0.005
  20491. }
  20492. },
  20493. taur: {
  20494. height: math.unit(15 + 6 / 12, "feet"),
  20495. weight: math.unit(8000, "lb"),
  20496. name: "Taur",
  20497. image: {
  20498. source: "./media/characters/rena-dyne/taur.svg",
  20499. extra: 2315 / 2234,
  20500. bottom: 0.033
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(5 + 7 / 12, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(8, "feet"),
  20517. weight: math.unit(600, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/weremeep/front.svg",
  20521. extra: 967 / 862,
  20522. bottom: 0.01
  20523. }
  20524. },
  20525. },
  20526. [
  20527. {
  20528. name: "Normal",
  20529. height: math.unit(8, "feet"),
  20530. default: true
  20531. },
  20532. {
  20533. name: "Lorg",
  20534. height: math.unit(12, "feet")
  20535. },
  20536. {
  20537. name: "Oh Lawd She Comin'",
  20538. height: math.unit(20, "feet")
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20544. {
  20545. front: {
  20546. height: math.unit(4, "feet"),
  20547. weight: math.unit(90, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/reza/front.svg",
  20551. extra: 1183 / 1111,
  20552. bottom: 0.017
  20553. }
  20554. },
  20555. back: {
  20556. height: math.unit(4, "feet"),
  20557. weight: math.unit(90, "lb"),
  20558. name: "Back",
  20559. image: {
  20560. source: "./media/characters/reza/back.svg",
  20561. extra: 1183 / 1111,
  20562. bottom: 0.01
  20563. }
  20564. },
  20565. drake: {
  20566. height: math.unit(30, "feet"),
  20567. weight: math.unit(246960, "lb"),
  20568. name: "Drake",
  20569. image: {
  20570. source: "./media/characters/reza/drake.svg",
  20571. extra: 2350 / 2024,
  20572. bottom: 60.7 / 2403
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(4, "feet"),
  20580. default: true
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20586. {
  20587. side: {
  20588. height: math.unit(15, "feet"),
  20589. weight: math.unit(14, "tons"),
  20590. name: "Side",
  20591. image: {
  20592. source: "./media/characters/athea/side.svg",
  20593. extra: 960 / 540,
  20594. bottom: 0.003
  20595. }
  20596. },
  20597. sitting: {
  20598. height: math.unit(6 * 2.85, "feet"),
  20599. weight: math.unit(14, "tons"),
  20600. name: "Sitting",
  20601. image: {
  20602. source: "./media/characters/athea/sitting.svg",
  20603. extra: 621 / 581,
  20604. bottom: 0.075
  20605. }
  20606. },
  20607. maw: {
  20608. height: math.unit(7.59498031496063, "feet"),
  20609. name: "Maw",
  20610. image: {
  20611. source: "./media/characters/athea/maw.svg"
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Lap Cat",
  20618. height: math.unit(2.5, "feet")
  20619. },
  20620. {
  20621. name: "Minimacro",
  20622. height: math.unit(15, "feet"),
  20623. default: true
  20624. },
  20625. {
  20626. name: "Macro",
  20627. height: math.unit(120, "feet")
  20628. },
  20629. {
  20630. name: "Macro+",
  20631. height: math.unit(640, "feet")
  20632. },
  20633. {
  20634. name: "Colossus",
  20635. height: math.unit(2.2, "miles")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(8 + 8 / 12, "feet"),
  20644. weight: math.unit(130, "kg"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/seroko/front.svg",
  20648. extra: 1385 / 1280,
  20649. bottom: 0.025
  20650. }
  20651. },
  20652. back: {
  20653. height: math.unit(8 + 8 / 12, "feet"),
  20654. weight: math.unit(130, "kg"),
  20655. name: "Back",
  20656. image: {
  20657. source: "./media/characters/seroko/back.svg",
  20658. extra: 1369 / 1238,
  20659. bottom: 0.018
  20660. }
  20661. },
  20662. frontDressed: {
  20663. height: math.unit(8 + 8 / 12, "feet"),
  20664. weight: math.unit(130, "kg"),
  20665. name: "Front (Dressed)",
  20666. image: {
  20667. source: "./media/characters/seroko/front-dressed.svg",
  20668. extra: 1366 / 1275,
  20669. bottom: 0.03
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(8 + 8 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(5.5, "feet"),
  20686. weight: math.unit(160, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/quatzi/front.svg",
  20690. extra: 2346 / 2242,
  20691. bottom: 0.015
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5.5, "feet"),
  20699. default: true
  20700. },
  20701. {
  20702. name: "Big",
  20703. height: math.unit(7.7, "feet")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5 + 11 / 12, "feet"),
  20712. weight: math.unit(180, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/sen/front.svg",
  20716. extra: 1321 / 1254,
  20717. bottom: 0.015
  20718. }
  20719. },
  20720. side: {
  20721. height: math.unit(5 + 11 / 12, "feet"),
  20722. weight: math.unit(180, "lb"),
  20723. name: "Side",
  20724. image: {
  20725. source: "./media/characters/sen/side.svg",
  20726. extra: 1321 / 1254,
  20727. bottom: 0.007
  20728. }
  20729. },
  20730. back: {
  20731. height: math.unit(5 + 11 / 12, "feet"),
  20732. weight: math.unit(180, "lb"),
  20733. name: "Back",
  20734. image: {
  20735. source: "./media/characters/sen/back.svg",
  20736. extra: 1321 / 1254
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 11 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(166.6, "cm"),
  20753. weight: math.unit(66.6, "kg"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/fruity/front.svg",
  20757. extra: 1510 / 1386,
  20758. bottom: 0.04
  20759. }
  20760. },
  20761. back: {
  20762. height: math.unit(166.6, "cm"),
  20763. weight: math.unit(66.6, "lb"),
  20764. name: "Back",
  20765. image: {
  20766. source: "./media/characters/fruity/back.svg",
  20767. extra: 1563 / 1435,
  20768. bottom: 0.005
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(166.6, "cm"),
  20776. default: true
  20777. },
  20778. {
  20779. name: "Demonic",
  20780. height: math.unit(166.6, "feet")
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20786. {
  20787. side: {
  20788. height: math.unit(10, "feet"),
  20789. weight: math.unit(500, "lb"),
  20790. name: "Side",
  20791. image: {
  20792. source: "./media/characters/zost/side.svg",
  20793. extra: 966 / 880,
  20794. bottom: 0.075
  20795. }
  20796. },
  20797. mawFront: {
  20798. height: math.unit(1.08, "meters"),
  20799. name: "Maw (Front)",
  20800. image: {
  20801. source: "./media/characters/zost/maw-front.svg"
  20802. }
  20803. },
  20804. mawSide: {
  20805. height: math.unit(2.66, "feet"),
  20806. name: "Maw (Side)",
  20807. image: {
  20808. source: "./media/characters/zost/maw-side.svg"
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(10, "feet"),
  20816. default: true
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(5 + 4 / 12, "feet"),
  20825. weight: math.unit(120, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/luci/front.svg",
  20829. extra: 1985 / 1884,
  20830. bottom: 0.04
  20831. }
  20832. },
  20833. back: {
  20834. height: math.unit(5 + 4 / 12, "feet"),
  20835. weight: math.unit(120, "lb"),
  20836. name: "Back",
  20837. image: {
  20838. source: "./media/characters/luci/back.svg",
  20839. extra: 1892 / 1791,
  20840. bottom: 0.002
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(5 + 4 / 12, "feet"),
  20848. default: true
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(1500, "feet"),
  20857. weight: math.unit(3.8e6, "tons"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/2th/front.svg",
  20861. extra: 3489 / 3350,
  20862. bottom: 0.1
  20863. }
  20864. },
  20865. foot: {
  20866. height: math.unit(461, "feet"),
  20867. name: "Foot",
  20868. image: {
  20869. source: "./media/characters/2th/foot.svg"
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "\"Micro\"",
  20876. height: math.unit(15 + 7 / 12, "feet")
  20877. },
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(1500, "feet"),
  20881. default: true
  20882. },
  20883. {
  20884. name: "Macro",
  20885. height: math.unit(5000, "feet")
  20886. },
  20887. {
  20888. name: "Megamacro",
  20889. height: math.unit(15, "miles")
  20890. },
  20891. {
  20892. name: "Gigamacro",
  20893. height: math.unit(4000, "miles")
  20894. },
  20895. {
  20896. name: "Galactic",
  20897. height: math.unit(50, "AU")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(5 + 6 / 12, "feet"),
  20906. weight: math.unit(220, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/amethyst/front.svg",
  20910. extra: 2078 / 2040,
  20911. bottom: 0.045
  20912. }
  20913. },
  20914. back: {
  20915. height: math.unit(5 + 6 / 12, "feet"),
  20916. weight: math.unit(220, "lb"),
  20917. name: "Back",
  20918. image: {
  20919. source: "./media/characters/amethyst/back.svg",
  20920. extra: 2021 / 1989,
  20921. bottom: 0.02
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(5 + 6 / 12, "feet"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(4 + 11 / 12, "feet"),
  20938. weight: math.unit(120, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/yumi-akiyama/front.svg",
  20942. extra: 1327 / 1235,
  20943. bottom: 0.02
  20944. }
  20945. },
  20946. back: {
  20947. height: math.unit(4 + 11 / 12, "feet"),
  20948. weight: math.unit(120, "lb"),
  20949. name: "Back",
  20950. image: {
  20951. source: "./media/characters/yumi-akiyama/back.svg",
  20952. extra: 1287 / 1245,
  20953. bottom: 0.002
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Galactic",
  20960. height: math.unit(50, "galaxies"),
  20961. default: true
  20962. },
  20963. {
  20964. name: "Universal",
  20965. height: math.unit(100, "universes")
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20971. {
  20972. front: {
  20973. height: math.unit(8, "feet"),
  20974. weight: math.unit(500, "lb"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/rifter-yrmori/front.svg",
  20978. extra: 1180 / 1125,
  20979. bottom: 0.02
  20980. }
  20981. },
  20982. back: {
  20983. height: math.unit(8, "feet"),
  20984. weight: math.unit(500, "lb"),
  20985. name: "Back",
  20986. image: {
  20987. source: "./media/characters/rifter-yrmori/back.svg",
  20988. extra: 1190 / 1145,
  20989. bottom: 0.001
  20990. }
  20991. },
  20992. wings: {
  20993. height: math.unit(7.75, "feet"),
  20994. weight: math.unit(500, "lb"),
  20995. name: "Wings",
  20996. image: {
  20997. source: "./media/characters/rifter-yrmori/wings.svg",
  20998. extra: 1357 / 1285
  20999. }
  21000. },
  21001. maw: {
  21002. height: math.unit(0.8, "feet"),
  21003. name: "Maw",
  21004. image: {
  21005. source: "./media/characters/rifter-yrmori/maw.svg"
  21006. }
  21007. },
  21008. mawfront: {
  21009. height: math.unit(1.45, "feet"),
  21010. name: "Maw (Front)",
  21011. image: {
  21012. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(8, "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Macro",
  21024. height: math.unit(42, "meters")
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21030. {
  21031. were: {
  21032. height: math.unit(25 + 6 / 12, "feet"),
  21033. weight: math.unit(10000, "lb"),
  21034. name: "Were",
  21035. image: {
  21036. source: "./media/characters/tahajin/were.svg",
  21037. extra: 801 / 770,
  21038. bottom: 0.042
  21039. }
  21040. },
  21041. aquatic: {
  21042. height: math.unit(6 + 4 / 12, "feet"),
  21043. weight: math.unit(160, "lb"),
  21044. name: "Aquatic",
  21045. image: {
  21046. source: "./media/characters/tahajin/aquatic.svg",
  21047. extra: 572 / 542,
  21048. bottom: 0.04
  21049. }
  21050. },
  21051. chow: {
  21052. height: math.unit(8 + 11 / 12, "feet"),
  21053. weight: math.unit(450, "lb"),
  21054. name: "Chow",
  21055. image: {
  21056. source: "./media/characters/tahajin/chow.svg",
  21057. extra: 660 / 640,
  21058. bottom: 0.015
  21059. }
  21060. },
  21061. demiNaga: {
  21062. height: math.unit(6 + 8 / 12, "feet"),
  21063. weight: math.unit(300, "lb"),
  21064. name: "Demi Naga",
  21065. image: {
  21066. source: "./media/characters/tahajin/demi-naga.svg",
  21067. extra: 643 / 615,
  21068. bottom: 0.1
  21069. }
  21070. },
  21071. data: {
  21072. height: math.unit(5, "inches"),
  21073. weight: math.unit(0.1, "lb"),
  21074. name: "Data",
  21075. image: {
  21076. source: "./media/characters/tahajin/data.svg"
  21077. }
  21078. },
  21079. fluu: {
  21080. height: math.unit(5 + 7 / 12, "feet"),
  21081. weight: math.unit(140, "lb"),
  21082. name: "Fluu",
  21083. image: {
  21084. source: "./media/characters/tahajin/fluu.svg",
  21085. extra: 628 / 592,
  21086. bottom: 0.02
  21087. }
  21088. },
  21089. starWarrior: {
  21090. height: math.unit(4 + 5 / 12, "feet"),
  21091. weight: math.unit(50, "lb"),
  21092. name: "Star Warrior",
  21093. image: {
  21094. source: "./media/characters/tahajin/star-warrior.svg"
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(25 + 6 / 12, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(8, "feet"),
  21111. weight: math.unit(350, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/gabira/front.svg",
  21115. extra: 608 / 580,
  21116. bottom: 0.03
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(8, "feet"),
  21121. weight: math.unit(350, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/gabira/back.svg",
  21125. extra: 608 / 580,
  21126. bottom: 0.03
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(8, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(5 + 3 / 12, "feet"),
  21143. weight: math.unit(137, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/sasha-katraine/front.svg",
  21147. bottom: 0.045
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Micro",
  21154. height: math.unit(5, "inches")
  21155. },
  21156. {
  21157. name: "Normal",
  21158. height: math.unit(5 + 3 / 12, "feet"),
  21159. default: true
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21165. {
  21166. side: {
  21167. height: math.unit(4, "inches"),
  21168. weight: math.unit(200, "grams"),
  21169. name: "Side",
  21170. image: {
  21171. source: "./media/characters/der/side.svg",
  21172. extra: 719 / 400,
  21173. bottom: 30.6 / 749.9187
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Micro",
  21180. height: math.unit(4, "inches"),
  21181. default: true
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21187. {
  21188. side: {
  21189. height: math.unit(30, "meters"),
  21190. weight: math.unit(700, "tonnes"),
  21191. name: "Side",
  21192. image: {
  21193. source: "./media/characters/fixerdragon/side.svg",
  21194. extra: (1293.0514 - 116.03) / 1106.86,
  21195. bottom: 116.03 / 1293.0514
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Planck",
  21202. height: math.unit(1.6e-35, "meters")
  21203. },
  21204. {
  21205. name: "Micro",
  21206. height: math.unit(0.4, "meters")
  21207. },
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(30, "meters"),
  21211. default: true
  21212. },
  21213. {
  21214. name: "Megamacro",
  21215. height: math.unit(1.2, "megameters")
  21216. },
  21217. {
  21218. name: "Teramacro",
  21219. height: math.unit(130, "terameters")
  21220. },
  21221. {
  21222. name: "Yottamacro",
  21223. height: math.unit(6200, "yottameters")
  21224. },
  21225. ]
  21226. ));
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(8, "feet"),
  21232. weight: math.unit(250, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/kite/front.svg",
  21236. extra: 2796 / 2659,
  21237. bottom: 0.002
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(8, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(360, "feet")
  21250. },
  21251. {
  21252. name: "Megamacro",
  21253. height: math.unit(1500, "feet")
  21254. },
  21255. ]
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21259. {
  21260. front: {
  21261. height: math.unit(5 + 10 / 12, "feet"),
  21262. weight: math.unit(150, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/poojawa-vynar/front.svg",
  21266. extra: (1506.1547 - 55) / 1356.6,
  21267. bottom: 55 / 1506.1547
  21268. }
  21269. },
  21270. frontTailless: {
  21271. height: math.unit(5 + 10 / 12, "feet"),
  21272. weight: math.unit(150, "lb"),
  21273. name: "Front (Tailless)",
  21274. image: {
  21275. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21276. extra: (1506.1547 - 55) / 1356.6,
  21277. bottom: 55 / 1506.1547
  21278. }
  21279. },
  21280. },
  21281. [
  21282. {
  21283. name: "Normal",
  21284. height: math.unit(5 + 10 / 12, "feet"),
  21285. default: true
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(293, "meters"),
  21294. weight: math.unit(70400, "tons"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/violette/front.svg",
  21298. extra: 1227 / 1180,
  21299. bottom: 0.005
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(293, "meters"),
  21304. weight: math.unit(70400, "tons"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/violette/back.svg",
  21308. extra: 1227 / 1180,
  21309. bottom: 0.005
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Macro",
  21316. height: math.unit(293, "meters"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(1050, "feet"),
  21326. weight: math.unit(200000, "tons"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/alessandra/front.svg",
  21330. extra: 960 / 912,
  21331. bottom: 0.06
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Macro",
  21338. height: math.unit(1050, "feet")
  21339. },
  21340. {
  21341. name: "Macro+",
  21342. height: math.unit(900, "meters"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(5, "feet"),
  21352. weight: math.unit(187, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/person/front.svg",
  21356. extra: 3087 / 2945,
  21357. bottom: 91 / 3181
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Micro",
  21364. height: math.unit(3, "inches")
  21365. },
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(5, "feet"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(90, "feet")
  21374. },
  21375. {
  21376. name: "Max Size",
  21377. height: math.unit(280, "feet")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(4.5, "meters"),
  21386. weight: math.unit(3200, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/ty/front.svg",
  21390. extra: 1038 / 960,
  21391. bottom: 31.156 / 1068
  21392. }
  21393. },
  21394. back: {
  21395. height: math.unit(4.5, "meters"),
  21396. weight: math.unit(3200, "lb"),
  21397. name: "Back",
  21398. image: {
  21399. source: "./media/characters/ty/back.svg",
  21400. extra: 1044 / 966,
  21401. bottom: 7.48 / 1049
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(4.5, "meters"),
  21409. default: true
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21415. {
  21416. front: {
  21417. height: math.unit(5 + 4 / 12, "feet"),
  21418. weight: math.unit(115, "lb"),
  21419. name: "Front",
  21420. image: {
  21421. source: "./media/characters/rocky/front.svg",
  21422. extra: 1012 / 975,
  21423. bottom: 54 / 1066
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(5 + 4 / 12, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21437. {
  21438. upright: {
  21439. height: math.unit(6, "meters"),
  21440. weight: math.unit(4000, "kg"),
  21441. name: "Upright",
  21442. image: {
  21443. source: "./media/characters/ruin/upright.svg",
  21444. extra: 668 / 661,
  21445. bottom: 42 / 799.8396
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(6, "meters"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(5, "feet"),
  21462. weight: math.unit(106, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/robin/front.svg",
  21466. extra: 862 / 799,
  21467. bottom: 42.4 / 914.8856
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(5, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21481. {
  21482. side: {
  21483. height: math.unit(3, "feet"),
  21484. weight: math.unit(225, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/saian/side.svg",
  21488. extra: 566 / 356,
  21489. bottom: 79.7 / 643
  21490. }
  21491. },
  21492. maw: {
  21493. height: math.unit(2.85, "feet"),
  21494. name: "Maw",
  21495. image: {
  21496. source: "./media/characters/saian/maw.svg"
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(3, "feet"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21510. {
  21511. side: {
  21512. height: math.unit(8, "feet"),
  21513. weight: math.unit(300, "lb"),
  21514. name: "Side",
  21515. image: {
  21516. source: "./media/characters/equus-silvermane/side.svg",
  21517. extra: 2176 / 2050,
  21518. bottom: 65.7 / 2245
  21519. }
  21520. },
  21521. front: {
  21522. height: math.unit(8, "feet"),
  21523. weight: math.unit(300, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/equus-silvermane/front.svg",
  21527. extra: 4633 / 4400,
  21528. bottom: 71.3 / 4706.915
  21529. }
  21530. },
  21531. sideStepping: {
  21532. height: math.unit(8, "feet"),
  21533. weight: math.unit(300, "lb"),
  21534. name: "Side (Stepping)",
  21535. image: {
  21536. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21537. extra: 1968 / 1860,
  21538. bottom: 16.4 / 1989
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(8, "feet")
  21546. },
  21547. {
  21548. name: "Minimacro",
  21549. height: math.unit(75, "feet"),
  21550. default: true
  21551. },
  21552. {
  21553. name: "Macro",
  21554. height: math.unit(150, "feet")
  21555. },
  21556. {
  21557. name: "Macro+",
  21558. height: math.unit(1000, "feet")
  21559. },
  21560. {
  21561. name: "Megamacro",
  21562. height: math.unit(1, "mile")
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21568. {
  21569. side: {
  21570. height: math.unit(20, "feet"),
  21571. weight: math.unit(30000, "kg"),
  21572. name: "Side",
  21573. image: {
  21574. source: "./media/characters/windar/side.svg",
  21575. extra: 1491 / 1248,
  21576. bottom: 82.56 / 1568
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(20, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21590. {
  21591. side: {
  21592. height: math.unit(15.66, "feet"),
  21593. weight: math.unit(150, "lb"),
  21594. name: "Side",
  21595. image: {
  21596. source: "./media/characters/melody/side.svg",
  21597. extra: 1097 / 944,
  21598. bottom: 11.8 / 1109
  21599. }
  21600. },
  21601. sideOutfit: {
  21602. height: math.unit(15.66, "feet"),
  21603. weight: math.unit(150, "lb"),
  21604. name: "Side (Outfit)",
  21605. image: {
  21606. source: "./media/characters/melody/side-outfit.svg",
  21607. extra: 1097 / 944,
  21608. bottom: 11.8 / 1109
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(15.66, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(8, "feet"),
  21625. weight: math.unit(325, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/windera/front.svg",
  21629. extra: 3180 / 2845,
  21630. bottom: 178 / 3365
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(8, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21644. {
  21645. front: {
  21646. height: math.unit(28.75, "feet"),
  21647. weight: math.unit(2000, "kg"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/sonear/front.svg",
  21651. extra: 1041.1 / 964.9,
  21652. bottom: 53.7 / 1096.6
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(28.75, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21666. {
  21667. side: {
  21668. height: math.unit(25.5, "feet"),
  21669. weight: math.unit(23000, "kg"),
  21670. name: "Side",
  21671. image: {
  21672. source: "./media/characters/kanara/side.svg"
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(25.5, "feet"),
  21680. default: true
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21686. {
  21687. side: {
  21688. height: math.unit(10, "feet"),
  21689. weight: math.unit(1000, "kg"),
  21690. name: "Side",
  21691. image: {
  21692. source: "./media/characters/ereus/side.svg",
  21693. extra: 1157 / 959,
  21694. bottom: 153 / 1312.5
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(10, "feet"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21708. {
  21709. side: {
  21710. height: math.unit(4.5, "feet"),
  21711. weight: math.unit(500, "lb"),
  21712. name: "Side",
  21713. image: {
  21714. source: "./media/characters/e-ter/side.svg",
  21715. extra: 1550 / 1248,
  21716. bottom: 146 / 1694
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Normal",
  21723. height: math.unit(4.5, "feet"),
  21724. default: true
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21730. {
  21731. side: {
  21732. height: math.unit(9.7, "feet"),
  21733. weight: math.unit(4000, "kg"),
  21734. name: "Side",
  21735. image: {
  21736. source: "./media/characters/yamie/side.svg"
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(9.7, "feet"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(50, "feet"),
  21753. weight: math.unit(50000, "kg"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/anders/front.svg",
  21757. extra: 570 / 539,
  21758. bottom: 14.7 / 586.7
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Large",
  21765. height: math.unit(50, "feet")
  21766. },
  21767. {
  21768. name: "Macro",
  21769. height: math.unit(2000, "feet"),
  21770. default: true
  21771. },
  21772. {
  21773. name: "Megamacro",
  21774. height: math.unit(12, "miles")
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(7 + 2 / 12, "feet"),
  21783. weight: math.unit(300, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/reban/front.svg",
  21787. extra: 516 / 487,
  21788. bottom: 42.82 / 558.356
  21789. }
  21790. },
  21791. dick: {
  21792. height: math.unit(7 / 5, "feet"),
  21793. name: "Dick",
  21794. image: {
  21795. source: "./media/characters/reban/dick.svg"
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Natural Height",
  21802. height: math.unit(7 + 2 / 12, "feet")
  21803. },
  21804. {
  21805. name: "Macro",
  21806. height: math.unit(500, "feet"),
  21807. default: true
  21808. },
  21809. {
  21810. name: "Canon Height",
  21811. height: math.unit(50, "AU")
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6, "feet"),
  21820. weight: math.unit(150, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/terrance-keayes/front.svg",
  21824. extra: 1.005,
  21825. bottom: 151 / 1615
  21826. }
  21827. },
  21828. side: {
  21829. height: math.unit(6, "feet"),
  21830. weight: math.unit(150, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/terrance-keayes/side.svg",
  21834. extra: 1.005,
  21835. bottom: 129.4 / 1544
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(6, "feet"),
  21840. weight: math.unit(150, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/terrance-keayes/back.svg",
  21844. extra: 1.005,
  21845. bottom: 58.4 / 1557.3
  21846. }
  21847. },
  21848. dick: {
  21849. height: math.unit(6 * 0.208, "feet"),
  21850. name: "Dick",
  21851. image: {
  21852. source: "./media/characters/terrance-keayes/dick.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Canon Height",
  21859. height: math.unit(35, "miles"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/ofelia/front.svg",
  21873. extra: 546 / 541,
  21874. bottom: 39 / 583
  21875. }
  21876. },
  21877. back: {
  21878. height: math.unit(6, "feet"),
  21879. weight: math.unit(150, "lb"),
  21880. name: "Back",
  21881. image: {
  21882. source: "./media/characters/ofelia/back.svg",
  21883. extra: 564 / 559.5,
  21884. bottom: 8.69 / 573.02
  21885. }
  21886. },
  21887. maw: {
  21888. height: math.unit(1, "feet"),
  21889. name: "Maw",
  21890. image: {
  21891. source: "./media/characters/ofelia/maw.svg"
  21892. }
  21893. },
  21894. foot: {
  21895. height: math.unit(1.949, "feet"),
  21896. name: "Foot",
  21897. image: {
  21898. source: "./media/characters/ofelia/foot.svg"
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Canon Height",
  21905. height: math.unit(2000, "miles"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(6, "feet"),
  21915. weight: math.unit(150, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/samuel/front.svg",
  21919. extra: 265 / 258,
  21920. bottom: 2 / 266.1566
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Macro",
  21927. height: math.unit(100, "feet"),
  21928. default: true
  21929. },
  21930. {
  21931. name: "Full Size",
  21932. height: math.unit(1000, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(6, "feet"),
  21941. weight: math.unit(300, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/beishir-kiel/front.svg",
  21945. extra: 569 / 547,
  21946. bottom: 41.9 / 609
  21947. }
  21948. },
  21949. maw: {
  21950. height: math.unit(6 * 0.202, "feet"),
  21951. name: "Maw",
  21952. image: {
  21953. source: "./media/characters/beishir-kiel/maw.svg"
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Macro",
  21960. height: math.unit(300, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(5 + 7/12, "feet"),
  21970. weight: math.unit(120, "lb"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/logan-grey/front.svg",
  21974. extra: 1836/1738,
  21975. bottom: 108/1944
  21976. }
  21977. },
  21978. back: {
  21979. height: math.unit(5 + 7/12, "feet"),
  21980. weight: math.unit(120, "lb"),
  21981. name: "Back",
  21982. image: {
  21983. source: "./media/characters/logan-grey/back.svg",
  21984. extra: 1880/1794,
  21985. bottom: 24/1904
  21986. }
  21987. },
  21988. frontSfw: {
  21989. height: math.unit(5 + 7/12, "feet"),
  21990. weight: math.unit(120, "lb"),
  21991. name: "Front (SFW)",
  21992. image: {
  21993. source: "./media/characters/logan-grey/front-sfw.svg",
  21994. extra: 1836/1738,
  21995. bottom: 108/1944
  21996. }
  21997. },
  21998. backSfw: {
  21999. height: math.unit(5 + 7/12, "feet"),
  22000. weight: math.unit(120, "lb"),
  22001. name: "Back (SFW)",
  22002. image: {
  22003. source: "./media/characters/logan-grey/back-sfw.svg",
  22004. extra: 1880/1794,
  22005. bottom: 24/1904
  22006. }
  22007. },
  22008. hands: {
  22009. height: math.unit(0.84, "feet"),
  22010. name: "Hands",
  22011. image: {
  22012. source: "./media/characters/logan-grey/hands.svg"
  22013. }
  22014. },
  22015. paws: {
  22016. height: math.unit(0.72, "feet"),
  22017. name: "Paws",
  22018. image: {
  22019. source: "./media/characters/logan-grey/paws.svg"
  22020. }
  22021. },
  22022. cock: {
  22023. height: math.unit(1.45, "feet"),
  22024. name: "Cock",
  22025. image: {
  22026. source: "./media/characters/logan-grey/cock.svg"
  22027. }
  22028. },
  22029. cockAlt: {
  22030. height: math.unit(1.437, "feet"),
  22031. name: "Cock (alt)",
  22032. image: {
  22033. source: "./media/characters/logan-grey/cock-alt.svg"
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 8 / 12, "feet")
  22041. },
  22042. {
  22043. name: "The 500 Foot Femboy",
  22044. height: math.unit(500, "feet"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Megmacro",
  22049. height: math.unit(20, "miles")
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(8 + 2 / 12, "feet"),
  22058. weight: math.unit(275, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/draganta/front.svg",
  22062. extra: 1177 / 1135,
  22063. bottom: 33.46 / 1212.1
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(8 + 6 / 12, "feet"),
  22071. default: true
  22072. },
  22073. {
  22074. name: "Macro",
  22075. height: math.unit(150, "feet")
  22076. },
  22077. {
  22078. name: "Megamacro",
  22079. height: math.unit(1000, "miles")
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(1.72, "m"),
  22088. weight: math.unit(80, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/voski/front.svg",
  22092. extra: 2076.22 / 2022.4,
  22093. bottom: 102.7 / 2177.3866
  22094. }
  22095. },
  22096. frontNsfw: {
  22097. height: math.unit(1.72, "m"),
  22098. weight: math.unit(80, "lb"),
  22099. name: "Front (NSFW)",
  22100. image: {
  22101. source: "./media/characters/voski/front-nsfw.svg",
  22102. extra: 2076.22 / 2022.4,
  22103. bottom: 102.7 / 2177.3866
  22104. }
  22105. },
  22106. back: {
  22107. height: math.unit(1.72, "m"),
  22108. weight: math.unit(80, "lb"),
  22109. name: "Back",
  22110. image: {
  22111. source: "./media/characters/voski/back.svg",
  22112. extra: 2104 / 2051,
  22113. bottom: 10.45 / 2113.63
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(1.72, "m")
  22121. },
  22122. {
  22123. name: "Macro",
  22124. height: math.unit(55, "m"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Macro+",
  22129. height: math.unit(300, "m")
  22130. },
  22131. {
  22132. name: "Macro++",
  22133. height: math.unit(700, "m")
  22134. },
  22135. {
  22136. name: "Macro+++",
  22137. height: math.unit(4500, "m")
  22138. },
  22139. {
  22140. name: "Macro++++",
  22141. height: math.unit(45, "km")
  22142. },
  22143. {
  22144. name: "Macro+++++",
  22145. height: math.unit(1220, "km")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(2.3, "m"),
  22154. weight: math.unit(304, "kg"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/icowom-lee/front.svg",
  22158. extra: 985 / 955,
  22159. bottom: 25.4 / 1012
  22160. }
  22161. },
  22162. fronttentacles: {
  22163. height: math.unit(2.3, "m"),
  22164. weight: math.unit(304, "kg"),
  22165. name: "Front-tentacles",
  22166. image: {
  22167. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22168. extra: 985 / 955,
  22169. bottom: 25.4 / 1012
  22170. }
  22171. },
  22172. back: {
  22173. height: math.unit(2.3, "m"),
  22174. weight: math.unit(304, "kg"),
  22175. name: "Back",
  22176. image: {
  22177. source: "./media/characters/icowom-lee/back.svg",
  22178. extra: 975 / 954,
  22179. bottom: 9.5 / 985
  22180. }
  22181. },
  22182. backtentacles: {
  22183. height: math.unit(2.3, "m"),
  22184. weight: math.unit(304, "kg"),
  22185. name: "Back-tentacles",
  22186. image: {
  22187. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22188. extra: 975 / 954,
  22189. bottom: 9.5 / 985
  22190. }
  22191. },
  22192. frontDressed: {
  22193. height: math.unit(2.3, "m"),
  22194. weight: math.unit(304, "kg"),
  22195. name: "Front (Dressed)",
  22196. image: {
  22197. source: "./media/characters/icowom-lee/front-dressed.svg",
  22198. extra: 3076 / 2933,
  22199. bottom: 51.4 / 3125.1889
  22200. }
  22201. },
  22202. rump: {
  22203. height: math.unit(0.776, "meters"),
  22204. name: "Rump",
  22205. image: {
  22206. source: "./media/characters/icowom-lee/rump.svg"
  22207. }
  22208. },
  22209. genitals: {
  22210. height: math.unit(0.78, "meters"),
  22211. name: "Genitals",
  22212. image: {
  22213. source: "./media/characters/icowom-lee/genitals.svg"
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(2.3, "meters"),
  22221. default: true
  22222. },
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(94, "meters"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(22, "meters"),
  22235. weight: math.unit(21000, "kg"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/shock-diamond/front.svg",
  22239. extra: 2204 / 2053,
  22240. bottom: 65 / 2239.47
  22241. }
  22242. },
  22243. frontNude: {
  22244. height: math.unit(22, "meters"),
  22245. weight: math.unit(21000, "kg"),
  22246. name: "Front (Nude)",
  22247. image: {
  22248. source: "./media/characters/shock-diamond/front-nude.svg",
  22249. extra: 2514 / 2285,
  22250. bottom: 13 / 2527.56
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Normal",
  22257. height: math.unit(3, "meters")
  22258. },
  22259. {
  22260. name: "Macro",
  22261. height: math.unit(22, "meters"),
  22262. default: true
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22268. {
  22269. front: {
  22270. height: math.unit(5 + 4 / 12, "feet"),
  22271. weight: math.unit(120, "lb"),
  22272. name: "Front",
  22273. image: {
  22274. source: "./media/characters/rory/front.svg",
  22275. extra: 589 / 556,
  22276. bottom: 45.7 / 635.76
  22277. }
  22278. },
  22279. frontNude: {
  22280. height: math.unit(5 + 4 / 12, "feet"),
  22281. weight: math.unit(120, "lb"),
  22282. name: "Front (Nude)",
  22283. image: {
  22284. source: "./media/characters/rory/front-nude.svg",
  22285. extra: 589 / 556,
  22286. bottom: 45.7 / 635.76
  22287. }
  22288. },
  22289. side: {
  22290. height: math.unit(5 + 4 / 12, "feet"),
  22291. weight: math.unit(120, "lb"),
  22292. name: "Side",
  22293. image: {
  22294. source: "./media/characters/rory/side.svg",
  22295. extra: 597 / 564,
  22296. bottom: 55 / 653
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(5 + 4 / 12, "feet"),
  22301. weight: math.unit(120, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/rory/back.svg",
  22305. extra: 620 / 585,
  22306. bottom: 8.86 / 630.43
  22307. }
  22308. },
  22309. dick: {
  22310. height: math.unit(0.86, "feet"),
  22311. name: "Dick",
  22312. image: {
  22313. source: "./media/characters/rory/dick.svg"
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Normal",
  22320. height: math.unit(5 + 4 / 12, "feet"),
  22321. default: true
  22322. },
  22323. {
  22324. name: "Macro",
  22325. height: math.unit(100, "feet")
  22326. },
  22327. {
  22328. name: "Macro+",
  22329. height: math.unit(140, "feet")
  22330. },
  22331. {
  22332. name: "Macro++",
  22333. height: math.unit(300, "feet")
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(5 + 9 / 12, "feet"),
  22342. weight: math.unit(190, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/sprisk/front.svg",
  22346. extra: 1225 / 1180,
  22347. bottom: 42.7 / 1266.4
  22348. }
  22349. },
  22350. frontNsfw: {
  22351. height: math.unit(5 + 9 / 12, "feet"),
  22352. weight: math.unit(190, "lb"),
  22353. name: "Front (NSFW)",
  22354. image: {
  22355. source: "./media/characters/sprisk/front-nsfw.svg",
  22356. extra: 1225 / 1180,
  22357. bottom: 42.7 / 1266.4
  22358. }
  22359. },
  22360. back: {
  22361. height: math.unit(5 + 9 / 12, "feet"),
  22362. weight: math.unit(190, "lb"),
  22363. name: "Back",
  22364. image: {
  22365. source: "./media/characters/sprisk/back.svg",
  22366. extra: 1247 / 1200,
  22367. bottom: 5.6 / 1253.04
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Tiny",
  22374. height: math.unit(2, "inches")
  22375. },
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(5 + 9 / 12, "feet"),
  22379. default: true
  22380. },
  22381. {
  22382. name: "Mini Macro",
  22383. height: math.unit(18, "feet")
  22384. },
  22385. {
  22386. name: "Macro",
  22387. height: math.unit(100, "feet")
  22388. },
  22389. {
  22390. name: "MACRO",
  22391. height: math.unit(50, "miles")
  22392. },
  22393. {
  22394. name: "M A C R O",
  22395. height: math.unit(300, "miles")
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22401. {
  22402. side: {
  22403. height: math.unit(15.6, "meters"),
  22404. weight: math.unit(700000, "kg"),
  22405. name: "Side",
  22406. image: {
  22407. source: "./media/characters/bunsen/side.svg",
  22408. extra: 1644 / 358
  22409. }
  22410. },
  22411. foot: {
  22412. height: math.unit(1.611 * 1644 / 358, "meter"),
  22413. name: "Foot",
  22414. image: {
  22415. source: "./media/characters/bunsen/foot.svg"
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Small",
  22422. height: math.unit(10, "feet")
  22423. },
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(15.6, "meters"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(4 + 11 / 12, "feet"),
  22436. weight: math.unit(140, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/sesh/front.svg",
  22440. extra: 3420 / 3231,
  22441. bottom: 72 / 3949.5
  22442. }
  22443. },
  22444. },
  22445. [
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(4 + 11 / 12, "feet")
  22449. },
  22450. {
  22451. name: "Grown",
  22452. height: math.unit(15, "feet"),
  22453. default: true
  22454. },
  22455. {
  22456. name: "Macro",
  22457. height: math.unit(1500, "feet")
  22458. },
  22459. {
  22460. name: "Megamacro",
  22461. height: math.unit(30, "miles")
  22462. },
  22463. {
  22464. name: "Continental",
  22465. height: math.unit(3000, "miles")
  22466. },
  22467. {
  22468. name: "Gravity Mass",
  22469. height: math.unit(300000, "miles")
  22470. },
  22471. {
  22472. name: "Planet Buster",
  22473. height: math.unit(30000000, "miles")
  22474. },
  22475. {
  22476. name: "Big",
  22477. height: math.unit(3000000000, "miles")
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(9, "feet"),
  22486. weight: math.unit(350, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/pepper/front.svg",
  22490. extra: 1448 / 1312,
  22491. bottom: 9.4 / 1457.88
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(9, "feet"),
  22496. weight: math.unit(350, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/pepper/back.svg",
  22500. extra: 1423 / 1300,
  22501. bottom: 4.6 / 1429
  22502. }
  22503. },
  22504. maw: {
  22505. height: math.unit(0.932, "feet"),
  22506. name: "Maw",
  22507. image: {
  22508. source: "./media/characters/pepper/maw.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(9, "feet"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/maelstrom/front.svg",
  22529. extra: 2100 / 1883,
  22530. bottom: 94 / 2196.7
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Less Kaiju",
  22537. height: math.unit(200, "feet")
  22538. },
  22539. {
  22540. name: "Kaiju",
  22541. height: math.unit(400, "feet"),
  22542. default: true
  22543. },
  22544. {
  22545. name: "Kaiju-er",
  22546. height: math.unit(600, "feet")
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(6 + 5 / 12, "feet"),
  22555. weight: math.unit(180, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/lexir/front.svg",
  22559. extra: 180 / 172,
  22560. bottom: 12 / 192
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(6 + 5 / 12, "feet"),
  22565. weight: math.unit(180, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/lexir/back.svg",
  22569. extra: 183.84 / 175.5,
  22570. bottom: 3.1 / 187
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Very Smal",
  22577. height: math.unit(1, "nm")
  22578. },
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(6 + 5 / 12, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Macro",
  22586. height: math.unit(1, "mile")
  22587. },
  22588. {
  22589. name: "Megamacro",
  22590. height: math.unit(50, "miles")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(1.5, "meters"),
  22599. weight: math.unit(100, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/maksio/front.svg",
  22603. extra: 1549 / 1531,
  22604. bottom: 123.7 / 1674.5429
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(1.5, "meters"),
  22609. weight: math.unit(100, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/maksio/back.svg",
  22613. extra: 1541 / 1509,
  22614. bottom: 97 / 1639
  22615. }
  22616. },
  22617. hand: {
  22618. height: math.unit(0.621, "feet"),
  22619. name: "Hand",
  22620. image: {
  22621. source: "./media/characters/maksio/hand.svg"
  22622. }
  22623. },
  22624. foot: {
  22625. height: math.unit(1.611, "feet"),
  22626. name: "Foot",
  22627. image: {
  22628. source: "./media/characters/maksio/foot.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Shrunken",
  22635. height: math.unit(10, "cm")
  22636. },
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(150, "cm"),
  22640. default: true
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(100, "feet"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/erza-bear/front.svg",
  22652. extra: 2449 / 2390,
  22653. bottom: 46 / 2494
  22654. }
  22655. },
  22656. back: {
  22657. height: math.unit(100, "feet"),
  22658. name: "Back",
  22659. image: {
  22660. source: "./media/characters/erza-bear/back.svg",
  22661. extra: 2489 / 2430,
  22662. bottom: 85.4 / 2480
  22663. }
  22664. },
  22665. tail: {
  22666. height: math.unit(42, "feet"),
  22667. name: "Tail",
  22668. image: {
  22669. source: "./media/characters/erza-bear/tail.svg"
  22670. }
  22671. },
  22672. tongue: {
  22673. height: math.unit(8, "feet"),
  22674. name: "Tongue",
  22675. image: {
  22676. source: "./media/characters/erza-bear/tongue.svg"
  22677. }
  22678. },
  22679. dick: {
  22680. height: math.unit(10.5, "feet"),
  22681. name: "Dick",
  22682. image: {
  22683. source: "./media/characters/erza-bear/dick.svg"
  22684. }
  22685. },
  22686. dickVertical: {
  22687. height: math.unit(16.9, "feet"),
  22688. name: "Dick (Vertical)",
  22689. image: {
  22690. source: "./media/characters/erza-bear/dick-vertical.svg"
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(100, "feet"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(172, "cm"),
  22707. weight: math.unit(73, "kg"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/violet-flor/front.svg",
  22711. extra: 1530 / 1442,
  22712. bottom: 61.9 / 1588.8
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(180, "cm"),
  22717. weight: math.unit(73, "kg"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/violet-flor/back.svg",
  22721. extra: 1692 / 1630,
  22722. bottom: 20 / 1712
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(172, "cm"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(6, "feet"),
  22739. weight: math.unit(220, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/lynn-rhea/front.svg",
  22743. extra: 310 / 273
  22744. }
  22745. },
  22746. back: {
  22747. height: math.unit(6, "feet"),
  22748. weight: math.unit(220, "lb"),
  22749. name: "Back",
  22750. image: {
  22751. source: "./media/characters/lynn-rhea/back.svg",
  22752. extra: 310 / 273
  22753. }
  22754. },
  22755. dicks: {
  22756. height: math.unit(0.9, "feet"),
  22757. name: "Dicks",
  22758. image: {
  22759. source: "./media/characters/lynn-rhea/dicks.svg"
  22760. }
  22761. },
  22762. slit: {
  22763. height: math.unit(0.4, "feet"),
  22764. name: "Slit",
  22765. image: {
  22766. source: "./media/characters/lynn-rhea/slit.svg"
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Micro",
  22773. height: math.unit(1, "inch")
  22774. },
  22775. {
  22776. name: "Macro",
  22777. height: math.unit(60, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Megamacro",
  22782. height: math.unit(2, "miles")
  22783. },
  22784. {
  22785. name: "Gigamacro",
  22786. height: math.unit(3, "earths")
  22787. },
  22788. {
  22789. name: "Galactic",
  22790. height: math.unit(0.8, "galaxies")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22796. {
  22797. front: {
  22798. height: math.unit(1600, "feet"),
  22799. weight: math.unit(85758785169, "kg"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/valathos/front.svg",
  22803. extra: 1451 / 1339
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Macro",
  22810. height: math.unit(1600, "feet"),
  22811. default: true
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(7 + 5 / 12, "feet"),
  22820. weight: math.unit(300, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/azula/front.svg",
  22824. extra: 3208 / 2880,
  22825. bottom: 80.2 / 3277
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(7 + 5 / 12, "feet"),
  22830. weight: math.unit(300, "lb"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/azula/back.svg",
  22834. extra: 3169 / 2822,
  22835. bottom: 150.6 / 3321
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(7 + 5 / 12, "feet"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Big",
  22847. height: math.unit(20, "feet")
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(5 + 1 / 12, "feet"),
  22856. weight: math.unit(110, "lb"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/rupert/front.svg",
  22860. extra: 1549 / 1495,
  22861. bottom: 54.2 / 1604.4
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(5 + 1 / 12, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22875. {
  22876. front: {
  22877. height: math.unit(8 + 4 / 12, "feet"),
  22878. weight: math.unit(350, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/sheera-castellar/front.svg",
  22882. extra: 1957 / 1894,
  22883. bottom: 26.97 / 1975.017
  22884. }
  22885. },
  22886. side: {
  22887. height: math.unit(8 + 4 / 12, "feet"),
  22888. weight: math.unit(350, "lb"),
  22889. name: "Side",
  22890. image: {
  22891. source: "./media/characters/sheera-castellar/side.svg",
  22892. extra: 1957 / 1894
  22893. }
  22894. },
  22895. back: {
  22896. height: math.unit(8 + 4 / 12, "feet"),
  22897. weight: math.unit(350, "lb"),
  22898. name: "Back",
  22899. image: {
  22900. source: "./media/characters/sheera-castellar/back.svg",
  22901. extra: 1957 / 1894
  22902. }
  22903. },
  22904. angled: {
  22905. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22906. weight: math.unit(350, "lb"),
  22907. name: "Angled",
  22908. image: {
  22909. source: "./media/characters/sheera-castellar/angled.svg",
  22910. extra: 1807 / 1707,
  22911. bottom: 68 / 1875
  22912. }
  22913. },
  22914. genitals: {
  22915. height: math.unit(2.2, "feet"),
  22916. name: "Genitals",
  22917. image: {
  22918. source: "./media/characters/sheera-castellar/genitals.svg"
  22919. }
  22920. },
  22921. taur: {
  22922. height: math.unit(10 + 6/12, "feet"),
  22923. name: "Taur",
  22924. image: {
  22925. source: "./media/characters/sheera-castellar/taur.svg",
  22926. extra: 2017/1909,
  22927. bottom: 185/2202
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(8 + 4 / 12, "feet")
  22935. },
  22936. {
  22937. name: "Macro",
  22938. height: math.unit(150, "feet"),
  22939. default: true
  22940. },
  22941. {
  22942. name: "Macro+",
  22943. height: math.unit(800, "feet")
  22944. },
  22945. ]
  22946. ))
  22947. characterMakers.push(() => makeCharacter(
  22948. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22949. {
  22950. front: {
  22951. height: math.unit(6, "feet"),
  22952. weight: math.unit(150, "lb"),
  22953. name: "Front",
  22954. image: {
  22955. source: "./media/characters/jaipur/front.svg",
  22956. extra: 3860 / 3731,
  22957. bottom: 287 / 4140
  22958. }
  22959. },
  22960. back: {
  22961. height: math.unit(6, "feet"),
  22962. weight: math.unit(150, "lb"),
  22963. name: "Back",
  22964. image: {
  22965. source: "./media/characters/jaipur/back.svg",
  22966. extra: 4060 / 3930,
  22967. bottom: 151 / 4200
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(1.85, "meters"),
  22975. default: true
  22976. },
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(150, "meters")
  22980. },
  22981. {
  22982. name: "Macro+",
  22983. height: math.unit(0.5, "miles")
  22984. },
  22985. {
  22986. name: "Macro++",
  22987. height: math.unit(2.5, "miles")
  22988. },
  22989. {
  22990. name: "Macro+++",
  22991. height: math.unit(12, "miles")
  22992. },
  22993. {
  22994. name: "Macro++++",
  22995. height: math.unit(120, "miles")
  22996. },
  22997. {
  22998. name: "Macro+++++",
  22999. height: math.unit(1200, "miles")
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(6, "feet"),
  23008. weight: math.unit(150, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/sheila-wolf/front.svg",
  23012. extra: 1931 / 1808,
  23013. bottom: 29.5 / 1960
  23014. }
  23015. },
  23016. dick: {
  23017. height: math.unit(1.464, "feet"),
  23018. name: "Dick",
  23019. image: {
  23020. source: "./media/characters/sheila-wolf/dick.svg"
  23021. }
  23022. },
  23023. muzzle: {
  23024. height: math.unit(0.513, "feet"),
  23025. name: "Muzzle",
  23026. image: {
  23027. source: "./media/characters/sheila-wolf/muzzle.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(70, "feet"),
  23035. default: true
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(32, "meters"),
  23044. weight: math.unit(300000, "kg"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/almor/front.svg",
  23048. extra: 1408 / 1322,
  23049. bottom: 94.6 / 1506.5
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Macro",
  23056. height: math.unit(32, "meters"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(7, "feet"),
  23066. weight: math.unit(200, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/silver/front.svg",
  23070. extra: 472.1 / 450.5,
  23071. bottom: 26.5 / 499.424
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(7, "feet"),
  23079. default: true
  23080. },
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(800, "feet")
  23084. },
  23085. {
  23086. name: "Megamacro",
  23087. height: math.unit(250, "miles")
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(6, "feet"),
  23096. weight: math.unit(150, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/pliskin/front.svg",
  23100. extra: 1469 / 1359,
  23101. bottom: 70 / 1540
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Micro",
  23108. height: math.unit(3, "inches")
  23109. },
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(5 + 11 / 12, "feet"),
  23113. default: true
  23114. },
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(120, "feet")
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(6, "feet"),
  23126. weight: math.unit(150, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/sammy/front.svg",
  23130. extra: 1193 / 1089,
  23131. bottom: 30.5 / 1226
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Macro",
  23138. height: math.unit(1700, "feet"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Examacro",
  23143. height: math.unit(2.5e9, "lightyears")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(21, "meters"),
  23152. weight: math.unit(12, "tonnes"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/kuru/front.svg",
  23156. extra: 4301 / 3785,
  23157. bottom: 371.3 / 4691
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Macro",
  23164. height: math.unit(21, "meters"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(23, "meters"),
  23174. weight: math.unit(12.2, "tonnes"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/rakka/front.svg",
  23178. extra: 4670 / 4169,
  23179. bottom: 301 / 4968.7
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Macro",
  23186. height: math.unit(23, "meters"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(6, "feet"),
  23196. weight: math.unit(150, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/rhys-feline/front.svg",
  23200. extra: 2488 / 2308,
  23201. bottom: 35.67 / 2519.19
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Really Small",
  23208. height: math.unit(1, "nm")
  23209. },
  23210. {
  23211. name: "Micro",
  23212. height: math.unit(4, "inches")
  23213. },
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(4 + 10 / 12, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Macro",
  23221. height: math.unit(100, "feet")
  23222. },
  23223. {
  23224. name: "Megamacto",
  23225. height: math.unit(50, "miles")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23231. {
  23232. side: {
  23233. height: math.unit(30, "feet"),
  23234. weight: math.unit(35000, "kg"),
  23235. name: "Side",
  23236. image: {
  23237. source: "./media/characters/alydar/side.svg",
  23238. extra: 234 / 222,
  23239. bottom: 6.5 / 241
  23240. }
  23241. },
  23242. front: {
  23243. height: math.unit(30, "feet"),
  23244. weight: math.unit(35000, "kg"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/alydar/front.svg",
  23248. extra: 223.37 / 210.2,
  23249. bottom: 22.3 / 246.76
  23250. }
  23251. },
  23252. top: {
  23253. height: math.unit(64.54, "feet"),
  23254. weight: math.unit(35000, "kg"),
  23255. name: "Top",
  23256. image: {
  23257. source: "./media/characters/alydar/top.svg"
  23258. }
  23259. },
  23260. anthro: {
  23261. height: math.unit(30, "feet"),
  23262. weight: math.unit(9000, "kg"),
  23263. name: "Anthro",
  23264. image: {
  23265. source: "./media/characters/alydar/anthro.svg",
  23266. extra: 432 / 421,
  23267. bottom: 7.18 / 440
  23268. }
  23269. },
  23270. maw: {
  23271. height: math.unit(11.693, "feet"),
  23272. name: "Maw",
  23273. image: {
  23274. source: "./media/characters/alydar/maw.svg"
  23275. }
  23276. },
  23277. head: {
  23278. height: math.unit(11.693, "feet"),
  23279. name: "Head",
  23280. image: {
  23281. source: "./media/characters/alydar/head.svg"
  23282. }
  23283. },
  23284. headAlt: {
  23285. height: math.unit(12.861, "feet"),
  23286. name: "Head (Alt)",
  23287. image: {
  23288. source: "./media/characters/alydar/head-alt.svg"
  23289. }
  23290. },
  23291. wing: {
  23292. height: math.unit(20.712, "feet"),
  23293. name: "Wing",
  23294. image: {
  23295. source: "./media/characters/alydar/wing.svg"
  23296. }
  23297. },
  23298. wingFeather: {
  23299. height: math.unit(9.662, "feet"),
  23300. name: "Wing Feather",
  23301. image: {
  23302. source: "./media/characters/alydar/wing-feather.svg"
  23303. }
  23304. },
  23305. countourFeather: {
  23306. height: math.unit(4.154, "feet"),
  23307. name: "Contour Feather",
  23308. image: {
  23309. source: "./media/characters/alydar/contour-feather.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Diplomatic",
  23316. height: math.unit(13, "feet"),
  23317. default: true
  23318. },
  23319. {
  23320. name: "Small",
  23321. height: math.unit(30, "feet")
  23322. },
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(95, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Large",
  23330. height: math.unit(285, "feet")
  23331. },
  23332. {
  23333. name: "Incomprehensible",
  23334. height: math.unit(450, "megameters")
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23340. {
  23341. side: {
  23342. height: math.unit(11, "feet"),
  23343. weight: math.unit(1750, "kg"),
  23344. name: "Side",
  23345. image: {
  23346. source: "./media/characters/selicia/side.svg",
  23347. extra: 440 / 396,
  23348. bottom: 24.8 / 465.979
  23349. }
  23350. },
  23351. maw: {
  23352. height: math.unit(4.665, "feet"),
  23353. name: "Maw",
  23354. image: {
  23355. source: "./media/characters/selicia/maw.svg"
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Normal",
  23362. height: math.unit(11, "feet"),
  23363. default: true
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23369. {
  23370. side: {
  23371. height: math.unit(2 + 6 / 12, "feet"),
  23372. weight: math.unit(30, "lb"),
  23373. name: "Side",
  23374. image: {
  23375. source: "./media/characters/layla/side.svg",
  23376. extra: 244 / 188,
  23377. bottom: 18.2 / 262.1
  23378. }
  23379. },
  23380. back: {
  23381. height: math.unit(2 + 6 / 12, "feet"),
  23382. weight: math.unit(30, "lb"),
  23383. name: "Back",
  23384. image: {
  23385. source: "./media/characters/layla/back.svg",
  23386. extra: 308 / 241.5,
  23387. bottom: 8.9 / 316.8
  23388. }
  23389. },
  23390. cumming: {
  23391. height: math.unit(2 + 6 / 12, "feet"),
  23392. weight: math.unit(30, "lb"),
  23393. name: "Cumming",
  23394. image: {
  23395. source: "./media/characters/layla/cumming.svg",
  23396. extra: 342 / 279,
  23397. bottom: 595 / 938
  23398. }
  23399. },
  23400. dickFlaccid: {
  23401. height: math.unit(2.595, "feet"),
  23402. name: "Flaccid Genitals",
  23403. image: {
  23404. source: "./media/characters/layla/dick-flaccid.svg"
  23405. }
  23406. },
  23407. dickErect: {
  23408. height: math.unit(2.359, "feet"),
  23409. name: "Erect Genitals",
  23410. image: {
  23411. source: "./media/characters/layla/dick-erect.svg"
  23412. }
  23413. },
  23414. dragon: {
  23415. height: math.unit(40, "feet"),
  23416. name: "Dragon",
  23417. image: {
  23418. source: "./media/characters/layla/dragon.svg",
  23419. extra: 610/535,
  23420. bottom: 367/977
  23421. }
  23422. },
  23423. taur: {
  23424. height: math.unit(30, "feet"),
  23425. name: "Taur",
  23426. image: {
  23427. source: "./media/characters/layla/taur.svg",
  23428. extra: 1268/1199,
  23429. bottom: 112/1380
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Micro",
  23436. height: math.unit(1, "inch")
  23437. },
  23438. {
  23439. name: "Small",
  23440. height: math.unit(1, "foot")
  23441. },
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(2 + 6 / 12, "feet"),
  23445. default: true
  23446. },
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(200, "feet")
  23450. },
  23451. {
  23452. name: "Megamacro",
  23453. height: math.unit(1000, "miles")
  23454. },
  23455. {
  23456. name: "Planetary",
  23457. height: math.unit(8000, "miles")
  23458. },
  23459. {
  23460. name: "True Layla",
  23461. height: math.unit(200000 * 7, "multiverses")
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23467. {
  23468. back: {
  23469. height: math.unit(10.5, "feet"),
  23470. weight: math.unit(800, "lb"),
  23471. name: "Back",
  23472. image: {
  23473. source: "./media/characters/knox/back.svg",
  23474. extra: 1486 / 1089,
  23475. bottom: 107 / 1601.4
  23476. }
  23477. },
  23478. side: {
  23479. height: math.unit(10.5, "feet"),
  23480. weight: math.unit(800, "lb"),
  23481. name: "Side",
  23482. image: {
  23483. source: "./media/characters/knox/side.svg",
  23484. extra: 244 / 218,
  23485. bottom: 14 / 260
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Compact",
  23492. height: math.unit(10.5, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Dynamax",
  23497. height: math.unit(210, "feet")
  23498. },
  23499. {
  23500. name: "Full Macro",
  23501. height: math.unit(850, "feet")
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23507. {
  23508. front: {
  23509. height: math.unit(6, "feet"),
  23510. weight: math.unit(152, "lb"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/shin-pikachu/front.svg",
  23514. extra: 1854/1602,
  23515. bottom: 166/2020
  23516. }
  23517. },
  23518. hand: {
  23519. height: math.unit(1.055, "feet"),
  23520. name: "Hand",
  23521. image: {
  23522. source: "./media/characters/shin-pikachu/hand.svg"
  23523. }
  23524. },
  23525. foot: {
  23526. height: math.unit(1.1, "feet"),
  23527. name: "Foot",
  23528. image: {
  23529. source: "./media/characters/shin-pikachu/foot.svg"
  23530. }
  23531. },
  23532. collar: {
  23533. height: math.unit(0.386, "feet"),
  23534. name: "Collar",
  23535. image: {
  23536. source: "./media/characters/shin-pikachu/collar.svg"
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Smallest",
  23543. height: math.unit(0.5, "inches")
  23544. },
  23545. {
  23546. name: "Micro",
  23547. height: math.unit(6, "inches")
  23548. },
  23549. {
  23550. name: "Normal",
  23551. height: math.unit(6, "feet"),
  23552. default: true
  23553. },
  23554. {
  23555. name: "Macro",
  23556. height: math.unit(150, "feet")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(28, "feet"),
  23565. weight: math.unit(10500, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/kayda/front.svg",
  23569. extra: 1536 / 1428,
  23570. bottom: 68.7 / 1603
  23571. }
  23572. },
  23573. back: {
  23574. height: math.unit(28, "feet"),
  23575. weight: math.unit(10500, "lb"),
  23576. name: "Back",
  23577. image: {
  23578. source: "./media/characters/kayda/back.svg",
  23579. extra: 1557 / 1464,
  23580. bottom: 39.5 / 1597.49
  23581. }
  23582. },
  23583. dick: {
  23584. height: math.unit(3.858, "feet"),
  23585. name: "Dick",
  23586. image: {
  23587. source: "./media/characters/kayda/dick.svg"
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(28, "feet"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(10 + 11 / 12, "feet"),
  23604. weight: math.unit(1400, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/brian/front.svg",
  23608. extra: 737 / 692,
  23609. bottom: 55.4 / 785
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(10 + 11 / 12, "feet"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(5 + 8 / 12, "feet"),
  23626. weight: math.unit(140, "lb"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/khemri/front.svg",
  23630. extra: 4780 / 4059,
  23631. bottom: 80.1 / 4859.25
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(6, "inches")
  23639. },
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(5 + 8 / 12, "feet"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23649. {
  23650. front: {
  23651. height: math.unit(13, "feet"),
  23652. weight: math.unit(1700, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/felix-braveheart/front.svg",
  23656. extra: 1222 / 1157,
  23657. bottom: 53.2 / 1280
  23658. }
  23659. },
  23660. back: {
  23661. height: math.unit(13, "feet"),
  23662. weight: math.unit(1700, "lb"),
  23663. name: "Back",
  23664. image: {
  23665. source: "./media/characters/felix-braveheart/back.svg",
  23666. extra: 1277 / 1203,
  23667. bottom: 50.2 / 1327
  23668. }
  23669. },
  23670. feral: {
  23671. height: math.unit(6, "feet"),
  23672. weight: math.unit(400, "lb"),
  23673. name: "Feral",
  23674. image: {
  23675. source: "./media/characters/felix-braveheart/feral.svg",
  23676. extra: 682 / 625,
  23677. bottom: 6.9 / 688
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(13, "feet"),
  23685. default: true
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23691. {
  23692. side: {
  23693. height: math.unit(5 + 11 / 12, "feet"),
  23694. weight: math.unit(1400, "lb"),
  23695. name: "Side",
  23696. image: {
  23697. source: "./media/characters/shadow-blade/side.svg",
  23698. extra: 1726 / 1267,
  23699. bottom: 58.4 / 1785
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(5 + 11 / 12, "feet"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(1 + 6 / 12, "feet"),
  23716. weight: math.unit(25, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/karla-halldor/front.svg",
  23720. extra: 1459 / 1383,
  23721. bottom: 12 / 1472
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(1 + 6 / 12, "feet"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23735. {
  23736. front: {
  23737. height: math.unit(6 + 2 / 12, "feet"),
  23738. weight: math.unit(160, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/ariam/front.svg",
  23742. extra: 714 / 617,
  23743. bottom: 23.4 / 737,
  23744. }
  23745. },
  23746. squatting: {
  23747. height: math.unit(4.1, "feet"),
  23748. weight: math.unit(160, "lb"),
  23749. name: "Squatting",
  23750. image: {
  23751. source: "./media/characters/ariam/squatting.svg",
  23752. extra: 2617 / 2112,
  23753. bottom: 61.2 / 2681,
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(6 + 2 / 12, "feet"),
  23761. default: true
  23762. },
  23763. {
  23764. name: "Normal+",
  23765. height: math.unit(4, "meters")
  23766. },
  23767. {
  23768. name: "Macro",
  23769. height: math.unit(50, "meters")
  23770. },
  23771. {
  23772. name: "Macro+",
  23773. height: math.unit(100, "meters")
  23774. },
  23775. {
  23776. name: "Megamacro",
  23777. height: math.unit(20, "km")
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(1.67, "meters"),
  23786. weight: math.unit(140, "lb"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23790. extra: 438 / 410,
  23791. bottom: 0.75 / 439
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Shrunken",
  23798. height: math.unit(7.6, "cm")
  23799. },
  23800. {
  23801. name: "Human Scale",
  23802. height: math.unit(1.67, "meters")
  23803. },
  23804. {
  23805. name: "Wolxi Scale",
  23806. height: math.unit(36.7, "meters"),
  23807. default: true
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(1.73, "meters"),
  23816. weight: math.unit(240, "lb"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/izue-two-mothers/front.svg",
  23820. extra: 469 / 437,
  23821. bottom: 1.24 / 470.6
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Shrunken",
  23828. height: math.unit(7.86, "cm")
  23829. },
  23830. {
  23831. name: "Human Scale",
  23832. height: math.unit(1.73, "meters")
  23833. },
  23834. {
  23835. name: "Wolxi Scale",
  23836. height: math.unit(38, "meters"),
  23837. default: true
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23843. {
  23844. front: {
  23845. height: math.unit(1.55, "meters"),
  23846. weight: math.unit(120, "lb"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/teeku-love-shack/front.svg",
  23850. extra: 387 / 362,
  23851. bottom: 1.51 / 388
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Shrunken",
  23858. height: math.unit(7, "cm")
  23859. },
  23860. {
  23861. name: "Human Scale",
  23862. height: math.unit(1.55, "meters")
  23863. },
  23864. {
  23865. name: "Wolxi Scale",
  23866. height: math.unit(34.1, "meters"),
  23867. default: true
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(1.83, "meters"),
  23876. weight: math.unit(135, "lb"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/dejma-the-red/front.svg",
  23880. extra: 480 / 458,
  23881. bottom: 1.8 / 482
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Shrunken",
  23888. height: math.unit(8.3, "cm")
  23889. },
  23890. {
  23891. name: "Human Scale",
  23892. height: math.unit(1.83, "meters")
  23893. },
  23894. {
  23895. name: "Wolxi Scale",
  23896. height: math.unit(40, "meters"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(1.78, "meters"),
  23906. weight: math.unit(65, "kg"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/aki/front.svg",
  23910. extra: 452 / 415
  23911. }
  23912. },
  23913. frontNsfw: {
  23914. height: math.unit(1.78, "meters"),
  23915. weight: math.unit(65, "kg"),
  23916. name: "Front (NSFW)",
  23917. image: {
  23918. source: "./media/characters/aki/front-nsfw.svg",
  23919. extra: 452 / 415
  23920. }
  23921. },
  23922. back: {
  23923. height: math.unit(1.78, "meters"),
  23924. weight: math.unit(65, "kg"),
  23925. name: "Back",
  23926. image: {
  23927. source: "./media/characters/aki/back.svg",
  23928. extra: 452 / 415
  23929. }
  23930. },
  23931. rump: {
  23932. height: math.unit(2.05, "feet"),
  23933. name: "Rump",
  23934. image: {
  23935. source: "./media/characters/aki/rump.svg"
  23936. }
  23937. },
  23938. dick: {
  23939. height: math.unit(0.95, "feet"),
  23940. name: "Dick",
  23941. image: {
  23942. source: "./media/characters/aki/dick.svg"
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Micro",
  23949. height: math.unit(15, "cm")
  23950. },
  23951. {
  23952. name: "Normal",
  23953. height: math.unit(178, "cm"),
  23954. default: true
  23955. },
  23956. {
  23957. name: "Macro",
  23958. height: math.unit(214, "m")
  23959. },
  23960. {
  23961. name: "Macro+",
  23962. height: math.unit(534, "m")
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(5 + 5 / 12, "feet"),
  23971. weight: math.unit(120, "lb"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/ari/front.svg",
  23975. extra: 714.5 / 682,
  23976. bottom: 8 / 722.5
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(5 + 5 / 12, "feet")
  23984. },
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(100, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Megamacro",
  23992. height: math.unit(100, "miles")
  23993. },
  23994. {
  23995. name: "Gigamacro",
  23996. height: math.unit(80000, "miles")
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24002. {
  24003. side: {
  24004. height: math.unit(9, "feet"),
  24005. weight: math.unit(400, "kg"),
  24006. name: "Side",
  24007. image: {
  24008. source: "./media/characters/bolt/side.svg",
  24009. extra: 1126 / 896,
  24010. bottom: 60 / 1187.3,
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Micro",
  24017. height: math.unit(5, "inches")
  24018. },
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(9, "feet"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(700, "feet")
  24027. },
  24028. {
  24029. name: "Max Size",
  24030. height: math.unit(1.52e22, "yottameters")
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24036. {
  24037. front: {
  24038. height: math.unit(4.53, "meters"),
  24039. weight: math.unit(3, "tons"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/draekon-sylviar/front.svg",
  24043. extra: 1228 / 1068,
  24044. bottom: 41 / 1270
  24045. }
  24046. },
  24047. tail: {
  24048. height: math.unit(1.772, "meter"),
  24049. name: "Tail",
  24050. image: {
  24051. source: "./media/characters/draekon-sylviar/tail.svg"
  24052. }
  24053. },
  24054. head: {
  24055. height: math.unit(1.331, "meter"),
  24056. name: "Head",
  24057. image: {
  24058. source: "./media/characters/draekon-sylviar/head.svg"
  24059. }
  24060. },
  24061. hand: {
  24062. height: math.unit(0.564, "meter"),
  24063. name: "Hand",
  24064. image: {
  24065. source: "./media/characters/draekon-sylviar/hand.svg"
  24066. }
  24067. },
  24068. foot: {
  24069. height: math.unit(0.621, "meter"),
  24070. name: "Foot",
  24071. image: {
  24072. source: "./media/characters/draekon-sylviar/foot.svg",
  24073. bottom: 32 / 324
  24074. }
  24075. },
  24076. dick: {
  24077. height: math.unit(61, "cm"),
  24078. name: "Dick",
  24079. image: {
  24080. source: "./media/characters/draekon-sylviar/dick.svg"
  24081. }
  24082. },
  24083. dickseparated: {
  24084. height: math.unit(61, "cm"),
  24085. name: "Dick-separated",
  24086. image: {
  24087. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24088. }
  24089. },
  24090. },
  24091. [
  24092. {
  24093. name: "Small",
  24094. height: math.unit(4.53 / 2, "meters"),
  24095. default: true
  24096. },
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(4.53, "meters"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Large",
  24104. height: math.unit(4.53 * 2, "meters"),
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(6 + 2 / 12, "feet"),
  24113. weight: math.unit(180, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/brawler/front.svg",
  24117. extra: 3301 / 3027,
  24118. bottom: 138 / 3439
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(6 + 2 / 12, "feet"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(11, "feet"),
  24135. weight: math.unit(1000, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/alex/front.svg",
  24139. bottom: 44.5 / 620
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Micro",
  24146. height: math.unit(5, "inches")
  24147. },
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(11, "feet"),
  24151. default: true
  24152. },
  24153. {
  24154. name: "Macro",
  24155. height: math.unit(9.5e9, "feet")
  24156. },
  24157. {
  24158. name: "Max Size",
  24159. height: math.unit(1.4e283, "yottameters")
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24165. {
  24166. female: {
  24167. height: math.unit(29.9, "m"),
  24168. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24169. name: "Female",
  24170. image: {
  24171. source: "./media/characters/zenari/female.svg",
  24172. extra: 3281.6 / 3217,
  24173. bottom: 72.2 / 3353
  24174. }
  24175. },
  24176. male: {
  24177. height: math.unit(27.7, "m"),
  24178. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24179. name: "Male",
  24180. image: {
  24181. source: "./media/characters/zenari/male.svg",
  24182. extra: 3008 / 2991,
  24183. bottom: 54.6 / 3069
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Macro",
  24190. height: math.unit(29.7, "meters"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24197. {
  24198. female: {
  24199. height: math.unit(23.8, "m"),
  24200. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24201. name: "Female",
  24202. image: {
  24203. source: "./media/characters/mactarian/female.svg",
  24204. extra: 2662 / 2569,
  24205. bottom: 73 / 2736
  24206. }
  24207. },
  24208. male: {
  24209. height: math.unit(23.8, "m"),
  24210. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24211. name: "Male",
  24212. image: {
  24213. source: "./media/characters/mactarian/male.svg",
  24214. extra: 2673 / 2600,
  24215. bottom: 76 / 2750
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Macro",
  24222. height: math.unit(23.8, "meters"),
  24223. default: true
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24229. {
  24230. female: {
  24231. height: math.unit(19.3, "m"),
  24232. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24233. name: "Female",
  24234. image: {
  24235. source: "./media/characters/umok/female.svg",
  24236. extra: 2186 / 2078,
  24237. bottom: 87 / 2277
  24238. }
  24239. },
  24240. male: {
  24241. height: math.unit(19.5, "m"),
  24242. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24243. name: "Male",
  24244. image: {
  24245. source: "./media/characters/umok/male.svg",
  24246. extra: 2233 / 2140,
  24247. bottom: 24.4 / 2258
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Macro",
  24254. height: math.unit(19.3, "meters"),
  24255. default: true
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24261. {
  24262. female: {
  24263. height: math.unit(26.15, "m"),
  24264. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24265. name: "Female",
  24266. image: {
  24267. source: "./media/characters/joraxian/female.svg",
  24268. extra: 2912 / 2824,
  24269. bottom: 36 / 2956
  24270. }
  24271. },
  24272. male: {
  24273. height: math.unit(25.4, "m"),
  24274. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24275. name: "Male",
  24276. image: {
  24277. source: "./media/characters/joraxian/male.svg",
  24278. extra: 2877 / 2721,
  24279. bottom: 82 / 2967
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Macro",
  24286. height: math.unit(26.15, "meters"),
  24287. default: true
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24293. {
  24294. female: {
  24295. height: math.unit(21.6, "m"),
  24296. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24297. name: "Female",
  24298. image: {
  24299. source: "./media/characters/sthara/female.svg",
  24300. extra: 2516 / 2347,
  24301. bottom: 21.5 / 2537
  24302. }
  24303. },
  24304. male: {
  24305. height: math.unit(24, "m"),
  24306. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24307. name: "Male",
  24308. image: {
  24309. source: "./media/characters/sthara/male.svg",
  24310. extra: 2732 / 2607,
  24311. bottom: 23 / 2732
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Macro",
  24318. height: math.unit(21.6, "meters"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(6 + 4 / 12, "feet"),
  24328. weight: math.unit(175, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/luka-bryzant/front.svg",
  24332. extra: 311 / 289,
  24333. bottom: 4 / 315
  24334. }
  24335. },
  24336. back: {
  24337. height: math.unit(6 + 4 / 12, "feet"),
  24338. weight: math.unit(175, "lb"),
  24339. name: "Back",
  24340. image: {
  24341. source: "./media/characters/luka-bryzant/back.svg",
  24342. extra: 311 / 289,
  24343. bottom: 3.8 / 313.7
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Micro",
  24350. height: math.unit(10, "inches")
  24351. },
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(6 + 4 / 12, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "Large",
  24359. height: math.unit(12, "feet")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(5 + 7 / 12, "feet"),
  24368. weight: math.unit(185, "lb"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/aman-aquila/front.svg",
  24372. extra: 1013 / 976,
  24373. bottom: 45.6 / 1057
  24374. }
  24375. },
  24376. side: {
  24377. height: math.unit(5 + 7 / 12, "feet"),
  24378. weight: math.unit(185, "lb"),
  24379. name: "Side",
  24380. image: {
  24381. source: "./media/characters/aman-aquila/side.svg",
  24382. extra: 1054 / 1011,
  24383. bottom: 15 / 1070
  24384. }
  24385. },
  24386. back: {
  24387. height: math.unit(5 + 7 / 12, "feet"),
  24388. weight: math.unit(185, "lb"),
  24389. name: "Back",
  24390. image: {
  24391. source: "./media/characters/aman-aquila/back.svg",
  24392. extra: 1026 / 970,
  24393. bottom: 12 / 1039
  24394. }
  24395. },
  24396. head: {
  24397. height: math.unit(1.211, "feet"),
  24398. name: "Head",
  24399. image: {
  24400. source: "./media/characters/aman-aquila/head.svg",
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Minimicro",
  24407. height: math.unit(0.057, "inches")
  24408. },
  24409. {
  24410. name: "Micro",
  24411. height: math.unit(7, "inches")
  24412. },
  24413. {
  24414. name: "Mini",
  24415. height: math.unit(3 + 7 / 12, "feet")
  24416. },
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(5 + 7 / 12, "feet"),
  24420. default: true
  24421. },
  24422. {
  24423. name: "Macro",
  24424. height: math.unit(157 + 7 / 12, "feet")
  24425. },
  24426. {
  24427. name: "Megamacro",
  24428. height: math.unit(1557 + 7 / 12, "feet")
  24429. },
  24430. {
  24431. name: "Gigamacro",
  24432. height: math.unit(15557 + 7 / 12, "feet")
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(3 + 2 / 12, "inches"),
  24441. weight: math.unit(0.3, "ounces"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/hiphae/front.svg",
  24445. extra: 1931 / 1683,
  24446. bottom: 24 / 1955
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(3 + 1 / 2, "inches"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(5 + 10 / 12, "feet"),
  24463. weight: math.unit(165, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/nicky/front.svg",
  24467. extra: 3144 / 2886,
  24468. bottom: 45.6 / 3192
  24469. }
  24470. },
  24471. back: {
  24472. height: math.unit(5 + 10 / 12, "feet"),
  24473. weight: math.unit(165, "lb"),
  24474. name: "Back",
  24475. image: {
  24476. source: "./media/characters/nicky/back.svg",
  24477. extra: 3055 / 2804,
  24478. bottom: 28.4 / 3087
  24479. }
  24480. },
  24481. frontclothed: {
  24482. height: math.unit(5 + 10 / 12, "feet"),
  24483. weight: math.unit(165, "lb"),
  24484. name: "Front-clothed",
  24485. image: {
  24486. source: "./media/characters/nicky/front-clothed.svg",
  24487. extra: 3184.9 / 2926.9,
  24488. bottom: 86.5 / 3239.9
  24489. }
  24490. },
  24491. foot: {
  24492. height: math.unit(1.16, "feet"),
  24493. name: "Foot",
  24494. image: {
  24495. source: "./media/characters/nicky/foot.svg"
  24496. }
  24497. },
  24498. feet: {
  24499. height: math.unit(1.34, "feet"),
  24500. name: "Feet",
  24501. image: {
  24502. source: "./media/characters/nicky/feet.svg"
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(0.9, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/nicky/maw.svg"
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Normal",
  24516. height: math.unit(5 + 10 / 12, "feet"),
  24517. default: true
  24518. },
  24519. {
  24520. name: "Macro",
  24521. height: math.unit(60, "feet")
  24522. },
  24523. {
  24524. name: "Megamacro",
  24525. height: math.unit(1, "mile")
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24531. {
  24532. side: {
  24533. height: math.unit(10, "feet"),
  24534. weight: math.unit(600, "lb"),
  24535. name: "Side",
  24536. image: {
  24537. source: "./media/characters/blair/side.svg",
  24538. bottom: 16.6 / 475,
  24539. extra: 458 / 431
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Micro",
  24546. height: math.unit(8, "inches")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(10, "feet"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(180, "feet")
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(5 + 4 / 12, "feet"),
  24564. weight: math.unit(125, "lb"),
  24565. name: "Front",
  24566. image: {
  24567. source: "./media/characters/fisher/front.svg",
  24568. extra: 444 / 390,
  24569. bottom: 2 / 444.8
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Micro",
  24576. height: math.unit(4, "inches")
  24577. },
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(5 + 4 / 12, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Macro",
  24585. height: math.unit(100, "feet")
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(6.71, "feet"),
  24594. weight: math.unit(200, "lb"),
  24595. capacity: math.unit(1000000, "people"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/gliss/front.svg",
  24599. extra: 2347 / 2231,
  24600. bottom: 113 / 2462
  24601. }
  24602. },
  24603. hammerspaceSize: {
  24604. height: math.unit(6.71 * 717, "feet"),
  24605. weight: math.unit(200, "lb"),
  24606. capacity: math.unit(1000000, "people"),
  24607. name: "Hammerspace Size",
  24608. image: {
  24609. source: "./media/characters/gliss/front.svg",
  24610. extra: 2347 / 2231,
  24611. bottom: 113 / 2462
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(6.71, "feet"),
  24619. default: true
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24625. {
  24626. side: {
  24627. height: math.unit(1.44, "m"),
  24628. weight: math.unit(80, "kg"),
  24629. name: "Side",
  24630. image: {
  24631. source: "./media/characters/dune-anderson/side.svg",
  24632. bottom: 49 / 1426
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Wolf-sized",
  24639. height: math.unit(1.44, "meters")
  24640. },
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(5.05, "meters"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Big",
  24648. height: math.unit(14.4, "meters")
  24649. },
  24650. {
  24651. name: "Huge",
  24652. height: math.unit(144, "meters")
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(7, "feet"),
  24661. weight: math.unit(425, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/hind/front.svg",
  24665. extra: 2091 / 1860,
  24666. bottom: 129 / 2220
  24667. }
  24668. },
  24669. back: {
  24670. height: math.unit(7, "feet"),
  24671. weight: math.unit(425, "lb"),
  24672. name: "Back",
  24673. image: {
  24674. source: "./media/characters/hind/back.svg",
  24675. extra: 2091 / 1860,
  24676. bottom: 24.6 / 2309
  24677. }
  24678. },
  24679. tail: {
  24680. height: math.unit(2.8, "feet"),
  24681. name: "Tail",
  24682. image: {
  24683. source: "./media/characters/hind/tail.svg"
  24684. }
  24685. },
  24686. head: {
  24687. height: math.unit(2.55, "feet"),
  24688. name: "Head",
  24689. image: {
  24690. source: "./media/characters/hind/head.svg"
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "XS",
  24697. height: math.unit(0.7, "feet")
  24698. },
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(7, "feet"),
  24702. default: true
  24703. },
  24704. {
  24705. name: "XL",
  24706. height: math.unit(70, "feet")
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(6, "feet"),
  24715. weight: math.unit(150, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/dylan-skaven/front.svg",
  24719. extra: 2318 / 2063,
  24720. bottom: 93.4 / 2410
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Nano",
  24727. height: math.unit(1, "mm")
  24728. },
  24729. {
  24730. name: "Micro",
  24731. height: math.unit(1, "cm")
  24732. },
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(2.1, "meters"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(7 + 5 / 12, "feet"),
  24745. weight: math.unit(357, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/solex-draconov/front.svg",
  24749. extra: 1993 / 1865,
  24750. bottom: 117 / 2111
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Natural Height",
  24757. height: math.unit(7 + 5 / 12, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Macro",
  24762. height: math.unit(350, "feet")
  24763. },
  24764. {
  24765. name: "Macro+",
  24766. height: math.unit(1000, "feet")
  24767. },
  24768. {
  24769. name: "Megamacro",
  24770. height: math.unit(20, "km")
  24771. },
  24772. {
  24773. name: "Megamacro+",
  24774. height: math.unit(1000, "km")
  24775. },
  24776. {
  24777. name: "Gigamacro",
  24778. height: math.unit(2.5, "Gm")
  24779. },
  24780. {
  24781. name: "Teramacro",
  24782. height: math.unit(15, "Tm")
  24783. },
  24784. {
  24785. name: "Galactic",
  24786. height: math.unit(30, "Zm")
  24787. },
  24788. {
  24789. name: "Universal",
  24790. height: math.unit(21000, "Ym")
  24791. },
  24792. {
  24793. name: "Omniversal",
  24794. height: math.unit(9.861e50, "Ym")
  24795. },
  24796. {
  24797. name: "Existential",
  24798. height: math.unit(1e300, "meters")
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24804. {
  24805. side: {
  24806. height: math.unit(25, "feet"),
  24807. weight: math.unit(90000, "lb"),
  24808. name: "Side",
  24809. image: {
  24810. source: "./media/characters/mandarax/side.svg",
  24811. extra: 614 / 332,
  24812. bottom: 55 / 630
  24813. }
  24814. },
  24815. head: {
  24816. height: math.unit(11.4, "feet"),
  24817. name: "Head",
  24818. image: {
  24819. source: "./media/characters/mandarax/head.svg"
  24820. }
  24821. },
  24822. belly: {
  24823. height: math.unit(33, "feet"),
  24824. name: "Belly",
  24825. capacity: math.unit(500, "people"),
  24826. image: {
  24827. source: "./media/characters/mandarax/belly.svg"
  24828. }
  24829. },
  24830. dick: {
  24831. height: math.unit(8.46, "feet"),
  24832. name: "Dick",
  24833. image: {
  24834. source: "./media/characters/mandarax/dick.svg"
  24835. }
  24836. },
  24837. top: {
  24838. height: math.unit(28, "meters"),
  24839. name: "Top",
  24840. image: {
  24841. source: "./media/characters/mandarax/top.svg"
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(25, "feet"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(5, "feet"),
  24858. weight: math.unit(90, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/pixil/front.svg",
  24862. extra: 2000 / 1618,
  24863. bottom: 12.3 / 2011
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(5, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Megamacro",
  24875. height: math.unit(10, "miles"),
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(7 + 2 / 12, "feet"),
  24884. weight: math.unit(200, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/angel/front.svg",
  24888. extra: 1830 / 1737,
  24889. bottom: 22.6 / 1854,
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(7 + 2 / 12, "feet"),
  24897. default: true
  24898. },
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(1000, "feet")
  24902. },
  24903. {
  24904. name: "Megamacro",
  24905. height: math.unit(2, "miles")
  24906. },
  24907. {
  24908. name: "Gigamacro",
  24909. height: math.unit(20, "earths")
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(5, "feet"),
  24918. weight: math.unit(180, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/mekana/front.svg",
  24922. extra: 1671 / 1605,
  24923. bottom: 3.5 / 1691
  24924. }
  24925. },
  24926. side: {
  24927. height: math.unit(5, "feet"),
  24928. weight: math.unit(180, "lb"),
  24929. name: "Side",
  24930. image: {
  24931. source: "./media/characters/mekana/side.svg",
  24932. extra: 1671 / 1605,
  24933. bottom: 3.5 / 1691
  24934. }
  24935. },
  24936. back: {
  24937. height: math.unit(5, "feet"),
  24938. weight: math.unit(180, "lb"),
  24939. name: "Back",
  24940. image: {
  24941. source: "./media/characters/mekana/back.svg",
  24942. extra: 1671 / 1605,
  24943. bottom: 3.5 / 1691
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(5, "feet"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(4 + 6 / 12, "feet"),
  24960. weight: math.unit(80, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/pixie/front.svg",
  24964. extra: 1924 / 1825,
  24965. bottom: 22.4 / 1946
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(4 + 6 / 12, "feet"),
  24973. default: true
  24974. },
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(40, "feet")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(2.1, "meters"),
  24986. weight: math.unit(200, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/the-lascivious/front.svg",
  24990. extra: 1 / 0.893,
  24991. bottom: 3.5 / 573.7
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Human Scale",
  24998. height: math.unit(2.1, "meters")
  24999. },
  25000. {
  25001. name: "Wolxi Scale",
  25002. height: math.unit(46.2, "m"),
  25003. default: true
  25004. },
  25005. {
  25006. name: "Boinker of Buildings",
  25007. height: math.unit(10, "km")
  25008. },
  25009. {
  25010. name: "Shagger of Skyscrapers",
  25011. height: math.unit(40, "km")
  25012. },
  25013. {
  25014. name: "Banger of Boroughs",
  25015. height: math.unit(4000, "km")
  25016. },
  25017. {
  25018. name: "Screwer of States",
  25019. height: math.unit(100000, "km")
  25020. },
  25021. {
  25022. name: "Pounder of Planets",
  25023. height: math.unit(2000000, "km")
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25029. {
  25030. front: {
  25031. height: math.unit(6, "feet"),
  25032. weight: math.unit(150, "lb"),
  25033. name: "Front",
  25034. image: {
  25035. source: "./media/characters/aj/front.svg",
  25036. extra: 2039 / 1562,
  25037. bottom: 40 / 2079
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(11 + 6 / 12, "feet"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Megamacro",
  25049. height: math.unit(60, "megameters")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25055. {
  25056. side: {
  25057. height: math.unit(31 + 8 / 12, "feet"),
  25058. weight: math.unit(75000, "kg"),
  25059. name: "Side",
  25060. image: {
  25061. source: "./media/characters/koros/side.svg",
  25062. extra: 1442 / 1297,
  25063. bottom: 122.7 / 1562
  25064. }
  25065. },
  25066. dicksKingsCrown: {
  25067. height: math.unit(6, "feet"),
  25068. name: "Dicks (King's Crown)",
  25069. image: {
  25070. source: "./media/characters/koros/dicks-kings-crown.svg"
  25071. }
  25072. },
  25073. dicksTailSet: {
  25074. height: math.unit(3, "feet"),
  25075. name: "Dicks (Tail Set)",
  25076. image: {
  25077. source: "./media/characters/koros/dicks-tail-set.svg"
  25078. }
  25079. },
  25080. dickCumming: {
  25081. height: math.unit(7.98, "feet"),
  25082. name: "Dick (Cumming)",
  25083. image: {
  25084. source: "./media/characters/koros/dick-cumming.svg"
  25085. }
  25086. },
  25087. dicksBack: {
  25088. height: math.unit(5.9, "feet"),
  25089. name: "Dicks (Back)",
  25090. image: {
  25091. source: "./media/characters/koros/dicks-back.svg"
  25092. }
  25093. },
  25094. dicksFront: {
  25095. height: math.unit(3.72, "feet"),
  25096. name: "Dicks (Front)",
  25097. image: {
  25098. source: "./media/characters/koros/dicks-front.svg"
  25099. }
  25100. },
  25101. dicksPeeking: {
  25102. height: math.unit(3.0, "feet"),
  25103. name: "Dicks (Peeking)",
  25104. image: {
  25105. source: "./media/characters/koros/dicks-peeking.svg"
  25106. }
  25107. },
  25108. eye: {
  25109. height: math.unit(1.7, "feet"),
  25110. name: "Eye",
  25111. image: {
  25112. source: "./media/characters/koros/eye.svg"
  25113. }
  25114. },
  25115. headFront: {
  25116. height: math.unit(11.69, "feet"),
  25117. name: "Head (Front)",
  25118. image: {
  25119. source: "./media/characters/koros/head-front.svg"
  25120. }
  25121. },
  25122. headSide: {
  25123. height: math.unit(14, "feet"),
  25124. name: "Head (Side)",
  25125. image: {
  25126. source: "./media/characters/koros/head-side.svg"
  25127. }
  25128. },
  25129. leg: {
  25130. height: math.unit(17, "feet"),
  25131. name: "Leg",
  25132. image: {
  25133. source: "./media/characters/koros/leg.svg"
  25134. }
  25135. },
  25136. mawSide: {
  25137. height: math.unit(12.8, "feet"),
  25138. name: "Maw (Side)",
  25139. image: {
  25140. source: "./media/characters/koros/maw-side.svg"
  25141. }
  25142. },
  25143. mawSpitting: {
  25144. height: math.unit(17, "feet"),
  25145. name: "Maw (Spitting)",
  25146. image: {
  25147. source: "./media/characters/koros/maw-spitting.svg"
  25148. }
  25149. },
  25150. slit: {
  25151. height: math.unit(2.8, "feet"),
  25152. name: "Slit",
  25153. image: {
  25154. source: "./media/characters/koros/slit.svg"
  25155. }
  25156. },
  25157. stomach: {
  25158. height: math.unit(6.8, "feet"),
  25159. capacity: math.unit(20, "people"),
  25160. name: "Stomach",
  25161. image: {
  25162. source: "./media/characters/koros/stomach.svg"
  25163. }
  25164. },
  25165. wingspanBottom: {
  25166. height: math.unit(114, "feet"),
  25167. name: "Wingspan (Bottom)",
  25168. image: {
  25169. source: "./media/characters/koros/wingspan-bottom.svg"
  25170. }
  25171. },
  25172. wingspanTop: {
  25173. height: math.unit(104, "feet"),
  25174. name: "Wingspan (Top)",
  25175. image: {
  25176. source: "./media/characters/koros/wingspan-top.svg"
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(31 + 8 / 12, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25190. {
  25191. front: {
  25192. height: math.unit(18 + 5 / 12, "feet"),
  25193. weight: math.unit(3750, "kg"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/vexx/front.svg",
  25197. extra: 426 / 396,
  25198. bottom: 31.5 / 458
  25199. }
  25200. },
  25201. maw: {
  25202. height: math.unit(6, "feet"),
  25203. name: "Maw",
  25204. image: {
  25205. source: "./media/characters/vexx/maw.svg"
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(18 + 5 / 12, "feet"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(17 + 6 / 12, "feet"),
  25222. weight: math.unit(150, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/baadra/front.svg",
  25226. extra: 3137 / 2890,
  25227. bottom: 168.4 / 3305
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(17 + 6 / 12, "feet"),
  25232. weight: math.unit(150, "lb"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/baadra/back.svg",
  25236. extra: 3142 / 2890,
  25237. bottom: 220 / 3371
  25238. }
  25239. },
  25240. head: {
  25241. height: math.unit(5.45, "feet"),
  25242. name: "Head",
  25243. image: {
  25244. source: "./media/characters/baadra/head.svg"
  25245. }
  25246. },
  25247. headAngry: {
  25248. height: math.unit(4.95, "feet"),
  25249. name: "Head (Angry)",
  25250. image: {
  25251. source: "./media/characters/baadra/head-angry.svg"
  25252. }
  25253. },
  25254. headOpen: {
  25255. height: math.unit(6, "feet"),
  25256. name: "Head (Open)",
  25257. image: {
  25258. source: "./media/characters/baadra/head-open.svg"
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(17 + 6 / 12, "feet"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(7 + 3 / 12, "feet"),
  25275. weight: math.unit(180, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/juri/front.svg",
  25279. extra: 1401 / 1237,
  25280. bottom: 18.5 / 1418
  25281. }
  25282. },
  25283. side: {
  25284. height: math.unit(7 + 3 / 12, "feet"),
  25285. weight: math.unit(180, "lb"),
  25286. name: "Side",
  25287. image: {
  25288. source: "./media/characters/juri/side.svg",
  25289. extra: 1424 / 1242,
  25290. bottom: 18.5 / 1447
  25291. }
  25292. },
  25293. sitting: {
  25294. height: math.unit(6, "feet"),
  25295. weight: math.unit(180, "lb"),
  25296. name: "Sitting",
  25297. image: {
  25298. source: "./media/characters/juri/sitting.svg",
  25299. extra: 1270 / 1143,
  25300. bottom: 100 / 1343
  25301. }
  25302. },
  25303. back: {
  25304. height: math.unit(7 + 3 / 12, "feet"),
  25305. weight: math.unit(180, "lb"),
  25306. name: "Back",
  25307. image: {
  25308. source: "./media/characters/juri/back.svg",
  25309. extra: 1377 / 1240,
  25310. bottom: 23.7 / 1405
  25311. }
  25312. },
  25313. maw: {
  25314. height: math.unit(2.8, "feet"),
  25315. name: "Maw",
  25316. image: {
  25317. source: "./media/characters/juri/maw.svg"
  25318. }
  25319. },
  25320. stomach: {
  25321. height: math.unit(0.89, "feet"),
  25322. capacity: math.unit(4, "liters"),
  25323. name: "Stomach",
  25324. image: {
  25325. source: "./media/characters/juri/stomach.svg"
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(7 + 3 / 12, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25339. {
  25340. fox: {
  25341. height: math.unit(5 + 6 / 12, "feet"),
  25342. weight: math.unit(140, "lb"),
  25343. name: "Fox",
  25344. image: {
  25345. source: "./media/characters/maxene-sita/fox.svg",
  25346. extra: 146 / 138,
  25347. bottom: 2.1 / 148.19
  25348. }
  25349. },
  25350. foxLaying: {
  25351. height: math.unit(1.70, "feet"),
  25352. weight: math.unit(140, "lb"),
  25353. name: "Fox (Laying)",
  25354. image: {
  25355. source: "./media/characters/maxene-sita/fox-laying.svg",
  25356. extra: 910 / 572,
  25357. bottom: 71 / 981
  25358. }
  25359. },
  25360. kitsune: {
  25361. height: math.unit(10, "feet"),
  25362. weight: math.unit(800, "lb"),
  25363. name: "Kitsune",
  25364. image: {
  25365. source: "./media/characters/maxene-sita/kitsune.svg",
  25366. extra: 185 / 176,
  25367. bottom: 4.7 / 189.9
  25368. }
  25369. },
  25370. hellhound: {
  25371. height: math.unit(10, "feet"),
  25372. weight: math.unit(700, "lb"),
  25373. name: "Hellhound",
  25374. image: {
  25375. source: "./media/characters/maxene-sita/hellhound.svg",
  25376. extra: 1600 / 1545,
  25377. bottom: 81 / 1681
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(5 + 6 / 12, "feet"),
  25385. default: true
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25391. {
  25392. front: {
  25393. height: math.unit(3 + 4 / 12, "feet"),
  25394. weight: math.unit(70, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/maia/front.svg",
  25398. extra: 227 / 219.5,
  25399. bottom: 40 / 267
  25400. }
  25401. },
  25402. back: {
  25403. height: math.unit(3 + 4 / 12, "feet"),
  25404. weight: math.unit(70, "lb"),
  25405. name: "Back",
  25406. image: {
  25407. source: "./media/characters/maia/back.svg",
  25408. extra: 237 / 225
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(3 + 4 / 12, "feet"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(5 + 10 / 12, "feet"),
  25425. weight: math.unit(197, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/jabaro/front.svg",
  25429. extra: 225 / 216,
  25430. bottom: 5.06 / 230
  25431. }
  25432. },
  25433. back: {
  25434. height: math.unit(5 + 10 / 12, "feet"),
  25435. weight: math.unit(197, "lb"),
  25436. name: "Back",
  25437. image: {
  25438. source: "./media/characters/jabaro/back.svg",
  25439. extra: 225 / 219,
  25440. bottom: 1.9 / 227
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Normal",
  25447. height: math.unit(5 + 10 / 12, "feet"),
  25448. default: true
  25449. },
  25450. ]
  25451. ))
  25452. characterMakers.push(() => makeCharacter(
  25453. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25454. {
  25455. front: {
  25456. height: math.unit(5 + 8 / 12, "feet"),
  25457. weight: math.unit(139, "lb"),
  25458. name: "Front",
  25459. image: {
  25460. source: "./media/characters/risa/front.svg",
  25461. extra: 270 / 260,
  25462. bottom: 11.2 / 282
  25463. }
  25464. },
  25465. back: {
  25466. height: math.unit(5 + 8 / 12, "feet"),
  25467. weight: math.unit(139, "lb"),
  25468. name: "Back",
  25469. image: {
  25470. source: "./media/characters/risa/back.svg",
  25471. extra: 264 / 255,
  25472. bottom: 4 / 268
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(5 + 8 / 12, "feet"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(2 + 11 / 12, "feet"),
  25489. weight: math.unit(30, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/weatley/front.svg",
  25493. bottom: 10.7 / 414,
  25494. extra: 403.5 / 362
  25495. }
  25496. },
  25497. back: {
  25498. height: math.unit(2 + 11 / 12, "feet"),
  25499. weight: math.unit(30, "lb"),
  25500. name: "Back",
  25501. image: {
  25502. source: "./media/characters/weatley/back.svg",
  25503. bottom: 10.7 / 414,
  25504. extra: 403.5 / 362
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(2 + 11 / 12, "feet"),
  25512. default: true
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25518. {
  25519. front: {
  25520. height: math.unit(5 + 2 / 12, "feet"),
  25521. weight: math.unit(50, "kg"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/mercury-crescent/front.svg",
  25525. extra: 1088 / 1033,
  25526. bottom: 18.9 / 1109
  25527. }
  25528. },
  25529. },
  25530. [
  25531. {
  25532. name: "Normal",
  25533. height: math.unit(5 + 2 / 12, "feet"),
  25534. default: true
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(2, "feet"),
  25543. weight: math.unit(15, "kg"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/diamond-jones/front.svg",
  25547. extra: 727/723,
  25548. bottom: 46/773
  25549. }
  25550. },
  25551. },
  25552. [
  25553. {
  25554. name: "Normal",
  25555. height: math.unit(2, "feet"),
  25556. default: true
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(3, "feet"),
  25565. weight: math.unit(30, "kg"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/sweet-bit/front.svg",
  25569. extra: 675 / 567,
  25570. bottom: 27.7 / 703
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(3, "feet"),
  25578. default: true
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25584. {
  25585. side: {
  25586. height: math.unit(9.178, "feet"),
  25587. weight: math.unit(500, "lb"),
  25588. name: "Side",
  25589. image: {
  25590. source: "./media/characters/umbrazen/side.svg",
  25591. extra: 1730 / 1473,
  25592. bottom: 34.6 / 1765
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Normal",
  25599. height: math.unit(9.178, "feet"),
  25600. default: true
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(10, "feet"),
  25609. weight: math.unit(750, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/arlist/front.svg",
  25613. extra: 961 / 778,
  25614. bottom: 6.2 / 986
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(10, "feet"),
  25622. default: true
  25623. },
  25624. ]
  25625. ))
  25626. characterMakers.push(() => makeCharacter(
  25627. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25628. {
  25629. front: {
  25630. height: math.unit(5 + 1 / 12, "feet"),
  25631. weight: math.unit(110, "lb"),
  25632. name: "Front",
  25633. image: {
  25634. source: "./media/characters/aradel/front.svg",
  25635. extra: 324 / 303,
  25636. bottom: 3.6 / 329.4
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(5 + 1 / 12, "feet"),
  25644. default: true
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25650. {
  25651. front: {
  25652. height: math.unit(3 + 8 / 12, "feet"),
  25653. weight: math.unit(50, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/serryn/front.svg",
  25657. extra: 1792 / 1656,
  25658. bottom: 43.5 / 1840
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(3 + 8 / 12, "feet"),
  25666. default: true
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(7 + 10 / 12, "feet"),
  25675. weight: math.unit(255, "lb"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/xavier-thyme/front.svg",
  25679. extra: 3733 / 3642,
  25680. bottom: 131 / 3869
  25681. }
  25682. },
  25683. frontRaven: {
  25684. height: math.unit(7 + 10 / 12, "feet"),
  25685. weight: math.unit(255, "lb"),
  25686. name: "Front (Raven)",
  25687. image: {
  25688. source: "./media/characters/xavier-thyme/front-raven.svg",
  25689. extra: 4385 / 3642,
  25690. bottom: 131 / 4517
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(7 + 10 / 12, "feet"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(1.6, "m"),
  25707. weight: math.unit(50, "kg"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/kiki/front.svg",
  25711. extra: 4682 / 3610,
  25712. bottom: 115 / 4777
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Normal",
  25719. height: math.unit(1.6, "meters"),
  25720. default: true
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(50, "m"),
  25729. weight: math.unit(500, "tonnes"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/ryoko/front.svg",
  25733. extra: 4632 / 3926,
  25734. bottom: 193 / 4823
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(50, "meters"),
  25742. default: true
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(30, "m"),
  25751. weight: math.unit(22, "tonnes"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/elio/front.svg",
  25755. extra: 4582 / 3720,
  25756. bottom: 236 / 4828
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(30, "meters"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(6 + 3 / 12, "feet"),
  25773. weight: math.unit(120, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/azura/front.svg",
  25777. extra: 1149 / 1135,
  25778. bottom: 45 / 1194
  25779. }
  25780. },
  25781. frontClothed: {
  25782. height: math.unit(6 + 3 / 12, "feet"),
  25783. weight: math.unit(120, "lb"),
  25784. name: "Front (Clothed)",
  25785. image: {
  25786. source: "./media/characters/azura/front-clothed.svg",
  25787. extra: 1149 / 1135,
  25788. bottom: 45 / 1194
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(6 + 3 / 12, "feet"),
  25796. default: true
  25797. },
  25798. {
  25799. name: "Macro",
  25800. height: math.unit(20 + 6 / 12, "feet")
  25801. },
  25802. {
  25803. name: "Megamacro",
  25804. height: math.unit(12, "miles")
  25805. },
  25806. {
  25807. name: "Gigamacro",
  25808. height: math.unit(10000, "miles")
  25809. },
  25810. {
  25811. name: "Teramacro",
  25812. height: math.unit(900000, "miles")
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(12, "feet"),
  25821. weight: math.unit(1, "ton"),
  25822. capacity: math.unit(660000, "gallons"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/zeus/front.svg",
  25826. extra: 5005 / 4717,
  25827. bottom: 363 / 5388
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(12, "feet")
  25835. },
  25836. {
  25837. name: "Preferred Size",
  25838. height: math.unit(0.5, "miles"),
  25839. default: true
  25840. },
  25841. {
  25842. name: "Giga Horse",
  25843. height: math.unit(300, "miles")
  25844. },
  25845. {
  25846. name: "Riding Planets",
  25847. height: math.unit(30, "megameters")
  25848. },
  25849. {
  25850. name: "Cosmic Giant",
  25851. height: math.unit(3, "zettameters")
  25852. },
  25853. {
  25854. name: "Breeding God",
  25855. height: math.unit(9.92e22, "yottameters")
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25861. {
  25862. side: {
  25863. height: math.unit(9, "feet"),
  25864. weight: math.unit(1500, "kg"),
  25865. name: "Side",
  25866. image: {
  25867. source: "./media/characters/fang/side.svg",
  25868. extra: 924 / 866,
  25869. bottom: 47.5 / 972.3
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(9, "feet"),
  25877. default: true
  25878. },
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(75 + 6 / 12, "feet")
  25882. },
  25883. {
  25884. name: "Teramacro",
  25885. height: math.unit(50000, "miles")
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(10, "feet"),
  25894. weight: math.unit(2, "tons"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/rekhit/front.svg",
  25898. extra: 2796 / 2590,
  25899. bottom: 225 / 3022
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(10, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(500, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(7 + 6.451 / 12, "feet"),
  25920. weight: math.unit(310, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/dahlia-verrick/front.svg",
  25924. extra: 1488 / 1365,
  25925. bottom: 6.2 / 1495
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(7 + 6.451 / 12, "feet"),
  25930. weight: math.unit(310, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/dahlia-verrick/back.svg",
  25934. extra: 1472 / 1351,
  25935. bottom: 5.28 / 1477
  25936. }
  25937. },
  25938. frontBusiness: {
  25939. height: math.unit(7 + 6.451 / 12, "feet"),
  25940. weight: math.unit(200, "lb"),
  25941. name: "Front (Business)",
  25942. image: {
  25943. source: "./media/characters/dahlia-verrick/front-business.svg",
  25944. extra: 1478 / 1381,
  25945. bottom: 5.5 / 1484
  25946. }
  25947. },
  25948. frontCasual: {
  25949. height: math.unit(7 + 6.451 / 12, "feet"),
  25950. weight: math.unit(200, "lb"),
  25951. name: "Front (Casual)",
  25952. image: {
  25953. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25954. extra: 1478 / 1381,
  25955. bottom: 5.5 / 1484
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Travel-Sized",
  25962. height: math.unit(7.45, "inches")
  25963. },
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(7 + 6.451 / 12, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Hitting the Town",
  25971. height: math.unit(37 + 8 / 12, "feet")
  25972. },
  25973. {
  25974. name: "Stomp in the Suburbs",
  25975. height: math.unit(964 + 9.728 / 12, "feet")
  25976. },
  25977. {
  25978. name: "Sit on the City",
  25979. height: math.unit(61747 + 10.592 / 12, "feet")
  25980. },
  25981. {
  25982. name: "Glomp the Globe",
  25983. height: math.unit(252919327 + 4.832 / 12, "feet")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6 + 4 / 12, "feet"),
  25992. weight: math.unit(320, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/balina-mahigan/front.svg",
  25996. extra: 447 / 428,
  25997. bottom: 18 / 466
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(6 + 4 / 12, "feet"),
  26002. weight: math.unit(320, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/balina-mahigan/back.svg",
  26006. extra: 445 / 428,
  26007. bottom: 4.07 / 448
  26008. }
  26009. },
  26010. arm: {
  26011. height: math.unit(1.88, "feet"),
  26012. name: "Arm",
  26013. image: {
  26014. source: "./media/characters/balina-mahigan/arm.svg"
  26015. }
  26016. },
  26017. backPort: {
  26018. height: math.unit(0.685, "feet"),
  26019. name: "Back Port",
  26020. image: {
  26021. source: "./media/characters/balina-mahigan/back-port.svg"
  26022. }
  26023. },
  26024. hoofpaw: {
  26025. height: math.unit(1.41, "feet"),
  26026. name: "Hoofpaw",
  26027. image: {
  26028. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26029. }
  26030. },
  26031. leftHandBack: {
  26032. height: math.unit(0.938, "feet"),
  26033. name: "Left Hand (Back)",
  26034. image: {
  26035. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26036. }
  26037. },
  26038. leftHandFront: {
  26039. height: math.unit(0.938, "feet"),
  26040. name: "Left Hand (Front)",
  26041. image: {
  26042. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26043. }
  26044. },
  26045. rightHandBack: {
  26046. height: math.unit(0.95, "feet"),
  26047. name: "Right Hand (Back)",
  26048. image: {
  26049. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26050. }
  26051. },
  26052. rightHandFront: {
  26053. height: math.unit(0.95, "feet"),
  26054. name: "Right Hand (Front)",
  26055. image: {
  26056. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(6 + 4 / 12, "feet"),
  26064. default: true
  26065. },
  26066. ]
  26067. ))
  26068. characterMakers.push(() => makeCharacter(
  26069. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26070. {
  26071. front: {
  26072. height: math.unit(6, "feet"),
  26073. weight: math.unit(320, "lb"),
  26074. name: "Front",
  26075. image: {
  26076. source: "./media/characters/balina-mejeri/front.svg",
  26077. extra: 517 / 488,
  26078. bottom: 44.2 / 561
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Normal",
  26085. height: math.unit(6 + 4 / 12, "feet")
  26086. },
  26087. {
  26088. name: "Business",
  26089. height: math.unit(155, "feet"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26096. {
  26097. kneeling: {
  26098. height: math.unit(6 + 4 / 12, "feet"),
  26099. weight: math.unit(300 * 20, "lb"),
  26100. name: "Kneeling",
  26101. image: {
  26102. source: "./media/characters/balbarian/kneeling.svg",
  26103. extra: 922 / 862,
  26104. bottom: 42.4 / 965
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(6 + 4 / 12, "feet")
  26112. },
  26113. {
  26114. name: "Treasured",
  26115. height: math.unit(18 + 9 / 12, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(900, "feet")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(6 + 4 / 12, "feet"),
  26129. weight: math.unit(325, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/balina-amarini/front.svg",
  26133. extra: 415 / 403,
  26134. bottom: 19 / 433.4
  26135. }
  26136. },
  26137. back: {
  26138. height: math.unit(6 + 4 / 12, "feet"),
  26139. weight: math.unit(325, "lb"),
  26140. name: "Back",
  26141. image: {
  26142. source: "./media/characters/balina-amarini/back.svg",
  26143. extra: 415 / 403,
  26144. bottom: 13.5 / 432
  26145. }
  26146. },
  26147. overdrive: {
  26148. height: math.unit(6 + 4 / 12, "feet"),
  26149. weight: math.unit(400, "lb"),
  26150. name: "Overdrive",
  26151. image: {
  26152. source: "./media/characters/balina-amarini/overdrive.svg",
  26153. extra: 269 / 259,
  26154. bottom: 12 / 282
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Boom",
  26161. height: math.unit(9 + 10 / 12, "feet"),
  26162. default: true
  26163. },
  26164. {
  26165. name: "Macro",
  26166. height: math.unit(280, "feet")
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26172. {
  26173. goddess: {
  26174. height: math.unit(600, "feet"),
  26175. weight: math.unit(2000000, "tons"),
  26176. name: "Goddess",
  26177. image: {
  26178. source: "./media/characters/lady-kubwa/goddess.svg",
  26179. extra: 1240.5 / 1223,
  26180. bottom: 22 / 1263
  26181. }
  26182. },
  26183. goddesser: {
  26184. height: math.unit(900, "feet"),
  26185. weight: math.unit(20000000, "lb"),
  26186. name: "Goddess-er",
  26187. image: {
  26188. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26189. extra: 899 / 888,
  26190. bottom: 12.6 / 912
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(600, "feet"),
  26198. default: true
  26199. },
  26200. {
  26201. name: "Megamacro",
  26202. height: math.unit(250, "miles")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(7 + 7 / 12, "feet"),
  26211. weight: math.unit(250, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/tala-grovehorn/front.svg",
  26215. extra: 2636 / 2525,
  26216. bottom: 147 / 2781
  26217. }
  26218. },
  26219. back: {
  26220. height: math.unit(7 + 7 / 12, "feet"),
  26221. weight: math.unit(250, "lb"),
  26222. name: "Back",
  26223. image: {
  26224. source: "./media/characters/tala-grovehorn/back.svg",
  26225. extra: 2635 / 2539,
  26226. bottom: 100 / 2732.8
  26227. }
  26228. },
  26229. mouth: {
  26230. height: math.unit(1.15, "feet"),
  26231. name: "Mouth",
  26232. image: {
  26233. source: "./media/characters/tala-grovehorn/mouth.svg"
  26234. }
  26235. },
  26236. dick: {
  26237. height: math.unit(2.36, "feet"),
  26238. name: "Dick",
  26239. image: {
  26240. source: "./media/characters/tala-grovehorn/dick.svg"
  26241. }
  26242. },
  26243. slit: {
  26244. height: math.unit(0.61, "feet"),
  26245. name: "Slit",
  26246. image: {
  26247. source: "./media/characters/tala-grovehorn/slit.svg"
  26248. }
  26249. },
  26250. },
  26251. [
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(7 + 7 / 12, "feet"),
  26259. weight: math.unit(225, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/epona/front.svg",
  26263. extra: 2445 / 2290,
  26264. bottom: 251 / 2696
  26265. }
  26266. },
  26267. back: {
  26268. height: math.unit(7 + 7 / 12, "feet"),
  26269. weight: math.unit(225, "lb"),
  26270. name: "Back",
  26271. image: {
  26272. source: "./media/characters/epona/back.svg",
  26273. extra: 2546 / 2408,
  26274. bottom: 44 / 2589
  26275. }
  26276. },
  26277. genitals: {
  26278. height: math.unit(1.5, "feet"),
  26279. name: "Genitals",
  26280. image: {
  26281. source: "./media/characters/epona/genitals.svg"
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(7 + 7 / 12, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(7, "feet"),
  26298. weight: math.unit(518, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/avia-bloodbourn/front.svg",
  26302. extra: 1466 / 1350,
  26303. bottom: 65 / 1527
  26304. }
  26305. },
  26306. },
  26307. [
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(9.35, "feet"),
  26315. weight: math.unit(600, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/amera/front.svg",
  26319. extra: 891 / 818,
  26320. bottom: 30 / 922.7
  26321. }
  26322. },
  26323. back: {
  26324. height: math.unit(9.35, "feet"),
  26325. weight: math.unit(600, "lb"),
  26326. name: "Back",
  26327. image: {
  26328. source: "./media/characters/amera/back.svg",
  26329. extra: 876 / 824,
  26330. bottom: 6.8 / 884
  26331. }
  26332. },
  26333. dick: {
  26334. height: math.unit(2.14, "feet"),
  26335. name: "Dick",
  26336. image: {
  26337. source: "./media/characters/amera/dick.svg"
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(9.35, "feet"),
  26345. default: true
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26351. {
  26352. kneeling: {
  26353. height: math.unit(3 + 4 / 12, "feet"),
  26354. weight: math.unit(90, "lb"),
  26355. name: "Kneeling",
  26356. image: {
  26357. source: "./media/characters/rosewen/kneeling.svg",
  26358. extra: 1835 / 1571,
  26359. bottom: 27.7 / 1862
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(3 + 4 / 12, "feet"),
  26367. default: true
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26373. {
  26374. front: {
  26375. height: math.unit(5 + 10 / 12, "feet"),
  26376. weight: math.unit(200, "lb"),
  26377. name: "Front",
  26378. image: {
  26379. source: "./media/characters/sabah/front.svg",
  26380. extra: 849 / 763,
  26381. bottom: 33.9 / 881
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(5 + 10 / 12, "feet"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26395. {
  26396. front: {
  26397. height: math.unit(3 + 5 / 12, "feet"),
  26398. weight: math.unit(40, "kg"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/purple-flame/front.svg",
  26402. extra: 1577 / 1412,
  26403. bottom: 97 / 1694
  26404. }
  26405. },
  26406. frontDressed: {
  26407. height: math.unit(3 + 5 / 12, "feet"),
  26408. weight: math.unit(40, "kg"),
  26409. name: "Front (Dressed)",
  26410. image: {
  26411. source: "./media/characters/purple-flame/front-dressed.svg",
  26412. extra: 1577 / 1412,
  26413. bottom: 97 / 1694
  26414. }
  26415. },
  26416. headphones: {
  26417. height: math.unit(0.85, "feet"),
  26418. name: "Headphones",
  26419. image: {
  26420. source: "./media/characters/purple-flame/headphones.svg"
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Really Small",
  26427. height: math.unit(5, "cm")
  26428. },
  26429. {
  26430. name: "Micro",
  26431. height: math.unit(1 + 5 / 12, "feet")
  26432. },
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(3 + 5 / 12, "feet"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Minimacro",
  26440. height: math.unit(125, "feet")
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(0.5, "miles")
  26445. },
  26446. {
  26447. name: "Megamacro",
  26448. height: math.unit(50, "miles")
  26449. },
  26450. {
  26451. name: "Gigantic",
  26452. height: math.unit(750, "miles")
  26453. },
  26454. {
  26455. name: "Planetary",
  26456. height: math.unit(15000, "miles")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26462. {
  26463. front: {
  26464. height: math.unit(14, "feet"),
  26465. weight: math.unit(959, "lb"),
  26466. name: "Front",
  26467. image: {
  26468. source: "./media/characters/arsenal/front.svg",
  26469. extra: 2357 / 2157,
  26470. bottom: 93 / 2458
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(14, "feet"),
  26478. default: true
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(6, "feet"),
  26487. weight: math.unit(150, "lb"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/adira/front.svg",
  26491. extra: 1078 / 1029,
  26492. bottom: 87 / 1166
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Micro",
  26499. height: math.unit(4, "inches"),
  26500. default: true
  26501. },
  26502. {
  26503. name: "Macro",
  26504. height: math.unit(50, "feet")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(16, "feet"),
  26513. weight: math.unit(1000, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/grim/front.svg",
  26517. extra: 622 / 614,
  26518. bottom: 18.1 / 642
  26519. }
  26520. },
  26521. back: {
  26522. height: math.unit(16, "feet"),
  26523. weight: math.unit(1000, "lb"),
  26524. name: "Back",
  26525. image: {
  26526. source: "./media/characters/grim/back.svg",
  26527. extra: 610.6 / 602,
  26528. bottom: 40.8 / 652
  26529. }
  26530. },
  26531. hunched: {
  26532. height: math.unit(9.75, "feet"),
  26533. weight: math.unit(1000, "lb"),
  26534. name: "Hunched",
  26535. image: {
  26536. source: "./media/characters/grim/hunched.svg",
  26537. extra: 304 / 297,
  26538. bottom: 35.4 / 394
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(16, "feet"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(2.3, "meters"),
  26555. weight: math.unit(300, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/sinja/front-sfw.svg",
  26559. extra: 1393 / 1294,
  26560. bottom: 70 / 1463
  26561. }
  26562. },
  26563. frontNsfw: {
  26564. height: math.unit(2.3, "meters"),
  26565. weight: math.unit(300, "lb"),
  26566. name: "Front (NSFW)",
  26567. image: {
  26568. source: "./media/characters/sinja/front-nsfw.svg",
  26569. extra: 1393 / 1294,
  26570. bottom: 70 / 1463
  26571. }
  26572. },
  26573. back: {
  26574. height: math.unit(2.3, "meters"),
  26575. weight: math.unit(300, "lb"),
  26576. name: "Back",
  26577. image: {
  26578. source: "./media/characters/sinja/back.svg",
  26579. extra: 1393 / 1294,
  26580. bottom: 70 / 1463
  26581. }
  26582. },
  26583. head: {
  26584. height: math.unit(1.771, "feet"),
  26585. name: "Head",
  26586. image: {
  26587. source: "./media/characters/sinja/head.svg"
  26588. }
  26589. },
  26590. slit: {
  26591. height: math.unit(0.8, "feet"),
  26592. name: "Slit",
  26593. image: {
  26594. source: "./media/characters/sinja/slit.svg"
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(2.3, "meters")
  26602. },
  26603. {
  26604. name: "Macro",
  26605. height: math.unit(91, "meters"),
  26606. default: true
  26607. },
  26608. {
  26609. name: "Megamacro",
  26610. height: math.unit(91440, "meters")
  26611. },
  26612. {
  26613. name: "Gigamacro",
  26614. height: math.unit(60960000, "meters")
  26615. },
  26616. {
  26617. name: "Teramacro",
  26618. height: math.unit(9144000000, "meters")
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(1.7, "meters"),
  26627. weight: math.unit(130, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/kyu/front.svg",
  26631. extra: 415 / 395,
  26632. bottom: 5 / 420
  26633. }
  26634. },
  26635. head: {
  26636. height: math.unit(1.75, "feet"),
  26637. name: "Head",
  26638. image: {
  26639. source: "./media/characters/kyu/head.svg"
  26640. }
  26641. },
  26642. foot: {
  26643. height: math.unit(0.81, "feet"),
  26644. name: "Foot",
  26645. image: {
  26646. source: "./media/characters/kyu/foot.svg"
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(1.7, "meters")
  26654. },
  26655. {
  26656. name: "Macro",
  26657. height: math.unit(131, "feet"),
  26658. default: true
  26659. },
  26660. {
  26661. name: "Megamacro",
  26662. height: math.unit(91440, "meters")
  26663. },
  26664. {
  26665. name: "Gigamacro",
  26666. height: math.unit(60960000, "meters")
  26667. },
  26668. {
  26669. name: "Teramacro",
  26670. height: math.unit(9144000000, "meters")
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(7 + 1 / 12, "feet"),
  26679. weight: math.unit(250, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/joey/front.svg",
  26683. extra: 1791 / 1537,
  26684. bottom: 28 / 1816
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(3, "inches")
  26692. },
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(7 + 1 / 12, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26702. {
  26703. front: {
  26704. height: math.unit(165, "cm"),
  26705. weight: math.unit(140, "lb"),
  26706. name: "Front",
  26707. image: {
  26708. source: "./media/characters/sam-evans/front.svg",
  26709. extra: 3417 / 3230,
  26710. bottom: 41.3 / 3417
  26711. }
  26712. },
  26713. frontSixTails: {
  26714. height: math.unit(165, "cm"),
  26715. weight: math.unit(140, "lb"),
  26716. name: "Front-six-tails",
  26717. image: {
  26718. source: "./media/characters/sam-evans/front-six-tails.svg",
  26719. extra: 3417 / 3230,
  26720. bottom: 41.3 / 3417
  26721. }
  26722. },
  26723. back: {
  26724. height: math.unit(165, "cm"),
  26725. weight: math.unit(140, "lb"),
  26726. name: "Back",
  26727. image: {
  26728. source: "./media/characters/sam-evans/back.svg",
  26729. extra: 3227 / 3032,
  26730. bottom: 6.8 / 3234
  26731. }
  26732. },
  26733. face: {
  26734. height: math.unit(0.68, "feet"),
  26735. name: "Face",
  26736. image: {
  26737. source: "./media/characters/sam-evans/face.svg"
  26738. }
  26739. },
  26740. },
  26741. [
  26742. {
  26743. name: "Normal",
  26744. height: math.unit(165, "cm"),
  26745. default: true
  26746. },
  26747. {
  26748. name: "Macro",
  26749. height: math.unit(100, "meters")
  26750. },
  26751. {
  26752. name: "Macro+",
  26753. height: math.unit(800, "meters")
  26754. },
  26755. {
  26756. name: "Macro++",
  26757. height: math.unit(3, "km")
  26758. },
  26759. {
  26760. name: "Macro+++",
  26761. height: math.unit(30, "km")
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(10, "feet"),
  26770. weight: math.unit(750, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/juliet-a/front.svg",
  26774. extra: 1766 / 1720,
  26775. bottom: 43 / 1809
  26776. }
  26777. },
  26778. back: {
  26779. height: math.unit(10, "feet"),
  26780. weight: math.unit(750, "lb"),
  26781. name: "Back",
  26782. image: {
  26783. source: "./media/characters/juliet-a/back.svg",
  26784. extra: 1781 / 1734,
  26785. bottom: 35 / 1810,
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(10, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Dragon Form",
  26797. height: math.unit(250, "feet")
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(1000, "feet")
  26802. },
  26803. {
  26804. name: "Megamacro",
  26805. height: math.unit(10000, "feet")
  26806. }
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26811. {
  26812. regular: {
  26813. height: math.unit(7 + 3 / 12, "feet"),
  26814. weight: math.unit(260, "lb"),
  26815. name: "Regular",
  26816. image: {
  26817. source: "./media/characters/wild/regular.svg",
  26818. extra: 97.45 / 92,
  26819. bottom: 6.8 / 104.3
  26820. }
  26821. },
  26822. biggums: {
  26823. height: math.unit(8 + 6 / 12, "feet"),
  26824. weight: math.unit(425, "lb"),
  26825. name: "Biggums",
  26826. image: {
  26827. source: "./media/characters/wild/biggums.svg",
  26828. extra: 97.45 / 92,
  26829. bottom: 7.5 / 132.34
  26830. }
  26831. },
  26832. mawRegular: {
  26833. height: math.unit(1.24, "feet"),
  26834. name: "Maw (Regular)",
  26835. image: {
  26836. source: "./media/characters/wild/maw.svg"
  26837. }
  26838. },
  26839. mawBiggums: {
  26840. height: math.unit(1.47, "feet"),
  26841. name: "Maw (Biggums)",
  26842. image: {
  26843. source: "./media/characters/wild/maw.svg"
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(7 + 3 / 12, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26857. {
  26858. front: {
  26859. height: math.unit(2.5, "meters"),
  26860. weight: math.unit(200, "kg"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/vidar/front.svg",
  26864. extra: 2994 / 2795,
  26865. bottom: 56 / 3061
  26866. }
  26867. },
  26868. back: {
  26869. height: math.unit(2.5, "meters"),
  26870. weight: math.unit(200, "kg"),
  26871. name: "Back",
  26872. image: {
  26873. source: "./media/characters/vidar/back.svg",
  26874. extra: 3131 / 2928,
  26875. bottom: 13.5 / 3141.5
  26876. }
  26877. },
  26878. feral: {
  26879. height: math.unit(2.5, "meters"),
  26880. weight: math.unit(2000, "kg"),
  26881. name: "Feral",
  26882. image: {
  26883. source: "./media/characters/vidar/feral.svg",
  26884. extra: 2790 / 1765,
  26885. bottom: 6 / 2796
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(2.5, "meters"),
  26893. default: true
  26894. },
  26895. {
  26896. name: "Macro",
  26897. height: math.unit(100, "meters")
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(5 + 9 / 12, "feet"),
  26906. weight: math.unit(120, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/ash/front.svg",
  26910. extra: 2189 / 1961,
  26911. bottom: 5.2 / 2194
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(5 + 9 / 12, "feet"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(9, "feet"),
  26928. weight: math.unit(10000, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/gygabite/front.svg",
  26932. bottom: 31.7 / 537.8,
  26933. extra: 505 / 370
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Normal",
  26940. height: math.unit(9, "feet"),
  26941. default: true
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(12, "feet"),
  26950. weight: math.unit(35000, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/p0tat0/front.svg",
  26954. extra: 1065 / 921,
  26955. bottom: 55.7 / 1121.25
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(12, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26969. {
  26970. side: {
  26971. height: math.unit(6.5, "feet"),
  26972. weight: math.unit(800, "lb"),
  26973. name: "Side",
  26974. image: {
  26975. source: "./media/characters/dusk/side.svg",
  26976. extra: 615 / 373,
  26977. bottom: 53 / 664
  26978. }
  26979. },
  26980. sitting: {
  26981. height: math.unit(7, "feet"),
  26982. weight: math.unit(800, "lb"),
  26983. name: "Sitting",
  26984. image: {
  26985. source: "./media/characters/dusk/sitting.svg",
  26986. extra: 753 / 425,
  26987. bottom: 33 / 774
  26988. }
  26989. },
  26990. head: {
  26991. height: math.unit(6.1, "feet"),
  26992. name: "Head",
  26993. image: {
  26994. source: "./media/characters/dusk/head.svg"
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(7, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(15, "feet"),
  27011. weight: math.unit(7000, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/jay-direwolf/front.svg",
  27015. extra: 1810 / 1732,
  27016. bottom: 66 / 1892
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Normal",
  27023. height: math.unit(15, "feet"),
  27024. default: true
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27030. {
  27031. front: {
  27032. height: math.unit(4 + 9 / 12, "feet"),
  27033. weight: math.unit(130, "lb"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/anchovie/front.svg",
  27037. extra: 382 / 350,
  27038. bottom: 25 / 409
  27039. }
  27040. },
  27041. back: {
  27042. height: math.unit(4 + 9 / 12, "feet"),
  27043. weight: math.unit(130, "lb"),
  27044. name: "Back",
  27045. image: {
  27046. source: "./media/characters/anchovie/back.svg",
  27047. extra: 385 / 352,
  27048. bottom: 16.6 / 402
  27049. }
  27050. },
  27051. frontDressed: {
  27052. height: math.unit(4 + 9 / 12, "feet"),
  27053. weight: math.unit(130, "lb"),
  27054. name: "Front (Dressed)",
  27055. image: {
  27056. source: "./media/characters/anchovie/front-dressed.svg",
  27057. extra: 382 / 350,
  27058. bottom: 25 / 409
  27059. }
  27060. },
  27061. backDressed: {
  27062. height: math.unit(4 + 9 / 12, "feet"),
  27063. weight: math.unit(130, "lb"),
  27064. name: "Back (Dressed)",
  27065. image: {
  27066. source: "./media/characters/anchovie/back-dressed.svg",
  27067. extra: 385 / 352,
  27068. bottom: 16.6 / 402
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Micro",
  27075. height: math.unit(6.4, "inches")
  27076. },
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(4 + 9 / 12, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(2, "meters"),
  27089. weight: math.unit(180, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/acidrenamon/front.svg",
  27093. extra: 987 / 890,
  27094. bottom: 22.8 / 1009
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(2, "meters"),
  27099. weight: math.unit(180, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/acidrenamon/back.svg",
  27103. extra: 983 / 891,
  27104. bottom: 8.4 / 992
  27105. }
  27106. },
  27107. head: {
  27108. height: math.unit(1.92, "feet"),
  27109. name: "Head",
  27110. image: {
  27111. source: "./media/characters/acidrenamon/head.svg"
  27112. }
  27113. },
  27114. rump: {
  27115. height: math.unit(1.72, "feet"),
  27116. name: "Rump",
  27117. image: {
  27118. source: "./media/characters/acidrenamon/rump.svg"
  27119. }
  27120. },
  27121. tail: {
  27122. height: math.unit(4.2, "feet"),
  27123. name: "Tail",
  27124. image: {
  27125. source: "./media/characters/acidrenamon/tail.svg"
  27126. }
  27127. },
  27128. },
  27129. [
  27130. {
  27131. name: "Normal",
  27132. height: math.unit(2, "meters"),
  27133. default: true
  27134. },
  27135. {
  27136. name: "Minimacro",
  27137. height: math.unit(7, "meters")
  27138. },
  27139. {
  27140. name: "Macro",
  27141. height: math.unit(200, "meters")
  27142. },
  27143. {
  27144. name: "Gigamacro",
  27145. height: math.unit(0.2, "earths")
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(6, "feet"),
  27154. weight: math.unit(150, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/kenzie-lee/front.svg",
  27158. extra: 1525 / 1465,
  27159. bottom: 45 / 1570
  27160. }
  27161. },
  27162. side: {
  27163. height: math.unit(6, "feet"),
  27164. weight: math.unit(150, "lb"),
  27165. name: "Side",
  27166. image: {
  27167. source: "./media/characters/kenzie-lee/side.svg",
  27168. extra: 5505 / 5383,
  27169. bottom: 60 / 5573
  27170. }
  27171. },
  27172. paw: {
  27173. height: math.unit(0.57, "feet"),
  27174. name: "Paw",
  27175. image: {
  27176. source: "./media/characters/kenzie-lee/paw.svg"
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(152, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(7, "miles")
  27189. },
  27190. {
  27191. name: "Gigamacro",
  27192. height: math.unit(8000, "miles")
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27198. {
  27199. side: {
  27200. height: math.unit(6, "feet"),
  27201. weight: math.unit(150, "lb"),
  27202. name: "Side",
  27203. image: {
  27204. source: "./media/characters/withers/side.svg",
  27205. extra: 1830 / 1728,
  27206. bottom: 96 / 1927
  27207. }
  27208. },
  27209. front: {
  27210. height: math.unit(6, "feet"),
  27211. weight: math.unit(150, "lb"),
  27212. name: "Front",
  27213. image: {
  27214. source: "./media/characters/withers/front.svg",
  27215. extra: 1514 / 1438,
  27216. bottom: 118 / 1632
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(168, "feet"),
  27224. default: true
  27225. },
  27226. {
  27227. name: "Megamacro",
  27228. height: math.unit(15, "miles")
  27229. }
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(6 + 7 / 12, "feet"),
  27237. weight: math.unit(250, "lb"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/nemoskii/front.svg",
  27241. extra: 2270 / 1734,
  27242. bottom: 86 / 2354
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(6 + 7 / 12, "feet"),
  27247. weight: math.unit(250, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/nemoskii/back.svg",
  27251. extra: 1845 / 1788,
  27252. bottom: 10.5 / 1852
  27253. }
  27254. },
  27255. head: {
  27256. height: math.unit(1.31, "feet"),
  27257. name: "Head",
  27258. image: {
  27259. source: "./media/characters/nemoskii/head.svg"
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Micro",
  27266. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27267. },
  27268. {
  27269. name: "Normal",
  27270. height: math.unit(6 + 7 / 12, "feet"),
  27271. default: true
  27272. },
  27273. {
  27274. name: "Macro",
  27275. height: math.unit((6 + 7 / 12) * 150, "feet")
  27276. },
  27277. {
  27278. name: "Macro+",
  27279. height: math.unit((6 + 7 / 12) * 500, "feet")
  27280. },
  27281. {
  27282. name: "Megamacro",
  27283. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27289. {
  27290. front: {
  27291. height: math.unit(1, "mile"),
  27292. weight: math.unit(265261.9, "lb"),
  27293. name: "Front",
  27294. image: {
  27295. source: "./media/characters/shui/front.svg",
  27296. extra: 1633 / 1564,
  27297. bottom: 91.5 / 1726
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Macro",
  27304. height: math.unit(1, "mile"),
  27305. default: true
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(12 + 6 / 12, "feet"),
  27314. weight: math.unit(1342, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/arokh-takakura/front.svg",
  27318. extra: 1089 / 1043,
  27319. bottom: 77.4 / 1176.7
  27320. }
  27321. },
  27322. back: {
  27323. height: math.unit(12 + 6 / 12, "feet"),
  27324. weight: math.unit(1342, "lb"),
  27325. name: "Back",
  27326. image: {
  27327. source: "./media/characters/arokh-takakura/back.svg",
  27328. extra: 1046 / 1019,
  27329. bottom: 102 / 1150
  27330. }
  27331. },
  27332. },
  27333. [
  27334. {
  27335. name: "Big",
  27336. height: math.unit(12 + 6 / 12, "feet"),
  27337. default: true
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(5 + 6 / 12, "feet"),
  27346. weight: math.unit(150, "lb"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/theo/front.svg",
  27350. extra: 1184 / 1131,
  27351. bottom: 7.4 / 1191
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Micro",
  27358. height: math.unit(5, "inches")
  27359. },
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(5 + 6 / 12, "feet"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(5 + 9 / 12, "feet"),
  27372. weight: math.unit(130, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/cecelia-swift/front.svg",
  27376. extra: 502 / 484,
  27377. bottom: 23 / 523
  27378. }
  27379. },
  27380. back: {
  27381. height: math.unit(5 + 9 / 12, "feet"),
  27382. weight: math.unit(130, "lb"),
  27383. name: "Back",
  27384. image: {
  27385. source: "./media/characters/cecelia-swift/back.svg",
  27386. extra: 499 / 485,
  27387. bottom: 12 / 511
  27388. }
  27389. },
  27390. head: {
  27391. height: math.unit(0.90, "feet"),
  27392. name: "Head",
  27393. image: {
  27394. source: "./media/characters/cecelia-swift/head.svg"
  27395. }
  27396. },
  27397. rump: {
  27398. height: math.unit(1.75, "feet"),
  27399. name: "Rump",
  27400. image: {
  27401. source: "./media/characters/cecelia-swift/rump.svg"
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(5 + 9 / 12, "feet"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Big",
  27413. height: math.unit(50, "feet")
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(100, "feet")
  27418. },
  27419. {
  27420. name: "Macro+",
  27421. height: math.unit(500, "feet")
  27422. },
  27423. {
  27424. name: "Macro++",
  27425. height: math.unit(1000, "feet")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(6, "feet"),
  27434. weight: math.unit(150, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/kaunan/front.svg",
  27438. extra: 2890 / 2523,
  27439. bottom: 49 / 2939
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Macro",
  27446. height: math.unit(150, "feet"),
  27447. default: true
  27448. },
  27449. ]
  27450. ))
  27451. characterMakers.push(() => makeCharacter(
  27452. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27453. {
  27454. front: {
  27455. height: math.unit(175, "cm"),
  27456. weight: math.unit(60, "kg"),
  27457. name: "Front",
  27458. image: {
  27459. source: "./media/characters/fei/front.svg",
  27460. extra: 1873/1723,
  27461. bottom: 53/1926
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Mortal",
  27468. height: math.unit(175, "cm")
  27469. },
  27470. {
  27471. name: "Normal",
  27472. height: math.unit(3500, "m"),
  27473. default: true
  27474. },
  27475. {
  27476. name: "Stroll",
  27477. height: math.unit(17.5, "km")
  27478. },
  27479. {
  27480. name: "Showoff",
  27481. height: math.unit(175, "km")
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27487. {
  27488. front: {
  27489. height: math.unit(7, "feet"),
  27490. weight: math.unit(1000, "kg"),
  27491. name: "Front",
  27492. image: {
  27493. source: "./media/characters/edrax/front.svg",
  27494. extra: 2838 / 2550,
  27495. bottom: 130 / 2968
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Small",
  27502. height: math.unit(7, "feet")
  27503. },
  27504. {
  27505. name: "Normal",
  27506. height: math.unit(1500, "meters")
  27507. },
  27508. {
  27509. name: "Mega",
  27510. height: math.unit(12000000, "km"),
  27511. default: true
  27512. },
  27513. {
  27514. name: "Megamacro",
  27515. height: math.unit(10600000, "lightyears")
  27516. },
  27517. {
  27518. name: "Hypermacro",
  27519. height: math.unit(256, "yottameters")
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(10, "feet"),
  27528. weight: math.unit(750, "lb"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/clove/front.svg",
  27532. extra: 2031 / 1860,
  27533. bottom: 47.8 / 2080
  27534. }
  27535. },
  27536. back: {
  27537. height: math.unit(10, "feet"),
  27538. weight: math.unit(750, "lb"),
  27539. name: "Back",
  27540. image: {
  27541. source: "./media/characters/clove/back.svg",
  27542. extra: 2025 / 1859,
  27543. bottom: 46 / 2071
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Normal",
  27550. height: math.unit(10, "feet"),
  27551. default: true
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27557. {
  27558. front: {
  27559. height: math.unit(4, "feet"),
  27560. weight: math.unit(50, "lb"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/alex-rabbit/front.svg",
  27564. extra: 507 / 458,
  27565. bottom: 18.5 / 527
  27566. }
  27567. },
  27568. back: {
  27569. height: math.unit(4, "feet"),
  27570. weight: math.unit(50, "lb"),
  27571. name: "Back",
  27572. image: {
  27573. source: "./media/characters/alex-rabbit/back.svg",
  27574. extra: 502 / 460,
  27575. bottom: 18.9 / 521
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(4, "feet"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(1 + 3 / 12, "feet"),
  27592. weight: math.unit(80, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/zander-rose/front.svg",
  27596. extra: 916 / 797,
  27597. bottom: 17 / 933
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(1 + 3 / 12, "feet"),
  27602. weight: math.unit(80, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/zander-rose/back.svg",
  27606. extra: 903 / 779,
  27607. bottom: 31 / 934
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(1 + 3 / 12, "feet"),
  27615. default: true
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27621. {
  27622. anthro: {
  27623. height: math.unit(6, "feet"),
  27624. weight: math.unit(150, "lb"),
  27625. name: "Anthro",
  27626. image: {
  27627. source: "./media/characters/razz/anthro.svg",
  27628. extra: 1437 / 1343,
  27629. bottom: 48 / 1485
  27630. }
  27631. },
  27632. feral: {
  27633. height: math.unit(6, "feet"),
  27634. weight: math.unit(150, "lb"),
  27635. name: "Feral",
  27636. image: {
  27637. source: "./media/characters/razz/feral.svg",
  27638. extra: 2569 / 1385,
  27639. bottom: 95 / 2664
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(6, "feet"),
  27647. default: true
  27648. },
  27649. ]
  27650. ))
  27651. characterMakers.push(() => makeCharacter(
  27652. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27653. {
  27654. front: {
  27655. height: math.unit(9 + 4 / 12, "feet"),
  27656. weight: math.unit(500, "lb"),
  27657. name: "Front",
  27658. image: {
  27659. source: "./media/characters/morrigan/front.svg",
  27660. extra: 2707 / 2579,
  27661. bottom: 156 / 2863
  27662. }
  27663. },
  27664. },
  27665. [
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(9 + 4 / 12, "feet"),
  27669. default: true
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(5, "stories"),
  27678. weight: math.unit(4000, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/jenene/front.svg",
  27682. extra: 1780 / 1710,
  27683. bottom: 57 / 1837
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(5, "stories"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27697. {
  27698. taurSfw: {
  27699. height: math.unit(10, "meters"),
  27700. weight: math.unit(17500, "kg"),
  27701. name: "Taur",
  27702. image: {
  27703. source: "./media/characters/faey/taur-sfw.svg",
  27704. extra: 1200 / 968,
  27705. bottom: 41 / 1241
  27706. }
  27707. },
  27708. chestmaw: {
  27709. height: math.unit(2.01, "meters"),
  27710. name: "Chestmaw",
  27711. image: {
  27712. source: "./media/characters/faey/chestmaw.svg"
  27713. }
  27714. },
  27715. foot: {
  27716. height: math.unit(2.43, "meters"),
  27717. name: "Foot",
  27718. image: {
  27719. source: "./media/characters/faey/foot.svg"
  27720. }
  27721. },
  27722. jaws: {
  27723. height: math.unit(1.66, "meters"),
  27724. name: "Jaws",
  27725. image: {
  27726. source: "./media/characters/faey/jaws.svg"
  27727. }
  27728. },
  27729. tongues: {
  27730. height: math.unit(2.01, "meters"),
  27731. name: "Tongues",
  27732. image: {
  27733. source: "./media/characters/faey/tongues.svg"
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Small",
  27740. height: math.unit(10, "meters"),
  27741. default: true
  27742. },
  27743. {
  27744. name: "Big",
  27745. height: math.unit(500000, "km")
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(7, "feet"),
  27754. weight: math.unit(275, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/roku/front.svg",
  27758. extra: 903 / 878,
  27759. bottom: 37 / 940
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Normal",
  27766. height: math.unit(7, "feet"),
  27767. default: true
  27768. },
  27769. {
  27770. name: "Macro",
  27771. height: math.unit(500, "feet")
  27772. },
  27773. {
  27774. name: "Megamacro",
  27775. height: math.unit(200, "miles")
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(6 + 2 / 12, "feet"),
  27784. weight: math.unit(150, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/lira/front.svg",
  27788. extra: 1727 / 1605,
  27789. bottom: 26 / 1753
  27790. }
  27791. },
  27792. back: {
  27793. height: math.unit(6 + 2 / 12, "feet"),
  27794. weight: math.unit(150, "lb"),
  27795. name: "Back",
  27796. image: {
  27797. source: "./media/characters/lira/back.svg",
  27798. extra: 1713/1621,
  27799. bottom: 20/1733
  27800. }
  27801. },
  27802. hand: {
  27803. height: math.unit(0.75, "feet"),
  27804. name: "Hand",
  27805. image: {
  27806. source: "./media/characters/lira/hand.svg"
  27807. }
  27808. },
  27809. maw: {
  27810. height: math.unit(0.65, "feet"),
  27811. name: "Maw",
  27812. image: {
  27813. source: "./media/characters/lira/maw.svg"
  27814. }
  27815. },
  27816. pawDigi: {
  27817. height: math.unit(1.6, "feet"),
  27818. name: "Paw Digi",
  27819. image: {
  27820. source: "./media/characters/lira/paw-digi.svg"
  27821. }
  27822. },
  27823. pawPlanti: {
  27824. height: math.unit(1.4, "feet"),
  27825. name: "Paw Planti",
  27826. image: {
  27827. source: "./media/characters/lira/paw-planti.svg"
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(6 + 2 / 12, "feet"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Macro",
  27839. height: math.unit(100, "feet")
  27840. },
  27841. {
  27842. name: "Macro²",
  27843. height: math.unit(1600, "feet")
  27844. },
  27845. {
  27846. name: "Planetary",
  27847. height: math.unit(20, "earths")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(6, "feet"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/hadjet/front.svg",
  27860. extra: 1480 / 1346,
  27861. bottom: 26 / 1506
  27862. }
  27863. },
  27864. frontNsfw: {
  27865. height: math.unit(6, "feet"),
  27866. weight: math.unit(150, "lb"),
  27867. name: "Front (NSFW)",
  27868. image: {
  27869. source: "./media/characters/hadjet/front-nsfw.svg",
  27870. extra: 1440 / 1358,
  27871. bottom: 52 / 1492
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Macro",
  27878. height: math.unit(10, "stories"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Megamacro",
  27883. height: math.unit(1.5, "miles")
  27884. },
  27885. {
  27886. name: "Megamacro+",
  27887. height: math.unit(5, "miles")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27893. {
  27894. side: {
  27895. height: math.unit(106, "feet"),
  27896. weight: math.unit(500, "tonnes"),
  27897. name: "Side",
  27898. image: {
  27899. source: "./media/characters/kodran/side.svg",
  27900. extra: 553 / 480,
  27901. bottom: 33 / 586
  27902. }
  27903. },
  27904. front: {
  27905. height: math.unit(132, "feet"),
  27906. weight: math.unit(500, "tonnes"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/kodran/front.svg",
  27910. extra: 667 / 643,
  27911. bottom: 42 / 709
  27912. }
  27913. },
  27914. flying: {
  27915. height: math.unit(350, "feet"),
  27916. weight: math.unit(500, "tonnes"),
  27917. name: "Flying",
  27918. image: {
  27919. source: "./media/characters/kodran/flying.svg"
  27920. }
  27921. },
  27922. foot: {
  27923. height: math.unit(33, "feet"),
  27924. name: "Foot",
  27925. image: {
  27926. source: "./media/characters/kodran/foot.svg"
  27927. }
  27928. },
  27929. footFront: {
  27930. height: math.unit(19, "feet"),
  27931. name: "Foot (Front)",
  27932. image: {
  27933. source: "./media/characters/kodran/foot-front.svg",
  27934. extra: 261 / 261,
  27935. bottom: 91 / 352
  27936. }
  27937. },
  27938. headFront: {
  27939. height: math.unit(53, "feet"),
  27940. name: "Head (Front)",
  27941. image: {
  27942. source: "./media/characters/kodran/head-front.svg"
  27943. }
  27944. },
  27945. headSide: {
  27946. height: math.unit(65, "feet"),
  27947. name: "Head (Side)",
  27948. image: {
  27949. source: "./media/characters/kodran/head-side.svg"
  27950. }
  27951. },
  27952. throat: {
  27953. height: math.unit(79, "feet"),
  27954. name: "Throat",
  27955. image: {
  27956. source: "./media/characters/kodran/throat.svg"
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Large",
  27963. height: math.unit(106, "feet"),
  27964. default: true
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27970. {
  27971. side: {
  27972. height: math.unit(11, "feet"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Side",
  27975. image: {
  27976. source: "./media/characters/pyxaron/side.svg",
  27977. extra: 305 / 195,
  27978. bottom: 17 / 322
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(11, "feet"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(6, "feet"),
  27995. weight: math.unit(150, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/meep/front.svg",
  27999. extra: 88 / 80,
  28000. bottom: 6 / 94
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Fun Sized",
  28007. height: math.unit(2, "inches"),
  28008. default: true
  28009. },
  28010. {
  28011. name: "Friend Sized",
  28012. height: math.unit(8, "inches")
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(15, "feet"),
  28021. weight: math.unit(2500, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/holly-rabbit/front.svg",
  28025. extra: 1433 / 1233,
  28026. bottom: 125 / 1558
  28027. }
  28028. },
  28029. dick: {
  28030. height: math.unit(4.6, "feet"),
  28031. name: "Dick",
  28032. image: {
  28033. source: "./media/characters/holly-rabbit/dick.svg"
  28034. }
  28035. },
  28036. },
  28037. [
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(15, "feet"),
  28041. default: true
  28042. },
  28043. {
  28044. name: "Macro",
  28045. height: math.unit(250, "feet")
  28046. },
  28047. {
  28048. name: "Macro+",
  28049. height: math.unit(2500, "feet")
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(3.02, "meters"),
  28058. weight: math.unit(500, "kg"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/drena/front.svg",
  28062. extra: 282 / 243,
  28063. bottom: 8 / 290
  28064. }
  28065. },
  28066. side: {
  28067. height: math.unit(3.02, "meters"),
  28068. weight: math.unit(500, "kg"),
  28069. name: "Side",
  28070. image: {
  28071. source: "./media/characters/drena/side.svg",
  28072. extra: 280 / 245,
  28073. bottom: 10 / 290
  28074. }
  28075. },
  28076. back: {
  28077. height: math.unit(3.02, "meters"),
  28078. weight: math.unit(500, "kg"),
  28079. name: "Back",
  28080. image: {
  28081. source: "./media/characters/drena/back.svg",
  28082. extra: 278 / 243,
  28083. bottom: 2 / 280
  28084. }
  28085. },
  28086. foot: {
  28087. height: math.unit(0.75, "meters"),
  28088. name: "Foot",
  28089. image: {
  28090. source: "./media/characters/drena/foot.svg"
  28091. }
  28092. },
  28093. maw: {
  28094. height: math.unit(0.82, "meters"),
  28095. name: "Maw",
  28096. image: {
  28097. source: "./media/characters/drena/maw.svg"
  28098. }
  28099. },
  28100. rump: {
  28101. height: math.unit(0.93, "meters"),
  28102. name: "Rump",
  28103. image: {
  28104. source: "./media/characters/drena/rump.svg"
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(3.02, "meters"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(6 + 4 / 12, "feet"),
  28121. weight: math.unit(250, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/remmyzilla/front.svg",
  28125. extra: 4033 / 3588,
  28126. bottom: 123 / 4156
  28127. }
  28128. },
  28129. back: {
  28130. height: math.unit(6 + 4 / 12, "feet"),
  28131. weight: math.unit(250, "lb"),
  28132. name: "Back",
  28133. image: {
  28134. source: "./media/characters/remmyzilla/back.svg",
  28135. extra: 2687 / 2555,
  28136. bottom: 48 / 2735
  28137. }
  28138. },
  28139. paw: {
  28140. height: math.unit(1.73, "feet"),
  28141. name: "Paw",
  28142. image: {
  28143. source: "./media/characters/remmyzilla/paw.svg"
  28144. }
  28145. },
  28146. maw: {
  28147. height: math.unit(1.73, "feet"),
  28148. name: "Maw",
  28149. image: {
  28150. source: "./media/characters/remmyzilla/maw.svg"
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(6 + 4 / 12, "feet")
  28158. },
  28159. {
  28160. name: "Minimacro",
  28161. height: math.unit(12 + 8 / 12, "feet")
  28162. },
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(640, "feet"),
  28166. default: true
  28167. },
  28168. {
  28169. name: "Megamacro",
  28170. height: math.unit(6400, "feet")
  28171. },
  28172. {
  28173. name: "Gigamacro",
  28174. height: math.unit(64000, "miles")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(2.5, "meters"),
  28183. weight: math.unit(300, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/lawrence/front.svg",
  28187. extra: 357 / 335,
  28188. bottom: 30 / 387
  28189. }
  28190. },
  28191. back: {
  28192. height: math.unit(2.5, "meters"),
  28193. weight: math.unit(300, "lb"),
  28194. name: "Back",
  28195. image: {
  28196. source: "./media/characters/lawrence/back.svg",
  28197. extra: 357 / 338,
  28198. bottom: 16 / 373
  28199. }
  28200. },
  28201. head: {
  28202. height: math.unit(0.9, "meter"),
  28203. name: "Head",
  28204. image: {
  28205. source: "./media/characters/lawrence/head.svg"
  28206. }
  28207. },
  28208. maw: {
  28209. height: math.unit(0.7, "meter"),
  28210. name: "Maw",
  28211. image: {
  28212. source: "./media/characters/lawrence/maw.svg"
  28213. }
  28214. },
  28215. footBottom: {
  28216. height: math.unit(0.5, "meter"),
  28217. name: "Foot (Bottom)",
  28218. image: {
  28219. source: "./media/characters/lawrence/foot-bottom.svg"
  28220. }
  28221. },
  28222. footTop: {
  28223. height: math.unit(0.5, "meter"),
  28224. name: "Foot (Top)",
  28225. image: {
  28226. source: "./media/characters/lawrence/foot-top.svg"
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(2.5, "meters"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Macro",
  28238. height: math.unit(95, "meters")
  28239. },
  28240. {
  28241. name: "Megamacro",
  28242. height: math.unit(150, "km")
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28248. {
  28249. front: {
  28250. height: math.unit(4.2, "meters"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/sydney/front.svg",
  28254. extra: 1323 / 1277,
  28255. bottom: 111 / 1434
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(4.2, "meters"),
  28263. default: true
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28269. {
  28270. back: {
  28271. height: math.unit(201, "feet"),
  28272. name: "Back",
  28273. image: {
  28274. source: "./media/characters/jessica/back.svg",
  28275. extra: 273 / 259,
  28276. bottom: 7 / 280
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(201, "feet"),
  28284. default: true
  28285. },
  28286. {
  28287. name: "Megamacro",
  28288. height: math.unit(8, "miles")
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28294. {
  28295. side: {
  28296. height: math.unit(320, "cm"),
  28297. name: "Side",
  28298. image: {
  28299. source: "./media/characters/victoria/side.svg",
  28300. extra: 778 / 346,
  28301. bottom: 56 / 834
  28302. }
  28303. },
  28304. maw: {
  28305. height: math.unit(5.9, "feet"),
  28306. name: "Maw",
  28307. image: {
  28308. source: "./media/characters/victoria/maw.svg"
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Normal",
  28315. height: math.unit(320, "cm"),
  28316. default: true
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28322. {
  28323. front: {
  28324. height: math.unit(5 + 6 / 12, "feet"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/cat/front.svg",
  28328. extra: 1374 / 1257,
  28329. bottom: 59 / 1433
  28330. }
  28331. },
  28332. back: {
  28333. height: math.unit(5 + 6 / 12, "feet"),
  28334. name: "Back",
  28335. image: {
  28336. source: "./media/characters/cat/back.svg",
  28337. extra: 1337 / 1226,
  28338. bottom: 34 / 1371
  28339. }
  28340. },
  28341. taur: {
  28342. height: math.unit(7, "feet"),
  28343. name: "Taur",
  28344. image: {
  28345. source: "./media/characters/cat/taur.svg",
  28346. extra: 1345 / 1231,
  28347. bottom: 66 / 1411
  28348. }
  28349. },
  28350. lucario: {
  28351. height: math.unit(4, "feet"),
  28352. name: "Lucario",
  28353. image: {
  28354. source: "./media/characters/cat/lucario.svg",
  28355. extra: 1470 / 1318,
  28356. bottom: 65 / 1535
  28357. }
  28358. },
  28359. megaLucario: {
  28360. height: math.unit(4, "feet"),
  28361. name: "Mega Lucario",
  28362. image: {
  28363. source: "./media/characters/cat/mega-lucario.svg",
  28364. extra: 1515 / 1319,
  28365. bottom: 63 / 1578
  28366. }
  28367. },
  28368. nickit: {
  28369. height: math.unit(2, "feet"),
  28370. name: "Nickit",
  28371. image: {
  28372. source: "./media/characters/cat/nickit.svg",
  28373. extra: 1980 / 1585,
  28374. bottom: 102 / 2082
  28375. }
  28376. },
  28377. lopunnyFront: {
  28378. height: math.unit(5, "feet"),
  28379. name: "Lopunny (Front)",
  28380. image: {
  28381. source: "./media/characters/cat/lopunny-front.svg",
  28382. extra: 1782 / 1469,
  28383. bottom: 38 / 1820
  28384. }
  28385. },
  28386. lopunnyBack: {
  28387. height: math.unit(5, "feet"),
  28388. name: "Lopunny (Back)",
  28389. image: {
  28390. source: "./media/characters/cat/lopunny-back.svg",
  28391. extra: 1660 / 1490,
  28392. bottom: 25 / 1685
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Really small",
  28399. height: math.unit(1, "nm")
  28400. },
  28401. {
  28402. name: "Micro",
  28403. height: math.unit(5, "inches")
  28404. },
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(5 + 6 / 12, "feet"),
  28408. default: true
  28409. },
  28410. {
  28411. name: "Macro",
  28412. height: math.unit(50, "feet")
  28413. },
  28414. {
  28415. name: "Macro+",
  28416. height: math.unit(150, "feet")
  28417. },
  28418. {
  28419. name: "Megamacro",
  28420. height: math.unit(100, "miles")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(63.4, "meters"),
  28429. weight: math.unit(3.28349e+6, "kilograms"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/kirina-violet/front.svg",
  28433. extra: 2812 / 2725,
  28434. bottom: 0 / 2812
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(63.4, "meters"),
  28439. weight: math.unit(3.28349e+6, "kilograms"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/kirina-violet/back.svg",
  28443. extra: 2812 / 2725,
  28444. bottom: 0 / 2812
  28445. }
  28446. },
  28447. mouth: {
  28448. height: math.unit(4.35, "meters"),
  28449. name: "Mouth",
  28450. image: {
  28451. source: "./media/characters/kirina-violet/mouth.svg"
  28452. }
  28453. },
  28454. paw: {
  28455. height: math.unit(5.6, "meters"),
  28456. name: "Paw",
  28457. image: {
  28458. source: "./media/characters/kirina-violet/paw.svg"
  28459. }
  28460. },
  28461. tail: {
  28462. height: math.unit(18, "meters"),
  28463. name: "Tail",
  28464. image: {
  28465. source: "./media/characters/kirina-violet/tail.svg"
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Macro",
  28472. height: math.unit(63.4, "meters"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(75, "feet"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/cat-gigachu/front.svg",
  28485. extra: 1239/1027,
  28486. bottom: 32/1271
  28487. }
  28488. },
  28489. back: {
  28490. height: math.unit(75, "feet"),
  28491. name: "Back",
  28492. image: {
  28493. source: "./media/characters/cat-gigachu/back.svg",
  28494. extra: 1229/1030,
  28495. bottom: 9/1238
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Dynamax",
  28502. height: math.unit(75, "feet"),
  28503. default: true
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/sfaiyan/front.svg",
  28516. extra: 999 / 978,
  28517. bottom: 5 / 1004
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Normal",
  28524. height: math.unit(1.82, "meters")
  28525. },
  28526. {
  28527. name: "Giant",
  28528. height: math.unit(2.27, "km"),
  28529. default: true
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(179, "cm"),
  28538. weight: math.unit(100, "kg"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/raunehkeli/front.svg",
  28542. extra: 1934 / 1926,
  28543. bottom: 0 / 1934
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(179, "cm")
  28551. },
  28552. {
  28553. name: "Maximum",
  28554. height: math.unit(575, "meters"),
  28555. default: true
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(6, "feet"),
  28564. weight: math.unit(150, "lb"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28568. extra: 2625 / 2518,
  28569. bottom: 60 / 2685
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(6 + 2 / 12, "feet")
  28577. },
  28578. {
  28579. name: "Macro",
  28580. height: math.unit(1180, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(5 + 6 / 12, "feet"),
  28590. weight: math.unit(108, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/lilith-zott/front.svg",
  28594. extra: 2510 / 2238,
  28595. bottom: 100 / 2610
  28596. }
  28597. },
  28598. frontDressed: {
  28599. height: math.unit(5 + 6 / 12, "feet"),
  28600. weight: math.unit(108, "lb"),
  28601. name: "Front (Dressed)",
  28602. image: {
  28603. source: "./media/characters/lilith-zott/front-dressed.svg",
  28604. extra: 2510 / 2238,
  28605. bottom: 100 / 2610
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(5 + 6 / 12, "feet")
  28613. },
  28614. {
  28615. name: "Macro",
  28616. height: math.unit(1030, "feet"),
  28617. default: true
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(6, "feet"),
  28626. weight: math.unit(150, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28630. extra: 2567 / 2435,
  28631. bottom: 39 / 2606
  28632. }
  28633. },
  28634. frontSuper: {
  28635. height: math.unit(6, "feet"),
  28636. name: "Front (Super)",
  28637. image: {
  28638. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28639. extra: 2567 / 2435,
  28640. bottom: 39 / 2606
  28641. }
  28642. },
  28643. },
  28644. [
  28645. {
  28646. name: "Normal",
  28647. height: math.unit(5 + 10 / 12, "feet")
  28648. },
  28649. {
  28650. name: "Macro",
  28651. height: math.unit(1100, "feet"),
  28652. default: true
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(100, "miles"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/sona/front.svg",
  28664. extra: 2433 / 2201,
  28665. bottom: 53 / 2486
  28666. }
  28667. },
  28668. foot: {
  28669. height: math.unit(16.1, "miles"),
  28670. name: "Foot",
  28671. image: {
  28672. source: "./media/characters/sona/foot.svg"
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Macro",
  28679. height: math.unit(100, "miles"),
  28680. default: true
  28681. },
  28682. ]
  28683. ))
  28684. characterMakers.push(() => makeCharacter(
  28685. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28686. {
  28687. front: {
  28688. height: math.unit(6, "feet"),
  28689. weight: math.unit(150, "lb"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/bailey/front.svg",
  28693. extra: 1778 / 1724,
  28694. bottom: 30 / 1808
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Micro",
  28701. height: math.unit(4, "inches")
  28702. },
  28703. {
  28704. name: "Normal",
  28705. height: math.unit(5 + 5 / 12, "feet"),
  28706. default: true
  28707. },
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(250, "feet")
  28711. },
  28712. {
  28713. name: "Megamacro",
  28714. height: math.unit(100, "miles")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(5 + 2 / 12, "feet"),
  28723. weight: math.unit(120, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/snaps/front.svg",
  28727. extra: 2370 / 2177,
  28728. bottom: 48 / 2418
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(5 + 2 / 12, "feet"),
  28733. weight: math.unit(120, "lb"),
  28734. name: "Back",
  28735. image: {
  28736. source: "./media/characters/snaps/back.svg",
  28737. extra: 2408 / 2258,
  28738. bottom: 15 / 2423
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Micro",
  28745. height: math.unit(9, "inches")
  28746. },
  28747. {
  28748. name: "Normal",
  28749. height: math.unit(5 + 2 / 12, "feet"),
  28750. default: true
  28751. },
  28752. {
  28753. name: "Mini Macro",
  28754. height: math.unit(10, "feet")
  28755. },
  28756. ]
  28757. ))
  28758. characterMakers.push(() => makeCharacter(
  28759. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28760. {
  28761. front: {
  28762. height: math.unit(1.8, "meters"),
  28763. weight: math.unit(85, "kg"),
  28764. name: "Front",
  28765. image: {
  28766. source: "./media/characters/azteck/front.svg",
  28767. extra: 2815 / 2625,
  28768. bottom: 89 / 2904
  28769. }
  28770. },
  28771. back: {
  28772. height: math.unit(1.8, "meters"),
  28773. weight: math.unit(85, "kg"),
  28774. name: "Back",
  28775. image: {
  28776. source: "./media/characters/azteck/back.svg",
  28777. extra: 2856 / 2648,
  28778. bottom: 85 / 2941
  28779. }
  28780. },
  28781. frontDressed: {
  28782. height: math.unit(1.8, "meters"),
  28783. weight: math.unit(85, "kg"),
  28784. name: "Front (Dressed)",
  28785. image: {
  28786. source: "./media/characters/azteck/front-dressed.svg",
  28787. extra: 2147 / 2003,
  28788. bottom: 68 / 2215
  28789. }
  28790. },
  28791. head: {
  28792. height: math.unit(0.47, "meters"),
  28793. weight: math.unit(85, "kg"),
  28794. name: "Head",
  28795. image: {
  28796. source: "./media/characters/azteck/head.svg"
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Bite sized",
  28803. height: math.unit(16, "cm")
  28804. },
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(1.8, "meters"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(6, "feet"),
  28817. weight: math.unit(150, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/pidge/front.svg",
  28821. extra: 620 / 588,
  28822. bottom: 9 / 629
  28823. }
  28824. },
  28825. back: {
  28826. height: math.unit(6, "feet"),
  28827. weight: math.unit(150, "lb"),
  28828. name: "Back",
  28829. image: {
  28830. source: "./media/characters/pidge/back.svg",
  28831. extra: 620 / 588,
  28832. bottom: 9 / 629
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(1, "mile"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(6, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/en/front.svg",
  28853. extra: 1697 / 1563,
  28854. bottom: 103 / 1800
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(6, "feet"),
  28859. weight: math.unit(150, "lb"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/en/back.svg",
  28863. extra: 1700 / 1570,
  28864. bottom: 51 / 1751
  28865. }
  28866. },
  28867. frontDressed: {
  28868. height: math.unit(6, "feet"),
  28869. weight: math.unit(150, "lb"),
  28870. name: "Front (Dressed)",
  28871. image: {
  28872. source: "./media/characters/en/front-dressed.svg",
  28873. extra: 1697 / 1563,
  28874. bottom: 103 / 1800
  28875. }
  28876. },
  28877. backDressed: {
  28878. height: math.unit(6, "feet"),
  28879. weight: math.unit(150, "lb"),
  28880. name: "Back (Dressed)",
  28881. image: {
  28882. source: "./media/characters/en/back-dressed.svg",
  28883. extra: 1700 / 1570,
  28884. bottom: 51 / 1751
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(210, "feet"),
  28892. default: true
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(6, "feet"),
  28901. weight: math.unit(150, "lb"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/haze-orris/front.svg",
  28905. extra: 3975 / 3525,
  28906. bottom: 137 / 4112
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Micro",
  28913. height: math.unit(150, "mm"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6, "feet"),
  28923. weight: math.unit(150, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/casselene-yaro/front.svg",
  28927. extra: 4721 / 4541,
  28928. bottom: 82 / 4803
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(6, "feet"),
  28933. weight: math.unit(150, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/casselene-yaro/back.svg",
  28937. extra: 4569 / 4377,
  28938. bottom: 69 / 4638
  28939. }
  28940. },
  28941. frontDressed: {
  28942. height: math.unit(6, "feet"),
  28943. weight: math.unit(150, "lb"),
  28944. name: "Front-dressed",
  28945. image: {
  28946. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28947. extra: 4721 / 4541,
  28948. bottom: 82 / 4803
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(190, "feet"),
  28956. default: true
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(6, "feet"),
  28965. weight: math.unit(150, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/myra-rue-delore/front.svg",
  28969. extra: 1340 / 1308,
  28970. bottom: 67 / 1407
  28971. }
  28972. },
  28973. back: {
  28974. height: math.unit(6, "feet"),
  28975. weight: math.unit(150, "lb"),
  28976. name: "Back",
  28977. image: {
  28978. source: "./media/characters/myra-rue-delore/back.svg",
  28979. extra: 1341 / 1310,
  28980. bottom: 40 / 1381
  28981. }
  28982. },
  28983. frontDressed: {
  28984. height: math.unit(6, "feet"),
  28985. weight: math.unit(150, "lb"),
  28986. name: "Front (Dressed)",
  28987. image: {
  28988. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28989. extra: 1340 / 1308,
  28990. bottom: 67 / 1407
  28991. }
  28992. },
  28993. },
  28994. [
  28995. {
  28996. name: "Macro",
  28997. height: math.unit(150, "feet"),
  28998. default: true
  28999. },
  29000. ]
  29001. ))
  29002. characterMakers.push(() => makeCharacter(
  29003. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29004. {
  29005. front: {
  29006. height: math.unit(10, "feet"),
  29007. weight: math.unit(15015, "lb"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/fem!plat/front.svg",
  29011. extra: 2799 / 2604,
  29012. bottom: 149 / 2948
  29013. }
  29014. },
  29015. },
  29016. [
  29017. {
  29018. name: "Normal",
  29019. height: math.unit(10, "feet"),
  29020. default: true
  29021. },
  29022. {
  29023. name: "Macro",
  29024. height: math.unit(100, "feet")
  29025. },
  29026. {
  29027. name: "Megamacro",
  29028. height: math.unit(1000, "feet")
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(15 + 5 / 12, "feet"),
  29037. weight: math.unit(4600, "lb"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/neapolitan-ananassa/front.svg",
  29041. extra: 2903 / 2736,
  29042. bottom: 0 / 2903
  29043. }
  29044. },
  29045. side: {
  29046. height: math.unit(15 + 5 / 12, "feet"),
  29047. weight: math.unit(4600, "lb"),
  29048. name: "Side",
  29049. image: {
  29050. source: "./media/characters/neapolitan-ananassa/side.svg",
  29051. extra: 2925 / 2719,
  29052. bottom: 0 / 2925
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(15 + 5 / 12, "feet"),
  29057. weight: math.unit(4600, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/neapolitan-ananassa/back.svg",
  29061. extra: 2903 / 2736,
  29062. bottom: 0 / 2903
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(15 + 5 / 12, "feet"),
  29070. default: true
  29071. },
  29072. {
  29073. name: "Post-Millenium",
  29074. height: math.unit(35 + 5 / 12, "feet")
  29075. },
  29076. {
  29077. name: "Post-Era",
  29078. height: math.unit(450 + 5 / 12, "feet")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(300, "meters"),
  29087. weight: math.unit(125000, "tonnes"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/pazuzu/front.svg",
  29091. extra: 877 / 794,
  29092. bottom: 47 / 924
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Macro",
  29099. height: math.unit(300, "meters"),
  29100. default: true
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29106. {
  29107. side: {
  29108. height: math.unit(10 + 7 / 12, "feet"),
  29109. weight: math.unit(2.5, "tons"),
  29110. name: "Side",
  29111. image: {
  29112. source: "./media/characters/aasha/side.svg",
  29113. extra: 1345 / 1245,
  29114. bottom: 111 / 1456
  29115. }
  29116. },
  29117. back: {
  29118. height: math.unit(10 + 7 / 12, "feet"),
  29119. weight: math.unit(2.5, "tons"),
  29120. name: "Back",
  29121. image: {
  29122. source: "./media/characters/aasha/back.svg",
  29123. extra: 1133 / 1057,
  29124. bottom: 257 / 1390
  29125. }
  29126. },
  29127. },
  29128. [
  29129. {
  29130. name: "Normal",
  29131. height: math.unit(10 + 7 / 12, "feet"),
  29132. default: true
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(6 + 3 / 12, "feet"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/nevan/front.svg",
  29144. extra: 704 / 704,
  29145. bottom: 28 / 732
  29146. }
  29147. },
  29148. back: {
  29149. height: math.unit(6 + 3 / 12, "feet"),
  29150. name: "Back",
  29151. image: {
  29152. source: "./media/characters/nevan/back.svg",
  29153. extra: 714 / 714,
  29154. bottom: 21 / 735
  29155. }
  29156. },
  29157. frontFlaccid: {
  29158. height: math.unit(6 + 3 / 12, "feet"),
  29159. name: "Front (Flaccid)",
  29160. image: {
  29161. source: "./media/characters/nevan/front-flaccid.svg",
  29162. extra: 704 / 704,
  29163. bottom: 28 / 732
  29164. }
  29165. },
  29166. frontErect: {
  29167. height: math.unit(6 + 3 / 12, "feet"),
  29168. name: "Front (Erect)",
  29169. image: {
  29170. source: "./media/characters/nevan/front-erect.svg",
  29171. extra: 704 / 704,
  29172. bottom: 28 / 732
  29173. }
  29174. },
  29175. backFlaccid: {
  29176. height: math.unit(6 + 3 / 12, "feet"),
  29177. name: "Back (Flaccid)",
  29178. image: {
  29179. source: "./media/characters/nevan/back-flaccid.svg",
  29180. extra: 714 / 714,
  29181. bottom: 21 / 735
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(6 + 3 / 12, "feet"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29195. {
  29196. front: {
  29197. height: math.unit(4, "feet"),
  29198. name: "Front",
  29199. image: {
  29200. source: "./media/characters/arhan/front.svg",
  29201. extra: 3368 / 3133,
  29202. bottom: 0 / 3368
  29203. }
  29204. },
  29205. side: {
  29206. height: math.unit(4, "feet"),
  29207. name: "Side",
  29208. image: {
  29209. source: "./media/characters/arhan/side.svg",
  29210. extra: 3347 / 3105,
  29211. bottom: 0 / 3347
  29212. }
  29213. },
  29214. tongue: {
  29215. height: math.unit(1.42, "feet"),
  29216. name: "Tongue",
  29217. image: {
  29218. source: "./media/characters/arhan/tongue.svg"
  29219. }
  29220. },
  29221. head: {
  29222. height: math.unit(0.85, "feet"),
  29223. name: "Head",
  29224. image: {
  29225. source: "./media/characters/arhan/head.svg"
  29226. }
  29227. },
  29228. },
  29229. [
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(4, "feet"),
  29233. default: true
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(5 + 7.5 / 12, "feet"),
  29242. weight: math.unit(120, "lb"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/digi-duncan/front.svg",
  29246. extra: 330 / 326,
  29247. bottom: 16 / 346
  29248. }
  29249. },
  29250. side: {
  29251. height: math.unit(5 + 7.5 / 12, "feet"),
  29252. weight: math.unit(120, "lb"),
  29253. name: "Side",
  29254. image: {
  29255. source: "./media/characters/digi-duncan/side.svg",
  29256. extra: 341 / 337,
  29257. bottom: 1 / 342
  29258. }
  29259. },
  29260. back: {
  29261. height: math.unit(5 + 7.5 / 12, "feet"),
  29262. weight: math.unit(120, "lb"),
  29263. name: "Back",
  29264. image: {
  29265. source: "./media/characters/digi-duncan/back.svg",
  29266. extra: 330 / 326,
  29267. bottom: 12 / 342
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Speck",
  29274. height: math.unit(0.25, "mm")
  29275. },
  29276. {
  29277. name: "Micro",
  29278. height: math.unit(5, "mm")
  29279. },
  29280. {
  29281. name: "Tiny",
  29282. height: math.unit(0.5, "inches"),
  29283. default: true
  29284. },
  29285. {
  29286. name: "Human",
  29287. height: math.unit(5 + 7.5 / 12, "feet")
  29288. },
  29289. {
  29290. name: "Minigiant",
  29291. height: math.unit(8 + 5.25, "feet")
  29292. },
  29293. {
  29294. name: "Giant",
  29295. height: math.unit(2000, "feet")
  29296. },
  29297. {
  29298. name: "Mega",
  29299. height: math.unit(371.1, "miles")
  29300. },
  29301. ]
  29302. ))
  29303. characterMakers.push(() => makeCharacter(
  29304. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29305. {
  29306. front: {
  29307. height: math.unit(2, "meters"),
  29308. weight: math.unit(350, "kg"),
  29309. name: "Front",
  29310. image: {
  29311. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29312. extra: 898 / 838,
  29313. bottom: 9 / 907
  29314. }
  29315. },
  29316. },
  29317. [
  29318. {
  29319. name: "Micro",
  29320. height: math.unit(8, "meters")
  29321. },
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(50, "meters"),
  29325. default: true
  29326. },
  29327. {
  29328. name: "Macro",
  29329. height: math.unit(500, "meters")
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(6 + 6 / 12, "feet"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/khardesh/front.svg",
  29341. extra: 888 / 797,
  29342. bottom: 25 / 913
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(6 + 6 / 12, "feet"),
  29350. default: true
  29351. },
  29352. {
  29353. name: "Normal+",
  29354. height: math.unit(4, "meters")
  29355. },
  29356. {
  29357. name: "Macro",
  29358. height: math.unit(50, "meters")
  29359. },
  29360. {
  29361. name: "Macro+",
  29362. height: math.unit(100, "meters")
  29363. },
  29364. {
  29365. name: "Megamacro",
  29366. height: math.unit(20, "km")
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(150, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/kosho/front.svg",
  29379. extra: 1847 / 1847,
  29380. bottom: 86 / 1933
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Second-stage micro",
  29387. height: math.unit(0.5, "inches")
  29388. },
  29389. {
  29390. name: "First-stage micro",
  29391. height: math.unit(6, "inches")
  29392. },
  29393. {
  29394. name: "Normal",
  29395. height: math.unit(6, "feet"),
  29396. default: true
  29397. },
  29398. {
  29399. name: "First-stage macro",
  29400. height: math.unit(72, "feet")
  29401. },
  29402. {
  29403. name: "Second-stage macro",
  29404. height: math.unit(864, "feet")
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29410. {
  29411. normal: {
  29412. height: math.unit(4 + 6 / 12, "feet"),
  29413. name: "Normal",
  29414. image: {
  29415. source: "./media/characters/hydra/normal.svg",
  29416. extra: 2833 / 2634,
  29417. bottom: 68 / 2901
  29418. }
  29419. },
  29420. smol: {
  29421. height: math.unit(0.705, "inches"),
  29422. name: "Smol",
  29423. image: {
  29424. source: "./media/characters/hydra/smol.svg",
  29425. extra: 2715 / 2540,
  29426. bottom: 0 / 2715
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(4 + 6 / 12, "feet"),
  29434. default: true
  29435. }
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(0.6, "cm"),
  29443. name: "Front",
  29444. image: {
  29445. source: "./media/characters/daz/front.svg",
  29446. extra: 1682 / 1164,
  29447. bottom: 42 / 1724
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(0.6, "cm"),
  29455. default: true
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(6, "feet"),
  29464. weight: math.unit(235, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/theo-pangolin/front.svg",
  29468. extra: 1996 / 1969,
  29469. bottom: 115 / 2111
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(235, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/theo-pangolin/back.svg",
  29478. extra: 1979 / 1979,
  29479. bottom: 40 / 2019
  29480. }
  29481. },
  29482. feral: {
  29483. height: math.unit(2, "feet"),
  29484. weight: math.unit(30, "lb"),
  29485. name: "Feral",
  29486. image: {
  29487. source: "./media/characters/theo-pangolin/feral.svg",
  29488. extra: 803 / 791,
  29489. bottom: 181 / 984
  29490. }
  29491. },
  29492. footFive: {
  29493. height: math.unit(1.43, "feet"),
  29494. name: "Foot (Five Toes)",
  29495. image: {
  29496. source: "./media/characters/theo-pangolin/foot-five.svg"
  29497. }
  29498. },
  29499. footFour: {
  29500. height: math.unit(1.43, "feet"),
  29501. name: "Foot (Four Toes)",
  29502. image: {
  29503. source: "./media/characters/theo-pangolin/foot-four.svg"
  29504. }
  29505. },
  29506. handFour: {
  29507. height: math.unit(0.81, "feet"),
  29508. name: "Hand (Four Fingers)",
  29509. image: {
  29510. source: "./media/characters/theo-pangolin/hand-four.svg"
  29511. }
  29512. },
  29513. handThree: {
  29514. height: math.unit(0.81, "feet"),
  29515. name: "Hand (Three Fingers)",
  29516. image: {
  29517. source: "./media/characters/theo-pangolin/hand-three.svg"
  29518. }
  29519. },
  29520. headFront: {
  29521. height: math.unit(1.37, "feet"),
  29522. name: "Head (Front)",
  29523. image: {
  29524. source: "./media/characters/theo-pangolin/head-front.svg"
  29525. }
  29526. },
  29527. headSide: {
  29528. height: math.unit(1.43, "feet"),
  29529. name: "Head (Side)",
  29530. image: {
  29531. source: "./media/characters/theo-pangolin/head-side.svg"
  29532. }
  29533. },
  29534. tongue: {
  29535. height: math.unit(2.29, "feet"),
  29536. name: "Tongue",
  29537. image: {
  29538. source: "./media/characters/theo-pangolin/tongue.svg"
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(6, "feet")
  29546. },
  29547. {
  29548. name: "Macro",
  29549. height: math.unit(400, "feet"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(6, "inches"),
  29559. weight: math.unit(0.036, "kg"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/renée/front.svg",
  29563. extra: 900 / 886,
  29564. bottom: 8 / 908
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Nano",
  29571. height: math.unit(1, "nm")
  29572. },
  29573. {
  29574. name: "Micro",
  29575. height: math.unit(1, "mm")
  29576. },
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(6, "inches")
  29580. },
  29581. {
  29582. name: "Macro",
  29583. height: math.unit(2000, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Megamacro",
  29588. height: math.unit(2, "km")
  29589. },
  29590. {
  29591. name: "Gigamacro",
  29592. height: math.unit(2000, "km")
  29593. },
  29594. {
  29595. name: "Teramacro",
  29596. height: math.unit(250000, "km")
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(4, "meters"),
  29605. weight: math.unit(150, "kg"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/caledvwlch/front.svg",
  29609. extra: 1760 / 1551,
  29610. bottom: 28 / 1788
  29611. }
  29612. },
  29613. side: {
  29614. height: math.unit(4, "meters"),
  29615. weight: math.unit(150, "kg"),
  29616. name: "Side",
  29617. image: {
  29618. source: "./media/characters/caledvwlch/side.svg",
  29619. extra: 1605 / 1536,
  29620. bottom: 31 / 1636
  29621. }
  29622. },
  29623. back: {
  29624. height: math.unit(4, "meters"),
  29625. weight: math.unit(150, "kg"),
  29626. name: "Back",
  29627. image: {
  29628. source: "./media/characters/caledvwlch/back.svg",
  29629. extra: 1635 / 1565,
  29630. bottom: 27 / 1662
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "\"Incognito\"",
  29637. height: math.unit(4, "meters")
  29638. },
  29639. {
  29640. name: "Small rampage",
  29641. height: math.unit(600, "meters")
  29642. },
  29643. {
  29644. name: "Mega",
  29645. height: math.unit(30, "km")
  29646. },
  29647. {
  29648. name: "Home-size",
  29649. height: math.unit(50, "km"),
  29650. default: true
  29651. },
  29652. {
  29653. name: "Giga",
  29654. height: math.unit(300, "km")
  29655. },
  29656. {
  29657. name: "Lounging",
  29658. height: math.unit(11000, "km")
  29659. },
  29660. {
  29661. name: "Planet snacking",
  29662. height: math.unit(2000000, "km")
  29663. },
  29664. ]
  29665. ))
  29666. characterMakers.push(() => makeCharacter(
  29667. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29668. {
  29669. front: {
  29670. height: math.unit(6, "feet"),
  29671. weight: math.unit(215, "lb"),
  29672. name: "Front",
  29673. image: {
  29674. source: "./media/characters/sapphire-svell/front.svg",
  29675. extra: 495 / 455,
  29676. bottom: 20 / 515
  29677. }
  29678. },
  29679. back: {
  29680. height: math.unit(6, "feet"),
  29681. weight: math.unit(216, "lb"),
  29682. name: "Back",
  29683. image: {
  29684. source: "./media/characters/sapphire-svell/back.svg",
  29685. extra: 497 / 477,
  29686. bottom: 7 / 504
  29687. }
  29688. },
  29689. maw: {
  29690. height: math.unit(1.57, "feet"),
  29691. name: "Maw",
  29692. image: {
  29693. source: "./media/characters/sapphire-svell/maw.svg"
  29694. }
  29695. },
  29696. foot: {
  29697. height: math.unit(1.07, "feet"),
  29698. name: "Foot",
  29699. image: {
  29700. source: "./media/characters/sapphire-svell/foot.svg"
  29701. }
  29702. },
  29703. toering: {
  29704. height: math.unit(1.7, "inch"),
  29705. name: "Toering",
  29706. image: {
  29707. source: "./media/characters/sapphire-svell/toering.svg"
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(300, "feet"),
  29715. default: true
  29716. },
  29717. {
  29718. name: "Augmented",
  29719. height: math.unit(1250, "feet")
  29720. },
  29721. {
  29722. name: "Unleashed",
  29723. height: math.unit(3000, "feet")
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29729. {
  29730. side: {
  29731. height: math.unit(2 + 3 / 12, "feet"),
  29732. weight: math.unit(110, "lb"),
  29733. name: "Side",
  29734. image: {
  29735. source: "./media/characters/glitch-flux/side.svg",
  29736. extra: 997 / 805,
  29737. bottom: 20 / 1017
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Normal",
  29744. height: math.unit(2 + 3 / 12, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(4, "meters"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/mid/front.svg",
  29757. extra: 507 / 476,
  29758. bottom: 17 / 524
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(4, "meters"),
  29763. name: "Back",
  29764. image: {
  29765. source: "./media/characters/mid/back.svg",
  29766. extra: 519 / 487,
  29767. bottom: 7 / 526
  29768. }
  29769. },
  29770. stuck: {
  29771. height: math.unit(2.2, "meters"),
  29772. name: "Stuck",
  29773. image: {
  29774. source: "./media/characters/mid/stuck.svg",
  29775. extra: 1951 / 1869,
  29776. bottom: 88 / 2039
  29777. }
  29778. }
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(4, "meters"),
  29784. default: true
  29785. },
  29786. {
  29787. name: "Big",
  29788. height: math.unit(10, "meters")
  29789. },
  29790. {
  29791. name: "Macro",
  29792. height: math.unit(800, "meters")
  29793. },
  29794. {
  29795. name: "Megamacro",
  29796. height: math.unit(100, "km")
  29797. },
  29798. {
  29799. name: "Overgrown",
  29800. height: math.unit(1, "parsec")
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29806. {
  29807. front: {
  29808. height: math.unit(2.5, "meters"),
  29809. weight: math.unit(225, "kg"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/iris/front.svg",
  29813. extra: 3348 / 3251,
  29814. bottom: 205 / 3553
  29815. }
  29816. },
  29817. maw: {
  29818. height: math.unit(0.56, "meter"),
  29819. name: "Maw",
  29820. image: {
  29821. source: "./media/characters/iris/maw.svg"
  29822. }
  29823. },
  29824. },
  29825. [
  29826. {
  29827. name: "Mewter cat",
  29828. height: math.unit(1.2, "meters")
  29829. },
  29830. {
  29831. name: "Minimacro",
  29832. height: math.unit(2.5, "meters"),
  29833. default: true
  29834. },
  29835. {
  29836. name: "Macro",
  29837. height: math.unit(180, "meters")
  29838. },
  29839. {
  29840. name: "Megamacro",
  29841. height: math.unit(2746, "meters")
  29842. },
  29843. ]
  29844. ))
  29845. characterMakers.push(() => makeCharacter(
  29846. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29847. {
  29848. front: {
  29849. height: math.unit(6, "feet"),
  29850. weight: math.unit(135, "lb"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/axel/front.svg",
  29854. extra: 908 / 908,
  29855. bottom: 58 / 966
  29856. }
  29857. },
  29858. side: {
  29859. height: math.unit(6, "feet"),
  29860. weight: math.unit(135, "lb"),
  29861. name: "Side",
  29862. image: {
  29863. source: "./media/characters/axel/side.svg",
  29864. extra: 958 / 958,
  29865. bottom: 11 / 969
  29866. }
  29867. },
  29868. back: {
  29869. height: math.unit(6, "feet"),
  29870. weight: math.unit(135, "lb"),
  29871. name: "Back",
  29872. image: {
  29873. source: "./media/characters/axel/back.svg",
  29874. extra: 887 / 887,
  29875. bottom: 34 / 921
  29876. }
  29877. },
  29878. head: {
  29879. height: math.unit(1.07, "feet"),
  29880. name: "Head",
  29881. image: {
  29882. source: "./media/characters/axel/head.svg"
  29883. }
  29884. },
  29885. beak: {
  29886. height: math.unit(1.4, "feet"),
  29887. name: "Beak",
  29888. image: {
  29889. source: "./media/characters/axel/beak.svg"
  29890. }
  29891. },
  29892. beakSide: {
  29893. height: math.unit(1.4, "feet"),
  29894. name: "Beak Side",
  29895. image: {
  29896. source: "./media/characters/axel/beak-side.svg"
  29897. }
  29898. },
  29899. sheath: {
  29900. height: math.unit(0.5, "feet"),
  29901. name: "Sheath",
  29902. image: {
  29903. source: "./media/characters/axel/sheath.svg"
  29904. }
  29905. },
  29906. dick: {
  29907. height: math.unit(0.98, "feet"),
  29908. name: "Dick",
  29909. image: {
  29910. source: "./media/characters/axel/dick.svg"
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Macro",
  29917. height: math.unit(68, "meters"),
  29918. default: true
  29919. },
  29920. ]
  29921. ))
  29922. characterMakers.push(() => makeCharacter(
  29923. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29924. {
  29925. front: {
  29926. height: math.unit(3.5, "meters"),
  29927. weight: math.unit(1200, "kg"),
  29928. name: "Front",
  29929. image: {
  29930. source: "./media/characters/joanna/front.svg",
  29931. extra: 1596 / 1488,
  29932. bottom: 29 / 1625
  29933. }
  29934. },
  29935. back: {
  29936. height: math.unit(3.5, "meters"),
  29937. weight: math.unit(1200, "kg"),
  29938. name: "Back",
  29939. image: {
  29940. source: "./media/characters/joanna/back.svg",
  29941. extra: 1594 / 1495,
  29942. bottom: 26 / 1620
  29943. }
  29944. },
  29945. frontShorts: {
  29946. height: math.unit(3.5, "meters"),
  29947. weight: math.unit(1200, "kg"),
  29948. name: "Front (Shorts)",
  29949. image: {
  29950. source: "./media/characters/joanna/front-shorts.svg",
  29951. extra: 1596 / 1488,
  29952. bottom: 29 / 1625
  29953. }
  29954. },
  29955. frontBiker: {
  29956. height: math.unit(3.5, "meters"),
  29957. weight: math.unit(1200, "kg"),
  29958. name: "Front (Biker)",
  29959. image: {
  29960. source: "./media/characters/joanna/front-biker.svg",
  29961. extra: 1596 / 1488,
  29962. bottom: 29 / 1625
  29963. }
  29964. },
  29965. backBiker: {
  29966. height: math.unit(3.5, "meters"),
  29967. weight: math.unit(1200, "kg"),
  29968. name: "Back (Biker)",
  29969. image: {
  29970. source: "./media/characters/joanna/back-biker.svg",
  29971. extra: 1594 / 1495,
  29972. bottom: 88 / 1682
  29973. }
  29974. },
  29975. bikeLeft: {
  29976. height: math.unit(2.4, "meters"),
  29977. weight: math.unit(1600, "kg"),
  29978. name: "Bike (Left)",
  29979. image: {
  29980. source: "./media/characters/joanna/bike-left.svg",
  29981. extra: 720 / 720,
  29982. bottom: 8 / 728
  29983. }
  29984. },
  29985. bikeRight: {
  29986. height: math.unit(2.4, "meters"),
  29987. weight: math.unit(1600, "kg"),
  29988. name: "Bike (Right)",
  29989. image: {
  29990. source: "./media/characters/joanna/bike-right.svg",
  29991. extra: 720 / 720,
  29992. bottom: 8 / 728
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Incognito",
  29999. height: math.unit(3.5, "meters")
  30000. },
  30001. {
  30002. name: "Casual Big",
  30003. height: math.unit(200, "meters")
  30004. },
  30005. {
  30006. name: "Macro",
  30007. height: math.unit(600, "meters")
  30008. },
  30009. {
  30010. name: "Original",
  30011. height: math.unit(20, "km"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Giga",
  30016. height: math.unit(400, "km")
  30017. },
  30018. {
  30019. name: "Lounging",
  30020. height: math.unit(1500, "km")
  30021. },
  30022. {
  30023. name: "Planetary",
  30024. height: math.unit(200000, "km")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(6, "feet"),
  30033. weight: math.unit(150, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/hugo-sigil/front.svg",
  30037. extra: 522 / 500,
  30038. bottom: 2 / 524
  30039. }
  30040. },
  30041. back: {
  30042. height: math.unit(6, "feet"),
  30043. weight: math.unit(150, "lb"),
  30044. name: "Back",
  30045. image: {
  30046. source: "./media/characters/hugo-sigil/back.svg",
  30047. extra: 519 / 495,
  30048. bottom: 5 / 524
  30049. }
  30050. },
  30051. maw: {
  30052. height: math.unit(1.4, "feet"),
  30053. weight: math.unit(150, "lb"),
  30054. name: "Maw",
  30055. image: {
  30056. source: "./media/characters/hugo-sigil/maw.svg"
  30057. }
  30058. },
  30059. feet: {
  30060. height: math.unit(1.56, "feet"),
  30061. weight: math.unit(150, "lb"),
  30062. name: "Feet",
  30063. image: {
  30064. source: "./media/characters/hugo-sigil/feet.svg",
  30065. extra: 177 / 177,
  30066. bottom: 12 / 189
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(6, "feet")
  30074. },
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(200, "feet"),
  30078. default: true
  30079. },
  30080. ]
  30081. ))
  30082. characterMakers.push(() => makeCharacter(
  30083. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30084. {
  30085. front: {
  30086. height: math.unit(6, "feet"),
  30087. weight: math.unit(150, "lb"),
  30088. name: "Front",
  30089. image: {
  30090. source: "./media/characters/peri/front.svg",
  30091. extra: 2354 / 2233,
  30092. bottom: 49 / 2403
  30093. }
  30094. },
  30095. },
  30096. [
  30097. {
  30098. name: "Really Small",
  30099. height: math.unit(1, "nm")
  30100. },
  30101. {
  30102. name: "Micro",
  30103. height: math.unit(4, "inches")
  30104. },
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(7, "inches"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Macro",
  30112. height: math.unit(400, "feet")
  30113. },
  30114. {
  30115. name: "Megamacro",
  30116. height: math.unit(100, "miles")
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30122. {
  30123. frontSlim: {
  30124. height: math.unit(7, "feet"),
  30125. name: "Front (Slim)",
  30126. image: {
  30127. source: "./media/characters/issilora/front-slim.svg",
  30128. extra: 529 / 449,
  30129. bottom: 53 / 582
  30130. }
  30131. },
  30132. sideSlim: {
  30133. height: math.unit(7, "feet"),
  30134. name: "Side (Slim)",
  30135. image: {
  30136. source: "./media/characters/issilora/side-slim.svg",
  30137. extra: 570 / 480,
  30138. bottom: 30 / 600
  30139. }
  30140. },
  30141. backSlim: {
  30142. height: math.unit(7, "feet"),
  30143. name: "Back (Slim)",
  30144. image: {
  30145. source: "./media/characters/issilora/back-slim.svg",
  30146. extra: 537 / 455,
  30147. bottom: 46 / 583
  30148. }
  30149. },
  30150. frontBuff: {
  30151. height: math.unit(7, "feet"),
  30152. name: "Front (Buff)",
  30153. image: {
  30154. source: "./media/characters/issilora/front-buff.svg",
  30155. extra: 2310 / 2035,
  30156. bottom: 335 / 2645
  30157. }
  30158. },
  30159. head: {
  30160. height: math.unit(1.94, "feet"),
  30161. name: "Head",
  30162. image: {
  30163. source: "./media/characters/issilora/head.svg"
  30164. }
  30165. },
  30166. },
  30167. [
  30168. {
  30169. name: "Minimum",
  30170. height: math.unit(7, "feet")
  30171. },
  30172. {
  30173. name: "Comfortable",
  30174. height: math.unit(17, "feet")
  30175. },
  30176. {
  30177. name: "Fun Size",
  30178. height: math.unit(47, "feet")
  30179. },
  30180. {
  30181. name: "Natural Macro",
  30182. height: math.unit(137, "feet"),
  30183. default: true
  30184. },
  30185. {
  30186. name: "Maximum Kaiju",
  30187. height: math.unit(397, "feet")
  30188. },
  30189. ]
  30190. ))
  30191. characterMakers.push(() => makeCharacter(
  30192. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30193. {
  30194. front: {
  30195. height: math.unit(50 + 9/12, "feet"),
  30196. weight: math.unit(32.8, "tons"),
  30197. name: "Front",
  30198. image: {
  30199. source: "./media/characters/irb'iiritaahn/front.svg",
  30200. extra: 1878/1826,
  30201. bottom: 326/2204
  30202. }
  30203. },
  30204. back: {
  30205. height: math.unit(50 + 9/12, "feet"),
  30206. weight: math.unit(32.8, "tons"),
  30207. name: "Back",
  30208. image: {
  30209. source: "./media/characters/irb'iiritaahn/back.svg",
  30210. extra: 2052/2018,
  30211. bottom: 152/2204
  30212. }
  30213. },
  30214. head: {
  30215. height: math.unit(12.86, "feet"),
  30216. name: "Head",
  30217. image: {
  30218. source: "./media/characters/irb'iiritaahn/head.svg"
  30219. }
  30220. },
  30221. maw: {
  30222. height: math.unit(9.66, "feet"),
  30223. name: "Maw",
  30224. image: {
  30225. source: "./media/characters/irb'iiritaahn/maw.svg"
  30226. }
  30227. },
  30228. frontDick: {
  30229. height: math.unit(8.78461, "feet"),
  30230. name: "Front Dick",
  30231. image: {
  30232. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30233. }
  30234. },
  30235. rearDick: {
  30236. height: math.unit(8.78461, "feet"),
  30237. name: "Rear Dick",
  30238. image: {
  30239. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30240. }
  30241. },
  30242. rearDickUnfolded: {
  30243. height: math.unit(8.78, "feet"),
  30244. name: "Rear Dick (Unfolded)",
  30245. image: {
  30246. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30247. }
  30248. },
  30249. wings: {
  30250. height: math.unit(43, "feet"),
  30251. name: "Wings",
  30252. image: {
  30253. source: "./media/characters/irb'iiritaahn/wings.svg"
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Macro",
  30260. height: math.unit(50 + 9/12, "feet"),
  30261. default: true
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30267. {
  30268. front: {
  30269. height: math.unit(205, "cm"),
  30270. weight: math.unit(102, "kg"),
  30271. name: "Front",
  30272. image: {
  30273. source: "./media/characters/irbisgreif/front.svg",
  30274. extra: 785/706,
  30275. bottom: 13/798
  30276. }
  30277. },
  30278. back: {
  30279. height: math.unit(205, "cm"),
  30280. weight: math.unit(102, "kg"),
  30281. name: "Back",
  30282. image: {
  30283. source: "./media/characters/irbisgreif/back.svg",
  30284. extra: 713/701,
  30285. bottom: 26/739
  30286. }
  30287. },
  30288. frontDressed: {
  30289. height: math.unit(216, "cm"),
  30290. weight: math.unit(102, "kg"),
  30291. name: "Front-dressed",
  30292. image: {
  30293. source: "./media/characters/irbisgreif/front-dressed.svg",
  30294. extra: 902/776,
  30295. bottom: 14/916
  30296. }
  30297. },
  30298. sideDressed: {
  30299. height: math.unit(195, "cm"),
  30300. weight: math.unit(102, "kg"),
  30301. name: "Side-dressed",
  30302. image: {
  30303. source: "./media/characters/irbisgreif/side-dressed.svg",
  30304. extra: 788/688,
  30305. bottom: 21/809
  30306. }
  30307. },
  30308. backDressed: {
  30309. height: math.unit(216, "cm"),
  30310. weight: math.unit(102, "kg"),
  30311. name: "Back-dressed",
  30312. image: {
  30313. source: "./media/characters/irbisgreif/back-dressed.svg",
  30314. extra: 901/783,
  30315. bottom: 10/911
  30316. }
  30317. },
  30318. dick: {
  30319. height: math.unit(0.49, "feet"),
  30320. name: "Dick",
  30321. image: {
  30322. source: "./media/characters/irbisgreif/dick.svg"
  30323. }
  30324. },
  30325. wingTop: {
  30326. height: math.unit(1.93 , "feet"),
  30327. name: "Wing-top",
  30328. image: {
  30329. source: "./media/characters/irbisgreif/wing-top.svg"
  30330. }
  30331. },
  30332. wingBottom: {
  30333. height: math.unit(1.93 , "feet"),
  30334. name: "Wing-bottom",
  30335. image: {
  30336. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30337. }
  30338. },
  30339. },
  30340. [
  30341. {
  30342. name: "Normal",
  30343. height: math.unit(216, "cm"),
  30344. default: true
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30350. {
  30351. front: {
  30352. height: math.unit(6, "feet"),
  30353. weight: math.unit(150, "lb"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/pride/front.svg",
  30357. extra: 1299/1230,
  30358. bottom: 18/1317
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(7, "feet")
  30366. },
  30367. {
  30368. name: "Mini-macro",
  30369. height: math.unit(11, "feet")
  30370. },
  30371. {
  30372. name: "Macro",
  30373. height: math.unit(15, "meters"),
  30374. default: true
  30375. },
  30376. {
  30377. name: "Macro+",
  30378. height: math.unit(40, "meters")
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30384. {
  30385. front: {
  30386. height: math.unit(4 + 2 / 12, "feet"),
  30387. weight: math.unit(95, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/vaelophis-nyx/front.svg",
  30391. extra: 2532/2330,
  30392. bottom: 0/2532
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(4 + 2 / 12, "feet"),
  30397. weight: math.unit(95, "lb"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/vaelophis-nyx/back.svg",
  30401. extra: 2484/2361,
  30402. bottom: 0/2484
  30403. }
  30404. },
  30405. feralSide: {
  30406. height: math.unit(2 + 1/12, "feet"),
  30407. weight: math.unit(20, "lb"),
  30408. name: "Feral (Side)",
  30409. image: {
  30410. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30411. extra: 1721/1581,
  30412. bottom: 70/1791
  30413. }
  30414. },
  30415. feralLazing: {
  30416. height: math.unit(1.08, "feet"),
  30417. weight: math.unit(20, "lb"),
  30418. name: "Feral (Lazing)",
  30419. image: {
  30420. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30421. extra: 822/822,
  30422. bottom: 248/1070
  30423. }
  30424. },
  30425. ear: {
  30426. height: math.unit(0.416, "feet"),
  30427. name: "Ear",
  30428. image: {
  30429. source: "./media/characters/vaelophis-nyx/ear.svg"
  30430. }
  30431. },
  30432. eye: {
  30433. height: math.unit(0.0748, "feet"),
  30434. name: "Eye",
  30435. image: {
  30436. source: "./media/characters/vaelophis-nyx/eye.svg"
  30437. }
  30438. },
  30439. mouth: {
  30440. height: math.unit(0.378, "feet"),
  30441. name: "Mouth",
  30442. image: {
  30443. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30444. }
  30445. },
  30446. spade: {
  30447. height: math.unit(0.55, "feet"),
  30448. name: "Spade",
  30449. image: {
  30450. source: "./media/characters/vaelophis-nyx/spade.svg"
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(4 + 2/12, "feet"),
  30458. default: true
  30459. },
  30460. ]
  30461. ))
  30462. characterMakers.push(() => makeCharacter(
  30463. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30464. {
  30465. front: {
  30466. height: math.unit(7, "feet"),
  30467. weight: math.unit(231, "lb"),
  30468. name: "Front",
  30469. image: {
  30470. source: "./media/characters/flux/front.svg",
  30471. extra: 919/871,
  30472. bottom: 0/919
  30473. }
  30474. },
  30475. back: {
  30476. height: math.unit(7, "feet"),
  30477. weight: math.unit(231, "lb"),
  30478. name: "Back",
  30479. image: {
  30480. source: "./media/characters/flux/back.svg",
  30481. extra: 1040/992,
  30482. bottom: 0/1040
  30483. }
  30484. },
  30485. frontDressed: {
  30486. height: math.unit(7, "feet"),
  30487. weight: math.unit(231, "lb"),
  30488. name: "Front (Dressed)",
  30489. image: {
  30490. source: "./media/characters/flux/front-dressed.svg",
  30491. extra: 919/871,
  30492. bottom: 0/919
  30493. }
  30494. },
  30495. feralSide: {
  30496. height: math.unit(5, "feet"),
  30497. weight: math.unit(150, "lb"),
  30498. name: "Feral (Side)",
  30499. image: {
  30500. source: "./media/characters/flux/feral-side.svg",
  30501. extra: 598/528,
  30502. bottom: 28/626
  30503. }
  30504. },
  30505. head: {
  30506. height: math.unit(1.585, "feet"),
  30507. name: "Head",
  30508. image: {
  30509. source: "./media/characters/flux/head.svg"
  30510. }
  30511. },
  30512. headSide: {
  30513. height: math.unit(1.74, "feet"),
  30514. name: "Head (Side)",
  30515. image: {
  30516. source: "./media/characters/flux/head-side.svg"
  30517. }
  30518. },
  30519. headSideFire: {
  30520. height: math.unit(1.76, "feet"),
  30521. name: "Head (Side, Fire)",
  30522. image: {
  30523. source: "./media/characters/flux/head-side-fire.svg"
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(7, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(9, "feet"),
  30540. weight: math.unit(1012, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/ulfra-lupae/front.svg",
  30544. extra: 1083/1011,
  30545. bottom: 67/1150
  30546. }
  30547. },
  30548. },
  30549. [
  30550. {
  30551. name: "Micro",
  30552. height: math.unit(6, "inches")
  30553. },
  30554. {
  30555. name: "Socializing",
  30556. height: math.unit(6 + 5/12, "feet")
  30557. },
  30558. {
  30559. name: "Normal",
  30560. height: math.unit(9, "feet"),
  30561. default: true
  30562. },
  30563. {
  30564. name: "Macro",
  30565. height: math.unit(150, "feet")
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(5 + 2/12, "feet"),
  30574. weight: math.unit(120, "lb"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/timber/front.svg",
  30578. extra: 2814/2705,
  30579. bottom: 181/2995
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(5 + 2/12, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(5 + 7/12, "feet"),
  30596. weight: math.unit(220, "lb"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/nicki/front.svg",
  30600. extra: 453/419,
  30601. bottom: 7/460
  30602. }
  30603. },
  30604. frontAlt: {
  30605. height: math.unit(5 + 7/12, "feet"),
  30606. weight: math.unit(220, "lb"),
  30607. name: "Front-alt",
  30608. image: {
  30609. source: "./media/characters/nicki/front-alt.svg",
  30610. extra: 435/411,
  30611. bottom: 12/447
  30612. }
  30613. },
  30614. back: {
  30615. height: math.unit(5 + 7/12, "feet"),
  30616. weight: math.unit(220, "lb"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/nicki/back.svg",
  30620. extra: 440/413,
  30621. bottom: 19/459
  30622. }
  30623. },
  30624. taur: {
  30625. height: math.unit(7 + 6/12, "feet"),
  30626. weight: math.unit(700, "lb"),
  30627. name: "Taur",
  30628. image: {
  30629. source: "./media/characters/nicki/taur.svg",
  30630. extra: 975/773,
  30631. bottom: 0/975
  30632. }
  30633. },
  30634. frontNsfw: {
  30635. height: math.unit(5 + 7/12, "feet"),
  30636. weight: math.unit(220, "lb"),
  30637. name: "Front (NSFW)",
  30638. image: {
  30639. source: "./media/characters/nicki/front-nsfw.svg",
  30640. extra: 453/419,
  30641. bottom: 7/460
  30642. }
  30643. },
  30644. frontNsfwAlt: {
  30645. height: math.unit(5 + 7/12, "feet"),
  30646. weight: math.unit(220, "lb"),
  30647. name: "Front (Alt, NSFW)",
  30648. image: {
  30649. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30650. extra: 435/411,
  30651. bottom: 12/447
  30652. }
  30653. },
  30654. backNsfw: {
  30655. height: math.unit(5 + 7/12, "feet"),
  30656. weight: math.unit(220, "lb"),
  30657. name: "Back (NSFW)",
  30658. image: {
  30659. source: "./media/characters/nicki/back-nsfw.svg",
  30660. extra: 440/413,
  30661. bottom: 19/459
  30662. }
  30663. },
  30664. head: {
  30665. height: math.unit(2.1, "feet"),
  30666. name: "Head",
  30667. image: {
  30668. source: "./media/characters/nicki/head.svg"
  30669. }
  30670. },
  30671. paw: {
  30672. height: math.unit(1.88, "feet"),
  30673. name: "Paw",
  30674. image: {
  30675. source: "./media/characters/nicki/paw.svg"
  30676. }
  30677. },
  30678. },
  30679. [
  30680. {
  30681. name: "Normal",
  30682. height: math.unit(5 + 7/12, "feet"),
  30683. default: true
  30684. },
  30685. ]
  30686. ))
  30687. characterMakers.push(() => makeCharacter(
  30688. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30689. {
  30690. front: {
  30691. height: math.unit(7 + 10/12, "feet"),
  30692. weight: math.unit(3.5, "tons"),
  30693. name: "Front",
  30694. image: {
  30695. source: "./media/characters/lee/front.svg",
  30696. extra: 1773/1615,
  30697. bottom: 86/1859
  30698. }
  30699. },
  30700. hand: {
  30701. height: math.unit(1.78, "feet"),
  30702. name: "Hand",
  30703. image: {
  30704. source: "./media/characters/lee/hand.svg"
  30705. }
  30706. },
  30707. maw: {
  30708. height: math.unit(1.18, "feet"),
  30709. name: "Maw",
  30710. image: {
  30711. source: "./media/characters/lee/maw.svg"
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(7 + 10/12, "feet"),
  30719. default: true
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30725. {
  30726. front: {
  30727. height: math.unit(9, "feet"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/guti/front.svg",
  30731. extra: 4551/4355,
  30732. bottom: 123/4674
  30733. }
  30734. },
  30735. tongue: {
  30736. height: math.unit(1, "feet"),
  30737. name: "Tongue",
  30738. image: {
  30739. source: "./media/characters/guti/tongue.svg"
  30740. }
  30741. },
  30742. paw: {
  30743. height: math.unit(1.18, "feet"),
  30744. name: "Paw",
  30745. image: {
  30746. source: "./media/characters/guti/paw.svg"
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Normal",
  30753. height: math.unit(9, "feet"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30760. {
  30761. side: {
  30762. height: math.unit(5, "meters"),
  30763. name: "Side",
  30764. image: {
  30765. source: "./media/characters/vesper/side.svg",
  30766. extra: 1605/1518,
  30767. bottom: 0/1605
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Small",
  30774. height: math.unit(5, "meters")
  30775. },
  30776. {
  30777. name: "Sage",
  30778. height: math.unit(100, "meters"),
  30779. default: true
  30780. },
  30781. {
  30782. name: "Fun Size",
  30783. height: math.unit(600, "meters")
  30784. },
  30785. {
  30786. name: "Goddess",
  30787. height: math.unit(20000, "km")
  30788. },
  30789. {
  30790. name: "Maximum",
  30791. height: math.unit(5, "galaxies")
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30797. {
  30798. front: {
  30799. height: math.unit(6 + 3/12, "feet"),
  30800. weight: math.unit(190, "lb"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/gawain/front.svg",
  30804. extra: 2222/2139,
  30805. bottom: 90/2312
  30806. }
  30807. },
  30808. back: {
  30809. height: math.unit(6 + 3/12, "feet"),
  30810. weight: math.unit(190, "lb"),
  30811. name: "Back",
  30812. image: {
  30813. source: "./media/characters/gawain/back.svg",
  30814. extra: 2199/2111,
  30815. bottom: 73/2272
  30816. }
  30817. },
  30818. },
  30819. [
  30820. {
  30821. name: "Normal",
  30822. height: math.unit(6 + 3/12, "feet"),
  30823. default: true
  30824. },
  30825. ]
  30826. ))
  30827. characterMakers.push(() => makeCharacter(
  30828. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30829. {
  30830. side: {
  30831. height: math.unit(3.5, "meters"),
  30832. weight: math.unit(16000, "lb"),
  30833. name: "Side",
  30834. image: {
  30835. source: "./media/characters/dascalti/side.svg",
  30836. extra: 392/273,
  30837. bottom: 47/439
  30838. }
  30839. },
  30840. breath: {
  30841. height: math.unit(7.4, "feet"),
  30842. name: "Breath",
  30843. image: {
  30844. source: "./media/characters/dascalti/breath.svg"
  30845. }
  30846. },
  30847. fed: {
  30848. height: math.unit(3.6, "meters"),
  30849. weight: math.unit(16000, "lb"),
  30850. name: "Fed",
  30851. image: {
  30852. source: "./media/characters/dascalti/fed.svg",
  30853. extra: 1419/820,
  30854. bottom: 95/1514
  30855. }
  30856. },
  30857. },
  30858. [
  30859. {
  30860. name: "Normal",
  30861. height: math.unit(3.5, "meters"),
  30862. default: true
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30868. {
  30869. front: {
  30870. height: math.unit(3 + 5/12, "feet"),
  30871. name: "Front",
  30872. image: {
  30873. source: "./media/characters/mauve/front.svg",
  30874. extra: 1126/1033,
  30875. bottom: 65/1191
  30876. }
  30877. },
  30878. side: {
  30879. height: math.unit(3 + 5/12, "feet"),
  30880. name: "Side",
  30881. image: {
  30882. source: "./media/characters/mauve/side.svg",
  30883. extra: 1089/1001,
  30884. bottom: 29/1118
  30885. }
  30886. },
  30887. back: {
  30888. height: math.unit(3 + 5/12, "feet"),
  30889. name: "Back",
  30890. image: {
  30891. source: "./media/characters/mauve/back.svg",
  30892. extra: 1173/1053,
  30893. bottom: 109/1282
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(3 + 5/12, "feet"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(6 + 3/12, "feet"),
  30910. weight: math.unit(430, "lb"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/carlos/front.svg",
  30914. extra: 1964/1913,
  30915. bottom: 70/2034
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Normal",
  30922. height: math.unit(6 + 3/12, "feet"),
  30923. default: true
  30924. },
  30925. ]
  30926. ))
  30927. characterMakers.push(() => makeCharacter(
  30928. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30929. {
  30930. back: {
  30931. height: math.unit(5 + 10/12, "feet"),
  30932. weight: math.unit(200, "lb"),
  30933. name: "Back",
  30934. image: {
  30935. source: "./media/characters/jax/back.svg",
  30936. extra: 764/739,
  30937. bottom: 25/789
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Normal",
  30944. height: math.unit(5 + 10/12, "feet"),
  30945. default: true
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(8, "feet"),
  30954. weight: math.unit(250, "lb"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/eikthynir/front.svg",
  30958. extra: 1332/1166,
  30959. bottom: 82/1414
  30960. }
  30961. },
  30962. back: {
  30963. height: math.unit(8, "feet"),
  30964. weight: math.unit(250, "lb"),
  30965. name: "Back",
  30966. image: {
  30967. source: "./media/characters/eikthynir/back.svg",
  30968. extra: 1342/1190,
  30969. bottom: 19/1361
  30970. }
  30971. },
  30972. dick: {
  30973. height: math.unit(2.35, "feet"),
  30974. name: "Dick",
  30975. image: {
  30976. source: "./media/characters/eikthynir/dick.svg"
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Normal",
  30983. height: math.unit(8, "feet"),
  30984. default: true
  30985. },
  30986. ]
  30987. ))
  30988. characterMakers.push(() => makeCharacter(
  30989. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30990. {
  30991. front: {
  30992. height: math.unit(99, "meters"),
  30993. weight: math.unit(13000, "tons"),
  30994. name: "Front",
  30995. image: {
  30996. source: "./media/characters/zlmos/front.svg",
  30997. extra: 2202/1992,
  30998. bottom: 315/2517
  30999. }
  31000. },
  31001. },
  31002. [
  31003. {
  31004. name: "Macro",
  31005. height: math.unit(99, "meters"),
  31006. default: true
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(6 + 5/12, "feet"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/purri/front.svg",
  31018. extra: 1698/1610,
  31019. bottom: 32/1730
  31020. }
  31021. },
  31022. frontAlt: {
  31023. height: math.unit(6 + 5/12, "feet"),
  31024. name: "Front (Alt)",
  31025. image: {
  31026. source: "./media/characters/purri/front-alt.svg",
  31027. extra: 450/420,
  31028. bottom: 26/476
  31029. }
  31030. },
  31031. boots: {
  31032. height: math.unit(5.5, "feet"),
  31033. name: "Boots",
  31034. image: {
  31035. source: "./media/characters/purri/boots.svg",
  31036. extra: 905/853,
  31037. bottom: 18/923
  31038. }
  31039. },
  31040. lying: {
  31041. height: math.unit(2, "feet"),
  31042. name: "Lying",
  31043. image: {
  31044. source: "./media/characters/purri/lying.svg",
  31045. extra: 940/843,
  31046. bottom: 146/1086
  31047. }
  31048. },
  31049. devious: {
  31050. height: math.unit(1.77, "feet"),
  31051. name: "Devious",
  31052. image: {
  31053. source: "./media/characters/purri/devious.svg",
  31054. extra: 1440/1155,
  31055. bottom: 147/1587
  31056. }
  31057. },
  31058. bean: {
  31059. height: math.unit(1.94, "feet"),
  31060. name: "Bean",
  31061. image: {
  31062. source: "./media/characters/purri/bean.svg"
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Micro",
  31069. height: math.unit(1, "mm")
  31070. },
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(6 + 5/12, "feet"),
  31074. default: true
  31075. },
  31076. {
  31077. name: "Macro :3c",
  31078. height: math.unit(2, "miles")
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(6 + 2/12, "feet"),
  31087. weight: math.unit(250, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/moonlight/front.svg",
  31091. extra: 1044/908,
  31092. bottom: 56/1100
  31093. }
  31094. },
  31095. feral: {
  31096. height: math.unit(3 + 1/12, "feet"),
  31097. weight: math.unit(50, "kg"),
  31098. name: "Feral",
  31099. image: {
  31100. source: "./media/characters/moonlight/feral.svg",
  31101. extra: 3705/2791,
  31102. bottom: 145/3850
  31103. }
  31104. },
  31105. paw: {
  31106. height: math.unit(1, "feet"),
  31107. name: "Paw",
  31108. image: {
  31109. source: "./media/characters/moonlight/paw.svg"
  31110. }
  31111. },
  31112. paws: {
  31113. height: math.unit(0.98, "feet"),
  31114. name: "Paws",
  31115. image: {
  31116. source: "./media/characters/moonlight/paws.svg",
  31117. extra: 939/939,
  31118. bottom: 50/989
  31119. }
  31120. },
  31121. mouth: {
  31122. height: math.unit(0.48, "feet"),
  31123. name: "Mouth",
  31124. image: {
  31125. source: "./media/characters/moonlight/mouth.svg"
  31126. }
  31127. },
  31128. dick: {
  31129. height: math.unit(1.46, "feet"),
  31130. name: "Dick",
  31131. image: {
  31132. source: "./media/characters/moonlight/dick.svg"
  31133. }
  31134. },
  31135. },
  31136. [
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(6 + 2/12, "feet"),
  31140. default: true
  31141. },
  31142. {
  31143. name: "Macro",
  31144. height: math.unit(300, "feet")
  31145. },
  31146. {
  31147. name: "Macro+",
  31148. height: math.unit(1, "mile")
  31149. },
  31150. {
  31151. name: "Mt. Moon",
  31152. height: math.unit(5, "miles")
  31153. },
  31154. {
  31155. name: "Megamacro",
  31156. height: math.unit(15, "miles")
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31162. {
  31163. back: {
  31164. height: math.unit(6, "feet"),
  31165. weight: math.unit(150, "lb"),
  31166. name: "Back",
  31167. image: {
  31168. source: "./media/characters/sylen/back.svg",
  31169. extra: 1335/1273,
  31170. bottom: 107/1442
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Normal",
  31177. height: math.unit(5 + 5/12, "feet")
  31178. },
  31179. {
  31180. name: "Megamacro",
  31181. height: math.unit(3, "miles"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(6, "feet"),
  31191. weight: math.unit(190, "lb"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/huttser/front.svg",
  31195. extra: 1152/1058,
  31196. bottom: 23/1175
  31197. }
  31198. },
  31199. side: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(190, "lb"),
  31202. name: "Side",
  31203. image: {
  31204. source: "./media/characters/huttser/side.svg",
  31205. extra: 1174/1065,
  31206. bottom: 18/1192
  31207. }
  31208. },
  31209. back: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(190, "lb"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/huttser/back.svg",
  31215. extra: 1158/1056,
  31216. bottom: 12/1170
  31217. }
  31218. },
  31219. },
  31220. [
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31225. {
  31226. side: {
  31227. height: math.unit(12 + 9/12, "feet"),
  31228. weight: math.unit(15000, "lb"),
  31229. name: "Side",
  31230. image: {
  31231. source: "./media/characters/faan/side.svg",
  31232. extra: 2747/2697,
  31233. bottom: 0/2747
  31234. }
  31235. },
  31236. front: {
  31237. height: math.unit(12 + 9/12, "feet"),
  31238. weight: math.unit(15000, "lb"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/faan/front.svg",
  31242. extra: 607/571,
  31243. bottom: 24/631
  31244. }
  31245. },
  31246. head: {
  31247. height: math.unit(2.85, "feet"),
  31248. name: "Head",
  31249. image: {
  31250. source: "./media/characters/faan/head.svg"
  31251. }
  31252. },
  31253. headAlt: {
  31254. height: math.unit(3.13, "feet"),
  31255. name: "Head-alt",
  31256. image: {
  31257. source: "./media/characters/faan/head-alt.svg"
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(12 + 9/12, "feet"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6, "feet"),
  31274. weight: math.unit(300, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/tanio/front.svg",
  31278. extra: 711/673,
  31279. bottom: 25/736
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(6, "feet"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(3, "inches"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/noboru/front.svg",
  31299. extra: 1039/932,
  31300. bottom: 18/1057
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Micro",
  31307. height: math.unit(3, "inches"),
  31308. default: true
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(1.85, "meters"),
  31317. weight: math.unit(80, "kg"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/daniel-barrett/front.svg",
  31321. extra: 355/337,
  31322. bottom: 9/364
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Pico",
  31329. height: math.unit(0.0433, "mm")
  31330. },
  31331. {
  31332. name: "Nano",
  31333. height: math.unit(1.5, "mm")
  31334. },
  31335. {
  31336. name: "Micro",
  31337. height: math.unit(5.3, "cm"),
  31338. default: true
  31339. },
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(1.85, "meters")
  31343. },
  31344. {
  31345. name: "Macro",
  31346. height: math.unit(64.7, "meters")
  31347. },
  31348. {
  31349. name: "Megamacro",
  31350. height: math.unit(2.26, "km")
  31351. },
  31352. {
  31353. name: "Gigamacro",
  31354. height: math.unit(79, "km")
  31355. },
  31356. {
  31357. name: "Teramacro",
  31358. height: math.unit(2765, "km")
  31359. },
  31360. {
  31361. name: "Petamacro",
  31362. height: math.unit(96678, "km")
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(30, "meters"),
  31371. weight: math.unit(400, "tons"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/zeel/front.svg",
  31375. extra: 2599/2599,
  31376. bottom: 226/2825
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Macro",
  31383. height: math.unit(30, "meters"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31390. {
  31391. front: {
  31392. height: math.unit(6 + 7/12, "feet"),
  31393. weight: math.unit(210, "lb"),
  31394. name: "Front",
  31395. image: {
  31396. source: "./media/characters/tarn/front.svg",
  31397. extra: 3517/3220,
  31398. bottom: 91/3608
  31399. }
  31400. },
  31401. back: {
  31402. height: math.unit(6 + 7/12, "feet"),
  31403. weight: math.unit(210, "lb"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/tarn/back.svg",
  31407. extra: 3566/3241,
  31408. bottom: 34/3600
  31409. }
  31410. },
  31411. dick: {
  31412. height: math.unit(1.65, "feet"),
  31413. name: "Dick",
  31414. image: {
  31415. source: "./media/characters/tarn/dick.svg"
  31416. }
  31417. },
  31418. paw: {
  31419. height: math.unit(1.80, "feet"),
  31420. name: "Paw",
  31421. image: {
  31422. source: "./media/characters/tarn/paw.svg"
  31423. }
  31424. },
  31425. tongue: {
  31426. height: math.unit(0.97, "feet"),
  31427. name: "Tongue",
  31428. image: {
  31429. source: "./media/characters/tarn/tongue.svg"
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Micro",
  31436. height: math.unit(4, "inches")
  31437. },
  31438. {
  31439. name: "Normal",
  31440. height: math.unit(6 + 7/12, "feet"),
  31441. default: true
  31442. },
  31443. {
  31444. name: "Macro",
  31445. height: math.unit(300, "feet")
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31451. {
  31452. front: {
  31453. height: math.unit(5 + 7/12, "feet"),
  31454. weight: math.unit(80, "kg"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31458. extra: 3023/2865,
  31459. bottom: 33/3056
  31460. }
  31461. },
  31462. back: {
  31463. height: math.unit(5 + 7/12, "feet"),
  31464. weight: math.unit(80, "kg"),
  31465. name: "Back",
  31466. image: {
  31467. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31468. extra: 3020/2886,
  31469. bottom: 30/3050
  31470. }
  31471. },
  31472. dick: {
  31473. height: math.unit(0.98, "feet"),
  31474. name: "Dick",
  31475. image: {
  31476. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31477. }
  31478. },
  31479. anatomy: {
  31480. height: math.unit(2.86, "feet"),
  31481. name: "Anatomy",
  31482. image: {
  31483. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31484. }
  31485. },
  31486. },
  31487. [
  31488. {
  31489. name: "Really Small",
  31490. height: math.unit(2, "inches")
  31491. },
  31492. {
  31493. name: "Micro",
  31494. height: math.unit(5.583, "inches")
  31495. },
  31496. {
  31497. name: "Normal",
  31498. height: math.unit(5 + 7/12, "feet"),
  31499. default: true
  31500. },
  31501. {
  31502. name: "Macro",
  31503. height: math.unit(67, "feet")
  31504. },
  31505. {
  31506. name: "Megamacro",
  31507. height: math.unit(134, "feet")
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(9, "feet"),
  31516. weight: math.unit(120, "lb"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/sally/front.svg",
  31520. extra: 1506/1349,
  31521. bottom: 66/1572
  31522. }
  31523. },
  31524. },
  31525. [
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(9, "feet"),
  31529. default: true
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31535. {
  31536. front: {
  31537. height: math.unit(8, "feet"),
  31538. weight: math.unit(900, "lb"),
  31539. name: "Front",
  31540. image: {
  31541. source: "./media/characters/owen/front.svg",
  31542. extra: 1761/1657,
  31543. bottom: 74/1835
  31544. }
  31545. },
  31546. side: {
  31547. height: math.unit(8, "feet"),
  31548. weight: math.unit(900, "lb"),
  31549. name: "Side",
  31550. image: {
  31551. source: "./media/characters/owen/side.svg",
  31552. extra: 1797/1734,
  31553. bottom: 30/1827
  31554. }
  31555. },
  31556. back: {
  31557. height: math.unit(8, "feet"),
  31558. weight: math.unit(900, "lb"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/owen/back.svg",
  31562. extra: 1796/1706,
  31563. bottom: 59/1855
  31564. }
  31565. },
  31566. maw: {
  31567. height: math.unit(1.76, "feet"),
  31568. name: "Maw",
  31569. image: {
  31570. source: "./media/characters/owen/maw.svg"
  31571. }
  31572. },
  31573. },
  31574. [
  31575. {
  31576. name: "Normal",
  31577. height: math.unit(8, "feet"),
  31578. default: true
  31579. },
  31580. ]
  31581. ))
  31582. characterMakers.push(() => makeCharacter(
  31583. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31584. {
  31585. front: {
  31586. height: math.unit(4, "feet"),
  31587. weight: math.unit(400, "lb"),
  31588. name: "Front",
  31589. image: {
  31590. source: "./media/characters/ryth/front.svg",
  31591. extra: 876/691,
  31592. bottom: 25/901
  31593. }
  31594. },
  31595. goia: {
  31596. height: math.unit(12, "feet"),
  31597. weight: math.unit(10800, "lb"),
  31598. name: "Goia",
  31599. image: {
  31600. source: "./media/characters/ryth/goia.svg",
  31601. extra: 3450/3198,
  31602. bottom: 61/3511
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(4, "feet"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(7, "feet"),
  31619. weight: math.unit(180, "lb"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/necrolance/front.svg",
  31623. extra: 1062/947,
  31624. bottom: 41/1103
  31625. }
  31626. },
  31627. back: {
  31628. height: math.unit(7, "feet"),
  31629. weight: math.unit(180, "lb"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/necrolance/back.svg",
  31633. extra: 1045/984,
  31634. bottom: 14/1059
  31635. }
  31636. },
  31637. wing: {
  31638. height: math.unit(2.67, "feet"),
  31639. name: "Wing",
  31640. image: {
  31641. source: "./media/characters/necrolance/wing.svg"
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(7, "feet"),
  31649. default: true
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31655. {
  31656. front: {
  31657. height: math.unit(76, "meters"),
  31658. weight: math.unit(30000, "tons"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/tyler/front.svg",
  31662. extra: 1640/1640,
  31663. bottom: 114/1754
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(76, "meters"),
  31671. default: true
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(4 + 11/12, "feet"),
  31680. weight: math.unit(132, "lb"),
  31681. name: "Front",
  31682. image: {
  31683. source: "./media/characters/icey/front.svg",
  31684. extra: 2750/2550,
  31685. bottom: 33/2783
  31686. }
  31687. },
  31688. back: {
  31689. height: math.unit(4 + 11/12, "feet"),
  31690. weight: math.unit(132, "lb"),
  31691. name: "Back",
  31692. image: {
  31693. source: "./media/characters/icey/back.svg",
  31694. extra: 2624/2481,
  31695. bottom: 35/2659
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(4 + 11/12, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(100, "feet"),
  31712. weight: math.unit(0, "lb"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/smile/front.svg",
  31716. extra: 2983/2912,
  31717. bottom: 162/3145
  31718. }
  31719. },
  31720. back: {
  31721. height: math.unit(100, "feet"),
  31722. weight: math.unit(0, "lb"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/smile/back.svg",
  31726. extra: 3143/3031,
  31727. bottom: 91/3234
  31728. }
  31729. },
  31730. head: {
  31731. height: math.unit(26.3, "feet"),
  31732. weight: math.unit(0, "lb"),
  31733. name: "Head",
  31734. image: {
  31735. source: "./media/characters/smile/head.svg"
  31736. }
  31737. },
  31738. collar: {
  31739. height: math.unit(5.3, "feet"),
  31740. weight: math.unit(0, "lb"),
  31741. name: "Collar",
  31742. image: {
  31743. source: "./media/characters/smile/collar.svg"
  31744. }
  31745. },
  31746. },
  31747. [
  31748. {
  31749. name: "Macro",
  31750. height: math.unit(100, "feet"),
  31751. default: true
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31757. {
  31758. dragon: {
  31759. height: math.unit(26, "feet"),
  31760. weight: math.unit(36, "tons"),
  31761. name: "Dragon",
  31762. image: {
  31763. source: "./media/characters/arimphae/dragon.svg",
  31764. extra: 1574/983,
  31765. bottom: 357/1931
  31766. }
  31767. },
  31768. drake: {
  31769. height: math.unit(9, "feet"),
  31770. weight: math.unit(1.5, "tons"),
  31771. name: "Drake",
  31772. image: {
  31773. source: "./media/characters/arimphae/drake.svg",
  31774. extra: 1120/925,
  31775. bottom: 435/1555
  31776. }
  31777. },
  31778. },
  31779. [
  31780. {
  31781. name: "Small",
  31782. height: math.unit(26*5/9, "feet")
  31783. },
  31784. {
  31785. name: "Normal",
  31786. height: math.unit(26, "feet"),
  31787. default: true
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31793. {
  31794. front: {
  31795. height: math.unit(8 + 9/12, "feet"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/xander/front.svg",
  31799. extra: 848/673,
  31800. bottom: 62/910
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(8 + 9/12, "feet"),
  31808. default: true
  31809. },
  31810. {
  31811. name: "Gaze Grabber",
  31812. height: math.unit(13 + 8/12, "feet")
  31813. },
  31814. {
  31815. name: "Jaw Dropper",
  31816. height: math.unit(27, "feet")
  31817. },
  31818. {
  31819. name: "Show Stopper",
  31820. height: math.unit(136, "feet")
  31821. },
  31822. {
  31823. name: "Superstar",
  31824. height: math.unit(1.9e6, "miles")
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31830. {
  31831. side: {
  31832. height: math.unit(2100, "feet"),
  31833. name: "Side",
  31834. image: {
  31835. source: "./media/characters/osiris/side.svg",
  31836. extra: 1105/939,
  31837. bottom: 167/1272
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Macro",
  31844. height: math.unit(2100, "feet"),
  31845. default: true
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(6 + 8/12, "feet"),
  31854. weight: math.unit(225, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/rhys-londe/front.svg",
  31858. extra: 2258/2141,
  31859. bottom: 188/2446
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(6 + 8/12, "feet"),
  31864. weight: math.unit(225, "lb"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/rhys-londe/back.svg",
  31868. extra: 2237/2137,
  31869. bottom: 63/2300
  31870. }
  31871. },
  31872. frontNsfw: {
  31873. height: math.unit(6 + 8/12, "feet"),
  31874. weight: math.unit(225, "lb"),
  31875. name: "Front (NSFW)",
  31876. image: {
  31877. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31878. extra: 2258/2141,
  31879. bottom: 188/2446
  31880. }
  31881. },
  31882. backNsfw: {
  31883. height: math.unit(6 + 8/12, "feet"),
  31884. weight: math.unit(225, "lb"),
  31885. name: "Back (NSFW)",
  31886. image: {
  31887. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31888. extra: 2237/2137,
  31889. bottom: 63/2300
  31890. }
  31891. },
  31892. dick: {
  31893. height: math.unit(30, "inches"),
  31894. name: "Dick",
  31895. image: {
  31896. source: "./media/characters/rhys-londe/dick.svg"
  31897. }
  31898. },
  31899. maw: {
  31900. height: math.unit(1.6, "feet"),
  31901. name: "Maw",
  31902. image: {
  31903. source: "./media/characters/rhys-londe/maw.svg"
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(6 + 8/12, "feet"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(3 + 10/12, "feet"),
  31920. weight: math.unit(90, "lb"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/taivas-ensim/front.svg",
  31924. extra: 1327/1216,
  31925. bottom: 96/1423
  31926. }
  31927. },
  31928. back: {
  31929. height: math.unit(3 + 10/12, "feet"),
  31930. weight: math.unit(90, "lb"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/taivas-ensim/back.svg",
  31934. extra: 1355/1247,
  31935. bottom: 11/1366
  31936. }
  31937. },
  31938. frontNsfw: {
  31939. height: math.unit(3 + 10/12, "feet"),
  31940. weight: math.unit(90, "lb"),
  31941. name: "Front (NSFW)",
  31942. image: {
  31943. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31944. extra: 1327/1216,
  31945. bottom: 96/1423
  31946. }
  31947. },
  31948. backNsfw: {
  31949. height: math.unit(3 + 10/12, "feet"),
  31950. weight: math.unit(90, "lb"),
  31951. name: "Back (NSFW)",
  31952. image: {
  31953. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31954. extra: 1355/1247,
  31955. bottom: 11/1366
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(3 + 10/12, "feet"),
  31963. default: true
  31964. },
  31965. ]
  31966. ))
  31967. characterMakers.push(() => makeCharacter(
  31968. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31969. {
  31970. front: {
  31971. height: math.unit(9 + 6/12, "feet"),
  31972. weight: math.unit(940, "lb"),
  31973. name: "Front",
  31974. image: {
  31975. source: "./media/characters/byliss/front.svg",
  31976. extra: 1327/1290,
  31977. bottom: 82/1409
  31978. }
  31979. },
  31980. back: {
  31981. height: math.unit(9 + 6/12, "feet"),
  31982. weight: math.unit(940, "lb"),
  31983. name: "Back",
  31984. image: {
  31985. source: "./media/characters/byliss/back.svg",
  31986. extra: 1376/1349,
  31987. bottom: 9/1385
  31988. }
  31989. },
  31990. frontNsfw: {
  31991. height: math.unit(9 + 6/12, "feet"),
  31992. weight: math.unit(940, "lb"),
  31993. name: "Front (NSFW)",
  31994. image: {
  31995. source: "./media/characters/byliss/front-nsfw.svg",
  31996. extra: 1327/1290,
  31997. bottom: 82/1409
  31998. }
  31999. },
  32000. backNsfw: {
  32001. height: math.unit(9 + 6/12, "feet"),
  32002. weight: math.unit(940, "lb"),
  32003. name: "Back (NSFW)",
  32004. image: {
  32005. source: "./media/characters/byliss/back-nsfw.svg",
  32006. extra: 1376/1349,
  32007. bottom: 9/1385
  32008. }
  32009. },
  32010. },
  32011. [
  32012. {
  32013. name: "Normal",
  32014. height: math.unit(9 + 6/12, "feet"),
  32015. default: true
  32016. },
  32017. ]
  32018. ))
  32019. characterMakers.push(() => makeCharacter(
  32020. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32021. {
  32022. front: {
  32023. height: math.unit(5 + 2/12, "feet"),
  32024. weight: math.unit(200, "lb"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/noraly/front.svg",
  32028. extra: 4985/4773,
  32029. bottom: 150/5135
  32030. }
  32031. },
  32032. full: {
  32033. height: math.unit(5 + 2/12, "feet"),
  32034. weight: math.unit(164, "lb"),
  32035. name: "Full",
  32036. image: {
  32037. source: "./media/characters/noraly/full.svg",
  32038. extra: 1114/1059,
  32039. bottom: 35/1149
  32040. }
  32041. },
  32042. fuller: {
  32043. height: math.unit(5 + 2/12, "feet"),
  32044. weight: math.unit(230, "lb"),
  32045. name: "Fuller",
  32046. image: {
  32047. source: "./media/characters/noraly/fuller.svg",
  32048. extra: 1114/1059,
  32049. bottom: 35/1149
  32050. }
  32051. },
  32052. fullest: {
  32053. height: math.unit(5 + 2/12, "feet"),
  32054. weight: math.unit(300, "lb"),
  32055. name: "Fullest",
  32056. image: {
  32057. source: "./media/characters/noraly/fullest.svg",
  32058. extra: 1114/1059,
  32059. bottom: 35/1149
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(5 + 2/12, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32073. {
  32074. front: {
  32075. height: math.unit(5 + 2/12, "feet"),
  32076. weight: math.unit(210, "lb"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/pera/front.svg",
  32080. extra: 1560/1531,
  32081. bottom: 165/1725
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(5 + 2/12, "feet"),
  32086. weight: math.unit(210, "lb"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/pera/back.svg",
  32090. extra: 1523/1493,
  32091. bottom: 152/1675
  32092. }
  32093. },
  32094. dick: {
  32095. height: math.unit(2.4, "feet"),
  32096. name: "Dick",
  32097. image: {
  32098. source: "./media/characters/pera/dick.svg"
  32099. }
  32100. },
  32101. },
  32102. [
  32103. {
  32104. name: "Normal",
  32105. height: math.unit(5 + 2/12, "feet"),
  32106. default: true
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(12, "feet"),
  32115. weight: math.unit(3200, "lb"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/julian/front.svg",
  32119. extra: 2962/2701,
  32120. bottom: 184/3146
  32121. }
  32122. },
  32123. maw: {
  32124. height: math.unit(5.35, "feet"),
  32125. name: "Maw",
  32126. image: {
  32127. source: "./media/characters/julian/maw.svg"
  32128. }
  32129. },
  32130. paw: {
  32131. height: math.unit(3.07, "feet"),
  32132. name: "Paw",
  32133. image: {
  32134. source: "./media/characters/julian/paw.svg"
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Default",
  32141. height: math.unit(12, "feet"),
  32142. default: true
  32143. },
  32144. {
  32145. name: "Big",
  32146. height: math.unit(50, "feet")
  32147. },
  32148. {
  32149. name: "Really Big",
  32150. height: math.unit(1, "mile")
  32151. },
  32152. {
  32153. name: "Extremely Big",
  32154. height: math.unit(100, "miles")
  32155. },
  32156. {
  32157. name: "Planet Hugger",
  32158. height: math.unit(200, "megameters")
  32159. },
  32160. {
  32161. name: "Unreasonably Big",
  32162. height: math.unit(1e300, "meters")
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32168. {
  32169. solgooleo: {
  32170. height: math.unit(4, "meters"),
  32171. weight: math.unit(6000*1.5, "kg"),
  32172. volume: math.unit(6000, "liters"),
  32173. name: "Solgooleo",
  32174. image: {
  32175. source: "./media/characters/pi/solgooleo.svg",
  32176. extra: 388/331,
  32177. bottom: 29/417
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(4, "meters"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(8 + 2/12, "feet"),
  32194. weight: math.unit(4, "tons"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/shaun/front.svg",
  32198. extra: 1550/1505,
  32199. bottom: 353/1903
  32200. }
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Lorg",
  32206. height: math.unit(8 + 2/12, "feet"),
  32207. default: true
  32208. },
  32209. ]
  32210. ))
  32211. characterMakers.push(() => makeCharacter(
  32212. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32213. {
  32214. front: {
  32215. height: math.unit(7, "feet"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/sini/front.svg",
  32219. extra: 726/678,
  32220. bottom: 35/761
  32221. }
  32222. },
  32223. back: {
  32224. height: math.unit(7, "feet"),
  32225. name: "Back",
  32226. image: {
  32227. source: "./media/characters/sini/back.svg",
  32228. extra: 743/701,
  32229. bottom: 12/755
  32230. }
  32231. },
  32232. mawAnthro: {
  32233. height: math.unit(2.14, "feet"),
  32234. name: "Maw (Anthro)",
  32235. image: {
  32236. source: "./media/characters/sini/maw-anthro.svg"
  32237. }
  32238. },
  32239. dick: {
  32240. height: math.unit(1.45, "feet"),
  32241. name: "Dick (Anthro)",
  32242. image: {
  32243. source: "./media/characters/sini/dick-anthro.svg"
  32244. }
  32245. },
  32246. feral: {
  32247. height: math.unit(16, "feet"),
  32248. name: "Feral",
  32249. image: {
  32250. source: "./media/characters/sini/feral.svg",
  32251. extra: 814/605,
  32252. bottom: 11/825
  32253. }
  32254. },
  32255. mawFeral: {
  32256. height: math.unit(5.66, "feet"),
  32257. name: "Maw-feral",
  32258. image: {
  32259. source: "./media/characters/sini/maw-feral.svg"
  32260. }
  32261. },
  32262. footFeral: {
  32263. height: math.unit(5.17, "feet"),
  32264. name: "Foot-feral",
  32265. image: {
  32266. source: "./media/characters/sini/foot-feral.svg"
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(7, "feet"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32280. {
  32281. side: {
  32282. height: math.unit(13, "meters"),
  32283. weight: math.unit(9072, "kg"),
  32284. name: "Side",
  32285. image: {
  32286. source: "./media/characters/raylldo/side.svg",
  32287. extra: 403/344,
  32288. bottom: 42/445
  32289. }
  32290. },
  32291. leaping: {
  32292. height: math.unit(12.3, "meters"),
  32293. weight: math.unit(9072, "kg"),
  32294. name: "Leaping",
  32295. image: {
  32296. source: "./media/characters/raylldo/leaping.svg",
  32297. extra: 470/249,
  32298. bottom: 13/483
  32299. }
  32300. },
  32301. flying: {
  32302. height: math.unit(18, "meters"),
  32303. weight: math.unit(9072, "kg"),
  32304. name: "Flying",
  32305. image: {
  32306. source: "./media/characters/raylldo/flying.svg"
  32307. }
  32308. },
  32309. head: {
  32310. height: math.unit(5.85, "meters"),
  32311. name: "Head",
  32312. image: {
  32313. source: "./media/characters/raylldo/head.svg"
  32314. }
  32315. },
  32316. maw: {
  32317. height: math.unit(5.32, "meters"),
  32318. name: "Maw",
  32319. image: {
  32320. source: "./media/characters/raylldo/maw.svg"
  32321. }
  32322. },
  32323. eye: {
  32324. height: math.unit(0.54, "meters"),
  32325. name: "Eye",
  32326. image: {
  32327. source: "./media/characters/raylldo/eye.svg"
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Normal",
  32334. height: math.unit(13, "meters"),
  32335. default: true
  32336. },
  32337. ]
  32338. ))
  32339. characterMakers.push(() => makeCharacter(
  32340. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32341. {
  32342. anthroFront: {
  32343. height: math.unit(9, "feet"),
  32344. weight: math.unit(600, "lb"),
  32345. name: "Anthro (Front)",
  32346. image: {
  32347. source: "./media/characters/glint/anthro-front.svg",
  32348. extra: 1097/1018,
  32349. bottom: 28/1125
  32350. }
  32351. },
  32352. anthroBack: {
  32353. height: math.unit(9, "feet"),
  32354. weight: math.unit(600, "lb"),
  32355. name: "Anthro (Back)",
  32356. image: {
  32357. source: "./media/characters/glint/anthro-back.svg",
  32358. extra: 1154/997,
  32359. bottom: 36/1190
  32360. }
  32361. },
  32362. feral: {
  32363. height: math.unit(11, "feet"),
  32364. weight: math.unit(50000, "lb"),
  32365. name: "Feral",
  32366. image: {
  32367. source: "./media/characters/glint/feral.svg",
  32368. extra: 3035/1585,
  32369. bottom: 1169/4204
  32370. }
  32371. },
  32372. dickAnthro: {
  32373. height: math.unit(0.7, "meters"),
  32374. name: "Dick (Anthro)",
  32375. image: {
  32376. source: "./media/characters/glint/dick-anthro.svg"
  32377. }
  32378. },
  32379. dickFeral: {
  32380. height: math.unit(2.65, "meters"),
  32381. name: "Dick (Feral)",
  32382. image: {
  32383. source: "./media/characters/glint/dick-feral.svg"
  32384. }
  32385. },
  32386. slitHidden: {
  32387. height: math.unit(5.85, "meters"),
  32388. name: "Slit (Hidden)",
  32389. image: {
  32390. source: "./media/characters/glint/slit-hidden.svg"
  32391. }
  32392. },
  32393. slitErect: {
  32394. height: math.unit(5.85, "meters"),
  32395. name: "Slit (Erect)",
  32396. image: {
  32397. source: "./media/characters/glint/slit-erect.svg"
  32398. }
  32399. },
  32400. mawAnthro: {
  32401. height: math.unit(0.63, "meters"),
  32402. name: "Maw (Anthro)",
  32403. image: {
  32404. source: "./media/characters/glint/maw.svg"
  32405. }
  32406. },
  32407. mawFeral: {
  32408. height: math.unit(2.89, "meters"),
  32409. name: "Maw (Feral)",
  32410. image: {
  32411. source: "./media/characters/glint/maw.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Normal",
  32418. height: math.unit(9, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32425. {
  32426. side: {
  32427. height: math.unit(15, "feet"),
  32428. weight: math.unit(5000, "kg"),
  32429. name: "Side",
  32430. image: {
  32431. source: "./media/characters/kairne/side.svg",
  32432. extra: 979/811,
  32433. bottom: 13/992
  32434. }
  32435. },
  32436. front: {
  32437. height: math.unit(15, "feet"),
  32438. weight: math.unit(5000, "kg"),
  32439. name: "Front",
  32440. image: {
  32441. source: "./media/characters/kairne/front.svg",
  32442. extra: 908/814,
  32443. bottom: 26/934
  32444. }
  32445. },
  32446. sideNsfw: {
  32447. height: math.unit(15, "feet"),
  32448. weight: math.unit(5000, "kg"),
  32449. name: "Side (NSFW)",
  32450. image: {
  32451. source: "./media/characters/kairne/side-nsfw.svg",
  32452. extra: 979/811,
  32453. bottom: 13/992
  32454. }
  32455. },
  32456. frontNsfw: {
  32457. height: math.unit(15, "feet"),
  32458. weight: math.unit(5000, "kg"),
  32459. name: "Front (NSFW)",
  32460. image: {
  32461. source: "./media/characters/kairne/front-nsfw.svg",
  32462. extra: 908/814,
  32463. bottom: 26/934
  32464. }
  32465. },
  32466. dickCaged: {
  32467. height: math.unit(0.65, "meters"),
  32468. name: "Dick-caged",
  32469. image: {
  32470. source: "./media/characters/kairne/dick-caged.svg"
  32471. }
  32472. },
  32473. dick: {
  32474. height: math.unit(0.79, "meters"),
  32475. name: "Dick",
  32476. image: {
  32477. source: "./media/characters/kairne/dick.svg"
  32478. }
  32479. },
  32480. genitals: {
  32481. height: math.unit(1.29, "meters"),
  32482. name: "Genitals",
  32483. image: {
  32484. source: "./media/characters/kairne/genitals.svg"
  32485. }
  32486. },
  32487. maw: {
  32488. height: math.unit(1.73, "meters"),
  32489. name: "Maw",
  32490. image: {
  32491. source: "./media/characters/kairne/maw.svg"
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(15, "feet"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(5 + 8/12, "feet"),
  32508. weight: math.unit(139, "lb"),
  32509. name: "Front",
  32510. image: {
  32511. source: "./media/characters/biscuit-jackal/front.svg",
  32512. extra: 2106/1961,
  32513. bottom: 58/2164
  32514. }
  32515. },
  32516. back: {
  32517. height: math.unit(5 + 8/12, "feet"),
  32518. weight: math.unit(139, "lb"),
  32519. name: "Back",
  32520. image: {
  32521. source: "./media/characters/biscuit-jackal/back.svg",
  32522. extra: 2132/1976,
  32523. bottom: 57/2189
  32524. }
  32525. },
  32526. werejackal: {
  32527. height: math.unit(6 + 3/12, "feet"),
  32528. weight: math.unit(188, "lb"),
  32529. name: "Werejackal",
  32530. image: {
  32531. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32532. extra: 2373/2178,
  32533. bottom: 53/2426
  32534. }
  32535. },
  32536. },
  32537. [
  32538. {
  32539. name: "Normal",
  32540. height: math.unit(5 + 8/12, "feet"),
  32541. default: true
  32542. },
  32543. ]
  32544. ))
  32545. characterMakers.push(() => makeCharacter(
  32546. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32547. {
  32548. front: {
  32549. height: math.unit(140, "cm"),
  32550. weight: math.unit(45, "kg"),
  32551. name: "Front",
  32552. image: {
  32553. source: "./media/characters/tayra-white/front.svg",
  32554. extra: 2229/2192,
  32555. bottom: 75/2304
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Normal",
  32562. height: math.unit(140, "cm"),
  32563. default: true
  32564. },
  32565. ]
  32566. ))
  32567. characterMakers.push(() => makeCharacter(
  32568. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32569. {
  32570. front: {
  32571. height: math.unit(4 + 5/12, "feet"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/scoop/front.svg",
  32575. extra: 1257/1136,
  32576. bottom: 69/1326
  32577. }
  32578. },
  32579. back: {
  32580. height: math.unit(4 + 5/12, "feet"),
  32581. name: "Back",
  32582. image: {
  32583. source: "./media/characters/scoop/back.svg",
  32584. extra: 1321/1152,
  32585. bottom: 32/1353
  32586. }
  32587. },
  32588. maw: {
  32589. height: math.unit(0.68, "feet"),
  32590. name: "Maw",
  32591. image: {
  32592. source: "./media/characters/scoop/maw.svg"
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Really Small",
  32599. height: math.unit(1, "mm")
  32600. },
  32601. {
  32602. name: "Micro",
  32603. height: math.unit(1, "inch")
  32604. },
  32605. {
  32606. name: "Normal",
  32607. height: math.unit(4 + 5/12, "feet"),
  32608. default: true
  32609. },
  32610. {
  32611. name: "Macro",
  32612. height: math.unit(200, "feet")
  32613. },
  32614. {
  32615. name: "Megamacro",
  32616. height: math.unit(3240, "feet")
  32617. },
  32618. {
  32619. name: "Teramacro",
  32620. height: math.unit(2500, "miles")
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(15 + 7/12, "feet"),
  32629. name: "Front",
  32630. image: {
  32631. source: "./media/characters/saphinara/front.svg",
  32632. extra: 604/546,
  32633. bottom: 19/623
  32634. }
  32635. },
  32636. side: {
  32637. height: math.unit(15 + 7/12, "feet"),
  32638. name: "Side",
  32639. image: {
  32640. source: "./media/characters/saphinara/side.svg",
  32641. extra: 605/547,
  32642. bottom: 6/611
  32643. }
  32644. },
  32645. back: {
  32646. height: math.unit(15 + 7/12, "feet"),
  32647. name: "Back",
  32648. image: {
  32649. source: "./media/characters/saphinara/back.svg",
  32650. extra: 591/531,
  32651. bottom: 13/604
  32652. }
  32653. },
  32654. frontTail: {
  32655. height: math.unit(15 + 7/12, "feet"),
  32656. name: "Front (Full Tail)",
  32657. image: {
  32658. source: "./media/characters/saphinara/front-tail.svg",
  32659. extra: 748/547,
  32660. bottom: 66/814
  32661. }
  32662. },
  32663. },
  32664. [
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(15 + 7/12, "feet"),
  32668. default: true
  32669. },
  32670. {
  32671. name: "Angry",
  32672. height: math.unit(30 + 6/12, "feet")
  32673. },
  32674. {
  32675. name: "Enraged",
  32676. height: math.unit(102 + 1/12, "feet")
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(6 + 8/12, "feet"),
  32685. weight: math.unit(300, "lb"),
  32686. name: "Front",
  32687. image: {
  32688. source: "./media/characters/jrain/front.svg",
  32689. extra: 3039/2865,
  32690. bottom: 399/3438
  32691. }
  32692. },
  32693. back: {
  32694. height: math.unit(6 + 8/12, "feet"),
  32695. weight: math.unit(300, "lb"),
  32696. name: "Back",
  32697. image: {
  32698. source: "./media/characters/jrain/back.svg",
  32699. extra: 3089/2938,
  32700. bottom: 172/3261
  32701. }
  32702. },
  32703. head: {
  32704. height: math.unit(2.14, "feet"),
  32705. name: "Head",
  32706. image: {
  32707. source: "./media/characters/jrain/head.svg"
  32708. }
  32709. },
  32710. maw: {
  32711. height: math.unit(1.77, "feet"),
  32712. name: "Maw",
  32713. image: {
  32714. source: "./media/characters/jrain/maw.svg"
  32715. }
  32716. },
  32717. leftHand: {
  32718. height: math.unit(1.1, "feet"),
  32719. name: "Left Hand",
  32720. image: {
  32721. source: "./media/characters/jrain/left-hand.svg"
  32722. }
  32723. },
  32724. rightHand: {
  32725. height: math.unit(1.1, "feet"),
  32726. name: "Right Hand",
  32727. image: {
  32728. source: "./media/characters/jrain/right-hand.svg"
  32729. }
  32730. },
  32731. eye: {
  32732. height: math.unit(0.35, "feet"),
  32733. name: "Eye",
  32734. image: {
  32735. source: "./media/characters/jrain/eye.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(6 + 8/12, "feet"),
  32743. default: true
  32744. },
  32745. {
  32746. name: "Casually Large",
  32747. height: math.unit(25, "feet")
  32748. },
  32749. {
  32750. name: "Giant",
  32751. height: math.unit(100, "feet")
  32752. },
  32753. {
  32754. name: "Kaiju",
  32755. height: math.unit(300, "feet")
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32761. {
  32762. dragon: {
  32763. height: math.unit(5, "meters"),
  32764. name: "Dragon",
  32765. image: {
  32766. source: "./media/characters/sabrina/dragon.svg",
  32767. extra: 3670 / 2365,
  32768. bottom: 333 / 4003
  32769. }
  32770. },
  32771. gryphon: {
  32772. height: math.unit(3, "meters"),
  32773. name: "Gryphon",
  32774. image: {
  32775. source: "./media/characters/sabrina/gryphon.svg",
  32776. extra: 1576 / 945,
  32777. bottom: 71 / 1647
  32778. }
  32779. },
  32780. snake: {
  32781. height: math.unit(12, "meters"),
  32782. name: "Snake",
  32783. image: {
  32784. source: "./media/characters/sabrina/snake.svg",
  32785. extra: 1758 / 1320,
  32786. bottom: 186 / 1944
  32787. }
  32788. },
  32789. collar: {
  32790. height: math.unit(1.86, "meters"),
  32791. name: "Collar",
  32792. image: {
  32793. source: "./media/characters/sabrina/collar.svg"
  32794. }
  32795. },
  32796. eye: {
  32797. height: math.unit(0.53, "meters"),
  32798. name: "Eye",
  32799. image: {
  32800. source: "./media/characters/sabrina/eye.svg"
  32801. }
  32802. },
  32803. foot: {
  32804. height: math.unit(1.86, "meters"),
  32805. name: "Foot",
  32806. image: {
  32807. source: "./media/characters/sabrina/foot.svg"
  32808. }
  32809. },
  32810. hand: {
  32811. height: math.unit(1.32, "meters"),
  32812. name: "Hand",
  32813. image: {
  32814. source: "./media/characters/sabrina/hand.svg"
  32815. }
  32816. },
  32817. head: {
  32818. height: math.unit(2.44, "meters"),
  32819. name: "Head",
  32820. image: {
  32821. source: "./media/characters/sabrina/head.svg"
  32822. }
  32823. },
  32824. headAngry: {
  32825. height: math.unit(2.44, "meters"),
  32826. name: "Head (Angry))",
  32827. image: {
  32828. source: "./media/characters/sabrina/head-angry.svg"
  32829. }
  32830. },
  32831. maw: {
  32832. height: math.unit(1.65, "meters"),
  32833. name: "Maw",
  32834. image: {
  32835. source: "./media/characters/sabrina/maw.svg"
  32836. }
  32837. },
  32838. spikes: {
  32839. height: math.unit(1.69, "meters"),
  32840. name: "Spikes",
  32841. image: {
  32842. source: "./media/characters/sabrina/spikes.svg"
  32843. }
  32844. },
  32845. stomach: {
  32846. height: math.unit(1.15, "meters"),
  32847. name: "Stomach",
  32848. image: {
  32849. source: "./media/characters/sabrina/stomach.svg"
  32850. }
  32851. },
  32852. tongue: {
  32853. height: math.unit(1.27, "meters"),
  32854. name: "Tongue",
  32855. image: {
  32856. source: "./media/characters/sabrina/tongue.svg"
  32857. }
  32858. },
  32859. wingDorsal: {
  32860. height: math.unit(4.85, "meters"),
  32861. name: "Wing (Dorsal)",
  32862. image: {
  32863. source: "./media/characters/sabrina/wing-dorsal.svg"
  32864. }
  32865. },
  32866. wingVentral: {
  32867. height: math.unit(4.85, "meters"),
  32868. name: "Wing (Ventral)",
  32869. image: {
  32870. source: "./media/characters/sabrina/wing-ventral.svg"
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(5, "meters"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32884. {
  32885. frontMaid: {
  32886. height: math.unit(5 + 5/12, "feet"),
  32887. weight: math.unit(130, "lb"),
  32888. name: "Front (Maid)",
  32889. image: {
  32890. source: "./media/characters/midnight-tales/front-maid.svg",
  32891. extra: 489/454,
  32892. bottom: 61/550
  32893. }
  32894. },
  32895. frontFormal: {
  32896. height: math.unit(5 + 5/12, "feet"),
  32897. weight: math.unit(130, "lb"),
  32898. name: "Front (Formal)",
  32899. image: {
  32900. source: "./media/characters/midnight-tales/front-formal.svg",
  32901. extra: 489/454,
  32902. bottom: 61/550
  32903. }
  32904. },
  32905. back: {
  32906. height: math.unit(5 + 5/12, "feet"),
  32907. weight: math.unit(130, "lb"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/midnight-tales/back.svg",
  32911. extra: 498/456,
  32912. bottom: 33/531
  32913. }
  32914. },
  32915. frontBeast: {
  32916. height: math.unit(40, "feet"),
  32917. weight: math.unit(64000, "lb"),
  32918. name: "Front (Beast)",
  32919. image: {
  32920. source: "./media/characters/midnight-tales/front-beast.svg",
  32921. extra: 927/860,
  32922. bottom: 53/980
  32923. }
  32924. },
  32925. backBeast: {
  32926. height: math.unit(40, "feet"),
  32927. weight: math.unit(64000, "lb"),
  32928. name: "Back (Beast)",
  32929. image: {
  32930. source: "./media/characters/midnight-tales/back-beast.svg",
  32931. extra: 929/855,
  32932. bottom: 16/945
  32933. }
  32934. },
  32935. footBeast: {
  32936. height: math.unit(6.7, "feet"),
  32937. name: "Foot (Beast)",
  32938. image: {
  32939. source: "./media/characters/midnight-tales/foot-beast.svg"
  32940. }
  32941. },
  32942. headBeast: {
  32943. height: math.unit(8, "feet"),
  32944. name: "Head (Beast)",
  32945. image: {
  32946. source: "./media/characters/midnight-tales/head-beast.svg"
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(5 + 5 / 12, "feet"),
  32954. default: true
  32955. },
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(25, "feet")
  32959. },
  32960. ]
  32961. ))
  32962. characterMakers.push(() => makeCharacter(
  32963. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32964. {
  32965. front: {
  32966. height: math.unit(5 + 10/12, "feet"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/argon/front.svg",
  32970. extra: 2009/1935,
  32971. bottom: 118/2127
  32972. }
  32973. },
  32974. back: {
  32975. height: math.unit(5 + 10/12, "feet"),
  32976. name: "Back",
  32977. image: {
  32978. source: "./media/characters/argon/back.svg",
  32979. extra: 2047/1992,
  32980. bottom: 20/2067
  32981. }
  32982. },
  32983. frontDressed: {
  32984. height: math.unit(5 + 10/12, "feet"),
  32985. name: "Front (Dressed)",
  32986. image: {
  32987. source: "./media/characters/argon/front-dressed.svg",
  32988. extra: 2009/1935,
  32989. bottom: 118/2127
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(5 + 10/12, "feet"),
  32997. default: true
  32998. },
  32999. ]
  33000. ))
  33001. characterMakers.push(() => makeCharacter(
  33002. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33003. {
  33004. front: {
  33005. height: math.unit(8 + 6/12, "feet"),
  33006. weight: math.unit(1150, "lb"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/kichi/front.svg",
  33010. extra: 1267/1164,
  33011. bottom: 61/1328
  33012. }
  33013. },
  33014. back: {
  33015. height: math.unit(8 + 6/12, "feet"),
  33016. weight: math.unit(1150, "lb"),
  33017. name: "Back",
  33018. image: {
  33019. source: "./media/characters/kichi/back.svg",
  33020. extra: 1273/1166,
  33021. bottom: 33/1306
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(8 + 6/12, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(6, "feet"),
  33038. weight: math.unit(210, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/manetel-greyscale/front.svg",
  33042. extra: 350/312,
  33043. bottom: 8/358
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Micro",
  33050. height: math.unit(2, "inches")
  33051. },
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(6, "feet"),
  33055. default: true
  33056. },
  33057. {
  33058. name: "Minimacro",
  33059. height: math.unit(17, "feet")
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(117, "feet")
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33069. {
  33070. side: {
  33071. height: math.unit(5 + 1/12, "feet"),
  33072. weight: math.unit(418, "lb"),
  33073. name: "Side",
  33074. image: {
  33075. source: "./media/characters/softpurr/side.svg",
  33076. extra: 1993/1945,
  33077. bottom: 134/2127
  33078. }
  33079. },
  33080. front: {
  33081. height: math.unit(5 + 1/12, "feet"),
  33082. weight: math.unit(418, "lb"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/softpurr/front.svg",
  33086. extra: 1950/1856,
  33087. bottom: 174/2124
  33088. }
  33089. },
  33090. paw: {
  33091. height: math.unit(1, "feet"),
  33092. name: "Paw",
  33093. image: {
  33094. source: "./media/characters/softpurr/paw.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(5 + 1/12, "feet"),
  33102. default: true
  33103. },
  33104. ]
  33105. ))
  33106. characterMakers.push(() => makeCharacter(
  33107. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33108. {
  33109. front: {
  33110. height: math.unit(260, "meters"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/anahita/front.svg",
  33114. extra: 665/635,
  33115. bottom: 89/754
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(260, "meters"),
  33123. default: true
  33124. },
  33125. ]
  33126. ))
  33127. characterMakers.push(() => makeCharacter(
  33128. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33129. {
  33130. front: {
  33131. height: math.unit(4 + 10/12, "feet"),
  33132. weight: math.unit(160, "lb"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/chip-mouse/front.svg",
  33136. extra: 3528/3408,
  33137. bottom: 0/3528
  33138. }
  33139. },
  33140. frontNsfw: {
  33141. height: math.unit(4 + 10/12, "feet"),
  33142. weight: math.unit(160, "lb"),
  33143. name: "Front (NSFW)",
  33144. image: {
  33145. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33146. extra: 3528/3408,
  33147. bottom: 0/3528
  33148. }
  33149. },
  33150. },
  33151. [
  33152. {
  33153. name: "Normal",
  33154. height: math.unit(4 + 10/12, "feet"),
  33155. default: true
  33156. },
  33157. ]
  33158. ))
  33159. characterMakers.push(() => makeCharacter(
  33160. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33161. {
  33162. side: {
  33163. height: math.unit(10, "feet"),
  33164. weight: math.unit(14000, "lb"),
  33165. name: "Side",
  33166. image: {
  33167. source: "./media/characters/kremm/side.svg",
  33168. extra: 1390/1053,
  33169. bottom: 90/1480
  33170. }
  33171. },
  33172. gut: {
  33173. height: math.unit(5.8, "feet"),
  33174. name: "Gut",
  33175. image: {
  33176. source: "./media/characters/kremm/gut.svg"
  33177. }
  33178. },
  33179. ass: {
  33180. height: math.unit(6.1, "feet"),
  33181. name: "Ass",
  33182. image: {
  33183. source: "./media/characters/kremm/ass.svg"
  33184. }
  33185. },
  33186. jaws: {
  33187. height: math.unit(2.2, "feet"),
  33188. name: "Jaws",
  33189. image: {
  33190. source: "./media/characters/kremm/jaws.svg"
  33191. }
  33192. },
  33193. dick: {
  33194. height: math.unit(4.26, "feet"),
  33195. name: "Dick",
  33196. image: {
  33197. source: "./media/characters/kremm/dick.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Normal",
  33204. height: math.unit(10, "feet"),
  33205. default: true
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33211. {
  33212. front: {
  33213. height: math.unit(30, "stories"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/kai/front.svg",
  33217. extra: 1892/1718,
  33218. bottom: 162/2054
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Macro",
  33225. height: math.unit(30, "stories"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(6 + 4/12, "feet"),
  33235. weight: math.unit(145, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/sykes/front.svg",
  33239. extra: 1321 / 1187,
  33240. bottom: 66 / 1387
  33241. }
  33242. },
  33243. back: {
  33244. height: math.unit(6 + 4/12, "feet"),
  33245. weight: math.unit(145, "lb"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/sykes/back.svg",
  33249. extra: 1326/1181,
  33250. bottom: 31/1357
  33251. }
  33252. },
  33253. handBack: {
  33254. height: math.unit(0.9, "feet"),
  33255. name: "Hand (Back)",
  33256. image: {
  33257. source: "./media/characters/sykes/hand-back.svg"
  33258. }
  33259. },
  33260. handFront: {
  33261. height: math.unit(0.839, "feet"),
  33262. name: "Hand (Front)",
  33263. image: {
  33264. source: "./media/characters/sykes/hand-front.svg"
  33265. }
  33266. },
  33267. leftFoot: {
  33268. height: math.unit(1.2, "feet"),
  33269. name: "Foot (Left)",
  33270. image: {
  33271. source: "./media/characters/sykes/foot-left.svg"
  33272. }
  33273. },
  33274. rightFoot: {
  33275. height: math.unit(1.2, "feet"),
  33276. name: "Foot (Right)",
  33277. image: {
  33278. source: "./media/characters/sykes/foot-right.svg"
  33279. }
  33280. },
  33281. maw: {
  33282. height: math.unit(1.93, "feet"),
  33283. name: "Maw",
  33284. image: {
  33285. source: "./media/characters/sykes/maw.svg"
  33286. }
  33287. },
  33288. teeth: {
  33289. height: math.unit(0.51, "feet"),
  33290. name: "Teeth",
  33291. image: {
  33292. source: "./media/characters/sykes/teeth.svg"
  33293. }
  33294. },
  33295. tongue: {
  33296. height: math.unit(2.13, "feet"),
  33297. name: "Tongue",
  33298. image: {
  33299. source: "./media/characters/sykes/tongue.svg"
  33300. }
  33301. },
  33302. uvula: {
  33303. height: math.unit(0.16, "feet"),
  33304. name: "Uvula",
  33305. image: {
  33306. source: "./media/characters/sykes/uvula.svg"
  33307. }
  33308. },
  33309. collar: {
  33310. height: math.unit(0.287, "feet"),
  33311. name: "Collar",
  33312. image: {
  33313. source: "./media/characters/sykes/collar.svg"
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Shrunken",
  33320. height: math.unit(5, "inches")
  33321. },
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(6 + 4 / 12, "feet"),
  33325. default: true
  33326. },
  33327. {
  33328. name: "Big",
  33329. height: math.unit(15, "feet")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(5 + 8/12, "feet"),
  33338. weight: math.unit(190, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/oven-otter/front.svg",
  33342. extra: 1809/1740,
  33343. bottom: 181/1990
  33344. }
  33345. },
  33346. back: {
  33347. height: math.unit(5 + 8/12, "feet"),
  33348. weight: math.unit(190, "lb"),
  33349. name: "Back",
  33350. image: {
  33351. source: "./media/characters/oven-otter/back.svg",
  33352. extra: 1709/1635,
  33353. bottom: 118/1827
  33354. }
  33355. },
  33356. hand: {
  33357. height: math.unit(1.07, "feet"),
  33358. name: "Hand",
  33359. image: {
  33360. source: "./media/characters/oven-otter/hand.svg"
  33361. }
  33362. },
  33363. beans: {
  33364. height: math.unit(1.74, "feet"),
  33365. name: "Beans",
  33366. image: {
  33367. source: "./media/characters/oven-otter/beans.svg"
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Micro",
  33374. height: math.unit(0.5, "inches")
  33375. },
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(5 + 8/12, "feet"),
  33379. default: true
  33380. },
  33381. {
  33382. name: "Macro",
  33383. height: math.unit(250, "feet")
  33384. },
  33385. {
  33386. name: "Really High",
  33387. height: math.unit(420, "feet")
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33393. {
  33394. front: {
  33395. height: math.unit(5, "meters"),
  33396. weight: math.unit(292000000000000, "kg"),
  33397. name: "Front",
  33398. image: {
  33399. source: "./media/characters/devourer/front.svg",
  33400. extra: 1800/1733,
  33401. bottom: 211/2011
  33402. }
  33403. },
  33404. maw: {
  33405. height: math.unit(1.1, "meter"),
  33406. name: "Maw",
  33407. image: {
  33408. source: "./media/characters/devourer/maw.svg"
  33409. }
  33410. },
  33411. },
  33412. [
  33413. {
  33414. name: "Small",
  33415. height: math.unit(3, "meters")
  33416. },
  33417. {
  33418. name: "Large",
  33419. height: math.unit(5, "meters"),
  33420. default: true
  33421. },
  33422. ]
  33423. ))
  33424. characterMakers.push(() => makeCharacter(
  33425. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33426. {
  33427. front: {
  33428. height: math.unit(6, "feet"),
  33429. weight: math.unit(400, "lb"),
  33430. name: "Front",
  33431. image: {
  33432. source: "./media/characters/ellarby/front.svg",
  33433. extra: 1909/1763,
  33434. bottom: 80/1989
  33435. }
  33436. },
  33437. back: {
  33438. height: math.unit(6, "feet"),
  33439. weight: math.unit(400, "lb"),
  33440. name: "Back",
  33441. image: {
  33442. source: "./media/characters/ellarby/back.svg",
  33443. extra: 1914/1784,
  33444. bottom: 172/2086
  33445. }
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Mischief",
  33451. height: math.unit(18, "inches")
  33452. },
  33453. {
  33454. name: "Trouble",
  33455. height: math.unit(12, "feet")
  33456. },
  33457. {
  33458. name: "Havoc",
  33459. height: math.unit(200, "feet"),
  33460. default: true
  33461. },
  33462. {
  33463. name: "Pandemonium",
  33464. height: math.unit(1, "mile")
  33465. },
  33466. {
  33467. name: "Catastrophe",
  33468. height: math.unit(100, "miles")
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33474. {
  33475. front: {
  33476. height: math.unit(4.7, "meters"),
  33477. weight: math.unit(6500, "kg"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/vex/front.svg",
  33481. extra: 1288/1140,
  33482. bottom: 100/1388
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Normal",
  33489. height: math.unit(4.7, "meters"),
  33490. default: true
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33496. {
  33497. normal: {
  33498. height: math.unit(6, "feet"),
  33499. weight: math.unit(350, "lb"),
  33500. name: "Normal",
  33501. image: {
  33502. source: "./media/characters/teshy/normal.svg",
  33503. extra: 1795/1735,
  33504. bottom: 16/1811
  33505. }
  33506. },
  33507. monsterFront: {
  33508. height: math.unit(12, "feet"),
  33509. weight: math.unit(4700, "lb"),
  33510. name: "Monster (Front)",
  33511. image: {
  33512. source: "./media/characters/teshy/monster-front.svg",
  33513. extra: 2042/2034,
  33514. bottom: 128/2170
  33515. }
  33516. },
  33517. monsterSide: {
  33518. height: math.unit(12, "feet"),
  33519. weight: math.unit(4700, "lb"),
  33520. name: "Monster (Side)",
  33521. image: {
  33522. source: "./media/characters/teshy/monster-side.svg",
  33523. extra: 2067/2056,
  33524. bottom: 70/2137
  33525. }
  33526. },
  33527. monsterBack: {
  33528. height: math.unit(12, "feet"),
  33529. weight: math.unit(4700, "lb"),
  33530. name: "Monster (Back)",
  33531. image: {
  33532. source: "./media/characters/teshy/monster-back.svg",
  33533. extra: 1921/1914,
  33534. bottom: 171/2092
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(6, "feet"),
  33542. default: true
  33543. },
  33544. ]
  33545. ))
  33546. characterMakers.push(() => makeCharacter(
  33547. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33548. {
  33549. front: {
  33550. height: math.unit(6, "feet"),
  33551. name: "Front",
  33552. image: {
  33553. source: "./media/characters/ramey/front.svg",
  33554. extra: 790/787,
  33555. bottom: 27/817
  33556. }
  33557. },
  33558. },
  33559. [
  33560. {
  33561. name: "Normal",
  33562. height: math.unit(6, "feet"),
  33563. default: true
  33564. },
  33565. ]
  33566. ))
  33567. characterMakers.push(() => makeCharacter(
  33568. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33569. {
  33570. front: {
  33571. height: math.unit(5 + 5/12, "feet"),
  33572. weight: math.unit(120, "lb"),
  33573. name: "Front",
  33574. image: {
  33575. source: "./media/characters/phirae/front.svg",
  33576. extra: 2491/2436,
  33577. bottom: 38/2529
  33578. }
  33579. },
  33580. },
  33581. [
  33582. {
  33583. name: "Normal",
  33584. height: math.unit(5 + 5/12, "feet"),
  33585. default: true
  33586. },
  33587. ]
  33588. ))
  33589. characterMakers.push(() => makeCharacter(
  33590. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33591. {
  33592. front: {
  33593. height: math.unit(6, "feet"),
  33594. weight: math.unit(150, "lb"),
  33595. name: "Front",
  33596. image: {
  33597. source: "./media/characters/stagglas/front.svg",
  33598. extra: 962/882,
  33599. bottom: 53/1015
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(5 + 3/12, "feet"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33613. {
  33614. front: {
  33615. height: math.unit(5 + 4/12, "feet"),
  33616. weight: math.unit(145, "lb"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/starra/front.svg",
  33620. extra: 1790/1691,
  33621. bottom: 91/1881
  33622. }
  33623. },
  33624. },
  33625. [
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(5 + 4/12, "feet"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(2.2, "meters"),
  33638. name: "Front",
  33639. image: {
  33640. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33641. extra: 1194/1005,
  33642. bottom: 25/1219
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(2.2, "meters"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33656. {
  33657. side: {
  33658. height: math.unit(8 + 2/12, "feet"),
  33659. weight: math.unit(1240, "lb"),
  33660. name: "Side",
  33661. image: {
  33662. source: "./media/characters/mika-valentine/side.svg",
  33663. extra: 2670/2501,
  33664. bottom: 250/2920
  33665. }
  33666. },
  33667. },
  33668. [
  33669. {
  33670. name: "Normal",
  33671. height: math.unit(8 + 2/12, "feet"),
  33672. default: true
  33673. },
  33674. ]
  33675. ))
  33676. characterMakers.push(() => makeCharacter(
  33677. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33678. {
  33679. front: {
  33680. height: math.unit(7 + 2/12, "feet"),
  33681. name: "Front",
  33682. image: {
  33683. source: "./media/characters/xoltol/front.svg",
  33684. extra: 2212/2124,
  33685. bottom: 84/2296
  33686. }
  33687. },
  33688. side: {
  33689. height: math.unit(7 + 2/12, "feet"),
  33690. name: "Side",
  33691. image: {
  33692. source: "./media/characters/xoltol/side.svg",
  33693. extra: 2273/2197,
  33694. bottom: 26/2299
  33695. }
  33696. },
  33697. hand: {
  33698. height: math.unit(2.5, "feet"),
  33699. name: "Hand",
  33700. image: {
  33701. source: "./media/characters/xoltol/hand.svg"
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Small-ish",
  33708. height: math.unit(5 + 11/12, "feet")
  33709. },
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(7 + 2/12, "feet")
  33713. },
  33714. {
  33715. name: "\"Macro\"",
  33716. height: math.unit(14 + 9/12, "feet"),
  33717. default: true
  33718. },
  33719. {
  33720. name: "Alternate Height",
  33721. height: math.unit(20, "feet")
  33722. },
  33723. {
  33724. name: "Actually Macro",
  33725. height: math.unit(100, "feet")
  33726. },
  33727. ]
  33728. ))
  33729. characterMakers.push(() => makeCharacter(
  33730. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33731. {
  33732. front: {
  33733. height: math.unit(5 + 2/12, "feet"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/kotetsu-redwood/front.svg",
  33737. extra: 1053/942,
  33738. bottom: 60/1113
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(5 + 2/12, "feet"),
  33746. default: true
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33752. {
  33753. front: {
  33754. height: math.unit(2.4, "meters"),
  33755. weight: math.unit(125, "kg"),
  33756. name: "Front",
  33757. image: {
  33758. source: "./media/characters/lilith/front.svg",
  33759. extra: 1590/1513,
  33760. bottom: 203/1793
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Humanoid",
  33767. height: math.unit(2.4, "meters")
  33768. },
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(6, "meters"),
  33772. default: true
  33773. },
  33774. {
  33775. name: "Largest",
  33776. height: math.unit(55, "meters")
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33782. {
  33783. front: {
  33784. height: math.unit(8 + 4/12, "feet"),
  33785. weight: math.unit(535, "lb"),
  33786. name: "Front",
  33787. image: {
  33788. source: "./media/characters/beh'kah-bolger/front.svg",
  33789. extra: 1660/1603,
  33790. bottom: 37/1697
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Normal",
  33797. height: math.unit(8 + 4/12, "feet"),
  33798. default: true
  33799. },
  33800. {
  33801. name: "Kaiju",
  33802. height: math.unit(250, "feet")
  33803. },
  33804. {
  33805. name: "Still Growing",
  33806. height: math.unit(10, "miles")
  33807. },
  33808. {
  33809. name: "Continental",
  33810. height: math.unit(5000, "miles")
  33811. },
  33812. {
  33813. name: "Final Form",
  33814. height: math.unit(2500000, "miles")
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(7 + 2/12, "feet"),
  33823. weight: math.unit(230, "kg"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/tatyana-milewska/front.svg",
  33827. extra: 1199/1150,
  33828. bottom: 86/1285
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(7 + 2/12, "feet"),
  33836. default: true
  33837. },
  33838. {
  33839. name: "Big",
  33840. height: math.unit(12, "feet")
  33841. },
  33842. {
  33843. name: "Minimacro",
  33844. height: math.unit(20, "feet")
  33845. },
  33846. {
  33847. name: "Macro",
  33848. height: math.unit(120, "feet")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(7 + 8/12, "feet"),
  33857. weight: math.unit(152, "kg"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/helen-arri/front.svg",
  33861. extra: 440/423,
  33862. bottom: 14/454
  33863. }
  33864. },
  33865. back: {
  33866. height: math.unit(7 + 8/12, "feet"),
  33867. weight: math.unit(152, "kg"),
  33868. name: "Back",
  33869. image: {
  33870. source: "./media/characters/helen-arri/back.svg",
  33871. extra: 443/426,
  33872. bottom: 8/451
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(7 + 8/12, "feet"),
  33880. default: true
  33881. },
  33882. {
  33883. name: "Big",
  33884. height: math.unit(14, "feet")
  33885. },
  33886. {
  33887. name: "Minimacro",
  33888. height: math.unit(24, "feet")
  33889. },
  33890. {
  33891. name: "Macro",
  33892. height: math.unit(140, "feet")
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(6, "meters"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/ehanu-rehu/front.svg",
  33904. extra: 1800/1800,
  33905. bottom: 59/1859
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(6, "meters"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33919. {
  33920. front: {
  33921. height: math.unit(7 + 3/12, "feet"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/renholder/front.svg",
  33925. extra: 3096/2960,
  33926. bottom: 250/3346
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal Bat",
  33933. height: math.unit(7 + 3/12, "feet"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Slightly Tall Bat",
  33938. height: math.unit(100, "feet")
  33939. },
  33940. {
  33941. name: "Big Bat",
  33942. height: math.unit(1000, "feet")
  33943. },
  33944. {
  33945. name: "City-Sized Bat",
  33946. height: math.unit(200000, "feet")
  33947. },
  33948. {
  33949. name: "Bigger Bat",
  33950. height: math.unit(10000, "miles")
  33951. },
  33952. {
  33953. name: "Solar Sized Bat",
  33954. height: math.unit(100, "AU")
  33955. },
  33956. {
  33957. name: "Galactic Bat",
  33958. height: math.unit(200000, "lightyears")
  33959. },
  33960. {
  33961. name: "Universally Known Bat",
  33962. height: math.unit(1, "universe")
  33963. },
  33964. ]
  33965. ))
  33966. characterMakers.push(() => makeCharacter(
  33967. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33968. {
  33969. front: {
  33970. height: math.unit(6 + 11/12, "feet"),
  33971. weight: math.unit(250, "lb"),
  33972. name: "Front",
  33973. image: {
  33974. source: "./media/characters/cookiecat/front.svg",
  33975. extra: 893/827,
  33976. bottom: 14/907
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Micro",
  33983. height: math.unit(3, "inches")
  33984. },
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(6 + 11/12, "feet"),
  33988. default: true
  33989. },
  33990. {
  33991. name: "Macro",
  33992. height: math.unit(100, "feet")
  33993. },
  33994. {
  33995. name: "Macro+",
  33996. height: math.unit(404, "feet")
  33997. },
  33998. {
  33999. name: "Megamacro",
  34000. height: math.unit(165, "miles")
  34001. },
  34002. {
  34003. name: "Planetary",
  34004. height: math.unit(4600, "miles")
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(10 + 3/12, "feet"),
  34013. weight: math.unit(1500, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/tux-kusanagi/front.svg",
  34017. extra: 944/840,
  34018. bottom: 39/983
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(10 + 3/12, "feet"),
  34023. weight: math.unit(1500, "lb"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/tux-kusanagi/back.svg",
  34027. extra: 941/842,
  34028. bottom: 28/969
  34029. }
  34030. },
  34031. rump: {
  34032. height: math.unit(5.25, "feet"),
  34033. name: "Rump",
  34034. image: {
  34035. source: "./media/characters/tux-kusanagi/rump.svg"
  34036. }
  34037. },
  34038. beak: {
  34039. height: math.unit(1.54, "feet"),
  34040. name: "Beak",
  34041. image: {
  34042. source: "./media/characters/tux-kusanagi/beak.svg"
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Normal",
  34049. height: math.unit(10 + 3/12, "feet"),
  34050. default: true
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(58, "feet"),
  34059. weight: math.unit(200, "tons"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/uzarmazari/front.svg",
  34063. extra: 1575/1455,
  34064. bottom: 152/1727
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(58, "feet"),
  34069. weight: math.unit(200, "tons"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/uzarmazari/back.svg",
  34073. extra: 1585/1510,
  34074. bottom: 157/1742
  34075. }
  34076. },
  34077. head: {
  34078. height: math.unit(26, "feet"),
  34079. name: "Head",
  34080. image: {
  34081. source: "./media/characters/uzarmazari/head.svg"
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(58, "feet"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34095. {
  34096. side: {
  34097. height: math.unit(15, "feet"),
  34098. name: "Side",
  34099. image: {
  34100. source: "./media/characters/akitu/side.svg",
  34101. extra: 1421/1321,
  34102. bottom: 157/1578
  34103. }
  34104. },
  34105. front: {
  34106. height: math.unit(15, "feet"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/akitu/front.svg",
  34110. extra: 1435/1326,
  34111. bottom: 232/1667
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(15, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34125. {
  34126. front: {
  34127. height: math.unit(10 + 8/12, "feet"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/azalie-croixland/front.svg",
  34131. extra: 1972/1856,
  34132. bottom: 31/2003
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Original Height",
  34139. height: math.unit(5 + 4/12, "feet")
  34140. },
  34141. {
  34142. name: "Normal Height",
  34143. height: math.unit(10 + 8/12, "feet"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34150. {
  34151. side: {
  34152. height: math.unit(7 + 1/12, "feet"),
  34153. weight: math.unit(245, "lb"),
  34154. name: "Side",
  34155. image: {
  34156. source: "./media/characters/kavus-kazian/side.svg",
  34157. extra: 349/342,
  34158. bottom: 15/364
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(7 + 1/12, "feet"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34172. {
  34173. normal: {
  34174. height: math.unit(5 + 11/12, "feet"),
  34175. name: "Normal",
  34176. image: {
  34177. source: "./media/characters/moonlight-rose/normal.svg",
  34178. extra: 1979/1835,
  34179. bottom: 14/1993
  34180. }
  34181. },
  34182. demon: {
  34183. height: math.unit(5, "km"),
  34184. name: "Demon",
  34185. image: {
  34186. source: "./media/characters/moonlight-rose/demon.svg",
  34187. extra: 986/916,
  34188. bottom: 28/1014
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "\"Natural\" height",
  34195. height: math.unit(5 + 11/12, "feet")
  34196. },
  34197. {
  34198. name: "Comfortable Size",
  34199. height: math.unit(40, "meters")
  34200. },
  34201. {
  34202. name: "Common Size",
  34203. height: math.unit(50, "km"),
  34204. default: true
  34205. },
  34206. {
  34207. name: "Demonic",
  34208. height: math.unit(1.24415e+21, "meters")
  34209. },
  34210. ]
  34211. ))
  34212. characterMakers.push(() => makeCharacter(
  34213. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34214. {
  34215. front: {
  34216. height: math.unit(16, "feet"),
  34217. weight: math.unit(610, "kg"),
  34218. name: "Front",
  34219. image: {
  34220. source: "./media/characters/huckle/front.svg",
  34221. extra: 1731/1625,
  34222. bottom: 33/1764
  34223. }
  34224. },
  34225. back: {
  34226. height: math.unit(16, "feet"),
  34227. weight: math.unit(610, "kg"),
  34228. name: "Back",
  34229. image: {
  34230. source: "./media/characters/huckle/back.svg",
  34231. extra: 1738/1651,
  34232. bottom: 37/1775
  34233. }
  34234. },
  34235. laughing: {
  34236. height: math.unit(3.75, "feet"),
  34237. name: "Laughing",
  34238. image: {
  34239. source: "./media/characters/huckle/laughing.svg"
  34240. }
  34241. },
  34242. angry: {
  34243. height: math.unit(4.15, "feet"),
  34244. name: "Angry",
  34245. image: {
  34246. source: "./media/characters/huckle/angry.svg"
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(16, "feet"),
  34254. default: true
  34255. },
  34256. {
  34257. name: "Mini Macro",
  34258. height: math.unit(463, "feet")
  34259. },
  34260. {
  34261. name: "Macro",
  34262. height: math.unit(1680, "meters")
  34263. },
  34264. {
  34265. name: "Mega Macro",
  34266. height: math.unit(175, "km")
  34267. },
  34268. {
  34269. name: "Terra Macro",
  34270. height: math.unit(32, "gigameters")
  34271. },
  34272. {
  34273. name: "Multiverse+",
  34274. height: math.unit(2.56e23, "yottameters")
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34280. {
  34281. front: {
  34282. height: math.unit(6 + 9/12, "feet"),
  34283. weight: math.unit(280, "lb"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/candy/front.svg",
  34287. extra: 234/217,
  34288. bottom: 11/245
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Really Small",
  34295. height: math.unit(0.1, "nm")
  34296. },
  34297. {
  34298. name: "Micro",
  34299. height: math.unit(2, "inches")
  34300. },
  34301. {
  34302. name: "Normal",
  34303. height: math.unit(6 + 9/12, "feet"),
  34304. default: true
  34305. },
  34306. {
  34307. name: "Small Macro",
  34308. height: math.unit(69, "feet")
  34309. },
  34310. {
  34311. name: "Macro",
  34312. height: math.unit(160, "feet")
  34313. },
  34314. {
  34315. name: "Megamacro",
  34316. height: math.unit(22000, "miles")
  34317. },
  34318. {
  34319. name: "Gigamacro",
  34320. height: math.unit(50000, "miles")
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(4, "feet"),
  34329. weight: math.unit(90, "lb"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/joey-mcdonald/front.svg",
  34333. extra: 1059/852,
  34334. bottom: 33/1092
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(4, "feet"),
  34339. weight: math.unit(90, "lb"),
  34340. name: "Back",
  34341. image: {
  34342. source: "./media/characters/joey-mcdonald/back.svg",
  34343. extra: 1077/879,
  34344. bottom: 5/1082
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Normal",
  34351. height: math.unit(4, "feet"),
  34352. default: true
  34353. },
  34354. ]
  34355. ))
  34356. characterMakers.push(() => makeCharacter(
  34357. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34358. {
  34359. front: {
  34360. height: math.unit(12 + 6/12, "feet"),
  34361. name: "Front",
  34362. image: {
  34363. source: "./media/characters/kass-lockheed/front.svg",
  34364. extra: 354/343,
  34365. bottom: 9/363
  34366. }
  34367. },
  34368. back: {
  34369. height: math.unit(12 + 6/12, "feet"),
  34370. name: "Back",
  34371. image: {
  34372. source: "./media/characters/kass-lockheed/back.svg",
  34373. extra: 364/352,
  34374. bottom: 3/367
  34375. }
  34376. },
  34377. dick: {
  34378. height: math.unit(3.12, "feet"),
  34379. name: "Dick",
  34380. image: {
  34381. source: "./media/characters/kass-lockheed/dick.svg"
  34382. }
  34383. },
  34384. head: {
  34385. height: math.unit(2.6, "feet"),
  34386. name: "Head",
  34387. image: {
  34388. source: "./media/characters/kass-lockheed/head.svg"
  34389. }
  34390. },
  34391. bleh: {
  34392. height: math.unit(2.85, "feet"),
  34393. name: "Bleh",
  34394. image: {
  34395. source: "./media/characters/kass-lockheed/bleh.svg"
  34396. }
  34397. },
  34398. smug: {
  34399. height: math.unit(2.85, "feet"),
  34400. name: "Smug",
  34401. image: {
  34402. source: "./media/characters/kass-lockheed/smug.svg"
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(12 + 6/12, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34416. {
  34417. front: {
  34418. height: math.unit(6 + 2/12, "feet"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/taylor/front.svg",
  34422. extra: 639/495,
  34423. bottom: 12/651
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(6 + 2/12, "feet"),
  34431. default: true
  34432. },
  34433. {
  34434. name: "Big",
  34435. height: math.unit(15, "feet")
  34436. },
  34437. {
  34438. name: "Lorg",
  34439. height: math.unit(80, "feet")
  34440. },
  34441. {
  34442. name: "Too Lorg",
  34443. height: math.unit(120, "feet")
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(15, "feet"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/kaizer/front.svg",
  34455. extra: 1612/1436,
  34456. bottom: 43/1655
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(15, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(2, "feet"),
  34473. weight: math.unit(30, "lb"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/sandy/front.svg",
  34477. extra: 1439/1307,
  34478. bottom: 194/1633
  34479. }
  34480. },
  34481. },
  34482. [
  34483. {
  34484. name: "Normal",
  34485. height: math.unit(2, "feet"),
  34486. default: true
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34492. {
  34493. front: {
  34494. height: math.unit(3, "feet"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/mellvi/front.svg",
  34498. extra: 1831/1630,
  34499. bottom: 58/1889
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(3, "feet"),
  34507. default: true
  34508. },
  34509. ]
  34510. ))
  34511. characterMakers.push(() => makeCharacter(
  34512. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34513. {
  34514. front: {
  34515. height: math.unit(5 + 11/12, "feet"),
  34516. weight: math.unit(200, "lb"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/shirou/front.svg",
  34520. extra: 2491/2383,
  34521. bottom: 189/2680
  34522. }
  34523. },
  34524. back: {
  34525. height: math.unit(5 + 11/12, "feet"),
  34526. weight: math.unit(200, "lb"),
  34527. name: "Back",
  34528. image: {
  34529. source: "./media/characters/shirou/back.svg",
  34530. extra: 2554/2450,
  34531. bottom: 76/2630
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(5 + 11/12, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(6 + 3/12, "feet"),
  34548. weight: math.unit(177, "lb"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/noryu/front.svg",
  34552. extra: 973/885,
  34553. bottom: 10/983
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(6 + 3/12, "feet"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(5 + 6/12, "feet"),
  34570. weight: math.unit(170, "lb"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/mevolas-rubenido/front.svg",
  34574. extra: 2109/1901,
  34575. bottom: 96/2205
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(5 + 6/12, "feet"),
  34583. default: true
  34584. },
  34585. ]
  34586. ))
  34587. characterMakers.push(() => makeCharacter(
  34588. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34589. {
  34590. front: {
  34591. height: math.unit(100, "feet"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/dee/front.svg",
  34595. extra: 2153/2036,
  34596. bottom: 59/2212
  34597. }
  34598. },
  34599. back: {
  34600. height: math.unit(100, "feet"),
  34601. name: "Back",
  34602. image: {
  34603. source: "./media/characters/dee/back.svg",
  34604. extra: 2183/2058,
  34605. bottom: 75/2258
  34606. }
  34607. },
  34608. foot: {
  34609. height: math.unit(19.43, "feet"),
  34610. name: "Foot",
  34611. image: {
  34612. source: "./media/characters/dee/foot.svg"
  34613. }
  34614. },
  34615. hoof: {
  34616. height: math.unit(20.6, "feet"),
  34617. name: "Hoof",
  34618. image: {
  34619. source: "./media/characters/dee/hoof.svg"
  34620. }
  34621. },
  34622. },
  34623. [
  34624. {
  34625. name: "Macro",
  34626. height: math.unit(100, "feet"),
  34627. default: true
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34633. {
  34634. front: {
  34635. height: math.unit(5 + 6/12, "feet"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/teh/front.svg",
  34639. extra: 1002/847,
  34640. bottom: 62/1064
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Normal",
  34647. height: math.unit(5 + 6/12, "feet"),
  34648. default: true
  34649. },
  34650. ]
  34651. ))
  34652. characterMakers.push(() => makeCharacter(
  34653. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34654. {
  34655. side: {
  34656. height: math.unit(6 + 1/12, "feet"),
  34657. weight: math.unit(204, "lb"),
  34658. name: "Side",
  34659. image: {
  34660. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34661. extra: 974/775,
  34662. bottom: 169/1143
  34663. }
  34664. },
  34665. sitting: {
  34666. height: math.unit(6 + 2/12, "feet"),
  34667. weight: math.unit(204, "lb"),
  34668. name: "Sitting",
  34669. image: {
  34670. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34671. extra: 1175/964,
  34672. bottom: 378/1553
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(6 + 1/12, "feet"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(6, "inches"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/tululi/front.svg",
  34692. extra: 1997/1876,
  34693. bottom: 20/2017
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(6, "inches"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(4 + 1/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/star/front.svg",
  34713. extra: 1493/1189,
  34714. bottom: 48/1541
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(4 + 1/12, "feet"),
  34722. default: true
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(6 + 3/12, "feet"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/comet/front.svg",
  34734. extra: 1681/1462,
  34735. bottom: 26/1707
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(6 + 3/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(950, "feet"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/vortex/front.svg",
  34755. extra: 1497/1434,
  34756. bottom: 56/1553
  34757. }
  34758. },
  34759. maw: {
  34760. height: math.unit(285, "feet"),
  34761. name: "Maw",
  34762. image: {
  34763. source: "./media/characters/vortex/maw.svg"
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Macro",
  34770. height: math.unit(950, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(600, "feet"),
  34780. weight: math.unit(0.02, "grams"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/doodle/front.svg",
  34784. extra: 1578/1413,
  34785. bottom: 37/1615
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Macro",
  34792. height: math.unit(600, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34799. {
  34800. front: {
  34801. height: math.unit(6 + 6/12, "feet"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/jai/front.svg",
  34805. extra: 1645/1534,
  34806. bottom: 115/1760
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(6 + 6/12, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(6 + 8/12, "feet"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/pixel/front.svg",
  34826. extra: 1900/1735,
  34827. bottom: 63/1963
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(6 + 8/12, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(4 + 11/12, "feet"),
  34844. weight: math.unit(111, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/rhett/front.svg",
  34848. extra: 1682/1586,
  34849. bottom: 92/1774
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Mini",
  34856. height: math.unit(1 + 1/12, "feet")
  34857. },
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(4 + 11/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34867. {
  34868. front: {
  34869. height: math.unit(3 + 3/12, "feet"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/penny/front.svg",
  34873. extra: 1406/1311,
  34874. bottom: 26/1432
  34875. }
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(3 + 3/12, "feet"),
  34882. default: true
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34888. {
  34889. front: {
  34890. height: math.unit(4 + 11/12, "feet"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/monty/front.svg",
  34894. extra: 1479/1209,
  34895. bottom: 0/1479
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(4 + 11/12, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34909. {
  34910. front: {
  34911. height: math.unit(8 + 4/12, "feet"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/sterling/front.svg",
  34915. extra: 1420/1236,
  34916. bottom: 27/1447
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Normal",
  34923. height: math.unit(8 + 4/12, "feet"),
  34924. default: true
  34925. },
  34926. ]
  34927. ))
  34928. characterMakers.push(() => makeCharacter(
  34929. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34930. {
  34931. front: {
  34932. height: math.unit(15, "feet"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/marble/front.svg",
  34936. extra: 973/937,
  34937. bottom: 32/1005
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Normal",
  34944. height: math.unit(15, "feet"),
  34945. default: true
  34946. },
  34947. ]
  34948. ))
  34949. characterMakers.push(() => makeCharacter(
  34950. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34951. {
  34952. front: {
  34953. height: math.unit(3, "inches"),
  34954. name: "Front",
  34955. image: {
  34956. source: "./media/characters/powder/front.svg",
  34957. extra: 1504/1334,
  34958. bottom: 518/2022
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(3, "inches"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(4 + 5/12, "feet"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/joey-raccoon/front.svg",
  34978. extra: 1273/1197,
  34979. bottom: 0/1273
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(4 + 5/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(8 + 4/12, "feet"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/vick/front.svg",
  34999. extra: 2187/2118,
  35000. bottom: 47/2234
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Normal",
  35007. height: math.unit(8 + 4/12, "feet"),
  35008. default: true
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(5 + 5/12, "feet"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/mitsy/front.svg",
  35020. extra: 1842/1695,
  35021. bottom: 0/1842
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(5 + 5/12, "feet"),
  35029. default: true
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(6 + 3/12, "feet"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/silvy/front.svg",
  35041. extra: 1995/1836,
  35042. bottom: 225/2220
  35043. }
  35044. },
  35045. },
  35046. [
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(6 + 3/12, "feet"),
  35050. default: true
  35051. },
  35052. ]
  35053. ))
  35054. characterMakers.push(() => makeCharacter(
  35055. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35056. {
  35057. front: {
  35058. height: math.unit(3 + 8/12, "feet"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/rodney/front.svg",
  35062. extra: 1956/1747,
  35063. bottom: 31/1987
  35064. }
  35065. },
  35066. frontDressed: {
  35067. height: math.unit(2.9, "feet"),
  35068. name: "Front (Dressed)",
  35069. image: {
  35070. source: "./media/characters/rodney/front-dressed.svg",
  35071. extra: 1382/1241,
  35072. bottom: 385/1767
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(3 + 8/12, "feet"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(5 + 9/12, "feet"),
  35089. weight: math.unit(194, "lbs"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/zakail-sudekai/front.svg",
  35093. extra: 2696/2533,
  35094. bottom: 248/2944
  35095. }
  35096. },
  35097. maw: {
  35098. height: math.unit(1.35, "feet"),
  35099. name: "Maw",
  35100. image: {
  35101. source: "./media/characters/zakail-sudekai/maw.svg"
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(5 + 9/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(8 + 4/12, "feet"),
  35118. weight: math.unit(1200, "lb"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/eleanor/front.svg",
  35122. extra: 1226/1192,
  35123. bottom: 52/1278
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(8 + 4/12, "feet"),
  35128. weight: math.unit(1200, "lb"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/eleanor/back.svg",
  35132. extra: 1242/1184,
  35133. bottom: 60/1302
  35134. }
  35135. },
  35136. head: {
  35137. height: math.unit(2.62, "feet"),
  35138. name: "Head",
  35139. image: {
  35140. source: "./media/characters/eleanor/head.svg"
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(8 + 4/12, "feet"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35154. {
  35155. front: {
  35156. height: math.unit(8 + 4/12, "feet"),
  35157. weight: math.unit(750, "lb"),
  35158. name: "Front",
  35159. image: {
  35160. source: "./media/characters/tanya/front.svg",
  35161. extra: 1749/1615,
  35162. bottom: 33/1782
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(8 + 4/12, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(5, "feet"),
  35179. weight: math.unit(225, "lb"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/cindy/front.svg",
  35183. extra: 1320/1250,
  35184. bottom: 42/1362
  35185. }
  35186. },
  35187. frontDressed: {
  35188. height: math.unit(5, "feet"),
  35189. weight: math.unit(225, "lb"),
  35190. name: "Front (Dressed)",
  35191. image: {
  35192. source: "./media/characters/cindy/front-dressed.svg",
  35193. extra: 1320/1250,
  35194. bottom: 42/1362
  35195. }
  35196. },
  35197. back: {
  35198. height: math.unit(5, "feet"),
  35199. weight: math.unit(225, "lb"),
  35200. name: "Back",
  35201. image: {
  35202. source: "./media/characters/cindy/back.svg",
  35203. extra: 1384/1346,
  35204. bottom: 14/1398
  35205. }
  35206. },
  35207. },
  35208. [
  35209. {
  35210. name: "Normal",
  35211. height: math.unit(5, "feet"),
  35212. default: true
  35213. },
  35214. ]
  35215. ))
  35216. characterMakers.push(() => makeCharacter(
  35217. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35218. {
  35219. front: {
  35220. height: math.unit(6 + 9/12, "feet"),
  35221. weight: math.unit(440, "lb"),
  35222. name: "Front",
  35223. image: {
  35224. source: "./media/characters/wilbur-owen/front.svg",
  35225. extra: 1575/1448,
  35226. bottom: 72/1647
  35227. }
  35228. },
  35229. back: {
  35230. height: math.unit(6 + 9/12, "feet"),
  35231. weight: math.unit(440, "lb"),
  35232. name: "Back",
  35233. image: {
  35234. source: "./media/characters/wilbur-owen/back.svg",
  35235. extra: 1578/1445,
  35236. bottom: 36/1614
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(6 + 9/12, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(6 + 5/12, "feet"),
  35253. weight: math.unit(650, "lb"),
  35254. name: "Front",
  35255. image: {
  35256. source: "./media/characters/keegan/front.svg",
  35257. extra: 2387/2198,
  35258. bottom: 33/2420
  35259. }
  35260. },
  35261. side: {
  35262. height: math.unit(6 + 5/12, "feet"),
  35263. weight: math.unit(650, "lb"),
  35264. name: "Side",
  35265. image: {
  35266. source: "./media/characters/keegan/side.svg",
  35267. extra: 2390/2202,
  35268. bottom: 47/2437
  35269. }
  35270. },
  35271. back: {
  35272. height: math.unit(6 + 5/12, "feet"),
  35273. weight: math.unit(650, "lb"),
  35274. name: "Back",
  35275. image: {
  35276. source: "./media/characters/keegan/back.svg",
  35277. extra: 2418/2268,
  35278. bottom: 15/2433
  35279. }
  35280. },
  35281. frontSfw: {
  35282. height: math.unit(6 + 5/12, "feet"),
  35283. weight: math.unit(650, "lb"),
  35284. name: "Front (SFW)",
  35285. image: {
  35286. source: "./media/characters/keegan/front-sfw.svg",
  35287. extra: 2387/2198,
  35288. bottom: 33/2420
  35289. }
  35290. },
  35291. beans: {
  35292. height: math.unit(1.85, "feet"),
  35293. name: "Beans",
  35294. image: {
  35295. source: "./media/characters/keegan/beans.svg"
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(6 + 5/12, "feet"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(9, "feet"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/colton/front.svg",
  35315. extra: 1589/1326,
  35316. bottom: 139/1728
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(9, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(2 + 9/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/bora/front.svg",
  35336. extra: 1265/1250,
  35337. bottom: 24/1289
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(2 + 9/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(8, "feet"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/myu-myu/front.svg",
  35357. extra: 1949/1857,
  35358. bottom: 90/2039
  35359. }
  35360. },
  35361. },
  35362. [
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(8, "feet"),
  35366. default: true
  35367. },
  35368. {
  35369. name: "Big",
  35370. height: math.unit(15, "feet")
  35371. },
  35372. {
  35373. name: "BIG",
  35374. height: math.unit(25, "feet")
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35380. {
  35381. side: {
  35382. height: math.unit(7 + 5/12, "feet"),
  35383. weight: math.unit(2800, "lb"),
  35384. name: "Side",
  35385. image: {
  35386. source: "./media/characters/haloren/side.svg",
  35387. extra: 1793/409,
  35388. bottom: 59/1852
  35389. }
  35390. },
  35391. frontPaw: {
  35392. height: math.unit(2.36, "feet"),
  35393. name: "Front paw",
  35394. image: {
  35395. source: "./media/characters/haloren/front-paw.svg"
  35396. }
  35397. },
  35398. hindPaw: {
  35399. height: math.unit(3.18, "feet"),
  35400. name: "Hind paw",
  35401. image: {
  35402. source: "./media/characters/haloren/hind-paw.svg"
  35403. }
  35404. },
  35405. maw: {
  35406. height: math.unit(5.05, "feet"),
  35407. name: "Maw",
  35408. image: {
  35409. source: "./media/characters/haloren/maw.svg"
  35410. }
  35411. },
  35412. dick: {
  35413. height: math.unit(2.90, "feet"),
  35414. name: "Dick",
  35415. image: {
  35416. source: "./media/characters/haloren/dick.svg"
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(7 + 5/12, "feet"),
  35424. default: true
  35425. },
  35426. {
  35427. name: "Enhanced",
  35428. height: math.unit(14 + 3/12, "feet")
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(171, "cm"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/kimmy/front.svg",
  35440. extra: 1491/1435,
  35441. bottom: 53/1544
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Small",
  35448. height: math.unit(9, "cm")
  35449. },
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(171, "cm"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35459. {
  35460. front: {
  35461. height: math.unit(8, "feet"),
  35462. weight: math.unit(300, "lb"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/galeboomer/front.svg",
  35466. extra: 4651/4415,
  35467. bottom: 162/4813
  35468. }
  35469. },
  35470. back: {
  35471. height: math.unit(8, "feet"),
  35472. weight: math.unit(300, "lb"),
  35473. name: "Back",
  35474. image: {
  35475. source: "./media/characters/galeboomer/back.svg",
  35476. extra: 4544/4314,
  35477. bottom: 16/4560
  35478. }
  35479. },
  35480. frontAlt: {
  35481. height: math.unit(8, "feet"),
  35482. weight: math.unit(300, "lb"),
  35483. name: "Front (Alt)",
  35484. image: {
  35485. source: "./media/characters/galeboomer/front-alt.svg",
  35486. extra: 4458/4228,
  35487. bottom: 68/4526
  35488. }
  35489. },
  35490. maw: {
  35491. height: math.unit(1.2, "feet"),
  35492. name: "Maw",
  35493. image: {
  35494. source: "./media/characters/galeboomer/maw.svg"
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(8, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(5 + 9/12, "feet"),
  35511. weight: math.unit(120, "lb"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/chyr/front.svg",
  35515. extra: 1323/1254,
  35516. bottom: 63/1386
  35517. }
  35518. },
  35519. back: {
  35520. height: math.unit(5 + 9/12, "feet"),
  35521. weight: math.unit(120, "lb"),
  35522. name: "Back",
  35523. image: {
  35524. source: "./media/characters/chyr/back.svg",
  35525. extra: 1323/1252,
  35526. bottom: 48/1371
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(5 + 9/12, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(7, "feet"),
  35543. weight: math.unit(310, "lb"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/solarus/front.svg",
  35547. extra: 2415/2021,
  35548. bottom: 103/2518
  35549. }
  35550. },
  35551. back: {
  35552. height: math.unit(7, "feet"),
  35553. weight: math.unit(310, "lb"),
  35554. name: "Back",
  35555. image: {
  35556. source: "./media/characters/solarus/back.svg",
  35557. extra: 2463/2089,
  35558. bottom: 79/2542
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(7, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(16, "feet"),
  35575. name: "Front",
  35576. image: {
  35577. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35578. extra: 1844/1780,
  35579. bottom: 58/1902
  35580. }
  35581. },
  35582. },
  35583. [
  35584. {
  35585. name: "Normal",
  35586. height: math.unit(16, "feet"),
  35587. default: true
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(11 + 6/12, "feet"),
  35596. weight: math.unit(1366, "lb"),
  35597. name: "Front",
  35598. image: {
  35599. source: "./media/characters/lexor/front.svg",
  35600. extra: 1560/1481,
  35601. bottom: 211/1771
  35602. }
  35603. },
  35604. back: {
  35605. height: math.unit(11 + 6/12, "feet"),
  35606. weight: math.unit(1366, "lb"),
  35607. name: "Back",
  35608. image: {
  35609. source: "./media/characters/lexor/back.svg",
  35610. extra: 1614/1533,
  35611. bottom: 76/1690
  35612. }
  35613. },
  35614. maw: {
  35615. height: math.unit(3, "feet"),
  35616. name: "Maw",
  35617. image: {
  35618. source: "./media/characters/lexor/maw.svg"
  35619. }
  35620. },
  35621. dick: {
  35622. height: math.unit(2.59, "feet"),
  35623. name: "Dick",
  35624. image: {
  35625. source: "./media/characters/lexor/dick.svg"
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(11 + 6/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(5 + 8/12, "feet"),
  35642. name: "Front",
  35643. image: {
  35644. source: "./media/characters/magnum/front.svg",
  35645. extra: 942/855,
  35646. bottom: 26/968
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(5 + 8/12, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(18 + 4/12, "feet"),
  35663. weight: math.unit(1500, "kg"),
  35664. name: "Front",
  35665. image: {
  35666. source: "./media/characters/solas-sharpsman/front.svg",
  35667. extra: 1698/1589,
  35668. bottom: 0/1698
  35669. }
  35670. },
  35671. },
  35672. [
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(18 + 4/12, "feet"),
  35676. default: true
  35677. },
  35678. ]
  35679. ))
  35680. characterMakers.push(() => makeCharacter(
  35681. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35682. {
  35683. front: {
  35684. height: math.unit(5 + 5/12, "feet"),
  35685. weight: math.unit(180, "lb"),
  35686. name: "Front",
  35687. image: {
  35688. source: "./media/characters/october/front.svg",
  35689. extra: 1800/1650,
  35690. bottom: 0/1800
  35691. }
  35692. },
  35693. frontNsfw: {
  35694. height: math.unit(5 + 5/12, "feet"),
  35695. weight: math.unit(180, "lb"),
  35696. name: "Front (NSFW)",
  35697. image: {
  35698. source: "./media/characters/october/front-nsfw.svg",
  35699. extra: 1392/1307,
  35700. bottom: 42/1434
  35701. }
  35702. },
  35703. },
  35704. [
  35705. {
  35706. name: "Normal",
  35707. height: math.unit(5 + 5/12, "feet"),
  35708. default: true
  35709. },
  35710. ]
  35711. ))
  35712. characterMakers.push(() => makeCharacter(
  35713. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35714. {
  35715. front: {
  35716. height: math.unit(8 + 6/12, "feet"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/essynkardi/front.svg",
  35720. extra: 1914/1846,
  35721. bottom: 22/1936
  35722. }
  35723. },
  35724. },
  35725. [
  35726. {
  35727. name: "Normal",
  35728. height: math.unit(8 + 6/12, "feet"),
  35729. default: true
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(6 + 6/12, "feet"),
  35738. weight: math.unit(7, "lb"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/icky/front.svg",
  35742. extra: 813/782,
  35743. bottom: 66/879
  35744. }
  35745. },
  35746. back: {
  35747. height: math.unit(6 + 6/12, "feet"),
  35748. weight: math.unit(7, "lb"),
  35749. name: "Back",
  35750. image: {
  35751. source: "./media/characters/icky/back.svg",
  35752. extra: 754/735,
  35753. bottom: 56/810
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(6 + 6/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(15, "feet"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/rojas/front.svg",
  35773. extra: 1462/1408,
  35774. bottom: 95/1557
  35775. }
  35776. },
  35777. back: {
  35778. height: math.unit(15, "feet"),
  35779. name: "Back",
  35780. image: {
  35781. source: "./media/characters/rojas/back.svg",
  35782. extra: 1023/954,
  35783. bottom: 28/1051
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(15, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35797. {
  35798. frontHuman: {
  35799. height: math.unit(5 + 7/12, "feet"),
  35800. name: "Front (Human)",
  35801. image: {
  35802. source: "./media/characters/alek-dryagan/front-human.svg",
  35803. extra: 1687/1667,
  35804. bottom: 69/1756
  35805. }
  35806. },
  35807. backHuman: {
  35808. height: math.unit(5 + 7/12, "feet"),
  35809. name: "Back (Human)",
  35810. image: {
  35811. source: "./media/characters/alek-dryagan/back-human.svg",
  35812. extra: 1670/1649,
  35813. bottom: 65/1735
  35814. }
  35815. },
  35816. frontDemi: {
  35817. height: math.unit(65, "feet"),
  35818. name: "Front (Demi)",
  35819. image: {
  35820. source: "./media/characters/alek-dryagan/front-demi.svg",
  35821. extra: 1669/1642,
  35822. bottom: 49/1718
  35823. }
  35824. },
  35825. backDemi: {
  35826. height: math.unit(65, "feet"),
  35827. name: "Back (Demi)",
  35828. image: {
  35829. source: "./media/characters/alek-dryagan/back-demi.svg",
  35830. extra: 1658/1637,
  35831. bottom: 40/1698
  35832. }
  35833. },
  35834. mawHuman: {
  35835. height: math.unit(0.3, "feet"),
  35836. name: "Maw (Human)",
  35837. image: {
  35838. source: "./media/characters/alek-dryagan/maw-human.svg"
  35839. }
  35840. },
  35841. mawDemi: {
  35842. height: math.unit(3.8, "feet"),
  35843. name: "Maw (Demi)",
  35844. image: {
  35845. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(5 + 7/12, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35859. {
  35860. frontHuman: {
  35861. height: math.unit(5 + 2/12, "feet"),
  35862. name: "Front (Human)",
  35863. image: {
  35864. source: "./media/characters/gen/front-human.svg",
  35865. extra: 1627/1538,
  35866. bottom: 71/1698
  35867. }
  35868. },
  35869. backHuman: {
  35870. height: math.unit(5 + 2/12, "feet"),
  35871. name: "Back (Human)",
  35872. image: {
  35873. source: "./media/characters/gen/back-human.svg",
  35874. extra: 1638/1548,
  35875. bottom: 69/1707
  35876. }
  35877. },
  35878. frontDemi: {
  35879. height: math.unit(5 + 2/12, "feet"),
  35880. name: "Front (Demi)",
  35881. image: {
  35882. source: "./media/characters/gen/front-demi.svg",
  35883. extra: 1627/1538,
  35884. bottom: 71/1698
  35885. }
  35886. },
  35887. backDemi: {
  35888. height: math.unit(5 + 2/12, "feet"),
  35889. name: "Back (Demi)",
  35890. image: {
  35891. source: "./media/characters/gen/back-demi.svg",
  35892. extra: 1638/1548,
  35893. bottom: 69/1707
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(5 + 2/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35907. {
  35908. frontImp: {
  35909. height: math.unit(1 + 11/12, "feet"),
  35910. name: "Front (Imp)",
  35911. image: {
  35912. source: "./media/characters/max-kobold/front-imp.svg",
  35913. extra: 1238/1134,
  35914. bottom: 81/1319
  35915. }
  35916. },
  35917. backImp: {
  35918. height: math.unit(1 + 11/12, "feet"),
  35919. name: "Back (Imp)",
  35920. image: {
  35921. source: "./media/characters/max-kobold/back-imp.svg",
  35922. extra: 1334/1175,
  35923. bottom: 34/1368
  35924. }
  35925. },
  35926. frontDemi: {
  35927. height: math.unit(5 + 9/12, "feet"),
  35928. name: "Front (Demi)",
  35929. image: {
  35930. source: "./media/characters/max-kobold/front-demi.svg",
  35931. extra: 1715/1685,
  35932. bottom: 54/1769
  35933. }
  35934. },
  35935. backDemi: {
  35936. height: math.unit(5 + 9/12, "feet"),
  35937. name: "Back (Demi)",
  35938. image: {
  35939. source: "./media/characters/max-kobold/back-demi.svg",
  35940. extra: 1752/1729,
  35941. bottom: 41/1793
  35942. }
  35943. },
  35944. handImp: {
  35945. height: math.unit(0.45, "feet"),
  35946. name: "Hand (Imp)",
  35947. image: {
  35948. source: "./media/characters/max-kobold/hand.svg"
  35949. }
  35950. },
  35951. pawImp: {
  35952. height: math.unit(0.46, "feet"),
  35953. name: "Paw (Imp)",
  35954. image: {
  35955. source: "./media/characters/max-kobold/paw.svg"
  35956. }
  35957. },
  35958. handDemi: {
  35959. height: math.unit(0.80, "feet"),
  35960. name: "Hand (Demi)",
  35961. image: {
  35962. source: "./media/characters/max-kobold/hand.svg"
  35963. }
  35964. },
  35965. pawDemi: {
  35966. height: math.unit(1.1, "feet"),
  35967. name: "Paw (Demi)",
  35968. image: {
  35969. source: "./media/characters/max-kobold/paw.svg"
  35970. }
  35971. },
  35972. headImp: {
  35973. height: math.unit(1.33, "feet"),
  35974. name: "Head (Imp)",
  35975. image: {
  35976. source: "./media/characters/max-kobold/head-imp.svg"
  35977. }
  35978. },
  35979. mawImp: {
  35980. height: math.unit(0.75, "feet"),
  35981. name: "Maw (Imp)",
  35982. image: {
  35983. source: "./media/characters/max-kobold/maw-imp.svg"
  35984. }
  35985. },
  35986. mawDemi: {
  35987. height: math.unit(0.42, "feet"),
  35988. name: "Maw (Demi)",
  35989. image: {
  35990. source: "./media/characters/max-kobold/maw-demi.svg"
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(1 + 11/12, "feet"),
  35998. default: true
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36004. {
  36005. front: {
  36006. height: math.unit(7 + 5/12, "feet"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/carbon/front.svg",
  36010. extra: 1754/1689,
  36011. bottom: 65/1819
  36012. }
  36013. },
  36014. back: {
  36015. height: math.unit(7 + 5/12, "feet"),
  36016. name: "Back",
  36017. image: {
  36018. source: "./media/characters/carbon/back.svg",
  36019. extra: 1762/1695,
  36020. bottom: 24/1786
  36021. }
  36022. },
  36023. frontGigantamax: {
  36024. height: math.unit(150, "feet"),
  36025. name: "Front (Gigantamax)",
  36026. image: {
  36027. source: "./media/characters/carbon/front-gigantamax.svg",
  36028. extra: 1826/1669,
  36029. bottom: 59/1885
  36030. }
  36031. },
  36032. backGigantamax: {
  36033. height: math.unit(150, "feet"),
  36034. name: "Back (Gigantamax)",
  36035. image: {
  36036. source: "./media/characters/carbon/back-gigantamax.svg",
  36037. extra: 1796/1653,
  36038. bottom: 53/1849
  36039. }
  36040. },
  36041. maw: {
  36042. height: math.unit(0.48, "feet"),
  36043. name: "Maw",
  36044. image: {
  36045. source: "./media/characters/carbon/maw.svg"
  36046. }
  36047. },
  36048. mawGigantamax: {
  36049. height: math.unit(7.5, "feet"),
  36050. name: "Maw (Gigantamax)",
  36051. image: {
  36052. source: "./media/characters/carbon/maw-gigantamax.svg"
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(7 + 5/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(6, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/maverick/front.svg",
  36072. extra: 1672/1661,
  36073. bottom: 85/1757
  36074. }
  36075. },
  36076. back: {
  36077. height: math.unit(6, "feet"),
  36078. name: "Back",
  36079. image: {
  36080. source: "./media/characters/maverick/back.svg",
  36081. extra: 1642/1631,
  36082. bottom: 38/1680
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(6, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(15, "feet"),
  36099. weight: math.unit(615, "lb"),
  36100. name: "Front",
  36101. image: {
  36102. source: "./media/characters/grockle/front.svg",
  36103. extra: 1535/1427,
  36104. bottom: 56/1591
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(15, "feet"),
  36112. default: true
  36113. },
  36114. {
  36115. name: "Large",
  36116. height: math.unit(150, "feet")
  36117. },
  36118. {
  36119. name: "Macro",
  36120. height: math.unit(1876, "feet")
  36121. },
  36122. {
  36123. name: "Mega Macro",
  36124. height: math.unit(121940, "feet")
  36125. },
  36126. {
  36127. name: "Giga Macro",
  36128. height: math.unit(750, "km")
  36129. },
  36130. {
  36131. name: "Tera Macro",
  36132. height: math.unit(750000, "km")
  36133. },
  36134. {
  36135. name: "Galactic",
  36136. height: math.unit(1.4e5, "km")
  36137. },
  36138. {
  36139. name: "Godlike",
  36140. height: math.unit(9.8e280, "galaxies")
  36141. },
  36142. ]
  36143. ))
  36144. characterMakers.push(() => makeCharacter(
  36145. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36146. {
  36147. front: {
  36148. height: math.unit(11, "meters"),
  36149. weight: math.unit(20, "tonnes"),
  36150. name: "Front",
  36151. image: {
  36152. source: "./media/characters/alistair/front.svg",
  36153. extra: 1265/1009,
  36154. bottom: 93/1358
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(11, "meters"),
  36162. default: true
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36168. {
  36169. front: {
  36170. height: math.unit(5 + 8/12, "feet"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/haruka/front.svg",
  36174. extra: 2012/1952,
  36175. bottom: 0/2012
  36176. }
  36177. },
  36178. },
  36179. [
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(5 + 8/12, "feet"),
  36183. default: true
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36189. {
  36190. back: {
  36191. height: math.unit(9, "feet"),
  36192. name: "Back",
  36193. image: {
  36194. source: "./media/characters/vivian-sylveon/back.svg",
  36195. extra: 1853/1714,
  36196. bottom: 0/1853
  36197. }
  36198. },
  36199. },
  36200. [
  36201. {
  36202. name: "Normal",
  36203. height: math.unit(9, "feet"),
  36204. default: true
  36205. },
  36206. {
  36207. name: "Macro",
  36208. height: math.unit(500, "feet")
  36209. },
  36210. {
  36211. name: "Megamacro",
  36212. height: math.unit(600, "miles")
  36213. },
  36214. {
  36215. name: "Gigamacro",
  36216. height: math.unit(30000, "miles")
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36222. {
  36223. anthro: {
  36224. height: math.unit(5 + 10/12, "feet"),
  36225. weight: math.unit(100, "lb"),
  36226. name: "Anthro",
  36227. image: {
  36228. source: "./media/characters/daiki/anthro.svg",
  36229. extra: 1115/1027,
  36230. bottom: 69/1184
  36231. }
  36232. },
  36233. feral: {
  36234. height: math.unit(200, "feet"),
  36235. name: "Feral",
  36236. image: {
  36237. source: "./media/characters/daiki/feral.svg",
  36238. extra: 1256/313,
  36239. bottom: 39/1295
  36240. }
  36241. },
  36242. feralHead: {
  36243. height: math.unit(171, "feet"),
  36244. name: "Feral Head",
  36245. image: {
  36246. source: "./media/characters/daiki/feral-head.svg"
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(5 + 10/12, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36260. {
  36261. fullyEquippedFront: {
  36262. height: math.unit(3 + 1/12, "feet"),
  36263. weight: math.unit(24, "lb"),
  36264. name: "Fully Equipped (Front)",
  36265. image: {
  36266. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36267. extra: 687/605,
  36268. bottom: 18/705
  36269. }
  36270. },
  36271. fullyEquippedBack: {
  36272. height: math.unit(3 + 1/12, "feet"),
  36273. weight: math.unit(24, "lb"),
  36274. name: "Fully Equipped (Back)",
  36275. image: {
  36276. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36277. extra: 689/590,
  36278. bottom: 18/707
  36279. }
  36280. },
  36281. dailyWear: {
  36282. height: math.unit(3 + 1/12, "feet"),
  36283. weight: math.unit(24, "lb"),
  36284. name: "Daily Wear",
  36285. image: {
  36286. source: "./media/characters/tea-spot/daily-wear.svg",
  36287. extra: 701/620,
  36288. bottom: 21/722
  36289. }
  36290. },
  36291. maidWork: {
  36292. height: math.unit(3 + 1/12, "feet"),
  36293. weight: math.unit(24, "lb"),
  36294. name: "Maid Work",
  36295. image: {
  36296. source: "./media/characters/tea-spot/maid-work.svg",
  36297. extra: 693/609,
  36298. bottom: 15/708
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(3 + 1/12, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(175, "cm"),
  36315. weight: math.unit(75, "kg"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/chee/front.svg",
  36319. extra: 1796/1740,
  36320. bottom: 40/1836
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Micro-Micro",
  36327. height: math.unit(1, "nm")
  36328. },
  36329. {
  36330. name: "Micro-erst",
  36331. height: math.unit(1, "micrometer")
  36332. },
  36333. {
  36334. name: "Micro-er",
  36335. height: math.unit(1, "cm")
  36336. },
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(175, "cm"),
  36340. default: true
  36341. },
  36342. {
  36343. name: "Macro",
  36344. height: math.unit(100, "m")
  36345. },
  36346. {
  36347. name: "Macro-er",
  36348. height: math.unit(1, "km")
  36349. },
  36350. {
  36351. name: "Macro-erst",
  36352. height: math.unit(10, "km")
  36353. },
  36354. {
  36355. name: "Macro-Macro",
  36356. height: math.unit(100, "km")
  36357. },
  36358. ]
  36359. ))
  36360. characterMakers.push(() => makeCharacter(
  36361. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36362. {
  36363. front: {
  36364. height: math.unit(11 + 9/12, "feet"),
  36365. weight: math.unit(935, "lb"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/kingsley/front.svg",
  36369. extra: 1803/1674,
  36370. bottom: 127/1930
  36371. }
  36372. },
  36373. frontNude: {
  36374. height: math.unit(11 + 9/12, "feet"),
  36375. weight: math.unit(935, "lb"),
  36376. name: "Front (Nude)",
  36377. image: {
  36378. source: "./media/characters/kingsley/front-nude.svg",
  36379. extra: 1803/1674,
  36380. bottom: 127/1930
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(11 + 9/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36394. {
  36395. side: {
  36396. height: math.unit(9, "feet"),
  36397. name: "Side",
  36398. image: {
  36399. source: "./media/characters/rymel/side.svg",
  36400. extra: 792/469,
  36401. bottom: 121/913
  36402. }
  36403. },
  36404. maw: {
  36405. height: math.unit(2.4, "meters"),
  36406. name: "Maw",
  36407. image: {
  36408. source: "./media/characters/rymel/maw.svg"
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "House Drake",
  36415. height: math.unit(2, "feet")
  36416. },
  36417. {
  36418. name: "Reduced",
  36419. height: math.unit(4.5, "feet")
  36420. },
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(9, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(1.74, "meters"),
  36433. weight: math.unit(55, "kg"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/rubus/front.svg",
  36437. extra: 1894/1742,
  36438. bottom: 44/1938
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(1.74, "meters"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(5 + 2/12, "feet"),
  36455. weight: math.unit(112, "lb"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/cassie-kingston/front.svg",
  36459. extra: 1438/1390,
  36460. bottom: 47/1485
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(5 + 2/12, "feet"),
  36468. default: true
  36469. },
  36470. {
  36471. name: "Macro",
  36472. height: math.unit(128, "feet")
  36473. },
  36474. {
  36475. name: "Megamacro",
  36476. height: math.unit(2.56, "miles")
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(7, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/fox/front.svg",
  36488. extra: 1798/1703,
  36489. bottom: 55/1853
  36490. }
  36491. },
  36492. back: {
  36493. height: math.unit(7, "feet"),
  36494. name: "Back",
  36495. image: {
  36496. source: "./media/characters/fox/back.svg",
  36497. extra: 1748/1649,
  36498. bottom: 32/1780
  36499. }
  36500. },
  36501. head: {
  36502. height: math.unit(1.95, "feet"),
  36503. name: "Head",
  36504. image: {
  36505. source: "./media/characters/fox/head.svg"
  36506. }
  36507. },
  36508. dick: {
  36509. height: math.unit(1.33, "feet"),
  36510. name: "Dick",
  36511. image: {
  36512. source: "./media/characters/fox/dick.svg"
  36513. }
  36514. },
  36515. foot: {
  36516. height: math.unit(1, "feet"),
  36517. name: "Foot",
  36518. image: {
  36519. source: "./media/characters/fox/foot.svg"
  36520. }
  36521. },
  36522. paw: {
  36523. height: math.unit(0.92, "feet"),
  36524. name: "Paw",
  36525. image: {
  36526. source: "./media/characters/fox/paw.svg"
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Small",
  36533. height: math.unit(3, "inches")
  36534. },
  36535. {
  36536. name: "\"Realistic\"",
  36537. height: math.unit(7, "feet")
  36538. },
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(150, "feet"),
  36542. default: true
  36543. },
  36544. {
  36545. name: "BIG",
  36546. height: math.unit(1200, "feet")
  36547. },
  36548. {
  36549. name: "👀",
  36550. height: math.unit(5, "miles")
  36551. },
  36552. {
  36553. name: "👀👀👀",
  36554. height: math.unit(64, "miles")
  36555. },
  36556. ]
  36557. ))
  36558. characterMakers.push(() => makeCharacter(
  36559. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36560. {
  36561. front: {
  36562. height: math.unit(625, "feet"),
  36563. name: "Front",
  36564. image: {
  36565. source: "./media/characters/asonja-rossa/front.svg",
  36566. extra: 1833/1686,
  36567. bottom: 24/1857
  36568. }
  36569. },
  36570. back: {
  36571. height: math.unit(625, "feet"),
  36572. name: "Back",
  36573. image: {
  36574. source: "./media/characters/asonja-rossa/back.svg",
  36575. extra: 1852/1753,
  36576. bottom: 26/1878
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Macro",
  36583. height: math.unit(625, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36590. {
  36591. side: {
  36592. height: math.unit(6, "feet"),
  36593. weight: math.unit(150, "lb"),
  36594. name: "Side",
  36595. image: {
  36596. source: "./media/characters/rezukii/side.svg",
  36597. extra: 979/542,
  36598. bottom: 87/1066
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Tiny",
  36605. height: math.unit(2, "feet")
  36606. },
  36607. {
  36608. name: "Smol",
  36609. height: math.unit(4, "feet")
  36610. },
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(8, "feet"),
  36614. default: true
  36615. },
  36616. {
  36617. name: "Big",
  36618. height: math.unit(12, "feet")
  36619. },
  36620. {
  36621. name: "Macro",
  36622. height: math.unit(30, "feet")
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36628. {
  36629. front: {
  36630. height: math.unit(14, "feet"),
  36631. weight: math.unit(9.5, "tonnes"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/dawnheart/front.svg",
  36635. extra: 2792/2675,
  36636. bottom: 64/2856
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Normal",
  36643. height: math.unit(14, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36650. {
  36651. front: {
  36652. height: math.unit(1.7, "m"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/gladi/front.svg",
  36656. extra: 1460/1362,
  36657. bottom: 19/1479
  36658. }
  36659. },
  36660. back: {
  36661. height: math.unit(1.7, "m"),
  36662. name: "Back",
  36663. image: {
  36664. source: "./media/characters/gladi/back.svg",
  36665. extra: 1459/1357,
  36666. bottom: 12/1471
  36667. }
  36668. },
  36669. feral: {
  36670. height: math.unit(2.05, "m"),
  36671. name: "Feral",
  36672. image: {
  36673. source: "./media/characters/gladi/feral.svg",
  36674. extra: 821/557,
  36675. bottom: 91/912
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Shortest",
  36682. height: math.unit(70, "cm")
  36683. },
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(1.7, "m")
  36687. },
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(10, "m"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Tallest",
  36695. height: math.unit(200, "m")
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(5 + 7/12, "feet"),
  36704. weight: math.unit(92, "kg"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/erdno/front.svg",
  36708. extra: 1954/1889,
  36709. bottom: 22/1976
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(5 + 7/12, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(5 + 10/12, "feet"),
  36726. weight: math.unit(150, "lb"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/jamie/front.svg",
  36730. extra: 1908/1768,
  36731. bottom: 19/1927
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Minimum",
  36738. height: math.unit(2, "cm")
  36739. },
  36740. {
  36741. name: "Micro",
  36742. height: math.unit(3, "inches")
  36743. },
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(5 + 10/12, "feet"),
  36747. default: true
  36748. },
  36749. {
  36750. name: "Macro",
  36751. height: math.unit(150, "feet")
  36752. },
  36753. {
  36754. name: "Megamacro",
  36755. height: math.unit(10000, "m")
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(2, "meters"),
  36764. weight: math.unit(100, "kg"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/shiron/front.svg",
  36768. extra: 2103/1985,
  36769. bottom: 98/2201
  36770. }
  36771. },
  36772. back: {
  36773. height: math.unit(2, "meters"),
  36774. weight: math.unit(100, "kg"),
  36775. name: "Back",
  36776. image: {
  36777. source: "./media/characters/shiron/back.svg",
  36778. extra: 2110/2015,
  36779. bottom: 89/2199
  36780. }
  36781. },
  36782. hand: {
  36783. height: math.unit(0.96, "feet"),
  36784. name: "Hand",
  36785. image: {
  36786. source: "./media/characters/shiron/hand.svg"
  36787. }
  36788. },
  36789. foot: {
  36790. height: math.unit(1.464, "feet"),
  36791. name: "Foot",
  36792. image: {
  36793. source: "./media/characters/shiron/foot.svg"
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Normal",
  36800. height: math.unit(2, "meters")
  36801. },
  36802. {
  36803. name: "Macro",
  36804. height: math.unit(500, "meters"),
  36805. default: true
  36806. },
  36807. {
  36808. name: "Megamacro",
  36809. height: math.unit(20, "km")
  36810. },
  36811. ]
  36812. ))
  36813. characterMakers.push(() => makeCharacter(
  36814. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36815. {
  36816. front: {
  36817. height: math.unit(6, "feet"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/sam/front.svg",
  36821. extra: 849/826,
  36822. bottom: 19/868
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Normal",
  36829. height: math.unit(6, "feet"),
  36830. default: true
  36831. },
  36832. ]
  36833. ))
  36834. characterMakers.push(() => makeCharacter(
  36835. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36836. {
  36837. front: {
  36838. height: math.unit(8 + 4/12, "feet"),
  36839. weight: math.unit(122, "kg"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/namori-kurogawa/front.svg",
  36843. extra: 1894/1576,
  36844. bottom: 34/1928
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(8 + 4/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(9, "feet"),
  36861. weight: math.unit(621, "lb"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/unmru/front.svg",
  36865. extra: 1853/1747,
  36866. bottom: 73/1926
  36867. }
  36868. },
  36869. side: {
  36870. height: math.unit(9, "feet"),
  36871. weight: math.unit(621, "lb"),
  36872. name: "Side",
  36873. image: {
  36874. source: "./media/characters/unmru/side.svg",
  36875. extra: 1781/1671,
  36876. bottom: 127/1908
  36877. }
  36878. },
  36879. back: {
  36880. height: math.unit(9, "feet"),
  36881. weight: math.unit(621, "lb"),
  36882. name: "Back",
  36883. image: {
  36884. source: "./media/characters/unmru/back.svg",
  36885. extra: 1894/1765,
  36886. bottom: 75/1969
  36887. }
  36888. },
  36889. dick: {
  36890. height: math.unit(3, "feet"),
  36891. weight: math.unit(35, "lb"),
  36892. name: "Dick",
  36893. image: {
  36894. source: "./media/characters/unmru/dick.svg"
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(9, "feet")
  36902. },
  36903. {
  36904. name: "Natural",
  36905. height: math.unit(27, "feet"),
  36906. default: true
  36907. },
  36908. {
  36909. name: "Giant",
  36910. height: math.unit(90, "feet")
  36911. },
  36912. {
  36913. name: "Kaiju",
  36914. height: math.unit(270, "feet")
  36915. },
  36916. {
  36917. name: "Macro",
  36918. height: math.unit(900, "feet")
  36919. },
  36920. {
  36921. name: "Macro+",
  36922. height: math.unit(2700, "feet")
  36923. },
  36924. {
  36925. name: "Megamacro",
  36926. height: math.unit(9000, "feet")
  36927. },
  36928. {
  36929. name: "City-Crushing",
  36930. height: math.unit(27000, "feet")
  36931. },
  36932. {
  36933. name: "Mountain-Mashing",
  36934. height: math.unit(90000, "feet")
  36935. },
  36936. {
  36937. name: "Earth-Eclipsing",
  36938. height: math.unit(2.7e8, "feet")
  36939. },
  36940. {
  36941. name: "Sol-Swallowing",
  36942. height: math.unit(9e10, "feet")
  36943. },
  36944. {
  36945. name: "Majoris-Munching",
  36946. height: math.unit(2.7e13, "feet")
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36952. {
  36953. front: {
  36954. height: math.unit(1, "inch"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/squeaks-mouse/front.svg",
  36958. extra: 352/308,
  36959. bottom: 25/377
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Micro",
  36966. height: math.unit(1, "inch"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36973. {
  36974. side: {
  36975. height: math.unit(35, "feet"),
  36976. name: "Side",
  36977. image: {
  36978. source: "./media/characters/sayko/side.svg",
  36979. extra: 1697/1021,
  36980. bottom: 82/1779
  36981. }
  36982. },
  36983. head: {
  36984. height: math.unit(16, "feet"),
  36985. name: "Head",
  36986. image: {
  36987. source: "./media/characters/sayko/head.svg"
  36988. }
  36989. },
  36990. forepaw: {
  36991. height: math.unit(7.85, "feet"),
  36992. name: "Forepaw",
  36993. image: {
  36994. source: "./media/characters/sayko/forepaw.svg"
  36995. }
  36996. },
  36997. hindpaw: {
  36998. height: math.unit(8.8, "feet"),
  36999. name: "Hindpaw",
  37000. image: {
  37001. source: "./media/characters/sayko/hindpaw.svg"
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(35, "feet"),
  37009. default: true
  37010. },
  37011. {
  37012. name: "Colossus",
  37013. height: math.unit(100, "meters")
  37014. },
  37015. {
  37016. name: "\"Small\" Deity",
  37017. height: math.unit(1, "km")
  37018. },
  37019. {
  37020. name: "\"Large\" Deity",
  37021. height: math.unit(15, "km")
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(6, "feet"),
  37030. weight: math.unit(250, "lb"),
  37031. name: "Front",
  37032. image: {
  37033. source: "./media/characters/mukiro/front.svg",
  37034. extra: 1368/1310,
  37035. bottom: 34/1402
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(6, "feet"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37049. {
  37050. front: {
  37051. height: math.unit(12 + 4/12, "feet"),
  37052. name: "Front",
  37053. image: {
  37054. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37055. extra: 1346/1311,
  37056. bottom: 65/1411
  37057. }
  37058. },
  37059. },
  37060. [
  37061. {
  37062. name: "Base",
  37063. height: math.unit(12 + 4/12, "feet"),
  37064. default: true
  37065. },
  37066. {
  37067. name: "Macro",
  37068. height: math.unit(150, "feet")
  37069. },
  37070. {
  37071. name: "Mega",
  37072. height: math.unit(2, "miles")
  37073. },
  37074. {
  37075. name: "Demi God",
  37076. height: math.unit(4, "AU")
  37077. },
  37078. {
  37079. name: "God Size",
  37080. height: math.unit(1, "universe")
  37081. },
  37082. ]
  37083. ))
  37084. characterMakers.push(() => makeCharacter(
  37085. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37086. {
  37087. front: {
  37088. height: math.unit(3 + 3/12, "feet"),
  37089. weight: math.unit(88, "lb"),
  37090. name: "Front",
  37091. image: {
  37092. source: "./media/characters/trey/front.svg",
  37093. extra: 1815/1509,
  37094. bottom: 60/1875
  37095. }
  37096. },
  37097. },
  37098. [
  37099. {
  37100. name: "Normal",
  37101. height: math.unit(3 + 3/12, "feet"),
  37102. default: true
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(4, "meters"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/adelonda/front.svg",
  37114. extra: 1942/1775,
  37115. bottom: 33/1975
  37116. }
  37117. },
  37118. back: {
  37119. height: math.unit(4, "meters"),
  37120. name: "Back",
  37121. image: {
  37122. source: "./media/characters/adelonda/back.svg",
  37123. extra: 1932/1780,
  37124. bottom: 42/1974
  37125. }
  37126. },
  37127. bust: {
  37128. height: math.unit(1.8, "meter"),
  37129. name: "Bust",
  37130. image: {
  37131. source: "./media/characters/adelonda/bust.svg"
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(4, "meters"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37145. {
  37146. front: {
  37147. height: math.unit(8 + 4/12, "feet"),
  37148. weight: math.unit(670, "lb"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/acadiel/front.svg",
  37152. extra: 1901/1595,
  37153. bottom: 142/2043
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(8 + 4/12, "feet"),
  37161. default: true
  37162. },
  37163. {
  37164. name: "Macro",
  37165. height: math.unit(200, "feet")
  37166. },
  37167. ]
  37168. ))
  37169. characterMakers.push(() => makeCharacter(
  37170. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37171. {
  37172. front: {
  37173. height: math.unit(6 + 2/12, "feet"),
  37174. weight: math.unit(185, "lb"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/kayne-ein/front.svg",
  37178. extra: 1780/1560,
  37179. bottom: 81/1861
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(6 + 2/12, "feet"),
  37187. default: true
  37188. },
  37189. {
  37190. name: "Transformation Stage",
  37191. height: math.unit(15, "feet")
  37192. },
  37193. {
  37194. name: "Macro",
  37195. height: math.unit(150, "feet")
  37196. },
  37197. {
  37198. name: "Earth's Shadow",
  37199. height: math.unit(6200, "miles")
  37200. },
  37201. {
  37202. name: "Universal Demon",
  37203. height: math.unit(28e9, "parsecs")
  37204. },
  37205. {
  37206. name: "Multiverse God",
  37207. height: math.unit(3, "multiverses")
  37208. },
  37209. ]
  37210. ))
  37211. characterMakers.push(() => makeCharacter(
  37212. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37213. {
  37214. front: {
  37215. height: math.unit(5 + 5/12, "feet"),
  37216. name: "Front",
  37217. image: {
  37218. source: "./media/characters/fawn/front.svg",
  37219. extra: 1873/1731,
  37220. bottom: 95/1968
  37221. }
  37222. },
  37223. back: {
  37224. height: math.unit(5 + 5/12, "feet"),
  37225. name: "Back",
  37226. image: {
  37227. source: "./media/characters/fawn/back.svg",
  37228. extra: 1813/1700,
  37229. bottom: 14/1827
  37230. }
  37231. },
  37232. hoof: {
  37233. height: math.unit(1.45, "feet"),
  37234. name: "Hoof",
  37235. image: {
  37236. source: "./media/characters/fawn/hoof.svg"
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(5 + 5/12, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(2 + 5/12, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/orion/front.svg",
  37256. extra: 1366/1304,
  37257. bottom: 43/1409
  37258. }
  37259. },
  37260. paw: {
  37261. height: math.unit(0.52, "feet"),
  37262. name: "Paw",
  37263. image: {
  37264. source: "./media/characters/orion/paw.svg"
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(2 + 5/12, "feet"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(5 + 10/12, "feet"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/vera/front.svg",
  37284. extra: 1680/1575,
  37285. bottom: 49/1729
  37286. }
  37287. },
  37288. back: {
  37289. height: math.unit(5 + 10/12, "feet"),
  37290. name: "Back",
  37291. image: {
  37292. source: "./media/characters/vera/back.svg",
  37293. extra: 1700/1588,
  37294. bottom: 18/1718
  37295. }
  37296. },
  37297. arcanine: {
  37298. height: math.unit(6 + 8/12, "feet"),
  37299. name: "Arcanine",
  37300. image: {
  37301. source: "./media/characters/vera/arcanine.svg",
  37302. extra: 1590/1511,
  37303. bottom: 71/1661
  37304. }
  37305. },
  37306. maw: {
  37307. height: math.unit(0.82, "feet"),
  37308. name: "Maw",
  37309. image: {
  37310. source: "./media/characters/vera/maw.svg"
  37311. }
  37312. },
  37313. mawArcanine: {
  37314. height: math.unit(0.97, "feet"),
  37315. name: "Maw (Arcanine)",
  37316. image: {
  37317. source: "./media/characters/vera/maw-arcanine.svg"
  37318. }
  37319. },
  37320. paw: {
  37321. height: math.unit(0.75, "feet"),
  37322. name: "Paw",
  37323. image: {
  37324. source: "./media/characters/vera/paw.svg"
  37325. }
  37326. },
  37327. pawprint: {
  37328. height: math.unit(0.52, "feet"),
  37329. name: "Pawprint",
  37330. image: {
  37331. source: "./media/characters/vera/pawprint.svg"
  37332. }
  37333. },
  37334. },
  37335. [
  37336. {
  37337. name: "Normal",
  37338. height: math.unit(5 + 10/12, "feet"),
  37339. default: true
  37340. },
  37341. {
  37342. name: "Macro",
  37343. height: math.unit(75, "feet")
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37349. {
  37350. front: {
  37351. height: math.unit(4, "feet"),
  37352. weight: math.unit(40, "lb"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/orvan-rabbit/front.svg",
  37356. extra: 1896/1642,
  37357. bottom: 29/1925
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(4, "feet"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6, "feet"),
  37374. weight: math.unit(168, "lb"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/lisa/front.svg",
  37378. extra: 2065/1867,
  37379. bottom: 46/2111
  37380. }
  37381. },
  37382. back: {
  37383. height: math.unit(6, "feet"),
  37384. weight: math.unit(168, "lb"),
  37385. name: "Back",
  37386. image: {
  37387. source: "./media/characters/lisa/back.svg",
  37388. extra: 1982/1838,
  37389. bottom: 29/2011
  37390. }
  37391. },
  37392. maw: {
  37393. height: math.unit(0.81, "feet"),
  37394. name: "Maw",
  37395. image: {
  37396. source: "./media/characters/lisa/maw.svg"
  37397. }
  37398. },
  37399. paw: {
  37400. height: math.unit(0.9, "feet"),
  37401. name: "Paw",
  37402. image: {
  37403. source: "./media/characters/lisa/paw.svg"
  37404. }
  37405. },
  37406. caribousune: {
  37407. height: math.unit(7 + 2/12, "feet"),
  37408. weight: math.unit(268, "lb"),
  37409. name: "Caribousune",
  37410. image: {
  37411. source: "./media/characters/lisa/caribousune.svg",
  37412. extra: 1843/1633,
  37413. bottom: 29/1872
  37414. }
  37415. },
  37416. frontCaribousune: {
  37417. height: math.unit(7 + 2/12, "feet"),
  37418. weight: math.unit(268, "lb"),
  37419. name: "Front (Caribousune)",
  37420. image: {
  37421. source: "./media/characters/lisa/front-caribousune.svg",
  37422. extra: 1818/1638,
  37423. bottom: 52/1870
  37424. }
  37425. },
  37426. sideCaribousune: {
  37427. height: math.unit(7 + 2/12, "feet"),
  37428. weight: math.unit(268, "lb"),
  37429. name: "Side (Caribousune)",
  37430. image: {
  37431. source: "./media/characters/lisa/side-caribousune.svg",
  37432. extra: 1851/1635,
  37433. bottom: 16/1867
  37434. }
  37435. },
  37436. backCaribousune: {
  37437. height: math.unit(7 + 2/12, "feet"),
  37438. weight: math.unit(268, "lb"),
  37439. name: "Back (Caribousune)",
  37440. image: {
  37441. source: "./media/characters/lisa/back-caribousune.svg",
  37442. extra: 1801/1604,
  37443. bottom: 44/1845
  37444. }
  37445. },
  37446. caribou: {
  37447. height: math.unit(7 + 2/12, "feet"),
  37448. weight: math.unit(268, "lb"),
  37449. name: "Caribou",
  37450. image: {
  37451. source: "./media/characters/lisa/caribou.svg",
  37452. extra: 1843/1633,
  37453. bottom: 29/1872
  37454. }
  37455. },
  37456. frontCaribou: {
  37457. height: math.unit(7 + 2/12, "feet"),
  37458. weight: math.unit(268, "lb"),
  37459. name: "Front (Caribou)",
  37460. image: {
  37461. source: "./media/characters/lisa/front-caribou.svg",
  37462. extra: 1818/1638,
  37463. bottom: 52/1870
  37464. }
  37465. },
  37466. sideCaribou: {
  37467. height: math.unit(7 + 2/12, "feet"),
  37468. weight: math.unit(268, "lb"),
  37469. name: "Side (Caribou)",
  37470. image: {
  37471. source: "./media/characters/lisa/side-caribou.svg",
  37472. extra: 1851/1635,
  37473. bottom: 16/1867
  37474. }
  37475. },
  37476. backCaribou: {
  37477. height: math.unit(7 + 2/12, "feet"),
  37478. weight: math.unit(268, "lb"),
  37479. name: "Back (Caribou)",
  37480. image: {
  37481. source: "./media/characters/lisa/back-caribou.svg",
  37482. extra: 1801/1604,
  37483. bottom: 44/1845
  37484. }
  37485. },
  37486. mawCaribou: {
  37487. height: math.unit(1.45, "feet"),
  37488. name: "Maw (Caribou)",
  37489. image: {
  37490. source: "./media/characters/lisa/maw-caribou.svg"
  37491. }
  37492. },
  37493. mawCaribousune: {
  37494. height: math.unit(1.45, "feet"),
  37495. name: "Maw (Caribousune)",
  37496. image: {
  37497. source: "./media/characters/lisa/maw-caribousune.svg"
  37498. }
  37499. },
  37500. pawCaribousune: {
  37501. height: math.unit(1.61, "feet"),
  37502. name: "Paw (Caribou)",
  37503. image: {
  37504. source: "./media/characters/lisa/paw-caribousune.svg"
  37505. }
  37506. },
  37507. },
  37508. [
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(6, "feet")
  37512. },
  37513. {
  37514. name: "God Size",
  37515. height: math.unit(72, "feet"),
  37516. default: true
  37517. },
  37518. {
  37519. name: "Towering",
  37520. height: math.unit(288, "feet")
  37521. },
  37522. {
  37523. name: "City Size",
  37524. height: math.unit(48384, "feet")
  37525. },
  37526. {
  37527. name: "Continental",
  37528. height: math.unit(4200, "miles")
  37529. },
  37530. {
  37531. name: "Planet Eater",
  37532. height: math.unit(42, "earths")
  37533. },
  37534. {
  37535. name: "Star Swallower",
  37536. height: math.unit(42, "solarradii")
  37537. },
  37538. {
  37539. name: "System Swallower",
  37540. height: math.unit(84000, "AU")
  37541. },
  37542. {
  37543. name: "Galaxy Gobbler",
  37544. height: math.unit(42, "galaxies")
  37545. },
  37546. {
  37547. name: "Universe Devourer",
  37548. height: math.unit(42, "universes")
  37549. },
  37550. {
  37551. name: "Multiverse Muncher",
  37552. height: math.unit(42, "multiverses")
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37558. {
  37559. front: {
  37560. height: math.unit(36, "feet"),
  37561. name: "Front",
  37562. image: {
  37563. source: "./media/characters/shadow-rat/front.svg",
  37564. extra: 1845/1758,
  37565. bottom: 83/1928
  37566. }
  37567. },
  37568. },
  37569. [
  37570. {
  37571. name: "Macro",
  37572. height: math.unit(36, "feet"),
  37573. default: true
  37574. },
  37575. ]
  37576. ))
  37577. characterMakers.push(() => makeCharacter(
  37578. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37579. {
  37580. side: {
  37581. height: math.unit(8, "feet"),
  37582. weight: math.unit(2630, "lb"),
  37583. name: "Side",
  37584. image: {
  37585. source: "./media/characters/torallia/side.svg",
  37586. extra: 2164/2021,
  37587. bottom: 371/2535
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Mortal Interaction",
  37594. height: math.unit(8, "feet")
  37595. },
  37596. {
  37597. name: "Natural",
  37598. height: math.unit(24, "feet"),
  37599. default: true
  37600. },
  37601. {
  37602. name: "Giant",
  37603. height: math.unit(80, "feet")
  37604. },
  37605. {
  37606. name: "Kaiju",
  37607. height: math.unit(240, "feet")
  37608. },
  37609. {
  37610. name: "Macro",
  37611. height: math.unit(800, "feet")
  37612. },
  37613. {
  37614. name: "Macro+",
  37615. height: math.unit(2400, "feet")
  37616. },
  37617. {
  37618. name: "Macro++",
  37619. height: math.unit(8000, "feet")
  37620. },
  37621. {
  37622. name: "City-Crushing",
  37623. height: math.unit(24000, "feet")
  37624. },
  37625. {
  37626. name: "Mountain-Mashing",
  37627. height: math.unit(80000, "feet")
  37628. },
  37629. {
  37630. name: "District Demolisher",
  37631. height: math.unit(240000, "feet")
  37632. },
  37633. {
  37634. name: "Tri-County Terror",
  37635. height: math.unit(800000, "feet")
  37636. },
  37637. {
  37638. name: "State Smasher",
  37639. height: math.unit(2.4e6, "feet")
  37640. },
  37641. {
  37642. name: "Nation Nemesis",
  37643. height: math.unit(8e6, "feet")
  37644. },
  37645. {
  37646. name: "Continent Cracker",
  37647. height: math.unit(2.4e7, "feet")
  37648. },
  37649. {
  37650. name: "Planet-Pillaging",
  37651. height: math.unit(8e7, "feet")
  37652. },
  37653. {
  37654. name: "Earth-Eclipsing",
  37655. height: math.unit(2.4e8, "feet")
  37656. },
  37657. {
  37658. name: "Jovian-Jostling",
  37659. height: math.unit(8e8, "feet")
  37660. },
  37661. {
  37662. name: "Gas Giant Gulper",
  37663. height: math.unit(2.4e9, "feet")
  37664. },
  37665. {
  37666. name: "Astral Annihilator",
  37667. height: math.unit(8e9, "feet")
  37668. },
  37669. {
  37670. name: "Celestial Conqueror",
  37671. height: math.unit(2.4e10, "feet")
  37672. },
  37673. {
  37674. name: "Sol-Swallowing",
  37675. height: math.unit(8e10, "feet")
  37676. },
  37677. {
  37678. name: "Hunter of the Heavens",
  37679. height: math.unit(2.4e13, "feet")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(6 + 8/12, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/rebecca-pawlson/front.svg",
  37691. extra: 1737/1596,
  37692. bottom: 107/1844
  37693. }
  37694. },
  37695. back: {
  37696. height: math.unit(6 + 8/12, "feet"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/rebecca-pawlson/back.svg",
  37700. extra: 1702/1523,
  37701. bottom: 86/1788
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(6 + 8/12, "feet")
  37709. },
  37710. {
  37711. name: "Mini Macro",
  37712. height: math.unit(10, "feet"),
  37713. default: true
  37714. },
  37715. {
  37716. name: "Macro",
  37717. height: math.unit(100, "feet")
  37718. },
  37719. {
  37720. name: "Mega Macro",
  37721. height: math.unit(2500, "feet")
  37722. },
  37723. {
  37724. name: "Giga Macro",
  37725. height: math.unit(50, "miles")
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(7 + 6/12, "feet"),
  37734. weight: math.unit(600, "lb"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/moxie-nova/front.svg",
  37738. extra: 1734/1652,
  37739. bottom: 41/1775
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(7 + 6/12, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(5, "feet"),
  37756. weight: math.unit(150, "lb"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/tiffany/front.svg",
  37760. extra: 1941/1845,
  37761. bottom: 58/1999
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(5, "feet"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(8, "feet"),
  37778. weight: math.unit(300, "lb"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/raxinath/front.svg",
  37782. extra: 1407/1309,
  37783. bottom: 39/1446
  37784. }
  37785. },
  37786. back: {
  37787. height: math.unit(8, "feet"),
  37788. weight: math.unit(300, "lb"),
  37789. name: "Back",
  37790. image: {
  37791. source: "./media/characters/raxinath/back.svg",
  37792. extra: 1405/1315,
  37793. bottom: 9/1414
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Speck",
  37800. height: math.unit(0.5, "nm")
  37801. },
  37802. {
  37803. name: "Micro",
  37804. height: math.unit(3, "inches")
  37805. },
  37806. {
  37807. name: "Kobold",
  37808. height: math.unit(3, "feet")
  37809. },
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(8, "feet"),
  37813. default: true
  37814. },
  37815. {
  37816. name: "Giant",
  37817. height: math.unit(50, "feet")
  37818. },
  37819. {
  37820. name: "Macro",
  37821. height: math.unit(1000, "feet")
  37822. },
  37823. {
  37824. name: "Megamacro",
  37825. height: math.unit(1, "mile")
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(10, "feet"),
  37834. weight: math.unit(1442, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/mal-dragon/front.svg",
  37838. extra: 1515/1444,
  37839. bottom: 113/1628
  37840. }
  37841. },
  37842. back: {
  37843. height: math.unit(10, "feet"),
  37844. weight: math.unit(1442, "lb"),
  37845. name: "Back",
  37846. image: {
  37847. source: "./media/characters/mal-dragon/back.svg",
  37848. extra: 1527/1434,
  37849. bottom: 25/1552
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Mortal Interaction",
  37856. height: math.unit(10, "feet"),
  37857. default: true
  37858. },
  37859. {
  37860. name: "Large",
  37861. height: math.unit(30, "feet")
  37862. },
  37863. {
  37864. name: "Kaiju",
  37865. height: math.unit(300, "feet")
  37866. },
  37867. {
  37868. name: "Megamacro",
  37869. height: math.unit(10000, "feet")
  37870. },
  37871. {
  37872. name: "Continent Cracker",
  37873. height: math.unit(30000000, "feet")
  37874. },
  37875. {
  37876. name: "Sol-Swallowing",
  37877. height: math.unit(1e11, "feet")
  37878. },
  37879. {
  37880. name: "Light Universal",
  37881. height: math.unit(5, "universes")
  37882. },
  37883. {
  37884. name: "Universe Atoms",
  37885. height: math.unit(1.829e9, "universes")
  37886. },
  37887. {
  37888. name: "Light Multiversal",
  37889. height: math.unit(5, "multiverses")
  37890. },
  37891. {
  37892. name: "Multiverse Atoms",
  37893. height: math.unit(1.829e9, "multiverses")
  37894. },
  37895. {
  37896. name: "Fabric of Time",
  37897. height: math.unit(1e262, "multiverses")
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(9, "feet"),
  37906. weight: math.unit(1050, "lb"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/tabitha/front.svg",
  37910. extra: 2083/1994,
  37911. bottom: 68/2151
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Baseline",
  37918. height: math.unit(9, "feet"),
  37919. default: true
  37920. },
  37921. {
  37922. name: "Giant",
  37923. height: math.unit(90, "feet")
  37924. },
  37925. {
  37926. name: "Macro",
  37927. height: math.unit(900, "feet")
  37928. },
  37929. {
  37930. name: "Megamacro",
  37931. height: math.unit(9000, "feet")
  37932. },
  37933. {
  37934. name: "City-Crushing",
  37935. height: math.unit(27000, "feet")
  37936. },
  37937. {
  37938. name: "Mountain-Mashing",
  37939. height: math.unit(90000, "feet")
  37940. },
  37941. {
  37942. name: "Nation Nemesis",
  37943. height: math.unit(9e6, "feet")
  37944. },
  37945. {
  37946. name: "Continent Cracker",
  37947. height: math.unit(27e6, "feet")
  37948. },
  37949. {
  37950. name: "Earth-Eclipsing",
  37951. height: math.unit(2.7e8, "feet")
  37952. },
  37953. {
  37954. name: "Gas Giant Gulper",
  37955. height: math.unit(2.7e9, "feet")
  37956. },
  37957. {
  37958. name: "Sol-Swallowing",
  37959. height: math.unit(9e10, "feet")
  37960. },
  37961. {
  37962. name: "Galaxy Gulper",
  37963. height: math.unit(9, "galaxies")
  37964. },
  37965. {
  37966. name: "Cosmos Churner",
  37967. height: math.unit(9, "universes")
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(160, "cm"),
  37976. weight: math.unit(55, "kg"),
  37977. name: "Front",
  37978. image: {
  37979. source: "./media/characters/tow/front.svg",
  37980. extra: 1751/1722,
  37981. bottom: 74/1825
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Norm",
  37988. height: math.unit(160, "cm")
  37989. },
  37990. {
  37991. name: "Casual",
  37992. height: math.unit(3200, "m"),
  37993. default: true
  37994. },
  37995. {
  37996. name: "Show-Off",
  37997. height: math.unit(160, "km")
  37998. },
  37999. ]
  38000. ))
  38001. characterMakers.push(() => makeCharacter(
  38002. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38003. {
  38004. front: {
  38005. height: math.unit(7 + 11/12, "feet"),
  38006. weight: math.unit(342.8, "lb"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/vivian-orca-dragon/front.svg",
  38010. extra: 1890/1865,
  38011. bottom: 28/1918
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Micro",
  38018. height: math.unit(5, "inches")
  38019. },
  38020. {
  38021. name: "Normal",
  38022. height: math.unit(7 + 11/12, "feet"),
  38023. default: true
  38024. },
  38025. {
  38026. name: "Macro",
  38027. height: math.unit(395 + 7/12, "feet")
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38033. {
  38034. side: {
  38035. height: math.unit(10, "feet"),
  38036. weight: math.unit(1442, "lb"),
  38037. name: "Side",
  38038. image: {
  38039. source: "./media/characters/lotherakon/side.svg",
  38040. extra: 1604/1497,
  38041. bottom: 89/1693
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Mortal Interaction",
  38048. height: math.unit(10, "feet")
  38049. },
  38050. {
  38051. name: "Large",
  38052. height: math.unit(30, "feet"),
  38053. default: true
  38054. },
  38055. {
  38056. name: "Giant",
  38057. height: math.unit(100, "feet")
  38058. },
  38059. {
  38060. name: "Kaiju",
  38061. height: math.unit(300, "feet")
  38062. },
  38063. {
  38064. name: "Macro",
  38065. height: math.unit(1000, "feet")
  38066. },
  38067. {
  38068. name: "Macro+",
  38069. height: math.unit(3000, "feet")
  38070. },
  38071. {
  38072. name: "Megamacro",
  38073. height: math.unit(10000, "feet")
  38074. },
  38075. {
  38076. name: "City-Crushing",
  38077. height: math.unit(30000, "feet")
  38078. },
  38079. {
  38080. name: "Continent Cracker",
  38081. height: math.unit(30e6, "feet")
  38082. },
  38083. {
  38084. name: "Earth Eclipsing",
  38085. height: math.unit(3e8, "feet")
  38086. },
  38087. {
  38088. name: "Gas Giant Gulper",
  38089. height: math.unit(3e9, "feet")
  38090. },
  38091. {
  38092. name: "Sol-Swallowing",
  38093. height: math.unit(1e11, "feet")
  38094. },
  38095. {
  38096. name: "System Swallower",
  38097. height: math.unit(3e14, "feet")
  38098. },
  38099. {
  38100. name: "Galaxy Gulper",
  38101. height: math.unit(10, "galaxies")
  38102. },
  38103. {
  38104. name: "Light Universal",
  38105. height: math.unit(5, "universes")
  38106. },
  38107. {
  38108. name: "Universe Palm",
  38109. height: math.unit(20, "universes")
  38110. },
  38111. {
  38112. name: "Light Multiversal",
  38113. height: math.unit(5, "multiverses")
  38114. },
  38115. {
  38116. name: "Multiverse Palm",
  38117. height: math.unit(20, "multiverses")
  38118. },
  38119. {
  38120. name: "Inferno Incarnate",
  38121. height: math.unit(1e7, "multiverses")
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(8, "feet"),
  38130. weight: math.unit(1200, "lb"),
  38131. name: "Front",
  38132. image: {
  38133. source: "./media/characters/malithee/front.svg",
  38134. extra: 1675/1640,
  38135. bottom: 162/1837
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Mortal Interaction",
  38142. height: math.unit(8, "feet"),
  38143. default: true
  38144. },
  38145. {
  38146. name: "Large",
  38147. height: math.unit(24, "feet")
  38148. },
  38149. {
  38150. name: "Kaiju",
  38151. height: math.unit(240, "feet")
  38152. },
  38153. {
  38154. name: "Megamacro",
  38155. height: math.unit(8000, "feet")
  38156. },
  38157. {
  38158. name: "Continent Cracker",
  38159. height: math.unit(24e6, "feet")
  38160. },
  38161. {
  38162. name: "Earth-Eclipsing",
  38163. height: math.unit(2.4e8, "feet")
  38164. },
  38165. {
  38166. name: "Sol-Swallowing",
  38167. height: math.unit(8e10, "feet")
  38168. },
  38169. {
  38170. name: "Galaxy Gulper",
  38171. height: math.unit(8, "galaxies")
  38172. },
  38173. {
  38174. name: "Light Universal",
  38175. height: math.unit(4, "universes")
  38176. },
  38177. {
  38178. name: "Universe Atoms",
  38179. height: math.unit(1.829e9, "universes")
  38180. },
  38181. {
  38182. name: "Light Multiversal",
  38183. height: math.unit(4, "multiverses")
  38184. },
  38185. {
  38186. name: "Multiverse Atoms",
  38187. height: math.unit(1.829e9, "multiverses")
  38188. },
  38189. {
  38190. name: "Nigh-Omnipresence",
  38191. height: math.unit(8e261, "multiverses")
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(10, "feet"),
  38200. weight: math.unit(1500, "lb"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/miles-thestia/front.svg",
  38204. extra: 1812/1727,
  38205. bottom: 86/1898
  38206. }
  38207. },
  38208. back: {
  38209. height: math.unit(10, "feet"),
  38210. weight: math.unit(1500, "lb"),
  38211. name: "Back",
  38212. image: {
  38213. source: "./media/characters/miles-thestia/back.svg",
  38214. extra: 1799/1690,
  38215. bottom: 47/1846
  38216. }
  38217. },
  38218. frontNsfw: {
  38219. height: math.unit(10, "feet"),
  38220. weight: math.unit(1500, "lb"),
  38221. name: "Front (NSFW)",
  38222. image: {
  38223. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38224. extra: 1812/1727,
  38225. bottom: 86/1898
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Mini-Macro",
  38232. height: math.unit(10, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(25, "feet"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/titan-s-wulf/front.svg",
  38245. extra: 1560/1484,
  38246. bottom: 76/1636
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Smallest",
  38253. height: math.unit(25, "feet"),
  38254. default: true
  38255. },
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(200, "feet")
  38259. },
  38260. {
  38261. name: "Macro",
  38262. height: math.unit(200000, "feet")
  38263. },
  38264. {
  38265. name: "Multiversal Original",
  38266. height: math.unit(10000, "multiverses")
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(8, "feet"),
  38275. weight: math.unit(553, "lb"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/tawendeh/front.svg",
  38279. extra: 2365/2268,
  38280. bottom: 83/2448
  38281. }
  38282. },
  38283. frontClothed: {
  38284. height: math.unit(8, "feet"),
  38285. weight: math.unit(553, "lb"),
  38286. name: "Front (Clothed)",
  38287. image: {
  38288. source: "./media/characters/tawendeh/front-clothed.svg",
  38289. extra: 2365/2268,
  38290. bottom: 83/2448
  38291. }
  38292. },
  38293. back: {
  38294. height: math.unit(8, "feet"),
  38295. weight: math.unit(553, "lb"),
  38296. name: "Back",
  38297. image: {
  38298. source: "./media/characters/tawendeh/back.svg",
  38299. extra: 2397/2294,
  38300. bottom: 42/2439
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Mortal Interaction",
  38307. height: math.unit(8, "feet"),
  38308. default: true
  38309. },
  38310. {
  38311. name: "Giant",
  38312. height: math.unit(80, "feet")
  38313. },
  38314. {
  38315. name: "Macro",
  38316. height: math.unit(800, "feet")
  38317. },
  38318. {
  38319. name: "Megamacro",
  38320. height: math.unit(8000, "feet")
  38321. },
  38322. {
  38323. name: "City-Crushing",
  38324. height: math.unit(24000, "feet")
  38325. },
  38326. {
  38327. name: "Mountain-Mashing",
  38328. height: math.unit(80000, "feet")
  38329. },
  38330. {
  38331. name: "Nation Nemesis",
  38332. height: math.unit(8e6, "feet")
  38333. },
  38334. {
  38335. name: "Continent Cracker",
  38336. height: math.unit(24e6, "feet")
  38337. },
  38338. {
  38339. name: "Earth-Eclipsing",
  38340. height: math.unit(2.4e8, "feet")
  38341. },
  38342. {
  38343. name: "Gas Giant Gulper",
  38344. height: math.unit(2.4e9, "feet")
  38345. },
  38346. {
  38347. name: "Sol-Swallowing",
  38348. height: math.unit(8e10, "feet")
  38349. },
  38350. {
  38351. name: "Galaxy Gulper",
  38352. height: math.unit(8, "galaxies")
  38353. },
  38354. {
  38355. name: "Cosmos Churner",
  38356. height: math.unit(8, "universes")
  38357. },
  38358. {
  38359. name: "Omnipotent Otter",
  38360. height: math.unit(80, "universes")
  38361. },
  38362. ]
  38363. ))
  38364. characterMakers.push(() => makeCharacter(
  38365. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38366. {
  38367. front: {
  38368. height: math.unit(2.6, "meters"),
  38369. weight: math.unit(900, "kg"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/neesha/front.svg",
  38373. extra: 1803/1653,
  38374. bottom: 128/1931
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(2.6, "meters"),
  38382. default: true
  38383. },
  38384. {
  38385. name: "Macro",
  38386. height: math.unit(50, "meters")
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(5, "feet"),
  38395. weight: math.unit(185, "lb"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/kyera/front.svg",
  38399. extra: 1875/1790,
  38400. bottom: 96/1971
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(5, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(7 + 6/12, "feet"),
  38417. weight: math.unit(540, "lb"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/yuko/front.svg",
  38421. extra: 1282/1222,
  38422. bottom: 101/1383
  38423. }
  38424. },
  38425. frontClothed: {
  38426. height: math.unit(7 + 6/12, "feet"),
  38427. weight: math.unit(540, "lb"),
  38428. name: "Front (Clothed)",
  38429. image: {
  38430. source: "./media/characters/yuko/front-clothed.svg",
  38431. extra: 1282/1222,
  38432. bottom: 101/1383
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(7 + 6/12, "feet"),
  38440. default: true
  38441. },
  38442. {
  38443. name: "Macro",
  38444. height: math.unit(26 + 9/12, "feet")
  38445. },
  38446. {
  38447. name: "Megamacro",
  38448. height: math.unit(300, "feet")
  38449. },
  38450. {
  38451. name: "Gigamacro",
  38452. height: math.unit(5000, "feet")
  38453. },
  38454. {
  38455. name: "Planetary",
  38456. height: math.unit(10000, "miles")
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(8 + 2/12, "feet"),
  38465. weight: math.unit(600, "lb"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/deam-nitrel/front.svg",
  38469. extra: 1308/1234,
  38470. bottom: 125/1433
  38471. }
  38472. },
  38473. },
  38474. [
  38475. {
  38476. name: "Normal",
  38477. height: math.unit(8 + 2/12, "feet"),
  38478. default: true
  38479. },
  38480. ]
  38481. ))
  38482. characterMakers.push(() => makeCharacter(
  38483. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38484. {
  38485. front: {
  38486. height: math.unit(6.1, "feet"),
  38487. weight: math.unit(180, "lb"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/skyress/front.svg",
  38491. extra: 1045/915,
  38492. bottom: 28/1073
  38493. }
  38494. },
  38495. maw: {
  38496. height: math.unit(1, "feet"),
  38497. name: "Maw",
  38498. image: {
  38499. source: "./media/characters/skyress/maw.svg"
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(6.1, "feet"),
  38507. default: true
  38508. },
  38509. {
  38510. name: "Macro",
  38511. height: math.unit(200, "feet")
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(4 + 2/12, "feet"),
  38520. weight: math.unit(40, "kg"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/amethyst-jones/front.svg",
  38524. extra: 1220/1150,
  38525. bottom: 101/1321
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(4 + 2/12, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(1.7, "m"),
  38542. weight: math.unit(135, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/jade/front.svg",
  38546. extra: 1818/1767,
  38547. bottom: 32/1850
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(1.7, "m"),
  38552. weight: math.unit(135, "lb"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/jade/back.svg",
  38556. extra: 1869/1809,
  38557. bottom: 35/1904
  38558. }
  38559. },
  38560. hand: {
  38561. height: math.unit(0.24, "m"),
  38562. name: "Hand",
  38563. image: {
  38564. source: "./media/characters/jade/hand.svg"
  38565. }
  38566. },
  38567. foot: {
  38568. height: math.unit(0.263, "m"),
  38569. name: "Foot",
  38570. image: {
  38571. source: "./media/characters/jade/foot.svg"
  38572. }
  38573. },
  38574. dick: {
  38575. height: math.unit(0.47, "m"),
  38576. name: "Dick",
  38577. image: {
  38578. source: "./media/characters/jade/dick.svg"
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Micro",
  38585. height: math.unit(22, "cm")
  38586. },
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(1.7, "m"),
  38590. default: true
  38591. },
  38592. {
  38593. name: "Macro",
  38594. height: math.unit(152, "m")
  38595. },
  38596. ]
  38597. ))
  38598. characterMakers.push(() => makeCharacter(
  38599. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38600. {
  38601. front: {
  38602. height: math.unit(100, "miles"),
  38603. weight: math.unit(20000, "tons"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/cookie/front.svg",
  38607. extra: 1125/1070,
  38608. bottom: 30/1155
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Big",
  38615. height: math.unit(50, "feet")
  38616. },
  38617. {
  38618. name: "Macro",
  38619. height: math.unit(100, "miles"),
  38620. default: true
  38621. },
  38622. {
  38623. name: "Megamacro",
  38624. height: math.unit(90000, "miles")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(6, "feet"),
  38633. weight: math.unit(145, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/farzian/front.svg",
  38637. extra: 1902/1693,
  38638. bottom: 108/2010
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Macro",
  38645. height: math.unit(500, "feet"),
  38646. default: true
  38647. },
  38648. ]
  38649. ))
  38650. characterMakers.push(() => makeCharacter(
  38651. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38652. {
  38653. front: {
  38654. height: math.unit(3 + 6/12, "feet"),
  38655. weight: math.unit(50, "lb"),
  38656. name: "Front",
  38657. image: {
  38658. source: "./media/characters/kimberly-tilson/front.svg",
  38659. extra: 1400/1322,
  38660. bottom: 36/1436
  38661. }
  38662. },
  38663. back: {
  38664. height: math.unit(3 + 6/12, "feet"),
  38665. weight: math.unit(50, "lb"),
  38666. name: "Back",
  38667. image: {
  38668. source: "./media/characters/kimberly-tilson/back.svg",
  38669. extra: 1370/1307,
  38670. bottom: 20/1390
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(3 + 6/12, "feet"),
  38678. default: true
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38684. {
  38685. front: {
  38686. height: math.unit(1148, "feet"),
  38687. weight: math.unit(34057, "lb"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/harthos/front.svg",
  38691. extra: 1391/1339,
  38692. bottom: 13/1404
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Macro",
  38699. height: math.unit(1148, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(15, "feet"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/hypatia/front.svg",
  38712. extra: 1653/1591,
  38713. bottom: 79/1732
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(15, "feet")
  38721. },
  38722. {
  38723. name: "Small",
  38724. height: math.unit(300, "feet")
  38725. },
  38726. {
  38727. name: "Macro",
  38728. height: math.unit(2500, "feet"),
  38729. default: true
  38730. },
  38731. {
  38732. name: "Mega Macro",
  38733. height: math.unit(1500, "miles")
  38734. },
  38735. {
  38736. name: "Giga Macro",
  38737. height: math.unit(1.5e6, "miles")
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(6, "feet"),
  38746. weight: math.unit(200, "lb"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/wulver/front.svg",
  38750. extra: 1724/1632,
  38751. bottom: 130/1854
  38752. }
  38753. },
  38754. frontNsfw: {
  38755. height: math.unit(6, "feet"),
  38756. weight: math.unit(200, "lb"),
  38757. name: "Front (NSFW)",
  38758. image: {
  38759. source: "./media/characters/wulver/front-nsfw.svg",
  38760. extra: 1724/1632,
  38761. bottom: 130/1854
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Human-Sized",
  38768. height: math.unit(6, "feet")
  38769. },
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(4, "meters"),
  38773. default: true
  38774. },
  38775. {
  38776. name: "Large",
  38777. height: math.unit(6, "m")
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(7, "feet"),
  38786. name: "Front",
  38787. image: {
  38788. source: "./media/characters/maru/front.svg",
  38789. extra: 1595/1570,
  38790. bottom: 0/1595
  38791. }
  38792. },
  38793. },
  38794. [
  38795. {
  38796. name: "Normal",
  38797. height: math.unit(7, "feet"),
  38798. default: true
  38799. },
  38800. {
  38801. name: "Macro",
  38802. height: math.unit(700, "feet")
  38803. },
  38804. {
  38805. name: "Mega Macro",
  38806. height: math.unit(25, "miles")
  38807. },
  38808. ]
  38809. ))
  38810. characterMakers.push(() => makeCharacter(
  38811. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38812. {
  38813. front: {
  38814. height: math.unit(6, "feet"),
  38815. weight: math.unit(170, "lb"),
  38816. name: "Front",
  38817. image: {
  38818. source: "./media/characters/xenon/front.svg",
  38819. extra: 1376/1305,
  38820. bottom: 56/1432
  38821. }
  38822. },
  38823. back: {
  38824. height: math.unit(6, "feet"),
  38825. weight: math.unit(170, "lb"),
  38826. name: "Back",
  38827. image: {
  38828. source: "./media/characters/xenon/back.svg",
  38829. extra: 1328/1259,
  38830. bottom: 95/1423
  38831. }
  38832. },
  38833. maw: {
  38834. height: math.unit(0.52, "feet"),
  38835. name: "Maw",
  38836. image: {
  38837. source: "./media/characters/xenon/maw.svg"
  38838. }
  38839. },
  38840. hand: {
  38841. height: math.unit(0.82, "feet"),
  38842. name: "Hand",
  38843. image: {
  38844. source: "./media/characters/xenon/hand.svg"
  38845. }
  38846. },
  38847. foot: {
  38848. height: math.unit(1.13, "feet"),
  38849. name: "Foot",
  38850. image: {
  38851. source: "./media/characters/xenon/foot.svg"
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Micro",
  38858. height: math.unit(0.8, "inches")
  38859. },
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(6, "feet")
  38863. },
  38864. {
  38865. name: "Macro",
  38866. height: math.unit(50, "feet"),
  38867. default: true
  38868. },
  38869. {
  38870. name: "Macro+",
  38871. height: math.unit(250, "feet")
  38872. },
  38873. {
  38874. name: "Megamacro",
  38875. height: math.unit(1500, "feet")
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(7 + 5/12, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/zane/front.svg",
  38887. extra: 1260/1203,
  38888. bottom: 94/1354
  38889. }
  38890. },
  38891. back: {
  38892. height: math.unit(5.05, "feet"),
  38893. name: "Back",
  38894. image: {
  38895. source: "./media/characters/zane/back.svg",
  38896. extra: 893/829,
  38897. bottom: 30/923
  38898. }
  38899. },
  38900. werewolf: {
  38901. height: math.unit(11, "feet"),
  38902. name: "Werewolf",
  38903. image: {
  38904. source: "./media/characters/zane/werewolf.svg",
  38905. extra: 1383/1323,
  38906. bottom: 89/1472
  38907. }
  38908. },
  38909. foot: {
  38910. height: math.unit(1.46, "feet"),
  38911. name: "Foot",
  38912. image: {
  38913. source: "./media/characters/zane/foot.svg"
  38914. }
  38915. },
  38916. footFront: {
  38917. height: math.unit(0.784, "feet"),
  38918. name: "Foot (Front)",
  38919. image: {
  38920. source: "./media/characters/zane/foot-front.svg"
  38921. }
  38922. },
  38923. dick: {
  38924. height: math.unit(1.95, "feet"),
  38925. name: "Dick",
  38926. image: {
  38927. source: "./media/characters/zane/dick.svg"
  38928. }
  38929. },
  38930. dickWerewolf: {
  38931. height: math.unit(3.77, "feet"),
  38932. name: "Dick (Werewolf)",
  38933. image: {
  38934. source: "./media/characters/zane/dick.svg"
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(7 + 5/12, "feet"),
  38942. default: true
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(6 + 2/12, "feet"),
  38951. weight: math.unit(284, "lb"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/benni-desparque/front.svg",
  38955. extra: 1353/1126,
  38956. bottom: 69/1422
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Civilian",
  38963. height: math.unit(6 + 2/12, "feet")
  38964. },
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(98, "feet"),
  38968. default: true
  38969. },
  38970. {
  38971. name: "Kaiju Fighter",
  38972. height: math.unit(268, "feet")
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(5, "feet"),
  38981. weight: math.unit(105, "lb"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/maxine/front.svg",
  38985. extra: 1386/1250,
  38986. bottom: 71/1457
  38987. }
  38988. },
  38989. },
  38990. [
  38991. {
  38992. name: "Normal",
  38993. height: math.unit(5, "feet"),
  38994. default: true
  38995. },
  38996. ]
  38997. ))
  38998. characterMakers.push(() => makeCharacter(
  38999. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39000. {
  39001. front: {
  39002. height: math.unit(11 + 7/12, "feet"),
  39003. weight: math.unit(9576, "lb"),
  39004. name: "Front",
  39005. image: {
  39006. source: "./media/characters/scaly/front.svg",
  39007. extra: 888/867,
  39008. bottom: 36/924
  39009. }
  39010. },
  39011. },
  39012. [
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(11 + 7/12, "feet"),
  39016. default: true
  39017. },
  39018. ]
  39019. ))
  39020. characterMakers.push(() => makeCharacter(
  39021. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39022. {
  39023. front: {
  39024. height: math.unit(9, "inches"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/saelria/front.svg",
  39028. extra: 662/621,
  39029. bottom: 12/674
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Tiny",
  39036. height: math.unit(9, "inches"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(80, "meters"),
  39046. weight: math.unit(7000, "tonnes"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/tef/front.svg",
  39050. extra: 2036/1991,
  39051. bottom: 54/2090
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(80, "meters"),
  39056. weight: math.unit(7000, "tonnes"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/tef/back.svg",
  39060. extra: 2036/1991,
  39061. bottom: 54/2090
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Macro",
  39068. height: math.unit(80, "meters"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(13, "feet"),
  39078. weight: math.unit(6, "tons"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/rover/front.svg",
  39082. extra: 1233/1156,
  39083. bottom: 50/1283
  39084. }
  39085. },
  39086. back: {
  39087. height: math.unit(13, "feet"),
  39088. weight: math.unit(6, "tons"),
  39089. name: "Back",
  39090. image: {
  39091. source: "./media/characters/rover/back.svg",
  39092. extra: 1327/1258,
  39093. bottom: 39/1366
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(13, "feet"),
  39101. default: true
  39102. },
  39103. {
  39104. name: "Macro",
  39105. height: math.unit(1300, "feet")
  39106. },
  39107. {
  39108. name: "Megamacro",
  39109. height: math.unit(1300, "miles")
  39110. },
  39111. {
  39112. name: "Gigamacro",
  39113. height: math.unit(1300000, "miles")
  39114. },
  39115. ]
  39116. ))
  39117. characterMakers.push(() => makeCharacter(
  39118. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39119. {
  39120. front: {
  39121. height: math.unit(6, "feet"),
  39122. weight: math.unit(150, "lb"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/ariz/front.svg",
  39126. extra: 1401/1346,
  39127. bottom: 5/1406
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(10, "feet"),
  39135. default: true
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(6, "feet"),
  39144. weight: math.unit(140, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/sigrun/front.svg",
  39148. extra: 1418/1359,
  39149. bottom: 27/1445
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Macro",
  39156. height: math.unit(35, "feet"),
  39157. default: true
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(6, "feet"),
  39166. weight: math.unit(150, "lb"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/numin/front.svg",
  39170. extra: 1433/1388,
  39171. bottom: 12/1445
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(21.5, "km"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(6, "feet"),
  39188. weight: math.unit(463, "lb"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/melwa/front.svg",
  39192. extra: 1307/1248,
  39193. bottom: 93/1400
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(50, "meters"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(325, "feet"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/zorkaiju/front.svg",
  39213. extra: 1955/1814,
  39214. bottom: 40/1995
  39215. }
  39216. },
  39217. frontExtended: {
  39218. height: math.unit(325, "feet"),
  39219. name: "Front (Extended)",
  39220. image: {
  39221. source: "./media/characters/zorkaiju/front-extended.svg",
  39222. extra: 1955/1814,
  39223. bottom: 40/1995
  39224. }
  39225. },
  39226. side: {
  39227. height: math.unit(325, "feet"),
  39228. name: "Side",
  39229. image: {
  39230. source: "./media/characters/zorkaiju/side.svg",
  39231. extra: 1495/1396,
  39232. bottom: 17/1512
  39233. }
  39234. },
  39235. sideExtended: {
  39236. height: math.unit(325, "feet"),
  39237. name: "Side (Extended)",
  39238. image: {
  39239. source: "./media/characters/zorkaiju/side-extended.svg",
  39240. extra: 1495/1396,
  39241. bottom: 17/1512
  39242. }
  39243. },
  39244. back: {
  39245. height: math.unit(325, "feet"),
  39246. name: "Back",
  39247. image: {
  39248. source: "./media/characters/zorkaiju/back.svg",
  39249. extra: 1959/1821,
  39250. bottom: 31/1990
  39251. }
  39252. },
  39253. backExtended: {
  39254. height: math.unit(325, "feet"),
  39255. name: "Back (Extended)",
  39256. image: {
  39257. source: "./media/characters/zorkaiju/back-extended.svg",
  39258. extra: 1959/1821,
  39259. bottom: 31/1990
  39260. }
  39261. },
  39262. hand: {
  39263. height: math.unit(58.4, "feet"),
  39264. name: "Hand",
  39265. image: {
  39266. source: "./media/characters/zorkaiju/hand.svg"
  39267. }
  39268. },
  39269. handExtended: {
  39270. height: math.unit(61.4, "feet"),
  39271. name: "Hand (Extended)",
  39272. image: {
  39273. source: "./media/characters/zorkaiju/hand-extended.svg"
  39274. }
  39275. },
  39276. foot: {
  39277. height: math.unit(95, "feet"),
  39278. name: "Foot",
  39279. image: {
  39280. source: "./media/characters/zorkaiju/foot.svg"
  39281. }
  39282. },
  39283. leftArm: {
  39284. height: math.unit(59, "feet"),
  39285. name: "Left Arm",
  39286. image: {
  39287. source: "./media/characters/zorkaiju/left-arm.svg"
  39288. }
  39289. },
  39290. rightArm: {
  39291. height: math.unit(59, "feet"),
  39292. name: "Right Arm",
  39293. image: {
  39294. source: "./media/characters/zorkaiju/right-arm.svg"
  39295. }
  39296. },
  39297. tail: {
  39298. height: math.unit(104, "feet"),
  39299. name: "Tail",
  39300. image: {
  39301. source: "./media/characters/zorkaiju/tail.svg"
  39302. }
  39303. },
  39304. tailExtended: {
  39305. height: math.unit(104, "feet"),
  39306. name: "Tail (Extended)",
  39307. image: {
  39308. source: "./media/characters/zorkaiju/tail-extended.svg"
  39309. }
  39310. },
  39311. tailBottom: {
  39312. height: math.unit(104, "feet"),
  39313. name: "Tail Bottom",
  39314. image: {
  39315. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39316. }
  39317. },
  39318. crystal: {
  39319. height: math.unit(27.54, "feet"),
  39320. name: "Crystal",
  39321. image: {
  39322. source: "./media/characters/zorkaiju/crystal.svg"
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Kaiju",
  39329. height: math.unit(325, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(6 + 1/12, "feet"),
  39339. weight: math.unit(115, "lb"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/bailey-belfry/front.svg",
  39343. extra: 1240/1121,
  39344. bottom: 101/1341
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(6 + 1/12, "feet"),
  39352. default: true
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39358. {
  39359. side: {
  39360. height: math.unit(4, "meters"),
  39361. weight: math.unit(250, "kg"),
  39362. name: "Side",
  39363. image: {
  39364. source: "./media/characters/blacky/side.svg",
  39365. extra: 1027/919,
  39366. bottom: 43/1070
  39367. }
  39368. },
  39369. maw: {
  39370. height: math.unit(1, "meters"),
  39371. name: "Maw",
  39372. image: {
  39373. source: "./media/characters/blacky/maw.svg"
  39374. }
  39375. },
  39376. paw: {
  39377. height: math.unit(1, "meters"),
  39378. name: "Paw",
  39379. image: {
  39380. source: "./media/characters/blacky/paw.svg"
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(4, "meters"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(170, "cm"),
  39397. weight: math.unit(66, "kg"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/thux-ei/front.svg",
  39401. extra: 1109/1011,
  39402. bottom: 8/1117
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(170, "cm"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(5, "feet"),
  39419. weight: math.unit(120, "lb"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/roxanne-voltaire/front.svg",
  39423. extra: 1901/1779,
  39424. bottom: 53/1954
  39425. }
  39426. },
  39427. },
  39428. [
  39429. {
  39430. name: "Normal",
  39431. height: math.unit(5, "feet"),
  39432. default: true
  39433. },
  39434. {
  39435. name: "Giant",
  39436. height: math.unit(50, "feet")
  39437. },
  39438. {
  39439. name: "Titan",
  39440. height: math.unit(500, "feet")
  39441. },
  39442. {
  39443. name: "Macro",
  39444. height: math.unit(5000, "feet")
  39445. },
  39446. {
  39447. name: "Megamacro",
  39448. height: math.unit(50000, "feet")
  39449. },
  39450. {
  39451. name: "Gigamacro",
  39452. height: math.unit(500000, "feet")
  39453. },
  39454. {
  39455. name: "Teramacro",
  39456. height: math.unit(5e6, "feet")
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(6 + 2/12, "feet"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/squeaks/front.svg",
  39468. extra: 1823/1768,
  39469. bottom: 138/1961
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Micro",
  39476. height: math.unit(0.5, "inches")
  39477. },
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(6 + 2/12, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Macro",
  39485. height: math.unit(600, "feet")
  39486. },
  39487. ]
  39488. ))
  39489. characterMakers.push(() => makeCharacter(
  39490. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39491. {
  39492. front: {
  39493. height: math.unit(1.72, "meters"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/archinger/front.svg",
  39497. extra: 1861/1675,
  39498. bottom: 125/1986
  39499. }
  39500. },
  39501. back: {
  39502. height: math.unit(1.72, "meters"),
  39503. name: "Back",
  39504. image: {
  39505. source: "./media/characters/archinger/back.svg",
  39506. extra: 1844/1701,
  39507. bottom: 104/1948
  39508. }
  39509. },
  39510. cock: {
  39511. height: math.unit(0.59, "feet"),
  39512. name: "Cock",
  39513. image: {
  39514. source: "./media/characters/archinger/cock.svg"
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(1.72, "meters"),
  39522. default: true
  39523. },
  39524. {
  39525. name: "Macro",
  39526. height: math.unit(84, "meters")
  39527. },
  39528. {
  39529. name: "Macro+",
  39530. height: math.unit(112, "meters")
  39531. },
  39532. {
  39533. name: "Macro++",
  39534. height: math.unit(960, "meters")
  39535. },
  39536. {
  39537. name: "Macro+++",
  39538. height: math.unit(4, "km")
  39539. },
  39540. {
  39541. name: "Macro++++",
  39542. height: math.unit(48, "km")
  39543. },
  39544. {
  39545. name: "Macro+++++",
  39546. height: math.unit(4500, "km")
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(5 + 5/12, "feet"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/alsnapz/front.svg",
  39558. extra: 1157/1065,
  39559. bottom: 42/1199
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(5 + 5/12, "feet"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39573. {
  39574. side: {
  39575. height: math.unit(3.2, "earths"),
  39576. name: "Side",
  39577. image: {
  39578. source: "./media/characters/mag/side.svg",
  39579. extra: 1331/1008,
  39580. bottom: 52/1383
  39581. }
  39582. },
  39583. wing: {
  39584. height: math.unit(1.94, "earths"),
  39585. name: "Wing",
  39586. image: {
  39587. source: "./media/characters/mag/wing.svg"
  39588. }
  39589. },
  39590. dick: {
  39591. height: math.unit(1.8, "earths"),
  39592. name: "Dick",
  39593. image: {
  39594. source: "./media/characters/mag/dick.svg"
  39595. }
  39596. },
  39597. ass: {
  39598. height: math.unit(1.33, "earths"),
  39599. name: "Ass",
  39600. image: {
  39601. source: "./media/characters/mag/ass.svg"
  39602. }
  39603. },
  39604. head: {
  39605. height: math.unit(1.1, "earths"),
  39606. name: "Head",
  39607. image: {
  39608. source: "./media/characters/mag/head.svg"
  39609. }
  39610. },
  39611. maw: {
  39612. height: math.unit(1.62, "earths"),
  39613. name: "Maw",
  39614. image: {
  39615. source: "./media/characters/mag/maw.svg"
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Small",
  39622. height: math.unit(162, "feet")
  39623. },
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(3.2, "earths"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(512, "feet"),
  39636. weight: math.unit(63509, "tonnes"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/vorrel-harroc/front.svg",
  39640. extra: 1075/1063,
  39641. bottom: 62/1137
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(10, "feet")
  39649. },
  39650. {
  39651. name: "Macro",
  39652. height: math.unit(512, "feet"),
  39653. default: true
  39654. },
  39655. {
  39656. name: "Megamacro",
  39657. height: math.unit(256, "miles")
  39658. },
  39659. {
  39660. name: "Gigamacro",
  39661. height: math.unit(4096, "miles")
  39662. },
  39663. ]
  39664. ))
  39665. characterMakers.push(() => makeCharacter(
  39666. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39667. {
  39668. side: {
  39669. height: math.unit(50, "feet"),
  39670. name: "Side",
  39671. image: {
  39672. source: "./media/characters/froimar/side.svg",
  39673. extra: 855/638,
  39674. bottom: 99/954
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Macro",
  39681. height: math.unit(50, "feet"),
  39682. default: true
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39688. {
  39689. front: {
  39690. height: math.unit(210, "miles"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/timothy/front.svg",
  39694. extra: 1007/943,
  39695. bottom: 62/1069
  39696. }
  39697. },
  39698. frontSkirt: {
  39699. height: math.unit(210, "miles"),
  39700. name: "Front (Skirt)",
  39701. image: {
  39702. source: "./media/characters/timothy/front-skirt.svg",
  39703. extra: 1007/943,
  39704. bottom: 62/1069
  39705. }
  39706. },
  39707. frontCoat: {
  39708. height: math.unit(210, "miles"),
  39709. name: "Front (Coat)",
  39710. image: {
  39711. source: "./media/characters/timothy/front-coat.svg",
  39712. extra: 1007/943,
  39713. bottom: 62/1069
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Macro",
  39720. height: math.unit(210, "miles"),
  39721. default: true
  39722. },
  39723. {
  39724. name: "Megamacro",
  39725. height: math.unit(210000, "miles")
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(188, "feet"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/pyotr/front.svg",
  39737. extra: 1912/1826,
  39738. bottom: 18/1930
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Macro",
  39745. height: math.unit(188, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Megamacro",
  39750. height: math.unit(8, "miles")
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39756. {
  39757. side: {
  39758. height: math.unit(10, "feet"),
  39759. weight: math.unit(4500, "lb"),
  39760. name: "Side",
  39761. image: {
  39762. source: "./media/characters/ackart/side.svg",
  39763. extra: 1776/1668,
  39764. bottom: 116/1892
  39765. }
  39766. },
  39767. },
  39768. [
  39769. {
  39770. name: "Normal",
  39771. height: math.unit(10, "feet"),
  39772. default: true
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39778. {
  39779. side: {
  39780. height: math.unit(21, "feet"),
  39781. name: "Side",
  39782. image: {
  39783. source: "./media/characters/nolow/side.svg",
  39784. extra: 1484/1434,
  39785. bottom: 85/1569
  39786. }
  39787. },
  39788. sideErect: {
  39789. height: math.unit(21, "feet"),
  39790. name: "Side-erect",
  39791. image: {
  39792. source: "./media/characters/nolow/side-erect.svg",
  39793. extra: 1484/1434,
  39794. bottom: 85/1569
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Regular",
  39801. height: math.unit(12, "feet")
  39802. },
  39803. {
  39804. name: "Big Chee",
  39805. height: math.unit(21, "feet"),
  39806. default: true
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(7, "feet"),
  39815. weight: math.unit(250, "lb"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/nines/front.svg",
  39819. extra: 1741/1607,
  39820. bottom: 41/1782
  39821. }
  39822. },
  39823. side: {
  39824. height: math.unit(7, "feet"),
  39825. weight: math.unit(250, "lb"),
  39826. name: "Side",
  39827. image: {
  39828. source: "./media/characters/nines/side.svg",
  39829. extra: 1854/1735,
  39830. bottom: 93/1947
  39831. }
  39832. },
  39833. back: {
  39834. height: math.unit(7, "feet"),
  39835. weight: math.unit(250, "lb"),
  39836. name: "Back",
  39837. image: {
  39838. source: "./media/characters/nines/back.svg",
  39839. extra: 1748/1615,
  39840. bottom: 20/1768
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Megamacro",
  39847. height: math.unit(99, "km"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(5 + 10/12, "feet"),
  39857. weight: math.unit(210, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/zenith/front.svg",
  39861. extra: 1531/1452,
  39862. bottom: 198/1729
  39863. }
  39864. },
  39865. back: {
  39866. height: math.unit(5 + 10/12, "feet"),
  39867. weight: math.unit(210, "lb"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/zenith/back.svg",
  39871. extra: 1571/1487,
  39872. bottom: 75/1646
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(5 + 10/12, "feet"),
  39880. default: true
  39881. }
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(4, "feet"),
  39889. weight: math.unit(60, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/jasper/front.svg",
  39893. extra: 1450/1379,
  39894. bottom: 19/1469
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Normal",
  39901. height: math.unit(4, "feet"),
  39902. default: true
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(6 + 5/12, "feet"),
  39911. weight: math.unit(290, "lb"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/tiberius-thyben/front.svg",
  39915. extra: 757/739,
  39916. bottom: 39/796
  39917. }
  39918. },
  39919. },
  39920. [
  39921. {
  39922. name: "Micro",
  39923. height: math.unit(1.5, "inches")
  39924. },
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(6 + 5/12, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(300, "feet")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(5 + 6/12, "feet"),
  39941. weight: math.unit(60, "kg"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/sabre/front.svg",
  39945. extra: 738/671,
  39946. bottom: 27/765
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Teeny",
  39953. height: math.unit(2, "inches")
  39954. },
  39955. {
  39956. name: "Smol",
  39957. height: math.unit(8, "inches")
  39958. },
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(5 + 6/12, "feet"),
  39962. default: true
  39963. },
  39964. {
  39965. name: "Mini-Macro",
  39966. height: math.unit(15, "feet")
  39967. },
  39968. {
  39969. name: "Macro",
  39970. height: math.unit(50, "feet")
  39971. },
  39972. ]
  39973. ))
  39974. characterMakers.push(() => makeCharacter(
  39975. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  39976. {
  39977. front: {
  39978. height: math.unit(6 + 4/12, "feet"),
  39979. weight: math.unit(170, "lb"),
  39980. name: "Front",
  39981. image: {
  39982. source: "./media/characters/charlie/front.svg",
  39983. extra: 1348/1228,
  39984. bottom: 15/1363
  39985. }
  39986. },
  39987. },
  39988. [
  39989. {
  39990. name: "Macro",
  39991. height: math.unit(1700, "meters"),
  39992. default: true
  39993. },
  39994. {
  39995. name: "MegaMacro",
  39996. height: math.unit(20400, "meters")
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40002. {
  40003. front: {
  40004. height: math.unit(6 + 3/12, "feet"),
  40005. weight: math.unit(185, "lb"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/susan-grant/front.svg",
  40009. extra: 1351/1327,
  40010. bottom: 26/1377
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Normal",
  40017. height: math.unit(6 + 3/12, "feet"),
  40018. default: true
  40019. },
  40020. {
  40021. name: "Macro",
  40022. height: math.unit(225, "feet")
  40023. },
  40024. {
  40025. name: "Macro+",
  40026. height: math.unit(900, "feet")
  40027. },
  40028. {
  40029. name: "MegaMacro",
  40030. height: math.unit(14400, "feet")
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40036. {
  40037. front: {
  40038. height: math.unit(5 + 4/12, "feet"),
  40039. weight: math.unit(110, "lb"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/axel-isanov/front.svg",
  40043. extra: 1096/1065,
  40044. bottom: 13/1109
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Normal",
  40051. height: math.unit(5 + 4/12, "feet"),
  40052. default: true
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(9, "feet"),
  40061. weight: math.unit(467, "lb"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/necahual/front.svg",
  40065. extra: 920/873,
  40066. bottom: 26/946
  40067. }
  40068. },
  40069. back: {
  40070. height: math.unit(9, "feet"),
  40071. weight: math.unit(467, "lb"),
  40072. name: "Back",
  40073. image: {
  40074. source: "./media/characters/necahual/back.svg",
  40075. extra: 930/884,
  40076. bottom: 16/946
  40077. }
  40078. },
  40079. frontUnderwear: {
  40080. height: math.unit(9, "feet"),
  40081. weight: math.unit(467, "lb"),
  40082. name: "Front (Underwear)",
  40083. image: {
  40084. source: "./media/characters/necahual/front-underwear.svg",
  40085. extra: 920/873,
  40086. bottom: 26/946
  40087. }
  40088. },
  40089. frontDressed: {
  40090. height: math.unit(9, "feet"),
  40091. weight: math.unit(467, "lb"),
  40092. name: "Front (Dressed)",
  40093. image: {
  40094. source: "./media/characters/necahual/front-dressed.svg",
  40095. extra: 920/873,
  40096. bottom: 26/946
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Comprsesed",
  40103. height: math.unit(9, "feet")
  40104. },
  40105. {
  40106. name: "Natural",
  40107. height: math.unit(15, "feet"),
  40108. default: true
  40109. },
  40110. {
  40111. name: "Boosted",
  40112. height: math.unit(50, "feet")
  40113. },
  40114. {
  40115. name: "Boosted+",
  40116. height: math.unit(150, "feet")
  40117. },
  40118. {
  40119. name: "Max",
  40120. height: math.unit(500, "feet")
  40121. },
  40122. ]
  40123. ))
  40124. characterMakers.push(() => makeCharacter(
  40125. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40126. {
  40127. front: {
  40128. height: math.unit(22 + 1/12, "feet"),
  40129. weight: math.unit(3200, "lb"),
  40130. name: "Front",
  40131. image: {
  40132. source: "./media/characters/theo-acacia/front.svg",
  40133. extra: 1796/1741,
  40134. bottom: 83/1879
  40135. }
  40136. },
  40137. frontUnderwear: {
  40138. height: math.unit(22 + 1/12, "feet"),
  40139. weight: math.unit(3200, "lb"),
  40140. name: "Front (Underwear)",
  40141. image: {
  40142. source: "./media/characters/theo-acacia/front-underwear.svg",
  40143. extra: 1796/1741,
  40144. bottom: 83/1879
  40145. }
  40146. },
  40147. frontNude: {
  40148. height: math.unit(22 + 1/12, "feet"),
  40149. weight: math.unit(3200, "lb"),
  40150. name: "Front (Nude)",
  40151. image: {
  40152. source: "./media/characters/theo-acacia/front-nude.svg",
  40153. extra: 1796/1741,
  40154. bottom: 83/1879
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Normal",
  40161. height: math.unit(22 + 1/12, "feet"),
  40162. default: true
  40163. },
  40164. ]
  40165. ))
  40166. //characters
  40167. function makeCharacters() {
  40168. const results = [];
  40169. characterMakers.forEach(character => {
  40170. results.push(character());
  40171. });
  40172. return results;
  40173. }