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

48227 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. }
  1896. //species
  1897. function getSpeciesInfo(speciesList) {
  1898. let result = new Set();
  1899. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1900. result.add(entry)
  1901. });
  1902. return Array.from(result);
  1903. };
  1904. function getSpeciesInfoHelper(species) {
  1905. if (!speciesData[species]) {
  1906. console.warn(species + " doesn't exist");
  1907. return [];
  1908. }
  1909. if (speciesData[species].parents) {
  1910. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1911. } else {
  1912. return [species];
  1913. }
  1914. }
  1915. characterMakers.push(() => makeCharacter(
  1916. {
  1917. name: "Fen",
  1918. species: ["crux"],
  1919. description: {
  1920. title: "Bio",
  1921. text: "Very furry. Sheds on everything."
  1922. },
  1923. tags: [
  1924. "anthro",
  1925. "goo"
  1926. ]
  1927. },
  1928. {
  1929. front: {
  1930. height: math.unit(12, "feet"),
  1931. weight: math.unit(2400, "lb"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/fen/front.svg",
  1935. extra: 1804/1562,
  1936. bottom: 205/2009
  1937. }
  1938. },
  1939. diving: {
  1940. height: math.unit(4.9, "meters"),
  1941. weight: math.unit(2400, "lb"),
  1942. name: "Diving",
  1943. image: {
  1944. source: "./media/characters/fen/diving.svg"
  1945. }
  1946. },
  1947. goo: {
  1948. height: math.unit(12, "feet"),
  1949. weight: math.unit(3000, "lb"),
  1950. capacity: math.unit(6, "people"),
  1951. name: "Goo",
  1952. image: {
  1953. source: "./media/characters/fen/goo.svg",
  1954. extra: 1307/1071,
  1955. bottom: 134/1441
  1956. }
  1957. },
  1958. maw: {
  1959. height: math.unit(5.03, "feet"),
  1960. name: "Maw",
  1961. image: {
  1962. source: "./media/characters/fen/maw.svg"
  1963. }
  1964. },
  1965. gooCeiling: {
  1966. height: math.unit(6.6, "feet"),
  1967. weight: math.unit(3000, "lb"),
  1968. capacity: math.unit(6, "people"),
  1969. name: "Goo (Ceiling)",
  1970. image: {
  1971. source: "./media/characters/fen/goo-ceiling.svg"
  1972. }
  1973. },
  1974. back: {
  1975. height: math.unit(12, "feet"),
  1976. weight: math.unit(2400, "lb"),
  1977. name: "Back",
  1978. image: {
  1979. source: "./media/characters/fen/back.svg",
  1980. },
  1981. info: {
  1982. description: {
  1983. mode: "append",
  1984. text: "\n\nHe is not currently looking at you."
  1985. }
  1986. }
  1987. },
  1988. full: {
  1989. height: math.unit(1.6, "meter"),
  1990. weight: math.unit(3200, "lb"),
  1991. name: "Full",
  1992. image: {
  1993. source: "./media/characters/fen/full.svg",
  1994. extra: 1133/859,
  1995. bottom: 145/1278
  1996. },
  1997. info: {
  1998. description: {
  1999. mode: "append",
  2000. text: "\n\nMunch."
  2001. }
  2002. }
  2003. },
  2004. gooLounging: {
  2005. height: math.unit(4.53, "feet"),
  2006. weight: math.unit(3000, "lb"),
  2007. capacity: math.unit(6, "people"),
  2008. name: "Goo (Lounging)",
  2009. image: {
  2010. source: "./media/characters/fen/goo.svg",
  2011. bottom: 116 / 613
  2012. }
  2013. },
  2014. lounging: {
  2015. height: math.unit(10.52, "feet"),
  2016. weight: math.unit(2400, "lb"),
  2017. name: "Lounging",
  2018. image: {
  2019. source: "./media/characters/fen/lounging.svg"
  2020. }
  2021. },
  2022. },
  2023. [
  2024. {
  2025. name: "Small",
  2026. height: math.unit(2.2428, "meter")
  2027. },
  2028. {
  2029. name: "Normal",
  2030. height: math.unit(12, "feet"),
  2031. default: true,
  2032. },
  2033. {
  2034. name: "Big",
  2035. height: math.unit(20, "feet")
  2036. },
  2037. {
  2038. name: "Minimacro",
  2039. height: math.unit(40, "feet"),
  2040. info: {
  2041. description: {
  2042. mode: "append",
  2043. text: "\n\nTOO DAMN BIG"
  2044. }
  2045. }
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(100, "feet"),
  2050. info: {
  2051. description: {
  2052. mode: "append",
  2053. text: "\n\nTOO DAMN BIG"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. name: "Megamacro",
  2059. height: math.unit(2, "miles")
  2060. },
  2061. {
  2062. name: "Gigamacro",
  2063. height: math.unit(10, "earths")
  2064. },
  2065. ]
  2066. ))
  2067. characterMakers.push(() => makeCharacter(
  2068. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2069. {
  2070. front: {
  2071. height: math.unit(183, "cm"),
  2072. weight: math.unit(80, "kg"),
  2073. name: "Front",
  2074. image: {
  2075. source: "./media/characters/sofia-fluttertail/front.svg",
  2076. bottom: 0.01,
  2077. extra: 2154 / 2081
  2078. }
  2079. },
  2080. frontAlt: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Front (alt)",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2086. }
  2087. },
  2088. back: {
  2089. height: math.unit(183, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Back",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/back.svg"
  2094. }
  2095. },
  2096. kneeling: {
  2097. height: math.unit(125, "cm"),
  2098. weight: math.unit(80, "kg"),
  2099. name: "Kneeling",
  2100. image: {
  2101. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2102. extra: 1033 / 977,
  2103. bottom: 23.7 / 1057
  2104. }
  2105. },
  2106. maw: {
  2107. height: math.unit(183 / 5, "cm"),
  2108. name: "Maw",
  2109. image: {
  2110. source: "./media/characters/sofia-fluttertail/maw.svg"
  2111. }
  2112. },
  2113. mawcloseup: {
  2114. height: math.unit(183 / 5 * 0.41, "cm"),
  2115. name: "Maw (Closeup)",
  2116. image: {
  2117. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2118. }
  2119. },
  2120. paws: {
  2121. height: math.unit(1.17, "feet"),
  2122. name: "Paws",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/paws.svg",
  2125. extra: 851 / 851,
  2126. bottom: 17 / 868
  2127. }
  2128. },
  2129. },
  2130. [
  2131. {
  2132. name: "Normal",
  2133. height: math.unit(1.83, "meter")
  2134. },
  2135. {
  2136. name: "Size Thief",
  2137. height: math.unit(18, "feet")
  2138. },
  2139. {
  2140. name: "50 Foot Collie",
  2141. height: math.unit(50, "feet")
  2142. },
  2143. {
  2144. name: "Macro",
  2145. height: math.unit(96, "feet"),
  2146. default: true
  2147. },
  2148. {
  2149. name: "Megamerger",
  2150. height: math.unit(650, "feet")
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(100, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/march/front.svg",
  2163. extra: 1992/1851,
  2164. bottom: 39/2031
  2165. }
  2166. },
  2167. foot: {
  2168. height: math.unit(0.9, "feet"),
  2169. name: "Foot",
  2170. image: {
  2171. source: "./media/characters/march/foot.svg"
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(7.9, "feet")
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(220, "meters")
  2183. },
  2184. {
  2185. name: "Megamacro",
  2186. height: math.unit(2.98, "km"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Gigamacro",
  2191. height: math.unit(15963, "km")
  2192. },
  2193. {
  2194. name: "Teramacro",
  2195. height: math.unit(2980000000, "km")
  2196. },
  2197. {
  2198. name: "Examacro",
  2199. height: math.unit(250, "parsecs")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(60, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/noir/front.svg",
  2212. extra: 1,
  2213. bottom: 0.032
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Normal",
  2220. height: math.unit(6.6, "feet")
  2221. },
  2222. {
  2223. name: "Macro",
  2224. height: math.unit(500, "feet")
  2225. },
  2226. {
  2227. name: "Megamacro",
  2228. height: math.unit(2.5, "km"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Gigamacro",
  2233. height: math.unit(22500, "km")
  2234. },
  2235. {
  2236. name: "Teramacro",
  2237. height: math.unit(2500000000, "km")
  2238. },
  2239. {
  2240. name: "Examacro",
  2241. height: math.unit(200, "parsecs")
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(7, "feet"),
  2250. weight: math.unit(100, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/okuri/front.svg",
  2254. extra: 1,
  2255. bottom: 0.037
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/okuri/back.svg",
  2264. extra: 1,
  2265. bottom: 0.007
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(100, "miles"),
  2273. default: true
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/manny/front.svg",
  2286. extra: 1,
  2287. bottom: 0.06
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/manny/back.svg",
  2296. extra: 1,
  2297. bottom: 0.014
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Normal",
  2304. height: math.unit(7, "feet"),
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(78, "feet"),
  2309. default: true
  2310. },
  2311. {
  2312. name: "Macro+",
  2313. height: math.unit(300, "meters")
  2314. },
  2315. {
  2316. name: "Macro++",
  2317. height: math.unit(2400, "meters")
  2318. },
  2319. {
  2320. name: "Megamacro",
  2321. height: math.unit(5167, "meters")
  2322. },
  2323. {
  2324. name: "Gigamacro",
  2325. height: math.unit(41769, "miles")
  2326. },
  2327. ]
  2328. ))
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2331. {
  2332. front: {
  2333. height: math.unit(7, "feet"),
  2334. weight: math.unit(100, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/adake/front-1.svg"
  2338. }
  2339. },
  2340. frontAlt: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front (Alt)",
  2344. image: {
  2345. source: "./media/characters/adake/front-2.svg",
  2346. extra: 1,
  2347. bottom: 0.01
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/adake/back.svg",
  2356. }
  2357. },
  2358. kneel: {
  2359. height: math.unit(5.385, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Kneeling",
  2362. image: {
  2363. source: "./media/characters/adake/kneel.svg",
  2364. bottom: 0.052
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Normal",
  2371. height: math.unit(7, "feet"),
  2372. },
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(78, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(300, "meters")
  2381. },
  2382. {
  2383. name: "Macro++",
  2384. height: math.unit(2400, "meters")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(5167, "meters")
  2389. },
  2390. {
  2391. name: "Gigamacro",
  2392. height: math.unit(41769, "miles")
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2398. {
  2399. front: {
  2400. height: math.unit(1.65, "meters"),
  2401. weight: math.unit(50, "kg"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/elijah/front.svg",
  2405. extra: 858 / 830,
  2406. bottom: 95.5 / 953.8559
  2407. }
  2408. },
  2409. back: {
  2410. height: math.unit(1.65, "meters"),
  2411. weight: math.unit(50, "kg"),
  2412. name: "Back",
  2413. image: {
  2414. source: "./media/characters/elijah/back.svg",
  2415. extra: 895 / 850,
  2416. bottom: 5.3 / 897.956
  2417. }
  2418. },
  2419. frontNsfw: {
  2420. height: math.unit(1.65, "meters"),
  2421. weight: math.unit(50, "kg"),
  2422. name: "Front (NSFW)",
  2423. image: {
  2424. source: "./media/characters/elijah/front-nsfw.svg",
  2425. extra: 858 / 830,
  2426. bottom: 95.5 / 953.8559
  2427. }
  2428. },
  2429. backNsfw: {
  2430. height: math.unit(1.65, "meters"),
  2431. weight: math.unit(50, "kg"),
  2432. name: "Back (NSFW)",
  2433. image: {
  2434. source: "./media/characters/elijah/back-nsfw.svg",
  2435. extra: 895 / 850,
  2436. bottom: 5.3 / 897.956
  2437. }
  2438. },
  2439. dick: {
  2440. height: math.unit(1, "feet"),
  2441. name: "Dick",
  2442. image: {
  2443. source: "./media/characters/elijah/dick.svg"
  2444. }
  2445. },
  2446. beakOpen: {
  2447. height: math.unit(1.25, "feet"),
  2448. name: "Beak (Open)",
  2449. image: {
  2450. source: "./media/characters/elijah/beak-open.svg"
  2451. }
  2452. },
  2453. beakShut: {
  2454. height: math.unit(1.25, "feet"),
  2455. name: "Beak (Shut)",
  2456. image: {
  2457. source: "./media/characters/elijah/beak-shut.svg"
  2458. }
  2459. },
  2460. footFlexing: {
  2461. height: math.unit(1.61, "feet"),
  2462. name: "Foot (Flexing)",
  2463. image: {
  2464. source: "./media/characters/elijah/foot-flexing.svg"
  2465. }
  2466. },
  2467. footStepping: {
  2468. height: math.unit(1.44, "feet"),
  2469. name: "Foot (Stepping)",
  2470. image: {
  2471. source: "./media/characters/elijah/foot-stepping.svg"
  2472. }
  2473. },
  2474. plantigradeLeg: {
  2475. height: math.unit(2.34, "feet"),
  2476. name: "Plantigrade Leg",
  2477. image: {
  2478. source: "./media/characters/elijah/plantigrade-leg.svg"
  2479. }
  2480. },
  2481. plantigradeFootLeft: {
  2482. height: math.unit(0.9, "feet"),
  2483. name: "Plantigrade Foot (Left)",
  2484. image: {
  2485. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2486. }
  2487. },
  2488. plantigradeFootRight: {
  2489. height: math.unit(0.9, "feet"),
  2490. name: "Plantigrade Foot (Right)",
  2491. image: {
  2492. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Normal",
  2499. height: math.unit(1.65, "meters")
  2500. },
  2501. {
  2502. name: "Macro",
  2503. height: math.unit(55, "meters"),
  2504. default: true
  2505. },
  2506. {
  2507. name: "Macro+",
  2508. height: math.unit(105, "meters")
  2509. },
  2510. ]
  2511. ))
  2512. characterMakers.push(() => makeCharacter(
  2513. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2514. {
  2515. front: {
  2516. height: math.unit(7 + 2/12, "feet"),
  2517. weight: math.unit(320, "kg"),
  2518. name: "Front",
  2519. image: {
  2520. source: "./media/characters/rai/front.svg",
  2521. extra: 1802/1696,
  2522. bottom: 68/1870
  2523. }
  2524. },
  2525. frontDressed: {
  2526. height: math.unit(7 + 2/12, "feet"),
  2527. weight: math.unit(320, "kg"),
  2528. name: "Front (Dressed)",
  2529. image: {
  2530. source: "./media/characters/rai/front-dressed.svg",
  2531. extra: 1802/1696,
  2532. bottom: 68/1870
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(7 + 2/12, "feet"),
  2537. weight: math.unit(320, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/rai/side.svg",
  2541. extra: 1789/1710,
  2542. bottom: 115/1904
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(7 + 2/12, "feet"),
  2547. weight: math.unit(320, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/rai/back.svg",
  2551. extra: 1770/1707,
  2552. bottom: 28/1798
  2553. }
  2554. },
  2555. feral: {
  2556. height: math.unit(9.5, "feet"),
  2557. weight: math.unit(640, "kg"),
  2558. name: "Feral",
  2559. image: {
  2560. source: "./media/characters/rai/feral.svg",
  2561. extra: 945/553,
  2562. bottom: 176/1121
  2563. }
  2564. },
  2565. dragon: {
  2566. height: math.unit(23, "feet"),
  2567. weight: math.unit(50000, "lb"),
  2568. name: "Dragon",
  2569. image: {
  2570. source: "./media/characters/rai/dragon.svg",
  2571. extra: 2498 / 2030,
  2572. bottom: 85.2 / 2584
  2573. }
  2574. },
  2575. maw: {
  2576. height: math.unit(1.69, "feet"),
  2577. name: "Maw",
  2578. image: {
  2579. source: "./media/characters/rai/maw.svg"
  2580. }
  2581. },
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(7 + 2/12, "feet")
  2587. },
  2588. {
  2589. name: "Big",
  2590. height: math.unit(11, "feet")
  2591. },
  2592. {
  2593. name: "Macro",
  2594. height: math.unit(302, "feet"),
  2595. default: true
  2596. },
  2597. ]
  2598. ))
  2599. characterMakers.push(() => makeCharacter(
  2600. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2601. {
  2602. frontDressed: {
  2603. height: math.unit(216, "feet"),
  2604. weight: math.unit(7000000, "lb"),
  2605. name: "Front (Dressed)",
  2606. image: {
  2607. source: "./media/characters/jazzy/front-dressed.svg",
  2608. extra: 2738 / 2651,
  2609. bottom: 41.8 / 2786
  2610. }
  2611. },
  2612. backDressed: {
  2613. height: math.unit(216, "feet"),
  2614. weight: math.unit(7000000, "lb"),
  2615. name: "Back (Dressed)",
  2616. image: {
  2617. source: "./media/characters/jazzy/back-dressed.svg",
  2618. extra: 2775 / 2673,
  2619. bottom: 36.8 / 2817
  2620. }
  2621. },
  2622. front: {
  2623. height: math.unit(216, "feet"),
  2624. weight: math.unit(7000000, "lb"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/jazzy/front.svg",
  2628. extra: 2738 / 2651,
  2629. bottom: 41.8 / 2786
  2630. }
  2631. },
  2632. back: {
  2633. height: math.unit(216, "feet"),
  2634. weight: math.unit(7000000, "lb"),
  2635. name: "Back",
  2636. image: {
  2637. source: "./media/characters/jazzy/back.svg",
  2638. extra: 2775 / 2673,
  2639. bottom: 36.8 / 2817
  2640. }
  2641. },
  2642. maw: {
  2643. height: math.unit(20, "feet"),
  2644. name: "Maw",
  2645. image: {
  2646. source: "./media/characters/jazzy/maw.svg"
  2647. }
  2648. },
  2649. paws: {
  2650. height: math.unit(27.5, "feet"),
  2651. name: "Paws",
  2652. image: {
  2653. source: "./media/characters/jazzy/paws.svg"
  2654. }
  2655. },
  2656. eye: {
  2657. height: math.unit(4.4, "feet"),
  2658. name: "Eye",
  2659. image: {
  2660. source: "./media/characters/jazzy/eye.svg"
  2661. }
  2662. },
  2663. droneOffense: {
  2664. height: math.unit(9.5, "inches"),
  2665. name: "Drone (Offense)",
  2666. image: {
  2667. source: "./media/characters/jazzy/drone-offense.svg"
  2668. }
  2669. },
  2670. droneRecon: {
  2671. height: math.unit(9.5, "inches"),
  2672. name: "Drone (Recon)",
  2673. image: {
  2674. source: "./media/characters/jazzy/drone-recon.svg"
  2675. }
  2676. },
  2677. droneDefense: {
  2678. height: math.unit(9.5, "inches"),
  2679. name: "Drone (Defense)",
  2680. image: {
  2681. source: "./media/characters/jazzy/drone-defense.svg"
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(216, "feet"),
  2689. default: true
  2690. },
  2691. ]
  2692. ))
  2693. characterMakers.push(() => makeCharacter(
  2694. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2695. {
  2696. front: {
  2697. height: math.unit(9 + 6/12, "feet"),
  2698. weight: math.unit(700, "lb"),
  2699. name: "Front",
  2700. image: {
  2701. source: "./media/characters/flamm/front.svg",
  2702. extra: 1751/1632,
  2703. bottom: 46/1797
  2704. }
  2705. },
  2706. buff: {
  2707. height: math.unit(9 + 6/12, "feet"),
  2708. weight: math.unit(950, "lb"),
  2709. name: "Buff",
  2710. image: {
  2711. source: "./media/characters/flamm/buff.svg",
  2712. extra: 3018/2874,
  2713. bottom: 221/3239
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Normal",
  2720. height: math.unit(9.5, "feet")
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(200, "feet"),
  2725. default: true
  2726. },
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2731. {
  2732. front: {
  2733. height: math.unit(5 + 3/12, "feet"),
  2734. weight: math.unit(60, "kg"),
  2735. name: "Front",
  2736. image: {
  2737. source: "./media/characters/zephiro/front.svg",
  2738. extra: 2309 / 2162,
  2739. bottom: 0.069
  2740. }
  2741. },
  2742. side: {
  2743. height: math.unit(5 + 3/12, "feet"),
  2744. weight: math.unit(60, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/zephiro/side.svg",
  2748. extra: 2403 / 2279,
  2749. bottom: 0.015
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(5 + 3/12, "feet"),
  2754. weight: math.unit(60, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/zephiro/back.svg",
  2758. extra: 2373 / 2244,
  2759. bottom: 0.013
  2760. }
  2761. },
  2762. hand: {
  2763. height: math.unit(0.68, "feet"),
  2764. name: "Hand",
  2765. image: {
  2766. source: "./media/characters/zephiro/hand.svg"
  2767. }
  2768. },
  2769. paw: {
  2770. height: math.unit(1, "feet"),
  2771. name: "Paw",
  2772. image: {
  2773. source: "./media/characters/zephiro/paw.svg"
  2774. }
  2775. },
  2776. beans: {
  2777. height: math.unit(0.93, "feet"),
  2778. name: "Beans",
  2779. image: {
  2780. source: "./media/characters/zephiro/beans.svg"
  2781. }
  2782. },
  2783. },
  2784. [
  2785. {
  2786. name: "Micro",
  2787. height: math.unit(3, "inches")
  2788. },
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(5 + 3 / 12, "feet"),
  2792. default: true
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(118, "feet")
  2797. },
  2798. ]
  2799. ))
  2800. characterMakers.push(() => makeCharacter(
  2801. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2802. {
  2803. front: {
  2804. height: math.unit(5, "feet"),
  2805. weight: math.unit(90, "kg"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/fory/front.svg",
  2809. extra: 2862 / 2674,
  2810. bottom: 180 / 3043.8
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(5, "feet"),
  2815. weight: math.unit(90, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/fory/back.svg",
  2819. extra: 2962 / 2791,
  2820. bottom: 106 / 3071.8
  2821. }
  2822. },
  2823. foot: {
  2824. height: math.unit(2.14, "feet"),
  2825. name: "Foot",
  2826. image: {
  2827. source: "./media/characters/fory/foot.svg"
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Normal",
  2834. height: math.unit(5, "feet")
  2835. },
  2836. {
  2837. name: "Macro",
  2838. height: math.unit(50, "feet"),
  2839. default: true
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(10, "miles")
  2844. },
  2845. {
  2846. name: "Gigamacro",
  2847. height: math.unit(5, "earths")
  2848. },
  2849. ]
  2850. ))
  2851. characterMakers.push(() => makeCharacter(
  2852. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2853. {
  2854. front: {
  2855. height: math.unit(7, "feet"),
  2856. weight: math.unit(90, "kg"),
  2857. name: "Front",
  2858. image: {
  2859. source: "./media/characters/kurrikage/front.svg",
  2860. extra: 1845/1733,
  2861. bottom: 119/1964
  2862. }
  2863. },
  2864. back: {
  2865. height: math.unit(7, "feet"),
  2866. weight: math.unit(90, "kg"),
  2867. name: "Back",
  2868. image: {
  2869. source: "./media/characters/kurrikage/back.svg",
  2870. extra: 1790/1677,
  2871. bottom: 61/1851
  2872. }
  2873. },
  2874. dressed: {
  2875. height: math.unit(7, "feet"),
  2876. weight: math.unit(90, "kg"),
  2877. name: "Dressed",
  2878. image: {
  2879. source: "./media/characters/kurrikage/dressed.svg",
  2880. extra: 1845/1733,
  2881. bottom: 119/1964
  2882. }
  2883. },
  2884. foot: {
  2885. height: math.unit(1.5, "feet"),
  2886. name: "Foot",
  2887. image: {
  2888. source: "./media/characters/kurrikage/foot.svg"
  2889. }
  2890. },
  2891. staff: {
  2892. height: math.unit(6.7, "feet"),
  2893. name: "Staff",
  2894. image: {
  2895. source: "./media/characters/kurrikage/staff.svg"
  2896. }
  2897. },
  2898. peek: {
  2899. height: math.unit(1.05, "feet"),
  2900. name: "Peeking",
  2901. image: {
  2902. source: "./media/characters/kurrikage/peek.svg",
  2903. bottom: 0.08
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Normal",
  2910. height: math.unit(12, "feet"),
  2911. default: true
  2912. },
  2913. {
  2914. name: "Big",
  2915. height: math.unit(20, "feet")
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(500, "feet")
  2920. },
  2921. {
  2922. name: "Megamacro",
  2923. height: math.unit(20, "miles")
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/shingo/front.svg",
  2936. extra: 1900/1825,
  2937. bottom: 82/1982
  2938. }
  2939. },
  2940. side: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(75, "kg"),
  2943. name: "Side",
  2944. image: {
  2945. source: "./media/characters/shingo/side.svg",
  2946. extra: 1930/1865,
  2947. bottom: 16/1946
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/shingo/back.svg",
  2956. extra: 1922/1852,
  2957. bottom: 16/1938
  2958. }
  2959. },
  2960. frontDressed: {
  2961. height: math.unit(6, "feet"),
  2962. weight: math.unit(150, "lb"),
  2963. name: "Front-dressed",
  2964. image: {
  2965. source: "./media/characters/shingo/front-dressed.svg",
  2966. extra: 1900/1825,
  2967. bottom: 82/1982
  2968. }
  2969. },
  2970. paw: {
  2971. height: math.unit(1.29, "feet"),
  2972. name: "Paw",
  2973. image: {
  2974. source: "./media/characters/shingo/paw.svg"
  2975. }
  2976. },
  2977. hand: {
  2978. height: math.unit(1.07, "feet"),
  2979. name: "Hand",
  2980. image: {
  2981. source: "./media/characters/shingo/hand.svg"
  2982. }
  2983. },
  2984. frontAlt: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Alt)",
  2988. image: {
  2989. source: "./media/characters/shingo/front-alt.svg",
  2990. extra: 3511 / 3338,
  2991. bottom: 0.005
  2992. }
  2993. },
  2994. frontAlt2: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front (Alt 2)",
  2998. image: {
  2999. source: "./media/characters/shingo/front-alt-2.svg",
  3000. extra: 706/681,
  3001. bottom: 11/717
  3002. }
  3003. },
  3004. pawAlt: {
  3005. height: math.unit(1, "feet"),
  3006. name: "Paw (Alt)",
  3007. image: {
  3008. source: "./media/characters/shingo/paw-alt.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Micro",
  3015. height: math.unit(4, "inches")
  3016. },
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(6, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(108, "feet")
  3025. },
  3026. {
  3027. name: "Macro+",
  3028. height: math.unit(1500, "feet")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3034. {
  3035. side: {
  3036. height: math.unit(6, "feet"),
  3037. weight: math.unit(75, "kg"),
  3038. name: "Side",
  3039. image: {
  3040. source: "./media/characters/aigey/side.svg"
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Macro",
  3047. height: math.unit(200, "feet"),
  3048. default: true
  3049. },
  3050. {
  3051. name: "Megamacro",
  3052. height: math.unit(100, "miles")
  3053. },
  3054. ]
  3055. )
  3056. )
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(5 + 5 / 12, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/natasha/front.svg",
  3066. extra: 859 / 824,
  3067. bottom: 23 / 879.6
  3068. }
  3069. },
  3070. frontNsfw: {
  3071. height: math.unit(5 + 5 / 12, "feet"),
  3072. weight: math.unit(75, "kg"),
  3073. name: "Front (NSFW)",
  3074. image: {
  3075. source: "./media/characters/natasha/front-nsfw.svg",
  3076. extra: 859 / 824,
  3077. bottom: 23 / 879.6
  3078. }
  3079. },
  3080. frontErect: {
  3081. height: math.unit(5 + 5 / 12, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Front (Erect)",
  3084. image: {
  3085. source: "./media/characters/natasha/front-erect.svg",
  3086. extra: 859 / 824,
  3087. bottom: 23 / 879.6
  3088. }
  3089. },
  3090. back: {
  3091. height: math.unit(5 + 5 / 12, "feet"),
  3092. weight: math.unit(75, "kg"),
  3093. name: "Back",
  3094. image: {
  3095. source: "./media/characters/natasha/back.svg",
  3096. extra: 887.9 / 852.6,
  3097. bottom: 9.7 / 896.4
  3098. }
  3099. },
  3100. backAlt: {
  3101. height: math.unit(5 + 5 / 12, "feet"),
  3102. weight: math.unit(75, "kg"),
  3103. name: "Back (Alt)",
  3104. image: {
  3105. source: "./media/characters/natasha/back-alt.svg",
  3106. extra: 1236.7 / 1192,
  3107. bottom: 22.3 / 1258.2
  3108. }
  3109. },
  3110. dick: {
  3111. height: math.unit(1.772, "feet"),
  3112. name: "Dick",
  3113. image: {
  3114. source: "./media/characters/natasha/dick.svg"
  3115. }
  3116. },
  3117. paw: {
  3118. height: math.unit(0.250, "meters"),
  3119. name: "Paw",
  3120. image: {
  3121. source: "./media/characters/natasha/paw.svg"
  3122. }
  3123. },
  3124. },
  3125. [
  3126. {
  3127. name: "Normal",
  3128. height: math.unit(5 + 5 / 12, "feet")
  3129. },
  3130. {
  3131. name: "Large",
  3132. height: math.unit(12, "feet")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(100, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Macro+",
  3141. height: math.unit(260, "feet")
  3142. },
  3143. {
  3144. name: "Macro++",
  3145. height: math.unit(1, "mile")
  3146. },
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/malik/front.svg"
  3158. }
  3159. },
  3160. side: {
  3161. height: math.unit(6, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/malik/side.svg",
  3166. extra: 1.1539
  3167. }
  3168. },
  3169. back: {
  3170. height: math.unit(6, "feet"),
  3171. weight: math.unit(75, "kg"),
  3172. name: "Back",
  3173. image: {
  3174. source: "./media/characters/malik/back.svg"
  3175. }
  3176. },
  3177. },
  3178. [
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(156, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Macro+",
  3186. height: math.unit(1188, "feet")
  3187. },
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/sefer/front.svg",
  3199. extra: 848 / 659,
  3200. bottom: 28.3 / 876.442
  3201. }
  3202. },
  3203. back: {
  3204. height: math.unit(6, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Back",
  3207. image: {
  3208. source: "./media/characters/sefer/back.svg",
  3209. extra: 864 / 695,
  3210. bottom: 10 / 871
  3211. }
  3212. },
  3213. frontDressed: {
  3214. height: math.unit(6, "feet"),
  3215. weight: math.unit(75, "kg"),
  3216. name: "Front (Dressed)",
  3217. image: {
  3218. source: "./media/characters/sefer/front-dressed.svg",
  3219. extra: 839 / 653,
  3220. bottom: 37.6 / 878
  3221. }
  3222. },
  3223. },
  3224. [
  3225. {
  3226. name: "Normal",
  3227. height: math.unit(6, "feet"),
  3228. default: true
  3229. },
  3230. ]
  3231. ))
  3232. characterMakers.push(() => makeCharacter(
  3233. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3234. {
  3235. body: {
  3236. height: math.unit(2.2428, "meter"),
  3237. weight: math.unit(124.738, "kg"),
  3238. name: "Body",
  3239. image: {
  3240. extra: 1225 / 1050,
  3241. source: "./media/characters/north/front.svg"
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Micro",
  3248. height: math.unit(4, "inches")
  3249. },
  3250. {
  3251. name: "Macro",
  3252. height: math.unit(63, "meters")
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(101, "miles"),
  3257. default: true
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3263. {
  3264. angled: {
  3265. height: math.unit(4, "meter"),
  3266. weight: math.unit(150, "kg"),
  3267. name: "Angled",
  3268. image: {
  3269. source: "./media/characters/talan/angled-sfw.svg",
  3270. bottom: 29 / 3734
  3271. }
  3272. },
  3273. angledNsfw: {
  3274. height: math.unit(4, "meter"),
  3275. weight: math.unit(150, "kg"),
  3276. name: "Angled (NSFW)",
  3277. image: {
  3278. source: "./media/characters/talan/angled-nsfw.svg",
  3279. bottom: 29 / 3734
  3280. }
  3281. },
  3282. frontNsfw: {
  3283. height: math.unit(4, "meter"),
  3284. weight: math.unit(150, "kg"),
  3285. name: "Front (NSFW)",
  3286. image: {
  3287. source: "./media/characters/talan/front-nsfw.svg",
  3288. bottom: 29 / 3734
  3289. }
  3290. },
  3291. sideNsfw: {
  3292. height: math.unit(4, "meter"),
  3293. weight: math.unit(150, "kg"),
  3294. name: "Side (NSFW)",
  3295. image: {
  3296. source: "./media/characters/talan/side-nsfw.svg",
  3297. bottom: 29 / 3734
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(4, "meter"),
  3302. weight: math.unit(150, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/talan/back.svg"
  3306. }
  3307. },
  3308. dickBottom: {
  3309. height: math.unit(0.621, "meter"),
  3310. name: "Dick (Bottom)",
  3311. image: {
  3312. source: "./media/characters/talan/dick-bottom.svg"
  3313. }
  3314. },
  3315. dickTop: {
  3316. height: math.unit(0.621, "meter"),
  3317. name: "Dick (Top)",
  3318. image: {
  3319. source: "./media/characters/talan/dick-top.svg"
  3320. }
  3321. },
  3322. dickSide: {
  3323. height: math.unit(0.305, "meter"),
  3324. name: "Dick (Side)",
  3325. image: {
  3326. source: "./media/characters/talan/dick-side.svg"
  3327. }
  3328. },
  3329. dickFront: {
  3330. height: math.unit(0.305, "meter"),
  3331. name: "Dick (Front)",
  3332. image: {
  3333. source: "./media/characters/talan/dick-front.svg"
  3334. }
  3335. },
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(4, "meters")
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(100, "meters")
  3345. },
  3346. {
  3347. name: "Megamacro",
  3348. height: math.unit(2, "miles"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Gigamacro",
  3353. height: math.unit(5000, "miles")
  3354. },
  3355. {
  3356. name: "Teramacro",
  3357. height: math.unit(100, "parsecs")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(90, "kg"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/gael'rathus/front.svg"
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(90, "kg"),
  3375. name: "Front (alt)",
  3376. image: {
  3377. source: "./media/characters/gael'rathus/front-alt.svg"
  3378. }
  3379. },
  3380. frontAlt2: {
  3381. height: math.unit(2, "meter"),
  3382. weight: math.unit(90, "kg"),
  3383. name: "Front (alt 2)",
  3384. image: {
  3385. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3386. }
  3387. }
  3388. },
  3389. [
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(9, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Large",
  3397. height: math.unit(25, "feet")
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(0.25, "miles")
  3402. },
  3403. {
  3404. name: "Megamacro",
  3405. height: math.unit(10, "miles")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3411. {
  3412. side: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(140, "kg"),
  3415. name: "Side",
  3416. image: {
  3417. source: "./media/characters/sosha/side.svg",
  3418. bottom: 0.042
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(12, "feet"),
  3426. default: true
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3432. {
  3433. side: {
  3434. height: math.unit(5 + 5 / 12, "feet"),
  3435. weight: math.unit(170, "kg"),
  3436. name: "Side",
  3437. image: {
  3438. source: "./media/characters/runnola/side.svg",
  3439. extra: 741 / 448,
  3440. bottom: 0.05
  3441. }
  3442. },
  3443. },
  3444. [
  3445. {
  3446. name: "Small",
  3447. height: math.unit(3, "feet")
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(5 + 5 / 12, "feet"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Big",
  3456. height: math.unit(10, "feet")
  3457. },
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(50, "kg"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/kurribird/front.svg",
  3469. bottom: 0.015
  3470. }
  3471. },
  3472. frontAlt: {
  3473. height: math.unit(1.5, "meter"),
  3474. weight: math.unit(50, "kg"),
  3475. name: "Front (Alt)",
  3476. image: {
  3477. source: "./media/characters/kurribird/front-alt.svg",
  3478. extra: 1.45
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(7, "feet")
  3486. },
  3487. {
  3488. name: "Big",
  3489. height: math.unit(12, "feet"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(1500, "feet")
  3495. },
  3496. {
  3497. name: "Megamacro",
  3498. height: math.unit(2, "miles")
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(80, "kg"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/elbial/front.svg",
  3511. extra: 1643 / 1556,
  3512. bottom: 60.2 / 1696
  3513. }
  3514. },
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/elbial/side.svg",
  3521. extra: 1601/1528,
  3522. bottom: 97/1698
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(80, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/elbial/back.svg",
  3531. extra: 1653/1569,
  3532. bottom: 20/1673
  3533. }
  3534. },
  3535. frontDressed: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Front (Dressed)",
  3539. image: {
  3540. source: "./media/characters/elbial/front-dressed.svg",
  3541. extra: 1638/1569,
  3542. bottom: 70/1708
  3543. }
  3544. },
  3545. genitals: {
  3546. height: math.unit(2 / 3.367, "meter"),
  3547. name: "Genitals",
  3548. image: {
  3549. source: "./media/characters/elbial/genitals.svg"
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Large",
  3556. height: math.unit(100, "feet")
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(500, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Megamacro",
  3565. height: math.unit(10, "miles")
  3566. },
  3567. {
  3568. name: "Gigamacro",
  3569. height: math.unit(25000, "miles")
  3570. },
  3571. {
  3572. name: "Full-Size",
  3573. height: math.unit(8000000, "gigaparsecs")
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(2, "meter"),
  3582. weight: math.unit(60, "kg"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/noah/front.svg"
  3586. }
  3587. },
  3588. talons: {
  3589. height: math.unit(0.315, "meter"),
  3590. name: "Talons",
  3591. image: {
  3592. source: "./media/characters/noah/talons.svg"
  3593. }
  3594. }
  3595. },
  3596. [
  3597. {
  3598. name: "Large",
  3599. height: math.unit(50, "feet")
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(750, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Megamacro",
  3608. height: math.unit(50, "miles")
  3609. },
  3610. {
  3611. name: "Gigamacro",
  3612. height: math.unit(100000, "miles")
  3613. },
  3614. {
  3615. name: "Full-Size",
  3616. height: math.unit(3000000000, "miles")
  3617. }
  3618. ]
  3619. ))
  3620. characterMakers.push(() => makeCharacter(
  3621. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3622. {
  3623. front: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Front",
  3627. image: {
  3628. source: "./media/characters/natalya/front.svg"
  3629. }
  3630. },
  3631. back: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(80, "kg"),
  3634. name: "Back",
  3635. image: {
  3636. source: "./media/characters/natalya/back.svg"
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(150, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Megamacro",
  3648. height: math.unit(5, "miles")
  3649. },
  3650. {
  3651. name: "Full-Size",
  3652. height: math.unit(600, "kiloparsecs")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(50, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/erestrebah/front.svg",
  3665. extra: 1262/1162,
  3666. bottom: 96/1358
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(50, "kg"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/erestrebah/back.svg",
  3675. extra: 1257/1139,
  3676. bottom: 13/1270
  3677. }
  3678. },
  3679. wing: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(50, "kg"),
  3682. name: "Wing",
  3683. image: {
  3684. source: "./media/characters/erestrebah/wing.svg",
  3685. extra: 1262/1162,
  3686. bottom: 96/1358
  3687. }
  3688. },
  3689. mouth: {
  3690. height: math.unit(0.39, "feet"),
  3691. name: "Mouth",
  3692. image: {
  3693. source: "./media/characters/erestrebah/mouth.svg"
  3694. }
  3695. }
  3696. },
  3697. [
  3698. {
  3699. name: "Normal",
  3700. height: math.unit(10, "feet")
  3701. },
  3702. {
  3703. name: "Large",
  3704. height: math.unit(50, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(300, "feet")
  3710. },
  3711. {
  3712. name: "Macro+",
  3713. height: math.unit(750, "feet")
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(3, "miles")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3723. {
  3724. front: {
  3725. height: math.unit(2, "meter"),
  3726. weight: math.unit(80, "kg"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/jennifer/front.svg",
  3730. bottom: 0.11,
  3731. extra: 1.16
  3732. }
  3733. },
  3734. frontAlt: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(80, "kg"),
  3737. name: "Front (Alt)",
  3738. image: {
  3739. source: "./media/characters/jennifer/front-alt.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Canon Height",
  3746. height: math.unit(120, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Macro+",
  3751. height: math.unit(300, "feet")
  3752. },
  3753. {
  3754. name: "Megamacro",
  3755. height: math.unit(20000, "feet")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/kalista/front.svg",
  3768. extra: 1314/1145,
  3769. bottom: 101/1415
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(2, "meter"),
  3774. weight: math.unit(50, "kg"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/kalista/back.svg",
  3778. extra: 1366 / 1156,
  3779. bottom: 33.9 / 1362.78
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Uncomfortably Small",
  3786. height: math.unit(10, "feet")
  3787. },
  3788. {
  3789. name: "Small",
  3790. height: math.unit(30, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(100, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(2000, "feet")
  3800. },
  3801. {
  3802. name: "True Form",
  3803. height: math.unit(8924, "miles")
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(120, "kg"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/ggv/front.svg"
  3816. }
  3817. },
  3818. side: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(120, "kg"),
  3821. name: "Side",
  3822. image: {
  3823. source: "./media/characters/ggv/side.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Extremely Puny",
  3830. height: math.unit(9 + 5 / 12, "feet")
  3831. },
  3832. {
  3833. name: "Horribly Small",
  3834. height: math.unit(47.7, "miles"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Reasonably Sized",
  3839. height: math.unit(25000, "parsecs")
  3840. },
  3841. {
  3842. name: "Slightly Uncompressed",
  3843. height: math.unit(7.77e31, "parsecs")
  3844. },
  3845. {
  3846. name: "Omniversal",
  3847. height: math.unit(1e300, "meters")
  3848. },
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(75, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/napalm/front.svg"
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(75, "lb"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/napalm/back.svg"
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Standard",
  3874. height: math.unit(55, "feet"),
  3875. default: true
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(7 + 5 / 6, "feet"),
  3884. weight: math.unit(325, "lb"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/asana/front.svg",
  3888. extra: 1133 / 1060,
  3889. bottom: 15.2 / 1148.6
  3890. }
  3891. },
  3892. back: {
  3893. height: math.unit(7 + 5 / 6, "feet"),
  3894. weight: math.unit(325, "lb"),
  3895. name: "Back",
  3896. image: {
  3897. source: "./media/characters/asana/back.svg",
  3898. extra: 1114 / 1043,
  3899. bottom: 5 / 1120
  3900. }
  3901. },
  3902. dressedDark: {
  3903. height: math.unit(7 + 5 / 6, "feet"),
  3904. weight: math.unit(325, "lb"),
  3905. name: "Dressed (Dark)",
  3906. image: {
  3907. source: "./media/characters/asana/dressed-dark.svg",
  3908. extra: 1133 / 1060,
  3909. bottom: 15.2 / 1148.6
  3910. }
  3911. },
  3912. dressedLight: {
  3913. height: math.unit(7 + 5 / 6, "feet"),
  3914. weight: math.unit(325, "lb"),
  3915. name: "Dressed (Light)",
  3916. image: {
  3917. source: "./media/characters/asana/dressed-light.svg",
  3918. extra: 1133 / 1060,
  3919. bottom: 15.2 / 1148.6
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Standard",
  3926. height: math.unit(7 + 5 / 6, "feet"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Large",
  3931. height: math.unit(10, "meters")
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(2500, "meters")
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(5e6, "meters")
  3940. },
  3941. {
  3942. name: "Examacro",
  3943. height: math.unit(5e12, "lightyears")
  3944. },
  3945. {
  3946. name: "Max Size",
  3947. height: math.unit(1e31, "lightyears")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3953. {
  3954. front: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(60, "kg"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/ebony/front.svg",
  3960. bottom: 0.03,
  3961. extra: 1045 / 810 + 0.03
  3962. }
  3963. },
  3964. side: {
  3965. height: math.unit(2, "meter"),
  3966. weight: math.unit(60, "kg"),
  3967. name: "Side",
  3968. image: {
  3969. source: "./media/characters/ebony/side.svg",
  3970. bottom: 0.03,
  3971. extra: 1045 / 810 + 0.03
  3972. }
  3973. },
  3974. back: {
  3975. height: math.unit(2, "meter"),
  3976. weight: math.unit(60, "kg"),
  3977. name: "Back",
  3978. image: {
  3979. source: "./media/characters/ebony/back.svg",
  3980. bottom: 0.01,
  3981. extra: 1045 / 810 + 0.01
  3982. }
  3983. },
  3984. },
  3985. [
  3986. // TODO check why I did this lol
  3987. {
  3988. name: "Standard",
  3989. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Macro",
  3994. height: math.unit(200, "feet")
  3995. },
  3996. {
  3997. name: "Gigamacro",
  3998. height: math.unit(13000, "km")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Mountain", species: ["snow-jugani"], 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/mountain/front.svg",
  4011. extra: 972 / 955,
  4012. bottom: 64 / 1036.6
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(175, "lb"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/mountain/back.svg",
  4021. extra: 970 / 950,
  4022. bottom: 28.25 / 999
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Large",
  4029. height: math.unit(20, "meters")
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(300, "meters")
  4034. },
  4035. {
  4036. name: "Gigamacro",
  4037. height: math.unit(10000, "km"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Examacro",
  4042. height: math.unit(10e9, "lightyears")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(8, "feet"),
  4051. weight: math.unit(500, "lb"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/rick/front.svg"
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(8, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(5, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(8, "feet"),
  4075. weight: math.unit(120, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/ona/front.svg"
  4079. }
  4080. },
  4081. frontAlt: {
  4082. height: math.unit(8, "feet"),
  4083. weight: math.unit(120, "lb"),
  4084. name: "Front (Alt)",
  4085. image: {
  4086. source: "./media/characters/ona/front-alt.svg"
  4087. }
  4088. },
  4089. back: {
  4090. height: math.unit(8, "feet"),
  4091. weight: math.unit(120, "lb"),
  4092. name: "Back",
  4093. image: {
  4094. source: "./media/characters/ona/back.svg"
  4095. }
  4096. },
  4097. foot: {
  4098. height: math.unit(1.1, "feet"),
  4099. name: "Foot",
  4100. image: {
  4101. source: "./media/characters/ona/foot.svg"
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(70, "km"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Gigamacro",
  4113. height: math.unit(681818, "miles")
  4114. },
  4115. {
  4116. name: "Examacro",
  4117. height: math.unit(3800000, "lightyears")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(12, "feet"),
  4126. weight: math.unit(3000, "lb"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/mech/front.svg",
  4130. extra: 2900 / 2770,
  4131. bottom: 110 / 3010
  4132. }
  4133. },
  4134. back: {
  4135. height: math.unit(12, "feet"),
  4136. weight: math.unit(3000, "lb"),
  4137. name: "Back",
  4138. image: {
  4139. source: "./media/characters/mech/back.svg",
  4140. extra: 3011 / 2890,
  4141. bottom: 94 / 3105
  4142. }
  4143. },
  4144. maw: {
  4145. height: math.unit(3.07, "feet"),
  4146. name: "Maw",
  4147. image: {
  4148. source: "./media/characters/mech/maw.svg"
  4149. }
  4150. },
  4151. head: {
  4152. height: math.unit(2.82, "feet"),
  4153. name: "Head",
  4154. image: {
  4155. source: "./media/characters/mech/head.svg"
  4156. }
  4157. },
  4158. dick: {
  4159. height: math.unit(1.43, "feet"),
  4160. name: "Dick",
  4161. image: {
  4162. source: "./media/characters/mech/dick.svg"
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(12, "feet")
  4170. },
  4171. {
  4172. name: "Macro",
  4173. height: math.unit(300, "feet"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "Macro+",
  4178. height: math.unit(1500, "feet")
  4179. },
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4184. {
  4185. front: {
  4186. height: math.unit(1.3, "meter"),
  4187. weight: math.unit(30, "kg"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/gregory/front.svg",
  4191. }
  4192. }
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(1.3, "meter"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Macro",
  4202. height: math.unit(20, "meter")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(2.8, "meter"),
  4211. weight: math.unit(200, "kg"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/elory/front.svg",
  4215. }
  4216. }
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(2.8, "meter"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Macro",
  4226. height: math.unit(38, "meter")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(470, "feet"),
  4235. weight: math.unit(924, "tons"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/angelpatamon/front.svg",
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(470, "feet"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Deity Size I",
  4250. height: math.unit(28651.2, "km")
  4251. },
  4252. {
  4253. name: "Deity Size II",
  4254. height: math.unit(171907.2, "km")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4260. {
  4261. side: {
  4262. height: math.unit(7.2, "meter"),
  4263. weight: math.unit(8.2, "tons"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/cryae/side.svg",
  4267. extra: 3500 / 1500
  4268. }
  4269. }
  4270. },
  4271. [
  4272. {
  4273. name: "Normal",
  4274. height: math.unit(7.2, "meter"),
  4275. default: true
  4276. }
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4281. {
  4282. front: {
  4283. height: math.unit(6, "feet"),
  4284. weight: math.unit(175, "lb"),
  4285. name: "Front",
  4286. image: {
  4287. source: "./media/characters/xera/front.svg",
  4288. extra: 2377 / 1972,
  4289. bottom: 75.5 / 2452
  4290. }
  4291. },
  4292. side: {
  4293. height: math.unit(6, "feet"),
  4294. weight: math.unit(175, "lb"),
  4295. name: "Side",
  4296. image: {
  4297. source: "./media/characters/xera/side.svg",
  4298. extra: 2345 / 2019,
  4299. bottom: 39.7 / 2384
  4300. }
  4301. },
  4302. back: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(175, "lb"),
  4305. name: "Back",
  4306. image: {
  4307. source: "./media/characters/xera/back.svg",
  4308. extra: 2095 / 1984,
  4309. bottom: 67 / 2166
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Small",
  4316. height: math.unit(10, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(500, "meters"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(10, "km")
  4326. },
  4327. {
  4328. name: "Gigamacro",
  4329. height: math.unit(25000, "km")
  4330. },
  4331. {
  4332. name: "Teramacro",
  4333. height: math.unit(3e6, "km")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(175, "lb"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/nebula/front.svg",
  4346. extra: 2566 / 2362,
  4347. bottom: 81 / 2644
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Small",
  4354. height: math.unit(4.5, "meters")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(1500, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(150, "km")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(27000, "km")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(225, "lb"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/abysgar/front.svg"
  4380. }
  4381. }
  4382. },
  4383. [
  4384. {
  4385. name: "Small",
  4386. height: math.unit(4.5, "meters")
  4387. },
  4388. {
  4389. name: "Macro",
  4390. height: math.unit(1250, "meters"),
  4391. default: true
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(125, "km")
  4396. },
  4397. {
  4398. name: "Gigamacro",
  4399. height: math.unit(26000, "km")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(180, "lb"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/yakuz/front.svg"
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Small",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(1500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(200, "km")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(100000, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(175, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/mirova/front.svg",
  4444. extra: 3334 / 3071,
  4445. bottom: 42 / 3375.6
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Small",
  4452. height: math.unit(5, "meters")
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(900, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(135, "km")
  4462. },
  4463. {
  4464. name: "Gigamacro",
  4465. height: math.unit(20000, "km")
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4471. {
  4472. side: {
  4473. height: math.unit(28.35, "feet"),
  4474. weight: math.unit(99.75, "tons"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/asana-mech/side.svg",
  4478. extra: 923 / 699,
  4479. bottom: 50 / 975
  4480. }
  4481. },
  4482. chaingun: {
  4483. height: math.unit(7, "feet"),
  4484. weight: math.unit(2400, "lb"),
  4485. name: "Chaingun",
  4486. image: {
  4487. source: "./media/characters/asana-mech/chaingun.svg"
  4488. }
  4489. },
  4490. laser: {
  4491. height: math.unit(7.12, "feet"),
  4492. weight: math.unit(2000, "lb"),
  4493. name: "Laser",
  4494. image: {
  4495. source: "./media/characters/asana-mech/laser.svg"
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(28.35, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Macro",
  4507. height: math.unit(2500, "feet")
  4508. },
  4509. {
  4510. name: "Megamacro",
  4511. height: math.unit(25, "miles")
  4512. },
  4513. {
  4514. name: "Examacro",
  4515. height: math.unit(6e8, "lightyears")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(5, "meters"),
  4524. weight: math.unit(1000, "kg"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/asche/front.svg",
  4528. extra: 1258 / 1190,
  4529. bottom: 47 / 1305
  4530. }
  4531. },
  4532. frontUnderwear: {
  4533. height: math.unit(5, "meters"),
  4534. weight: math.unit(1000, "kg"),
  4535. name: "Front (Underwear)",
  4536. image: {
  4537. source: "./media/characters/asche/front-underwear.svg",
  4538. extra: 1258 / 1190,
  4539. bottom: 47 / 1305
  4540. }
  4541. },
  4542. frontDressed: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Front (Dressed)",
  4546. image: {
  4547. source: "./media/characters/asche/front-dressed.svg",
  4548. extra: 1258 / 1190,
  4549. bottom: 47 / 1305
  4550. }
  4551. },
  4552. frontArmor: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Front (Armored)",
  4556. image: {
  4557. source: "./media/characters/asche/front-armored.svg",
  4558. extra: 1374 / 1308,
  4559. bottom: 23 / 1397
  4560. }
  4561. },
  4562. mp724: {
  4563. height: math.unit(0.96, "meters"),
  4564. weight: math.unit(38, "kg"),
  4565. name: "H&K MP724",
  4566. image: {
  4567. source: "./media/characters/asche/h&k-mp724.svg"
  4568. }
  4569. },
  4570. side: {
  4571. height: math.unit(5, "meters"),
  4572. weight: math.unit(1000, "kg"),
  4573. name: "Side",
  4574. image: {
  4575. source: "./media/characters/asche/side.svg",
  4576. extra: 1717 / 1609,
  4577. bottom: 0.005
  4578. }
  4579. },
  4580. back: {
  4581. height: math.unit(5, "meters"),
  4582. weight: math.unit(1000, "kg"),
  4583. name: "Back",
  4584. image: {
  4585. source: "./media/characters/asche/back.svg",
  4586. extra: 1570 / 1501
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "DEFCON 5",
  4593. height: math.unit(5, "meters")
  4594. },
  4595. {
  4596. name: "DEFCON 4",
  4597. height: math.unit(500, "meters"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "DEFCON 3",
  4602. height: math.unit(5, "km")
  4603. },
  4604. {
  4605. name: "DEFCON 2",
  4606. height: math.unit(500, "km")
  4607. },
  4608. {
  4609. name: "DEFCON 1",
  4610. height: math.unit(500000, "km")
  4611. },
  4612. {
  4613. name: "DEFCON 0",
  4614. height: math.unit(3, "gigaparsecs")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(2, "meters"),
  4623. weight: math.unit(76, "kg"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/gale/front.svg"
  4627. }
  4628. },
  4629. frontAlt1: {
  4630. height: math.unit(2, "meters"),
  4631. weight: math.unit(76, "kg"),
  4632. name: "Front (Alt 1)",
  4633. image: {
  4634. source: "./media/characters/gale/front-alt-1.svg"
  4635. }
  4636. },
  4637. frontAlt2: {
  4638. height: math.unit(2, "meters"),
  4639. weight: math.unit(76, "kg"),
  4640. name: "Front (Alt 2)",
  4641. image: {
  4642. source: "./media/characters/gale/front-alt-2.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(7, "feet")
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(150, "feet"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Macro+",
  4658. height: math.unit(300, "feet")
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(5 + 10/12, "feet"),
  4667. weight: math.unit(67, "kg"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/draylen/front.svg",
  4671. extra: 832/777,
  4672. bottom: 85/917
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(5 + 10/12, "feet")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(150, "feet"),
  4684. default: true
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(7 + 9 / 12, "feet"),
  4693. weight: math.unit(379, "lbs"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/chez/front.svg"
  4697. }
  4698. },
  4699. side: {
  4700. height: math.unit(7 + 9 / 12, "feet"),
  4701. weight: math.unit(379, "lbs"),
  4702. name: "Side",
  4703. image: {
  4704. source: "./media/characters/chez/side.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(7 + 9 / 12, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "God King",
  4716. height: math.unit(9750000, "meters")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(275, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/kaylum/front.svg",
  4729. bottom: 0.01,
  4730. extra: 1166 / 1031
  4731. }
  4732. },
  4733. frontWingless: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(275, "lbs"),
  4736. name: "Front (Wingless)",
  4737. image: {
  4738. source: "./media/characters/kaylum/front-wingless.svg",
  4739. bottom: 0.01,
  4740. extra: 1117 / 1031
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(3.05, "meters")
  4748. },
  4749. {
  4750. name: "Master",
  4751. height: math.unit(5.5, "meters")
  4752. },
  4753. {
  4754. name: "Rampage",
  4755. height: math.unit(19, "meters")
  4756. },
  4757. {
  4758. name: "Macro Lite",
  4759. height: math.unit(37, "meters")
  4760. },
  4761. {
  4762. name: "Hyper Predator",
  4763. height: math.unit(61, "meters")
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(138, "meters"),
  4768. default: true
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(150, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/geta/front.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Micro",
  4787. height: math.unit(3, "inches"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(5 + 5 / 12, "feet")
  4793. }
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(300, "lbs"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/tyrnn/front.svg"
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Main Height",
  4811. height: math.unit(355, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Fave. Height",
  4816. height: math.unit(2400, "feet")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(300, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/appledectomy/front.svg"
  4829. }
  4830. }
  4831. },
  4832. [
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(2500, "feet")
  4836. },
  4837. {
  4838. name: "Megamacro",
  4839. height: math.unit(50, "miles"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Gigamacro",
  4844. height: math.unit(5000, "miles")
  4845. },
  4846. {
  4847. name: "Teramacro",
  4848. height: math.unit(250000, "miles")
  4849. },
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(200, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/vulpes/front.svg",
  4861. extra: 573 / 543,
  4862. bottom: 0.033
  4863. }
  4864. },
  4865. side: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(200, "lbs"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/vulpes/side.svg",
  4871. extra: 577 / 549,
  4872. bottom: 11 / 588
  4873. }
  4874. },
  4875. back: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(200, "lbs"),
  4878. name: "Back",
  4879. image: {
  4880. source: "./media/characters/vulpes/back.svg",
  4881. extra: 573 / 549,
  4882. bottom: 20 / 593
  4883. }
  4884. },
  4885. feet: {
  4886. height: math.unit(1.276, "feet"),
  4887. name: "Feet",
  4888. image: {
  4889. source: "./media/characters/vulpes/feet.svg"
  4890. }
  4891. },
  4892. maw: {
  4893. height: math.unit(1.18, "feet"),
  4894. name: "Maw",
  4895. image: {
  4896. source: "./media/characters/vulpes/maw.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Micro",
  4903. height: math.unit(2, "inches")
  4904. },
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(6.3, "feet")
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(850, "feet")
  4912. },
  4913. {
  4914. name: "Megamacro",
  4915. height: math.unit(7500, "feet"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(570000, "miles")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(210, "lbs"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/rain-fallen/front.svg"
  4933. }
  4934. },
  4935. side: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(210, "lbs"),
  4938. name: "Side",
  4939. image: {
  4940. source: "./media/characters/rain-fallen/side.svg"
  4941. }
  4942. },
  4943. back: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(210, "lbs"),
  4946. name: "Back",
  4947. image: {
  4948. source: "./media/characters/rain-fallen/back.svg"
  4949. }
  4950. },
  4951. feral: {
  4952. height: math.unit(9, "feet"),
  4953. weight: math.unit(700, "lbs"),
  4954. name: "Feral",
  4955. image: {
  4956. source: "./media/characters/rain-fallen/feral.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Meddling with Mortals",
  4963. height: math.unit(8 + 8/12, "feet")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(5, "meter")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(150, "meter"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Megamacro",
  4976. height: math.unit(278e6, "meter")
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(2e9, "meter")
  4981. },
  4982. {
  4983. name: "Teramacro",
  4984. height: math.unit(8e12, "meter")
  4985. },
  4986. {
  4987. name: "Devourer",
  4988. height: math.unit(14, "zettameters")
  4989. },
  4990. {
  4991. name: "Scarlet King",
  4992. height: math.unit(18, "yottameters")
  4993. },
  4994. {
  4995. name: "Void",
  4996. height: math.unit(1e88, "yottameters")
  4997. }
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5002. {
  5003. standing: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(180, "lbs"),
  5006. name: "Standing",
  5007. image: {
  5008. source: "./media/characters/zaakira/standing.svg",
  5009. extra: 1599/1504,
  5010. bottom: 39/1638
  5011. }
  5012. },
  5013. laying: {
  5014. height: math.unit(3, "feet"),
  5015. weight: math.unit(180, "lbs"),
  5016. name: "Laying",
  5017. image: {
  5018. source: "./media/characters/zaakira/laying.svg"
  5019. }
  5020. },
  5021. },
  5022. [
  5023. {
  5024. name: "Normal",
  5025. height: math.unit(12, "feet")
  5026. },
  5027. {
  5028. name: "Macro",
  5029. height: math.unit(279, "feet"),
  5030. default: true
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5036. {
  5037. femSfw: {
  5038. height: math.unit(8, "feet"),
  5039. weight: math.unit(350, "lb"),
  5040. name: "Fem",
  5041. image: {
  5042. source: "./media/characters/sigvald/fem-sfw.svg",
  5043. extra: 182 / 164,
  5044. bottom: 8.7 / 190.5
  5045. }
  5046. },
  5047. femNsfw: {
  5048. height: math.unit(8, "feet"),
  5049. weight: math.unit(350, "lb"),
  5050. name: "Fem (NSFW)",
  5051. image: {
  5052. source: "./media/characters/sigvald/fem-nsfw.svg",
  5053. extra: 182 / 164,
  5054. bottom: 8.7 / 190.5
  5055. }
  5056. },
  5057. maleNsfw: {
  5058. height: math.unit(8, "feet"),
  5059. weight: math.unit(350, "lb"),
  5060. name: "Male (NSFW)",
  5061. image: {
  5062. source: "./media/characters/sigvald/male-nsfw.svg",
  5063. extra: 182 / 164,
  5064. bottom: 8.7 / 190.5
  5065. }
  5066. },
  5067. hermNsfw: {
  5068. height: math.unit(8, "feet"),
  5069. weight: math.unit(350, "lb"),
  5070. name: "Herm (NSFW)",
  5071. image: {
  5072. source: "./media/characters/sigvald/herm-nsfw.svg",
  5073. extra: 182 / 164,
  5074. bottom: 8.7 / 190.5
  5075. }
  5076. },
  5077. dick: {
  5078. height: math.unit(2.36, "feet"),
  5079. name: "Dick",
  5080. image: {
  5081. source: "./media/characters/sigvald/dick.svg"
  5082. }
  5083. },
  5084. eye: {
  5085. height: math.unit(0.31, "feet"),
  5086. name: "Eye",
  5087. image: {
  5088. source: "./media/characters/sigvald/eye.svg"
  5089. }
  5090. },
  5091. mouth: {
  5092. height: math.unit(0.92, "feet"),
  5093. name: "Mouth",
  5094. image: {
  5095. source: "./media/characters/sigvald/mouth.svg"
  5096. }
  5097. },
  5098. paws: {
  5099. height: math.unit(2.2, "feet"),
  5100. name: "Paws",
  5101. image: {
  5102. source: "./media/characters/sigvald/paws.svg"
  5103. }
  5104. }
  5105. },
  5106. [
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(8, "feet")
  5110. },
  5111. {
  5112. name: "Large",
  5113. height: math.unit(12, "feet")
  5114. },
  5115. {
  5116. name: "Larger",
  5117. height: math.unit(20, "feet")
  5118. },
  5119. {
  5120. name: "Macro",
  5121. height: math.unit(150, "feet")
  5122. },
  5123. {
  5124. name: "Macro+",
  5125. height: math.unit(200, "feet"),
  5126. default: true
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5132. {
  5133. side: {
  5134. height: math.unit(12, "feet"),
  5135. weight: math.unit(2000, "kg"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/scott/side.svg",
  5139. extra: 754 / 724,
  5140. bottom: 0.069
  5141. }
  5142. },
  5143. upright: {
  5144. height: math.unit(12, "feet"),
  5145. weight: math.unit(2000, "kg"),
  5146. name: "Upright",
  5147. image: {
  5148. source: "./media/characters/scott/upright.svg",
  5149. extra: 3881 / 3722,
  5150. bottom: 0.05
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(12, "feet"),
  5158. default: true
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5164. {
  5165. side: {
  5166. height: math.unit(8, "meters"),
  5167. weight: math.unit(84755, "lbs"),
  5168. name: "Side",
  5169. image: {
  5170. source: "./media/characters/tobias/side.svg",
  5171. extra: 1474 / 1096,
  5172. bottom: 38.9 / 1513.1235
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(8, "meters"),
  5180. default: true
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5186. {
  5187. front: {
  5188. height: math.unit(5.5, "feet"),
  5189. weight: math.unit(400, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/kieran/front.svg",
  5193. extra: 2694 / 2364,
  5194. bottom: 217 / 2908
  5195. }
  5196. },
  5197. side: {
  5198. height: math.unit(5.5, "feet"),
  5199. weight: math.unit(400, "lbs"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/kieran/side.svg",
  5203. extra: 875 / 777,
  5204. bottom: 84.6 / 959
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(5.5, "feet"),
  5212. default: true
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5218. {
  5219. side: {
  5220. height: math.unit(2, "meters"),
  5221. weight: math.unit(70, "kg"),
  5222. name: "Side",
  5223. image: {
  5224. source: "./media/characters/sanya/side.svg",
  5225. bottom: 0.02,
  5226. extra: 1.02
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Small",
  5233. height: math.unit(2, "meters")
  5234. },
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(3, "meters")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(16, "meters"),
  5242. default: true
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(2, "meters"),
  5251. weight: math.unit(120, "kg"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/miranda/front.svg",
  5255. extra: 195 / 185,
  5256. bottom: 10.9 / 206.5
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(2, "meters"),
  5261. weight: math.unit(120, "kg"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/miranda/back.svg",
  5265. extra: 201 / 193,
  5266. bottom: 2.3 / 203.7
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(10, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "James", species: ["deer"], tags: ["anthro"] },
  5280. {
  5281. side: {
  5282. height: math.unit(2, "meters"),
  5283. weight: math.unit(100, "kg"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/james/front.svg",
  5287. extra: 10 / 8.5
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(8.5, "feet"),
  5295. default: true
  5296. }
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5301. {
  5302. side: {
  5303. height: math.unit(9.5, "feet"),
  5304. weight: math.unit(2500, "lbs"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/heather/side.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(9.5, "feet"),
  5315. default: true
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5321. {
  5322. side: {
  5323. height: math.unit(6.5, "feet"),
  5324. weight: math.unit(400, "lbs"),
  5325. name: "Side",
  5326. image: {
  5327. source: "./media/characters/lukas/side.svg",
  5328. extra: 7.25 / 6.5
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(6.5, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5342. {
  5343. side: {
  5344. height: math.unit(5, "feet"),
  5345. weight: math.unit(3000, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/louise/side.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(5, "feet"),
  5356. default: true
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5362. {
  5363. side: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(150, "lbs"),
  5366. name: "Side",
  5367. image: {
  5368. source: "./media/characters/ramona/side.svg",
  5369. extra: 871/854,
  5370. bottom: 41/912
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(5.3, "meters"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(20, "stories")
  5383. },
  5384. {
  5385. name: "Macro+",
  5386. height: math.unit(50, "stories")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5392. {
  5393. standing: {
  5394. height: math.unit(5.75, "feet"),
  5395. weight: math.unit(160, "lbs"),
  5396. name: "Standing",
  5397. image: {
  5398. source: "./media/characters/deerpuff/standing.svg",
  5399. extra: 682 / 624
  5400. }
  5401. },
  5402. sitting: {
  5403. height: math.unit(5.75 / 1.79, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Sitting",
  5406. image: {
  5407. source: "./media/characters/deerpuff/sitting.svg",
  5408. bottom: 44 / 400,
  5409. extra: 1
  5410. }
  5411. },
  5412. taurLaying: {
  5413. height: math.unit(6, "feet"),
  5414. weight: math.unit(400, "lbs"),
  5415. name: "Taur (Laying)",
  5416. image: {
  5417. source: "./media/characters/deerpuff/taur-laying.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Puffball",
  5424. height: math.unit(6, "inches")
  5425. },
  5426. {
  5427. name: "Normalpuff",
  5428. height: math.unit(5.75, "feet")
  5429. },
  5430. {
  5431. name: "Macropuff",
  5432. height: math.unit(1500, "feet"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Megapuff",
  5437. height: math.unit(500, "miles")
  5438. },
  5439. {
  5440. name: "Gigapuff",
  5441. height: math.unit(250000, "miles")
  5442. },
  5443. {
  5444. name: "Omegapuff",
  5445. height: math.unit(1000, "lightyears")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5451. {
  5452. stomping: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(170, "lbs"),
  5455. name: "Stomping",
  5456. image: {
  5457. source: "./media/characters/vivian/stomping.svg"
  5458. }
  5459. },
  5460. sitting: {
  5461. height: math.unit(6 / 1.75, "feet"),
  5462. weight: math.unit(170, "lbs"),
  5463. name: "Sitting",
  5464. image: {
  5465. source: "./media/characters/vivian/sitting.svg",
  5466. bottom: 1 / 6.4,
  5467. extra: 1,
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(7, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(10, "stories")
  5480. },
  5481. {
  5482. name: "Macro+",
  5483. height: math.unit(30, "stories")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(10, "miles")
  5488. },
  5489. {
  5490. name: "Megamacro+",
  5491. height: math.unit(2750000, "meters")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(160, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/prince/front.svg",
  5504. extra: 3400 / 3000
  5505. }
  5506. },
  5507. jumping: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(160, "lbs"),
  5510. name: "Jumping",
  5511. image: {
  5512. source: "./media/characters/prince/jump.svg",
  5513. extra: 2555 / 2134
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(7.75, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Not cute",
  5525. height: math.unit(17, "feet")
  5526. },
  5527. {
  5528. name: "I said NOT",
  5529. height: math.unit(91, "feet")
  5530. },
  5531. {
  5532. name: "Please stop",
  5533. height: math.unit(560, "feet")
  5534. },
  5535. {
  5536. name: "What have you done",
  5537. height: math.unit(2200, "feet")
  5538. },
  5539. {
  5540. name: "Deer God",
  5541. height: math.unit(3.6, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5547. {
  5548. standing: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(300, "lbs"),
  5551. name: "Standing",
  5552. image: {
  5553. source: "./media/characters/psymon/standing.svg",
  5554. extra: 1888 / 1810,
  5555. bottom: 0.05
  5556. }
  5557. },
  5558. slithering: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(300, "lbs"),
  5561. name: "Slithering",
  5562. image: {
  5563. source: "./media/characters/psymon/slithering.svg",
  5564. extra: 1330 / 1224
  5565. }
  5566. },
  5567. slitheringAlt: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(300, "lbs"),
  5570. name: "Slithering (Alt)",
  5571. image: {
  5572. source: "./media/characters/psymon/slithering-alt.svg",
  5573. extra: 1330 / 1224
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(11.25, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Large",
  5585. height: math.unit(27, "feet")
  5586. },
  5587. {
  5588. name: "Giant",
  5589. height: math.unit(87, "feet")
  5590. },
  5591. {
  5592. name: "Macro",
  5593. height: math.unit(365, "feet")
  5594. },
  5595. {
  5596. name: "Megamacro",
  5597. height: math.unit(3, "miles")
  5598. },
  5599. {
  5600. name: "World Serpent",
  5601. height: math.unit(8000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/daimos/front.svg",
  5614. extra: 4160 / 3897,
  5615. bottom: 0.021
  5616. }
  5617. }
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(8, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Big Dog",
  5627. height: math.unit(22, "feet")
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(127, "feet")
  5632. },
  5633. {
  5634. name: "Megamacro",
  5635. height: math.unit(3600, "feet")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5641. {
  5642. side: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Side",
  5646. image: {
  5647. source: "./media/characters/blake/side.svg",
  5648. extra: 1212 / 1120,
  5649. bottom: 0.05
  5650. }
  5651. },
  5652. crouched: {
  5653. height: math.unit(6 * 0.57, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Crouched",
  5656. image: {
  5657. source: "./media/characters/blake/crouched.svg",
  5658. extra: 840 / 587,
  5659. bottom: 0.04
  5660. }
  5661. },
  5662. bent: {
  5663. height: math.unit(6 * 0.75, "feet"),
  5664. weight: math.unit(180, "lbs"),
  5665. name: "Bent",
  5666. image: {
  5667. source: "./media/characters/blake/bent.svg",
  5668. extra: 592 / 544,
  5669. bottom: 0.035
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(8 + 1 / 6, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Big Backside",
  5681. height: math.unit(37, "feet")
  5682. },
  5683. {
  5684. name: "Subway Shredder",
  5685. height: math.unit(72, "feet")
  5686. },
  5687. {
  5688. name: "City Carver",
  5689. height: math.unit(1675, "feet")
  5690. },
  5691. {
  5692. name: "Tectonic Tweaker",
  5693. height: math.unit(2300, "miles")
  5694. },
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(180, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/guisetto/front.svg",
  5706. extra: 856 / 817,
  5707. bottom: 0.06
  5708. }
  5709. },
  5710. airborne: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(180, "lbs"),
  5713. name: "Airborne",
  5714. image: {
  5715. source: "./media/characters/guisetto/airborne.svg",
  5716. extra: 584 / 525
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(10 + 11 / 12, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Large",
  5728. height: math.unit(35, "feet")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(475, "feet")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/luxor/front.svg",
  5745. extra: 2940 / 2152
  5746. }
  5747. },
  5748. back: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(180, "lbs"),
  5751. name: "Back",
  5752. image: {
  5753. source: "./media/characters/luxor/back.svg",
  5754. extra: 1083 / 960
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(5 + 5 / 6, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Lamp",
  5766. height: math.unit(50, "feet")
  5767. },
  5768. {
  5769. name: "Lämp",
  5770. height: math.unit(300, "feet")
  5771. },
  5772. {
  5773. name: "The sun is a lamp",
  5774. height: math.unit(250000, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(50, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/huoyan/front.svg"
  5787. }
  5788. },
  5789. side: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(180, "lbs"),
  5792. name: "Side",
  5793. image: {
  5794. source: "./media/characters/huoyan/side.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Chef",
  5801. height: math.unit(9, "feet")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(65, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(780, "feet")
  5811. },
  5812. {
  5813. name: "Flaming Mountain",
  5814. height: math.unit(4.8, "miles")
  5815. },
  5816. {
  5817. name: "Celestial",
  5818. height: math.unit(765000, "miles")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(5 + 3 / 4, "feet"),
  5827. weight: math.unit(120, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/tails/front.svg"
  5831. }
  5832. }
  5833. },
  5834. [
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(5 + 3 / 4, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(4, "feet"),
  5847. weight: math.unit(50, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rainy/front.svg"
  5851. }
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(800, "feet"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(150, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/rainier/front.svg"
  5871. }
  5872. }
  5873. },
  5874. [
  5875. {
  5876. name: "Micro",
  5877. height: math.unit(2, "mm"),
  5878. default: true
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(8 + 4/12, "feet"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/andy-renard/front.svg",
  5890. extra: 1839/1726,
  5891. bottom: 134/1973
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(8 + 4/12, "feet"),
  5896. name: "Back",
  5897. image: {
  5898. source: "./media/characters/andy-renard/back.svg",
  5899. extra: 1838/1710,
  5900. bottom: 105/1943
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Tall",
  5907. height: math.unit(8 + 4/12, "feet")
  5908. },
  5909. {
  5910. name: "Mini Macro",
  5911. height: math.unit(15, "feet"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(100, "feet")
  5917. },
  5918. {
  5919. name: "Mega Macro",
  5920. height: math.unit(1000, "feet")
  5921. },
  5922. {
  5923. name: "Giga Macro",
  5924. height: math.unit(10, "miles")
  5925. },
  5926. {
  5927. name: "God Macro",
  5928. height: math.unit(1, "multiverse")
  5929. },
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5934. {
  5935. front: {
  5936. height: math.unit(6, "feet"),
  5937. weight: math.unit(210, "lbs"),
  5938. name: "Front",
  5939. image: {
  5940. source: "./media/characters/cimmaron/front-sfw.svg",
  5941. extra: 701 / 676,
  5942. bottom: 0.046
  5943. }
  5944. },
  5945. back: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(210, "lbs"),
  5948. name: "Back",
  5949. image: {
  5950. source: "./media/characters/cimmaron/back-sfw.svg",
  5951. extra: 701 / 676,
  5952. bottom: 0.046
  5953. }
  5954. },
  5955. frontNsfw: {
  5956. height: math.unit(6, "feet"),
  5957. weight: math.unit(210, "lbs"),
  5958. name: "Front (NSFW)",
  5959. image: {
  5960. source: "./media/characters/cimmaron/front-nsfw.svg",
  5961. extra: 701 / 676,
  5962. bottom: 0.046
  5963. }
  5964. },
  5965. backNsfw: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(210, "lbs"),
  5968. name: "Back (NSFW)",
  5969. image: {
  5970. source: "./media/characters/cimmaron/back-nsfw.svg",
  5971. extra: 701 / 676,
  5972. bottom: 0.046
  5973. }
  5974. },
  5975. dick: {
  5976. height: math.unit(1.714, "feet"),
  5977. name: "Dick",
  5978. image: {
  5979. source: "./media/characters/cimmaron/dick.svg"
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(6, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Macro Mayor",
  5991. height: math.unit(350, "meters")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(200, "lbs"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/akari/front.svg",
  6004. extra: 962 / 901,
  6005. bottom: 0.04
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Micro",
  6012. height: math.unit(5, "inches"),
  6013. default: true
  6014. },
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(7, "feet")
  6018. },
  6019. ]
  6020. ))
  6021. characterMakers.push(() => makeCharacter(
  6022. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6023. {
  6024. front: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(140, "lbs"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/cynosura/front.svg",
  6030. extra: 896 / 847
  6031. }
  6032. },
  6033. back: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(140, "lbs"),
  6036. name: "Back",
  6037. image: {
  6038. source: "./media/characters/cynosura/back.svg",
  6039. extra: 1365 / 1250
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Micro",
  6046. height: math.unit(4, "inches")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(5.75, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Tall",
  6055. height: math.unit(10, "feet")
  6056. },
  6057. {
  6058. name: "Big",
  6059. height: math.unit(20, "feet")
  6060. },
  6061. {
  6062. name: "Macro",
  6063. height: math.unit(50, "feet")
  6064. },
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(13 + 2/12, "feet"),
  6072. weight: math.unit(800, "kg"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/gin/front.svg",
  6076. extra: 1312/1191,
  6077. bottom: 45/1357
  6078. }
  6079. },
  6080. mouth: {
  6081. height: math.unit(2.39 * 1.8, "feet"),
  6082. name: "Mouth",
  6083. image: {
  6084. source: "./media/characters/gin/mouth.svg"
  6085. }
  6086. },
  6087. hand: {
  6088. height: math.unit(1.57 * 2.19, "feet"),
  6089. name: "Hand",
  6090. image: {
  6091. source: "./media/characters/gin/hand.svg"
  6092. }
  6093. },
  6094. foot: {
  6095. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6096. name: "Foot",
  6097. image: {
  6098. source: "./media/characters/gin/foot.svg"
  6099. }
  6100. },
  6101. sole: {
  6102. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6103. name: "Sole",
  6104. image: {
  6105. source: "./media/characters/gin/sole.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Very Small",
  6112. height: math.unit(13 + 2 / 12, "feet")
  6113. },
  6114. {
  6115. name: "Micro",
  6116. height: math.unit(600, "miles")
  6117. },
  6118. {
  6119. name: "Regular",
  6120. height: math.unit(20, "earths"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(2.2, "solarradii")
  6126. },
  6127. {
  6128. name: "Teramacro",
  6129. height: math.unit(1.2, "galaxies")
  6130. },
  6131. {
  6132. name: "Omegamacro",
  6133. height: math.unit(200, "universes")
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(6 + 1 / 6, "feet"),
  6142. weight: math.unit(178, "lbs"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/guy/front.svg"
  6146. }
  6147. }
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(6 + 1 / 6, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Large",
  6157. height: math.unit(25 + 7 / 12, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(60 + 9 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Macro+",
  6165. height: math.unit(246, "feet")
  6166. },
  6167. {
  6168. name: "Macro++",
  6169. height: math.unit(878, "feet")
  6170. }
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(9, "feet"),
  6178. weight: math.unit(800, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/tiberius/front.svg",
  6182. extra: 2295 / 2071
  6183. }
  6184. },
  6185. back: {
  6186. height: math.unit(9, "feet"),
  6187. weight: math.unit(800, "lbs"),
  6188. name: "Back",
  6189. image: {
  6190. source: "./media/characters/tiberius/back.svg",
  6191. extra: 2373 / 2160
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(9, "feet"),
  6199. default: true
  6200. }
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6205. {
  6206. front: {
  6207. height: math.unit(6, "feet"),
  6208. weight: math.unit(600, "lbs"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/surgo/front.svg",
  6212. extra: 3591 / 2227
  6213. }
  6214. },
  6215. back: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(600, "lbs"),
  6218. name: "Back",
  6219. image: {
  6220. source: "./media/characters/surgo/back.svg",
  6221. extra: 3557 / 2228
  6222. }
  6223. },
  6224. laying: {
  6225. height: math.unit(6 * 0.85, "feet"),
  6226. weight: math.unit(600, "lbs"),
  6227. name: "Laying",
  6228. image: {
  6229. source: "./media/characters/surgo/laying.svg"
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(6, "feet"),
  6237. default: true
  6238. }
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6243. {
  6244. side: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(150, "lbs"),
  6247. name: "Side",
  6248. image: {
  6249. source: "./media/characters/cibus/side.svg",
  6250. extra: 800 / 400
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(6, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(240, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/nibbles/front.svg"
  6271. }
  6272. },
  6273. side: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(240, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/nibbles/side.svg"
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(9, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6292. {
  6293. side: {
  6294. height: math.unit(5 + 1 / 6, "feet"),
  6295. weight: math.unit(130, "lbs"),
  6296. name: "Side",
  6297. image: {
  6298. source: "./media/characters/rikky/side.svg",
  6299. extra: 851 / 801
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(5 + 1 / 6, "feet")
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(152, "feet"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(7, "miles")
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(370, "cm"),
  6324. weight: math.unit(350, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/malfressa/side.svg"
  6328. }
  6329. },
  6330. walking: {
  6331. height: math.unit(370, "cm"),
  6332. weight: math.unit(350, "lbs"),
  6333. name: "Walking",
  6334. image: {
  6335. source: "./media/characters/malfressa/walking.svg"
  6336. }
  6337. },
  6338. feral: {
  6339. height: math.unit(2500, "cm"),
  6340. weight: math.unit(100000, "lbs"),
  6341. name: "Feral",
  6342. image: {
  6343. source: "./media/characters/malfressa/feral.svg",
  6344. extra: 2108 / 837,
  6345. bottom: 0.02
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(370, "cm")
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(300, "meters"),
  6357. default: true
  6358. }
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(60, "kg"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/jaro/front.svg",
  6370. extra: 845/817,
  6371. bottom: 45/890
  6372. }
  6373. },
  6374. back: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(60, "kg"),
  6377. name: "Back",
  6378. image: {
  6379. source: "./media/characters/jaro/back.svg",
  6380. extra: 847/817,
  6381. bottom: 34/881
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Micro",
  6388. height: math.unit(7, "inches")
  6389. },
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(5.5, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Minimacro",
  6397. height: math.unit(20, "feet")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(200, "meters")
  6402. }
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(195, "lb"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/rogue/front.svg"
  6414. }
  6415. },
  6416. },
  6417. [
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(90, "feet"),
  6421. default: true
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(5 + 8 / 12, "feet"),
  6430. weight: math.unit(140, "lb"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/piper/front.svg",
  6434. extra: 3948/3655,
  6435. bottom: 0/3948
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Micro",
  6442. height: math.unit(2, "inches")
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(5 + 8 / 12, "feet")
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(250, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Megamacro",
  6455. height: math.unit(7, "miles")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(220, "lb"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/gemini/front.svg"
  6468. }
  6469. },
  6470. back: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(220, "lb"),
  6473. name: "Back",
  6474. image: {
  6475. source: "./media/characters/gemini/back.svg"
  6476. }
  6477. },
  6478. kneeling: {
  6479. height: math.unit(6 / 1.5, "feet"),
  6480. weight: math.unit(220, "lb"),
  6481. name: "Kneeling",
  6482. image: {
  6483. source: "./media/characters/gemini/kneeling.svg",
  6484. bottom: 0.02
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(300, "meters"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Megamacro",
  6496. height: math.unit(6900, "meters")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6502. {
  6503. anthro: {
  6504. height: math.unit(2.35, "meters"),
  6505. weight: math.unit(73, "kg"),
  6506. name: "Anthro",
  6507. image: {
  6508. source: "./media/characters/alicia/anthro.svg",
  6509. extra: 2571 / 2385,
  6510. bottom: 75 / 2648
  6511. }
  6512. },
  6513. paw: {
  6514. height: math.unit(1.32, "feet"),
  6515. name: "Paw",
  6516. image: {
  6517. source: "./media/characters/alicia/paw.svg"
  6518. }
  6519. },
  6520. feral: {
  6521. height: math.unit(1.69, "meters"),
  6522. weight: math.unit(73, "kg"),
  6523. name: "Feral",
  6524. image: {
  6525. source: "./media/characters/alicia/feral.svg",
  6526. extra: 2123 / 1715,
  6527. bottom: 222 / 2349
  6528. }
  6529. },
  6530. },
  6531. [
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(2.35, "meters")
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(60, "meters"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(10000, "kilometers")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(7, "feet"),
  6552. weight: math.unit(250, "lbs"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/archy/front.svg"
  6556. }
  6557. }
  6558. },
  6559. [
  6560. {
  6561. name: "Micro",
  6562. height: math.unit(1, "inch")
  6563. },
  6564. {
  6565. name: "Shorty",
  6566. height: math.unit(5, "feet")
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(7, "feet")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(600, "meters"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(1, "mile")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(1.65, "meters"),
  6588. weight: math.unit(74, "kg"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/berri/front.svg",
  6592. extra: 857 / 837,
  6593. bottom: 18 / 877
  6594. }
  6595. },
  6596. bum: {
  6597. height: math.unit(1.46, "feet"),
  6598. name: "Bum",
  6599. image: {
  6600. source: "./media/characters/berri/bum.svg"
  6601. }
  6602. },
  6603. mouth: {
  6604. height: math.unit(0.44, "feet"),
  6605. name: "Mouth",
  6606. image: {
  6607. source: "./media/characters/berri/mouth.svg"
  6608. }
  6609. },
  6610. paw: {
  6611. height: math.unit(0.826, "feet"),
  6612. name: "Paw",
  6613. image: {
  6614. source: "./media/characters/berri/paw.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(1.65, "meters")
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(60, "m"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Megamacro",
  6630. height: math.unit(9.213, "km")
  6631. },
  6632. {
  6633. name: "Planet Eater",
  6634. height: math.unit(489, "megameters")
  6635. },
  6636. {
  6637. name: "Teramacro",
  6638. height: math.unit(2471635000000, "meters")
  6639. },
  6640. {
  6641. name: "Examacro",
  6642. height: math.unit(8.0624e+26, "meters")
  6643. }
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(1.72, "meters"),
  6651. weight: math.unit(68, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/lexi/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Very Smol",
  6661. height: math.unit(10, "mm")
  6662. },
  6663. {
  6664. name: "Micro",
  6665. height: math.unit(6.8, "cm"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(1.72, "m")
  6671. }
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(1.69, "meters"),
  6679. weight: math.unit(68, "kg"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/martin/front.svg",
  6683. extra: 596 / 581
  6684. }
  6685. }
  6686. },
  6687. [
  6688. {
  6689. name: "Micro",
  6690. height: math.unit(6.85, "cm"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(1.69, "m")
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(1.69, "meters"),
  6704. weight: math.unit(68, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/juno/front.svg"
  6708. }
  6709. }
  6710. },
  6711. [
  6712. {
  6713. name: "Micro",
  6714. height: math.unit(7, "cm")
  6715. },
  6716. {
  6717. name: "Normal",
  6718. height: math.unit(1.89, "m")
  6719. },
  6720. {
  6721. name: "Macro",
  6722. height: math.unit(353, "meters"),
  6723. default: true
  6724. }
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.93, "meters"),
  6732. weight: math.unit(83, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/samantha/front.svg"
  6736. }
  6737. },
  6738. frontClothed: {
  6739. height: math.unit(1.93, "meters"),
  6740. weight: math.unit(83, "kg"),
  6741. name: "Front (Clothed)",
  6742. image: {
  6743. source: "./media/characters/samantha/front-clothed.svg"
  6744. }
  6745. },
  6746. back: {
  6747. height: math.unit(1.93, "meters"),
  6748. weight: math.unit(83, "kg"),
  6749. name: "Back",
  6750. image: {
  6751. source: "./media/characters/samantha/back.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(1.93, "m")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(74, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro+",
  6767. height: math.unit(223, "meters"),
  6768. },
  6769. {
  6770. name: "Megamacro",
  6771. height: math.unit(8381, "meters"),
  6772. },
  6773. {
  6774. name: "Megamacro+",
  6775. height: math.unit(12000, "kilometers")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(1.92, "meters"),
  6784. weight: math.unit(80, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/dr-clay/front.svg"
  6788. }
  6789. },
  6790. frontClothed: {
  6791. height: math.unit(1.92, "meters"),
  6792. weight: math.unit(80, "kg"),
  6793. name: "Front (Clothed)",
  6794. image: {
  6795. source: "./media/characters/dr-clay/front-clothed.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(1.92, "m")
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(214, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro+",
  6811. height: math.unit(12.237, "meters"),
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(557, "megameters"),
  6816. },
  6817. {
  6818. name: "Unimaginable",
  6819. height: math.unit(120e9, "lightyears")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(80, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Teramacro",
  6838. height: math.unit(500000, "lightyears"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6845. {
  6846. crux: {
  6847. height: math.unit(2, "meters"),
  6848. weight: math.unit(150, "kg"),
  6849. name: "Crux",
  6850. image: {
  6851. source: "./media/characters/vemus/crux.svg",
  6852. extra: 1074/936,
  6853. bottom: 23/1097
  6854. }
  6855. },
  6856. skunkTanuki: {
  6857. height: math.unit(2, "meters"),
  6858. weight: math.unit(150, "kg"),
  6859. name: "Skunk-Tanuki",
  6860. image: {
  6861. source: "./media/characters/vemus/skunk-tanuki.svg",
  6862. extra: 926/893,
  6863. bottom: 20/946
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(3.75, "meters"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Big",
  6875. height: math.unit(8, "meters")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(100, "meters")
  6880. },
  6881. {
  6882. name: "Macro+",
  6883. height: math.unit(1500, "meters")
  6884. },
  6885. {
  6886. name: "Stellar",
  6887. height: math.unit(14e8, "meters")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(2, "meters"),
  6896. weight: math.unit(70, "kg"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/beherit/front.svg",
  6900. extra: 1234/1109,
  6901. bottom: 55/1289
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(6, "feet")
  6909. },
  6910. {
  6911. name: "Lorg",
  6912. height: math.unit(25, "feet"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Lorger",
  6917. height: math.unit(75, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(200, "meters")
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(2, "meters"),
  6930. weight: math.unit(150, "kg"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/everett/front.svg",
  6934. extra: 1017/866,
  6935. bottom: 86/1103
  6936. }
  6937. },
  6938. paw: {
  6939. height: math.unit(2 / 3.6, "meters"),
  6940. name: "Paw",
  6941. image: {
  6942. source: "./media/characters/everett/paw.svg"
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(15, "feet"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Lorg",
  6954. height: math.unit(70, "feet"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Lorger",
  6959. height: math.unit(250, "feet")
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(500, "meters")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(2, "meters"),
  6972. weight: math.unit(86, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/rose/front.svg",
  6976. extra: 1785/1636,
  6977. bottom: 30/1815
  6978. }
  6979. },
  6980. frontSporty: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(86, "kg"),
  6983. name: "Front (Sporty)",
  6984. image: {
  6985. source: "./media/characters/rose/front-sporty.svg",
  6986. extra: 350/335,
  6987. bottom: 10/360
  6988. }
  6989. },
  6990. frontAlt: {
  6991. height: math.unit(1.6, "meters"),
  6992. weight: math.unit(86, "kg"),
  6993. name: "Front (Alt)",
  6994. image: {
  6995. source: "./media/characters/rose/front-alt.svg",
  6996. extra: 299/283,
  6997. bottom: 3/302
  6998. }
  6999. },
  7000. plush: {
  7001. height: math.unit(2, "meters"),
  7002. weight: math.unit(86/3, "kg"),
  7003. name: "Plush",
  7004. image: {
  7005. source: "./media/characters/rose/plush.svg",
  7006. extra: 361/337,
  7007. bottom: 11/372
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "True Micro",
  7014. height: math.unit(9, "cm")
  7015. },
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(16, "cm")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(1.85, "meters"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Mini-Macro",
  7027. height: math.unit(5, "meters")
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(15, "meters")
  7032. },
  7033. {
  7034. name: "True Macro",
  7035. height: math.unit(40, "meters")
  7036. },
  7037. {
  7038. name: "City Scale",
  7039. height: math.unit(1, "km")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(350, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/regal/front.svg"
  7052. }
  7053. },
  7054. back: {
  7055. height: math.unit(2, "meters"),
  7056. weight: math.unit(350, "lbs"),
  7057. name: "Back",
  7058. image: {
  7059. source: "./media/characters/regal/back.svg"
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(350, "feet"),
  7067. default: true
  7068. }
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(4 + 11 / 12, "feet"),
  7076. weight: math.unit(100, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/opal/front.svg"
  7080. }
  7081. },
  7082. frontAlt: {
  7083. height: math.unit(4 + 11 / 12, "feet"),
  7084. weight: math.unit(100, "lbs"),
  7085. name: "Front (Alt)",
  7086. image: {
  7087. source: "./media/characters/opal/front-alt.svg"
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Small",
  7094. height: math.unit(4 + 11 / 12, "feet")
  7095. },
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(20, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(120, "feet")
  7104. },
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(80, "miles")
  7108. },
  7109. {
  7110. name: "True Size",
  7111. height: math.unit(100000, "lightyears")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(200, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/vector-wuff/front.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(2.8, "meters")
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(450, "meters"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Megamacro",
  7139. height: math.unit(15, "kilometers")
  7140. }
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(256, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/dannik/front.svg"
  7152. }
  7153. }
  7154. },
  7155. [
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(69.57, "meters"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(120, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/azura-saharah/front.svg"
  7172. }
  7173. },
  7174. back: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(120, "lbs"),
  7177. name: "Back",
  7178. image: {
  7179. source: "./media/characters/azura-saharah/back.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(100, "feet"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7193. {
  7194. side: {
  7195. height: math.unit(5 + 4 / 12, "feet"),
  7196. weight: math.unit(163, "lbs"),
  7197. name: "Side",
  7198. image: {
  7199. source: "./media/characters/kennedy/side.svg"
  7200. }
  7201. }
  7202. },
  7203. [
  7204. {
  7205. name: "Standard Doggo",
  7206. height: math.unit(5 + 4 / 12, "feet")
  7207. },
  7208. {
  7209. name: "Big Doggo",
  7210. height: math.unit(25 + 3 / 12, "feet"),
  7211. default: true
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(5 + 5/12, "feet"),
  7220. weight: math.unit(100, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/odios-de-lunar/front.svg",
  7224. extra: 1468/1323,
  7225. bottom: 22/1490
  7226. }
  7227. }
  7228. },
  7229. [
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(3, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5.5, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(100, "feet")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7247. {
  7248. back: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(220, "lbs"),
  7251. name: "Back",
  7252. image: {
  7253. source: "./media/characters/mandake/back.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(7, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(78, "feet")
  7266. },
  7267. {
  7268. name: "Macro+",
  7269. height: math.unit(300, "meters")
  7270. },
  7271. {
  7272. name: "Macro++",
  7273. height: math.unit(2400, "feet")
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(5167, "meters")
  7278. },
  7279. {
  7280. name: "Gigamacro",
  7281. height: math.unit(41769, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(120, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/yozey/front.svg"
  7294. }
  7295. },
  7296. frontAlt: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Front (Alt)",
  7300. image: {
  7301. source: "./media/characters/yozey/front-alt.svg"
  7302. }
  7303. },
  7304. side: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(120, "lbs"),
  7307. name: "Side",
  7308. image: {
  7309. source: "./media/characters/yozey/side.svg"
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(3, "inches"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6, "feet")
  7322. }
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(103, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/valeska-voss/front.svg"
  7334. }
  7335. }
  7336. },
  7337. [
  7338. {
  7339. name: "Mini-Sized Sub",
  7340. height: math.unit(3.1, "inches")
  7341. },
  7342. {
  7343. name: "Mid-Sized Sub",
  7344. height: math.unit(6.2, "inches")
  7345. },
  7346. {
  7347. name: "Full-Sized Sub",
  7348. height: math.unit(9.3, "inches")
  7349. },
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(5 + 2 / 12, "foot"),
  7353. default: true
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(160, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/gene-zeta/front.svg",
  7366. extra: 3006 / 2826,
  7367. bottom: 182 / 3188
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(6, "inches")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(5 + 11 / 12, "foot"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(140, "feet")
  7384. },
  7385. {
  7386. name: "Supercharged",
  7387. height: math.unit(2500, "feet")
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6, "feet"),
  7396. weight: math.unit(350, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/razinox/front.svg",
  7400. extra: 1686 / 1548,
  7401. bottom: 28.2 / 1868
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(6, "feet"),
  7406. weight: math.unit(350, "lbs"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/razinox/back.svg",
  7410. extra: 1660 / 1590,
  7411. bottom: 15 / 1665
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(10 + 8 / 12, "foot")
  7419. },
  7420. {
  7421. name: "Minimacro",
  7422. height: math.unit(15, "foot")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(60, "foot"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(5, "miles")
  7432. },
  7433. {
  7434. name: "Gigamacro",
  7435. height: math.unit(6000, "miles")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(150, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/cobalt/front.svg"
  7448. }
  7449. }
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(8 + 1 / 12, "foot")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(111, "foot"),
  7459. default: true
  7460. },
  7461. {
  7462. name: "Supracosmic",
  7463. height: math.unit(1e42, "feet")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(140, "lbs"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/amanda/front.svg"
  7476. }
  7477. }
  7478. },
  7479. [
  7480. {
  7481. name: "Micro",
  7482. height: math.unit(5, "inches"),
  7483. default: true
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(2.75, "meters"),
  7492. weight: math.unit(1200, "lb"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/teal/front.svg",
  7496. extra: 2463 / 2320,
  7497. bottom: 166 / 2629
  7498. }
  7499. },
  7500. back: {
  7501. height: math.unit(2.75, "meters"),
  7502. weight: math.unit(1200, "lb"),
  7503. name: "Back",
  7504. image: {
  7505. source: "./media/characters/teal/back.svg",
  7506. extra: 2580 / 2489,
  7507. bottom: 151 / 2731
  7508. }
  7509. },
  7510. sitting: {
  7511. height: math.unit(1.9, "meters"),
  7512. weight: math.unit(1200, "lb"),
  7513. name: "Sitting",
  7514. image: {
  7515. source: "./media/characters/teal/sitting.svg",
  7516. extra: 623 / 590,
  7517. bottom: 121 / 744
  7518. }
  7519. },
  7520. standing: {
  7521. height: math.unit(2.75, "meters"),
  7522. weight: math.unit(1200, "lb"),
  7523. name: "Standing",
  7524. image: {
  7525. source: "./media/characters/teal/standing.svg",
  7526. extra: 923 / 893,
  7527. bottom: 60 / 983
  7528. }
  7529. },
  7530. stretching: {
  7531. height: math.unit(3.65, "meters"),
  7532. weight: math.unit(1200, "lb"),
  7533. name: "Stretching",
  7534. image: {
  7535. source: "./media/characters/teal/stretching.svg",
  7536. extra: 1276 / 1244,
  7537. bottom: 0 / 1276
  7538. }
  7539. },
  7540. legged: {
  7541. height: math.unit(1.3, "meters"),
  7542. weight: math.unit(100, "lb"),
  7543. name: "Legged",
  7544. image: {
  7545. source: "./media/characters/teal/legged.svg",
  7546. extra: 462 / 437,
  7547. bottom: 24 / 486
  7548. }
  7549. },
  7550. naga: {
  7551. height: math.unit(5.4, "meters"),
  7552. weight: math.unit(4000, "lb"),
  7553. name: "Naga",
  7554. image: {
  7555. source: "./media/characters/teal/naga.svg",
  7556. extra: 1902 / 1858,
  7557. bottom: 0 / 1902
  7558. }
  7559. },
  7560. hand: {
  7561. height: math.unit(0.52, "meters"),
  7562. name: "Hand",
  7563. image: {
  7564. source: "./media/characters/teal/hand.svg"
  7565. }
  7566. },
  7567. maw: {
  7568. height: math.unit(0.43, "meters"),
  7569. name: "Maw",
  7570. image: {
  7571. source: "./media/characters/teal/maw.svg"
  7572. }
  7573. },
  7574. slit: {
  7575. height: math.unit(0.25, "meters"),
  7576. name: "Slit",
  7577. image: {
  7578. source: "./media/characters/teal/slit.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(2.75, "meters"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(300, "feet")
  7591. },
  7592. {
  7593. name: "Macro+",
  7594. height: math.unit(2000, "feet")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7600. {
  7601. frontCat: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(180, "lbs"),
  7604. name: "Front (Cat)",
  7605. image: {
  7606. source: "./media/characters/ravin-amulet/front-cat.svg"
  7607. }
  7608. },
  7609. frontCatAlt: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front (Alt, Cat)",
  7613. image: {
  7614. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7615. }
  7616. },
  7617. frontWerewolf: {
  7618. height: math.unit(6 * 1.2, "feet"),
  7619. weight: math.unit(225, "lbs"),
  7620. name: "Front (Werewolf)",
  7621. image: {
  7622. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7623. }
  7624. },
  7625. backWerewolf: {
  7626. height: math.unit(6 * 1.2, "feet"),
  7627. weight: math.unit(225, "lbs"),
  7628. name: "Back (Werewolf)",
  7629. image: {
  7630. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Nano",
  7637. height: math.unit(1, "micrometer")
  7638. },
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(1, "inch")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(6, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(60, "feet")
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(165, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/fluoresce/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(6, "cm")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(5 + 7 / 12, "feet"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Macro",
  7678. height: math.unit(56, "feet")
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(1.9, "miles")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(9 + 6 / 12, "feet"),
  7691. weight: math.unit(523, "lbs"),
  7692. name: "Side",
  7693. image: {
  7694. source: "./media/characters/aurora/side.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(9 + 6 / 12, "feet")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(96, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro+",
  7710. height: math.unit(243, "feet")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(194, "cm"),
  7719. weight: math.unit(90, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/ranek/front.svg"
  7723. }
  7724. },
  7725. side: {
  7726. height: math.unit(194, "cm"),
  7727. weight: math.unit(90, "kg"),
  7728. name: "Side",
  7729. image: {
  7730. source: "./media/characters/ranek/side.svg"
  7731. }
  7732. },
  7733. back: {
  7734. height: math.unit(194, "cm"),
  7735. weight: math.unit(90, "kg"),
  7736. name: "Back",
  7737. image: {
  7738. source: "./media/characters/ranek/back.svg"
  7739. }
  7740. },
  7741. feral: {
  7742. height: math.unit(30, "cm"),
  7743. weight: math.unit(1.6, "lbs"),
  7744. name: "Feral",
  7745. image: {
  7746. source: "./media/characters/ranek/feral.svg"
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(194, "cm"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(100, "meters")
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(5 + 6 / 12, "feet"),
  7767. weight: math.unit(153, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/andrew-cooper/front.svg"
  7771. }
  7772. },
  7773. },
  7774. [
  7775. {
  7776. name: "Nano",
  7777. height: math.unit(1, "mm")
  7778. },
  7779. {
  7780. name: "Micro",
  7781. height: math.unit(2, "inches")
  7782. },
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(5 + 6 / 12, "feet"),
  7786. default: true
  7787. }
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(180, "lbs"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/akane-sato/front.svg",
  7799. extra: 1219 / 1140
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(6, "feet"),
  7804. weight: math.unit(180, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/akane-sato/back.svg",
  7808. extra: 1219 / 1170
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(2.5, "meters")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(250, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(25, "km")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(65, "kg"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/rook/front.svg",
  7837. extra: 960 / 950
  7838. }
  7839. }
  7840. },
  7841. [
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(8.8, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(88, "feet"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(8, "miles")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(12 + 2 / 12, "feet"),
  7862. weight: math.unit(808, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/prodigy/front.svg"
  7866. }
  7867. }
  7868. },
  7869. [
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(12 + 2 / 12, "feet"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(143, "feet")
  7878. },
  7879. {
  7880. name: "Macro+",
  7881. height: math.unit(400, "feet")
  7882. },
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(225, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/daniel/front.svg"
  7894. }
  7895. },
  7896. leaning: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(225, "lbs"),
  7899. name: "Leaning",
  7900. image: {
  7901. source: "./media/characters/daniel/leaning.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(1000, "feet"),
  7909. default: true
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(88, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/chiros/front.svg",
  7922. extra: 306 / 226
  7923. }
  7924. },
  7925. side: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(88, "lbs"),
  7928. name: "Side",
  7929. image: {
  7930. source: "./media/characters/chiros/side.svg",
  7931. extra: 306 / 226
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6, "cm"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(100, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/selka/front.svg",
  7952. extra: 947 / 887
  7953. }
  7954. }
  7955. },
  7956. [
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(5, "cm"),
  7960. default: true
  7961. },
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7966. {
  7967. front: {
  7968. height: math.unit(8 + 3 / 12, "feet"),
  7969. weight: math.unit(424, "lbs"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/verin/front.svg",
  7973. extra: 1845 / 1550
  7974. }
  7975. },
  7976. frontArmored: {
  7977. height: math.unit(8 + 3 / 12, "feet"),
  7978. weight: math.unit(424, "lbs"),
  7979. name: "Front (Armored)",
  7980. image: {
  7981. source: "./media/characters/verin/front-armor.svg",
  7982. extra: 1845 / 1550,
  7983. bottom: 0.01
  7984. }
  7985. },
  7986. back: {
  7987. height: math.unit(8 + 3 / 12, "feet"),
  7988. weight: math.unit(424, "lbs"),
  7989. name: "Back",
  7990. image: {
  7991. source: "./media/characters/verin/back.svg",
  7992. bottom: 0.1,
  7993. extra: 1
  7994. }
  7995. },
  7996. foot: {
  7997. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7998. name: "Foot",
  7999. image: {
  8000. source: "./media/characters/verin/foot.svg"
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(8 + 3 / 12, "feet")
  8008. },
  8009. {
  8010. name: "Minimacro",
  8011. height: math.unit(21, "feet"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(626, "feet")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(2.718, "meters"),
  8025. weight: math.unit(150, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/sovrim-terraquian/front.svg",
  8029. extra: 1752/1689,
  8030. bottom: 36/1788
  8031. }
  8032. },
  8033. back: {
  8034. height: math.unit(2.718, "meters"),
  8035. weight: math.unit(150, "lbs"),
  8036. name: "Back",
  8037. image: {
  8038. source: "./media/characters/sovrim-terraquian/back.svg",
  8039. extra: 1698/1657,
  8040. bottom: 58/1756
  8041. }
  8042. },
  8043. tongue: {
  8044. height: math.unit(2.865, "feet"),
  8045. name: "Tongue",
  8046. image: {
  8047. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8048. }
  8049. },
  8050. hand: {
  8051. height: math.unit(1.61, "feet"),
  8052. name: "Hand",
  8053. image: {
  8054. source: "./media/characters/sovrim-terraquian/hand.svg"
  8055. }
  8056. },
  8057. foot: {
  8058. height: math.unit(1.05, "feet"),
  8059. name: "Foot",
  8060. image: {
  8061. source: "./media/characters/sovrim-terraquian/foot.svg"
  8062. }
  8063. },
  8064. footAlt: {
  8065. height: math.unit(0.88, "feet"),
  8066. name: "Foot (Alt)",
  8067. image: {
  8068. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(2, "inches")
  8076. },
  8077. {
  8078. name: "Small",
  8079. height: math.unit(1, "meter")
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(Math.E, "meters"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(20, "meters")
  8089. },
  8090. {
  8091. name: "Macro+",
  8092. height: math.unit(400, "meters")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(7, "feet"),
  8101. weight: math.unit(489, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/reece-silvermane/front.svg",
  8105. bottom: 0.02,
  8106. extra: 1
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(1.5, "miles"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(78, "kg"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/kane/front.svg",
  8127. extra: 978 / 899
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.1, "m"),
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(1, "km"),
  8139. default: true
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(200, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/tegon/front.svg",
  8152. bottom: 0.01,
  8153. extra: 1
  8154. }
  8155. },
  8156. },
  8157. [
  8158. {
  8159. name: "Micro",
  8160. height: math.unit(1, "inch")
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(6 + 3 / 12, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(300, "feet")
  8170. },
  8171. {
  8172. name: "Megamacro",
  8173. height: math.unit(69, "miles")
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8179. {
  8180. side: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(2304, "lbs"),
  8183. name: "Side",
  8184. image: {
  8185. source: "./media/characters/arcturax/side.svg",
  8186. extra: 790 / 376,
  8187. bottom: 0.01
  8188. }
  8189. },
  8190. },
  8191. [
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(2, "inch")
  8195. },
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(6, "feet")
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(39, "feet"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "Megamacro",
  8207. height: math.unit(7, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(50, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/sentri/front.svg",
  8220. extra: 1750 / 1570,
  8221. bottom: 0.025
  8222. }
  8223. },
  8224. frontAlt: {
  8225. height: math.unit(6, "feet"),
  8226. weight: math.unit(50, "lbs"),
  8227. name: "Front (Alt)",
  8228. image: {
  8229. source: "./media/characters/sentri/front-alt.svg",
  8230. extra: 1750 / 1570,
  8231. bottom: 0.025
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(15, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(2500, "feet")
  8244. }
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(5 + 8 / 12, "feet"),
  8252. weight: math.unit(130, "lbs"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/corvin/front.svg",
  8256. extra: 1803 / 1629
  8257. }
  8258. },
  8259. frontShirt: {
  8260. height: math.unit(5 + 8 / 12, "feet"),
  8261. weight: math.unit(130, "lbs"),
  8262. name: "Front (Shirt)",
  8263. image: {
  8264. source: "./media/characters/corvin/front-shirt.svg",
  8265. extra: 1803 / 1629
  8266. }
  8267. },
  8268. frontPoncho: {
  8269. height: math.unit(5 + 8 / 12, "feet"),
  8270. weight: math.unit(130, "lbs"),
  8271. name: "Front (Poncho)",
  8272. image: {
  8273. source: "./media/characters/corvin/front-poncho.svg",
  8274. extra: 1803 / 1629
  8275. }
  8276. },
  8277. side: {
  8278. height: math.unit(5 + 8 / 12, "feet"),
  8279. weight: math.unit(130, "lbs"),
  8280. name: "Side",
  8281. image: {
  8282. source: "./media/characters/corvin/side.svg",
  8283. extra: 1012 / 945
  8284. }
  8285. },
  8286. back: {
  8287. height: math.unit(5 + 8 / 12, "feet"),
  8288. weight: math.unit(130, "lbs"),
  8289. name: "Back",
  8290. image: {
  8291. source: "./media/characters/corvin/back.svg",
  8292. extra: 1803 / 1629
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Micro",
  8299. height: math.unit(3, "inches")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(5 + 8 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(300, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(500, "miles")
  8313. }
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(135, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/q/front.svg",
  8325. extra: 854 / 752,
  8326. bottom: 0.005
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(130, "lbs"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/q/back.svg",
  8335. extra: 854 / 752
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(90, "feet"),
  8343. default: true
  8344. },
  8345. {
  8346. name: "Extra Macro",
  8347. height: math.unit(300, "feet"),
  8348. },
  8349. {
  8350. name: "BIG WALF",
  8351. height: math.unit(750, "feet"),
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(150, "lbs"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/carley/front.svg",
  8364. extra: 3927 / 3540,
  8365. bottom: 29.2 / 735
  8366. }
  8367. }
  8368. },
  8369. [
  8370. {
  8371. name: "Normal",
  8372. height: math.unit(6 + 3 / 12, "feet")
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(185, "feet"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Megamacro",
  8381. height: math.unit(8, "miles"),
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(3, "feet"),
  8390. weight: math.unit(28, "lbs"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/citrine/front.svg"
  8394. }
  8395. }
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(3, "feet"),
  8401. default: true
  8402. }
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8407. {
  8408. front: {
  8409. height: math.unit(14, "feet"),
  8410. weight: math.unit(1450, "kg"),
  8411. capacity: math.unit(15, "people"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/aura-starwind/front.svg",
  8415. extra: 1440/1327,
  8416. bottom: 11/1451
  8417. }
  8418. },
  8419. side: {
  8420. height: math.unit(14, "feet"),
  8421. weight: math.unit(1450, "kg"),
  8422. capacity: math.unit(15, "people"),
  8423. name: "Side",
  8424. image: {
  8425. source: "./media/characters/aura-starwind/side.svg",
  8426. extra: 1654 / 1497
  8427. }
  8428. },
  8429. taur: {
  8430. height: math.unit(18, "feet"),
  8431. weight: math.unit(5500, "kg"),
  8432. capacity: math.unit(50, "people"),
  8433. name: "Taur",
  8434. image: {
  8435. source: "./media/characters/aura-starwind/taur.svg",
  8436. extra: 1760 / 1650
  8437. }
  8438. },
  8439. feral: {
  8440. height: math.unit(46, "feet"),
  8441. weight: math.unit(25000, "kg"),
  8442. capacity: math.unit(120, "people"),
  8443. name: "Feral",
  8444. image: {
  8445. source: "./media/characters/aura-starwind/feral.svg"
  8446. }
  8447. },
  8448. },
  8449. [
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(14, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(50, "meters")
  8458. },
  8459. {
  8460. name: "Megamacro",
  8461. height: math.unit(5000, "meters")
  8462. },
  8463. {
  8464. name: "Gigamacro",
  8465. height: math.unit(100000, "kilometers")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(2 + 7 / 12, "feet"),
  8474. weight: math.unit(32, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/rivet/front.svg",
  8478. extra: 1716 / 1658,
  8479. bottom: 0.03
  8480. }
  8481. },
  8482. foot: {
  8483. height: math.unit(0.551, "feet"),
  8484. name: "Rivet's Foot",
  8485. image: {
  8486. source: "./media/characters/rivet/foot.svg"
  8487. },
  8488. rename: true
  8489. }
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(1.5, "inches"),
  8495. },
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(2 + 7 / 12, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(85, "feet")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(2.2, "km")
  8508. }
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(5 + 9 / 12, "feet"),
  8516. weight: math.unit(150, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/coffee/front.svg",
  8520. extra: 3666 / 3032,
  8521. bottom: 0.04
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(1.29, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/coffee/foot.svg"
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Micro",
  8535. height: math.unit(2, "inches"),
  8536. },
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(5 + 9 / 12, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(800, "feet")
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(25, "miles")
  8549. }
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(6, "feet"),
  8557. weight: math.unit(200, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/chari-gal/front.svg",
  8561. extra: 1568 / 1385,
  8562. bottom: 0.047
  8563. }
  8564. },
  8565. gigantamax: {
  8566. height: math.unit(6 * 16, "feet"),
  8567. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8568. name: "Gigantamax",
  8569. image: {
  8570. source: "./media/characters/chari-gal/gigantamax.svg",
  8571. extra: 1124 / 888,
  8572. bottom: 0.03
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(5 + 7 / 12, "feet")
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(200, "feet"),
  8584. default: true
  8585. }
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(150, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/nova/front.svg",
  8597. extra: 5000 / 4722,
  8598. bottom: 0.02
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro-",
  8605. height: math.unit(0.8, "inches")
  8606. },
  8607. {
  8608. name: "Micro",
  8609. height: math.unit(2, "inches"),
  8610. default: true
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(3 + 1 / 12, "feet"),
  8619. weight: math.unit(21.7, "lbs"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/argent/front.svg",
  8623. extra: 1471 / 1331,
  8624. bottom: 100.8 / 1575.5
  8625. }
  8626. }
  8627. },
  8628. [
  8629. {
  8630. name: "Micro",
  8631. height: math.unit(2, "inches")
  8632. },
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(3 + 1 / 12, "feet"),
  8636. default: true
  8637. },
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(120, "feet")
  8641. },
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8646. {
  8647. lamp: {
  8648. height: math.unit(7 * 1559 / 989, "feet"),
  8649. name: "Magic Lamp",
  8650. image: {
  8651. source: "./media/characters/mira-al-cul/lamp.svg",
  8652. extra: 1617 / 1559
  8653. }
  8654. },
  8655. front: {
  8656. height: math.unit(7, "feet"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/mira-al-cul/front.svg",
  8660. extra: 1044 / 990
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Heavily Restricted",
  8667. height: math.unit(7 * 1559 / 989, "feet")
  8668. },
  8669. {
  8670. name: "Freshly Freed",
  8671. height: math.unit(50 * 1559 / 989, "feet")
  8672. },
  8673. {
  8674. name: "World Encompassing",
  8675. height: math.unit(10000 * 1559 / 989, "miles")
  8676. },
  8677. {
  8678. name: "Galactic",
  8679. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8680. },
  8681. {
  8682. name: "Palmed Universe",
  8683. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Multiversal Matriarch",
  8688. height: math.unit(8.87e10, "yottameters")
  8689. },
  8690. {
  8691. name: "Void Mother",
  8692. height: math.unit(3.14e110, "yottaparsecs")
  8693. },
  8694. {
  8695. name: "Toying with Transcendence",
  8696. height: math.unit(1e307, "meters")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8702. {
  8703. front: {
  8704. height: math.unit(17 + 1 / 12, "feet"),
  8705. weight: math.unit(476.2 * 5, "lbs"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/kuro-shi-uchū/front.svg",
  8709. extra: 2329 / 1835,
  8710. bottom: 0.02
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(12, "meters")
  8722. },
  8723. {
  8724. name: "Planetary",
  8725. height: math.unit(0.00929, "AU"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Universal",
  8730. height: math.unit(20, "gigaparsecs")
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(5 + 2 / 12, "feet"),
  8739. weight: math.unit(120, "lbs"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/katherine/front.svg",
  8743. extra: 2075 / 1969
  8744. }
  8745. },
  8746. dress: {
  8747. height: math.unit(5 + 2 / 12, "feet"),
  8748. weight: math.unit(120, "lbs"),
  8749. name: "Dress",
  8750. image: {
  8751. source: "./media/characters/katherine/dress.svg",
  8752. extra: 2258 / 2064
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Micro",
  8759. height: math.unit(1, "inches"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(5 + 2 / 12, "feet")
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(100, "meters")
  8769. },
  8770. {
  8771. name: "Megamacro",
  8772. height: math.unit(80, "miles")
  8773. },
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8778. {
  8779. front: {
  8780. height: math.unit(7 + 8 / 12, "feet"),
  8781. weight: math.unit(250, "lbs"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/yevis/front.svg",
  8785. extra: 1938 / 1755
  8786. }
  8787. }
  8788. },
  8789. [
  8790. {
  8791. name: "Mortal",
  8792. height: math.unit(7 + 8 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Battle",
  8796. height: math.unit(25 + 11 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Wrath",
  8800. height: math.unit(1654 + 11 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Planet Destroyer",
  8804. height: math.unit(12000, "miles")
  8805. },
  8806. {
  8807. name: "Galaxy Conqueror",
  8808. height: math.unit(1.45, "zettameters"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Universal War",
  8813. height: math.unit(184, "gigaparsecs")
  8814. },
  8815. {
  8816. name: "Eternity War",
  8817. height: math.unit(1.98e55, "yottaparsecs")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(5 + 8 / 12, "feet"),
  8826. weight: math.unit(63, "kg"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/xavier/front.svg",
  8830. extra: 944 / 883
  8831. }
  8832. },
  8833. frontStretch: {
  8834. height: math.unit(5 + 8 / 12, "feet"),
  8835. weight: math.unit(63, "kg"),
  8836. name: "Stretching",
  8837. image: {
  8838. source: "./media/characters/xavier/front-stretch.svg",
  8839. extra: 962 / 820
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(5 + 8 / 12, "feet")
  8847. },
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(100, "meters"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "McLargeHuge",
  8855. height: math.unit(10, "miles")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(5 + 5 / 12, "feet"),
  8864. weight: math.unit(150, "lb"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/joshii/front.svg",
  8868. extra: 765 / 653,
  8869. bottom: 51 / 816
  8870. }
  8871. },
  8872. foot: {
  8873. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8874. name: "Foot",
  8875. image: {
  8876. source: "./media/characters/joshii/foot.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Micro",
  8883. height: math.unit(2, "inches"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(5 + 5 / 12, "feet")
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(785, "feet")
  8893. },
  8894. {
  8895. name: "Megamacro",
  8896. height: math.unit(24.5, "miles")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(150, "lb"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/goddess-elizabeth/front.svg",
  8909. extra: 1800 / 1525,
  8910. bottom: 0.005
  8911. }
  8912. },
  8913. foot: {
  8914. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8915. name: "Foot",
  8916. image: {
  8917. source: "./media/characters/goddess-elizabeth/foot.svg"
  8918. }
  8919. },
  8920. mouth: {
  8921. height: math.unit(6, "feet"),
  8922. name: "Mouth",
  8923. image: {
  8924. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Micro",
  8931. height: math.unit(12, "feet")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(80, "miles"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(15000, "parsecs")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(5 + 9 / 12, "feet"),
  8949. weight: math.unit(144, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/kara/front.svg"
  8953. }
  8954. },
  8955. feet: {
  8956. height: math.unit(6 / 6.765, "feet"),
  8957. name: "Kara's Feet",
  8958. rename: true,
  8959. image: {
  8960. source: "./media/characters/kara/feet.svg"
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(5 + 9 / 12, "feet")
  8968. },
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(174, "feet"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(18, "feet"),
  8981. weight: math.unit(4050, "lb"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/tyrone/front.svg",
  8985. extra: 2405 / 2270,
  8986. bottom: 182 / 2587
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(18, "feet"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(300, "feet")
  8999. },
  9000. {
  9001. name: "Megamacro",
  9002. height: math.unit(15, "km")
  9003. },
  9004. {
  9005. name: "Gigamacro",
  9006. height: math.unit(500, "km")
  9007. },
  9008. {
  9009. name: "Teramacro",
  9010. height: math.unit(0.5, "gigameters")
  9011. },
  9012. {
  9013. name: "Omnimacro",
  9014. height: math.unit(1e252, "yottauniverse")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(7 + 8 / 12, "feet"),
  9023. weight: math.unit(120, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/danny/front.svg",
  9027. extra: 1490 / 1350
  9028. }
  9029. },
  9030. back: {
  9031. height: math.unit(7 + 8 / 12, "feet"),
  9032. weight: math.unit(120, "lb"),
  9033. name: "Back",
  9034. image: {
  9035. source: "./media/characters/danny/back.svg",
  9036. extra: 1490 / 1350
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(7 + 8 / 12, "feet"),
  9044. default: true
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(3.5, "inches"),
  9053. weight: math.unit(19, "grams"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/mallow/front.svg",
  9057. extra: 471 / 431
  9058. }
  9059. },
  9060. back: {
  9061. height: math.unit(3.5, "inches"),
  9062. weight: math.unit(19, "grams"),
  9063. name: "Back",
  9064. image: {
  9065. source: "./media/characters/mallow/back.svg",
  9066. extra: 471 / 431
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(3.5, "inches"),
  9074. default: true
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9080. {
  9081. front: {
  9082. height: math.unit(9, "feet"),
  9083. weight: math.unit(230, "kg"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/starry-aqua/front.svg"
  9087. }
  9088. },
  9089. back: {
  9090. height: math.unit(9, "feet"),
  9091. weight: math.unit(230, "kg"),
  9092. name: "Back",
  9093. image: {
  9094. source: "./media/characters/starry-aqua/back.svg"
  9095. }
  9096. },
  9097. hand: {
  9098. height: math.unit(9 * 0.1168, "feet"),
  9099. name: "Hand",
  9100. image: {
  9101. source: "./media/characters/starry-aqua/hand.svg"
  9102. }
  9103. },
  9104. foot: {
  9105. height: math.unit(9 * 0.18, "feet"),
  9106. name: "Foot",
  9107. image: {
  9108. source: "./media/characters/starry-aqua/foot.svg"
  9109. }
  9110. }
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(3, "inches")
  9116. },
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(9, "feet")
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(300, "feet"),
  9124. default: true
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(3200, "feet")
  9129. }
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(15, "feet"),
  9137. weight: math.unit(5026, "lb"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/luka-towers/front.svg",
  9141. extra: 1269/1133,
  9142. bottom: 51/1320
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(15, "feet"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Minimacro",
  9154. height: math.unit(25, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(320, "feet")
  9159. },
  9160. {
  9161. name: "Megamacro",
  9162. height: math.unit(35000, "feet")
  9163. },
  9164. {
  9165. name: "Gigamacro",
  9166. height: math.unit(4000, "miles")
  9167. },
  9168. {
  9169. name: "Teramacro",
  9170. height: math.unit(15000, "miles")
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(150, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/natalie-nightring/front.svg",
  9183. extra: 1,
  9184. bottom: 0.06
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Uh Oh",
  9191. height: math.unit(0.1, "mm")
  9192. },
  9193. {
  9194. name: "Small",
  9195. height: math.unit(3, "inches")
  9196. },
  9197. {
  9198. name: "Human Scale",
  9199. height: math.unit(6, "feet")
  9200. },
  9201. {
  9202. name: "Librarian",
  9203. height: math.unit(50, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Immense",
  9208. height: math.unit(200, "miles")
  9209. },
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(180, "lbs"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/danni-rosie/front.svg",
  9221. extra: 1260 / 1128,
  9222. bottom: 0.022
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Micro",
  9229. height: math.unit(2, "inches"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(5 + 9 / 12, "feet"),
  9239. weight: math.unit(220, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/samantha-kruse/front.svg",
  9243. extra: (985 / 935),
  9244. bottom: 0.03
  9245. }
  9246. },
  9247. frontUndressed: {
  9248. height: math.unit(5 + 9 / 12, "feet"),
  9249. weight: math.unit(220, "lb"),
  9250. name: "Front (Undressed)",
  9251. image: {
  9252. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9253. extra: (973 / 923),
  9254. bottom: 0.025
  9255. }
  9256. },
  9257. fat: {
  9258. height: math.unit(5 + 9 / 12, "feet"),
  9259. weight: math.unit(900, "lb"),
  9260. name: "Front (Fat)",
  9261. image: {
  9262. source: "./media/characters/samantha-kruse/fat.svg",
  9263. extra: 2688 / 2561
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(5 + 9 / 12, "feet"),
  9271. default: true
  9272. }
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9277. {
  9278. back: {
  9279. height: math.unit(5 + 4 / 12, "feet"),
  9280. weight: math.unit(4963, "lb"),
  9281. name: "Back",
  9282. image: {
  9283. source: "./media/characters/amelia-rosie/back.svg",
  9284. extra: 1113 / 963,
  9285. bottom: 0.01
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Level 0",
  9292. height: math.unit(5 + 4 / 12, "feet")
  9293. },
  9294. {
  9295. name: "Level 1",
  9296. height: math.unit(164597, "feet"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Level 2",
  9301. height: math.unit(956243, "miles")
  9302. },
  9303. {
  9304. name: "Level 3",
  9305. height: math.unit(29421709423, "miles")
  9306. },
  9307. {
  9308. name: "Level 4",
  9309. height: math.unit(154, "lightyears")
  9310. },
  9311. {
  9312. name: "Level 5",
  9313. height: math.unit(4738272, "lightyears")
  9314. },
  9315. {
  9316. name: "Level 6",
  9317. height: math.unit(145787152896, "lightyears")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(5 + 11 / 12, "feet"),
  9326. weight: math.unit(65, "kg"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/rook-kitara/front.svg",
  9330. extra: 1347 / 1274,
  9331. bottom: 0.005
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Totally Unfair",
  9338. height: math.unit(1.8, "mm")
  9339. },
  9340. {
  9341. name: "Lap Rookie",
  9342. height: math.unit(1.4, "feet")
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 11 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "How Did This Happen",
  9351. height: math.unit(80, "miles")
  9352. }
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(7, "feet"),
  9360. weight: math.unit(300, "lb"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/pisces/front.svg",
  9364. extra: 2255 / 2115,
  9365. bottom: 0.03
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(7, "feet"),
  9370. weight: math.unit(300, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/pisces/back.svg",
  9374. extra: 2146 / 2055,
  9375. bottom: 0.04
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(7, "feet"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Swimming Pool",
  9387. height: math.unit(12.2, "meters")
  9388. },
  9389. {
  9390. name: "Olympic Swimming Pool",
  9391. height: math.unit(56.3, "meters")
  9392. },
  9393. {
  9394. name: "Lake Superior",
  9395. height: math.unit(93900, "meters")
  9396. },
  9397. {
  9398. name: "Mediterranean Sea",
  9399. height: math.unit(644457, "meters")
  9400. },
  9401. {
  9402. name: "World's Oceans",
  9403. height: math.unit(4567491, "meters")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(2.3, "meters"),
  9412. weight: math.unit(120, "kg"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/zelas/front.svg"
  9416. }
  9417. },
  9418. side: {
  9419. height: math.unit(2.3, "meters"),
  9420. weight: math.unit(120, "kg"),
  9421. name: "Side",
  9422. image: {
  9423. source: "./media/characters/zelas/side.svg"
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(2.3, "meters"),
  9428. weight: math.unit(120, "kg"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/zelas/back.svg"
  9432. }
  9433. },
  9434. foot: {
  9435. height: math.unit(1.116, "feet"),
  9436. name: "Foot",
  9437. image: {
  9438. source: "./media/characters/zelas/foot.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(2.3, "meters")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(30, "meters"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(1, "inch"),
  9459. weight: math.unit(0.21, "grams"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/talbot/front.svg",
  9463. extra: 594 / 544
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Micro",
  9470. height: math.unit(1, "inch"),
  9471. default: true
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9477. {
  9478. front: {
  9479. height: math.unit(3 + 3 / 12, "feet"),
  9480. weight: math.unit(51.8, "lb"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/fliss/front.svg",
  9484. extra: 840 / 640
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Teeny Tiny",
  9491. height: math.unit(1, "mm")
  9492. },
  9493. {
  9494. name: "Small",
  9495. height: math.unit(1, "inch"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Standard Sylveon",
  9500. height: math.unit(3 + 3 / 12, "feet")
  9501. },
  9502. {
  9503. name: "Large Nuisance",
  9504. height: math.unit(33, "feet")
  9505. },
  9506. {
  9507. name: "City Filler",
  9508. height: math.unit(3000, "feet")
  9509. },
  9510. {
  9511. name: "New Horizon",
  9512. height: math.unit(6000, "miles")
  9513. },
  9514. ]
  9515. ))
  9516. characterMakers.push(() => makeCharacter(
  9517. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9518. {
  9519. front: {
  9520. height: math.unit(5, "cm"),
  9521. weight: math.unit(1.94, "g"),
  9522. name: "Front",
  9523. image: {
  9524. source: "./media/characters/fleta/front.svg",
  9525. extra: 835 / 803
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(5, "cm"),
  9530. weight: math.unit(1.94, "g"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/fleta/back.svg",
  9534. extra: 835 / 803
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(5, "cm"),
  9542. default: true
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(225, "lb"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/dominic/front.svg",
  9555. extra: 1770 / 1620,
  9556. bottom: 0.025
  9557. }
  9558. },
  9559. back: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(225, "lb"),
  9562. name: "Back",
  9563. image: {
  9564. source: "./media/characters/dominic/back.svg",
  9565. extra: 1745 / 1620,
  9566. bottom: 0.065
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Nano",
  9573. height: math.unit(0.1, "mm")
  9574. },
  9575. {
  9576. name: "Micro-",
  9577. height: math.unit(1, "mm")
  9578. },
  9579. {
  9580. name: "Micro",
  9581. height: math.unit(4, "inches")
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(6 + 4 / 12, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Macro",
  9590. height: math.unit(115, "feet")
  9591. },
  9592. {
  9593. name: "Macro+",
  9594. height: math.unit(955, "feet")
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(8990, "feet")
  9599. },
  9600. {
  9601. name: "Gigmacro",
  9602. height: math.unit(9310, "miles")
  9603. },
  9604. {
  9605. name: "Teramacro",
  9606. height: math.unit(1567005010, "miles")
  9607. },
  9608. {
  9609. name: "Examacro",
  9610. height: math.unit(1425, "parsecs")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(400, "feet"),
  9619. weight: math.unit(44444444, "lb"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/major-colonel/front.svg"
  9623. }
  9624. },
  9625. back: {
  9626. height: math.unit(400, "feet"),
  9627. weight: math.unit(44444444, "lb"),
  9628. name: "Back",
  9629. image: {
  9630. source: "./media/characters/major-colonel/back.svg"
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(400, "feet"),
  9638. default: true
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9644. {
  9645. catFront: {
  9646. height: math.unit(6, "feet"),
  9647. weight: math.unit(120, "lb"),
  9648. name: "Front (Cat Side)",
  9649. image: {
  9650. source: "./media/characters/axel-lycan/cat-front.svg",
  9651. extra: 430 / 402,
  9652. bottom: 43 / 472.35
  9653. }
  9654. },
  9655. catBack: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(120, "lb"),
  9658. name: "Back (Cat Side)",
  9659. image: {
  9660. source: "./media/characters/axel-lycan/cat-back.svg",
  9661. extra: 447 / 419,
  9662. bottom: 23.3 / 469
  9663. }
  9664. },
  9665. wolfFront: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(120, "lb"),
  9668. name: "Front (Wolf Side)",
  9669. image: {
  9670. source: "./media/characters/axel-lycan/wolf-front.svg",
  9671. extra: 485 / 456,
  9672. bottom: 19 / 504
  9673. }
  9674. },
  9675. wolfBack: {
  9676. height: math.unit(6, "feet"),
  9677. weight: math.unit(120, "lb"),
  9678. name: "Back (Wolf Side)",
  9679. image: {
  9680. source: "./media/characters/axel-lycan/wolf-back.svg",
  9681. extra: 475 / 438,
  9682. bottom: 39.2 / 514
  9683. }
  9684. },
  9685. },
  9686. [
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(1, "km"),
  9690. default: true
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9696. {
  9697. front: {
  9698. height: math.unit(5 + 9 / 12, "feet"),
  9699. weight: math.unit(175, "lb"),
  9700. name: "Front",
  9701. image: {
  9702. source: "./media/characters/vanrel-hyena/front.svg",
  9703. extra: 1086 / 1010,
  9704. bottom: 0.04
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(5 + 9 / 12, "feet"),
  9712. default: true
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(103, "lb"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/abbott-absol/front.svg",
  9725. extra: 2010 / 1842
  9726. }
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Megamicro",
  9732. height: math.unit(0.1, "mm")
  9733. },
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(1, "inch")
  9737. },
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(6, "feet"),
  9741. default: true
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(264, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/hector/front.svg",
  9754. extra: 2280 / 2130,
  9755. bottom: 0.07
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(12.25, "foot"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(160, "feet")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/sal/front.svg",
  9780. extra: 1846 / 1699,
  9781. bottom: 0.04
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Megamacro",
  9788. height: math.unit(10, "miles"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9795. {
  9796. front: {
  9797. height: math.unit(3, "meters"),
  9798. weight: math.unit(450, "kg"),
  9799. name: "front",
  9800. image: {
  9801. source: "./media/characters/ranger/front.svg",
  9802. extra: 2401 / 2243,
  9803. bottom: 0.05
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(3, "meters"),
  9811. default: true
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(14, "feet"),
  9820. weight: math.unit(800, "kg"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/theresa/front.svg",
  9824. extra: 3575 / 3346,
  9825. bottom: 0.03
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(14, "feet"),
  9833. default: true
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(3, "kg"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/ine/front.svg",
  9846. extra: 678 / 539,
  9847. bottom: 0.023
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(2.265, "feet"),
  9855. default: true
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(5, "feet"),
  9864. weight: math.unit(30, "kg"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/vial/front.svg",
  9868. extra: 1365 / 1277,
  9869. bottom: 0.04
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(5, "feet"),
  9877. default: true
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9883. {
  9884. side: {
  9885. height: math.unit(3.4, "meters"),
  9886. weight: math.unit(1000, "lb"),
  9887. name: "Side",
  9888. image: {
  9889. source: "./media/characters/rovoska/side.svg",
  9890. extra: 4403 / 1515
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Normal",
  9897. height: math.unit(3.4, "meters"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(8, "feet"),
  9907. weight: math.unit(315, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/gunner-rotthbauer/front.svg"
  9911. }
  9912. },
  9913. back: {
  9914. height: math.unit(8, "feet"),
  9915. weight: math.unit(315, "lb"),
  9916. name: "Back",
  9917. image: {
  9918. source: "./media/characters/gunner-rotthbauer/back.svg"
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(3.5, "inches")
  9926. },
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(8, "feet"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(250, "feet")
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(1, "AU")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(5 + 5 / 12, "feet"),
  9947. weight: math.unit(140, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/allatia/front.svg",
  9951. extra: 1227 / 1180,
  9952. bottom: 0.027
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(5 + 5 / 12, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(250, "feet"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(8, "miles")
  9969. }
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9974. {
  9975. front: {
  9976. height: math.unit(6, "feet"),
  9977. weight: math.unit(120, "lb"),
  9978. name: "Front",
  9979. image: {
  9980. source: "./media/characters/tene/front.svg",
  9981. extra: 1728 / 1578,
  9982. bottom: 0.022
  9983. }
  9984. },
  9985. stomping: {
  9986. height: math.unit(2.025, "meters"),
  9987. weight: math.unit(120, "lb"),
  9988. name: "Stomping",
  9989. image: {
  9990. source: "./media/characters/tene/stomping.svg",
  9991. extra: 938 / 873,
  9992. bottom: 0.01
  9993. }
  9994. },
  9995. sitting: {
  9996. height: math.unit(1, "meter"),
  9997. weight: math.unit(120, "lb"),
  9998. name: "Sitting",
  9999. image: {
  10000. source: "./media/characters/tene/sitting.svg",
  10001. extra: 437 / 415,
  10002. bottom: 0.1
  10003. }
  10004. },
  10005. feral: {
  10006. height: math.unit(3.9, "feet"),
  10007. weight: math.unit(250, "lb"),
  10008. name: "Feral",
  10009. image: {
  10010. source: "./media/characters/tene/feral.svg",
  10011. extra: 717 / 458,
  10012. bottom: 0.179
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(6, "feet")
  10020. },
  10021. {
  10022. name: "Macro",
  10023. height: math.unit(300, "feet"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Megamacro",
  10028. height: math.unit(5, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10034. {
  10035. side: {
  10036. height: math.unit(6, "feet"),
  10037. name: "Side",
  10038. image: {
  10039. source: "./media/characters/evander/side.svg",
  10040. extra: 877 / 477
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(0.83, "meters"),
  10048. default: true
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(12, "feet"),
  10057. weight: math.unit(1000, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10061. extra: 1762 / 1611
  10062. }
  10063. },
  10064. back: {
  10065. height: math.unit(12, "feet"),
  10066. weight: math.unit(1000, "lb"),
  10067. name: "Back",
  10068. image: {
  10069. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10070. extra: 1762 / 1611
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(12, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Kaiju",
  10082. height: math.unit(150, "feet")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/zero-alurus/front.svg"
  10095. }
  10096. },
  10097. back: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Back",
  10101. image: {
  10102. source: "./media/characters/zero-alurus/back.svg"
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(5 + 10 / 12, "feet")
  10110. },
  10111. {
  10112. name: "Macro",
  10113. height: math.unit(60, "feet"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Macro+",
  10118. height: math.unit(450, "feet")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(200, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/mega-shi/front.svg",
  10131. extra: 1279 / 1250,
  10132. bottom: 0.02
  10133. }
  10134. },
  10135. back: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(200, "lb"),
  10138. name: "Back",
  10139. image: {
  10140. source: "./media/characters/mega-shi/back.svg",
  10141. extra: 1279 / 1250,
  10142. bottom: 0.02
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(16 + 6 / 12, "feet")
  10150. },
  10151. {
  10152. name: "Third Dimension",
  10153. height: math.unit(40, "meters")
  10154. },
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(660, "feet"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(10, "miles")
  10163. },
  10164. {
  10165. name: "Planetary Launch",
  10166. height: math.unit(500, "miles")
  10167. },
  10168. {
  10169. name: "Interstellar",
  10170. height: math.unit(1e9, "miles")
  10171. },
  10172. {
  10173. name: "Leaving the Universe",
  10174. height: math.unit(1, "gigaparsec")
  10175. },
  10176. {
  10177. name: "Travelling Universes",
  10178. height: math.unit(30e15, "parsecs")
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(5 + 4/12, "feet"),
  10187. weight: math.unit(120, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/odyssey/front.svg",
  10191. extra: 1747/1571,
  10192. bottom: 47/1794
  10193. }
  10194. },
  10195. side: {
  10196. height: math.unit(5.1, "feet"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Side",
  10199. image: {
  10200. source: "./media/characters/odyssey/side.svg",
  10201. extra: 1847/1619,
  10202. bottom: 47/1894
  10203. }
  10204. },
  10205. lounging: {
  10206. height: math.unit(1.464, "feet"),
  10207. weight: math.unit(120, "lb"),
  10208. name: "Lounging",
  10209. image: {
  10210. source: "./media/characters/odyssey/lounging.svg",
  10211. extra: 1235/837,
  10212. bottom: 551/1786
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(5 + 4 / 12, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(1, "km")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(3000, "km")
  10228. },
  10229. {
  10230. name: "Gigamacro",
  10231. height: math.unit(1, "AU"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Omniversal",
  10236. height: math.unit(100e14, "lightyears")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(300, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/mekuto/front.svg",
  10249. extra: 921 / 832,
  10250. bottom: 0.03
  10251. }
  10252. },
  10253. hand: {
  10254. height: math.unit(6 / 10.24, "feet"),
  10255. name: "Hand",
  10256. image: {
  10257. source: "./media/characters/mekuto/hand.svg"
  10258. }
  10259. },
  10260. foot: {
  10261. height: math.unit(6 / 5.05, "feet"),
  10262. name: "Foot",
  10263. image: {
  10264. source: "./media/characters/mekuto/foot.svg"
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Minimicro",
  10271. height: math.unit(0.2, "inches")
  10272. },
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(1.5, "inches")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(5 + 11 / 12, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Minimacro",
  10284. height: math.unit(17 + 9 / 12, "feet")
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(177.5, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(152, "miles")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6.5, "inches"),
  10301. weight: math.unit(13, "oz"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/dafydd-tomos/front.svg",
  10305. extra: 2990 / 2603,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Micro",
  10313. height: math.unit(6.5, "inches"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/splinter/front.svg",
  10327. extra: 2990 / 2882,
  10328. bottom: 0.04
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(150, "lb"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/splinter/back.svg",
  10337. extra: 2990 / 2882,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(6, "feet")
  10346. },
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(230, "meters"),
  10350. default: true
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(4 + 10 / 12, "feet"),
  10359. weight: math.unit(480, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/snow-gabumon/front.svg",
  10363. extra: 1140 / 963,
  10364. bottom: 0.058
  10365. }
  10366. },
  10367. back: {
  10368. height: math.unit(4 + 10 / 12, "feet"),
  10369. weight: math.unit(480, "lb"),
  10370. name: "Back",
  10371. image: {
  10372. source: "./media/characters/snow-gabumon/back.svg",
  10373. extra: 1115 / 962,
  10374. bottom: 0.041
  10375. }
  10376. },
  10377. frontUndresed: {
  10378. height: math.unit(4 + 10 / 12, "feet"),
  10379. weight: math.unit(480, "lb"),
  10380. name: "Front (Undressed)",
  10381. image: {
  10382. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10383. extra: 1061 / 960,
  10384. bottom: 0.045
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Micro",
  10391. height: math.unit(1, "inch")
  10392. },
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(4 + 10 / 12, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(200, "feet")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(120, "miles")
  10405. },
  10406. {
  10407. name: "Gigamacro",
  10408. height: math.unit(9800, "miles")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(1.7, "meters"),
  10417. weight: math.unit(140, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/moody/front.svg",
  10421. extra: 3226 / 3007,
  10422. bottom: 0.087
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Micro",
  10429. height: math.unit(1, "mm")
  10430. },
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(1.7, "meters"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(80, "meters")
  10439. },
  10440. {
  10441. name: "Macro+",
  10442. height: math.unit(500, "meters")
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(150, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/zyas/front.svg",
  10455. extra: 1180 / 1120,
  10456. bottom: 0.045
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(10, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(500, "feet")
  10469. },
  10470. {
  10471. name: "Megamacro",
  10472. height: math.unit(5, "miles")
  10473. },
  10474. {
  10475. name: "Teramacro",
  10476. height: math.unit(150000, "miles")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/cuon/front.svg",
  10489. extra: 1390 / 1320,
  10490. bottom: 0.008
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(3, "inches")
  10498. },
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(18 + 9 / 12, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(360, "feet")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(360, "miles")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(2.4, "meters"),
  10519. weight: math.unit(70, "kg"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/nyanuxk/front.svg",
  10523. extra: 1172 / 1084,
  10524. bottom: 0.065
  10525. }
  10526. },
  10527. side: {
  10528. height: math.unit(2.4, "meters"),
  10529. weight: math.unit(70, "kg"),
  10530. name: "Side",
  10531. image: {
  10532. source: "./media/characters/nyanuxk/side.svg",
  10533. extra: 1190 / 1132,
  10534. bottom: 0.007
  10535. }
  10536. },
  10537. back: {
  10538. height: math.unit(2.4, "meters"),
  10539. weight: math.unit(70, "kg"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/nyanuxk/back.svg",
  10543. extra: 1200 / 1141,
  10544. bottom: 0.015
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(0.52, "meters"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/nyanuxk/foot.svg"
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(2, "cm")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(2.4, "meters"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Smaller Macro",
  10567. height: math.unit(120, "meters")
  10568. },
  10569. {
  10570. name: "Bigger Macro",
  10571. height: math.unit(1.2, "km")
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(15, "kilometers")
  10576. },
  10577. {
  10578. name: "Gigamacro",
  10579. height: math.unit(2000, "km")
  10580. },
  10581. {
  10582. name: "Teramacro",
  10583. height: math.unit(500000, "km")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10589. {
  10590. side: {
  10591. height: math.unit(6, "feet"),
  10592. name: "Side",
  10593. image: {
  10594. source: "./media/characters/ailbhe/side.svg",
  10595. extra: 757 / 464,
  10596. bottom: 0.041
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(1.07, "meters"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(120, "kg"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/zevulfius/front.svg",
  10617. extra: 965 / 903
  10618. }
  10619. },
  10620. side: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(120, "kg"),
  10623. name: "Side",
  10624. image: {
  10625. source: "./media/characters/zevulfius/side.svg",
  10626. extra: 939 / 900
  10627. }
  10628. },
  10629. back: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(120, "kg"),
  10632. name: "Back",
  10633. image: {
  10634. source: "./media/characters/zevulfius/back.svg",
  10635. extra: 918 / 854,
  10636. bottom: 0.005
  10637. }
  10638. },
  10639. foot: {
  10640. height: math.unit(6 / 3.72, "feet"),
  10641. name: "Foot",
  10642. image: {
  10643. source: "./media/characters/zevulfius/foot.svg"
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(750, "meters")
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(20, "km"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(2000, "km")
  10660. },
  10661. {
  10662. name: "Teramacro",
  10663. height: math.unit(250000, "km")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(100, "feet"),
  10672. weight: math.unit(350, "kg"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/rikes/front.svg",
  10676. extra: 1565 / 1483,
  10677. bottom: 0.017
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(100, "feet"),
  10685. default: true
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(8, "feet"),
  10694. weight: math.unit(356, "lb"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/adam-silver-mane/front.svg",
  10698. extra: 1036/937,
  10699. bottom: 63/1099
  10700. }
  10701. },
  10702. side: {
  10703. height: math.unit(8, "feet"),
  10704. weight: math.unit(356, "lb"),
  10705. name: "Side",
  10706. image: {
  10707. source: "./media/characters/adam-silver-mane/side.svg",
  10708. extra: 997/901,
  10709. bottom: 59/1056
  10710. }
  10711. },
  10712. frontNsfw: {
  10713. height: math.unit(8, "feet"),
  10714. weight: math.unit(356, "lb"),
  10715. name: "Front (NSFW)",
  10716. image: {
  10717. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10718. extra: 1036/937,
  10719. bottom: 63/1099
  10720. }
  10721. },
  10722. sideNsfw: {
  10723. height: math.unit(8, "feet"),
  10724. weight: math.unit(356, "lb"),
  10725. name: "Side (NSFW)",
  10726. image: {
  10727. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10728. extra: 997/901,
  10729. bottom: 59/1056
  10730. }
  10731. },
  10732. dick: {
  10733. height: math.unit(2.1, "feet"),
  10734. name: "Dick",
  10735. image: {
  10736. source: "./media/characters/adam-silver-mane/dick.svg"
  10737. }
  10738. },
  10739. taur: {
  10740. height: math.unit(16, "feet"),
  10741. weight: math.unit(1500, "kg"),
  10742. name: "Taur",
  10743. image: {
  10744. source: "./media/characters/adam-silver-mane/taur.svg",
  10745. extra: 1713 / 1571,
  10746. bottom: 0.01
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(8, "feet")
  10754. },
  10755. {
  10756. name: "Minimacro",
  10757. height: math.unit(80, "feet")
  10758. },
  10759. {
  10760. name: "MDA",
  10761. height: math.unit(80, "meters")
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(800, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Megamacro",
  10770. height: math.unit(8000, "feet")
  10771. },
  10772. {
  10773. name: "Gigamacro",
  10774. height: math.unit(800, "miles")
  10775. },
  10776. {
  10777. name: "Teramacro",
  10778. height: math.unit(80000, "miles")
  10779. },
  10780. {
  10781. name: "Celestial",
  10782. height: math.unit(8e6, "miles")
  10783. },
  10784. {
  10785. name: "Star Dragon",
  10786. height: math.unit(800000, "parsecs")
  10787. },
  10788. {
  10789. name: "Godly",
  10790. height: math.unit(800, "teraparsecs")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(150, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/ky'owin/front.svg",
  10803. extra: 3888 / 3068,
  10804. bottom: 0.015
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(6 + 8 / 12, "feet")
  10812. },
  10813. {
  10814. name: "Large",
  10815. height: math.unit(68, "feet")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(132, "feet")
  10820. },
  10821. {
  10822. name: "Macro+",
  10823. height: math.unit(340, "feet")
  10824. },
  10825. {
  10826. name: "Macro++",
  10827. height: math.unit(680, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(1, "mile")
  10833. },
  10834. {
  10835. name: "Megamacro+",
  10836. height: math.unit(10, "miles")
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(4, "feet"),
  10845. weight: math.unit(50, "lb"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/mal/front.svg",
  10849. extra: 785 / 724,
  10850. bottom: 0.07
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Micro",
  10857. height: math.unit(4, "inches")
  10858. },
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(4, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(200, "feet")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/jordan-deware/front.svg",
  10879. extra: 1191 / 1012
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Nano",
  10886. height: math.unit(0.01, "mm")
  10887. },
  10888. {
  10889. name: "Minimicro",
  10890. height: math.unit(1, "mm")
  10891. },
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(0.5, "inches")
  10895. },
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(4, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Minimacro",
  10903. height: math.unit(40, "meters")
  10904. },
  10905. {
  10906. name: "Small Macro",
  10907. height: math.unit(400, "meters")
  10908. },
  10909. {
  10910. name: "Macro",
  10911. height: math.unit(4, "miles")
  10912. },
  10913. {
  10914. name: "Megamacro",
  10915. height: math.unit(40, "miles")
  10916. },
  10917. {
  10918. name: "Megamacro+",
  10919. height: math.unit(400, "miles")
  10920. },
  10921. {
  10922. name: "Gigamacro",
  10923. height: math.unit(400000, "miles")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10929. {
  10930. side: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Side",
  10934. image: {
  10935. source: "./media/characters/kimiko/side.svg",
  10936. extra: 600 / 358
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(15, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(220, "feet")
  10949. },
  10950. {
  10951. name: "Macro+",
  10952. height: math.unit(1450, "feet")
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(11500, "feet")
  10957. },
  10958. {
  10959. name: "Gigamacro",
  10960. height: math.unit(9500, "miles")
  10961. },
  10962. {
  10963. name: "Teramacro",
  10964. height: math.unit(2208005005, "miles")
  10965. },
  10966. {
  10967. name: "Examacro",
  10968. height: math.unit(2750, "parsecs")
  10969. },
  10970. {
  10971. name: "Zettamacro",
  10972. height: math.unit(101500, "parsecs")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(70, "kg"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/andrew-sleepy/front.svg"
  10985. }
  10986. },
  10987. side: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(70, "kg"),
  10990. name: "Side",
  10991. image: {
  10992. source: "./media/characters/andrew-sleepy/side.svg"
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(1, "mm"),
  11000. default: true
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/judio/front.svg",
  11013. extra: 1258 / 1110
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(5 + 6 / 12, "feet")
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(1000, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(10, "miles")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(68, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/nomaxice/front.svg",
  11042. extra: 1498 / 1073,
  11043. bottom: 0.075
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(1.1, "feet"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/nomaxice/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(8, "cm")
  11058. },
  11059. {
  11060. name: "Norm",
  11061. height: math.unit(1.82, "m")
  11062. },
  11063. {
  11064. name: "Norm+",
  11065. height: math.unit(8.8, "feet")
  11066. },
  11067. {
  11068. name: "Big",
  11069. height: math.unit(8, "meters"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(18, "meters")
  11075. },
  11076. {
  11077. name: "Macro+",
  11078. height: math.unit(88, "meters")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(12, "feet"),
  11087. weight: math.unit(1.5, "tons"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/dydros/front.svg",
  11091. extra: 863 / 800,
  11092. bottom: 0.015
  11093. }
  11094. },
  11095. back: {
  11096. height: math.unit(12, "feet"),
  11097. weight: math.unit(1.5, "tons"),
  11098. name: "Back",
  11099. image: {
  11100. source: "./media/characters/dydros/back.svg",
  11101. extra: 900 / 843,
  11102. bottom: 0.005
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(12, "feet"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(100, "kg"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/riggi/front.svg",
  11123. extra: 5787 / 5303
  11124. }
  11125. },
  11126. hyper: {
  11127. height: math.unit(6 * 5 / 3, "feet"),
  11128. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11129. name: "Hyper",
  11130. image: {
  11131. source: "./media/characters/riggi/hyper.svg",
  11132. extra: 3595 / 3485
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Small Macro",
  11139. height: math.unit(50, "feet")
  11140. },
  11141. {
  11142. name: "Default",
  11143. height: math.unit(200, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Loom",
  11148. height: math.unit(10000, "feet")
  11149. },
  11150. {
  11151. name: "Cruising Altitude",
  11152. height: math.unit(30000, "feet")
  11153. },
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(100, "miles")
  11157. },
  11158. {
  11159. name: "Continent Sized",
  11160. height: math.unit(2800, "miles")
  11161. },
  11162. {
  11163. name: "Earth Sized",
  11164. height: math.unit(8000, "miles")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(250, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/alexi/front.svg",
  11177. extra: 3483 / 3291,
  11178. bottom: 0.04
  11179. }
  11180. },
  11181. back: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(250, "lb"),
  11184. name: "Back",
  11185. image: {
  11186. source: "./media/characters/alexi/back.svg",
  11187. extra: 3533 / 3356,
  11188. bottom: 0.021
  11189. }
  11190. },
  11191. frontTransforming: {
  11192. height: math.unit(8.58, "feet"),
  11193. weight: math.unit(1300, "lb"),
  11194. name: "Transforming",
  11195. image: {
  11196. source: "./media/characters/alexi/front-transforming.svg",
  11197. extra: 437 / 409,
  11198. bottom: 19 / 458.66
  11199. }
  11200. },
  11201. frontTransformed: {
  11202. height: math.unit(12.5, "feet"),
  11203. weight: math.unit(4000, "lb"),
  11204. name: "Transformed",
  11205. image: {
  11206. source: "./media/characters/alexi/front-transformed.svg",
  11207. extra: 639 / 614,
  11208. bottom: 30.55 / 671
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(14, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Minimacro",
  11220. height: math.unit(30, "meters")
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(500, "meters")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(9000, "km")
  11229. },
  11230. {
  11231. name: "Teramacro",
  11232. height: math.unit(384000, "km")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(150, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/kayroo/front.svg",
  11245. extra: 1153 / 1038,
  11246. bottom: 0.06
  11247. }
  11248. },
  11249. foot: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Foot",
  11253. image: {
  11254. source: "./media/characters/kayroo/foot.svg"
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(8, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Minimacro",
  11266. height: math.unit(250, "feet")
  11267. },
  11268. {
  11269. name: "Macro",
  11270. height: math.unit(2800, "feet")
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(5200, "feet")
  11275. },
  11276. {
  11277. name: "Gigamacro",
  11278. height: math.unit(27000, "feet")
  11279. },
  11280. {
  11281. name: "Omega",
  11282. height: math.unit(45000, "feet")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(18, "feet"),
  11291. weight: math.unit(5800, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/rhys/front.svg",
  11295. extra: 3386 / 3090,
  11296. bottom: 0.07
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(18, "feet"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Working Size",
  11308. height: math.unit(200, "feet")
  11309. },
  11310. {
  11311. name: "Demolition Size",
  11312. height: math.unit(2000, "feet")
  11313. },
  11314. {
  11315. name: "Maximum Licensed Size",
  11316. height: math.unit(5, "miles")
  11317. },
  11318. {
  11319. name: "Maximum Observed Size",
  11320. height: math.unit(10, "yottameters")
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(250, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/toto/front.svg",
  11333. extra: 527 / 479,
  11334. bottom: 0.05
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Micro",
  11341. height: math.unit(3, "feet")
  11342. },
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(10, "feet")
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(150, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(1200, "feet")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "King", species: ["lion"], tags: ["anthro"] },
  11360. {
  11361. back: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/king/back.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(2, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet")
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(200, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(50, "miles")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(11, "feet"),
  11395. weight: math.unit(1400, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/cordite/front.svg",
  11399. extra: 1919/1827,
  11400. bottom: 40/1959
  11401. }
  11402. },
  11403. side: {
  11404. height: math.unit(11, "feet"),
  11405. weight: math.unit(1400, "lb"),
  11406. name: "Side",
  11407. image: {
  11408. source: "./media/characters/cordite/side.svg",
  11409. extra: 1908/1793,
  11410. bottom: 38/1946
  11411. }
  11412. },
  11413. back: {
  11414. height: math.unit(11, "feet"),
  11415. weight: math.unit(1400, "lb"),
  11416. name: "Back",
  11417. image: {
  11418. source: "./media/characters/cordite/back.svg",
  11419. extra: 1938/1837,
  11420. bottom: 10/1948
  11421. }
  11422. },
  11423. feral: {
  11424. height: math.unit(2, "feet"),
  11425. weight: math.unit(90, "lb"),
  11426. name: "Feral",
  11427. image: {
  11428. source: "./media/characters/cordite/feral.svg",
  11429. extra: 1260 / 755,
  11430. bottom: 0.05
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(11, "feet"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/pianostrong/front.svg",
  11451. extra: 6577 / 6254,
  11452. bottom: 0.02
  11453. }
  11454. },
  11455. side: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Side",
  11459. image: {
  11460. source: "./media/characters/pianostrong/side.svg",
  11461. extra: 6106 / 5730
  11462. }
  11463. },
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/pianostrong/back.svg",
  11470. extra: 6085 / 5733,
  11471. bottom: 0.01
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(100, "feet")
  11479. },
  11480. {
  11481. name: "Macro+",
  11482. height: math.unit(300, "feet"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro++",
  11487. height: math.unit(1000, "feet")
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/kona/front.svg",
  11500. extra: 2960 / 2629,
  11501. bottom: 0.005
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(11 + 8 / 12, "feet")
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(850, "feet"),
  11513. default: true
  11514. },
  11515. {
  11516. name: "Macro+",
  11517. height: math.unit(1.5, "km"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(80, "miles")
  11523. },
  11524. {
  11525. name: "Gigamacro",
  11526. height: math.unit(3500, "miles")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. side: {
  11534. height: math.unit(1.9, "meters"),
  11535. weight: math.unit(326, "kg"),
  11536. name: "Side",
  11537. image: {
  11538. source: "./media/characters/levi/side.svg",
  11539. extra: 1704 / 1334,
  11540. bottom: 0.02
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(1.9, "meters"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(20, "meters")
  11553. },
  11554. {
  11555. name: "Macro+",
  11556. height: math.unit(200, "meters")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(2, "km")
  11561. },
  11562. {
  11563. name: "Megamacro+",
  11564. height: math.unit(20, "km")
  11565. },
  11566. {
  11567. name: "Gigamacro",
  11568. height: math.unit(2500, "km")
  11569. },
  11570. {
  11571. name: "Gigamacro+",
  11572. height: math.unit(120000, "km")
  11573. },
  11574. {
  11575. name: "Teramacro",
  11576. height: math.unit(7.77e6, "km")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6 + 4/12, "feet"),
  11585. weight: math.unit(190, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/bmc/front.svg",
  11589. extra: 1626/1472,
  11590. bottom: 79/1705
  11591. }
  11592. },
  11593. back: {
  11594. height: math.unit(6 + 4/12, "feet"),
  11595. weight: math.unit(190, "lb"),
  11596. name: "Back",
  11597. image: {
  11598. source: "./media/characters/bmc/back.svg",
  11599. extra: 1640/1479,
  11600. bottom: 45/1685
  11601. }
  11602. },
  11603. frontArmor: {
  11604. height: math.unit(6 + 4/12, "feet"),
  11605. weight: math.unit(190, "lb"),
  11606. name: "Front-armor",
  11607. image: {
  11608. source: "./media/characters/bmc/front-armor.svg",
  11609. extra: 1538/1468,
  11610. bottom: 79/1617
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Human-sized",
  11617. height: math.unit(6 + 4 / 12, "feet")
  11618. },
  11619. {
  11620. name: "Interactive Size",
  11621. height: math.unit(25, "feet")
  11622. },
  11623. {
  11624. name: "Small",
  11625. height: math.unit(250, "feet")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(1250, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Good Day",
  11634. height: math.unit(88, "miles")
  11635. },
  11636. {
  11637. name: "Largest Measured Size",
  11638. height: math.unit(105.960, "galaxies")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(20, "feet"),
  11647. weight: math.unit(2016, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/sven-the-kaiju/front.svg",
  11651. extra: 1277/1250,
  11652. bottom: 35/1312
  11653. }
  11654. },
  11655. mouth: {
  11656. height: math.unit(1.85, "feet"),
  11657. name: "Mouth",
  11658. image: {
  11659. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Fairy",
  11666. height: math.unit(6, "inches")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(20, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Rampage",
  11675. height: math.unit(200, "feet")
  11676. },
  11677. {
  11678. name: "Archfey Forest Guardian",
  11679. height: math.unit(1, "mile")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(4, "meters"),
  11688. weight: math.unit(2, "tons"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/marik/front.svg",
  11692. extra: 1057 / 1003,
  11693. bottom: 0.08
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(4, "meters"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(20, "meters")
  11706. },
  11707. {
  11708. name: "Megamacro",
  11709. height: math.unit(50, "km")
  11710. },
  11711. {
  11712. name: "Gigamacro",
  11713. height: math.unit(100, "km")
  11714. },
  11715. {
  11716. name: "Alpha Macro",
  11717. height: math.unit(7.88e7, "yottameters")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(110, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/mel/front.svg",
  11730. extra: 736 / 617,
  11731. bottom: 0.017
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Pico",
  11738. height: math.unit(3, "pm")
  11739. },
  11740. {
  11741. name: "Nano",
  11742. height: math.unit(3, "nm")
  11743. },
  11744. {
  11745. name: "Micro",
  11746. height: math.unit(0.3, "mm"),
  11747. default: true
  11748. },
  11749. {
  11750. name: "Micro+",
  11751. height: math.unit(3, "mm")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(5 + 10.5 / 12, "feet")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11761. {
  11762. kaiju: {
  11763. height: math.unit(1.75, "meters"),
  11764. weight: math.unit(55, "kg"),
  11765. name: "Kaiju",
  11766. image: {
  11767. source: "./media/characters/lykonous/kaiju.svg",
  11768. extra: 1055 / 946,
  11769. bottom: 0.135
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Normal",
  11776. height: math.unit(2.5, "meters"),
  11777. default: true
  11778. },
  11779. {
  11780. name: "Kaiju Dragon",
  11781. height: math.unit(60, "meters")
  11782. },
  11783. {
  11784. name: "Mega Kaiju",
  11785. height: math.unit(120, "km")
  11786. },
  11787. {
  11788. name: "Giga Kaiju",
  11789. height: math.unit(200, "megameters")
  11790. },
  11791. {
  11792. name: "Terra Kaiju",
  11793. height: math.unit(400, "gigameters")
  11794. },
  11795. {
  11796. name: "Kaiju Dragon God",
  11797. height: math.unit(13000, "exaparsecs")
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(6, "feet"),
  11806. weight: math.unit(150, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/blü/front.svg",
  11810. extra: 1883 / 1564,
  11811. bottom: 0.031
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(13, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Big Boi",
  11823. height: math.unit(150, "meters")
  11824. },
  11825. {
  11826. name: "Mini Stomper",
  11827. height: math.unit(300, "meters")
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(1000, "meters")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(11000, "meters")
  11836. },
  11837. {
  11838. name: "Gigamacro",
  11839. height: math.unit(11000, "km")
  11840. },
  11841. {
  11842. name: "Teramacro",
  11843. height: math.unit(420000, "km")
  11844. },
  11845. {
  11846. name: "Examacro",
  11847. height: math.unit(120, "parsecs")
  11848. },
  11849. {
  11850. name: "God Tho",
  11851. height: math.unit(98000000000, "parsecs")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11857. {
  11858. taurFront: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(200, "lb"),
  11861. name: "Taur (Front)",
  11862. image: {
  11863. source: "./media/characters/scales/taur-front.svg",
  11864. extra: 1,
  11865. bottom: 0.05
  11866. }
  11867. },
  11868. taurBack: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(200, "lb"),
  11871. name: "Taur (Back)",
  11872. image: {
  11873. source: "./media/characters/scales/taur-back.svg",
  11874. extra: 1,
  11875. bottom: 0.08
  11876. }
  11877. },
  11878. anthro: {
  11879. height: math.unit(6 * 7 / 12, "feet"),
  11880. weight: math.unit(100, "lb"),
  11881. name: "Anthro",
  11882. image: {
  11883. source: "./media/characters/scales/anthro.svg",
  11884. extra: 1,
  11885. bottom: 0.06
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(12, "feet"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/koragos/front.svg",
  11906. extra: 841 / 794,
  11907. bottom: 0.035
  11908. }
  11909. },
  11910. back: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Back",
  11914. image: {
  11915. source: "./media/characters/koragos/back.svg",
  11916. extra: 841 / 810,
  11917. bottom: 0.022
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(6 + 11 / 12, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(490, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(10, "miles")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(50, "miles")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(250, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/xylrem/front.svg",
  11950. extra: 3323 / 3050,
  11951. bottom: 0.065
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(4, "feet")
  11959. },
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(16, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(2720, "feet")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(25000, "miles")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(8, "feet"),
  11980. weight: math.unit(250, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/ikideru/front.svg",
  11984. extra: 930 / 870,
  11985. bottom: 0.087
  11986. }
  11987. },
  11988. back: {
  11989. height: math.unit(8, "feet"),
  11990. weight: math.unit(250, "kg"),
  11991. name: "Back",
  11992. image: {
  11993. source: "./media/characters/ikideru/back.svg",
  11994. extra: 919 / 852,
  11995. bottom: 0.055
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Rare",
  12002. height: math.unit(8, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Playful Loom",
  12007. height: math.unit(80, "feet")
  12008. },
  12009. {
  12010. name: "City Leaner",
  12011. height: math.unit(230, "feet")
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(2500, "feet")
  12016. },
  12017. {
  12018. name: "Gigamacro",
  12019. height: math.unit(26400, "feet")
  12020. },
  12021. {
  12022. name: "Tectonic Shifter",
  12023. height: math.unit(1.7, "megameters")
  12024. },
  12025. {
  12026. name: "Planet Carer",
  12027. height: math.unit(21, "megameters")
  12028. },
  12029. {
  12030. name: "God",
  12031. height: math.unit(11157.22, "parsecs")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(120, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/neo/front.svg"
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Micro",
  12050. height: math.unit(2, "inches"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Human Size",
  12055. height: math.unit(5 + 8 / 12, "feet")
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12061. {
  12062. front: {
  12063. height: math.unit(13 + 10 / 12, "feet"),
  12064. weight: math.unit(5320, "lb"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/chauncey-chantz/front.svg",
  12068. extra: 1587 / 1435,
  12069. bottom: 0.02
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Normal",
  12076. height: math.unit(13 + 10 / 12, "feet"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(45, "feet")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(250, "miles")
  12086. },
  12087. {
  12088. name: "Planetary",
  12089. height: math.unit(10000, "miles")
  12090. },
  12091. {
  12092. name: "Galactic",
  12093. height: math.unit(40000, "parsecs")
  12094. },
  12095. {
  12096. name: "Universal",
  12097. height: math.unit(1, "yottameter")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/epifox/front.svg",
  12110. extra: 1,
  12111. bottom: 0.075
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Micro",
  12118. height: math.unit(6, "inches")
  12119. },
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(12, "feet"),
  12123. default: true
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(3810, "feet")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(500, "miles")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(1.8796, "m"),
  12140. weight: math.unit(230, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/colin-t/front.svg",
  12144. extra: 1272 / 1193,
  12145. bottom: 0.07
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(0.571, "meters")
  12153. },
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(1.8796, "meters"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Tall",
  12161. height: math.unit(4, "meters")
  12162. },
  12163. {
  12164. name: "Macro",
  12165. height: math.unit(67.241, "meters")
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(371.856, "meters")
  12170. },
  12171. {
  12172. name: "Planetary",
  12173. height: math.unit(12631.5689, "km")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(1.85, "meters"),
  12182. weight: math.unit(80, "kg"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/matvei/front.svg",
  12186. extra: 614 / 594,
  12187. bottom: 0.01
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(1.85, "meters"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(5 + 9 / 12, "feet"),
  12204. weight: math.unit(70, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/quincy/front.svg",
  12208. extra: 3041 / 2751
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(5 + 9 / 12, "feet"),
  12213. weight: math.unit(70, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/quincy/back.svg",
  12217. extra: 3041 / 2751
  12218. }
  12219. },
  12220. flying: {
  12221. height: math.unit(5 + 4 / 12, "feet"),
  12222. weight: math.unit(70, "lb"),
  12223. name: "Flying",
  12224. image: {
  12225. source: "./media/characters/quincy/flying.svg",
  12226. extra: 1044 / 930
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(3, "cm")
  12234. },
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(5 + 9 / 12, "feet")
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(200, "meters"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(1000, "meters")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(3 + 11/12, "feet"),
  12255. weight: math.unit(50, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/vanrel/front.svg",
  12259. extra: 1104/949,
  12260. bottom: 52/1156
  12261. }
  12262. },
  12263. back: {
  12264. height: math.unit(3 + 11/12, "feet"),
  12265. weight: math.unit(50, "lb"),
  12266. name: "Back",
  12267. image: {
  12268. source: "./media/characters/vanrel/back.svg",
  12269. extra: 1119/976,
  12270. bottom: 37/1156
  12271. }
  12272. },
  12273. tome: {
  12274. height: math.unit(1.35, "feet"),
  12275. weight: math.unit(10, "lb"),
  12276. name: "Vanrel's Tome",
  12277. rename: true,
  12278. image: {
  12279. source: "./media/characters/vanrel/tome.svg"
  12280. }
  12281. },
  12282. beans: {
  12283. height: math.unit(0.89, "feet"),
  12284. name: "Beans",
  12285. image: {
  12286. source: "./media/characters/vanrel/beans.svg"
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(3 + 11/12, "feet"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(7 + 5 / 12, "feet"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/kuiper-vanrel/front.svg",
  12306. extra: 1219/1169,
  12307. bottom: 69/1288
  12308. }
  12309. },
  12310. back: {
  12311. height: math.unit(7 + 5 / 12, "feet"),
  12312. name: "Back",
  12313. image: {
  12314. source: "./media/characters/kuiper-vanrel/back.svg",
  12315. extra: 1236/1193,
  12316. bottom: 27/1263
  12317. }
  12318. },
  12319. foot: {
  12320. height: math.unit(0.55, "meters"),
  12321. name: "Foot",
  12322. image: {
  12323. source: "./media/characters/kuiper-vanrel/foot.svg",
  12324. }
  12325. },
  12326. battle: {
  12327. height: math.unit(6.824, "feet"),
  12328. name: "Battle",
  12329. image: {
  12330. source: "./media/characters/kuiper-vanrel/battle.svg",
  12331. extra: 1466 / 1327,
  12332. bottom: 29 / 1492.5
  12333. }
  12334. },
  12335. meerkui: {
  12336. height: math.unit(18, "inches"),
  12337. name: "Meerkui",
  12338. image: {
  12339. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12340. extra: 1354/1289,
  12341. bottom: 69/1423
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(7 + 5 / 12, "feet"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(8 + 5 / 12, "feet"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/keset-vanrel/front.svg",
  12361. extra: 1231/1148,
  12362. bottom: 82/1313
  12363. }
  12364. },
  12365. back: {
  12366. height: math.unit(8 + 5 / 12, "feet"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/keset-vanrel/back.svg",
  12370. extra: 1240/1174,
  12371. bottom: 33/1273
  12372. }
  12373. },
  12374. hand: {
  12375. height: math.unit(0.6, "meters"),
  12376. name: "Hand",
  12377. image: {
  12378. source: "./media/characters/keset-vanrel/hand.svg"
  12379. }
  12380. },
  12381. foot: {
  12382. height: math.unit(0.94978, "meters"),
  12383. name: "Foot",
  12384. image: {
  12385. source: "./media/characters/keset-vanrel/foot.svg"
  12386. }
  12387. },
  12388. battle: {
  12389. height: math.unit(7.408, "feet"),
  12390. name: "Battle",
  12391. image: {
  12392. source: "./media/characters/keset-vanrel/battle.svg",
  12393. extra: 1890 / 1386,
  12394. bottom: 73.28 / 1970
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(8 + 5 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/neos/front.svg",
  12415. extra: 1696 / 992,
  12416. bottom: 0.14
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(54, "cm"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(100, "m")
  12429. },
  12430. {
  12431. name: "Megamacro",
  12432. height: math.unit(10, "km")
  12433. },
  12434. {
  12435. name: "Megamacro+",
  12436. height: math.unit(100, "km")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(100, "Mm")
  12441. },
  12442. {
  12443. name: "Teramacro",
  12444. height: math.unit(100, "Gm")
  12445. },
  12446. {
  12447. name: "Examacro",
  12448. height: math.unit(100, "Em")
  12449. },
  12450. {
  12451. name: "Godly",
  12452. height: math.unit(10000, "Ym")
  12453. },
  12454. {
  12455. name: "Beyond Godly",
  12456. height: math.unit(25, "multiverses")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12462. {
  12463. feminine: {
  12464. height: math.unit(5, "feet"),
  12465. weight: math.unit(100, "lb"),
  12466. name: "Feminine",
  12467. image: {
  12468. source: "./media/characters/sammy-mouse/feminine.svg",
  12469. extra: 2526 / 2425,
  12470. bottom: 0.123
  12471. }
  12472. },
  12473. masculine: {
  12474. height: math.unit(5, "feet"),
  12475. weight: math.unit(100, "lb"),
  12476. name: "Masculine",
  12477. image: {
  12478. source: "./media/characters/sammy-mouse/masculine.svg",
  12479. extra: 2526 / 2425,
  12480. bottom: 0.123
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Micro",
  12487. height: math.unit(5, "inches")
  12488. },
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(5, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(60, "feet")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(4, "feet"),
  12505. weight: math.unit(50, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/kole/front.svg",
  12509. extra: 1423 / 1303,
  12510. bottom: 0.025
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(4, "feet"),
  12515. weight: math.unit(50, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/kole/back.svg",
  12519. extra: 1426 / 1280,
  12520. bottom: 0.02
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(4, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(2.5, "feet"),
  12537. weight: math.unit(32, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/rufran/front.svg",
  12541. extra: 1313/885,
  12542. bottom: 94/1407
  12543. }
  12544. },
  12545. side: {
  12546. height: math.unit(2.5, "feet"),
  12547. weight: math.unit(32, "lb"),
  12548. name: "Side",
  12549. image: {
  12550. source: "./media/characters/rufran/side.svg",
  12551. extra: 1109/852,
  12552. bottom: 118/1227
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(2.5, "feet"),
  12557. weight: math.unit(32, "lb"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/rufran/back.svg",
  12561. extra: 1280/878,
  12562. bottom: 131/1411
  12563. }
  12564. },
  12565. mouth: {
  12566. height: math.unit(1.13, "feet"),
  12567. name: "Mouth",
  12568. image: {
  12569. source: "./media/characters/rufran/mouth.svg"
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(1.33, "feet"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/rufran/foot.svg"
  12577. }
  12578. },
  12579. koboldFront: {
  12580. height: math.unit(2 + 6 / 12, "feet"),
  12581. weight: math.unit(20, "lb"),
  12582. name: "Front (Kobold)",
  12583. image: {
  12584. source: "./media/characters/rufran/kobold-front.svg",
  12585. extra: 2041 / 1839,
  12586. bottom: 0.055
  12587. }
  12588. },
  12589. koboldBack: {
  12590. height: math.unit(2 + 6 / 12, "feet"),
  12591. weight: math.unit(20, "lb"),
  12592. name: "Back (Kobold)",
  12593. image: {
  12594. source: "./media/characters/rufran/kobold-back.svg",
  12595. extra: 2054 / 1839,
  12596. bottom: 0.01
  12597. }
  12598. },
  12599. koboldHand: {
  12600. height: math.unit(0.2166, "meters"),
  12601. name: "Hand (Kobold)",
  12602. image: {
  12603. source: "./media/characters/rufran/kobold-hand.svg"
  12604. }
  12605. },
  12606. koboldFoot: {
  12607. height: math.unit(0.185, "meters"),
  12608. name: "Foot (Kobold)",
  12609. image: {
  12610. source: "./media/characters/rufran/kobold-foot.svg"
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Micro",
  12617. height: math.unit(1, "inch")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(2 + 6 / 12, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Big",
  12626. height: math.unit(60, "feet")
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(325, "feet")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(0.3, "meters"),
  12639. weight: math.unit(3.5, "kg"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/chip/front.svg",
  12643. extra: 748 / 674
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(1, "inch"),
  12651. default: true
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12657. {
  12658. side: {
  12659. height: math.unit(2.3, "meters"),
  12660. weight: math.unit(3500, "lb"),
  12661. name: "Side",
  12662. image: {
  12663. source: "./media/characters/torvid/side.svg",
  12664. extra: 1972 / 722,
  12665. bottom: 0.035
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(2.3, "meters"),
  12673. default: true
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(2, "meters"),
  12682. weight: math.unit(150.5, "kg"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/susan/front.svg",
  12686. extra: 693 / 635,
  12687. bottom: 0.05
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(505, "miles"),
  12695. default: true
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/raindrops/front.svg",
  12708. extra: 2655 / 2461,
  12709. bottom: 49 / 2705
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(6, "feet"),
  12714. weight: math.unit(150, "lb"),
  12715. name: "Back",
  12716. image: {
  12717. source: "./media/characters/raindrops/back.svg",
  12718. extra: 2574 / 2400,
  12719. bottom: 65 / 2634
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Micro",
  12726. height: math.unit(6, "inches")
  12727. },
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 2 / 12, "feet")
  12731. },
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(131, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(15, "miles")
  12740. },
  12741. {
  12742. name: "Gigamacro",
  12743. height: math.unit(4000, "miles")
  12744. },
  12745. {
  12746. name: "Teramacro",
  12747. height: math.unit(315000, "miles")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(2.794, "meters"),
  12756. weight: math.unit(325, "kg"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/tezwa/front.svg",
  12760. extra: 2083 / 1906,
  12761. bottom: 0.031
  12762. }
  12763. },
  12764. foot: {
  12765. height: math.unit(0.687, "meters"),
  12766. name: "Foot",
  12767. image: {
  12768. source: "./media/characters/tezwa/foot.svg"
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(9 + 2 / 12, "feet"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(58, "feet"),
  12785. weight: math.unit(89000, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/typhus/front.svg",
  12789. extra: 816 / 800,
  12790. bottom: 0.065
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(58, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(12, "feet"),
  12807. weight: math.unit(6, "tonnes"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/lyra-von-wulf/front.svg",
  12811. extra: 1,
  12812. bottom: 0.10
  12813. }
  12814. },
  12815. frontMecha: {
  12816. height: math.unit(12, "feet"),
  12817. weight: math.unit(12, "tonnes"),
  12818. name: "Front (Mecha)",
  12819. image: {
  12820. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12821. extra: 1,
  12822. bottom: 0.042
  12823. }
  12824. },
  12825. maw: {
  12826. height: math.unit(2.2, "feet"),
  12827. name: "Maw",
  12828. image: {
  12829. source: "./media/characters/lyra-von-wulf/maw.svg"
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(12, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Classic",
  12841. height: math.unit(50, "feet")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(500, "feet")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(1, "mile")
  12850. },
  12851. {
  12852. name: "Gigamacro",
  12853. height: math.unit(400, "miles")
  12854. },
  12855. {
  12856. name: "Teramacro",
  12857. height: math.unit(22000, "miles")
  12858. },
  12859. {
  12860. name: "Solarmacro",
  12861. height: math.unit(8600000, "miles")
  12862. },
  12863. {
  12864. name: "Galactic",
  12865. height: math.unit(1057000, "lightyears")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 10 / 12, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/dixon/front.svg",
  12878. extra: 3361 / 3209,
  12879. bottom: 0.01
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(6 + 10 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Big",
  12891. height: math.unit(12, "meters")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(500, "meters")
  12896. },
  12897. {
  12898. name: "Megamacro",
  12899. height: math.unit(2, "km")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(185, "cm"),
  12908. weight: math.unit(68, "kg"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/kauko/front.svg",
  12912. extra: 1455 / 1421,
  12913. bottom: 0.03
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(185, "cm"),
  12918. weight: math.unit(68, "kg"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/kauko/back.svg",
  12922. extra: 1455 / 1421,
  12923. bottom: 0.004
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(185, "cm"),
  12931. default: true
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(6, "feet"),
  12940. weight: math.unit(150, "kg"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/varg/front.svg",
  12944. extra: 1108 / 1018,
  12945. bottom: 0.0375
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(5, "meters")
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(200, "meters")
  12957. },
  12958. {
  12959. name: "Megamacro",
  12960. height: math.unit(20, "kilometers")
  12961. },
  12962. {
  12963. name: "True Size",
  12964. height: math.unit(211, "km"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Gigamacro",
  12969. height: math.unit(1000, "km")
  12970. },
  12971. {
  12972. name: "Gigamacro+",
  12973. height: math.unit(8000, "km")
  12974. },
  12975. {
  12976. name: "Teramacro",
  12977. height: math.unit(1000000, "km")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(7 + 7 / 12, "feet"),
  12986. weight: math.unit(267, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/dayza/front.svg",
  12990. extra: 1262 / 1200,
  12991. bottom: 0.035
  12992. }
  12993. },
  12994. side: {
  12995. height: math.unit(7 + 7 / 12, "feet"),
  12996. weight: math.unit(267, "lb"),
  12997. name: "Side",
  12998. image: {
  12999. source: "./media/characters/dayza/side.svg",
  13000. extra: 1295 / 1245,
  13001. bottom: 0.05
  13002. }
  13003. },
  13004. back: {
  13005. height: math.unit(7 + 7 / 12, "feet"),
  13006. weight: math.unit(267, "lb"),
  13007. name: "Back",
  13008. image: {
  13009. source: "./media/characters/dayza/back.svg",
  13010. extra: 1241 / 1170
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(7 + 7 / 12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(155, "feet")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6 + 5 / 12, "feet"),
  13031. weight: math.unit(160, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/xanthos/front.svg",
  13035. extra: 1,
  13036. bottom: 0.04
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(6 + 5 / 12, "feet"),
  13041. weight: math.unit(160, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/xanthos/back.svg",
  13045. extra: 1,
  13046. bottom: 0.03
  13047. }
  13048. },
  13049. hand: {
  13050. height: math.unit(0.928, "feet"),
  13051. name: "Hand",
  13052. image: {
  13053. source: "./media/characters/xanthos/hand.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(1.286, "feet"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/xanthos/foot.svg"
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Normal",
  13067. height: math.unit(6 + 5 / 12, "feet"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Normal+",
  13072. height: math.unit(6, "meters")
  13073. },
  13074. {
  13075. name: "Macro",
  13076. height: math.unit(40, "feet")
  13077. },
  13078. {
  13079. name: "Macro+",
  13080. height: math.unit(200, "meters")
  13081. },
  13082. {
  13083. name: "Megamacro",
  13084. height: math.unit(20, "km")
  13085. },
  13086. {
  13087. name: "Megamacro+",
  13088. height: math.unit(100, "km")
  13089. },
  13090. {
  13091. name: "Gigamacro",
  13092. height: math.unit(200, "megameters")
  13093. },
  13094. {
  13095. name: "Gigamacro+",
  13096. height: math.unit(1.5, "gigameters")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6 + 3 / 12, "feet"),
  13105. weight: math.unit(215, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/grynn/front.svg",
  13109. extra: 4627 / 4209,
  13110. bottom: 0.047
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Micro",
  13117. height: math.unit(6, "inches")
  13118. },
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(6 + 3 / 12, "feet"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Big",
  13126. height: math.unit(104, "feet")
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(944, "feet")
  13131. },
  13132. {
  13133. name: "Macro+",
  13134. height: math.unit(9480, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(78752, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro+",
  13142. height: math.unit(630128, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro++",
  13146. height: math.unit(3150695, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(7 + 5 / 12, "feet"),
  13155. weight: math.unit(450, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/mocha-aura/front.svg",
  13159. extra: 1907 / 1817,
  13160. bottom: 0.04
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(7 + 5 / 12, "feet"),
  13165. weight: math.unit(450, "lb"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/mocha-aura/back.svg",
  13169. extra: 1900 / 1825,
  13170. bottom: 0.045
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Nano",
  13177. height: math.unit(1, "nm")
  13178. },
  13179. {
  13180. name: "Megamicro",
  13181. height: math.unit(1, "mm")
  13182. },
  13183. {
  13184. name: "Micro",
  13185. height: math.unit(3, "inches")
  13186. },
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(7 + 5 / 12, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(30, "feet")
  13195. },
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(3500, "feet")
  13199. },
  13200. {
  13201. name: "Teramacro",
  13202. height: math.unit(500000, "miles")
  13203. },
  13204. {
  13205. name: "Petamacro",
  13206. height: math.unit(50000000000000000, "parsecs")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/ilisha-devya/front.svg",
  13219. extra: 1053/1049,
  13220. bottom: 270/1323
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/ilisha-devya/back.svg",
  13229. extra: 1131/1128,
  13230. bottom: 39/1170
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(500, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(10, "miles")
  13243. },
  13244. {
  13245. name: "Gigamacro",
  13246. height: math.unit(100000, "miles")
  13247. },
  13248. {
  13249. name: "Examacro",
  13250. height: math.unit(1e9, "lightyears")
  13251. },
  13252. {
  13253. name: "Omniversal",
  13254. height: math.unit(1e33, "lightyears")
  13255. },
  13256. {
  13257. name: "Beyond Infinite",
  13258. height: math.unit(1e100, "lightyears")
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13264. {
  13265. Side: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Side",
  13269. image: {
  13270. source: "./media/characters/mira/side.svg",
  13271. extra: 900 / 799,
  13272. bottom: 0.02
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Human Size",
  13279. height: math.unit(6, "feet")
  13280. },
  13281. {
  13282. name: "Macro",
  13283. height: math.unit(100, "feet"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Megamacro",
  13288. height: math.unit(10, "miles")
  13289. },
  13290. {
  13291. name: "Gigamacro",
  13292. height: math.unit(25000, "miles")
  13293. },
  13294. {
  13295. name: "Teramacro",
  13296. height: math.unit(300, "AU")
  13297. },
  13298. {
  13299. name: "Full Size",
  13300. height: math.unit(4.5e10, "lightyears")
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(150, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/holly/front.svg",
  13313. extra: 639 / 606
  13314. }
  13315. },
  13316. back: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/holly/back.svg",
  13322. extra: 623 / 598
  13323. }
  13324. },
  13325. frontWorking: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Front (Working)",
  13329. image: {
  13330. source: "./media/characters/holly/front-working.svg",
  13331. extra: 607 / 577,
  13332. bottom: 0.048
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(12 + 3 / 12, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/porter/front.svg",
  13353. extra: 1,
  13354. bottom: 0.01
  13355. }
  13356. },
  13357. frontRobes: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front (Robes)",
  13361. image: {
  13362. source: "./media/characters/porter/front-robes.svg",
  13363. extra: 1.01,
  13364. bottom: 0.01
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(11 + 9 / 12, "feet"),
  13372. default: true
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13378. {
  13379. legendary: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(150, "lb"),
  13382. name: "Legendary",
  13383. image: {
  13384. source: "./media/characters/lucy/legendary.svg",
  13385. extra: 1355 / 1100,
  13386. bottom: 0.045
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Legendary",
  13393. height: math.unit(86882 * 2, "miles"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/drusilla/front.svg",
  13407. extra: 678 / 635,
  13408. bottom: 0.03
  13409. }
  13410. },
  13411. back: {
  13412. height: math.unit(6, "feet"),
  13413. weight: math.unit(150, "lb"),
  13414. name: "Back",
  13415. image: {
  13416. source: "./media/characters/drusilla/back.svg",
  13417. extra: 678 / 635,
  13418. bottom: 0.005
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(100, "feet")
  13426. },
  13427. {
  13428. name: "Canon Height",
  13429. height: math.unit(2000, "feet"),
  13430. default: true
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(180, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/renard-thatch/front.svg",
  13443. extra: 2411 / 2275,
  13444. bottom: 0.01
  13445. }
  13446. },
  13447. frontPosing: {
  13448. height: math.unit(6, "feet"),
  13449. weight: math.unit(180, "lb"),
  13450. name: "Front (Posing)",
  13451. image: {
  13452. source: "./media/characters/renard-thatch/front-posing.svg",
  13453. extra: 2381 / 2261,
  13454. bottom: 0.01
  13455. }
  13456. },
  13457. back: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(180, "lb"),
  13460. name: "Back",
  13461. image: {
  13462. source: "./media/characters/renard-thatch/back.svg",
  13463. extra: 2428 / 2288
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Micro",
  13470. height: math.unit(3, "inches")
  13471. },
  13472. {
  13473. name: "Default",
  13474. height: math.unit(6, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(75, "feet")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(1450, "feet"),
  13488. weight: math.unit(1.21e6, "tons"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/sekvra/front.svg",
  13492. extra: 1193/1190,
  13493. bottom: 78/1271
  13494. }
  13495. },
  13496. side: {
  13497. height: math.unit(1450, "feet"),
  13498. weight: math.unit(1.21e6, "tons"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/sekvra/side.svg",
  13502. extra: 1193/1190,
  13503. bottom: 52/1245
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(1450, "feet"),
  13508. weight: math.unit(1.21e6, "tons"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/sekvra/back.svg",
  13512. extra: 1219/1216,
  13513. bottom: 21/1240
  13514. }
  13515. },
  13516. frontClothed: {
  13517. height: math.unit(1450, "feet"),
  13518. weight: math.unit(1.21e6, "tons"),
  13519. name: "Front (Clothed)",
  13520. image: {
  13521. source: "./media/characters/sekvra/front-clothed.svg",
  13522. extra: 1192/1189,
  13523. bottom: 79/1271
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(1450, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Megamacro",
  13535. height: math.unit(15000, "feet")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/carmine/front.svg",
  13548. extra: 1,
  13549. bottom: 0.035
  13550. }
  13551. },
  13552. frontArmor: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Front (Armor)",
  13556. image: {
  13557. source: "./media/characters/carmine/front-armor.svg",
  13558. extra: 1,
  13559. bottom: 0.035
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Large",
  13566. height: math.unit(1, "mile")
  13567. },
  13568. {
  13569. name: "Huge",
  13570. height: math.unit(40, "miles"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Colossal",
  13575. height: math.unit(2500, "miles")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/elyssia/front.svg",
  13588. extra: 2201 / 2035,
  13589. bottom: 0.05
  13590. }
  13591. },
  13592. frontClothed: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(150, "lb"),
  13595. name: "Front (Clothed)",
  13596. image: {
  13597. source: "./media/characters/elyssia/front-clothed.svg",
  13598. extra: 2201 / 2035,
  13599. bottom: 0.05
  13600. }
  13601. },
  13602. back: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Back",
  13606. image: {
  13607. source: "./media/characters/elyssia/back.svg",
  13608. extra: 2201 / 2035,
  13609. bottom: 0.013
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Smaller",
  13616. height: math.unit(150, "feet")
  13617. },
  13618. {
  13619. name: "Standard",
  13620. height: math.unit(1400, "feet"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Distracted",
  13625. height: math.unit(15000, "feet")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(7 + 4/12, "feet"),
  13634. weight: math.unit(690, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/geno-maxwell/front.svg",
  13638. extra: 984/856,
  13639. bottom: 87/1071
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(7 + 4/12, "feet"),
  13644. weight: math.unit(690, "lb"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/geno-maxwell/back.svg",
  13648. extra: 981/854,
  13649. bottom: 57/1038
  13650. }
  13651. },
  13652. frontCostume: {
  13653. height: math.unit(7 + 4/12, "feet"),
  13654. weight: math.unit(690, "lb"),
  13655. name: "Front (Costume)",
  13656. image: {
  13657. source: "./media/characters/geno-maxwell/front-costume.svg",
  13658. extra: 984/856,
  13659. bottom: 87/1071
  13660. }
  13661. },
  13662. backcostume: {
  13663. height: math.unit(7 + 4/12, "feet"),
  13664. weight: math.unit(690, "lb"),
  13665. name: "Back (Costume)",
  13666. image: {
  13667. source: "./media/characters/geno-maxwell/back-costume.svg",
  13668. extra: 981/854,
  13669. bottom: 57/1038
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Micro",
  13676. height: math.unit(3, "inches")
  13677. },
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(7 + 4 / 12, "feet"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(220, "feet")
  13686. },
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(11, "miles")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(7 + 4/12, "feet"),
  13698. weight: math.unit(750, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/regena-maxwell/front.svg",
  13702. extra: 984/856,
  13703. bottom: 87/1071
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(7 + 4/12, "feet"),
  13708. weight: math.unit(750, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/regena-maxwell/back.svg",
  13712. extra: 981/854,
  13713. bottom: 57/1038
  13714. }
  13715. },
  13716. frontCostume: {
  13717. height: math.unit(7 + 4/12, "feet"),
  13718. weight: math.unit(750, "lb"),
  13719. name: "Front (Costume)",
  13720. image: {
  13721. source: "./media/characters/regena-maxwell/front-costume.svg",
  13722. extra: 984/856,
  13723. bottom: 87/1071
  13724. }
  13725. },
  13726. backcostume: {
  13727. height: math.unit(7 + 4/12, "feet"),
  13728. weight: math.unit(750, "lb"),
  13729. name: "Back (Costume)",
  13730. image: {
  13731. source: "./media/characters/regena-maxwell/back-costume.svg",
  13732. extra: 981/854,
  13733. bottom: 57/1038
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(7 + 4 / 12, "feet"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(220, "feet")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(11, "miles")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(150, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13762. extra: 860 / 690,
  13763. bottom: 0.03
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(1.7, "meters"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(150, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/quilly/front.svg",
  13784. extra: 890 / 776
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Gigamacro",
  13791. height: math.unit(404090, "miles"),
  13792. default: true
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 8 / 12, "feet"),
  13801. weight: math.unit(350, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/tempest/front.svg",
  13805. extra: 1175 / 1086,
  13806. bottom: 0.02
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(7 + 8 / 12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13820. {
  13821. side: {
  13822. height: math.unit(4 + 5 / 12, "feet"),
  13823. weight: math.unit(80, "lb"),
  13824. name: "Side",
  13825. image: {
  13826. source: "./media/characters/rodger/side.svg",
  13827. extra: 1235 / 1118
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Micro",
  13834. height: math.unit(1, "inch")
  13835. },
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(4 + 5 / 12, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(120, "feet")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/danyel/front.svg",
  13856. extra: 1185 / 1123,
  13857. bottom: 0.05
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Shrunken",
  13864. height: math.unit(0.5, "mm")
  13865. },
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(1, "mm"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Upsized",
  13873. height: math.unit(5 + 5 / 12, "feet")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 6 / 12, "feet"),
  13882. weight: math.unit(200, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/vivian-bijoux/front.svg",
  13886. extra: 1217/1209,
  13887. bottom: 76/1293
  13888. }
  13889. },
  13890. back: {
  13891. height: math.unit(5 + 6 / 12, "feet"),
  13892. weight: math.unit(200, "lb"),
  13893. name: "Back",
  13894. image: {
  13895. source: "./media/characters/vivian-bijoux/back.svg",
  13896. extra: 1214/1208,
  13897. bottom: 51/1265
  13898. }
  13899. },
  13900. dressed: {
  13901. height: math.unit(5 + 6 / 12, "feet"),
  13902. weight: math.unit(200, "lb"),
  13903. name: "Dressed",
  13904. image: {
  13905. source: "./media/characters/vivian-bijoux/dressed.svg",
  13906. extra: 1217/1209,
  13907. bottom: 76/1293
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(5 + 6 / 12, "feet"),
  13915. default: true
  13916. },
  13917. {
  13918. name: "Bad Dream",
  13919. height: math.unit(500, "feet")
  13920. },
  13921. {
  13922. name: "Nightmare",
  13923. height: math.unit(500, "miles")
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(6 + 1 / 12, "feet"),
  13932. weight: math.unit(260, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/zeta/front.svg",
  13936. extra: 1968 / 1889,
  13937. bottom: 0.06
  13938. }
  13939. },
  13940. back: {
  13941. height: math.unit(6 + 1 / 12, "feet"),
  13942. weight: math.unit(260, "lb"),
  13943. name: "Back",
  13944. image: {
  13945. source: "./media/characters/zeta/back.svg",
  13946. extra: 1944 / 1858,
  13947. bottom: 0.03
  13948. }
  13949. },
  13950. hand: {
  13951. height: math.unit(1.112, "feet"),
  13952. name: "Hand",
  13953. image: {
  13954. source: "./media/characters/zeta/hand.svg"
  13955. }
  13956. },
  13957. foot: {
  13958. height: math.unit(1.48, "feet"),
  13959. name: "Foot",
  13960. image: {
  13961. source: "./media/characters/zeta/foot.svg"
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Micro",
  13968. height: math.unit(6, "inches")
  13969. },
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(6 + 1 / 12, "feet"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Macro",
  13977. height: math.unit(20, "feet")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/jamie-larsen/front.svg",
  13990. extra: 962 / 933,
  13991. bottom: 0.02
  13992. }
  13993. },
  13994. back: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Back",
  13998. image: {
  13999. source: "./media/characters/jamie-larsen/back.svg",
  14000. extra: 997 / 946
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(28 + 7 / 12, "feet"),
  14008. default: true
  14009. },
  14010. {
  14011. name: "Macro+",
  14012. height: math.unit(180, "feet")
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(10, "miles")
  14017. },
  14018. {
  14019. name: "Gigamacro",
  14020. height: math.unit(200000, "miles")
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(6, "feet"),
  14029. weight: math.unit(120, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/vance/front.svg",
  14033. extra: 1980 / 1890,
  14034. bottom: 0.09
  14035. }
  14036. },
  14037. back: {
  14038. height: math.unit(6, "feet"),
  14039. weight: math.unit(120, "lb"),
  14040. name: "Back",
  14041. image: {
  14042. source: "./media/characters/vance/back.svg",
  14043. extra: 2081 / 1994,
  14044. bottom: 0.014
  14045. }
  14046. },
  14047. hand: {
  14048. height: math.unit(0.88, "feet"),
  14049. name: "Hand",
  14050. image: {
  14051. source: "./media/characters/vance/hand.svg"
  14052. }
  14053. },
  14054. foot: {
  14055. height: math.unit(0.64, "feet"),
  14056. name: "Foot",
  14057. image: {
  14058. source: "./media/characters/vance/foot.svg"
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Small",
  14065. height: math.unit(90, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(100, "meters")
  14071. },
  14072. {
  14073. name: "Megamacro",
  14074. height: math.unit(15, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(180, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/xochitl/front.svg",
  14087. extra: 2297 / 2261,
  14088. bottom: 0.065
  14089. }
  14090. },
  14091. back: {
  14092. height: math.unit(6, "feet"),
  14093. weight: math.unit(180, "lb"),
  14094. name: "Back",
  14095. image: {
  14096. source: "./media/characters/xochitl/back.svg",
  14097. extra: 2386 / 2354,
  14098. bottom: 0.01
  14099. }
  14100. },
  14101. foot: {
  14102. height: math.unit(6 / 5 * 1.15, "feet"),
  14103. weight: math.unit(150, "lb"),
  14104. name: "Foot",
  14105. image: {
  14106. source: "./media/characters/xochitl/foot.svg"
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(80, "feet")
  14114. },
  14115. {
  14116. name: "Macro+",
  14117. height: math.unit(400, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Gigamacro",
  14122. height: math.unit(80000, "miles")
  14123. },
  14124. {
  14125. name: "Gigamacro+",
  14126. height: math.unit(400000, "miles")
  14127. },
  14128. {
  14129. name: "Teramacro",
  14130. height: math.unit(300, "AU")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/vincent/front.svg",
  14143. extra: 1130 / 1080,
  14144. bottom: 0.055
  14145. }
  14146. },
  14147. beak: {
  14148. height: math.unit(6 * 0.1, "feet"),
  14149. name: "Beak",
  14150. image: {
  14151. source: "./media/characters/vincent/beak.svg"
  14152. }
  14153. },
  14154. hand: {
  14155. height: math.unit(6 * 0.85, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Hand",
  14158. image: {
  14159. source: "./media/characters/vincent/hand.svg"
  14160. }
  14161. },
  14162. foot: {
  14163. height: math.unit(6 * 0.19, "feet"),
  14164. weight: math.unit(150, "lb"),
  14165. name: "Foot",
  14166. image: {
  14167. source: "./media/characters/vincent/foot.svg"
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Base",
  14174. height: math.unit(6 + 5 / 12, "feet"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(300, "feet")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(2, "miles")
  14184. },
  14185. {
  14186. name: "Gigamacro",
  14187. height: math.unit(1000, "miles")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(2, "meters"),
  14196. weight: math.unit(500, "kg"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/coatl/front.svg",
  14200. extra: 3948 / 3500,
  14201. bottom: 0.082
  14202. }
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Normal",
  14208. height: math.unit(4, "meters")
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(100, "meters"),
  14213. default: true
  14214. },
  14215. {
  14216. name: "Macro+",
  14217. height: math.unit(300, "meters")
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(3, "gigameters")
  14222. },
  14223. {
  14224. name: "Megamacro+",
  14225. height: math.unit(300, "terameters")
  14226. },
  14227. {
  14228. name: "Megamacro++",
  14229. height: math.unit(3, "lightyears")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(50, "kg"),
  14239. name: "front",
  14240. image: {
  14241. source: "./media/characters/shiroryu/front.svg",
  14242. extra: 1990 / 1935
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Mortal Mingling",
  14249. height: math.unit(3, "meters")
  14250. },
  14251. {
  14252. name: "Kaiju-ish",
  14253. height: math.unit(250, "meters")
  14254. },
  14255. {
  14256. name: "Somewhat Godly",
  14257. height: math.unit(400, "km"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Planetary",
  14262. height: math.unit(300, "megameters")
  14263. },
  14264. {
  14265. name: "Galaxy-dwarfing",
  14266. height: math.unit(450, "kiloparsecs")
  14267. },
  14268. {
  14269. name: "Universe Eater",
  14270. height: math.unit(150, "gigaparsecs")
  14271. },
  14272. {
  14273. name: "Almost Immeasurable",
  14274. height: math.unit(1.3e266, "yottaparsecs")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/umeko/front.svg",
  14287. extra: 1,
  14288. bottom: 0.019
  14289. }
  14290. },
  14291. frontArmored: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Front (Armored)",
  14295. image: {
  14296. source: "./media/characters/umeko/front-armored.svg",
  14297. extra: 1,
  14298. bottom: 0.021
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Macro",
  14305. height: math.unit(220, "feet"),
  14306. default: true
  14307. },
  14308. {
  14309. name: "Guardian Dragon",
  14310. height: math.unit(50, "miles")
  14311. },
  14312. {
  14313. name: "Cosmic",
  14314. height: math.unit(800000, "miles")
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/cassidy/front.svg",
  14327. extra: 810/808,
  14328. bottom: 41/851
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Canon Height",
  14335. height: math.unit(120, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro+",
  14340. height: math.unit(400, "feet")
  14341. },
  14342. {
  14343. name: "Macro++",
  14344. height: math.unit(4000, "feet")
  14345. },
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(3, "miles")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/isaac/front.svg",
  14361. extra: 896 / 815,
  14362. bottom: 0.11
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Human Size",
  14369. height: math.unit(8, "feet"),
  14370. default: true
  14371. },
  14372. {
  14373. name: "Macro",
  14374. height: math.unit(400, "feet")
  14375. },
  14376. {
  14377. name: "Megamacro",
  14378. height: math.unit(50, "miles")
  14379. },
  14380. {
  14381. name: "Canon Height",
  14382. height: math.unit(200, "AU")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(72, "kg"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/sleekit/front.svg",
  14395. extra: 4693 / 4487,
  14396. bottom: 0.012
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Minimum Height",
  14403. height: math.unit(10, "meters")
  14404. },
  14405. {
  14406. name: "Smaller",
  14407. height: math.unit(25, "meters")
  14408. },
  14409. {
  14410. name: "Larger",
  14411. height: math.unit(38, "meters"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Maximum height",
  14416. height: math.unit(100, "meters")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/nillia/front.svg",
  14429. extra: 2195 / 2037,
  14430. bottom: 0.005
  14431. }
  14432. },
  14433. back: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Back",
  14437. image: {
  14438. source: "./media/characters/nillia/back.svg",
  14439. extra: 2195 / 2037,
  14440. bottom: 0.005
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Canon Height",
  14447. height: math.unit(489, "feet"),
  14448. default: true
  14449. }
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14454. {
  14455. front: {
  14456. height: math.unit(6, "feet"),
  14457. weight: math.unit(150, "lb"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/mesmyriza/front.svg",
  14461. extra: 2067 / 1784,
  14462. bottom: 0.035
  14463. }
  14464. },
  14465. foot: {
  14466. height: math.unit(6 / (250 / 35), "feet"),
  14467. name: "Foot",
  14468. image: {
  14469. source: "./media/characters/mesmyriza/foot.svg"
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(457, "meters"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(8, "megameters")
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(250, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/saudade/front.svg",
  14494. extra: 1172 / 1139,
  14495. bottom: 0.035
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Micro",
  14502. height: math.unit(3, "inches")
  14503. },
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(6, "feet"),
  14507. default: true
  14508. },
  14509. {
  14510. name: "Macro",
  14511. height: math.unit(50, "feet")
  14512. },
  14513. {
  14514. name: "Megamacro",
  14515. height: math.unit(2800, "feet")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(5 + 4 / 12, "feet"),
  14524. weight: math.unit(100, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/keireer/front.svg",
  14528. extra: 716 / 666,
  14529. bottom: 0.05
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(5 + 4 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(90, "kg"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/mirja/front.svg",
  14550. extra: 1789 / 1683,
  14551. bottom: 0.05
  14552. }
  14553. },
  14554. frontDressed: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(90, "lb"),
  14557. name: "Front (Dressed)",
  14558. image: {
  14559. source: "./media/characters/mirja/front-dressed.svg",
  14560. extra: 1789 / 1683,
  14561. bottom: 0.05
  14562. }
  14563. },
  14564. back: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(90, "lb"),
  14567. name: "Back",
  14568. image: {
  14569. source: "./media/characters/mirja/back.svg",
  14570. extra: 953 / 917,
  14571. bottom: 0.017
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "\"Incognito\"",
  14578. height: math.unit(3, "meters")
  14579. },
  14580. {
  14581. name: "Strolling Size",
  14582. height: math.unit(15, "km")
  14583. },
  14584. {
  14585. name: "Larger Strolling Size",
  14586. height: math.unit(400, "km")
  14587. },
  14588. {
  14589. name: "Preferred Size",
  14590. height: math.unit(5000, "km")
  14591. },
  14592. {
  14593. name: "True Size",
  14594. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(15, "feet"),
  14604. weight: math.unit(880, "kg"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/nightraver/front.svg",
  14608. extra: 2444 / 2160,
  14609. bottom: 0.027
  14610. }
  14611. },
  14612. back: {
  14613. height: math.unit(15, "feet"),
  14614. weight: math.unit(880, "kg"),
  14615. name: "Back",
  14616. image: {
  14617. source: "./media/characters/nightraver/back.svg",
  14618. extra: 2309 / 2180,
  14619. bottom: 0.005
  14620. }
  14621. },
  14622. sole: {
  14623. height: math.unit(2.878, "feet"),
  14624. name: "Sole",
  14625. image: {
  14626. source: "./media/characters/nightraver/sole.svg"
  14627. }
  14628. },
  14629. foot: {
  14630. height: math.unit(2.285, "feet"),
  14631. name: "Foot",
  14632. image: {
  14633. source: "./media/characters/nightraver/foot.svg"
  14634. }
  14635. },
  14636. maw: {
  14637. height: math.unit(2.67, "feet"),
  14638. name: "Maw",
  14639. image: {
  14640. source: "./media/characters/nightraver/maw.svg"
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Micro",
  14647. height: math.unit(1, "cm")
  14648. },
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(15, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(300, "feet")
  14657. },
  14658. {
  14659. name: "Megamacro",
  14660. height: math.unit(300, "miles")
  14661. },
  14662. {
  14663. name: "Gigamacro",
  14664. height: math.unit(10000, "miles")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14670. {
  14671. side: {
  14672. height: math.unit(2, "inches"),
  14673. weight: math.unit(5, "grams"),
  14674. name: "Side",
  14675. image: {
  14676. source: "./media/characters/arc/side.svg"
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Micro",
  14683. height: math.unit(2, "inches"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(1.1938, "meters"),
  14693. weight: math.unit(54, "kg"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/nebula-shahar/front.svg",
  14697. extra: 1642 / 1436,
  14698. bottom: 0.06
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Megamicro",
  14705. height: math.unit(0.3, "mm")
  14706. },
  14707. {
  14708. name: "Micro",
  14709. height: math.unit(3, "cm")
  14710. },
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(138, "cm"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Macro",
  14718. height: math.unit(30, "m")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5.24, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/shayla/front.svg",
  14731. extra: 1512 / 1414,
  14732. bottom: 0.01
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(5.24, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/shayla/back.svg",
  14741. extra: 1512 / 1414
  14742. }
  14743. },
  14744. hand: {
  14745. height: math.unit(0.7781496062992126, "feet"),
  14746. name: "Hand",
  14747. image: {
  14748. source: "./media/characters/shayla/hand.svg"
  14749. }
  14750. },
  14751. foot: {
  14752. height: math.unit(1.4206036745406823, "feet"),
  14753. name: "Foot",
  14754. image: {
  14755. source: "./media/characters/shayla/foot.svg"
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Micro",
  14762. height: math.unit(0.32, "feet")
  14763. },
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5.24, "feet"),
  14767. default: true
  14768. },
  14769. {
  14770. name: "Macro",
  14771. height: math.unit(492.12, "feet")
  14772. },
  14773. {
  14774. name: "Megamacro",
  14775. height: math.unit(186.41, "miles")
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14781. {
  14782. front: {
  14783. height: math.unit(2.2, "m"),
  14784. weight: math.unit(120, "kg"),
  14785. name: "Front",
  14786. image: {
  14787. source: "./media/characters/pia-jr/front.svg",
  14788. extra: 1000 / 970,
  14789. bottom: 0.035
  14790. }
  14791. },
  14792. hand: {
  14793. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14794. name: "Hand",
  14795. image: {
  14796. source: "./media/characters/pia-jr/hand.svg"
  14797. }
  14798. },
  14799. paw: {
  14800. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14801. name: "Paw",
  14802. image: {
  14803. source: "./media/characters/pia-jr/paw.svg"
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Micro",
  14810. height: math.unit(1.2, "cm")
  14811. },
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(2.2, "m"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(180, "m")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(420, "km")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(2, "m"),
  14832. weight: math.unit(115, "kg"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/pia-sr/front.svg",
  14836. extra: 760 / 730,
  14837. bottom: 0.015
  14838. }
  14839. },
  14840. back: {
  14841. height: math.unit(2, "m"),
  14842. weight: math.unit(115, "kg"),
  14843. name: "Back",
  14844. image: {
  14845. source: "./media/characters/pia-sr/back.svg",
  14846. extra: 760 / 730,
  14847. bottom: 0.01
  14848. }
  14849. },
  14850. hand: {
  14851. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14852. name: "Hand",
  14853. image: {
  14854. source: "./media/characters/pia-sr/hand.svg"
  14855. }
  14856. },
  14857. foot: {
  14858. height: math.unit(1.83, "feet"),
  14859. name: "Foot",
  14860. image: {
  14861. source: "./media/characters/pia-sr/foot.svg"
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Micro",
  14868. height: math.unit(88, "mm")
  14869. },
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(2, "m"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Macro",
  14877. height: math.unit(200, "m")
  14878. },
  14879. {
  14880. name: "Megamacro",
  14881. height: math.unit(420, "km")
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(8 + 2 / 12, "feet"),
  14890. weight: math.unit(300, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/kibibyte/front.svg",
  14894. extra: 2221 / 2098,
  14895. bottom: 0.04
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(8 + 2 / 12, "feet"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Socialable Macro",
  14907. height: math.unit(50, "feet")
  14908. },
  14909. {
  14910. name: "Macro",
  14911. height: math.unit(300, "feet")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(500, "miles")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/felix/front.svg",
  14928. extra: 762 / 722,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. frontClothed: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front (Clothed)",
  14936. image: {
  14937. source: "./media/characters/felix/front-clothed.svg",
  14938. extra: 762 / 722,
  14939. bottom: 0.02
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(6 + 8 / 12, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(2600, "feet")
  14952. },
  14953. {
  14954. name: "Megamacro",
  14955. height: math.unit(450, "miles")
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(6 + 1 / 12, "feet"),
  14964. weight: math.unit(250, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/tobo/front.svg",
  14968. extra: 608 / 586,
  14969. bottom: 0.023
  14970. }
  14971. },
  14972. back: {
  14973. height: math.unit(6 + 1 / 12, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Back",
  14976. image: {
  14977. source: "./media/characters/tobo/back.svg",
  14978. extra: 608 / 586
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Nano",
  14985. height: math.unit(2, "nm")
  14986. },
  14987. {
  14988. name: "Megamicro",
  14989. height: math.unit(0.1, "mm")
  14990. },
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(1, "inch"),
  14994. default: true
  14995. },
  14996. {
  14997. name: "Human-sized",
  14998. height: math.unit(6 + 1 / 12, "feet")
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(250, "feet")
  15003. },
  15004. {
  15005. name: "Megamacro",
  15006. height: math.unit(75, "miles")
  15007. },
  15008. {
  15009. name: "Texas-sized",
  15010. height: math.unit(750, "miles")
  15011. },
  15012. {
  15013. name: "Teramacro",
  15014. height: math.unit(50000, "miles")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(269, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/danny-kapowsky/front.svg",
  15027. extra: 766 / 736,
  15028. bottom: 0.044
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(269, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/danny-kapowsky/back.svg",
  15037. extra: 797 / 760,
  15038. bottom: 0.025
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(150, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro+",
  15050. height: math.unit(200, "feet")
  15051. },
  15052. {
  15053. name: "Macro++",
  15054. height: math.unit(300, "feet")
  15055. },
  15056. {
  15057. name: "Macro+++",
  15058. height: math.unit(400, "feet")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15064. {
  15065. side: {
  15066. height: math.unit(6, "feet"),
  15067. weight: math.unit(170, "lb"),
  15068. name: "Side",
  15069. image: {
  15070. source: "./media/characters/finn/side.svg",
  15071. extra: 1953 / 1807,
  15072. bottom: 0.057
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Megamacro",
  15079. height: math.unit(14445, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(5 + 6 / 12, "feet"),
  15089. weight: math.unit(125, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/roy/front.svg",
  15093. extra: 1,
  15094. bottom: 0.11
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Micro",
  15101. height: math.unit(3, "inches"),
  15102. default: true
  15103. },
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(5 + 6 / 12, "feet")
  15107. },
  15108. {
  15109. name: "Lesser Macro",
  15110. height: math.unit(60, "feet")
  15111. },
  15112. {
  15113. name: "Greater Macro",
  15114. height: math.unit(120, "feet")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(100, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/aevsivs/front.svg",
  15127. extra: 1,
  15128. bottom: 0.03
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(100, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/aevsivs/back.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Micro",
  15143. height: math.unit(2, "inches"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(5, "feet")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(5 + 7 / 12, "feet"),
  15157. weight: math.unit(159, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/hildegard/front.svg",
  15161. extra: 289 / 269,
  15162. bottom: 7.63 / 297.8
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(5 + 7 / 12, "feet"),
  15167. weight: math.unit(159, "lb"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/hildegard/back.svg",
  15171. extra: 280 / 260,
  15172. bottom: 2.3 / 282
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(5 + 7 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15186. {
  15187. bernard: {
  15188. height: math.unit(2 + 7 / 12, "feet"),
  15189. weight: math.unit(66, "lb"),
  15190. name: "Bernard",
  15191. rename: true,
  15192. image: {
  15193. source: "./media/characters/bernard-wilder/bernard.svg",
  15194. extra: 192 / 128,
  15195. bottom: 0.05
  15196. }
  15197. },
  15198. wilder: {
  15199. height: math.unit(5 + 8 / 12, "feet"),
  15200. weight: math.unit(143, "lb"),
  15201. name: "Wilder",
  15202. rename: true,
  15203. image: {
  15204. source: "./media/characters/bernard-wilder/wilder.svg",
  15205. extra: 361 / 312,
  15206. bottom: 0.02
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(2 + 7 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15220. {
  15221. anthro: {
  15222. height: math.unit(6 + 1 / 12, "feet"),
  15223. weight: math.unit(155, "lb"),
  15224. name: "Anthro",
  15225. image: {
  15226. source: "./media/characters/hearth/anthro.svg",
  15227. extra: 1178/1136,
  15228. bottom: 28/1206
  15229. }
  15230. },
  15231. feral: {
  15232. height: math.unit(3.78, "feet"),
  15233. weight: math.unit(35, "kg"),
  15234. name: "Feral",
  15235. image: {
  15236. source: "./media/characters/hearth/feral.svg",
  15237. extra: 153 / 135,
  15238. bottom: 0.03
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(6 + 1 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(182, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/ingrid/front.svg",
  15259. extra: 294 / 268,
  15260. bottom: 0.027
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(6, "feet"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15274. {
  15275. eevee: {
  15276. height: math.unit(2 + 10 / 12, "feet"),
  15277. weight: math.unit(86, "lb"),
  15278. name: "Malgam",
  15279. image: {
  15280. source: "./media/characters/malgam/eevee.svg",
  15281. extra: 952/784,
  15282. bottom: 38/990
  15283. }
  15284. },
  15285. sylveon: {
  15286. height: math.unit(4, "feet"),
  15287. weight: math.unit(101, "lb"),
  15288. name: "Future Malgam",
  15289. rename: true,
  15290. image: {
  15291. source: "./media/characters/malgam/sylveon.svg",
  15292. extra: 371 / 325,
  15293. bottom: 0.015
  15294. }
  15295. },
  15296. gigantamax: {
  15297. height: math.unit(50, "feet"),
  15298. name: "Gigantamax Malgam",
  15299. rename: true,
  15300. image: {
  15301. source: "./media/characters/malgam/gigantamax.svg"
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(2 + 10 / 12, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(5 + 11 / 12, "feet"),
  15318. weight: math.unit(188, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/fleur/front.svg",
  15322. extra: 309 / 283,
  15323. bottom: 0.007
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(5 + 11 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(5 + 4 / 12, "feet"),
  15340. weight: math.unit(122, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/jude/front.svg",
  15344. extra: 288 / 273,
  15345. bottom: 0.03
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(5 + 4 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(5 + 11 / 12, "feet"),
  15362. weight: math.unit(190, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/seara/front.svg",
  15366. extra: 1,
  15367. bottom: 0.05
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(5 + 11 / 12, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(16 + 5 / 12, "feet"),
  15384. weight: math.unit(524, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/caspian/front.svg",
  15388. extra: 1,
  15389. bottom: 0.04
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(16 + 5 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(5 + 7 / 12, "feet"),
  15406. weight: math.unit(170, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/mika/front.svg",
  15410. extra: 1,
  15411. bottom: 0.016
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(5 + 7 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6 + 2 / 12, "feet"),
  15428. weight: math.unit(268, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/sol/front.svg",
  15432. extra: 247 / 231,
  15433. bottom: 0.05
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(6 + 2 / 12, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15447. {
  15448. buizel: {
  15449. height: math.unit(2 + 5 / 12, "feet"),
  15450. weight: math.unit(87, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/umiko/buizel.svg",
  15454. extra: 172 / 157,
  15455. bottom: 0.01
  15456. },
  15457. form: "buizel",
  15458. default: true
  15459. },
  15460. floatzel: {
  15461. height: math.unit(5 + 9 / 12, "feet"),
  15462. weight: math.unit(250, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/umiko/floatzel.svg",
  15466. extra: 1076/1006,
  15467. bottom: 15/1091
  15468. },
  15469. form: "floatzel",
  15470. default: true
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(2 + 5 / 12, "feet"),
  15477. form: "buizel",
  15478. default: true
  15479. },
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(5 + 9 / 12, "feet"),
  15483. form: "floatzel",
  15484. default: true
  15485. },
  15486. ],
  15487. {
  15488. "buizel": {
  15489. name: "Buizel"
  15490. },
  15491. "floatzel": {
  15492. name: "Floatzel",
  15493. default: true
  15494. }
  15495. }
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(6 + 2 / 12, "feet"),
  15502. weight: math.unit(146, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/iliac/front.svg",
  15506. extra: 389 / 365,
  15507. bottom: 0.035
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Normal",
  15514. height: math.unit(6 + 2 / 12, "feet"),
  15515. default: true
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15521. {
  15522. front: {
  15523. height: math.unit(6, "feet"),
  15524. weight: math.unit(170, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/topaz/front.svg",
  15528. extra: 317 / 303,
  15529. bottom: 0.055
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(6, "feet"),
  15537. default: true
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15543. {
  15544. front: {
  15545. height: math.unit(5 + 11 / 12, "feet"),
  15546. weight: math.unit(144, "lb"),
  15547. name: "Front",
  15548. image: {
  15549. source: "./media/characters/gabriel/front.svg",
  15550. extra: 285 / 262,
  15551. bottom: 0.004
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(5 + 11 / 12, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15565. {
  15566. side: {
  15567. height: math.unit(6 + 5 / 12, "feet"),
  15568. weight: math.unit(300, "lb"),
  15569. name: "Side",
  15570. image: {
  15571. source: "./media/characters/tempest-suicune/side.svg",
  15572. extra: 195 / 154,
  15573. bottom: 0.04
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(6 + 5 / 12, "feet"),
  15581. default: true
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(7 + 2 / 12, "feet"),
  15590. weight: math.unit(322, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/vulcan/front.svg",
  15594. extra: 154 / 147,
  15595. bottom: 0.04
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(7 + 2 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(5 + 10 / 12, "feet"),
  15612. weight: math.unit(264, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/gault/front.svg",
  15616. extra: 161 / 140,
  15617. bottom: 0.028
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(5 + 10 / 12, "feet"),
  15625. default: true
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(6, "feet"),
  15634. weight: math.unit(150, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/shard/front.svg",
  15638. extra: 273 / 238,
  15639. bottom: 0.02
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(3 + 6 / 12, "feet"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(5 + 11 / 12, "feet"),
  15656. weight: math.unit(146, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/ashe/front.svg",
  15660. extra: 400 / 373,
  15661. bottom: 0.01
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(5 + 11 / 12, "feet"),
  15669. default: true
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(5 + 5 / 12, "feet"),
  15678. weight: math.unit(135, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/beatrix/front.svg",
  15682. extra: 392 / 379,
  15683. bottom: 0.01
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(6, "feet"),
  15691. default: true
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6 + 2/12, "feet"),
  15700. weight: math.unit(135, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/ignatius/front.svg",
  15704. extra: 1380/1259,
  15705. bottom: 27/1407
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(6 + 2/12, "feet"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(6 + 2 / 12, "feet"),
  15722. weight: math.unit(138, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/mei-li/front.svg",
  15726. extra: 237 / 229,
  15727. bottom: 0.03
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Normal",
  15734. height: math.unit(6 + 2 / 12, "feet"),
  15735. default: true
  15736. },
  15737. ]
  15738. ))
  15739. characterMakers.push(() => makeCharacter(
  15740. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15741. {
  15742. front: {
  15743. height: math.unit(2 + 4 / 12, "feet"),
  15744. weight: math.unit(62, "lb"),
  15745. name: "Front",
  15746. image: {
  15747. source: "./media/characters/puru/front.svg",
  15748. extra: 206 / 149,
  15749. bottom: 0.06
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(2 + 4 / 12, "feet"),
  15757. default: true
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15763. {
  15764. anthro: {
  15765. height: math.unit(5 + 8/12, "feet"),
  15766. weight: math.unit(200, "lb"),
  15767. energyNeed: math.unit(2000, "kcal"),
  15768. name: "Anthro",
  15769. image: {
  15770. source: "./media/characters/kee/anthro.svg",
  15771. extra: 3251/3184,
  15772. bottom: 250/3501
  15773. }
  15774. },
  15775. taur: {
  15776. height: math.unit(11, "feet"),
  15777. weight: math.unit(500, "lb"),
  15778. energyNeed: math.unit(5000, "kcal"),
  15779. name: "Taur",
  15780. image: {
  15781. source: "./media/characters/kee/taur.svg",
  15782. extra: 1362/1320,
  15783. bottom: 83/1445
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 8/12, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro",
  15795. height: math.unit(35, "feet")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15801. {
  15802. anthro: {
  15803. height: math.unit(7, "feet"),
  15804. weight: math.unit(190, "lb"),
  15805. name: "Anthro",
  15806. image: {
  15807. source: "./media/characters/cobalt-dracha/anthro.svg",
  15808. extra: 231 / 225,
  15809. bottom: 0.04
  15810. }
  15811. },
  15812. feral: {
  15813. height: math.unit(9 + 7 / 12, "feet"),
  15814. weight: math.unit(294, "lb"),
  15815. name: "Feral",
  15816. image: {
  15817. source: "./media/characters/cobalt-dracha/feral.svg",
  15818. extra: 692 / 633,
  15819. bottom: 0.05
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(7, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15833. {
  15834. fallen: {
  15835. height: math.unit(11 + 8 / 12, "feet"),
  15836. weight: math.unit(485, "lb"),
  15837. name: "Java (Fallen)",
  15838. rename: true,
  15839. image: {
  15840. source: "./media/characters/java/fallen.svg",
  15841. extra: 226 / 208,
  15842. bottom: 0.005
  15843. }
  15844. },
  15845. godkin: {
  15846. height: math.unit(10 + 6 / 12, "feet"),
  15847. weight: math.unit(328, "lb"),
  15848. name: "Java (Godkin)",
  15849. rename: true,
  15850. image: {
  15851. source: "./media/characters/java/godkin.svg",
  15852. extra: 1104/1068,
  15853. bottom: 36/1140
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(11 + 8 / 12, "feet"),
  15861. default: true
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 9 / 12, "feet"),
  15870. weight: math.unit(170, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/purna/front.svg",
  15874. extra: 239 / 229,
  15875. bottom: 0.01
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 9 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(5 + 9 / 12, "feet"),
  15892. weight: math.unit(142, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/kuva/front.svg",
  15896. extra: 281 / 271,
  15897. bottom: 0.006
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(5 + 9 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15911. {
  15912. anthro: {
  15913. height: math.unit(9 + 2 / 12, "feet"),
  15914. weight: math.unit(270, "lb"),
  15915. name: "Anthro",
  15916. image: {
  15917. source: "./media/characters/embra/anthro.svg",
  15918. extra: 200 / 187,
  15919. bottom: 0.02
  15920. }
  15921. },
  15922. feral: {
  15923. height: math.unit(18 + 8 / 12, "feet"),
  15924. weight: math.unit(576, "lb"),
  15925. name: "Feral",
  15926. image: {
  15927. source: "./media/characters/embra/feral.svg",
  15928. extra: 152 / 137,
  15929. bottom: 0.037
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(9 + 2 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15943. {
  15944. anthro: {
  15945. height: math.unit(10 + 9 / 12, "feet"),
  15946. weight: math.unit(224, "lb"),
  15947. name: "Anthro",
  15948. image: {
  15949. source: "./media/characters/grottos/anthro.svg",
  15950. extra: 350 / 332,
  15951. bottom: 0.045
  15952. }
  15953. },
  15954. feral: {
  15955. height: math.unit(20 + 7 / 12, "feet"),
  15956. weight: math.unit(629, "lb"),
  15957. name: "Feral",
  15958. image: {
  15959. source: "./media/characters/grottos/feral.svg",
  15960. extra: 207 / 190,
  15961. bottom: 0.05
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(10 + 9 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15975. {
  15976. anthro: {
  15977. height: math.unit(9 + 6 / 12, "feet"),
  15978. weight: math.unit(298, "lb"),
  15979. name: "Anthro",
  15980. image: {
  15981. source: "./media/characters/frifna/anthro.svg",
  15982. extra: 282 / 269,
  15983. bottom: 0.015
  15984. }
  15985. },
  15986. feral: {
  15987. height: math.unit(16 + 2 / 12, "feet"),
  15988. weight: math.unit(624, "lb"),
  15989. name: "Feral",
  15990. image: {
  15991. source: "./media/characters/frifna/feral.svg"
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(9 + 6 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6 + 2 / 12, "feet"),
  16008. weight: math.unit(168, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/elise/front.svg",
  16012. extra: 276 / 271
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(6 + 2 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 10 / 12, "feet"),
  16029. weight: math.unit(210, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/glade/front.svg",
  16033. extra: 258 / 247,
  16034. bottom: 0.008
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 10 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 10 / 12, "feet"),
  16051. weight: math.unit(129, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/rina/front.svg",
  16055. extra: 266 / 255,
  16056. bottom: 0.005
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 10 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6 + 1 / 12, "feet"),
  16073. weight: math.unit(192, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/veronica/front.svg",
  16077. extra: 319 / 309,
  16078. bottom: 0.005
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(6 + 1 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(9 + 3 / 12, "feet"),
  16095. weight: math.unit(1100, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/braxton/front.svg",
  16099. extra: 1057 / 984,
  16100. bottom: 0.05
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(9 + 3 / 12, "feet")
  16108. },
  16109. {
  16110. name: "Giant",
  16111. height: math.unit(300, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macro",
  16116. height: math.unit(700, "feet")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(6000, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6 + 7 / 12, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/blue-feyonics/front.svg",
  16133. extra: 1403 / 1306,
  16134. bottom: 0.047
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6 + 7 / 12, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(1.8, "meters"),
  16151. weight: math.unit(60, "kg"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/maxwell/front.svg",
  16155. extra: 2060 / 1873
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Micro",
  16162. height: math.unit(1, "mm")
  16163. },
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(1.8, "meter"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Macro",
  16171. height: math.unit(30, "meters")
  16172. },
  16173. {
  16174. name: "Megamacro",
  16175. height: math.unit(10, "km")
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/jack/front.svg",
  16188. extra: 1754 / 1640,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(80000, "feet"),
  16197. default: true
  16198. },
  16199. {
  16200. name: "Max size",
  16201. height: math.unit(10, "lightyears")
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16207. {
  16208. urban: {
  16209. height: math.unit(5, "feet"),
  16210. weight: math.unit(240, "lb"),
  16211. name: "Urban",
  16212. image: {
  16213. source: "./media/characters/cafat/urban.svg",
  16214. extra: 1223/1126,
  16215. bottom: 205/1428
  16216. }
  16217. },
  16218. summer: {
  16219. height: math.unit(5, "feet"),
  16220. weight: math.unit(240, "lb"),
  16221. name: "Summer",
  16222. image: {
  16223. source: "./media/characters/cafat/summer.svg",
  16224. extra: 1223/1126,
  16225. bottom: 205/1428
  16226. }
  16227. },
  16228. winter: {
  16229. height: math.unit(5, "feet"),
  16230. weight: math.unit(240, "lb"),
  16231. name: "Winter",
  16232. image: {
  16233. source: "./media/characters/cafat/winter.svg",
  16234. extra: 1223/1126,
  16235. bottom: 205/1428
  16236. }
  16237. },
  16238. lingerie: {
  16239. height: math.unit(5, "feet"),
  16240. weight: math.unit(240, "lb"),
  16241. name: "Lingerie",
  16242. image: {
  16243. source: "./media/characters/cafat/lingerie.svg",
  16244. extra: 1223/1126,
  16245. bottom: 205/1428
  16246. }
  16247. },
  16248. upright: {
  16249. height: math.unit(6.3, "feet"),
  16250. weight: math.unit(240, "lb"),
  16251. name: "Upright",
  16252. image: {
  16253. source: "./media/characters/cafat/upright.svg",
  16254. bottom: 0.01
  16255. }
  16256. },
  16257. uprightFull: {
  16258. height: math.unit(6.3, "feet"),
  16259. weight: math.unit(240, "lb"),
  16260. name: "Upright (Full)",
  16261. image: {
  16262. source: "./media/characters/cafat/upright-full.svg",
  16263. bottom: 0.01
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Small",
  16270. height: math.unit(5, "feet"),
  16271. default: true
  16272. },
  16273. {
  16274. name: "Large",
  16275. height: math.unit(13, "feet")
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/verin-raharra/front.svg",
  16288. extra: 5019 / 4835,
  16289. bottom: 0.023
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(7 + 5 / 12, "feet"),
  16297. default: true
  16298. },
  16299. {
  16300. name: "Upsized",
  16301. height: math.unit(20, "feet")
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16307. {
  16308. front: {
  16309. height: math.unit(7, "feet"),
  16310. weight: math.unit(230, "lb"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/nakata/front.svg",
  16314. extra: 1.005,
  16315. bottom: 0.01
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(7, "feet"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Big",
  16327. height: math.unit(14, "feet")
  16328. },
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(400, "feet")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(4.91, "feet"),
  16340. weight: math.unit(100, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/lily/front.svg",
  16344. extra: 1585 / 1415,
  16345. bottom: 0.02
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(4.91, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16359. {
  16360. laying: {
  16361. height: math.unit(4 + 4 / 12, "feet"),
  16362. weight: math.unit(600, "lb"),
  16363. name: "Laying",
  16364. image: {
  16365. source: "./media/characters/sheila/laying.svg",
  16366. extra: 1333 / 1265,
  16367. bottom: 0.16
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(4 + 4 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(6, "feet"),
  16384. weight: math.unit(190, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/sax/front.svg",
  16388. extra: 1187 / 973,
  16389. bottom: 0.042
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Micro",
  16396. height: math.unit(4, "inches"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(6, "feet"),
  16406. weight: math.unit(150, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/pandora/front.svg",
  16410. extra: 2720 / 2556,
  16411. bottom: 0.015
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(6, "feet"),
  16416. weight: math.unit(150, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/pandora/back.svg",
  16420. extra: 2720 / 2556,
  16421. bottom: 0.01
  16422. }
  16423. },
  16424. beans: {
  16425. height: math.unit(6 / 8, "feet"),
  16426. name: "Beans",
  16427. image: {
  16428. source: "./media/characters/pandora/beans.svg"
  16429. }
  16430. },
  16431. collar: {
  16432. height: math.unit(0.31, "feet"),
  16433. name: "Collar",
  16434. image: {
  16435. source: "./media/characters/pandora/collar.svg"
  16436. }
  16437. },
  16438. skirt: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Skirt",
  16442. image: {
  16443. source: "./media/characters/pandora/skirt.svg",
  16444. extra: 1622 / 1525,
  16445. bottom: 0.015
  16446. }
  16447. },
  16448. hoodie: {
  16449. height: math.unit(6, "feet"),
  16450. weight: math.unit(150, "lb"),
  16451. name: "Hoodie",
  16452. image: {
  16453. source: "./media/characters/pandora/hoodie.svg",
  16454. extra: 1622 / 1525,
  16455. bottom: 0.015
  16456. }
  16457. },
  16458. casual: {
  16459. height: math.unit(6, "feet"),
  16460. weight: math.unit(150, "lb"),
  16461. name: "Casual",
  16462. image: {
  16463. source: "./media/characters/pandora/casual.svg",
  16464. extra: 1622 / 1525,
  16465. bottom: 0.015
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(6, "feet")
  16473. },
  16474. {
  16475. name: "Big Steppy",
  16476. height: math.unit(1, "km"),
  16477. default: true
  16478. },
  16479. {
  16480. name: "Galactic Steppy",
  16481. height: math.unit(2, "gigameters")
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16487. {
  16488. side: {
  16489. height: math.unit(10, "feet"),
  16490. weight: math.unit(800, "kg"),
  16491. name: "Side",
  16492. image: {
  16493. source: "./media/characters/venio-darcony/side.svg",
  16494. extra: 1373 / 1003,
  16495. bottom: 0.037
  16496. }
  16497. },
  16498. front: {
  16499. height: math.unit(19, "feet"),
  16500. weight: math.unit(800, "kg"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/venio-darcony/front.svg"
  16504. }
  16505. },
  16506. back: {
  16507. height: math.unit(19, "feet"),
  16508. weight: math.unit(800, "kg"),
  16509. name: "Back",
  16510. image: {
  16511. source: "./media/characters/venio-darcony/back.svg"
  16512. }
  16513. },
  16514. sideNsfw: {
  16515. height: math.unit(10, "feet"),
  16516. weight: math.unit(800, "kg"),
  16517. name: "Side (NSFW)",
  16518. image: {
  16519. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16520. extra: 1373 / 1003,
  16521. bottom: 0.037
  16522. }
  16523. },
  16524. frontNsfw: {
  16525. height: math.unit(19, "feet"),
  16526. weight: math.unit(800, "kg"),
  16527. name: "Front (NSFW)",
  16528. image: {
  16529. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16530. }
  16531. },
  16532. backNsfw: {
  16533. height: math.unit(19, "feet"),
  16534. weight: math.unit(800, "kg"),
  16535. name: "Back (NSFW)",
  16536. image: {
  16537. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16538. }
  16539. },
  16540. sideArmored: {
  16541. height: math.unit(10, "feet"),
  16542. weight: math.unit(800, "kg"),
  16543. name: "Side (Armored)",
  16544. image: {
  16545. source: "./media/characters/venio-darcony/side-armored.svg",
  16546. extra: 1373 / 1003,
  16547. bottom: 0.037
  16548. }
  16549. },
  16550. frontArmored: {
  16551. height: math.unit(19, "feet"),
  16552. weight: math.unit(900, "kg"),
  16553. name: "Front (Armored)",
  16554. image: {
  16555. source: "./media/characters/venio-darcony/front-armored.svg"
  16556. }
  16557. },
  16558. backArmored: {
  16559. height: math.unit(19, "feet"),
  16560. weight: math.unit(900, "kg"),
  16561. name: "Back (Armored)",
  16562. image: {
  16563. source: "./media/characters/venio-darcony/back-armored.svg"
  16564. }
  16565. },
  16566. sword: {
  16567. height: math.unit(10, "feet"),
  16568. weight: math.unit(50, "lb"),
  16569. name: "Sword",
  16570. image: {
  16571. source: "./media/characters/venio-darcony/sword.svg"
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(10, "feet")
  16579. },
  16580. {
  16581. name: "Macro",
  16582. height: math.unit(130, "feet"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Macro+",
  16587. height: math.unit(240, "feet")
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(150, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/veski/front.svg",
  16600. extra: 1299 / 1225,
  16601. bottom: 0.04
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(6, "feet"),
  16606. weight: math.unit(150, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/veski/back.svg",
  16610. extra: 1299 / 1225,
  16611. bottom: 0.008
  16612. }
  16613. },
  16614. maw: {
  16615. height: math.unit(1.5 * 1.21, "feet"),
  16616. name: "Maw",
  16617. image: {
  16618. source: "./media/characters/veski/maw.svg"
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Macro",
  16625. height: math.unit(2, "km"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(5 + 7 / 12, "feet"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/isabelle/front.svg",
  16638. extra: 2130 / 1976,
  16639. bottom: 0.05
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Supermicro",
  16646. height: math.unit(10, "micrometers")
  16647. },
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(1, "inch")
  16651. },
  16652. {
  16653. name: "Tiny",
  16654. height: math.unit(5, "inches")
  16655. },
  16656. {
  16657. name: "Standard",
  16658. height: math.unit(5 + 7 / 12, "inches")
  16659. },
  16660. {
  16661. name: "Macro",
  16662. height: math.unit(80, "meters"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Megamacro",
  16667. height: math.unit(250, "meters")
  16668. },
  16669. {
  16670. name: "Gigamacro",
  16671. height: math.unit(5, "km")
  16672. },
  16673. {
  16674. name: "Cosmic",
  16675. height: math.unit(2.5e6, "miles")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/hanzo/front.svg",
  16688. extra: 374 / 344,
  16689. bottom: 0.02
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(8, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(7, "feet"),
  16706. weight: math.unit(130, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/anna/front.svg",
  16710. extra: 169 / 145,
  16711. bottom: 0.06
  16712. }
  16713. },
  16714. full: {
  16715. height: math.unit(4.96, "feet"),
  16716. weight: math.unit(220, "lb"),
  16717. name: "Full",
  16718. image: {
  16719. source: "./media/characters/anna/full.svg",
  16720. extra: 138 / 114,
  16721. bottom: 0.15
  16722. }
  16723. },
  16724. tongue: {
  16725. height: math.unit(2.53, "feet"),
  16726. name: "Tongue",
  16727. image: {
  16728. source: "./media/characters/anna/tongue.svg"
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(7, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(7, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/ian-corvid/front.svg",
  16749. extra: 150 / 142,
  16750. bottom: 0.02
  16751. }
  16752. },
  16753. back: {
  16754. height: math.unit(7, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Back",
  16757. image: {
  16758. source: "./media/characters/ian-corvid/back.svg",
  16759. extra: 150 / 143,
  16760. bottom: 0.01
  16761. }
  16762. },
  16763. stomping: {
  16764. height: math.unit(7, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Stomping",
  16767. image: {
  16768. source: "./media/characters/ian-corvid/stomping.svg",
  16769. extra: 76 / 72
  16770. }
  16771. },
  16772. sitting: {
  16773. height: math.unit(7 / 1.8, "feet"),
  16774. weight: math.unit(150, "lb"),
  16775. name: "Sitting",
  16776. image: {
  16777. source: "./media/characters/ian-corvid/sitting.svg",
  16778. extra: 1400 / 1269,
  16779. bottom: 0.15
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Tiny Microw",
  16786. height: math.unit(1, "inch")
  16787. },
  16788. {
  16789. name: "Microw",
  16790. height: math.unit(6, "inches")
  16791. },
  16792. {
  16793. name: "Crow",
  16794. height: math.unit(7 + 1 / 12, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macrow",
  16799. height: math.unit(176, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(5 + 7 / 12, "feet"),
  16808. weight: math.unit(147, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/natalie-kellon/front.svg",
  16812. extra: 1214 / 1141,
  16813. bottom: 0.02
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Micro",
  16820. height: math.unit(1 / 16, "inch")
  16821. },
  16822. {
  16823. name: "Tiny",
  16824. height: math.unit(4, "inches")
  16825. },
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 7 / 12, "feet"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Amazon",
  16833. height: math.unit(12, "feet")
  16834. },
  16835. {
  16836. name: "Giantess",
  16837. height: math.unit(160, "meters")
  16838. },
  16839. {
  16840. name: "Titaness",
  16841. height: math.unit(800, "meters")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(6, "feet"),
  16850. weight: math.unit(150, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/alluria/front.svg",
  16854. extra: 806 / 738,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. side: {
  16859. height: math.unit(6, "feet"),
  16860. weight: math.unit(150, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/alluria/side.svg",
  16864. extra: 800 / 750,
  16865. }
  16866. },
  16867. back: {
  16868. height: math.unit(6, "feet"),
  16869. weight: math.unit(150, "lb"),
  16870. name: "Back",
  16871. image: {
  16872. source: "./media/characters/alluria/back.svg",
  16873. extra: 806 / 738,
  16874. }
  16875. },
  16876. frontMaid: {
  16877. height: math.unit(6, "feet"),
  16878. weight: math.unit(150, "lb"),
  16879. name: "Front (Maid)",
  16880. image: {
  16881. source: "./media/characters/alluria/front-maid.svg",
  16882. extra: 806 / 738,
  16883. bottom: 0.01
  16884. }
  16885. },
  16886. sideMaid: {
  16887. height: math.unit(6, "feet"),
  16888. weight: math.unit(150, "lb"),
  16889. name: "Side (Maid)",
  16890. image: {
  16891. source: "./media/characters/alluria/side-maid.svg",
  16892. extra: 800 / 750,
  16893. bottom: 0.005
  16894. }
  16895. },
  16896. backMaid: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(150, "lb"),
  16899. name: "Back (Maid)",
  16900. image: {
  16901. source: "./media/characters/alluria/back-maid.svg",
  16902. extra: 806 / 738,
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Micro",
  16909. height: math.unit(6, "inches"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(150, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/kyle/front.svg",
  16923. extra: 1069 / 962,
  16924. bottom: 77.228 / 1727.45
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(150, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(300, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/duncan/front.svg",
  16945. extra: 1650 / 1482,
  16946. bottom: 0.05
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(100, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(5 + 4 / 12, "feet"),
  16963. weight: math.unit(220, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/memory/front.svg",
  16967. extra: 3641 / 3545,
  16968. bottom: 0.03
  16969. }
  16970. },
  16971. back: {
  16972. height: math.unit(5 + 4 / 12, "feet"),
  16973. weight: math.unit(220, "lb"),
  16974. name: "Back",
  16975. image: {
  16976. source: "./media/characters/memory/back.svg",
  16977. extra: 3641 / 3545,
  16978. bottom: 0.025
  16979. }
  16980. },
  16981. frontSkirt: {
  16982. height: math.unit(5 + 4 / 12, "feet"),
  16983. weight: math.unit(220, "lb"),
  16984. name: "Front (Skirt)",
  16985. image: {
  16986. source: "./media/characters/memory/front-skirt.svg",
  16987. extra: 3641 / 3545,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. frontDress: {
  16992. height: math.unit(5 + 4 / 12, "feet"),
  16993. weight: math.unit(220, "lb"),
  16994. name: "Front (Dress)",
  16995. image: {
  16996. source: "./media/characters/memory/front-dress.svg",
  16997. extra: 3641 / 3545,
  16998. bottom: 0.03
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Micro",
  17005. height: math.unit(6, "inches"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(5 + 4 / 12, "feet")
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17016. {
  17017. front: {
  17018. height: math.unit(4 + 11 / 12, "feet"),
  17019. weight: math.unit(100, "lb"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/luno/front.svg",
  17023. extra: 1535 / 1487,
  17024. bottom: 0.03
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Micro",
  17031. height: math.unit(3, "inches")
  17032. },
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(4 + 11 / 12, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Macro",
  17040. height: math.unit(300, "feet")
  17041. },
  17042. {
  17043. name: "Megamacro",
  17044. height: math.unit(700, "miles")
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6 + 2 / 12, "feet"),
  17053. weight: math.unit(170, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/jamesy/front.svg",
  17057. extra: 440 / 382,
  17058. bottom: 0.005
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Micro",
  17065. height: math.unit(3, "inches")
  17066. },
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(6 + 2 / 12, "feet"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Macro",
  17074. height: math.unit(300, "feet")
  17075. },
  17076. {
  17077. name: "Megamacro",
  17078. height: math.unit(700, "miles")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(160, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/mark/front.svg",
  17091. extra: 3300 / 3100,
  17092. bottom: 136.42 / 3440.47
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Macro",
  17099. height: math.unit(120, "meters")
  17100. },
  17101. {
  17102. name: "Bigger Macro",
  17103. height: math.unit(350, "meters")
  17104. },
  17105. {
  17106. name: "Megamacro",
  17107. height: math.unit(8, "km"),
  17108. default: true
  17109. },
  17110. {
  17111. name: "Continental",
  17112. height: math.unit(4550, "km")
  17113. },
  17114. {
  17115. name: "Planetary",
  17116. height: math.unit(65000, "km")
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(400, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/mac/front.svg",
  17129. extra: 1048 / 987.7,
  17130. bottom: 60 / 1107.6,
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Macro",
  17137. height: math.unit(500, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(5 + 2 / 12, "feet"),
  17147. weight: math.unit(190, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/bari/front.svg",
  17151. extra: 3156 / 2880,
  17152. bottom: 0.03
  17153. }
  17154. },
  17155. back: {
  17156. height: math.unit(5 + 2 / 12, "feet"),
  17157. weight: math.unit(190, "lb"),
  17158. name: "Back",
  17159. image: {
  17160. source: "./media/characters/bari/back.svg",
  17161. extra: 3260 / 2834,
  17162. bottom: 0.025
  17163. }
  17164. },
  17165. frontPlush: {
  17166. height: math.unit(5 + 2 / 12, "feet"),
  17167. weight: math.unit(190, "lb"),
  17168. name: "Front (Plush)",
  17169. image: {
  17170. source: "./media/characters/bari/front-plush.svg",
  17171. extra: 1112 / 1061,
  17172. bottom: 0.002
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(3, "inches")
  17180. },
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(5 + 2 / 12, "feet"),
  17184. default: true
  17185. },
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(20, "feet")
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6 + 1 / 12, "feet"),
  17197. weight: math.unit(275, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/hunter-misha-raven/front.svg"
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Mortal",
  17207. height: math.unit(6 + 1 / 12, "feet")
  17208. },
  17209. {
  17210. name: "Divine",
  17211. height: math.unit(1.12134e34, "parsecs"),
  17212. default: true
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(6 + 3 / 12, "feet"),
  17221. weight: math.unit(220, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/max-calore/front.svg",
  17225. extra: 1700 / 1648,
  17226. bottom: 0.01
  17227. }
  17228. },
  17229. back: {
  17230. height: math.unit(6 + 3 / 12, "feet"),
  17231. weight: math.unit(220, "lb"),
  17232. name: "Back",
  17233. image: {
  17234. source: "./media/characters/max-calore/back.svg",
  17235. extra: 1700 / 1648,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(6 + 3 / 12, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17250. {
  17251. side: {
  17252. height: math.unit(2 + 8 / 12, "feet"),
  17253. weight: math.unit(99, "lb"),
  17254. name: "Side",
  17255. image: {
  17256. source: "./media/characters/aspen/side.svg",
  17257. extra: 152 / 138,
  17258. bottom: 0.032
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(2 + 8 / 12, "feet"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17272. {
  17273. side: {
  17274. height: math.unit(3 + 2 / 12, "feet"),
  17275. weight: math.unit(224, "lb"),
  17276. name: "Side",
  17277. image: {
  17278. source: "./media/characters/sheila-feral-wolf/side.svg",
  17279. extra: 179 / 166,
  17280. bottom: 0.03
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(3 + 2 / 12, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17294. {
  17295. side: {
  17296. height: math.unit(1 + 9 / 12, "feet"),
  17297. weight: math.unit(38, "lb"),
  17298. name: "Side",
  17299. image: {
  17300. source: "./media/characters/michelle/side.svg",
  17301. extra: 147 / 136.7,
  17302. bottom: 0.03
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(1 + 9 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(1.54, "feet"),
  17319. weight: math.unit(50, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/nino/front.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(1.54, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(1.49, "feet"),
  17339. weight: math.unit(45, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/viola/front.svg"
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(1.49, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(6 + 5 / 12, "feet"),
  17359. weight: math.unit(580, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/atlas/front.svg",
  17363. extra: 298.5 / 290,
  17364. bottom: 0.015
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(6 + 5 / 12, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17378. {
  17379. side: {
  17380. height: math.unit(15.6, "inches"),
  17381. weight: math.unit(10, "lb"),
  17382. name: "Side",
  17383. image: {
  17384. source: "./media/characters/davy/side.svg",
  17385. extra: 200 / 170,
  17386. bottom: 0.01
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(15.6, "inches"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17400. {
  17401. side: {
  17402. height: math.unit(4 + 8 / 12, "feet"),
  17403. weight: math.unit(166, "lb"),
  17404. name: "Side",
  17405. image: {
  17406. source: "./media/characters/fiona/side.svg",
  17407. extra: 232 / 220,
  17408. bottom: 0.03
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(4 + 8 / 12, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17422. {
  17423. front: {
  17424. height: math.unit(26, "inches"),
  17425. weight: math.unit(35, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/lyla/front.svg",
  17429. bottom: 0.1
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(3, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17443. {
  17444. side: {
  17445. height: math.unit(1.8, "feet"),
  17446. weight: math.unit(44, "lb"),
  17447. name: "Side",
  17448. image: {
  17449. source: "./media/characters/perseus/side.svg",
  17450. bottom: 0.21
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(1.8, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17464. {
  17465. side: {
  17466. height: math.unit(4 + 2 / 12, "feet"),
  17467. weight: math.unit(20, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/remus/side.svg"
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(4 + 2 / 12, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(4 + 11 / 12, "feet"),
  17487. weight: math.unit(114, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/raf/front.svg",
  17491. extra: 1504/1339,
  17492. bottom: 26/1530
  17493. }
  17494. },
  17495. side: {
  17496. height: math.unit(4 + 11 / 12, "feet"),
  17497. weight: math.unit(114, "lb"),
  17498. name: "Side",
  17499. image: {
  17500. source: "./media/characters/raf/side.svg",
  17501. extra: 1466/1316,
  17502. bottom: 29/1495
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(2, "inches")
  17510. },
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(4 + 11 / 12, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(70, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(1.5, "meters"),
  17527. weight: math.unit(68, "kg"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/liam-einarr/front.svg",
  17531. extra: 2822 / 2666
  17532. }
  17533. },
  17534. back: {
  17535. height: math.unit(1.5, "meters"),
  17536. weight: math.unit(68, "kg"),
  17537. name: "Back",
  17538. image: {
  17539. source: "./media/characters/liam-einarr/back.svg",
  17540. extra: 2822 / 2666,
  17541. bottom: 0.015
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(1.5, "meters"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(150, "meters")
  17554. },
  17555. {
  17556. name: "Megamacro",
  17557. height: math.unit(35, "km")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6, "feet"),
  17566. weight: math.unit(75, "kg"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/linda/front.svg",
  17570. extra: 930 / 874,
  17571. bottom: 0.004
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(6, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6 + 8 / 12, "feet"),
  17588. weight: math.unit(220, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/caylex/front.svg",
  17592. extra: 821 / 772,
  17593. bottom: 0.07
  17594. }
  17595. },
  17596. back: {
  17597. height: math.unit(6 + 8 / 12, "feet"),
  17598. weight: math.unit(220, "lb"),
  17599. name: "Back",
  17600. image: {
  17601. source: "./media/characters/caylex/back.svg",
  17602. extra: 821 / 772,
  17603. bottom: 0.022
  17604. }
  17605. },
  17606. hand: {
  17607. height: math.unit(1.25, "feet"),
  17608. name: "Hand",
  17609. image: {
  17610. source: "./media/characters/caylex/hand.svg"
  17611. }
  17612. },
  17613. foot: {
  17614. height: math.unit(1.6, "feet"),
  17615. name: "Foot",
  17616. image: {
  17617. source: "./media/characters/caylex/foot.svg"
  17618. }
  17619. },
  17620. armored: {
  17621. height: math.unit(6 + 8 / 12, "feet"),
  17622. weight: math.unit(250, "lb"),
  17623. name: "Armored",
  17624. image: {
  17625. source: "./media/characters/caylex/armored.svg",
  17626. extra: 1420 / 1310,
  17627. bottom: 0.045
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(6 + 8 / 12, "feet"),
  17635. default: true
  17636. },
  17637. {
  17638. name: "Normal+",
  17639. height: math.unit(12, "feet")
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(7 + 6 / 12, "feet"),
  17648. weight: math.unit(288, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/alana/front.svg",
  17652. extra: 679 / 653,
  17653. bottom: 22.5 / 701
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(7 + 6 / 12, "feet")
  17661. },
  17662. {
  17663. name: "Large",
  17664. height: math.unit(50, "feet")
  17665. },
  17666. {
  17667. name: "Macro",
  17668. height: math.unit(100, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Macro+",
  17673. height: math.unit(200, "feet")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(6 + 1 / 12, "feet"),
  17682. weight: math.unit(210, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/hasani/front.svg",
  17686. extra: 244 / 232,
  17687. bottom: 0.01
  17688. }
  17689. },
  17690. back: {
  17691. height: math.unit(6 + 1 / 12, "feet"),
  17692. weight: math.unit(210, "lb"),
  17693. name: "Back",
  17694. image: {
  17695. source: "./media/characters/hasani/back.svg",
  17696. extra: 244 / 232,
  17697. bottom: 0.01
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6 + 1 / 12, "feet")
  17705. },
  17706. {
  17707. name: "Macro",
  17708. height: math.unit(175, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(1.82, "meters"),
  17718. weight: math.unit(140, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/nita/front.svg",
  17722. extra: 2473 / 2363,
  17723. bottom: 0.01
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(1.82, "m")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(300, "m")
  17735. },
  17736. {
  17737. name: "Mistake Canon",
  17738. height: math.unit(0.5, "miles"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Big Mistake",
  17743. height: math.unit(13, "miles")
  17744. },
  17745. {
  17746. name: "Playing God",
  17747. height: math.unit(2450, "miles")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(4, "feet"),
  17756. weight: math.unit(120, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/shiriko/front.svg",
  17760. extra: 970/934,
  17761. bottom: 5/975
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(4, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(6, "feet"),
  17778. name: "front",
  17779. image: {
  17780. source: "./media/characters/deja/front.svg",
  17781. extra: 926 / 840,
  17782. bottom: 0.07
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Planck Length",
  17789. height: math.unit(1.6e-35, "meters")
  17790. },
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(30.48, "meters"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Universal",
  17798. height: math.unit(8.8e26, "meters")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17804. {
  17805. side: {
  17806. height: math.unit(8, "feet"),
  17807. weight: math.unit(6300, "lb"),
  17808. name: "Side",
  17809. image: {
  17810. source: "./media/characters/anima/side.svg",
  17811. bottom: 0.035
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(8, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(8, "feet"),
  17828. weight: math.unit(350, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/bianca/front.svg",
  17832. extra: 234 / 225,
  17833. bottom: 0.03
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(8, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(6, "feet"),
  17850. weight: math.unit(150, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/adinia/front.svg",
  17854. extra: 1845 / 1672,
  17855. bottom: 0.02
  17856. }
  17857. },
  17858. back: {
  17859. height: math.unit(6, "feet"),
  17860. weight: math.unit(150, "lb"),
  17861. name: "Back",
  17862. image: {
  17863. source: "./media/characters/adinia/back.svg",
  17864. extra: 1845 / 1672,
  17865. bottom: 0.002
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(11 + 5 / 12, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(3, "meters"),
  17882. weight: math.unit(200, "kg"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/lykasa/front.svg",
  17886. extra: 1076 / 976,
  17887. bottom: 0.06
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(3, "meters")
  17895. },
  17896. {
  17897. name: "Kaiju",
  17898. height: math.unit(120, "meters"),
  17899. default: true
  17900. },
  17901. {
  17902. name: "Mega Kaiju",
  17903. height: math.unit(240, "km")
  17904. },
  17905. {
  17906. name: "Giga Kaiju",
  17907. height: math.unit(400, "megameters")
  17908. },
  17909. {
  17910. name: "Tera Kaiju",
  17911. height: math.unit(800, "gigameters")
  17912. },
  17913. {
  17914. name: "Kaiju Dragon Goddess",
  17915. height: math.unit(26, "zettaparsecs")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17921. {
  17922. side: {
  17923. height: math.unit(283 / 124 * 6, "feet"),
  17924. weight: math.unit(35000, "lb"),
  17925. name: "Side",
  17926. image: {
  17927. source: "./media/characters/malfaren/side.svg",
  17928. extra: 1310/529,
  17929. bottom: 24/1334
  17930. }
  17931. },
  17932. front: {
  17933. height: math.unit(22.36, "feet"),
  17934. weight: math.unit(35000, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/malfaren/front.svg",
  17938. extra: 1237/1115,
  17939. bottom: 32/1269
  17940. }
  17941. },
  17942. maw: {
  17943. height: math.unit(6.9, "feet"),
  17944. name: "Maw",
  17945. image: {
  17946. source: "./media/characters/malfaren/maw.svg"
  17947. }
  17948. },
  17949. dick: {
  17950. height: math.unit(6.19, "feet"),
  17951. name: "Dick",
  17952. image: {
  17953. source: "./media/characters/malfaren/dick.svg"
  17954. }
  17955. },
  17956. eye: {
  17957. height: math.unit(0.69, "feet"),
  17958. name: "Eye",
  17959. image: {
  17960. source: "./media/characters/malfaren/eye.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Big",
  17967. height: math.unit(283 / 162 * 6, "feet"),
  17968. },
  17969. {
  17970. name: "Bigger",
  17971. height: math.unit(283 / 124 * 6, "feet")
  17972. },
  17973. {
  17974. name: "Massive",
  17975. height: math.unit(283 / 92 * 6, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "👀💦",
  17980. height: math.unit(283 / 73 * 6, "feet"),
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(1.7, "m"),
  17989. weight: math.unit(70, "kg"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/kernel/front.svg",
  17993. extra: 222 / 210,
  17994. bottom: 0.007
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Nano",
  18001. height: math.unit(17, "micrometers")
  18002. },
  18003. {
  18004. name: "Micro",
  18005. height: math.unit(1.7, "mm")
  18006. },
  18007. {
  18008. name: "Small",
  18009. height: math.unit(1.7, "cm")
  18010. },
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(1.7, "m"),
  18014. default: true
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(1.75, "meters"),
  18023. weight: math.unit(65, "kg"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/jayne-folest/front.svg",
  18027. extra: 2115 / 2007,
  18028. bottom: 0.02
  18029. }
  18030. },
  18031. back: {
  18032. height: math.unit(1.75, "meters"),
  18033. weight: math.unit(65, "kg"),
  18034. name: "Back",
  18035. image: {
  18036. source: "./media/characters/jayne-folest/back.svg",
  18037. extra: 2115 / 2007,
  18038. bottom: 0.005
  18039. }
  18040. },
  18041. frontClothed: {
  18042. height: math.unit(1.75, "meters"),
  18043. weight: math.unit(65, "kg"),
  18044. name: "Front (Clothed)",
  18045. image: {
  18046. source: "./media/characters/jayne-folest/front-clothed.svg",
  18047. extra: 2115 / 2007,
  18048. bottom: 0.035
  18049. }
  18050. },
  18051. hand: {
  18052. height: math.unit(1 / 1.260, "feet"),
  18053. name: "Hand",
  18054. image: {
  18055. source: "./media/characters/jayne-folest/hand.svg"
  18056. }
  18057. },
  18058. foot: {
  18059. height: math.unit(1 / 0.918, "feet"),
  18060. name: "Foot",
  18061. image: {
  18062. source: "./media/characters/jayne-folest/foot.svg"
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(4, "cm")
  18070. },
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(1.75, "meters")
  18074. },
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(47.5, "meters"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(180, "cm"),
  18087. weight: math.unit(70, "kg"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/algier/front.svg",
  18091. extra: 596 / 572,
  18092. bottom: 0.04
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(180, "cm"),
  18097. weight: math.unit(70, "kg"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/algier/back.svg",
  18101. extra: 596 / 572,
  18102. bottom: 0.025
  18103. }
  18104. },
  18105. frontdressed: {
  18106. height: math.unit(180, "cm"),
  18107. weight: math.unit(150, "kg"),
  18108. name: "Front-dressed",
  18109. image: {
  18110. source: "./media/characters/algier/front-dressed.svg",
  18111. extra: 596 / 572,
  18112. bottom: 0.038
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(5, "cm")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(180, "cm"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(64, "m")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18134. {
  18135. upright: {
  18136. height: math.unit(7, "feet"),
  18137. weight: math.unit(300, "lb"),
  18138. name: "Upright",
  18139. image: {
  18140. source: "./media/characters/pretzel/upright.svg",
  18141. extra: 534 / 522,
  18142. bottom: 0.065
  18143. }
  18144. },
  18145. sprawling: {
  18146. height: math.unit(3.75, "feet"),
  18147. weight: math.unit(300, "lb"),
  18148. name: "Sprawling",
  18149. image: {
  18150. source: "./media/characters/pretzel/sprawling.svg",
  18151. extra: 314 / 281,
  18152. bottom: 0.1
  18153. }
  18154. },
  18155. tongue: {
  18156. height: math.unit(2, "feet"),
  18157. name: "Tongue",
  18158. image: {
  18159. source: "./media/characters/pretzel/tongue.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(7, "feet"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Oversized",
  18171. height: math.unit(15, "feet")
  18172. },
  18173. {
  18174. name: "Huge",
  18175. height: math.unit(30, "feet")
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(250, "feet")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18185. {
  18186. sideFront: {
  18187. height: math.unit(5 + 2 / 12, "feet"),
  18188. weight: math.unit(120, "lb"),
  18189. name: "Front Side",
  18190. image: {
  18191. source: "./media/characters/roxi/side-front.svg",
  18192. extra: 2924 / 2717,
  18193. bottom: 0.08
  18194. }
  18195. },
  18196. sideBack: {
  18197. height: math.unit(5 + 2 / 12, "feet"),
  18198. weight: math.unit(120, "lb"),
  18199. name: "Back Side",
  18200. image: {
  18201. source: "./media/characters/roxi/side-back.svg",
  18202. extra: 2904 / 2693,
  18203. bottom: 0.06
  18204. }
  18205. },
  18206. front: {
  18207. height: math.unit(5 + 2 / 12, "feet"),
  18208. weight: math.unit(120, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/roxi/front.svg",
  18212. extra: 2028 / 1907,
  18213. bottom: 0.01
  18214. }
  18215. },
  18216. frontAlt: {
  18217. height: math.unit(5 + 2 / 12, "feet"),
  18218. weight: math.unit(120, "lb"),
  18219. name: "Front (Alt)",
  18220. image: {
  18221. source: "./media/characters/roxi/front-alt.svg",
  18222. extra: 1828 / 1798,
  18223. bottom: 0.01
  18224. }
  18225. },
  18226. sitting: {
  18227. height: math.unit(2.8, "feet"),
  18228. weight: math.unit(120, "lb"),
  18229. name: "Sitting",
  18230. image: {
  18231. source: "./media/characters/roxi/sitting.svg",
  18232. extra: 2660 / 2462,
  18233. bottom: 0.1
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(5 + 2 / 12, "feet"),
  18241. default: true
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18247. {
  18248. side: {
  18249. height: math.unit(55, "feet"),
  18250. weight: math.unit(153, "tons"),
  18251. name: "Side",
  18252. image: {
  18253. source: "./media/characters/shadow/side.svg",
  18254. extra: 701 / 628,
  18255. bottom: 0.02
  18256. }
  18257. },
  18258. flying: {
  18259. height: math.unit(145, "feet"),
  18260. weight: math.unit(153, "tons"),
  18261. name: "Flying",
  18262. image: {
  18263. source: "./media/characters/shadow/flying.svg"
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(55, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6, "feet"),
  18280. weight: math.unit(200, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/marcie/front.svg",
  18284. extra: 960 / 876,
  18285. bottom: 58 / 1017.87
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(1, "mile"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(7, "feet"),
  18302. weight: math.unit(200, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/kachina/front.svg",
  18306. extra: 1290.68 / 1119,
  18307. bottom: 36.5 / 1327.18
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(7, "feet"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18321. {
  18322. looking: {
  18323. height: math.unit(2, "meters"),
  18324. weight: math.unit(300, "kg"),
  18325. name: "Looking",
  18326. image: {
  18327. source: "./media/characters/kash/looking.svg",
  18328. extra: 474 / 344,
  18329. bottom: 0.03
  18330. }
  18331. },
  18332. side: {
  18333. height: math.unit(2, "meters"),
  18334. weight: math.unit(300, "kg"),
  18335. name: "Side",
  18336. image: {
  18337. source: "./media/characters/kash/side.svg",
  18338. extra: 302 / 251,
  18339. bottom: 0.03
  18340. }
  18341. },
  18342. front: {
  18343. height: math.unit(2, "meters"),
  18344. weight: math.unit(300, "kg"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/kash/front.svg",
  18348. extra: 495 / 360,
  18349. bottom: 0.015
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(2, "meters"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Big",
  18361. height: math.unit(3, "meters")
  18362. },
  18363. {
  18364. name: "Large",
  18365. height: math.unit(5, "meters")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18371. {
  18372. feeding: {
  18373. height: math.unit(6.7, "feet"),
  18374. weight: math.unit(350, "lb"),
  18375. name: "Feeding",
  18376. image: {
  18377. source: "./media/characters/lalim/feeding.svg",
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(6.7, "feet"),
  18385. default: true
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(9.5, "feet"),
  18394. weight: math.unit(600, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/de'vout/front.svg",
  18398. extra: 1443 / 1328,
  18399. bottom: 0.025
  18400. }
  18401. },
  18402. back: {
  18403. height: math.unit(9.5, "feet"),
  18404. weight: math.unit(600, "lb"),
  18405. name: "Back",
  18406. image: {
  18407. source: "./media/characters/de'vout/back.svg",
  18408. extra: 1443 / 1328
  18409. }
  18410. },
  18411. frontDressed: {
  18412. height: math.unit(9.5, "feet"),
  18413. weight: math.unit(600, "lb"),
  18414. name: "Front (Dressed",
  18415. image: {
  18416. source: "./media/characters/de'vout/front-dressed.svg",
  18417. extra: 1443 / 1328,
  18418. bottom: 0.025
  18419. }
  18420. },
  18421. backDressed: {
  18422. height: math.unit(9.5, "feet"),
  18423. weight: math.unit(600, "lb"),
  18424. name: "Back (Dressed",
  18425. image: {
  18426. source: "./media/characters/de'vout/back-dressed.svg",
  18427. extra: 1443 / 1328
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(9.5, "feet"),
  18435. default: true
  18436. },
  18437. ]
  18438. ))
  18439. characterMakers.push(() => makeCharacter(
  18440. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18441. {
  18442. front: {
  18443. height: math.unit(8, "feet"),
  18444. weight: math.unit(225, "lb"),
  18445. name: "Front",
  18446. image: {
  18447. source: "./media/characters/talana/front.svg",
  18448. extra: 1410 / 1300,
  18449. bottom: 0.015
  18450. }
  18451. },
  18452. frontDressed: {
  18453. height: math.unit(8, "feet"),
  18454. weight: math.unit(225, "lb"),
  18455. name: "Front (Dressed",
  18456. image: {
  18457. source: "./media/characters/talana/front-dressed.svg",
  18458. extra: 1410 / 1300,
  18459. bottom: 0.015
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(8, "feet"),
  18467. default: true
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18473. {
  18474. side: {
  18475. height: math.unit(7.2, "feet"),
  18476. weight: math.unit(150, "lb"),
  18477. name: "Side",
  18478. image: {
  18479. source: "./media/characters/xeauvok/side.svg",
  18480. extra: 1975 / 1523,
  18481. bottom: 0.07
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(7.2, "feet"),
  18489. default: true
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18495. {
  18496. side: {
  18497. height: math.unit(10, "feet"),
  18498. weight: math.unit(900, "kg"),
  18499. name: "Side",
  18500. image: {
  18501. source: "./media/characters/zara/side.svg",
  18502. extra: 504 / 498
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(10, "feet"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18516. {
  18517. side: {
  18518. height: math.unit(6, "feet"),
  18519. weight: math.unit(150, "lb"),
  18520. name: "Side",
  18521. image: {
  18522. source: "./media/characters/richard-dragon/side.svg",
  18523. extra: 845 / 340,
  18524. bottom: 0.017
  18525. }
  18526. },
  18527. maw: {
  18528. height: math.unit(2.97, "feet"),
  18529. name: "Maw",
  18530. image: {
  18531. source: "./media/characters/richard-dragon/maw.svg"
  18532. }
  18533. },
  18534. },
  18535. [
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(4, "feet"),
  18543. weight: math.unit(100, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/richard-smeargle/front.svg",
  18547. extra: 2952 / 2820,
  18548. bottom: 0.028
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(4, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Dynamax",
  18560. height: math.unit(20, "meters")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(6, "feet"),
  18569. weight: math.unit(110, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/klay/front.svg",
  18573. extra: 962 / 883,
  18574. bottom: 0.04
  18575. }
  18576. },
  18577. back: {
  18578. height: math.unit(6, "feet"),
  18579. weight: math.unit(110, "lb"),
  18580. name: "Back",
  18581. image: {
  18582. source: "./media/characters/klay/back.svg",
  18583. extra: 962 / 883
  18584. }
  18585. },
  18586. beans: {
  18587. height: math.unit(1.15, "feet"),
  18588. name: "Beans",
  18589. image: {
  18590. source: "./media/characters/klay/beans.svg"
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Micro",
  18597. height: math.unit(6, "inches")
  18598. },
  18599. {
  18600. name: "Mini",
  18601. height: math.unit(3, "feet")
  18602. },
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6, "feet"),
  18606. default: true
  18607. },
  18608. {
  18609. name: "Big",
  18610. height: math.unit(25, "feet")
  18611. },
  18612. {
  18613. name: "Macro",
  18614. height: math.unit(100, "feet")
  18615. },
  18616. {
  18617. name: "Megamacro",
  18618. height: math.unit(400, "feet")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6, "feet"),
  18627. weight: math.unit(160, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/marcus/front.svg",
  18631. extra: 734 / 676,
  18632. bottom: 0.03
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Little",
  18639. height: math.unit(6, "feet")
  18640. },
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(110, "feet"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Macro",
  18648. height: math.unit(250, "feet")
  18649. },
  18650. {
  18651. name: "Megamacro",
  18652. height: math.unit(1000, "feet")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(7, "feet"),
  18661. weight: math.unit(275, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/claude-delroute/front.svg",
  18665. extra: 902/827,
  18666. bottom: 26/928
  18667. }
  18668. },
  18669. side: {
  18670. height: math.unit(7, "feet"),
  18671. weight: math.unit(275, "lb"),
  18672. name: "Side",
  18673. image: {
  18674. source: "./media/characters/claude-delroute/side.svg",
  18675. extra: 908/853,
  18676. bottom: 16/924
  18677. }
  18678. },
  18679. back: {
  18680. height: math.unit(7, "feet"),
  18681. weight: math.unit(275, "lb"),
  18682. name: "Back",
  18683. image: {
  18684. source: "./media/characters/claude-delroute/back.svg",
  18685. extra: 911/829,
  18686. bottom: 18/929
  18687. }
  18688. },
  18689. maw: {
  18690. height: math.unit(0.6407, "meters"),
  18691. name: "Maw",
  18692. image: {
  18693. source: "./media/characters/claude-delroute/maw.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(7, "feet"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Lorge",
  18705. height: math.unit(20, "feet")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(8 + 4 / 12, "feet"),
  18714. weight: math.unit(600, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/dragonien/front.svg",
  18718. extra: 100 / 94,
  18719. bottom: 3.3 / 103.3445
  18720. }
  18721. },
  18722. back: {
  18723. height: math.unit(8 + 4 / 12, "feet"),
  18724. weight: math.unit(600, "lb"),
  18725. name: "Back",
  18726. image: {
  18727. source: "./media/characters/dragonien/back.svg",
  18728. extra: 776 / 746,
  18729. bottom: 6.4 / 782.0616
  18730. }
  18731. },
  18732. foot: {
  18733. height: math.unit(1.54, "feet"),
  18734. name: "Foot",
  18735. image: {
  18736. source: "./media/characters/dragonien/foot.svg",
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(8 + 4 / 12, "feet"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(200, "feet")
  18749. },
  18750. {
  18751. name: "Megamacro",
  18752. height: math.unit(1, "mile")
  18753. },
  18754. {
  18755. name: "Gigamacro",
  18756. height: math.unit(1000, "miles")
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(5 + 2 / 12, "feet"),
  18765. weight: math.unit(110, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/desta/front.svg",
  18769. extra: 767 / 726,
  18770. bottom: 11.7 / 779
  18771. }
  18772. },
  18773. back: {
  18774. height: math.unit(5 + 2 / 12, "feet"),
  18775. weight: math.unit(110, "lb"),
  18776. name: "Back",
  18777. image: {
  18778. source: "./media/characters/desta/back.svg",
  18779. extra: 777 / 728,
  18780. bottom: 6 / 784
  18781. }
  18782. },
  18783. frontAlt: {
  18784. height: math.unit(5 + 2 / 12, "feet"),
  18785. weight: math.unit(110, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/desta/front-alt.svg",
  18789. extra: 1482 / 1417
  18790. }
  18791. },
  18792. side: {
  18793. height: math.unit(5 + 2 / 12, "feet"),
  18794. weight: math.unit(110, "lb"),
  18795. name: "Side",
  18796. image: {
  18797. source: "./media/characters/desta/side.svg",
  18798. extra: 2579 / 2491,
  18799. bottom: 0.053
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Micro",
  18806. height: math.unit(6, "inches")
  18807. },
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(5 + 2 / 12, "feet"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(62, "feet")
  18816. },
  18817. {
  18818. name: "Megamacro",
  18819. height: math.unit(1800, "feet")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(10, "feet"),
  18828. weight: math.unit(700, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/storm-alystar/front.svg",
  18832. extra: 2112 / 1898,
  18833. bottom: 0.034
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Micro",
  18840. height: math.unit(3.5, "inches")
  18841. },
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(10, "feet"),
  18845. default: true
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(400, "feet")
  18850. },
  18851. {
  18852. name: "Deific",
  18853. height: math.unit(60, "miles")
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(2.35, "meters"),
  18862. weight: math.unit(119, "kg"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/ilia/front.svg",
  18866. extra: 1285 / 1255,
  18867. bottom: 0.06
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(2.35, "meters")
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(140, "meters"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(100, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6 + 5 / 12, "feet"),
  18892. weight: math.unit(190, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/kingdead/front.svg",
  18896. extra: 1228 / 1177
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Micro",
  18903. height: math.unit(7, "inches")
  18904. },
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(6 + 5 / 12, "feet")
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(150, "feet"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Megamacro",
  18916. height: math.unit(200, "miles")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(8, "feet"),
  18925. weight: math.unit(600, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/kyrehx/front.svg",
  18929. extra: 1195 / 1095,
  18930. bottom: 0.034
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(2, "inches")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(8, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(255, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18955. weight: math.unit(184, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/xang/front.svg",
  18959. extra: 845 / 755
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18967. default: true
  18968. },
  18969. {
  18970. name: "Macro",
  18971. height: math.unit(0.935 * 146, "feet")
  18972. },
  18973. {
  18974. name: "Megamacro",
  18975. height: math.unit(0.935 * 3, "miles")
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18981. {
  18982. frontDressed: {
  18983. height: math.unit(5 + 7 / 12, "feet"),
  18984. weight: math.unit(140, "lb"),
  18985. name: "Front (Dressed)",
  18986. image: {
  18987. source: "./media/characters/doc-weardno/front-dressed.svg",
  18988. extra: 263 / 234
  18989. }
  18990. },
  18991. backDressed: {
  18992. height: math.unit(5 + 7 / 12, "feet"),
  18993. weight: math.unit(140, "lb"),
  18994. name: "Back (Dressed)",
  18995. image: {
  18996. source: "./media/characters/doc-weardno/back-dressed.svg",
  18997. extra: 266 / 238
  18998. }
  18999. },
  19000. front: {
  19001. height: math.unit(5 + 7 / 12, "feet"),
  19002. weight: math.unit(140, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/doc-weardno/front.svg",
  19006. extra: 254 / 233
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(3, "inches")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(5 + 7 / 12, "feet"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(25, "feet")
  19023. },
  19024. {
  19025. name: "Megamacro",
  19026. height: math.unit(2, "miles")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(6 + 2 / 12, "feet"),
  19035. weight: math.unit(153, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/seth-whilst/front.svg",
  19039. bottom: 0.07
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Micro",
  19046. height: math.unit(5, "inches")
  19047. },
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(6 + 2 / 12, "feet"),
  19051. default: true
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(3, "inches"),
  19060. weight: math.unit(8, "grams"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/pocket-jabari/front.svg",
  19064. extra: 1024 / 974,
  19065. bottom: 0.039
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Minimicro",
  19072. height: math.unit(8, "mm")
  19073. },
  19074. {
  19075. name: "Micro",
  19076. height: math.unit(3, "inches"),
  19077. default: true
  19078. },
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(3, "feet")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(15, "feet"),
  19090. weight: math.unit(3280, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/sapphy/front.svg",
  19094. extra: 671 / 577,
  19095. bottom: 0.085
  19096. }
  19097. },
  19098. back: {
  19099. height: math.unit(15, "feet"),
  19100. weight: math.unit(3280, "lb"),
  19101. name: "Back",
  19102. image: {
  19103. source: "./media/characters/sapphy/back.svg",
  19104. extra: 631 / 607,
  19105. bottom: 0.045
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(15, "feet")
  19113. },
  19114. {
  19115. name: "Casual Macro",
  19116. height: math.unit(120, "feet")
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(2150, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Megamacro",
  19125. height: math.unit(8, "miles")
  19126. },
  19127. {
  19128. name: "Galaxy Mom",
  19129. height: math.unit(6, "megalightyears")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6, "feet"),
  19138. weight: math.unit(170, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/kiro/front.svg",
  19142. extra: 1064 / 1012,
  19143. bottom: 0.052
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Micro",
  19150. height: math.unit(6, "inches")
  19151. },
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(6, "feet"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(72, "feet")
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(5 + 9 / 12, "feet"),
  19168. weight: math.unit(175, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/irishfox/front.svg",
  19172. extra: 1912 / 1680,
  19173. bottom: 0.02
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Nano",
  19180. height: math.unit(1, "mm")
  19181. },
  19182. {
  19183. name: "Micro",
  19184. height: math.unit(2, "inches")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(5 + 9 / 12, "feet"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Macro",
  19193. height: math.unit(45, "feet")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(6 + 1 / 12, "feet"),
  19202. weight: math.unit(75, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/aronai-sieyes/front.svg",
  19206. extra: 1532/1450,
  19207. bottom: 42/1574
  19208. }
  19209. },
  19210. side: {
  19211. height: math.unit(6 + 1 / 12, "feet"),
  19212. weight: math.unit(75, "lb"),
  19213. name: "Side",
  19214. image: {
  19215. source: "./media/characters/aronai-sieyes/side.svg",
  19216. extra: 1422/1365,
  19217. bottom: 148/1570
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(6 + 1 / 12, "feet"),
  19222. weight: math.unit(75, "lb"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/aronai-sieyes/back.svg",
  19226. extra: 1526/1464,
  19227. bottom: 51/1577
  19228. }
  19229. },
  19230. dressed: {
  19231. height: math.unit(6 + 1 / 12, "feet"),
  19232. weight: math.unit(75, "lb"),
  19233. name: "Dressed",
  19234. image: {
  19235. source: "./media/characters/aronai-sieyes/dressed.svg",
  19236. extra: 1559/1483,
  19237. bottom: 39/1598
  19238. }
  19239. },
  19240. slit: {
  19241. height: math.unit(1.3, "feet"),
  19242. name: "Slit",
  19243. image: {
  19244. source: "./media/characters/aronai-sieyes/slit.svg"
  19245. }
  19246. },
  19247. slitSpread: {
  19248. height: math.unit(0.9, "feet"),
  19249. name: "Slit (Spread)",
  19250. image: {
  19251. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19252. }
  19253. },
  19254. rump: {
  19255. height: math.unit(1.3, "feet"),
  19256. name: "Rump",
  19257. image: {
  19258. source: "./media/characters/aronai-sieyes/rump.svg"
  19259. }
  19260. },
  19261. maw: {
  19262. height: math.unit(1.25, "feet"),
  19263. name: "Maw",
  19264. image: {
  19265. source: "./media/characters/aronai-sieyes/maw.svg"
  19266. }
  19267. },
  19268. feral: {
  19269. height: math.unit(18, "feet"),
  19270. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19271. name: "Feral",
  19272. image: {
  19273. source: "./media/characters/aronai-sieyes/feral.svg",
  19274. extra: 1530 / 1240,
  19275. bottom: 0.035
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Micro",
  19282. height: math.unit(2, "inches")
  19283. },
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(6 + 1 / 12, "feet"),
  19287. default: true
  19288. }
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(12, "feet"),
  19296. weight: math.unit(410, "kg"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/xuna/front.svg",
  19300. extra: 2184 / 1980
  19301. }
  19302. },
  19303. side: {
  19304. height: math.unit(12, "feet"),
  19305. weight: math.unit(410, "kg"),
  19306. name: "Side",
  19307. image: {
  19308. source: "./media/characters/xuna/side.svg",
  19309. extra: 2184 / 1980
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(12, "feet"),
  19314. weight: math.unit(410, "kg"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/xuna/back.svg",
  19318. extra: 2184 / 1980
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Nano glow",
  19325. height: math.unit(10, "nm")
  19326. },
  19327. {
  19328. name: "Micro floof",
  19329. height: math.unit(0.3, "m")
  19330. },
  19331. {
  19332. name: "Huggable softy boi",
  19333. height: math.unit(3.6576, "m"),
  19334. default: true
  19335. },
  19336. {
  19337. name: "Admirable floof",
  19338. height: math.unit(80, "meters")
  19339. },
  19340. {
  19341. name: "Gentle macro",
  19342. height: math.unit(300, "meters")
  19343. },
  19344. {
  19345. name: "Very careful floof",
  19346. height: math.unit(3200, "meters")
  19347. },
  19348. {
  19349. name: "The mega floof",
  19350. height: math.unit(36000, "meters")
  19351. },
  19352. {
  19353. name: "Giga-fur-Wicker",
  19354. height: math.unit(4800000, "meters")
  19355. },
  19356. {
  19357. name: "Licky world",
  19358. height: math.unit(20000000, "meters")
  19359. },
  19360. {
  19361. name: "Floofy cyan sun",
  19362. height: math.unit(1500000000, "meters")
  19363. },
  19364. {
  19365. name: "Milky Wicker",
  19366. height: math.unit(1000000000000000000000, "meters")
  19367. },
  19368. {
  19369. name: "The observing Wicker",
  19370. height: math.unit(999999999999999999999999999, "meters")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(5 + 9 / 12, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/arokha-sieyes/front.svg",
  19383. extra: 1425 / 1284,
  19384. bottom: 0.05
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(5 + 9 / 12, "feet")
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(30, "meters"),
  19396. default: true
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19402. {
  19403. front: {
  19404. height: math.unit(6, "feet"),
  19405. weight: math.unit(180, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/arokh-sieyes/front.svg",
  19409. extra: 1830 / 1769,
  19410. bottom: 0.01
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(6, "feet")
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(30, "meters"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19428. {
  19429. side: {
  19430. height: math.unit(13 + 1 / 12, "feet"),
  19431. weight: math.unit(8.5, "tonnes"),
  19432. name: "Side",
  19433. image: {
  19434. source: "./media/characters/goldeneye/side.svg",
  19435. extra: 1182 / 778,
  19436. bottom: 0.067
  19437. }
  19438. },
  19439. paw: {
  19440. height: math.unit(3.4, "feet"),
  19441. name: "Paw",
  19442. image: {
  19443. source: "./media/characters/goldeneye/paw.svg"
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(13 + 1 / 12, "feet"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19457. {
  19458. front: {
  19459. height: math.unit(6 + 1 / 12, "feet"),
  19460. weight: math.unit(210, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/leonardo-lycheborne/front.svg",
  19464. extra: 776/723,
  19465. bottom: 34/810
  19466. }
  19467. },
  19468. side: {
  19469. height: math.unit(6 + 1 / 12, "feet"),
  19470. weight: math.unit(210, "lb"),
  19471. name: "Side",
  19472. image: {
  19473. source: "./media/characters/leonardo-lycheborne/side.svg",
  19474. extra: 780/728,
  19475. bottom: 12/792
  19476. }
  19477. },
  19478. back: {
  19479. height: math.unit(6 + 1 / 12, "feet"),
  19480. weight: math.unit(210, "lb"),
  19481. name: "Back",
  19482. image: {
  19483. source: "./media/characters/leonardo-lycheborne/back.svg",
  19484. extra: 775/721,
  19485. bottom: 17/792
  19486. }
  19487. },
  19488. hand: {
  19489. height: math.unit(1.08, "feet"),
  19490. name: "Hand",
  19491. image: {
  19492. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19493. }
  19494. },
  19495. foot: {
  19496. height: math.unit(1.32, "feet"),
  19497. name: "Foot",
  19498. image: {
  19499. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19500. }
  19501. },
  19502. maw: {
  19503. height: math.unit(1, "feet"),
  19504. name: "Maw",
  19505. image: {
  19506. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19507. }
  19508. },
  19509. were: {
  19510. height: math.unit(20, "feet"),
  19511. weight: math.unit(7800, "lb"),
  19512. name: "Were",
  19513. image: {
  19514. source: "./media/characters/leonardo-lycheborne/were.svg",
  19515. extra: 1224/1165,
  19516. bottom: 72/1296
  19517. }
  19518. },
  19519. feral: {
  19520. height: math.unit(7.5, "feet"),
  19521. weight: math.unit(600, "lb"),
  19522. name: "Feral",
  19523. image: {
  19524. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19525. extra: 797/702,
  19526. bottom: 139/936
  19527. }
  19528. },
  19529. taur: {
  19530. height: math.unit(11, "feet"),
  19531. weight: math.unit(3300, "lb"),
  19532. name: "Taur",
  19533. image: {
  19534. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19535. extra: 1271/1197,
  19536. bottom: 47/1318
  19537. }
  19538. },
  19539. barghest: {
  19540. height: math.unit(11, "feet"),
  19541. weight: math.unit(1300, "lb"),
  19542. name: "Barghest",
  19543. image: {
  19544. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19545. extra: 1291/1204,
  19546. bottom: 37/1328
  19547. }
  19548. },
  19549. dick: {
  19550. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19551. name: "Dick",
  19552. image: {
  19553. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19554. }
  19555. },
  19556. dickWere: {
  19557. height: math.unit((20) / 3.8, "feet"),
  19558. name: "Dick (Were)",
  19559. image: {
  19560. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(6 + 1 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(10, "feet"),
  19577. weight: math.unit(350, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/jet/front.svg",
  19581. extra: 2050 / 1980,
  19582. bottom: 0.013
  19583. }
  19584. },
  19585. back: {
  19586. height: math.unit(10, "feet"),
  19587. weight: math.unit(350, "lb"),
  19588. name: "Back",
  19589. image: {
  19590. source: "./media/characters/jet/back.svg",
  19591. extra: 2050 / 1980,
  19592. bottom: 0.013
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(6, "inches")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(10, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(100, "feet")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(15, "feet"),
  19617. weight: math.unit(2800, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/tanarath/front.svg",
  19621. extra: 2392 / 2220,
  19622. bottom: 0.03
  19623. }
  19624. },
  19625. back: {
  19626. height: math.unit(15, "feet"),
  19627. weight: math.unit(2800, "lb"),
  19628. name: "Back",
  19629. image: {
  19630. source: "./media/characters/tanarath/back.svg",
  19631. extra: 2392 / 2220,
  19632. bottom: 0.03
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(15, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(7 + 1 / 12, "feet"),
  19649. weight: math.unit(175, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/patty-cattybatty/front.svg",
  19653. extra: 908 / 874,
  19654. bottom: 0.025
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Micro",
  19661. height: math.unit(1, "inch")
  19662. },
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(7 + 1 / 12, "feet")
  19666. },
  19667. {
  19668. name: "Mini Macro",
  19669. height: math.unit(155, "feet")
  19670. },
  19671. {
  19672. name: "Macro",
  19673. height: math.unit(1077, "feet")
  19674. },
  19675. {
  19676. name: "Mega Macro",
  19677. height: math.unit(47650, "feet"),
  19678. default: true
  19679. },
  19680. {
  19681. name: "Giga Macro",
  19682. height: math.unit(440, "miles")
  19683. },
  19684. {
  19685. name: "Tera Macro",
  19686. height: math.unit(8700, "miles")
  19687. },
  19688. {
  19689. name: "Planetary Macro",
  19690. height: math.unit(32700, "miles")
  19691. },
  19692. {
  19693. name: "Solar Macro",
  19694. height: math.unit(550000, "miles")
  19695. },
  19696. {
  19697. name: "Celestial Macro",
  19698. height: math.unit(2.5, "AU")
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(4 + 5 / 12, "feet"),
  19707. weight: math.unit(90, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/cappu/front.svg",
  19711. extra: 1247 / 1152,
  19712. bottom: 0.012
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(4 + 5 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19726. {
  19727. frontDressed: {
  19728. height: math.unit(70, "cm"),
  19729. weight: math.unit(6, "kg"),
  19730. name: "Front (Dressed)",
  19731. image: {
  19732. source: "./media/characters/sebi/front-dressed.svg",
  19733. extra: 713.5 / 686.5,
  19734. bottom: 0.003
  19735. }
  19736. },
  19737. front: {
  19738. height: math.unit(70, "cm"),
  19739. weight: math.unit(5, "kg"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/sebi/front.svg",
  19743. extra: 713.5 / 686.5,
  19744. bottom: 0.003
  19745. }
  19746. }
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(70, "cm"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(8, "meters")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6, "feet"),
  19765. weight: math.unit(150, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/typhek/front.svg",
  19769. extra: 1948 / 1929,
  19770. bottom: 0.025
  19771. }
  19772. },
  19773. side: {
  19774. height: math.unit(6, "feet"),
  19775. weight: math.unit(150, "lb"),
  19776. name: "Side",
  19777. image: {
  19778. source: "./media/characters/typhek/side.svg",
  19779. extra: 2034 / 2010,
  19780. bottom: 0.003
  19781. }
  19782. },
  19783. back: {
  19784. height: math.unit(6, "feet"),
  19785. weight: math.unit(150, "lb"),
  19786. name: "Back",
  19787. image: {
  19788. source: "./media/characters/typhek/back.svg",
  19789. extra: 2005 / 1978,
  19790. bottom: 0.004
  19791. }
  19792. },
  19793. palm: {
  19794. height: math.unit(1.2, "feet"),
  19795. name: "Palm",
  19796. image: {
  19797. source: "./media/characters/typhek/palm.svg"
  19798. }
  19799. },
  19800. fist: {
  19801. height: math.unit(1.1, "feet"),
  19802. name: "Fist",
  19803. image: {
  19804. source: "./media/characters/typhek/fist.svg"
  19805. }
  19806. },
  19807. foot: {
  19808. height: math.unit(1.57, "feet"),
  19809. name: "Foot",
  19810. image: {
  19811. source: "./media/characters/typhek/foot.svg"
  19812. }
  19813. },
  19814. sole: {
  19815. height: math.unit(2.05, "feet"),
  19816. name: "Sole",
  19817. image: {
  19818. source: "./media/characters/typhek/sole.svg"
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(40, "stories"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Megamacro",
  19830. height: math.unit(1, "mile")
  19831. },
  19832. {
  19833. name: "Gigamacro",
  19834. height: math.unit(4000, "solarradii")
  19835. },
  19836. {
  19837. name: "Universal",
  19838. height: math.unit(1.1, "universes")
  19839. }
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19844. {
  19845. side: {
  19846. height: math.unit(5 + 7 / 12, "feet"),
  19847. weight: math.unit(150, "lb"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/kassy/side.svg",
  19851. extra: 1280 / 1225,
  19852. bottom: 0.002
  19853. }
  19854. },
  19855. front: {
  19856. height: math.unit(5 + 7 / 12, "feet"),
  19857. weight: math.unit(150, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/kassy/front.svg",
  19861. extra: 1280 / 1225,
  19862. bottom: 0.025
  19863. }
  19864. },
  19865. back: {
  19866. height: math.unit(5 + 7 / 12, "feet"),
  19867. weight: math.unit(150, "lb"),
  19868. name: "Back",
  19869. image: {
  19870. source: "./media/characters/kassy/back.svg",
  19871. extra: 1280 / 1225,
  19872. bottom: 0.002
  19873. }
  19874. },
  19875. foot: {
  19876. height: math.unit(1.266, "feet"),
  19877. name: "Foot",
  19878. image: {
  19879. source: "./media/characters/kassy/foot.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(5 + 7 / 12, "feet")
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(137, "feet"),
  19891. default: true
  19892. },
  19893. {
  19894. name: "Megamacro",
  19895. height: math.unit(1, "mile")
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(6 + 1 / 12, "feet"),
  19904. weight: math.unit(200, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/neil/front.svg",
  19908. extra: 1326 / 1250,
  19909. bottom: 0.023
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(6 + 1 / 12, "feet"),
  19917. default: true
  19918. },
  19919. {
  19920. name: "Macro",
  19921. height: math.unit(200, "feet")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(5 + 9 / 12, "feet"),
  19930. weight: math.unit(190, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/atticus/front.svg",
  19934. extra: 2934 / 2785,
  19935. bottom: 0.025
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(5 + 9 / 12, "feet"),
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(180, "feet")
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19953. {
  19954. side: {
  19955. height: math.unit(9, "feet"),
  19956. weight: math.unit(650, "lb"),
  19957. name: "Side",
  19958. image: {
  19959. source: "./media/characters/milo/side.svg",
  19960. extra: 2644 / 2310,
  19961. bottom: 0.032
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(9, "feet"),
  19969. default: true
  19970. },
  19971. {
  19972. name: "Macro",
  19973. height: math.unit(300, "feet")
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19979. {
  19980. side: {
  19981. height: math.unit(8, "meters"),
  19982. weight: math.unit(90000, "kg"),
  19983. name: "Side",
  19984. image: {
  19985. source: "./media/characters/ijzer/side.svg",
  19986. extra: 2756 / 1600,
  19987. bottom: 0.01
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Small",
  19994. height: math.unit(3, "meters")
  19995. },
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(8, "meters"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Normal+",
  20003. height: math.unit(10, "meters")
  20004. },
  20005. {
  20006. name: "Bigger",
  20007. height: math.unit(24, "meters")
  20008. },
  20009. {
  20010. name: "Huge",
  20011. height: math.unit(80, "meters")
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6 + 2 / 12, "feet"),
  20020. weight: math.unit(153, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/luca-cervicum/front.svg",
  20024. extra: 370 / 327,
  20025. bottom: 0.015
  20026. }
  20027. },
  20028. back: {
  20029. height: math.unit(6 + 2 / 12, "feet"),
  20030. weight: math.unit(153, "lb"),
  20031. name: "Back",
  20032. image: {
  20033. source: "./media/characters/luca-cervicum/back.svg",
  20034. extra: 367 / 333,
  20035. bottom: 0.005
  20036. }
  20037. },
  20038. frontGear: {
  20039. height: math.unit(6 + 2 / 12, "feet"),
  20040. weight: math.unit(173, "lb"),
  20041. name: "Front (Gear)",
  20042. image: {
  20043. source: "./media/characters/luca-cervicum/front-gear.svg",
  20044. extra: 377 / 333,
  20045. bottom: 0.006
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(6 + 2 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(6 + 1 / 12, "feet"),
  20062. weight: math.unit(304, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/oliver/front.svg",
  20066. extra: 157 / 143,
  20067. bottom: 0.08
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 1 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(5 + 7 / 12, "feet"),
  20084. weight: math.unit(140, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/shane/front.svg",
  20088. extra: 304 / 289,
  20089. bottom: 0.005
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 7 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(5 + 9 / 12, "feet"),
  20106. weight: math.unit(178, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/shin/front.svg",
  20110. extra: 159 / 151,
  20111. bottom: 0.015
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(5 + 9 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 10 / 12, "feet"),
  20128. weight: math.unit(168, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/xerxes/front.svg",
  20132. extra: 282 / 260,
  20133. bottom: 0.045
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 10 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(6 + 7 / 12, "feet"),
  20150. weight: math.unit(208, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/chaska/front.svg",
  20154. extra: 332 / 319,
  20155. bottom: 0.015
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(6 + 7 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(5 + 8 / 12, "feet"),
  20172. weight: math.unit(208, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/enuk/front.svg",
  20176. extra: 437 / 406,
  20177. bottom: 0.02
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 8 / 12, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(5 + 10 / 12, "feet"),
  20194. weight: math.unit(252, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/bruun/front.svg",
  20198. extra: 197 / 187,
  20199. bottom: 0.012
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(5 + 10 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(6 + 10 / 12, "feet"),
  20216. weight: math.unit(255, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/alexeev/front.svg",
  20220. extra: 213 / 200,
  20221. bottom: 0.05
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(6 + 10 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(2 + 8 / 12, "feet"),
  20238. weight: math.unit(22, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/evelyn/front.svg",
  20242. extra: 208 / 180
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(2 + 8 / 12, "feet"),
  20250. default: true
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20256. {
  20257. front: {
  20258. height: math.unit(5 + 9 / 12, "feet"),
  20259. weight: math.unit(139, "lb"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/inca/front.svg",
  20263. extra: 294 / 291,
  20264. bottom: 0.03
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(5 + 9 / 12, "feet"),
  20272. default: true
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(6 + 3 / 12, "feet"),
  20281. weight: math.unit(185, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/mera/front.svg",
  20285. extra: 291 / 277,
  20286. bottom: 0.03
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(6 + 3 / 12, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(6 + 7 / 12, "feet"),
  20303. weight: math.unit(160, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/ceres/front.svg",
  20307. extra: 1023 / 950,
  20308. bottom: 0.027
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(6 + 7 / 12, "feet"),
  20313. weight: math.unit(160, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/ceres/back.svg",
  20317. extra: 1023 / 950
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(6 + 7 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(5 + 10 / 12, "feet"),
  20334. weight: math.unit(150, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/kris/front.svg",
  20338. extra: 885 / 803,
  20339. bottom: 0.03
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(5 + 10 / 12, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(7, "feet"),
  20356. weight: math.unit(120, "kg"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/taluthus/front.svg",
  20360. extra: 903 / 833,
  20361. bottom: 0.015
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(7, "feet"),
  20369. default: true
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(300, "feet")
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20379. {
  20380. front: {
  20381. height: math.unit(5 + 9 / 12, "feet"),
  20382. weight: math.unit(145, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/dawn/front.svg",
  20386. extra: 2094 / 2016,
  20387. bottom: 0.025
  20388. }
  20389. },
  20390. back: {
  20391. height: math.unit(5 + 9 / 12, "feet"),
  20392. weight: math.unit(160, "lb"),
  20393. name: "Back",
  20394. image: {
  20395. source: "./media/characters/dawn/back.svg",
  20396. extra: 2112 / 2080,
  20397. bottom: 0.005
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(6 + 7 / 12, "feet"),
  20405. default: true
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20411. {
  20412. anthro: {
  20413. height: math.unit(8 + 3 / 12, "feet"),
  20414. weight: math.unit(450, "lb"),
  20415. name: "Anthro",
  20416. image: {
  20417. source: "./media/characters/arador/anthro.svg",
  20418. extra: 1835 / 1718,
  20419. bottom: 0.025
  20420. }
  20421. },
  20422. feral: {
  20423. height: math.unit(4, "feet"),
  20424. weight: math.unit(200, "lb"),
  20425. name: "Feral",
  20426. image: {
  20427. source: "./media/characters/arador/feral.svg",
  20428. extra: 1683 / 1514,
  20429. bottom: 0.07
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(8 + 3 / 12, "feet")
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(82.5, "feet"),
  20441. default: true
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(5 + 10 / 12, "feet"),
  20450. weight: math.unit(125, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/dharsi/front.svg",
  20454. extra: 716 / 630,
  20455. bottom: 0.035
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Nano",
  20462. height: math.unit(100, "nm")
  20463. },
  20464. {
  20465. name: "Micro",
  20466. height: math.unit(2, "inches")
  20467. },
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 10 / 12, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Macro",
  20475. height: math.unit(1000, "feet")
  20476. },
  20477. {
  20478. name: "Megamacro",
  20479. height: math.unit(10, "miles")
  20480. },
  20481. {
  20482. name: "Gigamacro",
  20483. height: math.unit(3000, "miles")
  20484. },
  20485. {
  20486. name: "Teramacro",
  20487. height: math.unit(500000, "miles")
  20488. },
  20489. {
  20490. name: "Teramacro+",
  20491. height: math.unit(30, "galaxies")
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20497. {
  20498. front: {
  20499. height: math.unit(6, "feet"),
  20500. weight: math.unit(150, "lb"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/deathy/front.svg",
  20504. extra: 1552 / 1463,
  20505. bottom: 0.025
  20506. }
  20507. },
  20508. side: {
  20509. height: math.unit(6, "feet"),
  20510. weight: math.unit(150, "lb"),
  20511. name: "Side",
  20512. image: {
  20513. source: "./media/characters/deathy/side.svg",
  20514. extra: 1604 / 1455,
  20515. bottom: 0.025
  20516. }
  20517. },
  20518. back: {
  20519. height: math.unit(6, "feet"),
  20520. weight: math.unit(150, "lb"),
  20521. name: "Back",
  20522. image: {
  20523. source: "./media/characters/deathy/back.svg",
  20524. extra: 1580 / 1463,
  20525. bottom: 0.005
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(5, "millimeters")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6 + 5 / 12, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20543. {
  20544. front: {
  20545. height: math.unit(16, "feet"),
  20546. weight: math.unit(4000, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/juniper/front.svg",
  20550. bottom: 0.04
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(16, "feet"),
  20558. default: true
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(6, "feet"),
  20567. weight: math.unit(150, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/hipster/front.svg",
  20571. extra: 1312 / 1209,
  20572. bottom: 0.025
  20573. }
  20574. },
  20575. back: {
  20576. height: math.unit(6, "feet"),
  20577. weight: math.unit(150, "lb"),
  20578. name: "Back",
  20579. image: {
  20580. source: "./media/characters/hipster/back.svg",
  20581. extra: 1281 / 1196,
  20582. bottom: 0.01
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Micro",
  20589. height: math.unit(1, "mm")
  20590. },
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(4, "inches"),
  20594. default: true
  20595. },
  20596. {
  20597. name: "Macro",
  20598. height: math.unit(500, "feet")
  20599. },
  20600. {
  20601. name: "Megamacro",
  20602. height: math.unit(1000, "miles")
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20608. {
  20609. front: {
  20610. height: math.unit(6, "feet"),
  20611. weight: math.unit(150, "lb"),
  20612. name: "Front",
  20613. image: {
  20614. source: "./media/characters/tendirmuldr/front.svg",
  20615. extra: 1878 / 1772,
  20616. bottom: 0.015
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Megamacro",
  20623. height: math.unit(1500, "miles"),
  20624. default: true
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20630. {
  20631. front: {
  20632. height: math.unit(14, "feet"),
  20633. weight: math.unit(12000, "lb"),
  20634. name: "Front",
  20635. image: {
  20636. source: "./media/characters/mort/front.svg",
  20637. extra: 365 / 318,
  20638. bottom: 0.01
  20639. }
  20640. },
  20641. side: {
  20642. height: math.unit(14, "feet"),
  20643. weight: math.unit(12000, "lb"),
  20644. name: "Side",
  20645. image: {
  20646. source: "./media/characters/mort/side.svg",
  20647. extra: 365 / 318,
  20648. bottom: 0.052
  20649. },
  20650. default: true
  20651. },
  20652. back: {
  20653. height: math.unit(14, "feet"),
  20654. weight: math.unit(12000, "lb"),
  20655. name: "Back",
  20656. image: {
  20657. source: "./media/characters/mort/back.svg",
  20658. extra: 371 / 332,
  20659. bottom: 0.18
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(14, "feet"),
  20667. default: true
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20673. {
  20674. front: {
  20675. height: math.unit(8, "feet"),
  20676. weight: math.unit(1, "ton"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/lycoa/front.svg",
  20680. extra: 1836/1728,
  20681. bottom: 81/1917
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(8, "feet"),
  20686. weight: math.unit(1, "ton"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/lycoa/back.svg",
  20690. extra: 1785/1720,
  20691. bottom: 91/1876
  20692. }
  20693. },
  20694. head: {
  20695. height: math.unit(1.6243, "feet"),
  20696. name: "Head",
  20697. image: {
  20698. source: "./media/characters/lycoa/head.svg",
  20699. extra: 1011/782,
  20700. bottom: 0/1011
  20701. }
  20702. },
  20703. tailmaw: {
  20704. height: math.unit(1.9, "feet"),
  20705. name: "Tailmaw",
  20706. image: {
  20707. source: "./media/characters/lycoa/tailmaw.svg"
  20708. }
  20709. },
  20710. tentacles: {
  20711. height: math.unit(2.1, "feet"),
  20712. name: "Tentacles",
  20713. image: {
  20714. source: "./media/characters/lycoa/tentacles.svg"
  20715. }
  20716. },
  20717. dick: {
  20718. height: math.unit(1.73, "feet"),
  20719. name: "Dick",
  20720. image: {
  20721. source: "./media/characters/lycoa/dick.svg"
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(8, "feet"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(30, "feet")
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20739. {
  20740. front: {
  20741. height: math.unit(4 + 2 / 12, "feet"),
  20742. weight: math.unit(70, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/naldara/front.svg",
  20746. extra: 1664/1387,
  20747. bottom: 81/1745
  20748. },
  20749. form: "anthro",
  20750. default: true
  20751. },
  20752. naga: {
  20753. height: math.unit(20, "feet"),
  20754. weight: math.unit(15000, "kg"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/naldara/naga.svg",
  20758. extra: 1590/1396,
  20759. bottom: 285/1875
  20760. },
  20761. form: "naga",
  20762. default: true
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(4 + 2 / 12, "feet"),
  20769. form: "anthro",
  20770. default: true
  20771. },
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(20, "feet"),
  20775. form: "naga",
  20776. default: true
  20777. },
  20778. ],
  20779. {
  20780. "anthro": {
  20781. name: "Anthro"
  20782. },
  20783. "naga": {
  20784. name: "Naga"
  20785. }
  20786. }
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(13 + 7 / 12, "feet"),
  20793. weight: math.unit(1500, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/briar/front.svg",
  20797. extra: 1223/1157,
  20798. bottom: 123/1346
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(13 + 7 / 12, "feet"),
  20806. default: true
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20812. {
  20813. side: {
  20814. height: math.unit(16, "feet"),
  20815. weight: math.unit(500, "lb"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/vanguard/side.svg",
  20819. extra: 1022/914,
  20820. bottom: 30/1052
  20821. }
  20822. },
  20823. sideAlt: {
  20824. height: math.unit(10, "feet"),
  20825. weight: math.unit(500, "lb"),
  20826. name: "Side (Alt)",
  20827. image: {
  20828. source: "./media/characters/vanguard/side-alt.svg",
  20829. extra: 502 / 425,
  20830. bottom: 0.087
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(17.71, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(7.5, "feet"),
  20847. weight: math.unit(2, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/artemis/front.svg",
  20851. extra: 1192 / 1075,
  20852. bottom: 0.07
  20853. }
  20854. },
  20855. frontNsfw: {
  20856. height: math.unit(7.5, "feet"),
  20857. weight: math.unit(2, "lb"),
  20858. name: "Front (NSFW)",
  20859. image: {
  20860. source: "./media/characters/artemis/front-nsfw.svg",
  20861. extra: 1192 / 1075,
  20862. bottom: 0.07
  20863. }
  20864. },
  20865. frontNsfwer: {
  20866. height: math.unit(7.5, "feet"),
  20867. weight: math.unit(2, "lb"),
  20868. name: "Front (NSFW-er)",
  20869. image: {
  20870. source: "./media/characters/artemis/front-nsfwer.svg",
  20871. extra: 1192 / 1075,
  20872. bottom: 0.07
  20873. }
  20874. },
  20875. side: {
  20876. height: math.unit(7.5, "feet"),
  20877. weight: math.unit(2, "lb"),
  20878. name: "Side",
  20879. image: {
  20880. source: "./media/characters/artemis/side.svg",
  20881. extra: 1192 / 1075,
  20882. bottom: 0.07
  20883. }
  20884. },
  20885. sideNsfw: {
  20886. height: math.unit(7.5, "feet"),
  20887. weight: math.unit(2, "lb"),
  20888. name: "Side (NSFW)",
  20889. image: {
  20890. source: "./media/characters/artemis/side-nsfw.svg",
  20891. extra: 1192 / 1075,
  20892. bottom: 0.07
  20893. }
  20894. },
  20895. sideNsfwer: {
  20896. height: math.unit(7.5, "feet"),
  20897. weight: math.unit(2, "lb"),
  20898. name: "Side (NSFW-er)",
  20899. image: {
  20900. source: "./media/characters/artemis/side-nsfwer.svg",
  20901. extra: 1192 / 1075,
  20902. bottom: 0.07
  20903. }
  20904. },
  20905. maw: {
  20906. height: math.unit(1.1, "feet"),
  20907. name: "Maw",
  20908. image: {
  20909. source: "./media/characters/artemis/maw.svg"
  20910. }
  20911. },
  20912. stomach: {
  20913. height: math.unit(0.95, "feet"),
  20914. name: "Stomach",
  20915. image: {
  20916. source: "./media/characters/artemis/stomach.svg"
  20917. }
  20918. },
  20919. dickCanine: {
  20920. height: math.unit(1, "feet"),
  20921. name: "Dick (Canine)",
  20922. image: {
  20923. source: "./media/characters/artemis/dick-canine.svg"
  20924. }
  20925. },
  20926. dickEquine: {
  20927. height: math.unit(0.85, "feet"),
  20928. name: "Dick (Equine)",
  20929. image: {
  20930. source: "./media/characters/artemis/dick-equine.svg"
  20931. }
  20932. },
  20933. dickExotic: {
  20934. height: math.unit(0.85, "feet"),
  20935. name: "Dick (Exotic)",
  20936. image: {
  20937. source: "./media/characters/artemis/dick-exotic.svg"
  20938. }
  20939. },
  20940. },
  20941. [
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(7.5, "feet"),
  20945. default: true
  20946. },
  20947. {
  20948. name: "Enlarged",
  20949. height: math.unit(12, "feet")
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20955. {
  20956. front: {
  20957. height: math.unit(5 + 3 / 12, "feet"),
  20958. weight: math.unit(160, "lb"),
  20959. name: "Front",
  20960. image: {
  20961. source: "./media/characters/kira/front.svg",
  20962. extra: 906 / 786,
  20963. bottom: 0.01
  20964. }
  20965. },
  20966. back: {
  20967. height: math.unit(5 + 3 / 12, "feet"),
  20968. weight: math.unit(160, "lb"),
  20969. name: "Back",
  20970. image: {
  20971. source: "./media/characters/kira/back.svg",
  20972. extra: 882 / 757,
  20973. bottom: 0.005
  20974. }
  20975. },
  20976. frontDressed: {
  20977. height: math.unit(5 + 3 / 12, "feet"),
  20978. weight: math.unit(160, "lb"),
  20979. name: "Front (Dressed)",
  20980. image: {
  20981. source: "./media/characters/kira/front-dressed.svg",
  20982. extra: 906 / 786,
  20983. bottom: 0.01
  20984. }
  20985. },
  20986. beans: {
  20987. height: math.unit(0.92, "feet"),
  20988. name: "Beans",
  20989. image: {
  20990. source: "./media/characters/kira/beans.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(5 + 3 / 12, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(5 + 4 / 12, "feet"),
  21007. weight: math.unit(145, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/scramble/front.svg",
  21011. extra: 763 / 727,
  21012. bottom: 0.05
  21013. }
  21014. },
  21015. back: {
  21016. height: math.unit(5 + 4 / 12, "feet"),
  21017. weight: math.unit(145, "lb"),
  21018. name: "Back",
  21019. image: {
  21020. source: "./media/characters/scramble/back.svg",
  21021. extra: 826 / 737,
  21022. bottom: 0.002
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 4 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21036. {
  21037. side: {
  21038. height: math.unit(6 + 2 / 12, "feet"),
  21039. weight: math.unit(190, "lb"),
  21040. name: "Side",
  21041. image: {
  21042. source: "./media/characters/biscuit/side.svg",
  21043. extra: 858 / 791,
  21044. bottom: 0.044
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(6 + 2 / 12, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(5 + 2 / 12, "feet"),
  21061. weight: math.unit(120, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/poffin/front.svg",
  21065. extra: 786 / 680,
  21066. bottom: 0.005
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5 + 2 / 12, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(6 + 3 / 12, "feet"),
  21083. weight: math.unit(519, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/dhari/front.svg",
  21087. extra: 1048 / 946,
  21088. bottom: 0.015
  21089. }
  21090. },
  21091. back: {
  21092. height: math.unit(6 + 3 / 12, "feet"),
  21093. weight: math.unit(519, "lb"),
  21094. name: "Back",
  21095. image: {
  21096. source: "./media/characters/dhari/back.svg",
  21097. extra: 1048 / 931,
  21098. bottom: 0.005
  21099. }
  21100. },
  21101. frontDressed: {
  21102. height: math.unit(6 + 3 / 12, "feet"),
  21103. weight: math.unit(519, "lb"),
  21104. name: "Front (Dressed)",
  21105. image: {
  21106. source: "./media/characters/dhari/front-dressed.svg",
  21107. extra: 1713 / 1546,
  21108. bottom: 0.02
  21109. }
  21110. },
  21111. backDressed: {
  21112. height: math.unit(6 + 3 / 12, "feet"),
  21113. weight: math.unit(519, "lb"),
  21114. name: "Back (Dressed)",
  21115. image: {
  21116. source: "./media/characters/dhari/back-dressed.svg",
  21117. extra: 1699 / 1537,
  21118. bottom: 0.01
  21119. }
  21120. },
  21121. maw: {
  21122. height: math.unit(0.95, "feet"),
  21123. name: "Maw",
  21124. image: {
  21125. source: "./media/characters/dhari/maw.svg"
  21126. }
  21127. },
  21128. wereFront: {
  21129. height: math.unit(12 + 8 / 12, "feet"),
  21130. weight: math.unit(4000, "lb"),
  21131. name: "Front (Were)",
  21132. image: {
  21133. source: "./media/characters/dhari/were-front.svg",
  21134. extra: 1065 / 969,
  21135. bottom: 0.015
  21136. }
  21137. },
  21138. wereBack: {
  21139. height: math.unit(12 + 8 / 12, "feet"),
  21140. weight: math.unit(4000, "lb"),
  21141. name: "Back (Were)",
  21142. image: {
  21143. source: "./media/characters/dhari/were-back.svg",
  21144. extra: 1065 / 969,
  21145. bottom: 0.012
  21146. }
  21147. },
  21148. wereMaw: {
  21149. height: math.unit(0.625, "meters"),
  21150. name: "Maw (Were)",
  21151. image: {
  21152. source: "./media/characters/dhari/were-maw.svg"
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(6 + 3 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21166. {
  21167. anthro: {
  21168. height: math.unit(5 + 7 / 12, "feet"),
  21169. weight: math.unit(175, "lb"),
  21170. name: "Anthro",
  21171. image: {
  21172. source: "./media/characters/rena-dyne/anthro.svg",
  21173. extra: 1849 / 1785,
  21174. bottom: 0.005
  21175. }
  21176. },
  21177. taur: {
  21178. height: math.unit(15 + 6 / 12, "feet"),
  21179. weight: math.unit(8000, "lb"),
  21180. name: "Taur",
  21181. image: {
  21182. source: "./media/characters/rena-dyne/taur.svg",
  21183. extra: 2315 / 2234,
  21184. bottom: 0.033
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(5 + 7 / 12, "feet"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(8, "feet"),
  21201. weight: math.unit(600, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/weremeep/front.svg",
  21205. extra: 967 / 862,
  21206. bottom: 0.01
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Normal",
  21213. height: math.unit(8, "feet"),
  21214. default: true
  21215. },
  21216. {
  21217. name: "Lorg",
  21218. height: math.unit(12, "feet")
  21219. },
  21220. {
  21221. name: "Oh Lawd She Comin'",
  21222. height: math.unit(20, "feet")
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21228. {
  21229. front: {
  21230. height: math.unit(4, "feet"),
  21231. weight: math.unit(90, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/reza/front.svg",
  21235. extra: 1183 / 1111,
  21236. bottom: 0.017
  21237. }
  21238. },
  21239. back: {
  21240. height: math.unit(4, "feet"),
  21241. weight: math.unit(90, "lb"),
  21242. name: "Back",
  21243. image: {
  21244. source: "./media/characters/reza/back.svg",
  21245. extra: 1183 / 1111,
  21246. bottom: 0.01
  21247. }
  21248. },
  21249. drake: {
  21250. height: math.unit(30, "feet"),
  21251. weight: math.unit(246960, "lb"),
  21252. name: "Drake",
  21253. image: {
  21254. source: "./media/characters/reza/drake.svg",
  21255. extra: 2350 / 2024,
  21256. bottom: 60.7 / 2403
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(4, "feet"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21270. {
  21271. side: {
  21272. height: math.unit(15, "feet"),
  21273. weight: math.unit(14, "tons"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/athea/side.svg",
  21277. extra: 960 / 540,
  21278. bottom: 0.003
  21279. }
  21280. },
  21281. sitting: {
  21282. height: math.unit(6 * 2.85, "feet"),
  21283. weight: math.unit(14, "tons"),
  21284. name: "Sitting",
  21285. image: {
  21286. source: "./media/characters/athea/sitting.svg",
  21287. extra: 621 / 581,
  21288. bottom: 0.075
  21289. }
  21290. },
  21291. maw: {
  21292. height: math.unit(7.59498031496063, "feet"),
  21293. name: "Maw",
  21294. image: {
  21295. source: "./media/characters/athea/maw.svg"
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Lap Cat",
  21302. height: math.unit(2.5, "feet")
  21303. },
  21304. {
  21305. name: "Minimacro",
  21306. height: math.unit(15, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Macro",
  21311. height: math.unit(120, "feet")
  21312. },
  21313. {
  21314. name: "Macro+",
  21315. height: math.unit(640, "feet")
  21316. },
  21317. {
  21318. name: "Colossus",
  21319. height: math.unit(2.2, "miles")
  21320. },
  21321. ]
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21325. {
  21326. front: {
  21327. height: math.unit(8 + 8 / 12, "feet"),
  21328. weight: math.unit(130, "kg"),
  21329. name: "Front",
  21330. image: {
  21331. source: "./media/characters/seroko/front.svg",
  21332. extra: 1385 / 1280,
  21333. bottom: 0.025
  21334. }
  21335. },
  21336. back: {
  21337. height: math.unit(8 + 8 / 12, "feet"),
  21338. weight: math.unit(130, "kg"),
  21339. name: "Back",
  21340. image: {
  21341. source: "./media/characters/seroko/back.svg",
  21342. extra: 1369 / 1238,
  21343. bottom: 0.018
  21344. }
  21345. },
  21346. frontDressed: {
  21347. height: math.unit(8 + 8 / 12, "feet"),
  21348. weight: math.unit(130, "kg"),
  21349. name: "Front (Dressed)",
  21350. image: {
  21351. source: "./media/characters/seroko/front-dressed.svg",
  21352. extra: 1366 / 1275,
  21353. bottom: 0.03
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(8 + 8 / 12, "feet"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(5.5, "feet"),
  21370. weight: math.unit(160, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/quatzi/front.svg",
  21374. extra: 2346 / 2242,
  21375. bottom: 0.015
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(5.5, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Big",
  21387. height: math.unit(7.7, "feet")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(5 + 11 / 12, "feet"),
  21396. weight: math.unit(180, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/sen/front.svg",
  21400. extra: 1321 / 1254,
  21401. bottom: 0.015
  21402. }
  21403. },
  21404. side: {
  21405. height: math.unit(5 + 11 / 12, "feet"),
  21406. weight: math.unit(180, "lb"),
  21407. name: "Side",
  21408. image: {
  21409. source: "./media/characters/sen/side.svg",
  21410. extra: 1321 / 1254,
  21411. bottom: 0.007
  21412. }
  21413. },
  21414. back: {
  21415. height: math.unit(5 + 11 / 12, "feet"),
  21416. weight: math.unit(180, "lb"),
  21417. name: "Back",
  21418. image: {
  21419. source: "./media/characters/sen/back.svg",
  21420. extra: 1321 / 1254
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(5 + 11 / 12, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(166.6, "cm"),
  21437. weight: math.unit(66.6, "kg"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/fruity/front.svg",
  21441. extra: 1510 / 1386,
  21442. bottom: 0.04
  21443. }
  21444. },
  21445. back: {
  21446. height: math.unit(166.6, "cm"),
  21447. weight: math.unit(66.6, "lb"),
  21448. name: "Back",
  21449. image: {
  21450. source: "./media/characters/fruity/back.svg",
  21451. extra: 1563 / 1435,
  21452. bottom: 0.005
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(166.6, "cm"),
  21460. default: true
  21461. },
  21462. {
  21463. name: "Demonic",
  21464. height: math.unit(166.6, "feet")
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21470. {
  21471. side: {
  21472. height: math.unit(10, "feet"),
  21473. weight: math.unit(500, "lb"),
  21474. name: "Side",
  21475. image: {
  21476. source: "./media/characters/zost/side.svg",
  21477. extra: 2870/2533,
  21478. bottom: 252/3122
  21479. }
  21480. },
  21481. mawFront: {
  21482. height: math.unit(1.08, "meters"),
  21483. name: "Maw (Front)",
  21484. image: {
  21485. source: "./media/characters/zost/maw-front.svg"
  21486. }
  21487. },
  21488. mawSide: {
  21489. height: math.unit(2.66, "feet"),
  21490. name: "Maw (Side)",
  21491. image: {
  21492. source: "./media/characters/zost/maw-side.svg"
  21493. }
  21494. },
  21495. wingspan: {
  21496. height: math.unit(7.4, "feet"),
  21497. name: "Wingspan",
  21498. image: {
  21499. source: "./media/characters/zost/wingspan.svg"
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(10, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(5 + 4 / 12, "feet"),
  21516. weight: math.unit(120, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/luci/front.svg",
  21520. extra: 1985 / 1884,
  21521. bottom: 0.04
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(5 + 4 / 12, "feet"),
  21526. weight: math.unit(120, "lb"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/luci/back.svg",
  21530. extra: 1892 / 1791,
  21531. bottom: 0.002
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(5 + 4 / 12, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(1500, "feet"),
  21548. weight: math.unit(3.8e6, "tons"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/2th/front.svg",
  21552. extra: 3489 / 3350,
  21553. bottom: 0.1
  21554. }
  21555. },
  21556. foot: {
  21557. height: math.unit(461, "feet"),
  21558. name: "Foot",
  21559. image: {
  21560. source: "./media/characters/2th/foot.svg"
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "\"Micro\"",
  21567. height: math.unit(15 + 7 / 12, "feet")
  21568. },
  21569. {
  21570. name: "Normal",
  21571. height: math.unit(1500, "feet"),
  21572. default: true
  21573. },
  21574. {
  21575. name: "Macro",
  21576. height: math.unit(5000, "feet")
  21577. },
  21578. {
  21579. name: "Megamacro",
  21580. height: math.unit(15, "miles")
  21581. },
  21582. {
  21583. name: "Gigamacro",
  21584. height: math.unit(4000, "miles")
  21585. },
  21586. {
  21587. name: "Galactic",
  21588. height: math.unit(50, "AU")
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(5 + 6 / 12, "feet"),
  21597. weight: math.unit(220, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/amethyst/front.svg",
  21601. extra: 2078 / 2040,
  21602. bottom: 0.045
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(5 + 6 / 12, "feet"),
  21607. weight: math.unit(220, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/amethyst/back.svg",
  21611. extra: 2021 / 1989,
  21612. bottom: 0.02
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(5 + 6 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(4 + 11 / 12, "feet"),
  21629. weight: math.unit(120, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/yumi-akiyama/front.svg",
  21633. extra: 1327 / 1235,
  21634. bottom: 0.02
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(4 + 11 / 12, "feet"),
  21639. weight: math.unit(120, "lb"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/yumi-akiyama/back.svg",
  21643. extra: 1287 / 1245,
  21644. bottom: 0.002
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Galactic",
  21651. height: math.unit(50, "galaxies"),
  21652. default: true
  21653. },
  21654. {
  21655. name: "Universal",
  21656. height: math.unit(100, "universes")
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(8, "feet"),
  21665. weight: math.unit(500, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/rifter-yrmori/front.svg",
  21669. extra: 1180 / 1125,
  21670. bottom: 0.02
  21671. }
  21672. },
  21673. back: {
  21674. height: math.unit(8, "feet"),
  21675. weight: math.unit(500, "lb"),
  21676. name: "Back",
  21677. image: {
  21678. source: "./media/characters/rifter-yrmori/back.svg",
  21679. extra: 1190 / 1145,
  21680. bottom: 0.001
  21681. }
  21682. },
  21683. wings: {
  21684. height: math.unit(7.75, "feet"),
  21685. weight: math.unit(500, "lb"),
  21686. name: "Wings",
  21687. image: {
  21688. source: "./media/characters/rifter-yrmori/wings.svg",
  21689. extra: 1357 / 1285
  21690. }
  21691. },
  21692. maw: {
  21693. height: math.unit(0.8, "feet"),
  21694. name: "Maw",
  21695. image: {
  21696. source: "./media/characters/rifter-yrmori/maw.svg"
  21697. }
  21698. },
  21699. mawfront: {
  21700. height: math.unit(1.45, "feet"),
  21701. name: "Maw (Front)",
  21702. image: {
  21703. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(8, "feet"),
  21711. default: true
  21712. },
  21713. {
  21714. name: "Macro",
  21715. height: math.unit(42, "meters")
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21721. {
  21722. were: {
  21723. height: math.unit(25 + 6 / 12, "feet"),
  21724. weight: math.unit(10000, "lb"),
  21725. name: "Were",
  21726. image: {
  21727. source: "./media/characters/tahajin/were.svg",
  21728. extra: 801 / 770,
  21729. bottom: 0.042
  21730. }
  21731. },
  21732. aquatic: {
  21733. height: math.unit(6 + 4 / 12, "feet"),
  21734. weight: math.unit(160, "lb"),
  21735. name: "Aquatic",
  21736. image: {
  21737. source: "./media/characters/tahajin/aquatic.svg",
  21738. extra: 572 / 542,
  21739. bottom: 0.04
  21740. }
  21741. },
  21742. chow: {
  21743. height: math.unit(8 + 11 / 12, "feet"),
  21744. weight: math.unit(450, "lb"),
  21745. name: "Chow",
  21746. image: {
  21747. source: "./media/characters/tahajin/chow.svg",
  21748. extra: 660 / 640,
  21749. bottom: 0.015
  21750. }
  21751. },
  21752. demiNaga: {
  21753. height: math.unit(6 + 8 / 12, "feet"),
  21754. weight: math.unit(300, "lb"),
  21755. name: "Demi Naga",
  21756. image: {
  21757. source: "./media/characters/tahajin/demi-naga.svg",
  21758. extra: 643 / 615,
  21759. bottom: 0.1
  21760. }
  21761. },
  21762. data: {
  21763. height: math.unit(5, "inches"),
  21764. weight: math.unit(0.1, "lb"),
  21765. name: "Data",
  21766. image: {
  21767. source: "./media/characters/tahajin/data.svg"
  21768. }
  21769. },
  21770. fluu: {
  21771. height: math.unit(5 + 7 / 12, "feet"),
  21772. weight: math.unit(140, "lb"),
  21773. name: "Fluu",
  21774. image: {
  21775. source: "./media/characters/tahajin/fluu.svg",
  21776. extra: 628 / 592,
  21777. bottom: 0.02
  21778. }
  21779. },
  21780. starWarrior: {
  21781. height: math.unit(4 + 5 / 12, "feet"),
  21782. weight: math.unit(50, "lb"),
  21783. name: "Star Warrior",
  21784. image: {
  21785. source: "./media/characters/tahajin/star-warrior.svg"
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(25 + 6 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(8, "feet"),
  21802. weight: math.unit(350, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/gabira/front.svg",
  21806. extra: 608 / 580,
  21807. bottom: 0.03
  21808. }
  21809. },
  21810. back: {
  21811. height: math.unit(8, "feet"),
  21812. weight: math.unit(350, "lb"),
  21813. name: "Back",
  21814. image: {
  21815. source: "./media/characters/gabira/back.svg",
  21816. extra: 608 / 580,
  21817. bottom: 0.03
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(8, "feet"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(5 + 3 / 12, "feet"),
  21834. weight: math.unit(137, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/sasha-katraine/front.svg",
  21838. bottom: 0.045
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Micro",
  21845. height: math.unit(5, "inches")
  21846. },
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(5 + 3 / 12, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21856. {
  21857. side: {
  21858. height: math.unit(4, "inches"),
  21859. weight: math.unit(200, "grams"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/der/side.svg",
  21863. extra: 719 / 400,
  21864. bottom: 30.6 / 749.9187
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Micro",
  21871. height: math.unit(4, "inches"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21878. {
  21879. side: {
  21880. height: math.unit(30, "meters"),
  21881. weight: math.unit(700, "tonnes"),
  21882. name: "Side",
  21883. image: {
  21884. source: "./media/characters/fixerdragon/side.svg",
  21885. extra: (1293.0514 - 116.03) / 1106.86,
  21886. bottom: 116.03 / 1293.0514
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Planck",
  21893. height: math.unit(1.6e-35, "meters")
  21894. },
  21895. {
  21896. name: "Micro",
  21897. height: math.unit(0.4, "meters")
  21898. },
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(30, "meters"),
  21902. default: true
  21903. },
  21904. {
  21905. name: "Megamacro",
  21906. height: math.unit(1.2, "megameters")
  21907. },
  21908. {
  21909. name: "Teramacro",
  21910. height: math.unit(130, "terameters")
  21911. },
  21912. {
  21913. name: "Yottamacro",
  21914. height: math.unit(6200, "yottameters")
  21915. },
  21916. ]
  21917. ));
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(8, "feet"),
  21923. weight: math.unit(250, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/kite/front.svg",
  21927. extra: 2796 / 2659,
  21928. bottom: 0.002
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Normal",
  21935. height: math.unit(8, "feet"),
  21936. default: true
  21937. },
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(360, "feet")
  21941. },
  21942. {
  21943. name: "Megamacro",
  21944. height: math.unit(1500, "feet")
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(5 + 11/12, "feet"),
  21953. weight: math.unit(170, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/poojawa-vynar/front.svg",
  21957. extra: 1735/1585,
  21958. bottom: 96/1831
  21959. }
  21960. },
  21961. back: {
  21962. height: math.unit(5 + 11/12, "feet"),
  21963. weight: math.unit(170, "lb"),
  21964. name: "Back",
  21965. image: {
  21966. source: "./media/characters/poojawa-vynar/back.svg",
  21967. extra: 1749/1607,
  21968. bottom: 28/1777
  21969. }
  21970. },
  21971. male: {
  21972. height: math.unit(5 + 11/12, "feet"),
  21973. weight: math.unit(170, "lb"),
  21974. name: "Male",
  21975. image: {
  21976. source: "./media/characters/poojawa-vynar/male.svg",
  21977. extra: 1855/1713,
  21978. bottom: 63/1918
  21979. }
  21980. },
  21981. taur: {
  21982. height: math.unit(5 + 11/12, "feet"),
  21983. weight: math.unit(170, "lb"),
  21984. name: "Taur",
  21985. image: {
  21986. source: "./media/characters/poojawa-vynar/taur.svg",
  21987. extra: 1151/1059,
  21988. bottom: 356/1507
  21989. }
  21990. },
  21991. frontDressed: {
  21992. height: math.unit(5 + 11/12, "feet"),
  21993. weight: math.unit(170, "lb"),
  21994. name: "Front (Dressed)",
  21995. image: {
  21996. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21997. extra: 1735/1585,
  21998. bottom: 96/1831
  21999. }
  22000. },
  22001. backDressed: {
  22002. height: math.unit(5 + 11/12, "feet"),
  22003. weight: math.unit(170, "lb"),
  22004. name: "Back (Dressed)",
  22005. image: {
  22006. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22007. extra: 1749/1607,
  22008. bottom: 28/1777
  22009. }
  22010. },
  22011. maleDressed: {
  22012. height: math.unit(5 + 11/12, "feet"),
  22013. weight: math.unit(170, "lb"),
  22014. name: "Male (Dressed)",
  22015. image: {
  22016. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22017. extra: 1855/1713,
  22018. bottom: 63/1918
  22019. }
  22020. },
  22021. taurDressed: {
  22022. height: math.unit(5 + 11/12, "feet"),
  22023. weight: math.unit(170, "lb"),
  22024. name: "Taur (Dressed)",
  22025. image: {
  22026. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22027. extra: 1151/1059,
  22028. bottom: 356/1507
  22029. }
  22030. },
  22031. maw: {
  22032. height: math.unit(1.46, "feet"),
  22033. name: "Maw",
  22034. image: {
  22035. source: "./media/characters/poojawa-vynar/maw.svg"
  22036. }
  22037. },
  22038. head: {
  22039. height: math.unit(2.34, "feet"),
  22040. name: "Head",
  22041. image: {
  22042. source: "./media/characters/poojawa-vynar/head.svg"
  22043. }
  22044. },
  22045. paw: {
  22046. height: math.unit(1.61, "feet"),
  22047. name: "Paw",
  22048. image: {
  22049. source: "./media/characters/poojawa-vynar/paw.svg"
  22050. }
  22051. },
  22052. pawToering: {
  22053. height: math.unit(1.72, "feet"),
  22054. name: "Paw (Toering)",
  22055. image: {
  22056. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22057. }
  22058. },
  22059. toering: {
  22060. height: math.unit(2.9, "inches"),
  22061. name: "Toering",
  22062. image: {
  22063. source: "./media/characters/poojawa-vynar/toering.svg"
  22064. }
  22065. },
  22066. shaft: {
  22067. height: math.unit(0.625, "feet"),
  22068. name: "Shaft",
  22069. image: {
  22070. source: "./media/characters/poojawa-vynar/shaft.svg"
  22071. }
  22072. },
  22073. spade: {
  22074. height: math.unit(0.42, "feet"),
  22075. name: "Spade",
  22076. image: {
  22077. source: "./media/characters/poojawa-vynar/spade.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Shortstack",
  22084. height: math.unit(4, "feet")
  22085. },
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(5 + 11 / 12, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Tauric",
  22093. height: math.unit(4, "meters")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(293, "meters"),
  22102. weight: math.unit(70400, "tons"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/violette/front.svg",
  22106. extra: 1227 / 1180,
  22107. bottom: 0.005
  22108. }
  22109. },
  22110. back: {
  22111. height: math.unit(293, "meters"),
  22112. weight: math.unit(70400, "tons"),
  22113. name: "Back",
  22114. image: {
  22115. source: "./media/characters/violette/back.svg",
  22116. extra: 1227 / 1180,
  22117. bottom: 0.005
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Macro",
  22124. height: math.unit(293, "meters"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(1050, "feet"),
  22134. weight: math.unit(200000, "tons"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/alessandra/front.svg",
  22138. extra: 960 / 912,
  22139. bottom: 0.06
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Macro",
  22146. height: math.unit(1050, "feet")
  22147. },
  22148. {
  22149. name: "Macro+",
  22150. height: math.unit(900, "meters"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22157. {
  22158. front: {
  22159. height: math.unit(5, "feet"),
  22160. weight: math.unit(187, "lb"),
  22161. name: "Front",
  22162. image: {
  22163. source: "./media/characters/person/front.svg",
  22164. extra: 3087 / 2945,
  22165. bottom: 91 / 3181
  22166. }
  22167. },
  22168. },
  22169. [
  22170. {
  22171. name: "Micro",
  22172. height: math.unit(3, "inches")
  22173. },
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(5, "feet"),
  22177. default: true
  22178. },
  22179. {
  22180. name: "Macro",
  22181. height: math.unit(90, "feet")
  22182. },
  22183. {
  22184. name: "Max Size",
  22185. height: math.unit(280, "feet")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(4.5, "meters"),
  22194. weight: math.unit(3200, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/ty/front.svg",
  22198. extra: 1038 / 960,
  22199. bottom: 31.156 / 1068
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(4.5, "meters"),
  22204. weight: math.unit(3200, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/ty/back.svg",
  22208. extra: 1044 / 966,
  22209. bottom: 7.48 / 1049
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(4.5, "meters"),
  22217. default: true
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(5 + 4 / 12, "feet"),
  22226. weight: math.unit(115, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/rocky/front.svg",
  22230. extra: 1012 / 975,
  22231. bottom: 54 / 1066
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(5 + 4 / 12, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22245. {
  22246. upright: {
  22247. height: math.unit(6, "meters"),
  22248. weight: math.unit(4000, "kg"),
  22249. name: "Upright",
  22250. image: {
  22251. source: "./media/characters/ruin/upright.svg",
  22252. extra: 668 / 661,
  22253. bottom: 42 / 799.8396
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(6, "meters"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(5, "feet"),
  22270. weight: math.unit(106, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/robin/front.svg",
  22274. extra: 862 / 799,
  22275. bottom: 42.4 / 914.8856
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(5, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22289. {
  22290. side: {
  22291. height: math.unit(3, "feet"),
  22292. weight: math.unit(225, "lb"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/saian/side.svg",
  22296. extra: 566 / 356,
  22297. bottom: 79.7 / 643
  22298. }
  22299. },
  22300. maw: {
  22301. height: math.unit(2.85, "feet"),
  22302. name: "Maw",
  22303. image: {
  22304. source: "./media/characters/saian/maw.svg"
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(3, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22318. {
  22319. side: {
  22320. height: math.unit(8, "feet"),
  22321. weight: math.unit(300, "lb"),
  22322. name: "Side",
  22323. image: {
  22324. source: "./media/characters/equus-silvermane/side.svg",
  22325. extra: 2176 / 2050,
  22326. bottom: 65.7 / 2245
  22327. }
  22328. },
  22329. front: {
  22330. height: math.unit(8, "feet"),
  22331. weight: math.unit(300, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/equus-silvermane/front.svg",
  22335. extra: 4633 / 4400,
  22336. bottom: 71.3 / 4706.915
  22337. }
  22338. },
  22339. sideStepping: {
  22340. height: math.unit(8, "feet"),
  22341. weight: math.unit(300, "lb"),
  22342. name: "Side (Stepping)",
  22343. image: {
  22344. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22345. extra: 1968 / 1860,
  22346. bottom: 16.4 / 1989
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(8, "feet")
  22354. },
  22355. {
  22356. name: "Minimacro",
  22357. height: math.unit(75, "feet"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Macro",
  22362. height: math.unit(150, "feet")
  22363. },
  22364. {
  22365. name: "Macro+",
  22366. height: math.unit(1000, "feet")
  22367. },
  22368. {
  22369. name: "Megamacro",
  22370. height: math.unit(1, "mile")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22376. {
  22377. side: {
  22378. height: math.unit(20, "feet"),
  22379. weight: math.unit(30000, "kg"),
  22380. name: "Side",
  22381. image: {
  22382. source: "./media/characters/windar/side.svg",
  22383. extra: 1491 / 1248,
  22384. bottom: 82.56 / 1568
  22385. }
  22386. },
  22387. },
  22388. [
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(20, "feet"),
  22392. default: true
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22398. {
  22399. side: {
  22400. height: math.unit(15.66, "feet"),
  22401. weight: math.unit(150, "lb"),
  22402. name: "Side",
  22403. image: {
  22404. source: "./media/characters/melody/side.svg",
  22405. extra: 1097 / 944,
  22406. bottom: 11.8 / 1109
  22407. }
  22408. },
  22409. sideOutfit: {
  22410. height: math.unit(15.66, "feet"),
  22411. weight: math.unit(150, "lb"),
  22412. name: "Side (Outfit)",
  22413. image: {
  22414. source: "./media/characters/melody/side-outfit.svg",
  22415. extra: 1097 / 944,
  22416. bottom: 11.8 / 1109
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Normal",
  22423. height: math.unit(15.66, "feet"),
  22424. default: true
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(8, "feet"),
  22433. weight: math.unit(325, "lb"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/windera/front.svg",
  22437. extra: 3180 / 2845,
  22438. bottom: 178 / 3365
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(8, "feet"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22452. {
  22453. front: {
  22454. height: math.unit(28.75, "feet"),
  22455. weight: math.unit(2000, "kg"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/sonear/front.svg",
  22459. extra: 1041.1 / 964.9,
  22460. bottom: 53.7 / 1096.6
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(28.75, "feet"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22474. {
  22475. side: {
  22476. height: math.unit(25.5, "feet"),
  22477. weight: math.unit(23000, "kg"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/kanara/side.svg"
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Normal",
  22487. height: math.unit(25.5, "feet"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22494. {
  22495. side: {
  22496. height: math.unit(10, "feet"),
  22497. weight: math.unit(1000, "kg"),
  22498. name: "Side",
  22499. image: {
  22500. source: "./media/characters/ereus/side.svg",
  22501. extra: 1157 / 959,
  22502. bottom: 153 / 1312.5
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(10, "feet"),
  22510. default: true
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22516. {
  22517. side: {
  22518. height: math.unit(4.5, "feet"),
  22519. weight: math.unit(500, "lb"),
  22520. name: "Side",
  22521. image: {
  22522. source: "./media/characters/e-ter/side.svg",
  22523. extra: 1550 / 1248,
  22524. bottom: 146 / 1694
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(4.5, "feet"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22538. {
  22539. side: {
  22540. height: math.unit(9.7, "feet"),
  22541. weight: math.unit(4000, "kg"),
  22542. name: "Side",
  22543. image: {
  22544. source: "./media/characters/yamie/side.svg"
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Normal",
  22551. height: math.unit(9.7, "feet"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22558. {
  22559. front: {
  22560. height: math.unit(50, "feet"),
  22561. weight: math.unit(50000, "kg"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/anders/front.svg",
  22565. extra: 570 / 539,
  22566. bottom: 14.7 / 586.7
  22567. }
  22568. },
  22569. },
  22570. [
  22571. {
  22572. name: "Large",
  22573. height: math.unit(50, "feet")
  22574. },
  22575. {
  22576. name: "Macro",
  22577. height: math.unit(2000, "feet"),
  22578. default: true
  22579. },
  22580. {
  22581. name: "Megamacro",
  22582. height: math.unit(12, "miles")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22588. {
  22589. front: {
  22590. height: math.unit(7 + 2 / 12, "feet"),
  22591. weight: math.unit(300, "lb"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/reban/front.svg",
  22595. extra: 1287/1212,
  22596. bottom: 148/1435
  22597. }
  22598. },
  22599. head: {
  22600. height: math.unit(1.95, "feet"),
  22601. name: "Head",
  22602. image: {
  22603. source: "./media/characters/reban/head.svg"
  22604. }
  22605. },
  22606. maw: {
  22607. height: math.unit(0.95, "feet"),
  22608. name: "Maw",
  22609. image: {
  22610. source: "./media/characters/reban/maw.svg"
  22611. }
  22612. },
  22613. foot: {
  22614. height: math.unit(1.65, "feet"),
  22615. name: "Foot",
  22616. image: {
  22617. source: "./media/characters/reban/foot.svg"
  22618. }
  22619. },
  22620. dick: {
  22621. height: math.unit(7 / 5, "feet"),
  22622. name: "Dick",
  22623. image: {
  22624. source: "./media/characters/reban/dick.svg"
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Natural Height",
  22631. height: math.unit(7 + 2 / 12, "feet")
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(500, "feet"),
  22636. default: true
  22637. },
  22638. {
  22639. name: "Canon Height",
  22640. height: math.unit(50, "AU")
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(6, "feet"),
  22649. weight: math.unit(150, "lb"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/terrance-keayes/front.svg",
  22653. extra: 1.005,
  22654. bottom: 151 / 1615
  22655. }
  22656. },
  22657. side: {
  22658. height: math.unit(6, "feet"),
  22659. weight: math.unit(150, "lb"),
  22660. name: "Side",
  22661. image: {
  22662. source: "./media/characters/terrance-keayes/side.svg",
  22663. extra: 1.005,
  22664. bottom: 129.4 / 1544
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(6, "feet"),
  22669. weight: math.unit(150, "lb"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/terrance-keayes/back.svg",
  22673. extra: 1.005,
  22674. bottom: 58.4 / 1557.3
  22675. }
  22676. },
  22677. dick: {
  22678. height: math.unit(6 * 0.208, "feet"),
  22679. name: "Dick",
  22680. image: {
  22681. source: "./media/characters/terrance-keayes/dick.svg"
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Canon Height",
  22688. height: math.unit(35, "miles"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(6, "feet"),
  22698. weight: math.unit(150, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/ofelia/front.svg",
  22702. extra: 1130/1117,
  22703. bottom: 91/1221
  22704. }
  22705. },
  22706. back: {
  22707. height: math.unit(6, "feet"),
  22708. weight: math.unit(150, "lb"),
  22709. name: "Back",
  22710. image: {
  22711. source: "./media/characters/ofelia/back.svg",
  22712. extra: 1172/1159,
  22713. bottom: 28/1200
  22714. }
  22715. },
  22716. maw: {
  22717. height: math.unit(1, "feet"),
  22718. name: "Maw",
  22719. image: {
  22720. source: "./media/characters/ofelia/maw.svg"
  22721. }
  22722. },
  22723. foot: {
  22724. height: math.unit(1.949, "feet"),
  22725. name: "Foot",
  22726. image: {
  22727. source: "./media/characters/ofelia/foot.svg"
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Canon Height",
  22734. height: math.unit(2000, "miles"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/samuel/front.svg",
  22748. extra: 265 / 258,
  22749. bottom: 2 / 266.1566
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(100, "feet"),
  22757. default: true
  22758. },
  22759. {
  22760. name: "Full Size",
  22761. height: math.unit(1000, "miles")
  22762. },
  22763. ]
  22764. ))
  22765. characterMakers.push(() => makeCharacter(
  22766. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22767. {
  22768. front: {
  22769. height: math.unit(6, "feet"),
  22770. weight: math.unit(300, "lb"),
  22771. name: "Front",
  22772. image: {
  22773. source: "./media/characters/beishir-kiel/front.svg",
  22774. extra: 569 / 547,
  22775. bottom: 41.9 / 609
  22776. }
  22777. },
  22778. maw: {
  22779. height: math.unit(6 * 0.202, "feet"),
  22780. name: "Maw",
  22781. image: {
  22782. source: "./media/characters/beishir-kiel/maw.svg"
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Macro",
  22789. height: math.unit(300, "feet"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(5 + 7/12, "feet"),
  22799. weight: math.unit(120, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/logan-grey/front.svg",
  22803. extra: 1836/1738,
  22804. bottom: 108/1944
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(5 + 7/12, "feet"),
  22809. weight: math.unit(120, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/logan-grey/back.svg",
  22813. extra: 1880/1794,
  22814. bottom: 24/1904
  22815. }
  22816. },
  22817. frontSfw: {
  22818. height: math.unit(5 + 7/12, "feet"),
  22819. weight: math.unit(120, "lb"),
  22820. name: "Front (SFW)",
  22821. image: {
  22822. source: "./media/characters/logan-grey/front-sfw.svg",
  22823. extra: 1836/1738,
  22824. bottom: 108/1944
  22825. }
  22826. },
  22827. backSfw: {
  22828. height: math.unit(5 + 7/12, "feet"),
  22829. weight: math.unit(120, "lb"),
  22830. name: "Back (SFW)",
  22831. image: {
  22832. source: "./media/characters/logan-grey/back-sfw.svg",
  22833. extra: 1880/1794,
  22834. bottom: 24/1904
  22835. }
  22836. },
  22837. hands: {
  22838. height: math.unit(0.84, "feet"),
  22839. name: "Hands",
  22840. image: {
  22841. source: "./media/characters/logan-grey/hands.svg"
  22842. }
  22843. },
  22844. paws: {
  22845. height: math.unit(0.72, "feet"),
  22846. name: "Paws",
  22847. image: {
  22848. source: "./media/characters/logan-grey/paws.svg"
  22849. }
  22850. },
  22851. cock: {
  22852. height: math.unit(1.45, "feet"),
  22853. name: "Cock",
  22854. image: {
  22855. source: "./media/characters/logan-grey/cock.svg"
  22856. }
  22857. },
  22858. cockAlt: {
  22859. height: math.unit(1.437, "feet"),
  22860. name: "Cock (alt)",
  22861. image: {
  22862. source: "./media/characters/logan-grey/cock-alt.svg"
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(5 + 8 / 12, "feet")
  22870. },
  22871. {
  22872. name: "The 500 Foot Femboy",
  22873. height: math.unit(500, "feet"),
  22874. default: true
  22875. },
  22876. {
  22877. name: "Megmacro",
  22878. height: math.unit(20, "miles")
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(8 + 2 / 12, "feet"),
  22887. weight: math.unit(275, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/draganta/front.svg",
  22891. extra: 1177 / 1135,
  22892. bottom: 33.46 / 1212.1
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(8 + 6 / 12, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(150, "feet")
  22905. },
  22906. {
  22907. name: "Megamacro",
  22908. height: math.unit(1000, "miles")
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(1.72, "m"),
  22917. weight: math.unit(80, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/voski/front.svg",
  22921. extra: 2076.22 / 2022.4,
  22922. bottom: 102.7 / 2177.3866
  22923. }
  22924. },
  22925. frontNsfw: {
  22926. height: math.unit(1.72, "m"),
  22927. weight: math.unit(80, "lb"),
  22928. name: "Front (NSFW)",
  22929. image: {
  22930. source: "./media/characters/voski/front-nsfw.svg",
  22931. extra: 2076.22 / 2022.4,
  22932. bottom: 102.7 / 2177.3866
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(1.72, "m"),
  22937. weight: math.unit(80, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/voski/back.svg",
  22941. extra: 2104 / 2051,
  22942. bottom: 10.45 / 2113.63
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(1.72, "m")
  22950. },
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(55, "m"),
  22954. default: true
  22955. },
  22956. {
  22957. name: "Macro+",
  22958. height: math.unit(300, "m")
  22959. },
  22960. {
  22961. name: "Macro++",
  22962. height: math.unit(700, "m")
  22963. },
  22964. {
  22965. name: "Macro+++",
  22966. height: math.unit(4500, "m")
  22967. },
  22968. {
  22969. name: "Macro++++",
  22970. height: math.unit(45, "km")
  22971. },
  22972. {
  22973. name: "Macro+++++",
  22974. height: math.unit(1220, "km")
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(2.3, "m"),
  22983. weight: math.unit(304, "kg"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/icowom-lee/front.svg",
  22987. extra: 985 / 955,
  22988. bottom: 25.4 / 1012
  22989. }
  22990. },
  22991. fronttentacles: {
  22992. height: math.unit(2.3, "m"),
  22993. weight: math.unit(304, "kg"),
  22994. name: "Front-tentacles",
  22995. image: {
  22996. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22997. extra: 985 / 955,
  22998. bottom: 25.4 / 1012
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(2.3, "m"),
  23003. weight: math.unit(304, "kg"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/icowom-lee/back.svg",
  23007. extra: 975 / 954,
  23008. bottom: 9.5 / 985
  23009. }
  23010. },
  23011. backtentacles: {
  23012. height: math.unit(2.3, "m"),
  23013. weight: math.unit(304, "kg"),
  23014. name: "Back-tentacles",
  23015. image: {
  23016. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23017. extra: 975 / 954,
  23018. bottom: 9.5 / 985
  23019. }
  23020. },
  23021. frontDressed: {
  23022. height: math.unit(2.3, "m"),
  23023. weight: math.unit(304, "kg"),
  23024. name: "Front (Dressed)",
  23025. image: {
  23026. source: "./media/characters/icowom-lee/front-dressed.svg",
  23027. extra: 3076 / 2933,
  23028. bottom: 51.4 / 3125.1889
  23029. }
  23030. },
  23031. rump: {
  23032. height: math.unit(0.776, "meters"),
  23033. name: "Rump",
  23034. image: {
  23035. source: "./media/characters/icowom-lee/rump.svg"
  23036. }
  23037. },
  23038. genitals: {
  23039. height: math.unit(0.78, "meters"),
  23040. name: "Genitals",
  23041. image: {
  23042. source: "./media/characters/icowom-lee/genitals.svg"
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(2.3, "meters"),
  23050. default: true
  23051. },
  23052. {
  23053. name: "Macro",
  23054. height: math.unit(94, "meters"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(22, "meters"),
  23064. weight: math.unit(21000, "kg"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/shock-diamond/front.svg",
  23068. extra: 2204 / 2053,
  23069. bottom: 65 / 2239.47
  23070. }
  23071. },
  23072. frontNude: {
  23073. height: math.unit(22, "meters"),
  23074. weight: math.unit(21000, "kg"),
  23075. name: "Front (Nude)",
  23076. image: {
  23077. source: "./media/characters/shock-diamond/front-nude.svg",
  23078. extra: 2514 / 2285,
  23079. bottom: 13 / 2527.56
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(3, "meters")
  23087. },
  23088. {
  23089. name: "Macro",
  23090. height: math.unit(22, "meters"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(5 + 4 / 12, "feet"),
  23100. weight: math.unit(120, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/rory/front.svg",
  23104. extra: 1318/1241,
  23105. bottom: 42/1360
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(5 + 4 / 12, "feet"),
  23110. weight: math.unit(120, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/rory/back.svg",
  23114. extra: 1318/1241,
  23115. bottom: 42/1360
  23116. }
  23117. },
  23118. butt: {
  23119. height: math.unit(1.74, "feet"),
  23120. name: "Butt",
  23121. image: {
  23122. source: "./media/characters/rory/butt.svg"
  23123. }
  23124. },
  23125. dick: {
  23126. height: math.unit(1.02, "feet"),
  23127. name: "Dick",
  23128. image: {
  23129. source: "./media/characters/rory/dick.svg"
  23130. }
  23131. },
  23132. paws: {
  23133. height: math.unit(1, "feet"),
  23134. name: "Paws",
  23135. image: {
  23136. source: "./media/characters/rory/paws.svg"
  23137. }
  23138. },
  23139. frontAlt: {
  23140. height: math.unit(5 + 4 / 12, "feet"),
  23141. weight: math.unit(120, "lb"),
  23142. name: "Front (Alt)",
  23143. image: {
  23144. source: "./media/characters/rory/front-alt.svg",
  23145. extra: 589 / 556,
  23146. bottom: 45.7 / 635.76
  23147. }
  23148. },
  23149. frontAltNude: {
  23150. height: math.unit(5 + 4 / 12, "feet"),
  23151. weight: math.unit(120, "lb"),
  23152. name: "Front (Alt, Nude)",
  23153. image: {
  23154. source: "./media/characters/rory/front-alt-nude.svg",
  23155. extra: 589 / 556,
  23156. bottom: 45.7 / 635.76
  23157. }
  23158. },
  23159. side: {
  23160. height: math.unit(5 + 4 / 12, "feet"),
  23161. weight: math.unit(120, "lb"),
  23162. name: "Side",
  23163. image: {
  23164. source: "./media/characters/rory/side.svg",
  23165. extra: 597 / 564,
  23166. bottom: 55 / 653
  23167. }
  23168. },
  23169. backAlt: {
  23170. height: math.unit(5 + 4 / 12, "feet"),
  23171. weight: math.unit(120, "lb"),
  23172. name: "Back (Alt)",
  23173. image: {
  23174. source: "./media/characters/rory/back-alt.svg",
  23175. extra: 620 / 585,
  23176. bottom: 8.86 / 630.43
  23177. }
  23178. },
  23179. dickAlt: {
  23180. height: math.unit(0.86, "feet"),
  23181. name: "Dick (Alt)",
  23182. image: {
  23183. source: "./media/characters/rory/dick-alt.svg"
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(5 + 4 / 12, "feet"),
  23191. default: true
  23192. },
  23193. {
  23194. name: "Macro",
  23195. height: math.unit(100, "feet")
  23196. },
  23197. {
  23198. name: "Macro+",
  23199. height: math.unit(140, "feet")
  23200. },
  23201. {
  23202. name: "Macro++",
  23203. height: math.unit(300, "feet")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(5 + 9 / 12, "feet"),
  23212. weight: math.unit(190, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/sprisk/front.svg",
  23216. extra: 1225 / 1180,
  23217. bottom: 42.7 / 1266.4
  23218. }
  23219. },
  23220. frontNsfw: {
  23221. height: math.unit(5 + 9 / 12, "feet"),
  23222. weight: math.unit(190, "lb"),
  23223. name: "Front (NSFW)",
  23224. image: {
  23225. source: "./media/characters/sprisk/front-nsfw.svg",
  23226. extra: 1225 / 1180,
  23227. bottom: 42.7 / 1266.4
  23228. }
  23229. },
  23230. back: {
  23231. height: math.unit(5 + 9 / 12, "feet"),
  23232. weight: math.unit(190, "lb"),
  23233. name: "Back",
  23234. image: {
  23235. source: "./media/characters/sprisk/back.svg",
  23236. extra: 1247 / 1200,
  23237. bottom: 5.6 / 1253.04
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Tiny",
  23244. height: math.unit(2, "inches")
  23245. },
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(5 + 9 / 12, "feet"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Mini Macro",
  23253. height: math.unit(18, "feet")
  23254. },
  23255. {
  23256. name: "Macro",
  23257. height: math.unit(100, "feet")
  23258. },
  23259. {
  23260. name: "MACRO",
  23261. height: math.unit(50, "miles")
  23262. },
  23263. {
  23264. name: "M A C R O",
  23265. height: math.unit(300, "miles")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23271. {
  23272. side: {
  23273. height: math.unit(15.6, "meters"),
  23274. weight: math.unit(700000, "kg"),
  23275. name: "Side",
  23276. image: {
  23277. source: "./media/characters/bunsen/side.svg",
  23278. extra: 1644 / 358
  23279. }
  23280. },
  23281. foot: {
  23282. height: math.unit(1.611 * 1644 / 358, "meter"),
  23283. name: "Foot",
  23284. image: {
  23285. source: "./media/characters/bunsen/foot.svg"
  23286. }
  23287. },
  23288. },
  23289. [
  23290. {
  23291. name: "Small",
  23292. height: math.unit(10, "feet")
  23293. },
  23294. {
  23295. name: "Normal",
  23296. height: math.unit(15.6, "meters"),
  23297. default: true
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(4 + 11 / 12, "feet"),
  23306. weight: math.unit(140, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/sesh/front.svg",
  23310. extra: 3420 / 3231,
  23311. bottom: 72 / 3949.5
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(4 + 11 / 12, "feet")
  23319. },
  23320. {
  23321. name: "Grown",
  23322. height: math.unit(15, "feet"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(1500, "feet")
  23328. },
  23329. {
  23330. name: "Megamacro",
  23331. height: math.unit(30, "miles")
  23332. },
  23333. {
  23334. name: "Continental",
  23335. height: math.unit(3000, "miles")
  23336. },
  23337. {
  23338. name: "Gravity Mass",
  23339. height: math.unit(300000, "miles")
  23340. },
  23341. {
  23342. name: "Planet Buster",
  23343. height: math.unit(30000000, "miles")
  23344. },
  23345. {
  23346. name: "Big",
  23347. height: math.unit(3000000000, "miles")
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(9, "feet"),
  23356. weight: math.unit(350, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/pepper/front.svg",
  23360. extra: 1448 / 1312,
  23361. bottom: 9.4 / 1457.88
  23362. }
  23363. },
  23364. back: {
  23365. height: math.unit(9, "feet"),
  23366. weight: math.unit(350, "lb"),
  23367. name: "Back",
  23368. image: {
  23369. source: "./media/characters/pepper/back.svg",
  23370. extra: 1423 / 1300,
  23371. bottom: 4.6 / 1429
  23372. }
  23373. },
  23374. maw: {
  23375. height: math.unit(0.932, "feet"),
  23376. name: "Maw",
  23377. image: {
  23378. source: "./media/characters/pepper/maw.svg"
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(9, "feet"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(6, "feet"),
  23395. weight: math.unit(150, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/maelstrom/front.svg",
  23399. extra: 2100 / 1883,
  23400. bottom: 94 / 2196.7
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Less Kaiju",
  23407. height: math.unit(200, "feet")
  23408. },
  23409. {
  23410. name: "Kaiju",
  23411. height: math.unit(400, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Kaiju-er",
  23416. height: math.unit(600, "feet")
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(6 + 5 / 12, "feet"),
  23425. weight: math.unit(180, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/lexir/front.svg",
  23429. extra: 180 / 172,
  23430. bottom: 12 / 192
  23431. }
  23432. },
  23433. back: {
  23434. height: math.unit(6 + 5 / 12, "feet"),
  23435. weight: math.unit(180, "lb"),
  23436. name: "Back",
  23437. image: {
  23438. source: "./media/characters/lexir/back.svg",
  23439. extra: 183.84 / 175.5,
  23440. bottom: 3.1 / 187
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Very Smal",
  23447. height: math.unit(1, "nm")
  23448. },
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(6 + 5 / 12, "feet"),
  23452. default: true
  23453. },
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(1, "mile")
  23457. },
  23458. {
  23459. name: "Megamacro",
  23460. height: math.unit(50, "miles")
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23466. {
  23467. front: {
  23468. height: math.unit(1.5, "meters"),
  23469. weight: math.unit(100, "lb"),
  23470. name: "Front",
  23471. image: {
  23472. source: "./media/characters/maksio/front.svg",
  23473. extra: 1549 / 1531,
  23474. bottom: 123.7 / 1674.5429
  23475. }
  23476. },
  23477. back: {
  23478. height: math.unit(1.5, "meters"),
  23479. weight: math.unit(100, "lb"),
  23480. name: "Back",
  23481. image: {
  23482. source: "./media/characters/maksio/back.svg",
  23483. extra: 1541 / 1509,
  23484. bottom: 97 / 1639
  23485. }
  23486. },
  23487. hand: {
  23488. height: math.unit(0.621, "feet"),
  23489. name: "Hand",
  23490. image: {
  23491. source: "./media/characters/maksio/hand.svg"
  23492. }
  23493. },
  23494. foot: {
  23495. height: math.unit(1.611, "feet"),
  23496. name: "Foot",
  23497. image: {
  23498. source: "./media/characters/maksio/foot.svg"
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Shrunken",
  23505. height: math.unit(10, "cm")
  23506. },
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(150, "cm"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(100, "feet"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/erza-bear/front.svg",
  23522. extra: 2449 / 2390,
  23523. bottom: 46 / 2494
  23524. }
  23525. },
  23526. back: {
  23527. height: math.unit(100, "feet"),
  23528. name: "Back",
  23529. image: {
  23530. source: "./media/characters/erza-bear/back.svg",
  23531. extra: 2489 / 2430,
  23532. bottom: 85.4 / 2480
  23533. }
  23534. },
  23535. tail: {
  23536. height: math.unit(42, "feet"),
  23537. name: "Tail",
  23538. image: {
  23539. source: "./media/characters/erza-bear/tail.svg"
  23540. }
  23541. },
  23542. tongue: {
  23543. height: math.unit(8, "feet"),
  23544. name: "Tongue",
  23545. image: {
  23546. source: "./media/characters/erza-bear/tongue.svg"
  23547. }
  23548. },
  23549. dick: {
  23550. height: math.unit(10.5, "feet"),
  23551. name: "Dick",
  23552. image: {
  23553. source: "./media/characters/erza-bear/dick.svg"
  23554. }
  23555. },
  23556. dickVertical: {
  23557. height: math.unit(16.9, "feet"),
  23558. name: "Dick (Vertical)",
  23559. image: {
  23560. source: "./media/characters/erza-bear/dick-vertical.svg"
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Macro",
  23567. height: math.unit(100, "feet"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(172, "cm"),
  23577. weight: math.unit(73, "kg"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/violet-flor/front.svg",
  23581. extra: 1530 / 1442,
  23582. bottom: 61.9 / 1588.8
  23583. }
  23584. },
  23585. back: {
  23586. height: math.unit(180, "cm"),
  23587. weight: math.unit(73, "kg"),
  23588. name: "Back",
  23589. image: {
  23590. source: "./media/characters/violet-flor/back.svg",
  23591. extra: 1692 / 1630,
  23592. bottom: 20 / 1712
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(172, "cm"),
  23600. default: true
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23606. {
  23607. front: {
  23608. height: math.unit(6, "feet"),
  23609. weight: math.unit(220, "lb"),
  23610. name: "Front",
  23611. image: {
  23612. source: "./media/characters/lynn-rhea/front.svg",
  23613. extra: 310 / 273
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(6, "feet"),
  23618. weight: math.unit(220, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/lynn-rhea/back.svg",
  23622. extra: 310 / 273
  23623. }
  23624. },
  23625. dicks: {
  23626. height: math.unit(0.9, "feet"),
  23627. name: "Dicks",
  23628. image: {
  23629. source: "./media/characters/lynn-rhea/dicks.svg"
  23630. }
  23631. },
  23632. slit: {
  23633. height: math.unit(0.4, "feet"),
  23634. name: "Slit",
  23635. image: {
  23636. source: "./media/characters/lynn-rhea/slit.svg"
  23637. }
  23638. },
  23639. },
  23640. [
  23641. {
  23642. name: "Micro",
  23643. height: math.unit(1, "inch")
  23644. },
  23645. {
  23646. name: "Macro",
  23647. height: math.unit(60, "feet"),
  23648. default: true
  23649. },
  23650. {
  23651. name: "Megamacro",
  23652. height: math.unit(2, "miles")
  23653. },
  23654. {
  23655. name: "Gigamacro",
  23656. height: math.unit(3, "earths")
  23657. },
  23658. {
  23659. name: "Galactic",
  23660. height: math.unit(0.8, "galaxies")
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23666. {
  23667. front: {
  23668. height: math.unit(1600, "feet"),
  23669. weight: math.unit(85758785169, "kg"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/valathos/front.svg",
  23673. extra: 1451 / 1339
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(1600, "feet"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(7 + 5 / 12, "feet"),
  23690. weight: math.unit(300, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/azula/front.svg",
  23694. extra: 3208 / 2880,
  23695. bottom: 80.2 / 3277
  23696. }
  23697. },
  23698. back: {
  23699. height: math.unit(7 + 5 / 12, "feet"),
  23700. weight: math.unit(300, "lb"),
  23701. name: "Back",
  23702. image: {
  23703. source: "./media/characters/azula/back.svg",
  23704. extra: 3169 / 2822,
  23705. bottom: 150.6 / 3321
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Normal",
  23712. height: math.unit(7 + 5 / 12, "feet"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Big",
  23717. height: math.unit(20, "feet")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(5 + 1 / 12, "feet"),
  23726. weight: math.unit(110, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/rupert/front.svg",
  23730. extra: 1549 / 1495,
  23731. bottom: 54.2 / 1604.4
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Normal",
  23738. height: math.unit(5 + 1 / 12, "feet"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23745. {
  23746. front: {
  23747. height: math.unit(8 + 4 / 12, "feet"),
  23748. weight: math.unit(350, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/sheera-castellar/front.svg",
  23752. extra: 1957 / 1894,
  23753. bottom: 26.97 / 1975.017
  23754. }
  23755. },
  23756. side: {
  23757. height: math.unit(8 + 4 / 12, "feet"),
  23758. weight: math.unit(350, "lb"),
  23759. name: "Side",
  23760. image: {
  23761. source: "./media/characters/sheera-castellar/side.svg",
  23762. extra: 1957 / 1894
  23763. }
  23764. },
  23765. back: {
  23766. height: math.unit(8 + 4 / 12, "feet"),
  23767. weight: math.unit(350, "lb"),
  23768. name: "Back",
  23769. image: {
  23770. source: "./media/characters/sheera-castellar/back.svg",
  23771. extra: 1957 / 1894
  23772. }
  23773. },
  23774. angled: {
  23775. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23776. weight: math.unit(350, "lb"),
  23777. name: "Angled",
  23778. image: {
  23779. source: "./media/characters/sheera-castellar/angled.svg",
  23780. extra: 1807 / 1707,
  23781. bottom: 68 / 1875
  23782. }
  23783. },
  23784. genitals: {
  23785. height: math.unit(2.2, "feet"),
  23786. name: "Genitals",
  23787. image: {
  23788. source: "./media/characters/sheera-castellar/genitals.svg"
  23789. }
  23790. },
  23791. taur: {
  23792. height: math.unit(10 + 6/12, "feet"),
  23793. name: "Taur",
  23794. image: {
  23795. source: "./media/characters/sheera-castellar/taur.svg",
  23796. extra: 2017/1909,
  23797. bottom: 185/2202
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(8 + 4 / 12, "feet")
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(150, "feet"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Macro+",
  23813. height: math.unit(800, "feet")
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(6, "feet"),
  23822. weight: math.unit(150, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/jaipur/front.svg",
  23826. extra: 3860 / 3731,
  23827. bottom: 287 / 4140
  23828. }
  23829. },
  23830. back: {
  23831. height: math.unit(6, "feet"),
  23832. weight: math.unit(150, "lb"),
  23833. name: "Back",
  23834. image: {
  23835. source: "./media/characters/jaipur/back.svg",
  23836. extra: 4060 / 3930,
  23837. bottom: 151 / 4200
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(1.85, "meters"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Macro",
  23849. height: math.unit(150, "meters")
  23850. },
  23851. {
  23852. name: "Macro+",
  23853. height: math.unit(0.5, "miles")
  23854. },
  23855. {
  23856. name: "Macro++",
  23857. height: math.unit(2.5, "miles")
  23858. },
  23859. {
  23860. name: "Macro+++",
  23861. height: math.unit(12, "miles")
  23862. },
  23863. {
  23864. name: "Macro++++",
  23865. height: math.unit(120, "miles")
  23866. },
  23867. {
  23868. name: "Macro+++++",
  23869. height: math.unit(1200, "miles")
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23875. {
  23876. front: {
  23877. height: math.unit(6, "feet"),
  23878. weight: math.unit(150, "lb"),
  23879. name: "Front",
  23880. image: {
  23881. source: "./media/characters/sheila-wolf/front.svg",
  23882. extra: 1931 / 1808,
  23883. bottom: 29.5 / 1960
  23884. }
  23885. },
  23886. dick: {
  23887. height: math.unit(1.464, "feet"),
  23888. name: "Dick",
  23889. image: {
  23890. source: "./media/characters/sheila-wolf/dick.svg"
  23891. }
  23892. },
  23893. muzzle: {
  23894. height: math.unit(0.513, "feet"),
  23895. name: "Muzzle",
  23896. image: {
  23897. source: "./media/characters/sheila-wolf/muzzle.svg"
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(70, "feet"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23911. {
  23912. front: {
  23913. height: math.unit(32, "meters"),
  23914. weight: math.unit(300000, "kg"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/almor/front.svg",
  23918. extra: 1408 / 1322,
  23919. bottom: 94.6 / 1506.5
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Macro",
  23926. height: math.unit(32, "meters"),
  23927. default: true
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23933. {
  23934. front: {
  23935. height: math.unit(7, "feet"),
  23936. weight: math.unit(200, "lb"),
  23937. name: "Front",
  23938. image: {
  23939. source: "./media/characters/silver/front.svg",
  23940. extra: 472.1 / 450.5,
  23941. bottom: 26.5 / 499.424
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(7, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Macro",
  23953. height: math.unit(800, "feet")
  23954. },
  23955. {
  23956. name: "Megamacro",
  23957. height: math.unit(250, "miles")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(6, "feet"),
  23966. weight: math.unit(150, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/pliskin/front.svg",
  23970. extra: 1469 / 1359,
  23971. bottom: 70 / 1540
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Micro",
  23978. height: math.unit(3, "inches")
  23979. },
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(5 + 11 / 12, "feet"),
  23983. default: true
  23984. },
  23985. {
  23986. name: "Macro",
  23987. height: math.unit(120, "feet")
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23993. {
  23994. front: {
  23995. height: math.unit(6, "feet"),
  23996. weight: math.unit(150, "lb"),
  23997. name: "Front",
  23998. image: {
  23999. source: "./media/characters/sammy/front.svg",
  24000. extra: 1193 / 1089,
  24001. bottom: 30.5 / 1226
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Macro",
  24008. height: math.unit(1700, "feet"),
  24009. default: true
  24010. },
  24011. {
  24012. name: "Examacro",
  24013. height: math.unit(2.5e9, "lightyears")
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(21, "meters"),
  24022. weight: math.unit(12, "tonnes"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/kuru/front.svg",
  24026. extra: 4301 / 3785,
  24027. bottom: 371.3 / 4691
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(21, "meters"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(23, "meters"),
  24044. weight: math.unit(12.2, "tonnes"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/rakka/front.svg",
  24048. extra: 4670 / 4169,
  24049. bottom: 301 / 4968.7
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(23, "meters"),
  24057. default: true
  24058. },
  24059. ]
  24060. ))
  24061. characterMakers.push(() => makeCharacter(
  24062. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24063. {
  24064. front: {
  24065. height: math.unit(6, "feet"),
  24066. weight: math.unit(150, "lb"),
  24067. name: "Front",
  24068. image: {
  24069. source: "./media/characters/rhys-feline/front.svg",
  24070. extra: 2488 / 2308,
  24071. bottom: 35.67 / 2519.19
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Really Small",
  24078. height: math.unit(1, "nm")
  24079. },
  24080. {
  24081. name: "Micro",
  24082. height: math.unit(4, "inches")
  24083. },
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(4 + 10 / 12, "feet"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(100, "feet")
  24092. },
  24093. {
  24094. name: "Megamacto",
  24095. height: math.unit(50, "miles")
  24096. },
  24097. ]
  24098. ))
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24101. {
  24102. side: {
  24103. height: math.unit(30, "feet"),
  24104. weight: math.unit(35000, "kg"),
  24105. name: "Side",
  24106. image: {
  24107. source: "./media/characters/alydar/side.svg",
  24108. extra: 234 / 222,
  24109. bottom: 6.5 / 241
  24110. }
  24111. },
  24112. front: {
  24113. height: math.unit(30, "feet"),
  24114. weight: math.unit(35000, "kg"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/alydar/front.svg",
  24118. extra: 223.37 / 210.2,
  24119. bottom: 22.3 / 246.76
  24120. }
  24121. },
  24122. top: {
  24123. height: math.unit(64.54, "feet"),
  24124. weight: math.unit(35000, "kg"),
  24125. name: "Top",
  24126. image: {
  24127. source: "./media/characters/alydar/top.svg"
  24128. }
  24129. },
  24130. anthro: {
  24131. height: math.unit(30, "feet"),
  24132. weight: math.unit(9000, "kg"),
  24133. name: "Anthro",
  24134. image: {
  24135. source: "./media/characters/alydar/anthro.svg",
  24136. extra: 432 / 421,
  24137. bottom: 7.18 / 440
  24138. }
  24139. },
  24140. maw: {
  24141. height: math.unit(11.693, "feet"),
  24142. name: "Maw",
  24143. image: {
  24144. source: "./media/characters/alydar/maw.svg"
  24145. }
  24146. },
  24147. head: {
  24148. height: math.unit(11.693, "feet"),
  24149. name: "Head",
  24150. image: {
  24151. source: "./media/characters/alydar/head.svg"
  24152. }
  24153. },
  24154. headAlt: {
  24155. height: math.unit(12.861, "feet"),
  24156. name: "Head (Alt)",
  24157. image: {
  24158. source: "./media/characters/alydar/head-alt.svg"
  24159. }
  24160. },
  24161. wing: {
  24162. height: math.unit(20.712, "feet"),
  24163. name: "Wing",
  24164. image: {
  24165. source: "./media/characters/alydar/wing.svg"
  24166. }
  24167. },
  24168. wingFeather: {
  24169. height: math.unit(9.662, "feet"),
  24170. name: "Wing Feather",
  24171. image: {
  24172. source: "./media/characters/alydar/wing-feather.svg"
  24173. }
  24174. },
  24175. countourFeather: {
  24176. height: math.unit(4.154, "feet"),
  24177. name: "Contour Feather",
  24178. image: {
  24179. source: "./media/characters/alydar/contour-feather.svg"
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Diplomatic",
  24186. height: math.unit(13, "feet"),
  24187. default: true
  24188. },
  24189. {
  24190. name: "Small",
  24191. height: math.unit(30, "feet")
  24192. },
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(95, "feet"),
  24196. default: true
  24197. },
  24198. {
  24199. name: "Large",
  24200. height: math.unit(285, "feet")
  24201. },
  24202. {
  24203. name: "Incomprehensible",
  24204. height: math.unit(450, "megameters")
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24210. {
  24211. side: {
  24212. height: math.unit(11, "feet"),
  24213. weight: math.unit(1750, "kg"),
  24214. name: "Side",
  24215. image: {
  24216. source: "./media/characters/selicia/side.svg",
  24217. extra: 440 / 396,
  24218. bottom: 24.8 / 465.979
  24219. }
  24220. },
  24221. maw: {
  24222. height: math.unit(4.665, "feet"),
  24223. name: "Maw",
  24224. image: {
  24225. source: "./media/characters/selicia/maw.svg"
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(11, "feet"),
  24233. default: true
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24239. {
  24240. side: {
  24241. height: math.unit(2 + 6 / 12, "feet"),
  24242. weight: math.unit(30, "lb"),
  24243. name: "Side",
  24244. image: {
  24245. source: "./media/characters/layla/side.svg",
  24246. extra: 244 / 188,
  24247. bottom: 18.2 / 262.1
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(2 + 6 / 12, "feet"),
  24252. weight: math.unit(30, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/layla/back.svg",
  24256. extra: 308 / 241.5,
  24257. bottom: 8.9 / 316.8
  24258. }
  24259. },
  24260. cumming: {
  24261. height: math.unit(2 + 6 / 12, "feet"),
  24262. weight: math.unit(30, "lb"),
  24263. name: "Cumming",
  24264. image: {
  24265. source: "./media/characters/layla/cumming.svg",
  24266. extra: 342 / 279,
  24267. bottom: 595 / 938
  24268. }
  24269. },
  24270. dickFlaccid: {
  24271. height: math.unit(2.595, "feet"),
  24272. name: "Flaccid Genitals",
  24273. image: {
  24274. source: "./media/characters/layla/dick-flaccid.svg"
  24275. }
  24276. },
  24277. dickErect: {
  24278. height: math.unit(2.359, "feet"),
  24279. name: "Erect Genitals",
  24280. image: {
  24281. source: "./media/characters/layla/dick-erect.svg"
  24282. }
  24283. },
  24284. dragon: {
  24285. height: math.unit(40, "feet"),
  24286. name: "Dragon",
  24287. image: {
  24288. source: "./media/characters/layla/dragon.svg",
  24289. extra: 610/535,
  24290. bottom: 367/977
  24291. }
  24292. },
  24293. taur: {
  24294. height: math.unit(30, "feet"),
  24295. name: "Taur",
  24296. image: {
  24297. source: "./media/characters/layla/taur.svg",
  24298. extra: 1268/1199,
  24299. bottom: 112/1380
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Micro",
  24306. height: math.unit(1, "inch")
  24307. },
  24308. {
  24309. name: "Small",
  24310. height: math.unit(1, "foot")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(2 + 6 / 12, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(200, "feet")
  24320. },
  24321. {
  24322. name: "Megamacro",
  24323. height: math.unit(1000, "miles")
  24324. },
  24325. {
  24326. name: "Planetary",
  24327. height: math.unit(8000, "miles")
  24328. },
  24329. {
  24330. name: "True Layla",
  24331. height: math.unit(200000 * 7, "multiverses")
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24337. {
  24338. back: {
  24339. height: math.unit(10.5, "feet"),
  24340. weight: math.unit(800, "lb"),
  24341. name: "Back",
  24342. image: {
  24343. source: "./media/characters/knox/back.svg",
  24344. extra: 1486 / 1089,
  24345. bottom: 107 / 1601.4
  24346. }
  24347. },
  24348. side: {
  24349. height: math.unit(10.5, "feet"),
  24350. weight: math.unit(800, "lb"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/knox/side.svg",
  24354. extra: 244 / 218,
  24355. bottom: 14 / 260
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Compact",
  24362. height: math.unit(10.5, "feet"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Dynamax",
  24367. height: math.unit(210, "feet")
  24368. },
  24369. {
  24370. name: "Full Macro",
  24371. height: math.unit(850, "feet")
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(28, "feet"),
  24380. weight: math.unit(10500, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/kayda/front.svg",
  24384. extra: 1536 / 1428,
  24385. bottom: 68.7 / 1603
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(28, "feet"),
  24390. weight: math.unit(10500, "lb"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/kayda/back.svg",
  24394. extra: 1557 / 1464,
  24395. bottom: 39.5 / 1597.49
  24396. }
  24397. },
  24398. dick: {
  24399. height: math.unit(3.858, "feet"),
  24400. name: "Dick",
  24401. image: {
  24402. source: "./media/characters/kayda/dick.svg"
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(28, "feet"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(10 + 11 / 12, "feet"),
  24419. weight: math.unit(1400, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/brian/front.svg",
  24423. extra: 737 / 692,
  24424. bottom: 55.4 / 785
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(10 + 11 / 12, "feet"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(5 + 8 / 12, "feet"),
  24441. weight: math.unit(140, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/khemri/front.svg",
  24445. extra: 4780 / 4059,
  24446. bottom: 80.1 / 4859.25
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Micro",
  24453. height: math.unit(6, "inches")
  24454. },
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(5 + 8 / 12, "feet"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24464. {
  24465. front: {
  24466. height: math.unit(13, "feet"),
  24467. weight: math.unit(1700, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/felix-braveheart/front.svg",
  24471. extra: 1222 / 1157,
  24472. bottom: 53.2 / 1280
  24473. }
  24474. },
  24475. back: {
  24476. height: math.unit(13, "feet"),
  24477. weight: math.unit(1700, "lb"),
  24478. name: "Back",
  24479. image: {
  24480. source: "./media/characters/felix-braveheart/back.svg",
  24481. extra: 1277 / 1203,
  24482. bottom: 50.2 / 1327
  24483. }
  24484. },
  24485. feral: {
  24486. height: math.unit(6, "feet"),
  24487. weight: math.unit(400, "lb"),
  24488. name: "Feral",
  24489. image: {
  24490. source: "./media/characters/felix-braveheart/feral.svg",
  24491. extra: 682 / 625,
  24492. bottom: 6.9 / 688
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(13, "feet"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24506. {
  24507. side: {
  24508. height: math.unit(5 + 11 / 12, "feet"),
  24509. weight: math.unit(1400, "lb"),
  24510. name: "Side",
  24511. image: {
  24512. source: "./media/characters/shadow-blade/side.svg",
  24513. extra: 1726 / 1267,
  24514. bottom: 58.4 / 1785
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(5 + 11 / 12, "feet"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(1 + 6 / 12, "feet"),
  24531. weight: math.unit(25, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/karla-halldor/front.svg",
  24535. extra: 1459 / 1383,
  24536. bottom: 12 / 1472
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(1 + 6 / 12, "feet"),
  24544. default: true
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24550. {
  24551. front: {
  24552. height: math.unit(6 + 2 / 12, "feet"),
  24553. weight: math.unit(160, "lb"),
  24554. name: "Front",
  24555. image: {
  24556. source: "./media/characters/ariam/front.svg",
  24557. extra: 1073/976,
  24558. bottom: 52/1125
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(6 + 2/12, "feet"),
  24563. weight: math.unit(160, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/ariam/back.svg",
  24567. extra: 1103/1023,
  24568. bottom: 9/1112
  24569. }
  24570. },
  24571. dressed: {
  24572. height: math.unit(6 + 2/12, "feet"),
  24573. weight: math.unit(160, "lb"),
  24574. name: "Dressed",
  24575. image: {
  24576. source: "./media/characters/ariam/dressed.svg",
  24577. extra: 1099/1009,
  24578. bottom: 25/1124
  24579. }
  24580. },
  24581. squatting: {
  24582. height: math.unit(4.1, "feet"),
  24583. weight: math.unit(160, "lb"),
  24584. name: "Squatting",
  24585. image: {
  24586. source: "./media/characters/ariam/squatting.svg",
  24587. extra: 2617 / 2112,
  24588. bottom: 61.2 / 2681,
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(6 + 2 / 12, "feet"),
  24596. default: true
  24597. },
  24598. {
  24599. name: "Normal+",
  24600. height: math.unit(4, "meters")
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(50, "meters")
  24605. },
  24606. {
  24607. name: "Macro+",
  24608. height: math.unit(100, "meters")
  24609. },
  24610. {
  24611. name: "Megamacro",
  24612. height: math.unit(20, "km")
  24613. },
  24614. {
  24615. name: "Caretaker",
  24616. height: math.unit(444, "megameters")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(1.67, "meters"),
  24625. weight: math.unit(140, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24629. extra: 438 / 410,
  24630. bottom: 0.75 / 439
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Shrunken",
  24637. height: math.unit(7.6, "cm")
  24638. },
  24639. {
  24640. name: "Human Scale",
  24641. height: math.unit(1.67, "meters")
  24642. },
  24643. {
  24644. name: "Wolxi Scale",
  24645. height: math.unit(36.7, "meters"),
  24646. default: true
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(1.73, "meters"),
  24655. weight: math.unit(240, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/izue-two-mothers/front.svg",
  24659. extra: 469 / 437,
  24660. bottom: 1.24 / 470.6
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Shrunken",
  24667. height: math.unit(7.86, "cm")
  24668. },
  24669. {
  24670. name: "Human Scale",
  24671. height: math.unit(1.73, "meters")
  24672. },
  24673. {
  24674. name: "Wolxi Scale",
  24675. height: math.unit(38, "meters"),
  24676. default: true
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24682. {
  24683. front: {
  24684. height: math.unit(1.55, "meters"),
  24685. weight: math.unit(120, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/teeku-love-shack/front.svg",
  24689. extra: 387 / 362,
  24690. bottom: 1.51 / 388
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Shrunken",
  24697. height: math.unit(7, "cm")
  24698. },
  24699. {
  24700. name: "Human Scale",
  24701. height: math.unit(1.55, "meters")
  24702. },
  24703. {
  24704. name: "Wolxi Scale",
  24705. height: math.unit(34.1, "meters"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(1.83, "meters"),
  24715. weight: math.unit(135, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/dejma-the-red/front.svg",
  24719. extra: 480 / 458,
  24720. bottom: 1.8 / 482
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Shrunken",
  24727. height: math.unit(8.3, "cm")
  24728. },
  24729. {
  24730. name: "Human Scale",
  24731. height: math.unit(1.83, "meters")
  24732. },
  24733. {
  24734. name: "Wolxi Scale",
  24735. height: math.unit(40, "meters"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(1.78, "meters"),
  24745. weight: math.unit(65, "kg"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/aki/front.svg",
  24749. extra: 452 / 415
  24750. }
  24751. },
  24752. frontNsfw: {
  24753. height: math.unit(1.78, "meters"),
  24754. weight: math.unit(65, "kg"),
  24755. name: "Front (NSFW)",
  24756. image: {
  24757. source: "./media/characters/aki/front-nsfw.svg",
  24758. extra: 452 / 415
  24759. }
  24760. },
  24761. back: {
  24762. height: math.unit(1.78, "meters"),
  24763. weight: math.unit(65, "kg"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/aki/back.svg",
  24767. extra: 452 / 415
  24768. }
  24769. },
  24770. rump: {
  24771. height: math.unit(2.05, "feet"),
  24772. name: "Rump",
  24773. image: {
  24774. source: "./media/characters/aki/rump.svg"
  24775. }
  24776. },
  24777. dick: {
  24778. height: math.unit(0.95, "feet"),
  24779. name: "Dick",
  24780. image: {
  24781. source: "./media/characters/aki/dick.svg"
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Micro",
  24788. height: math.unit(15, "cm")
  24789. },
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(178, "cm"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(214, "m")
  24798. },
  24799. {
  24800. name: "Macro+",
  24801. height: math.unit(534, "m")
  24802. },
  24803. ]
  24804. ))
  24805. characterMakers.push(() => makeCharacter(
  24806. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24807. {
  24808. front: {
  24809. height: math.unit(5 + 5 / 12, "feet"),
  24810. weight: math.unit(120, "lb"),
  24811. name: "Front",
  24812. image: {
  24813. source: "./media/characters/ari/front.svg",
  24814. extra: 714.5 / 682,
  24815. bottom: 8 / 722.5
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(5 + 5 / 12, "feet")
  24823. },
  24824. {
  24825. name: "Macro",
  24826. height: math.unit(100, "feet"),
  24827. default: true
  24828. },
  24829. {
  24830. name: "Megamacro",
  24831. height: math.unit(100, "miles")
  24832. },
  24833. {
  24834. name: "Gigamacro",
  24835. height: math.unit(80000, "miles")
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24841. {
  24842. side: {
  24843. height: math.unit(9, "feet"),
  24844. weight: math.unit(400, "kg"),
  24845. name: "Side",
  24846. image: {
  24847. source: "./media/characters/bolt/side.svg",
  24848. extra: 1126 / 896,
  24849. bottom: 60 / 1187.3,
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Micro",
  24856. height: math.unit(5, "inches")
  24857. },
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(9, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "Macro",
  24865. height: math.unit(700, "feet")
  24866. },
  24867. {
  24868. name: "Max Size",
  24869. height: math.unit(1.52e22, "yottameters")
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(4.3, "meters"),
  24878. weight: math.unit(3, "tons"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/draekon-sylviar/front.svg",
  24882. extra: 2072/1512,
  24883. bottom: 74/2146
  24884. }
  24885. },
  24886. back: {
  24887. height: math.unit(4.3, "meters"),
  24888. weight: math.unit(3, "tons"),
  24889. name: "Back",
  24890. image: {
  24891. source: "./media/characters/draekon-sylviar/back.svg",
  24892. extra: 1639/1483,
  24893. bottom: 41/1680
  24894. }
  24895. },
  24896. feral: {
  24897. height: math.unit(1.15, "meters"),
  24898. weight: math.unit(3, "tons"),
  24899. name: "Feral",
  24900. image: {
  24901. source: "./media/characters/draekon-sylviar/feral.svg",
  24902. extra: 1033/395,
  24903. bottom: 130/1163
  24904. }
  24905. },
  24906. maw: {
  24907. height: math.unit(1.3, "meters"),
  24908. name: "Maw",
  24909. image: {
  24910. source: "./media/characters/draekon-sylviar/maw.svg"
  24911. }
  24912. },
  24913. mawSeparated: {
  24914. height: math.unit(1.53, "meters"),
  24915. name: "Separated Maw",
  24916. image: {
  24917. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24918. }
  24919. },
  24920. tail: {
  24921. height: math.unit(1.15, "meters"),
  24922. name: "Tail",
  24923. image: {
  24924. source: "./media/characters/draekon-sylviar/tail.svg"
  24925. }
  24926. },
  24927. tailDick: {
  24928. height: math.unit(1.15, "meters"),
  24929. name: "Tail (Dick)",
  24930. image: {
  24931. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  24932. }
  24933. },
  24934. tailDickSeparated: {
  24935. height: math.unit(1.19, "meters"),
  24936. name: "Tail (Separated Dick)",
  24937. image: {
  24938. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  24939. }
  24940. },
  24941. slit: {
  24942. height: math.unit(1, "meters"),
  24943. name: "Slit",
  24944. image: {
  24945. source: "./media/characters/draekon-sylviar/slit.svg"
  24946. }
  24947. },
  24948. dick: {
  24949. height: math.unit(1.15, "meters"),
  24950. name: "Dick",
  24951. image: {
  24952. source: "./media/characters/draekon-sylviar/dick.svg"
  24953. }
  24954. },
  24955. dickSeparated: {
  24956. height: math.unit(1.1, "meters"),
  24957. name: "Separated Dick",
  24958. image: {
  24959. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24960. }
  24961. },
  24962. sheath: {
  24963. height: math.unit(1.15, "meters"),
  24964. name: "Sheath",
  24965. image: {
  24966. source: "./media/characters/draekon-sylviar/sheath.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Small",
  24973. height: math.unit(4.53 / 2, "meters"),
  24974. default: true
  24975. },
  24976. {
  24977. name: "Normal",
  24978. height: math.unit(4.53, "meters"),
  24979. default: true
  24980. },
  24981. {
  24982. name: "Large",
  24983. height: math.unit(4.53 * 2, "meters"),
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(6 + 2 / 12, "feet"),
  24992. weight: math.unit(180, "lb"),
  24993. name: "Front",
  24994. image: {
  24995. source: "./media/characters/brawler/front.svg",
  24996. extra: 3301 / 3027,
  24997. bottom: 138 / 3439
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(6 + 2 / 12, "feet"),
  25005. default: true
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(11, "feet"),
  25014. weight: math.unit(1000, "lb"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/alex/front.svg",
  25018. bottom: 44.5 / 620
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Micro",
  25025. height: math.unit(5, "inches")
  25026. },
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(11, "feet"),
  25030. default: true
  25031. },
  25032. {
  25033. name: "Macro",
  25034. height: math.unit(9.5e9, "feet")
  25035. },
  25036. {
  25037. name: "Max Size",
  25038. height: math.unit(1.4e283, "yottameters")
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25044. {
  25045. female: {
  25046. height: math.unit(29.9, "m"),
  25047. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25048. name: "Female",
  25049. image: {
  25050. source: "./media/characters/zenari/female.svg",
  25051. extra: 3281.6 / 3217,
  25052. bottom: 72.2 / 3353
  25053. }
  25054. },
  25055. male: {
  25056. height: math.unit(27.7, "m"),
  25057. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25058. name: "Male",
  25059. image: {
  25060. source: "./media/characters/zenari/male.svg",
  25061. extra: 3008 / 2991,
  25062. bottom: 54.6 / 3069
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Macro",
  25069. height: math.unit(29.7, "meters"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25076. {
  25077. female: {
  25078. height: math.unit(23.8, "m"),
  25079. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25080. name: "Female",
  25081. image: {
  25082. source: "./media/characters/mactarian/female.svg",
  25083. extra: 2662 / 2569,
  25084. bottom: 73 / 2736
  25085. }
  25086. },
  25087. male: {
  25088. height: math.unit(23.8, "m"),
  25089. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25090. name: "Male",
  25091. image: {
  25092. source: "./media/characters/mactarian/male.svg",
  25093. extra: 2673 / 2600,
  25094. bottom: 76 / 2750
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(23.8, "meters"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25108. {
  25109. female: {
  25110. height: math.unit(19.3, "m"),
  25111. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25112. name: "Female",
  25113. image: {
  25114. source: "./media/characters/umok/female.svg",
  25115. extra: 2186 / 2078,
  25116. bottom: 87 / 2277
  25117. }
  25118. },
  25119. male: {
  25120. height: math.unit(19.5, "m"),
  25121. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25122. name: "Male",
  25123. image: {
  25124. source: "./media/characters/umok/male.svg",
  25125. extra: 2233 / 2140,
  25126. bottom: 24.4 / 2258
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Macro",
  25133. height: math.unit(19.3, "meters"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25140. {
  25141. female: {
  25142. height: math.unit(26.15, "m"),
  25143. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25144. name: "Female",
  25145. image: {
  25146. source: "./media/characters/joraxian/female.svg",
  25147. extra: 2912 / 2824,
  25148. bottom: 36 / 2956
  25149. }
  25150. },
  25151. male: {
  25152. height: math.unit(25.4, "m"),
  25153. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25154. name: "Male",
  25155. image: {
  25156. source: "./media/characters/joraxian/male.svg",
  25157. extra: 2877 / 2721,
  25158. bottom: 82 / 2967
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Macro",
  25165. height: math.unit(26.15, "meters"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25172. {
  25173. female: {
  25174. height: math.unit(21.6, "m"),
  25175. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25176. name: "Female",
  25177. image: {
  25178. source: "./media/characters/sthara/female.svg",
  25179. extra: 2516 / 2347,
  25180. bottom: 21.5 / 2537
  25181. }
  25182. },
  25183. male: {
  25184. height: math.unit(24, "m"),
  25185. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25186. name: "Male",
  25187. image: {
  25188. source: "./media/characters/sthara/male.svg",
  25189. extra: 2732 / 2607,
  25190. bottom: 23 / 2732
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(21.6, "meters"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(6 + 4 / 12, "feet"),
  25207. weight: math.unit(175, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/luka-bryzant/front.svg",
  25211. extra: 311 / 289,
  25212. bottom: 4 / 315
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(6 + 4 / 12, "feet"),
  25217. weight: math.unit(175, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/luka-bryzant/back.svg",
  25221. extra: 311 / 289,
  25222. bottom: 3.8 / 313.7
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Micro",
  25229. height: math.unit(10, "inches")
  25230. },
  25231. {
  25232. name: "Normal",
  25233. height: math.unit(6 + 4 / 12, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Large",
  25238. height: math.unit(12, "feet")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(5 + 7 / 12, "feet"),
  25247. weight: math.unit(185, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/aman-aquila/front.svg",
  25251. extra: 1013 / 976,
  25252. bottom: 45.6 / 1057
  25253. }
  25254. },
  25255. side: {
  25256. height: math.unit(5 + 7 / 12, "feet"),
  25257. weight: math.unit(185, "lb"),
  25258. name: "Side",
  25259. image: {
  25260. source: "./media/characters/aman-aquila/side.svg",
  25261. extra: 1054 / 1011,
  25262. bottom: 15 / 1070
  25263. }
  25264. },
  25265. back: {
  25266. height: math.unit(5 + 7 / 12, "feet"),
  25267. weight: math.unit(185, "lb"),
  25268. name: "Back",
  25269. image: {
  25270. source: "./media/characters/aman-aquila/back.svg",
  25271. extra: 1026 / 970,
  25272. bottom: 12 / 1039
  25273. }
  25274. },
  25275. head: {
  25276. height: math.unit(1.211, "feet"),
  25277. name: "Head",
  25278. image: {
  25279. source: "./media/characters/aman-aquila/head.svg",
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Minimicro",
  25286. height: math.unit(0.057, "inches")
  25287. },
  25288. {
  25289. name: "Micro",
  25290. height: math.unit(7, "inches")
  25291. },
  25292. {
  25293. name: "Mini",
  25294. height: math.unit(3 + 7 / 12, "feet")
  25295. },
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(5 + 7 / 12, "feet"),
  25299. default: true
  25300. },
  25301. {
  25302. name: "Macro",
  25303. height: math.unit(157 + 7 / 12, "feet")
  25304. },
  25305. {
  25306. name: "Megamacro",
  25307. height: math.unit(1557 + 7 / 12, "feet")
  25308. },
  25309. {
  25310. name: "Gigamacro",
  25311. height: math.unit(15557 + 7 / 12, "feet")
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(3 + 2 / 12, "inches"),
  25320. weight: math.unit(0.3, "ounces"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/hiphae/front.svg",
  25324. extra: 1931 / 1683,
  25325. bottom: 24 / 1955
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(3 + 1 / 2, "inches"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(5 + 10 / 12, "feet"),
  25342. weight: math.unit(165, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/nicky/front.svg",
  25346. extra: 3144 / 2886,
  25347. bottom: 45.6 / 3192
  25348. }
  25349. },
  25350. back: {
  25351. height: math.unit(5 + 10 / 12, "feet"),
  25352. weight: math.unit(165, "lb"),
  25353. name: "Back",
  25354. image: {
  25355. source: "./media/characters/nicky/back.svg",
  25356. extra: 3055 / 2804,
  25357. bottom: 28.4 / 3087
  25358. }
  25359. },
  25360. frontclothed: {
  25361. height: math.unit(5 + 10 / 12, "feet"),
  25362. weight: math.unit(165, "lb"),
  25363. name: "Front-clothed",
  25364. image: {
  25365. source: "./media/characters/nicky/front-clothed.svg",
  25366. extra: 3184.9 / 2926.9,
  25367. bottom: 86.5 / 3239.9
  25368. }
  25369. },
  25370. foot: {
  25371. height: math.unit(1.16, "feet"),
  25372. name: "Foot",
  25373. image: {
  25374. source: "./media/characters/nicky/foot.svg"
  25375. }
  25376. },
  25377. feet: {
  25378. height: math.unit(1.34, "feet"),
  25379. name: "Feet",
  25380. image: {
  25381. source: "./media/characters/nicky/feet.svg"
  25382. }
  25383. },
  25384. maw: {
  25385. height: math.unit(0.9, "feet"),
  25386. name: "Maw",
  25387. image: {
  25388. source: "./media/characters/nicky/maw.svg"
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Normal",
  25395. height: math.unit(5 + 10 / 12, "feet"),
  25396. default: true
  25397. },
  25398. {
  25399. name: "Macro",
  25400. height: math.unit(60, "feet")
  25401. },
  25402. {
  25403. name: "Megamacro",
  25404. height: math.unit(1, "mile")
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25410. {
  25411. side: {
  25412. height: math.unit(10, "feet"),
  25413. weight: math.unit(600, "lb"),
  25414. name: "Side",
  25415. image: {
  25416. source: "./media/characters/blair/side.svg",
  25417. bottom: 16.6 / 475,
  25418. extra: 458 / 431
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Micro",
  25425. height: math.unit(8, "inches")
  25426. },
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(10, "feet"),
  25430. default: true
  25431. },
  25432. {
  25433. name: "Macro",
  25434. height: math.unit(180, "feet")
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(5 + 4 / 12, "feet"),
  25443. weight: math.unit(125, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/fisher/front.svg",
  25447. extra: 444 / 390,
  25448. bottom: 2 / 444.8
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Micro",
  25455. height: math.unit(4, "inches")
  25456. },
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(5 + 4 / 12, "feet"),
  25460. default: true
  25461. },
  25462. {
  25463. name: "Macro",
  25464. height: math.unit(100, "feet")
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25470. {
  25471. front: {
  25472. height: math.unit(6.71, "feet"),
  25473. weight: math.unit(200, "lb"),
  25474. capacity: math.unit(1000000, "people"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/gliss/front.svg",
  25478. extra: 2347 / 2231,
  25479. bottom: 113 / 2462
  25480. }
  25481. },
  25482. hammerspaceSize: {
  25483. height: math.unit(6.71 * 717, "feet"),
  25484. weight: math.unit(200, "lb"),
  25485. capacity: math.unit(1000000, "people"),
  25486. name: "Hammerspace Size",
  25487. image: {
  25488. source: "./media/characters/gliss/front.svg",
  25489. extra: 2347 / 2231,
  25490. bottom: 113 / 2462
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(6.71, "feet"),
  25498. default: true
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25504. {
  25505. side: {
  25506. height: math.unit(1.44, "m"),
  25507. weight: math.unit(80, "kg"),
  25508. name: "Side",
  25509. image: {
  25510. source: "./media/characters/dune-anderson/side.svg",
  25511. bottom: 49 / 1426
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Wolf-sized",
  25518. height: math.unit(1.44, "meters")
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(5.05, "meters"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Big",
  25527. height: math.unit(14.4, "meters")
  25528. },
  25529. {
  25530. name: "Huge",
  25531. height: math.unit(144, "meters")
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(7, "feet"),
  25540. weight: math.unit(425, "lb"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/hind/front.svg",
  25544. extra: 2091 / 1860,
  25545. bottom: 129 / 2220
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(7, "feet"),
  25550. weight: math.unit(425, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/hind/back.svg",
  25554. extra: 2091 / 1860,
  25555. bottom: 24.6 / 2309
  25556. }
  25557. },
  25558. tail: {
  25559. height: math.unit(2.8, "feet"),
  25560. name: "Tail",
  25561. image: {
  25562. source: "./media/characters/hind/tail.svg"
  25563. }
  25564. },
  25565. head: {
  25566. height: math.unit(2.55, "feet"),
  25567. name: "Head",
  25568. image: {
  25569. source: "./media/characters/hind/head.svg"
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "XS",
  25576. height: math.unit(0.7, "feet")
  25577. },
  25578. {
  25579. name: "Normal",
  25580. height: math.unit(7, "feet"),
  25581. default: true
  25582. },
  25583. {
  25584. name: "XL",
  25585. height: math.unit(70, "feet")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(2.1, "meters"),
  25594. weight: math.unit(150, "lb"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/tharquench-sizestealer/front.svg",
  25598. extra: 1605/1470,
  25599. bottom: 36/1641
  25600. }
  25601. },
  25602. frontAlt: {
  25603. height: math.unit(2.1, "meters"),
  25604. weight: math.unit(150, "lb"),
  25605. name: "Front (Alt)",
  25606. image: {
  25607. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25608. extra: 2318 / 2063,
  25609. bottom: 93.4 / 2410
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Nano",
  25616. height: math.unit(1, "mm")
  25617. },
  25618. {
  25619. name: "Micro",
  25620. height: math.unit(1, "cm")
  25621. },
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(2.1, "meters"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(7 + 5 / 12, "feet"),
  25634. weight: math.unit(357, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/solex-draconov/front.svg",
  25638. extra: 1993 / 1865,
  25639. bottom: 117 / 2111
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Natural Height",
  25646. height: math.unit(7 + 5 / 12, "feet"),
  25647. default: true
  25648. },
  25649. {
  25650. name: "Macro",
  25651. height: math.unit(350, "feet")
  25652. },
  25653. {
  25654. name: "Macro+",
  25655. height: math.unit(1000, "feet")
  25656. },
  25657. {
  25658. name: "Megamacro",
  25659. height: math.unit(20, "km")
  25660. },
  25661. {
  25662. name: "Megamacro+",
  25663. height: math.unit(1000, "km")
  25664. },
  25665. {
  25666. name: "Gigamacro",
  25667. height: math.unit(2.5, "Gm")
  25668. },
  25669. {
  25670. name: "Teramacro",
  25671. height: math.unit(15, "Tm")
  25672. },
  25673. {
  25674. name: "Galactic",
  25675. height: math.unit(30, "Zm")
  25676. },
  25677. {
  25678. name: "Universal",
  25679. height: math.unit(21000, "Ym")
  25680. },
  25681. {
  25682. name: "Omniversal",
  25683. height: math.unit(9.861e50, "Ym")
  25684. },
  25685. {
  25686. name: "Existential",
  25687. height: math.unit(1e300, "meters")
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25693. {
  25694. side: {
  25695. height: math.unit(25, "feet"),
  25696. weight: math.unit(90000, "lb"),
  25697. name: "Side",
  25698. image: {
  25699. source: "./media/characters/mandarax/side.svg",
  25700. extra: 614 / 332,
  25701. bottom: 55 / 630
  25702. }
  25703. },
  25704. head: {
  25705. height: math.unit(11.4, "feet"),
  25706. name: "Head",
  25707. image: {
  25708. source: "./media/characters/mandarax/head.svg"
  25709. }
  25710. },
  25711. belly: {
  25712. height: math.unit(33, "feet"),
  25713. name: "Belly",
  25714. capacity: math.unit(500, "people"),
  25715. image: {
  25716. source: "./media/characters/mandarax/belly.svg"
  25717. }
  25718. },
  25719. dick: {
  25720. height: math.unit(8.46, "feet"),
  25721. name: "Dick",
  25722. image: {
  25723. source: "./media/characters/mandarax/dick.svg"
  25724. }
  25725. },
  25726. top: {
  25727. height: math.unit(28, "meters"),
  25728. name: "Top",
  25729. image: {
  25730. source: "./media/characters/mandarax/top.svg"
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(25, "feet"),
  25738. default: true
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(5, "feet"),
  25747. weight: math.unit(90, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/pixil/front.svg",
  25751. extra: 2000 / 1618,
  25752. bottom: 12.3 / 2011
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(5, "feet"),
  25760. default: true
  25761. },
  25762. {
  25763. name: "Megamacro",
  25764. height: math.unit(10, "miles"),
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(7 + 2 / 12, "feet"),
  25773. weight: math.unit(200, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/angel/front.svg",
  25777. extra: 1830 / 1737,
  25778. bottom: 22.6 / 1854,
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(7 + 2 / 12, "feet"),
  25786. default: true
  25787. },
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(1000, "feet")
  25791. },
  25792. {
  25793. name: "Megamacro",
  25794. height: math.unit(2, "miles")
  25795. },
  25796. {
  25797. name: "Gigamacro",
  25798. height: math.unit(20, "earths")
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(5, "feet"),
  25807. weight: math.unit(180, "lb"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/mekana/front.svg",
  25811. extra: 1671 / 1605,
  25812. bottom: 3.5 / 1691
  25813. }
  25814. },
  25815. side: {
  25816. height: math.unit(5, "feet"),
  25817. weight: math.unit(180, "lb"),
  25818. name: "Side",
  25819. image: {
  25820. source: "./media/characters/mekana/side.svg",
  25821. extra: 1671 / 1605,
  25822. bottom: 3.5 / 1691
  25823. }
  25824. },
  25825. back: {
  25826. height: math.unit(5, "feet"),
  25827. weight: math.unit(180, "lb"),
  25828. name: "Back",
  25829. image: {
  25830. source: "./media/characters/mekana/back.svg",
  25831. extra: 1671 / 1605,
  25832. bottom: 3.5 / 1691
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(5, "feet"),
  25840. default: true
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(4 + 6 / 12, "feet"),
  25849. weight: math.unit(80, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/pixie/front.svg",
  25853. extra: 1924 / 1825,
  25854. bottom: 22.4 / 1946
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(4 + 6 / 12, "feet"),
  25862. default: true
  25863. },
  25864. {
  25865. name: "Macro",
  25866. height: math.unit(40, "feet")
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(2.1, "meters"),
  25875. weight: math.unit(200, "lb"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/the-lascivious/front.svg",
  25879. extra: 1 / 0.893,
  25880. bottom: 3.5 / 573.7
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Human Scale",
  25887. height: math.unit(2.1, "meters")
  25888. },
  25889. {
  25890. name: "Wolxi Scale",
  25891. height: math.unit(46.2, "m"),
  25892. default: true
  25893. },
  25894. {
  25895. name: "Boinker of Buildings",
  25896. height: math.unit(10, "km")
  25897. },
  25898. {
  25899. name: "Shagger of Skyscrapers",
  25900. height: math.unit(40, "km")
  25901. },
  25902. {
  25903. name: "Banger of Boroughs",
  25904. height: math.unit(4000, "km")
  25905. },
  25906. {
  25907. name: "Screwer of States",
  25908. height: math.unit(100000, "km")
  25909. },
  25910. {
  25911. name: "Pounder of Planets",
  25912. height: math.unit(2000000, "km")
  25913. },
  25914. ]
  25915. ))
  25916. characterMakers.push(() => makeCharacter(
  25917. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25918. {
  25919. front: {
  25920. height: math.unit(6, "feet"),
  25921. weight: math.unit(150, "lb"),
  25922. name: "Front",
  25923. image: {
  25924. source: "./media/characters/aj/front.svg",
  25925. extra: 2039 / 1562,
  25926. bottom: 40 / 2079
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(11 + 6 / 12, "feet"),
  25934. default: true
  25935. },
  25936. {
  25937. name: "Megamacro",
  25938. height: math.unit(60, "megameters")
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25944. {
  25945. side: {
  25946. height: math.unit(31 + 8 / 12, "feet"),
  25947. weight: math.unit(75000, "kg"),
  25948. name: "Side",
  25949. image: {
  25950. source: "./media/characters/koros/side.svg",
  25951. extra: 1442 / 1297,
  25952. bottom: 122.7 / 1562
  25953. }
  25954. },
  25955. dicksKingsCrown: {
  25956. height: math.unit(6, "feet"),
  25957. name: "Dicks (King's Crown)",
  25958. image: {
  25959. source: "./media/characters/koros/dicks-kings-crown.svg"
  25960. }
  25961. },
  25962. dicksTailSet: {
  25963. height: math.unit(3, "feet"),
  25964. name: "Dicks (Tail Set)",
  25965. image: {
  25966. source: "./media/characters/koros/dicks-tail-set.svg"
  25967. }
  25968. },
  25969. dickCumming: {
  25970. height: math.unit(7.98, "feet"),
  25971. name: "Dick (Cumming)",
  25972. image: {
  25973. source: "./media/characters/koros/dick-cumming.svg"
  25974. }
  25975. },
  25976. dicksBack: {
  25977. height: math.unit(5.9, "feet"),
  25978. name: "Dicks (Back)",
  25979. image: {
  25980. source: "./media/characters/koros/dicks-back.svg"
  25981. }
  25982. },
  25983. dicksFront: {
  25984. height: math.unit(3.72, "feet"),
  25985. name: "Dicks (Front)",
  25986. image: {
  25987. source: "./media/characters/koros/dicks-front.svg"
  25988. }
  25989. },
  25990. dicksPeeking: {
  25991. height: math.unit(3.0, "feet"),
  25992. name: "Dicks (Peeking)",
  25993. image: {
  25994. source: "./media/characters/koros/dicks-peeking.svg"
  25995. }
  25996. },
  25997. eye: {
  25998. height: math.unit(1.7, "feet"),
  25999. name: "Eye",
  26000. image: {
  26001. source: "./media/characters/koros/eye.svg"
  26002. }
  26003. },
  26004. headFront: {
  26005. height: math.unit(11.69, "feet"),
  26006. name: "Head (Front)",
  26007. image: {
  26008. source: "./media/characters/koros/head-front.svg"
  26009. }
  26010. },
  26011. headSide: {
  26012. height: math.unit(14, "feet"),
  26013. name: "Head (Side)",
  26014. image: {
  26015. source: "./media/characters/koros/head-side.svg"
  26016. }
  26017. },
  26018. leg: {
  26019. height: math.unit(17, "feet"),
  26020. name: "Leg",
  26021. image: {
  26022. source: "./media/characters/koros/leg.svg"
  26023. }
  26024. },
  26025. mawSide: {
  26026. height: math.unit(12.8, "feet"),
  26027. name: "Maw (Side)",
  26028. image: {
  26029. source: "./media/characters/koros/maw-side.svg"
  26030. }
  26031. },
  26032. mawSpitting: {
  26033. height: math.unit(17, "feet"),
  26034. name: "Maw (Spitting)",
  26035. image: {
  26036. source: "./media/characters/koros/maw-spitting.svg"
  26037. }
  26038. },
  26039. slit: {
  26040. height: math.unit(2.8, "feet"),
  26041. name: "Slit",
  26042. image: {
  26043. source: "./media/characters/koros/slit.svg"
  26044. }
  26045. },
  26046. stomach: {
  26047. height: math.unit(6.8, "feet"),
  26048. capacity: math.unit(20, "people"),
  26049. name: "Stomach",
  26050. image: {
  26051. source: "./media/characters/koros/stomach.svg"
  26052. }
  26053. },
  26054. wingspanBottom: {
  26055. height: math.unit(114, "feet"),
  26056. name: "Wingspan (Bottom)",
  26057. image: {
  26058. source: "./media/characters/koros/wingspan-bottom.svg"
  26059. }
  26060. },
  26061. wingspanTop: {
  26062. height: math.unit(104, "feet"),
  26063. name: "Wingspan (Top)",
  26064. image: {
  26065. source: "./media/characters/koros/wingspan-top.svg"
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(31 + 8 / 12, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(18 + 5 / 12, "feet"),
  26082. weight: math.unit(3750, "kg"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/vexx/front.svg",
  26086. extra: 426 / 396,
  26087. bottom: 31.5 / 458
  26088. }
  26089. },
  26090. maw: {
  26091. height: math.unit(6, "feet"),
  26092. name: "Maw",
  26093. image: {
  26094. source: "./media/characters/vexx/maw.svg"
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(18 + 5 / 12, "feet"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(17 + 6 / 12, "feet"),
  26111. weight: math.unit(150, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/baadra/front.svg",
  26115. extra: 1694/1553,
  26116. bottom: 179/1873
  26117. }
  26118. },
  26119. frontAlt: {
  26120. height: math.unit(17 + 6 / 12, "feet"),
  26121. weight: math.unit(150, "lb"),
  26122. name: "Front (Alt)",
  26123. image: {
  26124. source: "./media/characters/baadra/front-alt.svg",
  26125. extra: 3137 / 2890,
  26126. bottom: 168.4 / 3305
  26127. }
  26128. },
  26129. back: {
  26130. height: math.unit(17 + 6 / 12, "feet"),
  26131. weight: math.unit(150, "lb"),
  26132. name: "Back",
  26133. image: {
  26134. source: "./media/characters/baadra/back.svg",
  26135. extra: 3142 / 2890,
  26136. bottom: 220 / 3371
  26137. }
  26138. },
  26139. head: {
  26140. height: math.unit(5.45, "feet"),
  26141. name: "Head",
  26142. image: {
  26143. source: "./media/characters/baadra/head.svg"
  26144. }
  26145. },
  26146. headAngry: {
  26147. height: math.unit(4.95, "feet"),
  26148. name: "Head (Angry)",
  26149. image: {
  26150. source: "./media/characters/baadra/head-angry.svg"
  26151. }
  26152. },
  26153. headOpen: {
  26154. height: math.unit(6, "feet"),
  26155. name: "Head (Open)",
  26156. image: {
  26157. source: "./media/characters/baadra/head-open.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(17 + 6 / 12, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(7 + 3 / 12, "feet"),
  26174. weight: math.unit(180, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/juri/front.svg",
  26178. extra: 1401 / 1237,
  26179. bottom: 18.5 / 1418
  26180. }
  26181. },
  26182. side: {
  26183. height: math.unit(7 + 3 / 12, "feet"),
  26184. weight: math.unit(180, "lb"),
  26185. name: "Side",
  26186. image: {
  26187. source: "./media/characters/juri/side.svg",
  26188. extra: 1424 / 1242,
  26189. bottom: 18.5 / 1447
  26190. }
  26191. },
  26192. sitting: {
  26193. height: math.unit(6, "feet"),
  26194. weight: math.unit(180, "lb"),
  26195. name: "Sitting",
  26196. image: {
  26197. source: "./media/characters/juri/sitting.svg",
  26198. extra: 1270 / 1143,
  26199. bottom: 100 / 1343
  26200. }
  26201. },
  26202. back: {
  26203. height: math.unit(7 + 3 / 12, "feet"),
  26204. weight: math.unit(180, "lb"),
  26205. name: "Back",
  26206. image: {
  26207. source: "./media/characters/juri/back.svg",
  26208. extra: 1377 / 1240,
  26209. bottom: 23.7 / 1405
  26210. }
  26211. },
  26212. maw: {
  26213. height: math.unit(2.8, "feet"),
  26214. name: "Maw",
  26215. image: {
  26216. source: "./media/characters/juri/maw.svg"
  26217. }
  26218. },
  26219. stomach: {
  26220. height: math.unit(0.89, "feet"),
  26221. capacity: math.unit(4, "liters"),
  26222. name: "Stomach",
  26223. image: {
  26224. source: "./media/characters/juri/stomach.svg"
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(7 + 3 / 12, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26238. {
  26239. fox: {
  26240. height: math.unit(5 + 6 / 12, "feet"),
  26241. weight: math.unit(140, "lb"),
  26242. name: "Fox",
  26243. image: {
  26244. source: "./media/characters/maxene-sita/fox.svg",
  26245. extra: 146 / 138,
  26246. bottom: 2.1 / 148.19
  26247. }
  26248. },
  26249. foxLaying: {
  26250. height: math.unit(1.70, "feet"),
  26251. weight: math.unit(140, "lb"),
  26252. name: "Fox (Laying)",
  26253. image: {
  26254. source: "./media/characters/maxene-sita/fox-laying.svg",
  26255. extra: 910 / 572,
  26256. bottom: 71 / 981
  26257. }
  26258. },
  26259. kitsune: {
  26260. height: math.unit(10, "feet"),
  26261. weight: math.unit(800, "lb"),
  26262. name: "Kitsune",
  26263. image: {
  26264. source: "./media/characters/maxene-sita/kitsune.svg",
  26265. extra: 185 / 176,
  26266. bottom: 4.7 / 189.9
  26267. }
  26268. },
  26269. hellhound: {
  26270. height: math.unit(10, "feet"),
  26271. weight: math.unit(700, "lb"),
  26272. name: "Hellhound",
  26273. image: {
  26274. source: "./media/characters/maxene-sita/hellhound.svg",
  26275. extra: 1600 / 1545,
  26276. bottom: 81 / 1681
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(5 + 6 / 12, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26290. {
  26291. front: {
  26292. height: math.unit(3 + 4 / 12, "feet"),
  26293. weight: math.unit(70, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/maia/front.svg",
  26297. extra: 227 / 219.5,
  26298. bottom: 40 / 267
  26299. }
  26300. },
  26301. back: {
  26302. height: math.unit(3 + 4 / 12, "feet"),
  26303. weight: math.unit(70, "lb"),
  26304. name: "Back",
  26305. image: {
  26306. source: "./media/characters/maia/back.svg",
  26307. extra: 237 / 225
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(3 + 4 / 12, "feet"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(5 + 10 / 12, "feet"),
  26324. weight: math.unit(197, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/jabaro/front.svg",
  26328. extra: 225 / 216,
  26329. bottom: 5.06 / 230
  26330. }
  26331. },
  26332. back: {
  26333. height: math.unit(5 + 10 / 12, "feet"),
  26334. weight: math.unit(197, "lb"),
  26335. name: "Back",
  26336. image: {
  26337. source: "./media/characters/jabaro/back.svg",
  26338. extra: 225 / 219,
  26339. bottom: 1.9 / 227
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(5 + 10 / 12, "feet"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(5 + 8 / 12, "feet"),
  26356. weight: math.unit(139, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/risa/front.svg",
  26360. extra: 270 / 260,
  26361. bottom: 11.2 / 282
  26362. }
  26363. },
  26364. back: {
  26365. height: math.unit(5 + 8 / 12, "feet"),
  26366. weight: math.unit(139, "lb"),
  26367. name: "Back",
  26368. image: {
  26369. source: "./media/characters/risa/back.svg",
  26370. extra: 264 / 255,
  26371. bottom: 4 / 268
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(5 + 8 / 12, "feet"),
  26379. default: true
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(2 + 11 / 12, "feet"),
  26388. weight: math.unit(30, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/weatley/front.svg",
  26392. bottom: 10.7 / 414,
  26393. extra: 403.5 / 362
  26394. }
  26395. },
  26396. back: {
  26397. height: math.unit(2 + 11 / 12, "feet"),
  26398. weight: math.unit(30, "lb"),
  26399. name: "Back",
  26400. image: {
  26401. source: "./media/characters/weatley/back.svg",
  26402. bottom: 10.7 / 414,
  26403. extra: 403.5 / 362
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(2 + 11 / 12, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(5 + 2 / 12, "feet"),
  26420. weight: math.unit(50, "kg"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/mercury-crescent/front.svg",
  26424. extra: 1088 / 1033,
  26425. bottom: 18.9 / 1109
  26426. }
  26427. },
  26428. },
  26429. [
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(5 + 2 / 12, "feet"),
  26433. default: true
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(2, "feet"),
  26442. weight: math.unit(15, "kg"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/diamond-jones/front.svg",
  26446. extra: 727/723,
  26447. bottom: 46/773
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(2, "feet"),
  26455. default: true
  26456. },
  26457. ]
  26458. ))
  26459. characterMakers.push(() => makeCharacter(
  26460. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26461. {
  26462. front: {
  26463. height: math.unit(3, "feet"),
  26464. weight: math.unit(30, "kg"),
  26465. name: "Front",
  26466. image: {
  26467. source: "./media/characters/sweet-bit/front.svg",
  26468. extra: 675 / 567,
  26469. bottom: 27.7 / 703
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(3, "feet"),
  26477. default: true
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26483. {
  26484. side: {
  26485. height: math.unit(9.178, "feet"),
  26486. weight: math.unit(500, "lb"),
  26487. name: "Side",
  26488. image: {
  26489. source: "./media/characters/umbrazen/side.svg",
  26490. extra: 1730 / 1473,
  26491. bottom: 34.6 / 1765
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(9.178, "feet"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26505. {
  26506. front: {
  26507. height: math.unit(10, "feet"),
  26508. weight: math.unit(750, "lb"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/arlist/front.svg",
  26512. extra: 961 / 778,
  26513. bottom: 6.2 / 986
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(10, "feet"),
  26521. default: true
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(5 + 1 / 12, "feet"),
  26530. weight: math.unit(110, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/aradel/front.svg",
  26534. extra: 324 / 303,
  26535. bottom: 3.6 / 329.4
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(5 + 1 / 12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(3 + 8 / 12, "feet"),
  26552. weight: math.unit(50, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/serryn/front.svg",
  26556. extra: 1792 / 1656,
  26557. bottom: 43.5 / 1840
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(3 + 8 / 12, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(7 + 10 / 12, "feet"),
  26574. weight: math.unit(255, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/xavier-thyme/front.svg",
  26578. extra: 3733 / 3642,
  26579. bottom: 131 / 3869
  26580. }
  26581. },
  26582. frontRaven: {
  26583. height: math.unit(7 + 10 / 12, "feet"),
  26584. weight: math.unit(255, "lb"),
  26585. name: "Front (Raven)",
  26586. image: {
  26587. source: "./media/characters/xavier-thyme/front-raven.svg",
  26588. extra: 4385 / 3642,
  26589. bottom: 131 / 4517
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(7 + 10 / 12, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(1.6, "m"),
  26606. weight: math.unit(50, "kg"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/kiki/front.svg",
  26610. extra: 4682 / 3610,
  26611. bottom: 115 / 4777
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(1.6, "meters"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(50, "m"),
  26628. weight: math.unit(500, "tonnes"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/ryoko/front.svg",
  26632. extra: 4632 / 3926,
  26633. bottom: 193 / 4823
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(50, "meters"),
  26641. default: true
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(30, "m"),
  26650. weight: math.unit(22, "tonnes"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/elio/front.svg",
  26654. extra: 4582 / 3720,
  26655. bottom: 236 / 4828
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Normal",
  26662. height: math.unit(30, "meters"),
  26663. default: true
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(6 + 3 / 12, "feet"),
  26672. weight: math.unit(120, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/azura/front.svg",
  26676. extra: 1149 / 1135,
  26677. bottom: 45 / 1194
  26678. }
  26679. },
  26680. frontClothed: {
  26681. height: math.unit(6 + 3 / 12, "feet"),
  26682. weight: math.unit(120, "lb"),
  26683. name: "Front (Clothed)",
  26684. image: {
  26685. source: "./media/characters/azura/front-clothed.svg",
  26686. extra: 1149 / 1135,
  26687. bottom: 45 / 1194
  26688. }
  26689. },
  26690. },
  26691. [
  26692. {
  26693. name: "Normal",
  26694. height: math.unit(6 + 3 / 12, "feet"),
  26695. default: true
  26696. },
  26697. {
  26698. name: "Macro",
  26699. height: math.unit(20 + 6 / 12, "feet")
  26700. },
  26701. {
  26702. name: "Megamacro",
  26703. height: math.unit(12, "miles")
  26704. },
  26705. {
  26706. name: "Gigamacro",
  26707. height: math.unit(10000, "miles")
  26708. },
  26709. {
  26710. name: "Teramacro",
  26711. height: math.unit(900000, "miles")
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(12, "feet"),
  26720. weight: math.unit(1, "ton"),
  26721. capacity: math.unit(660000, "gallons"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/zeus/front.svg",
  26725. extra: 5005 / 4717,
  26726. bottom: 363 / 5388
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(12, "feet")
  26734. },
  26735. {
  26736. name: "Preferred Size",
  26737. height: math.unit(0.5, "miles"),
  26738. default: true
  26739. },
  26740. {
  26741. name: "Giga Horse",
  26742. height: math.unit(300, "miles")
  26743. },
  26744. {
  26745. name: "Riding Planets",
  26746. height: math.unit(30, "megameters")
  26747. },
  26748. {
  26749. name: "Cosmic Giant",
  26750. height: math.unit(3, "zettameters")
  26751. },
  26752. {
  26753. name: "Breeding God",
  26754. height: math.unit(9.92e22, "yottameters")
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26760. {
  26761. side: {
  26762. height: math.unit(9, "feet"),
  26763. weight: math.unit(1500, "kg"),
  26764. name: "Side",
  26765. image: {
  26766. source: "./media/characters/fang/side.svg",
  26767. extra: 924 / 866,
  26768. bottom: 47.5 / 972.3
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(9, "feet"),
  26776. default: true
  26777. },
  26778. {
  26779. name: "Macro",
  26780. height: math.unit(75 + 6 / 12, "feet")
  26781. },
  26782. {
  26783. name: "Teramacro",
  26784. height: math.unit(50000, "miles")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(10, "feet"),
  26793. weight: math.unit(2, "tons"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/rekhit/front.svg",
  26797. extra: 2796 / 2590,
  26798. bottom: 225 / 3022
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(10, "feet"),
  26806. default: true
  26807. },
  26808. {
  26809. name: "Macro",
  26810. height: math.unit(500, "feet")
  26811. },
  26812. ]
  26813. ))
  26814. characterMakers.push(() => makeCharacter(
  26815. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26816. {
  26817. front: {
  26818. height: math.unit(7 + 6.451 / 12, "feet"),
  26819. weight: math.unit(310, "lb"),
  26820. name: "Front",
  26821. image: {
  26822. source: "./media/characters/dahlia-verrick/front.svg",
  26823. extra: 1488 / 1365,
  26824. bottom: 6.2 / 1495
  26825. }
  26826. },
  26827. back: {
  26828. height: math.unit(7 + 6.451 / 12, "feet"),
  26829. weight: math.unit(310, "lb"),
  26830. name: "Back",
  26831. image: {
  26832. source: "./media/characters/dahlia-verrick/back.svg",
  26833. extra: 1472 / 1351,
  26834. bottom: 5.28 / 1477
  26835. }
  26836. },
  26837. frontBusiness: {
  26838. height: math.unit(7 + 6.451 / 12, "feet"),
  26839. weight: math.unit(200, "lb"),
  26840. name: "Front (Business)",
  26841. image: {
  26842. source: "./media/characters/dahlia-verrick/front-business.svg",
  26843. extra: 1478 / 1381,
  26844. bottom: 5.5 / 1484
  26845. }
  26846. },
  26847. frontCasual: {
  26848. height: math.unit(7 + 6.451 / 12, "feet"),
  26849. weight: math.unit(200, "lb"),
  26850. name: "Front (Casual)",
  26851. image: {
  26852. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26853. extra: 1478 / 1381,
  26854. bottom: 5.5 / 1484
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Travel-Sized",
  26861. height: math.unit(7.45, "inches")
  26862. },
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(7 + 6.451 / 12, "feet"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Hitting the Town",
  26870. height: math.unit(37 + 8 / 12, "feet")
  26871. },
  26872. {
  26873. name: "Stomp in the Suburbs",
  26874. height: math.unit(964 + 9.728 / 12, "feet")
  26875. },
  26876. {
  26877. name: "Sit on the City",
  26878. height: math.unit(61747 + 10.592 / 12, "feet")
  26879. },
  26880. {
  26881. name: "Glomp the Globe",
  26882. height: math.unit(252919327 + 4.832 / 12, "feet")
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(6 + 4 / 12, "feet"),
  26891. weight: math.unit(320, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/balina-mahigan/front.svg",
  26895. extra: 447 / 428,
  26896. bottom: 18 / 466
  26897. }
  26898. },
  26899. back: {
  26900. height: math.unit(6 + 4 / 12, "feet"),
  26901. weight: math.unit(320, "lb"),
  26902. name: "Back",
  26903. image: {
  26904. source: "./media/characters/balina-mahigan/back.svg",
  26905. extra: 445 / 428,
  26906. bottom: 4.07 / 448
  26907. }
  26908. },
  26909. arm: {
  26910. height: math.unit(1.88, "feet"),
  26911. name: "Arm",
  26912. image: {
  26913. source: "./media/characters/balina-mahigan/arm.svg"
  26914. }
  26915. },
  26916. backPort: {
  26917. height: math.unit(0.685, "feet"),
  26918. name: "Back Port",
  26919. image: {
  26920. source: "./media/characters/balina-mahigan/back-port.svg"
  26921. }
  26922. },
  26923. hoofpaw: {
  26924. height: math.unit(1.41, "feet"),
  26925. name: "Hoofpaw",
  26926. image: {
  26927. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26928. }
  26929. },
  26930. leftHandBack: {
  26931. height: math.unit(0.938, "feet"),
  26932. name: "Left Hand (Back)",
  26933. image: {
  26934. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26935. }
  26936. },
  26937. leftHandFront: {
  26938. height: math.unit(0.938, "feet"),
  26939. name: "Left Hand (Front)",
  26940. image: {
  26941. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26942. }
  26943. },
  26944. rightHandBack: {
  26945. height: math.unit(0.95, "feet"),
  26946. name: "Right Hand (Back)",
  26947. image: {
  26948. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26949. }
  26950. },
  26951. rightHandFront: {
  26952. height: math.unit(0.95, "feet"),
  26953. name: "Right Hand (Front)",
  26954. image: {
  26955. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(6 + 4 / 12, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(6, "feet"),
  26972. weight: math.unit(320, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/balina-mejeri/front.svg",
  26976. extra: 517 / 488,
  26977. bottom: 44.2 / 561
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(6 + 4 / 12, "feet")
  26985. },
  26986. {
  26987. name: "Business",
  26988. height: math.unit(155, "feet"),
  26989. default: true
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26995. {
  26996. kneeling: {
  26997. height: math.unit(6 + 4 / 12, "feet"),
  26998. weight: math.unit(300 * 20, "lb"),
  26999. name: "Kneeling",
  27000. image: {
  27001. source: "./media/characters/balbarian/kneeling.svg",
  27002. extra: 922 / 862,
  27003. bottom: 42.4 / 965
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(6 + 4 / 12, "feet")
  27011. },
  27012. {
  27013. name: "Treasured",
  27014. height: math.unit(18 + 9 / 12, "feet"),
  27015. default: true
  27016. },
  27017. {
  27018. name: "Macro",
  27019. height: math.unit(900, "feet")
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(6 + 4 / 12, "feet"),
  27028. weight: math.unit(325, "lb"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/balina-amarini/front.svg",
  27032. extra: 415 / 403,
  27033. bottom: 19 / 433.4
  27034. }
  27035. },
  27036. back: {
  27037. height: math.unit(6 + 4 / 12, "feet"),
  27038. weight: math.unit(325, "lb"),
  27039. name: "Back",
  27040. image: {
  27041. source: "./media/characters/balina-amarini/back.svg",
  27042. extra: 415 / 403,
  27043. bottom: 13.5 / 432
  27044. }
  27045. },
  27046. overdrive: {
  27047. height: math.unit(6 + 4 / 12, "feet"),
  27048. weight: math.unit(400, "lb"),
  27049. name: "Overdrive",
  27050. image: {
  27051. source: "./media/characters/balina-amarini/overdrive.svg",
  27052. extra: 269 / 259,
  27053. bottom: 12 / 282
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Boom",
  27060. height: math.unit(9 + 10 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(280, "feet")
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27071. {
  27072. goddess: {
  27073. height: math.unit(600, "feet"),
  27074. weight: math.unit(2000000, "tons"),
  27075. name: "Goddess",
  27076. image: {
  27077. source: "./media/characters/lady-kubwa/goddess.svg",
  27078. extra: 1240.5 / 1223,
  27079. bottom: 22 / 1263
  27080. }
  27081. },
  27082. goddesser: {
  27083. height: math.unit(900, "feet"),
  27084. weight: math.unit(20000000, "lb"),
  27085. name: "Goddess-er",
  27086. image: {
  27087. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27088. extra: 899 / 888,
  27089. bottom: 12.6 / 912
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Macro",
  27096. height: math.unit(600, "feet"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Megamacro",
  27101. height: math.unit(250, "miles")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(7 + 7 / 12, "feet"),
  27110. weight: math.unit(250, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/tala-grovehorn/front.svg",
  27114. extra: 2636 / 2525,
  27115. bottom: 147 / 2781
  27116. }
  27117. },
  27118. back: {
  27119. height: math.unit(7 + 7 / 12, "feet"),
  27120. weight: math.unit(250, "lb"),
  27121. name: "Back",
  27122. image: {
  27123. source: "./media/characters/tala-grovehorn/back.svg",
  27124. extra: 2635 / 2539,
  27125. bottom: 100 / 2732.8
  27126. }
  27127. },
  27128. mouth: {
  27129. height: math.unit(1.15, "feet"),
  27130. name: "Mouth",
  27131. image: {
  27132. source: "./media/characters/tala-grovehorn/mouth.svg"
  27133. }
  27134. },
  27135. dick: {
  27136. height: math.unit(2.36, "feet"),
  27137. name: "Dick",
  27138. image: {
  27139. source: "./media/characters/tala-grovehorn/dick.svg"
  27140. }
  27141. },
  27142. slit: {
  27143. height: math.unit(0.61, "feet"),
  27144. name: "Slit",
  27145. image: {
  27146. source: "./media/characters/tala-grovehorn/slit.svg"
  27147. }
  27148. },
  27149. },
  27150. [
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(7 + 7 / 12, "feet"),
  27158. weight: math.unit(225, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/epona/front.svg",
  27162. extra: 2445 / 2290,
  27163. bottom: 251 / 2696
  27164. }
  27165. },
  27166. back: {
  27167. height: math.unit(7 + 7 / 12, "feet"),
  27168. weight: math.unit(225, "lb"),
  27169. name: "Back",
  27170. image: {
  27171. source: "./media/characters/epona/back.svg",
  27172. extra: 2546 / 2408,
  27173. bottom: 44 / 2589
  27174. }
  27175. },
  27176. genitals: {
  27177. height: math.unit(1.5, "feet"),
  27178. name: "Genitals",
  27179. image: {
  27180. source: "./media/characters/epona/genitals.svg"
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(7 + 7 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(7, "feet"),
  27197. weight: math.unit(518, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/avia-bloodbourn/front.svg",
  27201. extra: 1466 / 1350,
  27202. bottom: 65 / 1527
  27203. }
  27204. },
  27205. },
  27206. [
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27211. {
  27212. front: {
  27213. height: math.unit(9.35, "feet"),
  27214. weight: math.unit(600, "lb"),
  27215. name: "Front",
  27216. image: {
  27217. source: "./media/characters/amera/front.svg",
  27218. extra: 891 / 818,
  27219. bottom: 30 / 922.7
  27220. }
  27221. },
  27222. back: {
  27223. height: math.unit(9.35, "feet"),
  27224. weight: math.unit(600, "lb"),
  27225. name: "Back",
  27226. image: {
  27227. source: "./media/characters/amera/back.svg",
  27228. extra: 876 / 824,
  27229. bottom: 6.8 / 884
  27230. }
  27231. },
  27232. dick: {
  27233. height: math.unit(2.14, "feet"),
  27234. name: "Dick",
  27235. image: {
  27236. source: "./media/characters/amera/dick.svg"
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(9.35, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27250. {
  27251. kneeling: {
  27252. height: math.unit(3 + 4 / 12, "feet"),
  27253. weight: math.unit(90, "lb"),
  27254. name: "Kneeling",
  27255. image: {
  27256. source: "./media/characters/rosewen/kneeling.svg",
  27257. extra: 1835 / 1571,
  27258. bottom: 27.7 / 1862
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(3 + 4 / 12, "feet"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(5 + 10 / 12, "feet"),
  27275. weight: math.unit(200, "lb"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/sabah/front.svg",
  27279. extra: 849 / 763,
  27280. bottom: 33.9 / 881
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(5 + 10 / 12, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27294. {
  27295. front: {
  27296. height: math.unit(3 + 5 / 12, "feet"),
  27297. weight: math.unit(40, "kg"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/purple-flame/front.svg",
  27301. extra: 1577 / 1412,
  27302. bottom: 97 / 1694
  27303. }
  27304. },
  27305. frontDressed: {
  27306. height: math.unit(3 + 5 / 12, "feet"),
  27307. weight: math.unit(40, "kg"),
  27308. name: "Front (Dressed)",
  27309. image: {
  27310. source: "./media/characters/purple-flame/front-dressed.svg",
  27311. extra: 1577 / 1412,
  27312. bottom: 97 / 1694
  27313. }
  27314. },
  27315. headphones: {
  27316. height: math.unit(0.85, "feet"),
  27317. name: "Headphones",
  27318. image: {
  27319. source: "./media/characters/purple-flame/headphones.svg"
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Really Small",
  27326. height: math.unit(5, "cm")
  27327. },
  27328. {
  27329. name: "Micro",
  27330. height: math.unit(1 + 5 / 12, "feet")
  27331. },
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(3 + 5 / 12, "feet"),
  27335. default: true
  27336. },
  27337. {
  27338. name: "Minimacro",
  27339. height: math.unit(125, "feet")
  27340. },
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(0.5, "miles")
  27344. },
  27345. {
  27346. name: "Megamacro",
  27347. height: math.unit(50, "miles")
  27348. },
  27349. {
  27350. name: "Gigantic",
  27351. height: math.unit(750, "miles")
  27352. },
  27353. {
  27354. name: "Planetary",
  27355. height: math.unit(15000, "miles")
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27361. {
  27362. front: {
  27363. height: math.unit(14, "feet"),
  27364. weight: math.unit(959, "lb"),
  27365. name: "Front",
  27366. image: {
  27367. source: "./media/characters/arsenal/front.svg",
  27368. extra: 2357 / 2157,
  27369. bottom: 93 / 2458
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(14, "feet"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(6, "feet"),
  27386. weight: math.unit(150, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/adira/front.svg",
  27390. extra: 1078 / 1029,
  27391. bottom: 87 / 1166
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Micro",
  27398. height: math.unit(4, "inches"),
  27399. default: true
  27400. },
  27401. {
  27402. name: "Macro",
  27403. height: math.unit(50, "feet")
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(16, "feet"),
  27412. weight: math.unit(1000, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/grim/front.svg",
  27416. extra: 622 / 614,
  27417. bottom: 18.1 / 642
  27418. }
  27419. },
  27420. back: {
  27421. height: math.unit(16, "feet"),
  27422. weight: math.unit(1000, "lb"),
  27423. name: "Back",
  27424. image: {
  27425. source: "./media/characters/grim/back.svg",
  27426. extra: 610.6 / 602,
  27427. bottom: 40.8 / 652
  27428. }
  27429. },
  27430. hunched: {
  27431. height: math.unit(9.75, "feet"),
  27432. weight: math.unit(1000, "lb"),
  27433. name: "Hunched",
  27434. image: {
  27435. source: "./media/characters/grim/hunched.svg",
  27436. extra: 304 / 297,
  27437. bottom: 35.4 / 394
  27438. }
  27439. },
  27440. },
  27441. [
  27442. {
  27443. name: "Normal",
  27444. height: math.unit(16, "feet"),
  27445. default: true
  27446. },
  27447. ]
  27448. ))
  27449. characterMakers.push(() => makeCharacter(
  27450. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27451. {
  27452. front: {
  27453. height: math.unit(2.3, "meters"),
  27454. weight: math.unit(300, "lb"),
  27455. name: "Front",
  27456. image: {
  27457. source: "./media/characters/sinja/front-sfw.svg",
  27458. extra: 1393 / 1294,
  27459. bottom: 70 / 1463
  27460. }
  27461. },
  27462. frontNsfw: {
  27463. height: math.unit(2.3, "meters"),
  27464. weight: math.unit(300, "lb"),
  27465. name: "Front (NSFW)",
  27466. image: {
  27467. source: "./media/characters/sinja/front-nsfw.svg",
  27468. extra: 1393 / 1294,
  27469. bottom: 70 / 1463
  27470. }
  27471. },
  27472. back: {
  27473. height: math.unit(2.3, "meters"),
  27474. weight: math.unit(300, "lb"),
  27475. name: "Back",
  27476. image: {
  27477. source: "./media/characters/sinja/back.svg",
  27478. extra: 1393 / 1294,
  27479. bottom: 70 / 1463
  27480. }
  27481. },
  27482. head: {
  27483. height: math.unit(1.771, "feet"),
  27484. name: "Head",
  27485. image: {
  27486. source: "./media/characters/sinja/head.svg"
  27487. }
  27488. },
  27489. slit: {
  27490. height: math.unit(0.8, "feet"),
  27491. name: "Slit",
  27492. image: {
  27493. source: "./media/characters/sinja/slit.svg"
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(2.3, "meters")
  27501. },
  27502. {
  27503. name: "Macro",
  27504. height: math.unit(91, "meters"),
  27505. default: true
  27506. },
  27507. {
  27508. name: "Megamacro",
  27509. height: math.unit(91440, "meters")
  27510. },
  27511. {
  27512. name: "Gigamacro",
  27513. height: math.unit(60960000, "meters")
  27514. },
  27515. {
  27516. name: "Teramacro",
  27517. height: math.unit(9144000000, "meters")
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(1.7, "meters"),
  27526. weight: math.unit(130, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/kyu/front.svg",
  27530. extra: 415 / 395,
  27531. bottom: 5 / 420
  27532. }
  27533. },
  27534. head: {
  27535. height: math.unit(1.75, "feet"),
  27536. name: "Head",
  27537. image: {
  27538. source: "./media/characters/kyu/head.svg"
  27539. }
  27540. },
  27541. foot: {
  27542. height: math.unit(0.81, "feet"),
  27543. name: "Foot",
  27544. image: {
  27545. source: "./media/characters/kyu/foot.svg"
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(1.7, "meters")
  27553. },
  27554. {
  27555. name: "Macro",
  27556. height: math.unit(131, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit(91440, "meters")
  27562. },
  27563. {
  27564. name: "Gigamacro",
  27565. height: math.unit(60960000, "meters")
  27566. },
  27567. {
  27568. name: "Teramacro",
  27569. height: math.unit(9144000000, "meters")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(7 + 1 / 12, "feet"),
  27578. weight: math.unit(250, "lb"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/joey/front.svg",
  27582. extra: 1791 / 1537,
  27583. bottom: 28 / 1816
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Micro",
  27590. height: math.unit(3, "inches")
  27591. },
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(7 + 1 / 12, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(165, "cm"),
  27604. weight: math.unit(140, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/sam-evans/front.svg",
  27608. extra: 3417 / 3230,
  27609. bottom: 41.3 / 3417
  27610. }
  27611. },
  27612. frontSixTails: {
  27613. height: math.unit(165, "cm"),
  27614. weight: math.unit(140, "lb"),
  27615. name: "Front-six-tails",
  27616. image: {
  27617. source: "./media/characters/sam-evans/front-six-tails.svg",
  27618. extra: 3417 / 3230,
  27619. bottom: 41.3 / 3417
  27620. }
  27621. },
  27622. back: {
  27623. height: math.unit(165, "cm"),
  27624. weight: math.unit(140, "lb"),
  27625. name: "Back",
  27626. image: {
  27627. source: "./media/characters/sam-evans/back.svg",
  27628. extra: 3227 / 3032,
  27629. bottom: 6.8 / 3234
  27630. }
  27631. },
  27632. face: {
  27633. height: math.unit(0.68, "feet"),
  27634. name: "Face",
  27635. image: {
  27636. source: "./media/characters/sam-evans/face.svg"
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(165, "cm"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(100, "meters")
  27649. },
  27650. {
  27651. name: "Macro+",
  27652. height: math.unit(800, "meters")
  27653. },
  27654. {
  27655. name: "Macro++",
  27656. height: math.unit(3, "km")
  27657. },
  27658. {
  27659. name: "Macro+++",
  27660. height: math.unit(30, "km")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(10, "feet"),
  27669. weight: math.unit(750, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/juliet-a/front.svg",
  27673. extra: 1766 / 1720,
  27674. bottom: 43 / 1809
  27675. }
  27676. },
  27677. back: {
  27678. height: math.unit(10, "feet"),
  27679. weight: math.unit(750, "lb"),
  27680. name: "Back",
  27681. image: {
  27682. source: "./media/characters/juliet-a/back.svg",
  27683. extra: 1781 / 1734,
  27684. bottom: 35 / 1810,
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(10, "feet"),
  27692. default: true
  27693. },
  27694. {
  27695. name: "Dragon Form",
  27696. height: math.unit(250, "feet")
  27697. },
  27698. {
  27699. name: "Macro",
  27700. height: math.unit(1000, "feet")
  27701. },
  27702. {
  27703. name: "Megamacro",
  27704. height: math.unit(10000, "feet")
  27705. }
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27710. {
  27711. regular: {
  27712. height: math.unit(7 + 3 / 12, "feet"),
  27713. weight: math.unit(260, "lb"),
  27714. name: "Regular",
  27715. image: {
  27716. source: "./media/characters/wild/regular.svg",
  27717. extra: 97.45 / 92,
  27718. bottom: 6.8 / 104.3
  27719. }
  27720. },
  27721. biggums: {
  27722. height: math.unit(8 + 6 / 12, "feet"),
  27723. weight: math.unit(425, "lb"),
  27724. name: "Biggums",
  27725. image: {
  27726. source: "./media/characters/wild/biggums.svg",
  27727. extra: 97.45 / 92,
  27728. bottom: 7.5 / 132.34
  27729. }
  27730. },
  27731. mawRegular: {
  27732. height: math.unit(1.24, "feet"),
  27733. name: "Maw (Regular)",
  27734. image: {
  27735. source: "./media/characters/wild/maw.svg"
  27736. }
  27737. },
  27738. mawBiggums: {
  27739. height: math.unit(1.47, "feet"),
  27740. name: "Maw (Biggums)",
  27741. image: {
  27742. source: "./media/characters/wild/maw.svg"
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(7 + 3 / 12, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27756. {
  27757. front: {
  27758. height: math.unit(2.5, "meters"),
  27759. weight: math.unit(200, "kg"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/vidar/front.svg",
  27763. extra: 2994 / 2795,
  27764. bottom: 56 / 3061
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(2.5, "meters"),
  27769. weight: math.unit(200, "kg"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/vidar/back.svg",
  27773. extra: 3131 / 2928,
  27774. bottom: 13.5 / 3141.5
  27775. }
  27776. },
  27777. feral: {
  27778. height: math.unit(2.5, "meters"),
  27779. weight: math.unit(2000, "kg"),
  27780. name: "Feral",
  27781. image: {
  27782. source: "./media/characters/vidar/feral.svg",
  27783. extra: 2790 / 1765,
  27784. bottom: 6 / 2796
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(2.5, "meters"),
  27792. default: true
  27793. },
  27794. {
  27795. name: "Macro",
  27796. height: math.unit(100, "meters")
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(5 + 9 / 12, "feet"),
  27805. weight: math.unit(120, "lb"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/ash/front.svg",
  27809. extra: 2189 / 1961,
  27810. bottom: 5.2 / 2194
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(5 + 9 / 12, "feet"),
  27818. default: true
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(9, "feet"),
  27827. weight: math.unit(10000, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/gygabite/front.svg",
  27831. bottom: 31.7 / 537.8,
  27832. extra: 505 / 370
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(9, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(12, "feet"),
  27849. weight: math.unit(35000, "lb"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/p0tat0/front.svg",
  27853. extra: 1065 / 921,
  27854. bottom: 55.7 / 1121.25
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(12, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27868. {
  27869. side: {
  27870. height: math.unit(6.5, "feet"),
  27871. weight: math.unit(800, "lb"),
  27872. name: "Side",
  27873. image: {
  27874. source: "./media/characters/dusk/side.svg",
  27875. extra: 615 / 373,
  27876. bottom: 53 / 664
  27877. }
  27878. },
  27879. sitting: {
  27880. height: math.unit(7, "feet"),
  27881. weight: math.unit(800, "lb"),
  27882. name: "Sitting",
  27883. image: {
  27884. source: "./media/characters/dusk/sitting.svg",
  27885. extra: 753 / 425,
  27886. bottom: 33 / 774
  27887. }
  27888. },
  27889. head: {
  27890. height: math.unit(6.1, "feet"),
  27891. name: "Head",
  27892. image: {
  27893. source: "./media/characters/dusk/head.svg"
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(7, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27907. {
  27908. front: {
  27909. height: math.unit(15, "feet"),
  27910. weight: math.unit(7000, "lb"),
  27911. name: "Front",
  27912. image: {
  27913. source: "./media/characters/jay-direwolf/front.svg",
  27914. extra: 1810 / 1732,
  27915. bottom: 66 / 1892
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(15, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(4 + 9 / 12, "feet"),
  27932. weight: math.unit(130, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/anchovie/front.svg",
  27936. extra: 382 / 350,
  27937. bottom: 25 / 409
  27938. }
  27939. },
  27940. back: {
  27941. height: math.unit(4 + 9 / 12, "feet"),
  27942. weight: math.unit(130, "lb"),
  27943. name: "Back",
  27944. image: {
  27945. source: "./media/characters/anchovie/back.svg",
  27946. extra: 385 / 352,
  27947. bottom: 16.6 / 402
  27948. }
  27949. },
  27950. frontDressed: {
  27951. height: math.unit(4 + 9 / 12, "feet"),
  27952. weight: math.unit(130, "lb"),
  27953. name: "Front (Dressed)",
  27954. image: {
  27955. source: "./media/characters/anchovie/front-dressed.svg",
  27956. extra: 382 / 350,
  27957. bottom: 25 / 409
  27958. }
  27959. },
  27960. backDressed: {
  27961. height: math.unit(4 + 9 / 12, "feet"),
  27962. weight: math.unit(130, "lb"),
  27963. name: "Back (Dressed)",
  27964. image: {
  27965. source: "./media/characters/anchovie/back-dressed.svg",
  27966. extra: 385 / 352,
  27967. bottom: 16.6 / 402
  27968. }
  27969. },
  27970. },
  27971. [
  27972. {
  27973. name: "Micro",
  27974. height: math.unit(6.4, "inches")
  27975. },
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(4 + 9 / 12, "feet"),
  27979. default: true
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(2, "meters"),
  27988. weight: math.unit(180, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/acidrenamon/front.svg",
  27992. extra: 987 / 890,
  27993. bottom: 22.8 / 1009
  27994. }
  27995. },
  27996. back: {
  27997. height: math.unit(2, "meters"),
  27998. weight: math.unit(180, "lb"),
  27999. name: "Back",
  28000. image: {
  28001. source: "./media/characters/acidrenamon/back.svg",
  28002. extra: 983 / 891,
  28003. bottom: 8.4 / 992
  28004. }
  28005. },
  28006. head: {
  28007. height: math.unit(1.92, "feet"),
  28008. name: "Head",
  28009. image: {
  28010. source: "./media/characters/acidrenamon/head.svg"
  28011. }
  28012. },
  28013. rump: {
  28014. height: math.unit(1.72, "feet"),
  28015. name: "Rump",
  28016. image: {
  28017. source: "./media/characters/acidrenamon/rump.svg"
  28018. }
  28019. },
  28020. tail: {
  28021. height: math.unit(4.2, "feet"),
  28022. name: "Tail",
  28023. image: {
  28024. source: "./media/characters/acidrenamon/tail.svg"
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(2, "meters"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Minimacro",
  28036. height: math.unit(7, "meters")
  28037. },
  28038. {
  28039. name: "Macro",
  28040. height: math.unit(200, "meters")
  28041. },
  28042. {
  28043. name: "Gigamacro",
  28044. height: math.unit(0.2, "earths")
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(152, "feet"),
  28053. name: "Front",
  28054. image: {
  28055. source: "./media/characters/kenzie-lee/front.svg",
  28056. extra: 1869/1774,
  28057. bottom: 128/1997
  28058. }
  28059. },
  28060. side: {
  28061. height: math.unit(86, "feet"),
  28062. name: "Side",
  28063. image: {
  28064. source: "./media/characters/kenzie-lee/side.svg",
  28065. extra: 930/815,
  28066. bottom: 177/1107
  28067. }
  28068. },
  28069. paw: {
  28070. height: math.unit(15, "feet"),
  28071. name: "Paw",
  28072. image: {
  28073. source: "./media/characters/kenzie-lee/paw.svg"
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Micro",
  28080. height: math.unit(1.5, "inches")
  28081. },
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(152, "feet"),
  28085. default: true
  28086. },
  28087. {
  28088. name: "Megamacro",
  28089. height: math.unit(7, "miles")
  28090. },
  28091. {
  28092. name: "Gigamacro",
  28093. height: math.unit(8000, "miles")
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28099. {
  28100. side: {
  28101. height: math.unit(6, "feet"),
  28102. weight: math.unit(150, "lb"),
  28103. name: "Side",
  28104. image: {
  28105. source: "./media/characters/withers/side.svg",
  28106. extra: 1830 / 1728,
  28107. bottom: 96 / 1927
  28108. }
  28109. },
  28110. front: {
  28111. height: math.unit(6, "feet"),
  28112. weight: math.unit(150, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/withers/front.svg",
  28116. extra: 1514 / 1438,
  28117. bottom: 118 / 1632
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(168, "feet"),
  28125. default: true
  28126. },
  28127. {
  28128. name: "Megamacro",
  28129. height: math.unit(15, "miles")
  28130. }
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(6 + 7 / 12, "feet"),
  28138. weight: math.unit(250, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/nemoskii/front.svg",
  28142. extra: 2270 / 1734,
  28143. bottom: 86 / 2354
  28144. }
  28145. },
  28146. back: {
  28147. height: math.unit(6 + 7 / 12, "feet"),
  28148. weight: math.unit(250, "lb"),
  28149. name: "Back",
  28150. image: {
  28151. source: "./media/characters/nemoskii/back.svg",
  28152. extra: 1845 / 1788,
  28153. bottom: 10.5 / 1852
  28154. }
  28155. },
  28156. head: {
  28157. height: math.unit(1.31, "feet"),
  28158. name: "Head",
  28159. image: {
  28160. source: "./media/characters/nemoskii/head.svg"
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Micro",
  28167. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28168. },
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(6 + 7 / 12, "feet"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Macro",
  28176. height: math.unit((6 + 7 / 12) * 150, "feet")
  28177. },
  28178. {
  28179. name: "Macro+",
  28180. height: math.unit((6 + 7 / 12) * 500, "feet")
  28181. },
  28182. {
  28183. name: "Megamacro",
  28184. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28190. {
  28191. front: {
  28192. height: math.unit(1, "mile"),
  28193. weight: math.unit(265261.9, "lb"),
  28194. name: "Front",
  28195. image: {
  28196. source: "./media/characters/shui/front.svg",
  28197. extra: 1633 / 1564,
  28198. bottom: 91.5 / 1726
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Macro",
  28205. height: math.unit(1, "mile"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(12 + 6 / 12, "feet"),
  28215. weight: math.unit(1342, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/arokh-takakura/front.svg",
  28219. extra: 1089 / 1043,
  28220. bottom: 77.4 / 1176.7
  28221. }
  28222. },
  28223. back: {
  28224. height: math.unit(12 + 6 / 12, "feet"),
  28225. weight: math.unit(1342, "lb"),
  28226. name: "Back",
  28227. image: {
  28228. source: "./media/characters/arokh-takakura/back.svg",
  28229. extra: 1046 / 1019,
  28230. bottom: 102 / 1150
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Big",
  28237. height: math.unit(12 + 6 / 12, "feet"),
  28238. default: true
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(5 + 6 / 12, "feet"),
  28247. weight: math.unit(150, "lb"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/theo/front.svg",
  28251. extra: 1184 / 1131,
  28252. bottom: 7.4 / 1191
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Micro",
  28259. height: math.unit(5, "inches")
  28260. },
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(5 + 6 / 12, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(5 + 9 / 12, "feet"),
  28273. weight: math.unit(130, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/cecelia-swift/front.svg",
  28277. extra: 502 / 484,
  28278. bottom: 23 / 523
  28279. }
  28280. },
  28281. back: {
  28282. height: math.unit(5 + 9 / 12, "feet"),
  28283. weight: math.unit(130, "lb"),
  28284. name: "Back",
  28285. image: {
  28286. source: "./media/characters/cecelia-swift/back.svg",
  28287. extra: 499 / 485,
  28288. bottom: 12 / 511
  28289. }
  28290. },
  28291. head: {
  28292. height: math.unit(0.90, "feet"),
  28293. name: "Head",
  28294. image: {
  28295. source: "./media/characters/cecelia-swift/head.svg"
  28296. }
  28297. },
  28298. rump: {
  28299. height: math.unit(1.75, "feet"),
  28300. name: "Rump",
  28301. image: {
  28302. source: "./media/characters/cecelia-swift/rump.svg"
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(5 + 9 / 12, "feet"),
  28310. default: true
  28311. },
  28312. {
  28313. name: "Big",
  28314. height: math.unit(50, "feet")
  28315. },
  28316. {
  28317. name: "Macro",
  28318. height: math.unit(100, "feet")
  28319. },
  28320. {
  28321. name: "Macro+",
  28322. height: math.unit(500, "feet")
  28323. },
  28324. {
  28325. name: "Macro++",
  28326. height: math.unit(1000, "feet")
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28332. {
  28333. front: {
  28334. height: math.unit(6, "feet"),
  28335. weight: math.unit(150, "lb"),
  28336. name: "Front",
  28337. image: {
  28338. source: "./media/characters/kaunan/front.svg",
  28339. extra: 2890 / 2523,
  28340. bottom: 49 / 2939
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Macro",
  28347. height: math.unit(150, "feet"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(175, "cm"),
  28357. weight: math.unit(60, "kg"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/fei/front.svg",
  28361. extra: 1873/1723,
  28362. bottom: 53/1926
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Mortal",
  28369. height: math.unit(175, "cm")
  28370. },
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(3500, "m"),
  28374. default: true
  28375. },
  28376. {
  28377. name: "Stroll",
  28378. height: math.unit(17.5, "km")
  28379. },
  28380. {
  28381. name: "Showoff",
  28382. height: math.unit(175, "km")
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(7, "feet"),
  28391. weight: math.unit(1000, "kg"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/edrax/front.svg",
  28395. extra: 2838 / 2550,
  28396. bottom: 130 / 2968
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Small",
  28403. height: math.unit(7, "feet")
  28404. },
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(1500, "meters")
  28408. },
  28409. {
  28410. name: "Mega",
  28411. height: math.unit(12000000, "km"),
  28412. default: true
  28413. },
  28414. {
  28415. name: "Megamacro",
  28416. height: math.unit(10600000, "lightyears")
  28417. },
  28418. {
  28419. name: "Hypermacro",
  28420. height: math.unit(256, "yottameters")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(10, "feet"),
  28429. weight: math.unit(750, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/clove/front.svg",
  28433. extra: 1918/1751,
  28434. bottom: 52/1970
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(10, "feet"),
  28439. weight: math.unit(750, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/clove/back.svg",
  28443. extra: 1912/1747,
  28444. bottom: 50/1962
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(10, "feet"),
  28452. default: true
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28458. {
  28459. front: {
  28460. height: math.unit(4, "feet"),
  28461. weight: math.unit(50, "lb"),
  28462. name: "Front",
  28463. image: {
  28464. source: "./media/characters/alex-rabbit/front.svg",
  28465. extra: 507 / 458,
  28466. bottom: 18.5 / 527
  28467. }
  28468. },
  28469. back: {
  28470. height: math.unit(4, "feet"),
  28471. weight: math.unit(50, "lb"),
  28472. name: "Back",
  28473. image: {
  28474. source: "./media/characters/alex-rabbit/back.svg",
  28475. extra: 502 / 460,
  28476. bottom: 18.9 / 521
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(4, "feet"),
  28484. default: true
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(1 + 3 / 12, "feet"),
  28493. weight: math.unit(80, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/zander-rose/front.svg",
  28497. extra: 916 / 797,
  28498. bottom: 17 / 933
  28499. }
  28500. },
  28501. back: {
  28502. height: math.unit(1 + 3 / 12, "feet"),
  28503. weight: math.unit(80, "lb"),
  28504. name: "Back",
  28505. image: {
  28506. source: "./media/characters/zander-rose/back.svg",
  28507. extra: 903 / 779,
  28508. bottom: 31 / 934
  28509. }
  28510. },
  28511. },
  28512. [
  28513. {
  28514. name: "Normal",
  28515. height: math.unit(1 + 3 / 12, "feet"),
  28516. default: true
  28517. },
  28518. ]
  28519. ))
  28520. characterMakers.push(() => makeCharacter(
  28521. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28522. {
  28523. anthro: {
  28524. height: math.unit(6, "feet"),
  28525. weight: math.unit(150, "lb"),
  28526. name: "Anthro",
  28527. image: {
  28528. source: "./media/characters/razz/anthro.svg",
  28529. extra: 1437 / 1343,
  28530. bottom: 48 / 1485
  28531. }
  28532. },
  28533. feral: {
  28534. height: math.unit(6, "feet"),
  28535. weight: math.unit(150, "lb"),
  28536. name: "Feral",
  28537. image: {
  28538. source: "./media/characters/razz/feral.svg",
  28539. extra: 2569 / 1385,
  28540. bottom: 95 / 2664
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(6, "feet"),
  28548. default: true
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(9 + 4 / 12, "feet"),
  28557. weight: math.unit(500, "lb"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/morrigan/front.svg",
  28561. extra: 2707 / 2579,
  28562. bottom: 156 / 2863
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(9 + 4 / 12, "feet"),
  28570. default: true
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(5, "stories"),
  28579. weight: math.unit(4000, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/jenene/front.svg",
  28583. extra: 1780 / 1710,
  28584. bottom: 57 / 1837
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(5, "stories"),
  28592. default: true
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28598. {
  28599. taurSfw: {
  28600. height: math.unit(10, "meters"),
  28601. weight: math.unit(17500, "kg"),
  28602. name: "Taur",
  28603. image: {
  28604. source: "./media/characters/faey/taur-sfw.svg",
  28605. extra: 1200 / 968,
  28606. bottom: 41 / 1241
  28607. }
  28608. },
  28609. chestmaw: {
  28610. height: math.unit(2.01, "meters"),
  28611. name: "Chestmaw",
  28612. image: {
  28613. source: "./media/characters/faey/chestmaw.svg"
  28614. }
  28615. },
  28616. foot: {
  28617. height: math.unit(2.43, "meters"),
  28618. name: "Foot",
  28619. image: {
  28620. source: "./media/characters/faey/foot.svg"
  28621. }
  28622. },
  28623. jaws: {
  28624. height: math.unit(1.66, "meters"),
  28625. name: "Jaws",
  28626. image: {
  28627. source: "./media/characters/faey/jaws.svg"
  28628. }
  28629. },
  28630. tongues: {
  28631. height: math.unit(2.01, "meters"),
  28632. name: "Tongues",
  28633. image: {
  28634. source: "./media/characters/faey/tongues.svg"
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Small",
  28641. height: math.unit(10, "meters"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Big",
  28646. height: math.unit(500000, "km")
  28647. },
  28648. ]
  28649. ))
  28650. characterMakers.push(() => makeCharacter(
  28651. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28652. {
  28653. front: {
  28654. height: math.unit(7, "feet"),
  28655. weight: math.unit(275, "lb"),
  28656. name: "Front",
  28657. image: {
  28658. source: "./media/characters/roku/front.svg",
  28659. extra: 903 / 878,
  28660. bottom: 37 / 940
  28661. }
  28662. },
  28663. },
  28664. [
  28665. {
  28666. name: "Normal",
  28667. height: math.unit(7, "feet"),
  28668. default: true
  28669. },
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(500, "feet")
  28673. },
  28674. {
  28675. name: "Megamacro",
  28676. height: math.unit(200, "miles")
  28677. },
  28678. ]
  28679. ))
  28680. characterMakers.push(() => makeCharacter(
  28681. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28682. {
  28683. front: {
  28684. height: math.unit(6 + 2 / 12, "feet"),
  28685. weight: math.unit(150, "lb"),
  28686. name: "Front",
  28687. image: {
  28688. source: "./media/characters/lira/front.svg",
  28689. extra: 1727 / 1605,
  28690. bottom: 26 / 1753
  28691. }
  28692. },
  28693. back: {
  28694. height: math.unit(6 + 2 / 12, "feet"),
  28695. weight: math.unit(150, "lb"),
  28696. name: "Back",
  28697. image: {
  28698. source: "./media/characters/lira/back.svg",
  28699. extra: 1713/1621,
  28700. bottom: 20/1733
  28701. }
  28702. },
  28703. hand: {
  28704. height: math.unit(0.75, "feet"),
  28705. name: "Hand",
  28706. image: {
  28707. source: "./media/characters/lira/hand.svg"
  28708. }
  28709. },
  28710. maw: {
  28711. height: math.unit(0.65, "feet"),
  28712. name: "Maw",
  28713. image: {
  28714. source: "./media/characters/lira/maw.svg"
  28715. }
  28716. },
  28717. pawDigi: {
  28718. height: math.unit(1.6, "feet"),
  28719. name: "Paw Digi",
  28720. image: {
  28721. source: "./media/characters/lira/paw-digi.svg"
  28722. }
  28723. },
  28724. pawPlanti: {
  28725. height: math.unit(1.4, "feet"),
  28726. name: "Paw Planti",
  28727. image: {
  28728. source: "./media/characters/lira/paw-planti.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(6 + 2 / 12, "feet"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(100, "feet")
  28741. },
  28742. {
  28743. name: "Macro²",
  28744. height: math.unit(1600, "feet")
  28745. },
  28746. {
  28747. name: "Planetary",
  28748. height: math.unit(20, "earths")
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(6, "feet"),
  28757. weight: math.unit(150, "lb"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/hadjet/front.svg",
  28761. extra: 1480 / 1346,
  28762. bottom: 26 / 1506
  28763. }
  28764. },
  28765. frontNsfw: {
  28766. height: math.unit(6, "feet"),
  28767. weight: math.unit(150, "lb"),
  28768. name: "Front (NSFW)",
  28769. image: {
  28770. source: "./media/characters/hadjet/front-nsfw.svg",
  28771. extra: 1440 / 1358,
  28772. bottom: 52 / 1492
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Macro",
  28779. height: math.unit(10, "stories"),
  28780. default: true
  28781. },
  28782. {
  28783. name: "Megamacro",
  28784. height: math.unit(1.5, "miles")
  28785. },
  28786. {
  28787. name: "Megamacro+",
  28788. height: math.unit(5, "miles")
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28794. {
  28795. side: {
  28796. height: math.unit(106, "feet"),
  28797. weight: math.unit(500, "tonnes"),
  28798. name: "Side",
  28799. image: {
  28800. source: "./media/characters/kodran/side.svg",
  28801. extra: 553 / 480,
  28802. bottom: 33 / 586
  28803. }
  28804. },
  28805. front: {
  28806. height: math.unit(132, "feet"),
  28807. weight: math.unit(500, "tonnes"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/kodran/front.svg",
  28811. extra: 667 / 643,
  28812. bottom: 42 / 709
  28813. }
  28814. },
  28815. flying: {
  28816. height: math.unit(350, "feet"),
  28817. weight: math.unit(500, "tonnes"),
  28818. name: "Flying",
  28819. image: {
  28820. source: "./media/characters/kodran/flying.svg"
  28821. }
  28822. },
  28823. foot: {
  28824. height: math.unit(33, "feet"),
  28825. name: "Foot",
  28826. image: {
  28827. source: "./media/characters/kodran/foot.svg"
  28828. }
  28829. },
  28830. footFront: {
  28831. height: math.unit(19, "feet"),
  28832. name: "Foot (Front)",
  28833. image: {
  28834. source: "./media/characters/kodran/foot-front.svg",
  28835. extra: 261 / 261,
  28836. bottom: 91 / 352
  28837. }
  28838. },
  28839. headFront: {
  28840. height: math.unit(53, "feet"),
  28841. name: "Head (Front)",
  28842. image: {
  28843. source: "./media/characters/kodran/head-front.svg"
  28844. }
  28845. },
  28846. headSide: {
  28847. height: math.unit(65, "feet"),
  28848. name: "Head (Side)",
  28849. image: {
  28850. source: "./media/characters/kodran/head-side.svg"
  28851. }
  28852. },
  28853. throat: {
  28854. height: math.unit(79, "feet"),
  28855. name: "Throat",
  28856. image: {
  28857. source: "./media/characters/kodran/throat.svg"
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Large",
  28864. height: math.unit(106, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28871. {
  28872. side: {
  28873. height: math.unit(11, "feet"),
  28874. weight: math.unit(150, "lb"),
  28875. name: "Side",
  28876. image: {
  28877. source: "./media/characters/pyxaron/side.svg",
  28878. extra: 305 / 195,
  28879. bottom: 17 / 322
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(11, "feet"),
  28887. default: true
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(6, "feet"),
  28896. weight: math.unit(150, "lb"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/meep/front.svg",
  28900. extra: 88 / 80,
  28901. bottom: 6 / 94
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Fun Sized",
  28908. height: math.unit(2, "inches"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Friend Sized",
  28913. height: math.unit(8, "inches")
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(15, "feet"),
  28922. weight: math.unit(2500, "lb"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/holly-rabbit/front.svg",
  28926. extra: 1433 / 1233,
  28927. bottom: 125 / 1558
  28928. }
  28929. },
  28930. dick: {
  28931. height: math.unit(4.6, "feet"),
  28932. name: "Dick",
  28933. image: {
  28934. source: "./media/characters/holly-rabbit/dick.svg"
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Normal",
  28941. height: math.unit(15, "feet"),
  28942. default: true
  28943. },
  28944. {
  28945. name: "Macro",
  28946. height: math.unit(250, "feet")
  28947. },
  28948. {
  28949. name: "Macro+",
  28950. height: math.unit(2500, "feet")
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(3.02, "meters"),
  28959. weight: math.unit(500, "kg"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/drena/front.svg",
  28963. extra: 282 / 243,
  28964. bottom: 8 / 290
  28965. }
  28966. },
  28967. side: {
  28968. height: math.unit(3.02, "meters"),
  28969. weight: math.unit(500, "kg"),
  28970. name: "Side",
  28971. image: {
  28972. source: "./media/characters/drena/side.svg",
  28973. extra: 280 / 245,
  28974. bottom: 10 / 290
  28975. }
  28976. },
  28977. back: {
  28978. height: math.unit(3.02, "meters"),
  28979. weight: math.unit(500, "kg"),
  28980. name: "Back",
  28981. image: {
  28982. source: "./media/characters/drena/back.svg",
  28983. extra: 278 / 243,
  28984. bottom: 2 / 280
  28985. }
  28986. },
  28987. foot: {
  28988. height: math.unit(0.75, "meters"),
  28989. name: "Foot",
  28990. image: {
  28991. source: "./media/characters/drena/foot.svg"
  28992. }
  28993. },
  28994. maw: {
  28995. height: math.unit(0.82, "meters"),
  28996. name: "Maw",
  28997. image: {
  28998. source: "./media/characters/drena/maw.svg"
  28999. }
  29000. },
  29001. rump: {
  29002. height: math.unit(0.93, "meters"),
  29003. name: "Rump",
  29004. image: {
  29005. source: "./media/characters/drena/rump.svg"
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(3.02, "meters"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(6 + 4 / 12, "feet"),
  29022. weight: math.unit(250, "lb"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/remmyzilla/front.svg",
  29026. extra: 4033 / 3588,
  29027. bottom: 123 / 4156
  29028. }
  29029. },
  29030. back: {
  29031. height: math.unit(6 + 4 / 12, "feet"),
  29032. weight: math.unit(250, "lb"),
  29033. name: "Back",
  29034. image: {
  29035. source: "./media/characters/remmyzilla/back.svg",
  29036. extra: 2687 / 2555,
  29037. bottom: 48 / 2735
  29038. }
  29039. },
  29040. paw: {
  29041. height: math.unit(1.73, "feet"),
  29042. name: "Paw",
  29043. image: {
  29044. source: "./media/characters/remmyzilla/paw.svg"
  29045. }
  29046. },
  29047. maw: {
  29048. height: math.unit(1.73, "feet"),
  29049. name: "Maw",
  29050. image: {
  29051. source: "./media/characters/remmyzilla/maw.svg"
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(6 + 4 / 12, "feet")
  29059. },
  29060. {
  29061. name: "Minimacro",
  29062. height: math.unit(12 + 8 / 12, "feet")
  29063. },
  29064. {
  29065. name: "Normal",
  29066. height: math.unit(640, "feet"),
  29067. default: true
  29068. },
  29069. {
  29070. name: "Megamacro",
  29071. height: math.unit(6400, "feet")
  29072. },
  29073. {
  29074. name: "Gigamacro",
  29075. height: math.unit(64000, "miles")
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(2.5, "meters"),
  29084. weight: math.unit(300, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/lawrence/front.svg",
  29088. extra: 357 / 335,
  29089. bottom: 30 / 387
  29090. }
  29091. },
  29092. back: {
  29093. height: math.unit(2.5, "meters"),
  29094. weight: math.unit(300, "lb"),
  29095. name: "Back",
  29096. image: {
  29097. source: "./media/characters/lawrence/back.svg",
  29098. extra: 357 / 338,
  29099. bottom: 16 / 373
  29100. }
  29101. },
  29102. head: {
  29103. height: math.unit(0.9, "meter"),
  29104. name: "Head",
  29105. image: {
  29106. source: "./media/characters/lawrence/head.svg"
  29107. }
  29108. },
  29109. maw: {
  29110. height: math.unit(0.7, "meter"),
  29111. name: "Maw",
  29112. image: {
  29113. source: "./media/characters/lawrence/maw.svg"
  29114. }
  29115. },
  29116. footBottom: {
  29117. height: math.unit(0.5, "meter"),
  29118. name: "Foot (Bottom)",
  29119. image: {
  29120. source: "./media/characters/lawrence/foot-bottom.svg"
  29121. }
  29122. },
  29123. footTop: {
  29124. height: math.unit(0.5, "meter"),
  29125. name: "Foot (Top)",
  29126. image: {
  29127. source: "./media/characters/lawrence/foot-top.svg"
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Normal",
  29134. height: math.unit(2.5, "meters"),
  29135. default: true
  29136. },
  29137. {
  29138. name: "Macro",
  29139. height: math.unit(95, "meters")
  29140. },
  29141. {
  29142. name: "Megamacro",
  29143. height: math.unit(150, "km")
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29149. {
  29150. front: {
  29151. height: math.unit(4.2, "meters"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/sydney/front.svg",
  29155. extra: 1323 / 1277,
  29156. bottom: 111 / 1434
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(4.2, "meters"),
  29164. default: true
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29170. {
  29171. back: {
  29172. height: math.unit(201, "feet"),
  29173. name: "Back",
  29174. image: {
  29175. source: "./media/characters/jessica/back.svg",
  29176. extra: 273 / 259,
  29177. bottom: 7 / 280
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Normal",
  29184. height: math.unit(201, "feet"),
  29185. default: true
  29186. },
  29187. {
  29188. name: "Megamacro",
  29189. height: math.unit(8, "miles")
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29195. {
  29196. side: {
  29197. height: math.unit(5.6, "m"),
  29198. weight: math.unit(8000, "kg"),
  29199. name: "Side",
  29200. image: {
  29201. source: "./media/characters/victoria/side.svg",
  29202. extra: 1542/1229,
  29203. bottom: 124/1666
  29204. }
  29205. },
  29206. maw: {
  29207. height: math.unit(7.14, "feet"),
  29208. name: "Maw",
  29209. image: {
  29210. source: "./media/characters/victoria/maw.svg"
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(5.6, "m"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29224. {
  29225. front: {
  29226. height: math.unit(5 + 6 / 12, "feet"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/cat/front.svg",
  29230. extra: 1449/1295,
  29231. bottom: 34/1483
  29232. },
  29233. form: "cat",
  29234. default: true
  29235. },
  29236. back: {
  29237. height: math.unit(5 + 6 / 12, "feet"),
  29238. name: "Back",
  29239. image: {
  29240. source: "./media/characters/cat/back.svg",
  29241. extra: 1466/1301,
  29242. bottom: 19/1485
  29243. },
  29244. form: "cat"
  29245. },
  29246. taur: {
  29247. height: math.unit(7, "feet"),
  29248. name: "Taur",
  29249. image: {
  29250. source: "./media/characters/cat/taur.svg",
  29251. extra: 1389/1233,
  29252. bottom: 83/1472
  29253. },
  29254. form: "taur",
  29255. default: true
  29256. },
  29257. lucarioFront: {
  29258. height: math.unit(4, "feet"),
  29259. name: "Lucario (Front)",
  29260. image: {
  29261. source: "./media/characters/cat/lucario-front.svg",
  29262. extra: 1149/1019,
  29263. bottom: 84/1233
  29264. },
  29265. form: "lucario",
  29266. default: true
  29267. },
  29268. lucarioBack: {
  29269. height: math.unit(4, "feet"),
  29270. name: "Lucario (Back)",
  29271. image: {
  29272. source: "./media/characters/cat/lucario-back.svg",
  29273. extra: 1190/1059,
  29274. bottom: 33/1223
  29275. },
  29276. form: "lucario"
  29277. },
  29278. megaLucario: {
  29279. height: math.unit(4, "feet"),
  29280. name: "Mega Lucario",
  29281. image: {
  29282. source: "./media/characters/cat/mega-lucario.svg",
  29283. extra: 1515 / 1319,
  29284. bottom: 63 / 1578
  29285. },
  29286. form: "lucario"
  29287. },
  29288. nickit: {
  29289. height: math.unit(2, "feet"),
  29290. name: "Nickit",
  29291. image: {
  29292. source: "./media/characters/cat/nickit.svg",
  29293. extra: 1980 / 1585,
  29294. bottom: 102 / 2082
  29295. },
  29296. form: "nickit",
  29297. default: true
  29298. },
  29299. lopunnyFront: {
  29300. height: math.unit(5, "feet"),
  29301. name: "Lopunny (Front)",
  29302. image: {
  29303. source: "./media/characters/cat/lopunny-front.svg",
  29304. extra: 1782 / 1469,
  29305. bottom: 38 / 1820
  29306. },
  29307. form: "lopunny",
  29308. default: true
  29309. },
  29310. lopunnyBack: {
  29311. height: math.unit(5, "feet"),
  29312. name: "Lopunny (Back)",
  29313. image: {
  29314. source: "./media/characters/cat/lopunny-back.svg",
  29315. extra: 1660 / 1490,
  29316. bottom: 25 / 1685
  29317. },
  29318. form: "lopunny"
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Really small",
  29324. height: math.unit(1, "nm")
  29325. },
  29326. {
  29327. name: "Micro",
  29328. height: math.unit(5, "inches")
  29329. },
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(5 + 6 / 12, "feet"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(50, "feet")
  29338. },
  29339. {
  29340. name: "Macro+",
  29341. height: math.unit(150, "feet")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit(100, "miles")
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(63.4, "meters"),
  29354. weight: math.unit(3.28349e+6, "kilograms"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/kirina-violet/front.svg",
  29358. extra: 2812 / 2725,
  29359. bottom: 0 / 2812
  29360. }
  29361. },
  29362. back: {
  29363. height: math.unit(63.4, "meters"),
  29364. weight: math.unit(3.28349e+6, "kilograms"),
  29365. name: "Back",
  29366. image: {
  29367. source: "./media/characters/kirina-violet/back.svg",
  29368. extra: 2812 / 2725,
  29369. bottom: 0 / 2812
  29370. }
  29371. },
  29372. mouth: {
  29373. height: math.unit(4.35, "meters"),
  29374. name: "Mouth",
  29375. image: {
  29376. source: "./media/characters/kirina-violet/mouth.svg"
  29377. }
  29378. },
  29379. paw: {
  29380. height: math.unit(5.6, "meters"),
  29381. name: "Paw",
  29382. image: {
  29383. source: "./media/characters/kirina-violet/paw.svg"
  29384. }
  29385. },
  29386. tail: {
  29387. height: math.unit(18, "meters"),
  29388. name: "Tail",
  29389. image: {
  29390. source: "./media/characters/kirina-violet/tail.svg"
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Macro",
  29397. height: math.unit(63.4, "meters"),
  29398. default: true
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(75, "feet"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/cat-gigachu/front.svg",
  29410. extra: 1239/1027,
  29411. bottom: 32/1271
  29412. }
  29413. },
  29414. back: {
  29415. height: math.unit(75, "feet"),
  29416. name: "Back",
  29417. image: {
  29418. source: "./media/characters/cat-gigachu/back.svg",
  29419. extra: 1229/1030,
  29420. bottom: 9/1238
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Dynamax",
  29427. height: math.unit(75, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(6, "feet"),
  29437. weight: math.unit(150, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/sfaiyan/front.svg",
  29441. extra: 999 / 978,
  29442. bottom: 5 / 1004
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(1.82, "meters")
  29450. },
  29451. {
  29452. name: "Giant",
  29453. height: math.unit(2.27, "km"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(179, "cm"),
  29463. weight: math.unit(100, "kg"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/raunehkeli/front.svg",
  29467. extra: 1934 / 1926,
  29468. bottom: 0 / 1934
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(179, "cm")
  29476. },
  29477. {
  29478. name: "Maximum",
  29479. height: math.unit(575, "meters"),
  29480. default: true
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29486. {
  29487. front: {
  29488. height: math.unit(6, "feet"),
  29489. weight: math.unit(150, "lb"),
  29490. name: "Front",
  29491. image: {
  29492. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29493. extra: 2625 / 2518,
  29494. bottom: 60 / 2685
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Normal",
  29501. height: math.unit(6 + 2 / 12, "feet")
  29502. },
  29503. {
  29504. name: "Macro",
  29505. height: math.unit(1180, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(5 + 6 / 12, "feet"),
  29515. weight: math.unit(108, "lb"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/lilith-zott/front.svg",
  29519. extra: 2510 / 2238,
  29520. bottom: 100 / 2610
  29521. }
  29522. },
  29523. frontDressed: {
  29524. height: math.unit(5 + 6 / 12, "feet"),
  29525. weight: math.unit(108, "lb"),
  29526. name: "Front (Dressed)",
  29527. image: {
  29528. source: "./media/characters/lilith-zott/front-dressed.svg",
  29529. extra: 2510 / 2238,
  29530. bottom: 100 / 2610
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(5 + 6 / 12, "feet")
  29538. },
  29539. {
  29540. name: "Macro",
  29541. height: math.unit(1030, "feet"),
  29542. default: true
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(6, "feet"),
  29551. weight: math.unit(150, "lb"),
  29552. name: "Front",
  29553. image: {
  29554. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29555. extra: 2567 / 2435,
  29556. bottom: 39 / 2606
  29557. }
  29558. },
  29559. frontSuper: {
  29560. height: math.unit(6, "feet"),
  29561. name: "Front (Super)",
  29562. image: {
  29563. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29564. extra: 2567 / 2435,
  29565. bottom: 39 / 2606
  29566. }
  29567. },
  29568. },
  29569. [
  29570. {
  29571. name: "Normal",
  29572. height: math.unit(5 + 10 / 12, "feet")
  29573. },
  29574. {
  29575. name: "Macro",
  29576. height: math.unit(1100, "feet"),
  29577. default: true
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(100, "miles"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/sona/front.svg",
  29589. extra: 2433 / 2201,
  29590. bottom: 53 / 2486
  29591. }
  29592. },
  29593. foot: {
  29594. height: math.unit(16.1, "miles"),
  29595. name: "Foot",
  29596. image: {
  29597. source: "./media/characters/sona/foot.svg"
  29598. }
  29599. },
  29600. },
  29601. [
  29602. {
  29603. name: "Macro",
  29604. height: math.unit(100, "miles"),
  29605. default: true
  29606. },
  29607. ]
  29608. ))
  29609. characterMakers.push(() => makeCharacter(
  29610. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29611. {
  29612. front: {
  29613. height: math.unit(6, "feet"),
  29614. weight: math.unit(150, "lb"),
  29615. name: "Front",
  29616. image: {
  29617. source: "./media/characters/bailey/front.svg",
  29618. extra: 1778 / 1724,
  29619. bottom: 30 / 1808
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Micro",
  29626. height: math.unit(4, "inches")
  29627. },
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(5 + 5 / 12, "feet"),
  29631. default: true
  29632. },
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(250, "feet")
  29636. },
  29637. {
  29638. name: "Megamacro",
  29639. height: math.unit(100, "miles")
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29645. {
  29646. front: {
  29647. height: math.unit(5 + 2 / 12, "feet"),
  29648. weight: math.unit(120, "lb"),
  29649. name: "Front",
  29650. image: {
  29651. source: "./media/characters/snaps/front.svg",
  29652. extra: 2370 / 2177,
  29653. bottom: 48 / 2418
  29654. }
  29655. },
  29656. back: {
  29657. height: math.unit(5 + 2 / 12, "feet"),
  29658. weight: math.unit(120, "lb"),
  29659. name: "Back",
  29660. image: {
  29661. source: "./media/characters/snaps/back.svg",
  29662. extra: 2408 / 2258,
  29663. bottom: 15 / 2423
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Micro",
  29670. height: math.unit(9, "inches")
  29671. },
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(5 + 2 / 12, "feet"),
  29675. default: true
  29676. },
  29677. {
  29678. name: "Mini Macro",
  29679. height: math.unit(10, "feet")
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(1.8, "meters"),
  29688. weight: math.unit(85, "kg"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/azteck/front.svg",
  29692. extra: 2815 / 2625,
  29693. bottom: 89 / 2904
  29694. }
  29695. },
  29696. back: {
  29697. height: math.unit(1.8, "meters"),
  29698. weight: math.unit(85, "kg"),
  29699. name: "Back",
  29700. image: {
  29701. source: "./media/characters/azteck/back.svg",
  29702. extra: 2856 / 2648,
  29703. bottom: 85 / 2941
  29704. }
  29705. },
  29706. frontDressed: {
  29707. height: math.unit(1.8, "meters"),
  29708. weight: math.unit(85, "kg"),
  29709. name: "Front (Dressed)",
  29710. image: {
  29711. source: "./media/characters/azteck/front-dressed.svg",
  29712. extra: 2147 / 2003,
  29713. bottom: 68 / 2215
  29714. }
  29715. },
  29716. head: {
  29717. height: math.unit(0.47, "meters"),
  29718. weight: math.unit(85, "kg"),
  29719. name: "Head",
  29720. image: {
  29721. source: "./media/characters/azteck/head.svg"
  29722. }
  29723. },
  29724. },
  29725. [
  29726. {
  29727. name: "Bite sized",
  29728. height: math.unit(16, "cm")
  29729. },
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(1.8, "meters"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(6, "feet"),
  29742. weight: math.unit(150, "lb"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/pidge/front.svg",
  29746. extra: 620 / 588,
  29747. bottom: 9 / 629
  29748. }
  29749. },
  29750. back: {
  29751. height: math.unit(6, "feet"),
  29752. weight: math.unit(150, "lb"),
  29753. name: "Back",
  29754. image: {
  29755. source: "./media/characters/pidge/back.svg",
  29756. extra: 620 / 588,
  29757. bottom: 9 / 629
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(1, "mile"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(6, "feet"),
  29774. weight: math.unit(150, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/en/front.svg",
  29778. extra: 1697 / 1563,
  29779. bottom: 103 / 1800
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(6, "feet"),
  29784. weight: math.unit(150, "lb"),
  29785. name: "Back",
  29786. image: {
  29787. source: "./media/characters/en/back.svg",
  29788. extra: 1700 / 1570,
  29789. bottom: 51 / 1751
  29790. }
  29791. },
  29792. frontDressed: {
  29793. height: math.unit(6, "feet"),
  29794. weight: math.unit(150, "lb"),
  29795. name: "Front (Dressed)",
  29796. image: {
  29797. source: "./media/characters/en/front-dressed.svg",
  29798. extra: 1697 / 1563,
  29799. bottom: 103 / 1800
  29800. }
  29801. },
  29802. backDressed: {
  29803. height: math.unit(6, "feet"),
  29804. weight: math.unit(150, "lb"),
  29805. name: "Back (Dressed)",
  29806. image: {
  29807. source: "./media/characters/en/back-dressed.svg",
  29808. extra: 1700 / 1570,
  29809. bottom: 51 / 1751
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Macro",
  29816. height: math.unit(210, "feet"),
  29817. default: true
  29818. },
  29819. ]
  29820. ))
  29821. characterMakers.push(() => makeCharacter(
  29822. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29823. {
  29824. front: {
  29825. height: math.unit(6, "feet"),
  29826. weight: math.unit(150, "lb"),
  29827. name: "Front",
  29828. image: {
  29829. source: "./media/characters/haze-orris/front.svg",
  29830. extra: 3975 / 3525,
  29831. bottom: 137 / 4112
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Micro",
  29838. height: math.unit(150, "mm"),
  29839. default: true
  29840. },
  29841. ]
  29842. ))
  29843. characterMakers.push(() => makeCharacter(
  29844. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29845. {
  29846. front: {
  29847. height: math.unit(6, "feet"),
  29848. weight: math.unit(150, "lb"),
  29849. name: "Front",
  29850. image: {
  29851. source: "./media/characters/casselene-yaro/front.svg",
  29852. extra: 4721 / 4541,
  29853. bottom: 82 / 4803
  29854. }
  29855. },
  29856. back: {
  29857. height: math.unit(6, "feet"),
  29858. weight: math.unit(150, "lb"),
  29859. name: "Back",
  29860. image: {
  29861. source: "./media/characters/casselene-yaro/back.svg",
  29862. extra: 4569 / 4377,
  29863. bottom: 69 / 4638
  29864. }
  29865. },
  29866. frontDressed: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(150, "lb"),
  29869. name: "Front-dressed",
  29870. image: {
  29871. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29872. extra: 4721 / 4541,
  29873. bottom: 82 / 4803
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Macro",
  29880. height: math.unit(190, "feet"),
  29881. default: true
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(6, "feet"),
  29890. weight: math.unit(150, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/myra-rue-delore/front.svg",
  29894. extra: 1340 / 1308,
  29895. bottom: 67 / 1407
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(150, "lb"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/myra-rue-delore/back.svg",
  29904. extra: 1341 / 1310,
  29905. bottom: 40 / 1381
  29906. }
  29907. },
  29908. frontDressed: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(150, "lb"),
  29911. name: "Front (Dressed)",
  29912. image: {
  29913. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29914. extra: 1340 / 1308,
  29915. bottom: 67 / 1407
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Macro",
  29922. height: math.unit(150, "feet"),
  29923. default: true
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29929. {
  29930. front: {
  29931. height: math.unit(10, "feet"),
  29932. weight: math.unit(15015, "lb"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/fem!plat/front.svg",
  29936. extra: 2799 / 2604,
  29937. bottom: 149 / 2948
  29938. }
  29939. },
  29940. },
  29941. [
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(10, "feet"),
  29945. default: true
  29946. },
  29947. {
  29948. name: "Macro",
  29949. height: math.unit(100, "feet")
  29950. },
  29951. {
  29952. name: "Megamacro",
  29953. height: math.unit(1000, "feet")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(15 + 5 / 12, "feet"),
  29962. weight: math.unit(4600, "lb"),
  29963. name: "Front",
  29964. image: {
  29965. source: "./media/characters/neapolitan-ananassa/front.svg",
  29966. extra: 2903 / 2736,
  29967. bottom: 0 / 2903
  29968. }
  29969. },
  29970. side: {
  29971. height: math.unit(15 + 5 / 12, "feet"),
  29972. weight: math.unit(4600, "lb"),
  29973. name: "Side",
  29974. image: {
  29975. source: "./media/characters/neapolitan-ananassa/side.svg",
  29976. extra: 2925 / 2719,
  29977. bottom: 0 / 2925
  29978. }
  29979. },
  29980. back: {
  29981. height: math.unit(15 + 5 / 12, "feet"),
  29982. weight: math.unit(4600, "lb"),
  29983. name: "Back",
  29984. image: {
  29985. source: "./media/characters/neapolitan-ananassa/back.svg",
  29986. extra: 2903 / 2736,
  29987. bottom: 0 / 2903
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(15 + 5 / 12, "feet"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Post-Millenium",
  29999. height: math.unit(35 + 5 / 12, "feet")
  30000. },
  30001. {
  30002. name: "Post-Era",
  30003. height: math.unit(450 + 5 / 12, "feet")
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(300, "meters"),
  30012. weight: math.unit(125000, "tonnes"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/pazuzu/front.svg",
  30016. extra: 877 / 794,
  30017. bottom: 47 / 924
  30018. }
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Macro",
  30024. height: math.unit(300, "meters"),
  30025. default: true
  30026. },
  30027. ]
  30028. ))
  30029. characterMakers.push(() => makeCharacter(
  30030. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30031. {
  30032. side: {
  30033. height: math.unit(10 + 7 / 12, "feet"),
  30034. weight: math.unit(2.5, "tons"),
  30035. name: "Side",
  30036. image: {
  30037. source: "./media/characters/aasha/side.svg",
  30038. extra: 1345 / 1245,
  30039. bottom: 111 / 1456
  30040. }
  30041. },
  30042. back: {
  30043. height: math.unit(10 + 7 / 12, "feet"),
  30044. weight: math.unit(2.5, "tons"),
  30045. name: "Back",
  30046. image: {
  30047. source: "./media/characters/aasha/back.svg",
  30048. extra: 1133 / 1057,
  30049. bottom: 257 / 1390
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(10 + 7 / 12, "feet"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(6 + 3 / 12, "feet"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/nevan/front.svg",
  30069. extra: 704 / 704,
  30070. bottom: 28 / 732
  30071. }
  30072. },
  30073. back: {
  30074. height: math.unit(6 + 3 / 12, "feet"),
  30075. name: "Back",
  30076. image: {
  30077. source: "./media/characters/nevan/back.svg",
  30078. extra: 714 / 714,
  30079. bottom: 21 / 735
  30080. }
  30081. },
  30082. frontFlaccid: {
  30083. height: math.unit(6 + 3 / 12, "feet"),
  30084. name: "Front (Flaccid)",
  30085. image: {
  30086. source: "./media/characters/nevan/front-flaccid.svg",
  30087. extra: 704 / 704,
  30088. bottom: 28 / 732
  30089. }
  30090. },
  30091. frontErect: {
  30092. height: math.unit(6 + 3 / 12, "feet"),
  30093. name: "Front (Erect)",
  30094. image: {
  30095. source: "./media/characters/nevan/front-erect.svg",
  30096. extra: 704 / 704,
  30097. bottom: 28 / 732
  30098. }
  30099. },
  30100. backFlaccid: {
  30101. height: math.unit(6 + 3 / 12, "feet"),
  30102. name: "Back (Flaccid)",
  30103. image: {
  30104. source: "./media/characters/nevan/back-flaccid.svg",
  30105. extra: 714 / 714,
  30106. bottom: 21 / 735
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(6 + 3 / 12, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30120. {
  30121. front: {
  30122. height: math.unit(4, "feet"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/arhan/front.svg",
  30126. extra: 3368 / 3133,
  30127. bottom: 0 / 3368
  30128. }
  30129. },
  30130. side: {
  30131. height: math.unit(4, "feet"),
  30132. name: "Side",
  30133. image: {
  30134. source: "./media/characters/arhan/side.svg",
  30135. extra: 3347 / 3105,
  30136. bottom: 0 / 3347
  30137. }
  30138. },
  30139. tongue: {
  30140. height: math.unit(1.42, "feet"),
  30141. name: "Tongue",
  30142. image: {
  30143. source: "./media/characters/arhan/tongue.svg"
  30144. }
  30145. },
  30146. head: {
  30147. height: math.unit(0.85, "feet"),
  30148. name: "Head",
  30149. image: {
  30150. source: "./media/characters/arhan/head.svg"
  30151. }
  30152. },
  30153. },
  30154. [
  30155. {
  30156. name: "Normal",
  30157. height: math.unit(4, "feet"),
  30158. default: true
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(5 + 7.5 / 12, "feet"),
  30167. weight: math.unit(120, "lb"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/digi-duncan/front.svg",
  30171. extra: 330 / 326,
  30172. bottom: 16 / 346
  30173. }
  30174. },
  30175. side: {
  30176. height: math.unit(5 + 7.5 / 12, "feet"),
  30177. weight: math.unit(120, "lb"),
  30178. name: "Side",
  30179. image: {
  30180. source: "./media/characters/digi-duncan/side.svg",
  30181. extra: 341 / 337,
  30182. bottom: 1 / 342
  30183. }
  30184. },
  30185. back: {
  30186. height: math.unit(5 + 7.5 / 12, "feet"),
  30187. weight: math.unit(120, "lb"),
  30188. name: "Back",
  30189. image: {
  30190. source: "./media/characters/digi-duncan/back.svg",
  30191. extra: 330 / 326,
  30192. bottom: 12 / 342
  30193. }
  30194. },
  30195. },
  30196. [
  30197. {
  30198. name: "Speck",
  30199. height: math.unit(0.25, "mm")
  30200. },
  30201. {
  30202. name: "Micro",
  30203. height: math.unit(5, "mm")
  30204. },
  30205. {
  30206. name: "Tiny",
  30207. height: math.unit(0.5, "inches"),
  30208. default: true
  30209. },
  30210. {
  30211. name: "Human",
  30212. height: math.unit(5 + 7.5 / 12, "feet")
  30213. },
  30214. {
  30215. name: "Minigiant",
  30216. height: math.unit(8 + 5.25, "feet")
  30217. },
  30218. {
  30219. name: "Giant",
  30220. height: math.unit(2000, "feet")
  30221. },
  30222. {
  30223. name: "Mega",
  30224. height: math.unit(371.1, "miles")
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(2, "meters"),
  30233. weight: math.unit(350, "kg"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30237. extra: 898 / 838,
  30238. bottom: 9 / 907
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Micro",
  30245. height: math.unit(8, "meters")
  30246. },
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(50, "meters"),
  30250. default: true
  30251. },
  30252. {
  30253. name: "Macro",
  30254. height: math.unit(500, "meters")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(6 + 6 / 12, "feet"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/khardesh/front.svg",
  30266. extra: 1788/1596,
  30267. bottom: 66/1854
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(6 + 6 / 12, "feet"),
  30272. name: "Back",
  30273. image: {
  30274. source: "./media/characters/khardesh/back.svg",
  30275. extra: 1781/1584,
  30276. bottom: 68/1849
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(6 + 6 / 12, "feet"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Normal+",
  30288. height: math.unit(4, "meters")
  30289. },
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(50, "meters")
  30293. },
  30294. {
  30295. name: "Macro+",
  30296. height: math.unit(100, "meters")
  30297. },
  30298. {
  30299. name: "Megamacro",
  30300. height: math.unit(20, "km")
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(6, "feet"),
  30309. weight: math.unit(150, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/kosho/front.svg",
  30313. extra: 1847 / 1847,
  30314. bottom: 86 / 1933
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Second-stage micro",
  30321. height: math.unit(0.5, "inches")
  30322. },
  30323. {
  30324. name: "First-stage micro",
  30325. height: math.unit(6, "inches")
  30326. },
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(6, "feet"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "First-stage macro",
  30334. height: math.unit(72, "feet")
  30335. },
  30336. {
  30337. name: "Second-stage macro",
  30338. height: math.unit(864, "feet")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30344. {
  30345. normal: {
  30346. height: math.unit(4 + 6 / 12, "feet"),
  30347. name: "Normal",
  30348. image: {
  30349. source: "./media/characters/hydra/normal.svg",
  30350. extra: 2833 / 2634,
  30351. bottom: 68 / 2901
  30352. }
  30353. },
  30354. smol: {
  30355. height: math.unit(0.705, "inches"),
  30356. name: "Smol",
  30357. image: {
  30358. source: "./media/characters/hydra/smol.svg",
  30359. extra: 2715 / 2540,
  30360. bottom: 0 / 2715
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(4 + 6 / 12, "feet"),
  30368. default: true
  30369. }
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(0.6, "cm"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/daz/front.svg",
  30380. extra: 1682 / 1164,
  30381. bottom: 42 / 1724
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(0.6, "cm"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(235, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/theo-pangolin/front.svg",
  30402. extra: 1996 / 1969,
  30403. bottom: 115 / 2111
  30404. }
  30405. },
  30406. back: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(235, "lb"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/theo-pangolin/back.svg",
  30412. extra: 1979 / 1979,
  30413. bottom: 40 / 2019
  30414. }
  30415. },
  30416. feral: {
  30417. height: math.unit(2, "feet"),
  30418. weight: math.unit(30, "lb"),
  30419. name: "Feral",
  30420. image: {
  30421. source: "./media/characters/theo-pangolin/feral.svg",
  30422. extra: 803 / 791,
  30423. bottom: 181 / 984
  30424. }
  30425. },
  30426. footFive: {
  30427. height: math.unit(1.43, "feet"),
  30428. name: "Foot (Five Toes)",
  30429. image: {
  30430. source: "./media/characters/theo-pangolin/foot-five.svg"
  30431. }
  30432. },
  30433. footFour: {
  30434. height: math.unit(1.43, "feet"),
  30435. name: "Foot (Four Toes)",
  30436. image: {
  30437. source: "./media/characters/theo-pangolin/foot-four.svg"
  30438. }
  30439. },
  30440. handFour: {
  30441. height: math.unit(0.81, "feet"),
  30442. name: "Hand (Four Fingers)",
  30443. image: {
  30444. source: "./media/characters/theo-pangolin/hand-four.svg"
  30445. }
  30446. },
  30447. handThree: {
  30448. height: math.unit(0.81, "feet"),
  30449. name: "Hand (Three Fingers)",
  30450. image: {
  30451. source: "./media/characters/theo-pangolin/hand-three.svg"
  30452. }
  30453. },
  30454. headFront: {
  30455. height: math.unit(1.37, "feet"),
  30456. name: "Head (Front)",
  30457. image: {
  30458. source: "./media/characters/theo-pangolin/head-front.svg"
  30459. }
  30460. },
  30461. headSide: {
  30462. height: math.unit(1.43, "feet"),
  30463. name: "Head (Side)",
  30464. image: {
  30465. source: "./media/characters/theo-pangolin/head-side.svg"
  30466. }
  30467. },
  30468. tongue: {
  30469. height: math.unit(2.29, "feet"),
  30470. name: "Tongue",
  30471. image: {
  30472. source: "./media/characters/theo-pangolin/tongue.svg"
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(6, "feet")
  30480. },
  30481. {
  30482. name: "Macro",
  30483. height: math.unit(400, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "inches"),
  30493. weight: math.unit(0.036, "kg"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/renée/front.svg",
  30497. extra: 900 / 886,
  30498. bottom: 8 / 908
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Nano",
  30505. height: math.unit(1, "nm")
  30506. },
  30507. {
  30508. name: "Micro",
  30509. height: math.unit(1, "mm")
  30510. },
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(6, "inches")
  30514. },
  30515. {
  30516. name: "Macro",
  30517. height: math.unit(2000, "feet"),
  30518. default: true
  30519. },
  30520. {
  30521. name: "Megamacro",
  30522. height: math.unit(2, "km")
  30523. },
  30524. {
  30525. name: "Gigamacro",
  30526. height: math.unit(2000, "km")
  30527. },
  30528. {
  30529. name: "Teramacro",
  30530. height: math.unit(250000, "km")
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(4, "meters"),
  30539. weight: math.unit(150, "kg"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/caledvwlch/front.svg",
  30543. extra: 1760 / 1551,
  30544. bottom: 28 / 1788
  30545. }
  30546. },
  30547. side: {
  30548. height: math.unit(4, "meters"),
  30549. weight: math.unit(150, "kg"),
  30550. name: "Side",
  30551. image: {
  30552. source: "./media/characters/caledvwlch/side.svg",
  30553. extra: 1605 / 1536,
  30554. bottom: 31 / 1636
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(4, "meters"),
  30559. weight: math.unit(150, "kg"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/caledvwlch/back.svg",
  30563. extra: 1635 / 1565,
  30564. bottom: 27 / 1662
  30565. }
  30566. },
  30567. },
  30568. [
  30569. {
  30570. name: "\"Incognito\"",
  30571. height: math.unit(4, "meters")
  30572. },
  30573. {
  30574. name: "Small rampage",
  30575. height: math.unit(600, "meters")
  30576. },
  30577. {
  30578. name: "Mega",
  30579. height: math.unit(30, "km")
  30580. },
  30581. {
  30582. name: "Home-size",
  30583. height: math.unit(50, "km"),
  30584. default: true
  30585. },
  30586. {
  30587. name: "Giga",
  30588. height: math.unit(300, "km")
  30589. },
  30590. {
  30591. name: "Lounging",
  30592. height: math.unit(11000, "km")
  30593. },
  30594. {
  30595. name: "Planet snacking",
  30596. height: math.unit(2000000, "km")
  30597. },
  30598. ]
  30599. ))
  30600. characterMakers.push(() => makeCharacter(
  30601. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30602. {
  30603. front: {
  30604. height: math.unit(6, "feet"),
  30605. weight: math.unit(215, "lb"),
  30606. name: "Front",
  30607. image: {
  30608. source: "./media/characters/sapphire-svell/front.svg",
  30609. extra: 495 / 455,
  30610. bottom: 20 / 515
  30611. }
  30612. },
  30613. back: {
  30614. height: math.unit(6, "feet"),
  30615. weight: math.unit(216, "lb"),
  30616. name: "Back",
  30617. image: {
  30618. source: "./media/characters/sapphire-svell/back.svg",
  30619. extra: 497 / 477,
  30620. bottom: 7 / 504
  30621. }
  30622. },
  30623. maw: {
  30624. height: math.unit(1.57, "feet"),
  30625. name: "Maw",
  30626. image: {
  30627. source: "./media/characters/sapphire-svell/maw.svg"
  30628. }
  30629. },
  30630. foot: {
  30631. height: math.unit(1.07, "feet"),
  30632. name: "Foot",
  30633. image: {
  30634. source: "./media/characters/sapphire-svell/foot.svg"
  30635. }
  30636. },
  30637. toering: {
  30638. height: math.unit(1.7, "inch"),
  30639. name: "Toering",
  30640. image: {
  30641. source: "./media/characters/sapphire-svell/toering.svg"
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(300, "feet"),
  30649. default: true
  30650. },
  30651. {
  30652. name: "Augmented",
  30653. height: math.unit(1250, "feet")
  30654. },
  30655. {
  30656. name: "Unleashed",
  30657. height: math.unit(3000, "feet")
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30663. {
  30664. side: {
  30665. height: math.unit(2 + 3 / 12, "feet"),
  30666. weight: math.unit(110, "lb"),
  30667. name: "Side",
  30668. image: {
  30669. source: "./media/characters/glitch-flux/side.svg",
  30670. extra: 997 / 805,
  30671. bottom: 20 / 1017
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Normal",
  30678. height: math.unit(2 + 3 / 12, "feet"),
  30679. default: true
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30685. {
  30686. front: {
  30687. height: math.unit(4, "meters"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/mid/front.svg",
  30691. extra: 507 / 476,
  30692. bottom: 17 / 524
  30693. }
  30694. },
  30695. back: {
  30696. height: math.unit(4, "meters"),
  30697. name: "Back",
  30698. image: {
  30699. source: "./media/characters/mid/back.svg",
  30700. extra: 519 / 487,
  30701. bottom: 7 / 526
  30702. }
  30703. },
  30704. stuck: {
  30705. height: math.unit(2.2, "meters"),
  30706. name: "Stuck",
  30707. image: {
  30708. source: "./media/characters/mid/stuck.svg",
  30709. extra: 1951 / 1869,
  30710. bottom: 88 / 2039
  30711. }
  30712. }
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(4, "meters"),
  30718. default: true
  30719. },
  30720. {
  30721. name: "Big",
  30722. height: math.unit(10, "meters")
  30723. },
  30724. {
  30725. name: "Macro",
  30726. height: math.unit(800, "meters")
  30727. },
  30728. {
  30729. name: "Megamacro",
  30730. height: math.unit(100, "km")
  30731. },
  30732. {
  30733. name: "Overgrown",
  30734. height: math.unit(1, "parsec")
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(2.5, "meters"),
  30743. weight: math.unit(225, "kg"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/iris/front.svg",
  30747. extra: 3348 / 3251,
  30748. bottom: 205 / 3553
  30749. }
  30750. },
  30751. maw: {
  30752. height: math.unit(0.56, "meter"),
  30753. name: "Maw",
  30754. image: {
  30755. source: "./media/characters/iris/maw.svg"
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Mewter cat",
  30762. height: math.unit(1.2, "meters")
  30763. },
  30764. {
  30765. name: "Minimacro",
  30766. height: math.unit(2.5, "meters"),
  30767. default: true
  30768. },
  30769. {
  30770. name: "Macro",
  30771. height: math.unit(180, "meters")
  30772. },
  30773. {
  30774. name: "Megamacro",
  30775. height: math.unit(2746, "meters")
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(6, "feet"),
  30784. weight: math.unit(135, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/axel/front.svg",
  30788. extra: 908 / 908,
  30789. bottom: 58 / 966
  30790. }
  30791. },
  30792. side: {
  30793. height: math.unit(6, "feet"),
  30794. weight: math.unit(135, "lb"),
  30795. name: "Side",
  30796. image: {
  30797. source: "./media/characters/axel/side.svg",
  30798. extra: 958 / 958,
  30799. bottom: 11 / 969
  30800. }
  30801. },
  30802. back: {
  30803. height: math.unit(6, "feet"),
  30804. weight: math.unit(135, "lb"),
  30805. name: "Back",
  30806. image: {
  30807. source: "./media/characters/axel/back.svg",
  30808. extra: 887 / 887,
  30809. bottom: 34 / 921
  30810. }
  30811. },
  30812. head: {
  30813. height: math.unit(1.07, "feet"),
  30814. name: "Head",
  30815. image: {
  30816. source: "./media/characters/axel/head.svg"
  30817. }
  30818. },
  30819. beak: {
  30820. height: math.unit(1.4, "feet"),
  30821. name: "Beak",
  30822. image: {
  30823. source: "./media/characters/axel/beak.svg"
  30824. }
  30825. },
  30826. beakSide: {
  30827. height: math.unit(1.4, "feet"),
  30828. name: "Beak Side",
  30829. image: {
  30830. source: "./media/characters/axel/beak-side.svg"
  30831. }
  30832. },
  30833. sheath: {
  30834. height: math.unit(0.5, "feet"),
  30835. name: "Sheath",
  30836. image: {
  30837. source: "./media/characters/axel/sheath.svg"
  30838. }
  30839. },
  30840. dick: {
  30841. height: math.unit(0.98, "feet"),
  30842. name: "Dick",
  30843. image: {
  30844. source: "./media/characters/axel/dick.svg"
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Macro",
  30851. height: math.unit(68, "meters"),
  30852. default: true
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30858. {
  30859. front: {
  30860. height: math.unit(3.5, "meters"),
  30861. weight: math.unit(1200, "kg"),
  30862. name: "Front",
  30863. image: {
  30864. source: "./media/characters/joanna/front.svg",
  30865. extra: 1596 / 1488,
  30866. bottom: 29 / 1625
  30867. }
  30868. },
  30869. back: {
  30870. height: math.unit(3.5, "meters"),
  30871. weight: math.unit(1200, "kg"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/joanna/back.svg",
  30875. extra: 1594 / 1495,
  30876. bottom: 26 / 1620
  30877. }
  30878. },
  30879. frontShorts: {
  30880. height: math.unit(3.5, "meters"),
  30881. weight: math.unit(1200, "kg"),
  30882. name: "Front (Shorts)",
  30883. image: {
  30884. source: "./media/characters/joanna/front-shorts.svg",
  30885. extra: 1596 / 1488,
  30886. bottom: 29 / 1625
  30887. }
  30888. },
  30889. frontBiker: {
  30890. height: math.unit(3.5, "meters"),
  30891. weight: math.unit(1200, "kg"),
  30892. name: "Front (Biker)",
  30893. image: {
  30894. source: "./media/characters/joanna/front-biker.svg",
  30895. extra: 1596 / 1488,
  30896. bottom: 29 / 1625
  30897. }
  30898. },
  30899. backBiker: {
  30900. height: math.unit(3.5, "meters"),
  30901. weight: math.unit(1200, "kg"),
  30902. name: "Back (Biker)",
  30903. image: {
  30904. source: "./media/characters/joanna/back-biker.svg",
  30905. extra: 1594 / 1495,
  30906. bottom: 88 / 1682
  30907. }
  30908. },
  30909. bikeLeft: {
  30910. height: math.unit(2.4, "meters"),
  30911. weight: math.unit(1600, "kg"),
  30912. name: "Bike (Left)",
  30913. image: {
  30914. source: "./media/characters/joanna/bike-left.svg",
  30915. extra: 720 / 720,
  30916. bottom: 8 / 728
  30917. }
  30918. },
  30919. bikeRight: {
  30920. height: math.unit(2.4, "meters"),
  30921. weight: math.unit(1600, "kg"),
  30922. name: "Bike (Right)",
  30923. image: {
  30924. source: "./media/characters/joanna/bike-right.svg",
  30925. extra: 720 / 720,
  30926. bottom: 8 / 728
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Incognito",
  30933. height: math.unit(3.5, "meters")
  30934. },
  30935. {
  30936. name: "Casual Big",
  30937. height: math.unit(200, "meters")
  30938. },
  30939. {
  30940. name: "Macro",
  30941. height: math.unit(600, "meters")
  30942. },
  30943. {
  30944. name: "Original",
  30945. height: math.unit(20, "km"),
  30946. default: true
  30947. },
  30948. {
  30949. name: "Giga",
  30950. height: math.unit(400, "km")
  30951. },
  30952. {
  30953. name: "Lounging",
  30954. height: math.unit(1500, "km")
  30955. },
  30956. {
  30957. name: "Planetary",
  30958. height: math.unit(200000, "km")
  30959. },
  30960. ]
  30961. ))
  30962. characterMakers.push(() => makeCharacter(
  30963. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30964. {
  30965. front: {
  30966. height: math.unit(6, "feet"),
  30967. weight: math.unit(150, "lb"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/hugo-sigil/front.svg",
  30971. extra: 522 / 500,
  30972. bottom: 2 / 524
  30973. }
  30974. },
  30975. back: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Back",
  30979. image: {
  30980. source: "./media/characters/hugo-sigil/back.svg",
  30981. extra: 519 / 495,
  30982. bottom: 5 / 524
  30983. }
  30984. },
  30985. maw: {
  30986. height: math.unit(1.4, "feet"),
  30987. weight: math.unit(150, "lb"),
  30988. name: "Maw",
  30989. image: {
  30990. source: "./media/characters/hugo-sigil/maw.svg"
  30991. }
  30992. },
  30993. feet: {
  30994. height: math.unit(1.56, "feet"),
  30995. weight: math.unit(150, "lb"),
  30996. name: "Feet",
  30997. image: {
  30998. source: "./media/characters/hugo-sigil/feet.svg",
  30999. extra: 177 / 177,
  31000. bottom: 12 / 189
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Normal",
  31007. height: math.unit(6, "feet")
  31008. },
  31009. {
  31010. name: "Macro",
  31011. height: math.unit(200, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(6, "feet"),
  31021. weight: math.unit(150, "lb"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/peri/front.svg",
  31025. extra: 2354 / 2233,
  31026. bottom: 49 / 2403
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Really Small",
  31033. height: math.unit(1, "nm")
  31034. },
  31035. {
  31036. name: "Micro",
  31037. height: math.unit(4, "inches")
  31038. },
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(7, "inches"),
  31042. default: true
  31043. },
  31044. {
  31045. name: "Macro",
  31046. height: math.unit(400, "feet")
  31047. },
  31048. {
  31049. name: "Megamacro",
  31050. height: math.unit(100, "miles")
  31051. },
  31052. ]
  31053. ))
  31054. characterMakers.push(() => makeCharacter(
  31055. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31056. {
  31057. frontSlim: {
  31058. height: math.unit(7, "feet"),
  31059. name: "Front (Slim)",
  31060. image: {
  31061. source: "./media/characters/issilora/front-slim.svg",
  31062. extra: 529 / 449,
  31063. bottom: 53 / 582
  31064. }
  31065. },
  31066. sideSlim: {
  31067. height: math.unit(7, "feet"),
  31068. name: "Side (Slim)",
  31069. image: {
  31070. source: "./media/characters/issilora/side-slim.svg",
  31071. extra: 570 / 480,
  31072. bottom: 30 / 600
  31073. }
  31074. },
  31075. backSlim: {
  31076. height: math.unit(7, "feet"),
  31077. name: "Back (Slim)",
  31078. image: {
  31079. source: "./media/characters/issilora/back-slim.svg",
  31080. extra: 537 / 455,
  31081. bottom: 46 / 583
  31082. }
  31083. },
  31084. frontBuff: {
  31085. height: math.unit(7, "feet"),
  31086. name: "Front (Buff)",
  31087. image: {
  31088. source: "./media/characters/issilora/front-buff.svg",
  31089. extra: 2310 / 2035,
  31090. bottom: 335 / 2645
  31091. }
  31092. },
  31093. head: {
  31094. height: math.unit(1.94, "feet"),
  31095. name: "Head",
  31096. image: {
  31097. source: "./media/characters/issilora/head.svg"
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Minimum",
  31104. height: math.unit(7, "feet")
  31105. },
  31106. {
  31107. name: "Comfortable",
  31108. height: math.unit(17, "feet")
  31109. },
  31110. {
  31111. name: "Fun Size",
  31112. height: math.unit(47, "feet")
  31113. },
  31114. {
  31115. name: "Natural Macro",
  31116. height: math.unit(137, "feet"),
  31117. default: true
  31118. },
  31119. {
  31120. name: "Maximum Kaiju",
  31121. height: math.unit(397, "feet")
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31127. {
  31128. front: {
  31129. height: math.unit(50 + 9/12, "feet"),
  31130. weight: math.unit(32.8, "tons"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/irb'iiritaahn/front.svg",
  31134. extra: 1878/1826,
  31135. bottom: 326/2204
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(50 + 9/12, "feet"),
  31140. weight: math.unit(32.8, "tons"),
  31141. name: "Back",
  31142. image: {
  31143. source: "./media/characters/irb'iiritaahn/back.svg",
  31144. extra: 2052/2018,
  31145. bottom: 152/2204
  31146. }
  31147. },
  31148. head: {
  31149. height: math.unit(12.86, "feet"),
  31150. name: "Head",
  31151. image: {
  31152. source: "./media/characters/irb'iiritaahn/head.svg"
  31153. }
  31154. },
  31155. maw: {
  31156. height: math.unit(9.66, "feet"),
  31157. name: "Maw",
  31158. image: {
  31159. source: "./media/characters/irb'iiritaahn/maw.svg"
  31160. }
  31161. },
  31162. frontDick: {
  31163. height: math.unit(8.78461, "feet"),
  31164. name: "Front Dick",
  31165. image: {
  31166. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31167. }
  31168. },
  31169. rearDick: {
  31170. height: math.unit(8.78461, "feet"),
  31171. name: "Rear Dick",
  31172. image: {
  31173. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31174. }
  31175. },
  31176. rearDickUnfolded: {
  31177. height: math.unit(8.78, "feet"),
  31178. name: "Rear Dick (Unfolded)",
  31179. image: {
  31180. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31181. }
  31182. },
  31183. wings: {
  31184. height: math.unit(43, "feet"),
  31185. name: "Wings",
  31186. image: {
  31187. source: "./media/characters/irb'iiritaahn/wings.svg"
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Macro",
  31194. height: math.unit(50 + 9/12, "feet"),
  31195. default: true
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(205, "cm"),
  31204. weight: math.unit(102, "kg"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/irbisgreif/front.svg",
  31208. extra: 785/706,
  31209. bottom: 13/798
  31210. }
  31211. },
  31212. back: {
  31213. height: math.unit(205, "cm"),
  31214. weight: math.unit(102, "kg"),
  31215. name: "Back",
  31216. image: {
  31217. source: "./media/characters/irbisgreif/back.svg",
  31218. extra: 713/701,
  31219. bottom: 26/739
  31220. }
  31221. },
  31222. frontDressed: {
  31223. height: math.unit(216, "cm"),
  31224. weight: math.unit(102, "kg"),
  31225. name: "Front-dressed",
  31226. image: {
  31227. source: "./media/characters/irbisgreif/front-dressed.svg",
  31228. extra: 902/776,
  31229. bottom: 14/916
  31230. }
  31231. },
  31232. sideDressed: {
  31233. height: math.unit(195, "cm"),
  31234. weight: math.unit(102, "kg"),
  31235. name: "Side-dressed",
  31236. image: {
  31237. source: "./media/characters/irbisgreif/side-dressed.svg",
  31238. extra: 788/688,
  31239. bottom: 21/809
  31240. }
  31241. },
  31242. backDressed: {
  31243. height: math.unit(216, "cm"),
  31244. weight: math.unit(102, "kg"),
  31245. name: "Back-dressed",
  31246. image: {
  31247. source: "./media/characters/irbisgreif/back-dressed.svg",
  31248. extra: 901/783,
  31249. bottom: 10/911
  31250. }
  31251. },
  31252. dick: {
  31253. height: math.unit(0.49, "feet"),
  31254. name: "Dick",
  31255. image: {
  31256. source: "./media/characters/irbisgreif/dick.svg"
  31257. }
  31258. },
  31259. wingTop: {
  31260. height: math.unit(1.93 , "feet"),
  31261. name: "Wing-top",
  31262. image: {
  31263. source: "./media/characters/irbisgreif/wing-top.svg"
  31264. }
  31265. },
  31266. wingBottom: {
  31267. height: math.unit(1.93 , "feet"),
  31268. name: "Wing-bottom",
  31269. image: {
  31270. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31271. }
  31272. },
  31273. },
  31274. [
  31275. {
  31276. name: "Normal",
  31277. height: math.unit(216, "cm"),
  31278. default: true
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(6, "feet"),
  31287. weight: math.unit(150, "lb"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/pride/front.svg",
  31291. extra: 1299/1230,
  31292. bottom: 18/1317
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Normal",
  31299. height: math.unit(7, "feet")
  31300. },
  31301. {
  31302. name: "Mini-macro",
  31303. height: math.unit(11, "feet")
  31304. },
  31305. {
  31306. name: "Macro",
  31307. height: math.unit(15, "meters"),
  31308. default: true
  31309. },
  31310. {
  31311. name: "Macro+",
  31312. height: math.unit(40, "meters")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31318. {
  31319. front: {
  31320. height: math.unit(4 + 2 / 12, "feet"),
  31321. weight: math.unit(95, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/vaelophis-nyx/front.svg",
  31325. extra: 2532/2330,
  31326. bottom: 0/2532
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(4 + 2 / 12, "feet"),
  31331. weight: math.unit(95, "lb"),
  31332. name: "Back",
  31333. image: {
  31334. source: "./media/characters/vaelophis-nyx/back.svg",
  31335. extra: 2484/2361,
  31336. bottom: 0/2484
  31337. }
  31338. },
  31339. feralSide: {
  31340. height: math.unit(2 + 1/12, "feet"),
  31341. weight: math.unit(20, "lb"),
  31342. name: "Feral (Side)",
  31343. image: {
  31344. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31345. extra: 1721/1581,
  31346. bottom: 70/1791
  31347. }
  31348. },
  31349. feralLazing: {
  31350. height: math.unit(1.08, "feet"),
  31351. weight: math.unit(20, "lb"),
  31352. name: "Feral (Lazing)",
  31353. image: {
  31354. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31355. extra: 822/822,
  31356. bottom: 248/1070
  31357. }
  31358. },
  31359. ear: {
  31360. height: math.unit(0.416, "feet"),
  31361. name: "Ear",
  31362. image: {
  31363. source: "./media/characters/vaelophis-nyx/ear.svg"
  31364. }
  31365. },
  31366. eye: {
  31367. height: math.unit(0.0748, "feet"),
  31368. name: "Eye",
  31369. image: {
  31370. source: "./media/characters/vaelophis-nyx/eye.svg"
  31371. }
  31372. },
  31373. mouth: {
  31374. height: math.unit(0.378, "feet"),
  31375. name: "Mouth",
  31376. image: {
  31377. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31378. }
  31379. },
  31380. spade: {
  31381. height: math.unit(0.55, "feet"),
  31382. name: "Spade",
  31383. image: {
  31384. source: "./media/characters/vaelophis-nyx/spade.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(4 + 2/12, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31398. {
  31399. front: {
  31400. height: math.unit(7, "feet"),
  31401. weight: math.unit(231, "lb"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/flux/front.svg",
  31405. extra: 919/871,
  31406. bottom: 0/919
  31407. }
  31408. },
  31409. back: {
  31410. height: math.unit(7, "feet"),
  31411. weight: math.unit(231, "lb"),
  31412. name: "Back",
  31413. image: {
  31414. source: "./media/characters/flux/back.svg",
  31415. extra: 1040/992,
  31416. bottom: 0/1040
  31417. }
  31418. },
  31419. frontDressed: {
  31420. height: math.unit(7, "feet"),
  31421. weight: math.unit(231, "lb"),
  31422. name: "Front (Dressed)",
  31423. image: {
  31424. source: "./media/characters/flux/front-dressed.svg",
  31425. extra: 919/871,
  31426. bottom: 0/919
  31427. }
  31428. },
  31429. feralSide: {
  31430. height: math.unit(5, "feet"),
  31431. weight: math.unit(150, "lb"),
  31432. name: "Feral (Side)",
  31433. image: {
  31434. source: "./media/characters/flux/feral-side.svg",
  31435. extra: 598/528,
  31436. bottom: 28/626
  31437. }
  31438. },
  31439. head: {
  31440. height: math.unit(1.585, "feet"),
  31441. name: "Head",
  31442. image: {
  31443. source: "./media/characters/flux/head.svg"
  31444. }
  31445. },
  31446. headSide: {
  31447. height: math.unit(1.74, "feet"),
  31448. name: "Head (Side)",
  31449. image: {
  31450. source: "./media/characters/flux/head-side.svg"
  31451. }
  31452. },
  31453. headSideFire: {
  31454. height: math.unit(1.76, "feet"),
  31455. name: "Head (Side, Fire)",
  31456. image: {
  31457. source: "./media/characters/flux/head-side-fire.svg"
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(7, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(9, "feet"),
  31474. weight: math.unit(1012, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/ulfra-lupae/front.svg",
  31478. extra: 1083/1011,
  31479. bottom: 67/1150
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Micro",
  31486. height: math.unit(6, "inches")
  31487. },
  31488. {
  31489. name: "Socializing",
  31490. height: math.unit(6 + 5/12, "feet")
  31491. },
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(9, "feet"),
  31495. default: true
  31496. },
  31497. {
  31498. name: "Macro",
  31499. height: math.unit(150, "feet")
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31505. {
  31506. front: {
  31507. height: math.unit(5 + 2/12, "feet"),
  31508. weight: math.unit(120, "lb"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/timber/front.svg",
  31512. extra: 2814/2705,
  31513. bottom: 181/2995
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(5 + 2/12, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(5 + 7/12, "feet"),
  31530. weight: math.unit(220, "lb"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/nicki/front.svg",
  31534. extra: 453/419,
  31535. bottom: 7/460
  31536. }
  31537. },
  31538. frontAlt: {
  31539. height: math.unit(5 + 7/12, "feet"),
  31540. weight: math.unit(220, "lb"),
  31541. name: "Front-alt",
  31542. image: {
  31543. source: "./media/characters/nicki/front-alt.svg",
  31544. extra: 435/411,
  31545. bottom: 12/447
  31546. }
  31547. },
  31548. back: {
  31549. height: math.unit(5 + 7/12, "feet"),
  31550. weight: math.unit(220, "lb"),
  31551. name: "Back",
  31552. image: {
  31553. source: "./media/characters/nicki/back.svg",
  31554. extra: 440/413,
  31555. bottom: 19/459
  31556. }
  31557. },
  31558. taur: {
  31559. height: math.unit(7 + 6/12, "feet"),
  31560. weight: math.unit(700, "lb"),
  31561. name: "Taur",
  31562. image: {
  31563. source: "./media/characters/nicki/taur.svg",
  31564. extra: 975/773,
  31565. bottom: 0/975
  31566. }
  31567. },
  31568. frontNsfw: {
  31569. height: math.unit(5 + 7/12, "feet"),
  31570. weight: math.unit(220, "lb"),
  31571. name: "Front (NSFW)",
  31572. image: {
  31573. source: "./media/characters/nicki/front-nsfw.svg",
  31574. extra: 453/419,
  31575. bottom: 7/460
  31576. }
  31577. },
  31578. frontNsfwAlt: {
  31579. height: math.unit(5 + 7/12, "feet"),
  31580. weight: math.unit(220, "lb"),
  31581. name: "Front (Alt, NSFW)",
  31582. image: {
  31583. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31584. extra: 435/411,
  31585. bottom: 12/447
  31586. }
  31587. },
  31588. backNsfw: {
  31589. height: math.unit(5 + 7/12, "feet"),
  31590. weight: math.unit(220, "lb"),
  31591. name: "Back (NSFW)",
  31592. image: {
  31593. source: "./media/characters/nicki/back-nsfw.svg",
  31594. extra: 440/413,
  31595. bottom: 19/459
  31596. }
  31597. },
  31598. head: {
  31599. height: math.unit(2.1, "feet"),
  31600. name: "Head",
  31601. image: {
  31602. source: "./media/characters/nicki/head.svg"
  31603. }
  31604. },
  31605. paw: {
  31606. height: math.unit(1.88, "feet"),
  31607. name: "Paw",
  31608. image: {
  31609. source: "./media/characters/nicki/paw.svg"
  31610. }
  31611. },
  31612. },
  31613. [
  31614. {
  31615. name: "Normal",
  31616. height: math.unit(5 + 7/12, "feet"),
  31617. default: true
  31618. },
  31619. ]
  31620. ))
  31621. characterMakers.push(() => makeCharacter(
  31622. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31623. {
  31624. front: {
  31625. height: math.unit(7 + 10/12, "feet"),
  31626. weight: math.unit(3.5, "tons"),
  31627. name: "Front",
  31628. image: {
  31629. source: "./media/characters/lee/front.svg",
  31630. extra: 1773/1615,
  31631. bottom: 86/1859
  31632. }
  31633. },
  31634. hand: {
  31635. height: math.unit(1.78, "feet"),
  31636. name: "Hand",
  31637. image: {
  31638. source: "./media/characters/lee/hand.svg"
  31639. }
  31640. },
  31641. maw: {
  31642. height: math.unit(1.18, "feet"),
  31643. name: "Maw",
  31644. image: {
  31645. source: "./media/characters/lee/maw.svg"
  31646. }
  31647. },
  31648. },
  31649. [
  31650. {
  31651. name: "Normal",
  31652. height: math.unit(7 + 10/12, "feet"),
  31653. default: true
  31654. },
  31655. ]
  31656. ))
  31657. characterMakers.push(() => makeCharacter(
  31658. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31659. {
  31660. front: {
  31661. height: math.unit(9, "feet"),
  31662. name: "Front",
  31663. image: {
  31664. source: "./media/characters/guti/front.svg",
  31665. extra: 4551/4355,
  31666. bottom: 123/4674
  31667. }
  31668. },
  31669. tongue: {
  31670. height: math.unit(1, "feet"),
  31671. name: "Tongue",
  31672. image: {
  31673. source: "./media/characters/guti/tongue.svg"
  31674. }
  31675. },
  31676. paw: {
  31677. height: math.unit(1.18, "feet"),
  31678. name: "Paw",
  31679. image: {
  31680. source: "./media/characters/guti/paw.svg"
  31681. }
  31682. },
  31683. },
  31684. [
  31685. {
  31686. name: "Normal",
  31687. height: math.unit(9, "feet"),
  31688. default: true
  31689. },
  31690. ]
  31691. ))
  31692. characterMakers.push(() => makeCharacter(
  31693. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31694. {
  31695. side: {
  31696. height: math.unit(5, "meters"),
  31697. name: "Side",
  31698. image: {
  31699. source: "./media/characters/vesper/side.svg",
  31700. extra: 1605/1518,
  31701. bottom: 0/1605
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Small",
  31708. height: math.unit(5, "meters")
  31709. },
  31710. {
  31711. name: "Sage",
  31712. height: math.unit(100, "meters"),
  31713. default: true
  31714. },
  31715. {
  31716. name: "Fun Size",
  31717. height: math.unit(600, "meters")
  31718. },
  31719. {
  31720. name: "Goddess",
  31721. height: math.unit(20000, "km")
  31722. },
  31723. {
  31724. name: "Maximum",
  31725. height: math.unit(5, "galaxies")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(6 + 3/12, "feet"),
  31734. weight: math.unit(190, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/gawain/front.svg",
  31738. extra: 2222/2139,
  31739. bottom: 90/2312
  31740. }
  31741. },
  31742. back: {
  31743. height: math.unit(6 + 3/12, "feet"),
  31744. weight: math.unit(190, "lb"),
  31745. name: "Back",
  31746. image: {
  31747. source: "./media/characters/gawain/back.svg",
  31748. extra: 2199/2111,
  31749. bottom: 73/2272
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(6 + 3/12, "feet"),
  31757. default: true
  31758. },
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31763. {
  31764. side: {
  31765. height: math.unit(3.5, "meters"),
  31766. weight: math.unit(16000, "lb"),
  31767. name: "Side",
  31768. image: {
  31769. source: "./media/characters/dascalti/side.svg",
  31770. extra: 392/273,
  31771. bottom: 47/439
  31772. }
  31773. },
  31774. breath: {
  31775. height: math.unit(7.4, "feet"),
  31776. name: "Breath",
  31777. image: {
  31778. source: "./media/characters/dascalti/breath.svg"
  31779. }
  31780. },
  31781. fed: {
  31782. height: math.unit(3.6, "meters"),
  31783. weight: math.unit(16000, "lb"),
  31784. name: "Fed",
  31785. image: {
  31786. source: "./media/characters/dascalti/fed.svg",
  31787. extra: 1419/820,
  31788. bottom: 95/1514
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(3.5, "meters"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(3 + 5/12, "feet"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/mauve/front.svg",
  31808. extra: 1126/1033,
  31809. bottom: 65/1191
  31810. }
  31811. },
  31812. side: {
  31813. height: math.unit(3 + 5/12, "feet"),
  31814. name: "Side",
  31815. image: {
  31816. source: "./media/characters/mauve/side.svg",
  31817. extra: 1089/1001,
  31818. bottom: 29/1118
  31819. }
  31820. },
  31821. back: {
  31822. height: math.unit(3 + 5/12, "feet"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/mauve/back.svg",
  31826. extra: 1173/1053,
  31827. bottom: 109/1282
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(3 + 5/12, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31841. {
  31842. front: {
  31843. height: math.unit(6 + 3/12, "feet"),
  31844. weight: math.unit(430, "lb"),
  31845. name: "Front",
  31846. image: {
  31847. source: "./media/characters/carlos/front.svg",
  31848. extra: 1964/1913,
  31849. bottom: 70/2034
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(6 + 3/12, "feet"),
  31857. default: true
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31863. {
  31864. back: {
  31865. height: math.unit(5 + 10/12, "feet"),
  31866. weight: math.unit(200, "lb"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/jax/back.svg",
  31870. extra: 764/739,
  31871. bottom: 25/789
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(5 + 10/12, "feet"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(8, "feet"),
  31888. weight: math.unit(250, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/eikthynir/front.svg",
  31892. extra: 1332/1166,
  31893. bottom: 82/1414
  31894. }
  31895. },
  31896. back: {
  31897. height: math.unit(8, "feet"),
  31898. weight: math.unit(250, "lb"),
  31899. name: "Back",
  31900. image: {
  31901. source: "./media/characters/eikthynir/back.svg",
  31902. extra: 1342/1190,
  31903. bottom: 19/1361
  31904. }
  31905. },
  31906. dick: {
  31907. height: math.unit(2.35, "feet"),
  31908. name: "Dick",
  31909. image: {
  31910. source: "./media/characters/eikthynir/dick.svg"
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Normal",
  31917. height: math.unit(8, "feet"),
  31918. default: true
  31919. },
  31920. ]
  31921. ))
  31922. characterMakers.push(() => makeCharacter(
  31923. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31924. {
  31925. front: {
  31926. height: math.unit(99, "meters"),
  31927. weight: math.unit(13000, "tons"),
  31928. name: "Front",
  31929. image: {
  31930. source: "./media/characters/zlmos/front.svg",
  31931. extra: 2202/1992,
  31932. bottom: 315/2517
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Macro",
  31939. height: math.unit(99, "meters"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(6 + 5/12, "feet"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/purri/front.svg",
  31952. extra: 1698/1610,
  31953. bottom: 32/1730
  31954. }
  31955. },
  31956. frontAlt: {
  31957. height: math.unit(6 + 5/12, "feet"),
  31958. name: "Front (Alt)",
  31959. image: {
  31960. source: "./media/characters/purri/front-alt.svg",
  31961. extra: 450/420,
  31962. bottom: 26/476
  31963. }
  31964. },
  31965. boots: {
  31966. height: math.unit(5.5, "feet"),
  31967. name: "Boots",
  31968. image: {
  31969. source: "./media/characters/purri/boots.svg",
  31970. extra: 905/853,
  31971. bottom: 18/923
  31972. }
  31973. },
  31974. lying: {
  31975. height: math.unit(2, "feet"),
  31976. name: "Lying",
  31977. image: {
  31978. source: "./media/characters/purri/lying.svg",
  31979. extra: 940/843,
  31980. bottom: 146/1086
  31981. }
  31982. },
  31983. devious: {
  31984. height: math.unit(1.77, "feet"),
  31985. name: "Devious",
  31986. image: {
  31987. source: "./media/characters/purri/devious.svg",
  31988. extra: 1440/1155,
  31989. bottom: 147/1587
  31990. }
  31991. },
  31992. bean: {
  31993. height: math.unit(1.94, "feet"),
  31994. name: "Bean",
  31995. image: {
  31996. source: "./media/characters/purri/bean.svg"
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Micro",
  32003. height: math.unit(1, "mm")
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(6 + 5/12, "feet"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Macro :3c",
  32012. height: math.unit(2, "miles")
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(6 + 2/12, "feet"),
  32021. weight: math.unit(250, "lb"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/moonlight/front.svg",
  32025. extra: 1044/908,
  32026. bottom: 56/1100
  32027. }
  32028. },
  32029. feral: {
  32030. height: math.unit(3 + 1/12, "feet"),
  32031. weight: math.unit(50, "kg"),
  32032. name: "Feral",
  32033. image: {
  32034. source: "./media/characters/moonlight/feral.svg",
  32035. extra: 3705/2791,
  32036. bottom: 145/3850
  32037. }
  32038. },
  32039. paw: {
  32040. height: math.unit(1, "feet"),
  32041. name: "Paw",
  32042. image: {
  32043. source: "./media/characters/moonlight/paw.svg"
  32044. }
  32045. },
  32046. paws: {
  32047. height: math.unit(0.98, "feet"),
  32048. name: "Paws",
  32049. image: {
  32050. source: "./media/characters/moonlight/paws.svg",
  32051. extra: 939/939,
  32052. bottom: 50/989
  32053. }
  32054. },
  32055. mouth: {
  32056. height: math.unit(0.48, "feet"),
  32057. name: "Mouth",
  32058. image: {
  32059. source: "./media/characters/moonlight/mouth.svg"
  32060. }
  32061. },
  32062. dick: {
  32063. height: math.unit(1.46, "feet"),
  32064. name: "Dick",
  32065. image: {
  32066. source: "./media/characters/moonlight/dick.svg"
  32067. }
  32068. },
  32069. },
  32070. [
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(6 + 2/12, "feet"),
  32074. default: true
  32075. },
  32076. {
  32077. name: "Macro",
  32078. height: math.unit(300, "feet")
  32079. },
  32080. {
  32081. name: "Macro+",
  32082. height: math.unit(1, "mile")
  32083. },
  32084. {
  32085. name: "Mt. Moon",
  32086. height: math.unit(5, "miles")
  32087. },
  32088. {
  32089. name: "Megamacro",
  32090. height: math.unit(15, "miles")
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32096. {
  32097. back: {
  32098. height: math.unit(6, "feet"),
  32099. weight: math.unit(150, "lb"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/sylen/back.svg",
  32103. extra: 1335/1273,
  32104. bottom: 107/1442
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(5 + 5/12, "feet")
  32112. },
  32113. {
  32114. name: "Megamacro",
  32115. height: math.unit(3, "miles"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(6, "feet"),
  32125. weight: math.unit(190, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/huttser/front.svg",
  32129. extra: 1152/1058,
  32130. bottom: 23/1175
  32131. }
  32132. },
  32133. side: {
  32134. height: math.unit(6, "feet"),
  32135. weight: math.unit(190, "lb"),
  32136. name: "Side",
  32137. image: {
  32138. source: "./media/characters/huttser/side.svg",
  32139. extra: 1174/1065,
  32140. bottom: 18/1192
  32141. }
  32142. },
  32143. back: {
  32144. height: math.unit(6, "feet"),
  32145. weight: math.unit(190, "lb"),
  32146. name: "Back",
  32147. image: {
  32148. source: "./media/characters/huttser/back.svg",
  32149. extra: 1158/1056,
  32150. bottom: 12/1170
  32151. }
  32152. },
  32153. },
  32154. [
  32155. ]
  32156. ))
  32157. characterMakers.push(() => makeCharacter(
  32158. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32159. {
  32160. side: {
  32161. height: math.unit(12 + 9/12, "feet"),
  32162. weight: math.unit(15000, "lb"),
  32163. name: "Side",
  32164. image: {
  32165. source: "./media/characters/faan/side.svg",
  32166. extra: 2747/2697,
  32167. bottom: 0/2747
  32168. }
  32169. },
  32170. front: {
  32171. height: math.unit(12 + 9/12, "feet"),
  32172. weight: math.unit(15000, "lb"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/faan/front.svg",
  32176. extra: 607/571,
  32177. bottom: 24/631
  32178. }
  32179. },
  32180. head: {
  32181. height: math.unit(2.85, "feet"),
  32182. name: "Head",
  32183. image: {
  32184. source: "./media/characters/faan/head.svg"
  32185. }
  32186. },
  32187. headAlt: {
  32188. height: math.unit(3.13, "feet"),
  32189. name: "Head-alt",
  32190. image: {
  32191. source: "./media/characters/faan/head-alt.svg"
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(12 + 9/12, "feet"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(6, "feet"),
  32208. weight: math.unit(300, "lb"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/tanio/front.svg",
  32212. extra: 711/673,
  32213. bottom: 25/736
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(6, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(3, "inches"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/noboru/front.svg",
  32233. extra: 1039/932,
  32234. bottom: 18/1057
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Micro",
  32241. height: math.unit(3, "inches"),
  32242. default: true
  32243. },
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32248. {
  32249. front: {
  32250. height: math.unit(1.85, "meters"),
  32251. weight: math.unit(80, "kg"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/daniel-barrett/front.svg",
  32255. extra: 355/337,
  32256. bottom: 9/364
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Pico",
  32263. height: math.unit(0.0433, "mm")
  32264. },
  32265. {
  32266. name: "Nano",
  32267. height: math.unit(1.5, "mm")
  32268. },
  32269. {
  32270. name: "Micro",
  32271. height: math.unit(5.3, "cm"),
  32272. default: true
  32273. },
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(1.85, "meters")
  32277. },
  32278. {
  32279. name: "Macro",
  32280. height: math.unit(64.7, "meters")
  32281. },
  32282. {
  32283. name: "Megamacro",
  32284. height: math.unit(2.26, "km")
  32285. },
  32286. {
  32287. name: "Gigamacro",
  32288. height: math.unit(79, "km")
  32289. },
  32290. {
  32291. name: "Teramacro",
  32292. height: math.unit(2765, "km")
  32293. },
  32294. {
  32295. name: "Petamacro",
  32296. height: math.unit(96678, "km")
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(30, "meters"),
  32305. weight: math.unit(400, "tons"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/zeel/front.svg",
  32309. extra: 2599/2599,
  32310. bottom: 226/2825
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Macro",
  32317. height: math.unit(30, "meters"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32324. {
  32325. front: {
  32326. height: math.unit(6 + 7/12, "feet"),
  32327. weight: math.unit(210, "lb"),
  32328. name: "Front",
  32329. image: {
  32330. source: "./media/characters/tarn/front.svg",
  32331. extra: 3517/3220,
  32332. bottom: 91/3608
  32333. }
  32334. },
  32335. back: {
  32336. height: math.unit(6 + 7/12, "feet"),
  32337. weight: math.unit(210, "lb"),
  32338. name: "Back",
  32339. image: {
  32340. source: "./media/characters/tarn/back.svg",
  32341. extra: 3566/3241,
  32342. bottom: 34/3600
  32343. }
  32344. },
  32345. dick: {
  32346. height: math.unit(1.65, "feet"),
  32347. name: "Dick",
  32348. image: {
  32349. source: "./media/characters/tarn/dick.svg"
  32350. }
  32351. },
  32352. paw: {
  32353. height: math.unit(1.80, "feet"),
  32354. name: "Paw",
  32355. image: {
  32356. source: "./media/characters/tarn/paw.svg"
  32357. }
  32358. },
  32359. tongue: {
  32360. height: math.unit(0.97, "feet"),
  32361. name: "Tongue",
  32362. image: {
  32363. source: "./media/characters/tarn/tongue.svg"
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Micro",
  32370. height: math.unit(4, "inches")
  32371. },
  32372. {
  32373. name: "Normal",
  32374. height: math.unit(6 + 7/12, "feet"),
  32375. default: true
  32376. },
  32377. {
  32378. name: "Macro",
  32379. height: math.unit(300, "feet")
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32385. {
  32386. front: {
  32387. height: math.unit(5 + 7/12, "feet"),
  32388. weight: math.unit(80, "kg"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32392. extra: 3023/2865,
  32393. bottom: 33/3056
  32394. }
  32395. },
  32396. back: {
  32397. height: math.unit(5 + 7/12, "feet"),
  32398. weight: math.unit(80, "kg"),
  32399. name: "Back",
  32400. image: {
  32401. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32402. extra: 3020/2886,
  32403. bottom: 30/3050
  32404. }
  32405. },
  32406. dick: {
  32407. height: math.unit(0.98, "feet"),
  32408. name: "Dick",
  32409. image: {
  32410. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32411. }
  32412. },
  32413. anatomy: {
  32414. height: math.unit(2.86, "feet"),
  32415. name: "Anatomy",
  32416. image: {
  32417. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Really Small",
  32424. height: math.unit(2, "inches")
  32425. },
  32426. {
  32427. name: "Micro",
  32428. height: math.unit(5.583, "inches")
  32429. },
  32430. {
  32431. name: "Normal",
  32432. height: math.unit(5 + 7/12, "feet"),
  32433. default: true
  32434. },
  32435. {
  32436. name: "Macro",
  32437. height: math.unit(67, "feet")
  32438. },
  32439. {
  32440. name: "Megamacro",
  32441. height: math.unit(134, "feet")
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(9, "feet"),
  32450. weight: math.unit(120, "lb"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/sally/front.svg",
  32454. extra: 1506/1349,
  32455. bottom: 66/1572
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(9, "feet"),
  32463. default: true
  32464. },
  32465. ]
  32466. ))
  32467. characterMakers.push(() => makeCharacter(
  32468. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32469. {
  32470. front: {
  32471. height: math.unit(8, "feet"),
  32472. weight: math.unit(900, "lb"),
  32473. name: "Front",
  32474. image: {
  32475. source: "./media/characters/owen/front.svg",
  32476. extra: 1761/1657,
  32477. bottom: 74/1835
  32478. }
  32479. },
  32480. side: {
  32481. height: math.unit(8, "feet"),
  32482. weight: math.unit(900, "lb"),
  32483. name: "Side",
  32484. image: {
  32485. source: "./media/characters/owen/side.svg",
  32486. extra: 1797/1734,
  32487. bottom: 30/1827
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(8, "feet"),
  32492. weight: math.unit(900, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/owen/back.svg",
  32496. extra: 1796/1706,
  32497. bottom: 59/1855
  32498. }
  32499. },
  32500. maw: {
  32501. height: math.unit(1.76, "feet"),
  32502. name: "Maw",
  32503. image: {
  32504. source: "./media/characters/owen/maw.svg"
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Normal",
  32511. height: math.unit(8, "feet"),
  32512. default: true
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32518. {
  32519. front: {
  32520. height: math.unit(4, "feet"),
  32521. weight: math.unit(400, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/ryth/front.svg",
  32525. extra: 1920/1748,
  32526. bottom: 42/1962
  32527. }
  32528. },
  32529. back: {
  32530. height: math.unit(4, "feet"),
  32531. weight: math.unit(400, "lb"),
  32532. name: "Back",
  32533. image: {
  32534. source: "./media/characters/ryth/back.svg",
  32535. extra: 1897/1690,
  32536. bottom: 89/1986
  32537. }
  32538. },
  32539. mouth: {
  32540. height: math.unit(1.39, "feet"),
  32541. name: "Mouth",
  32542. image: {
  32543. source: "./media/characters/ryth/mouth.svg"
  32544. }
  32545. },
  32546. tailmaw: {
  32547. height: math.unit(1.23, "feet"),
  32548. name: "Tailmaw",
  32549. image: {
  32550. source: "./media/characters/ryth/tailmaw.svg"
  32551. }
  32552. },
  32553. goia: {
  32554. height: math.unit(4, "meters"),
  32555. weight: math.unit(10800, "lb"),
  32556. name: "Goia",
  32557. image: {
  32558. source: "./media/characters/ryth/goia.svg",
  32559. extra: 745/640,
  32560. bottom: 107/852
  32561. }
  32562. },
  32563. goiaFront: {
  32564. height: math.unit(4, "meters"),
  32565. weight: math.unit(10800, "lb"),
  32566. name: "Goia (Front)",
  32567. image: {
  32568. source: "./media/characters/ryth/goia-front.svg",
  32569. extra: 750/586,
  32570. bottom: 114/864
  32571. }
  32572. },
  32573. goiaMaw: {
  32574. height: math.unit(5.55, "feet"),
  32575. name: "Goia Maw",
  32576. image: {
  32577. source: "./media/characters/ryth/goia-maw.svg"
  32578. }
  32579. },
  32580. goiaForepaw: {
  32581. height: math.unit(3.5, "feet"),
  32582. name: "Goia Forepaw",
  32583. image: {
  32584. source: "./media/characters/ryth/goia-forepaw.svg"
  32585. }
  32586. },
  32587. goiaHindpaw: {
  32588. height: math.unit(5.55, "feet"),
  32589. name: "Goia Hindpaw",
  32590. image: {
  32591. source: "./media/characters/ryth/goia-hindpaw.svg"
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(4, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(7, "feet"),
  32608. weight: math.unit(180, "lb"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/necrolance/front.svg",
  32612. extra: 1062/947,
  32613. bottom: 41/1103
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(7, "feet"),
  32618. weight: math.unit(180, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/necrolance/back.svg",
  32622. extra: 1045/984,
  32623. bottom: 14/1059
  32624. }
  32625. },
  32626. wing: {
  32627. height: math.unit(2.67, "feet"),
  32628. name: "Wing",
  32629. image: {
  32630. source: "./media/characters/necrolance/wing.svg"
  32631. }
  32632. },
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(7, "feet"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32644. {
  32645. front: {
  32646. height: math.unit(76, "meters"),
  32647. weight: math.unit(30000, "tons"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/tyler/front.svg",
  32651. extra: 1640/1640,
  32652. bottom: 114/1754
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Macro",
  32659. height: math.unit(76, "meters"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32666. {
  32667. front: {
  32668. height: math.unit(4 + 11/12, "feet"),
  32669. weight: math.unit(132, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/icey/front.svg",
  32673. extra: 2750/2550,
  32674. bottom: 33/2783
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(4 + 11/12, "feet"),
  32679. weight: math.unit(132, "lb"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/icey/back.svg",
  32683. extra: 2624/2481,
  32684. bottom: 35/2659
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(4 + 11/12, "feet"),
  32692. default: true
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(100, "feet"),
  32701. weight: math.unit(0, "lb"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/smile/front.svg",
  32705. extra: 2983/2912,
  32706. bottom: 162/3145
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(100, "feet"),
  32711. weight: math.unit(0, "lb"),
  32712. name: "Back",
  32713. image: {
  32714. source: "./media/characters/smile/back.svg",
  32715. extra: 3143/3031,
  32716. bottom: 91/3234
  32717. }
  32718. },
  32719. head: {
  32720. height: math.unit(26.3, "feet"),
  32721. weight: math.unit(0, "lb"),
  32722. name: "Head",
  32723. image: {
  32724. source: "./media/characters/smile/head.svg"
  32725. }
  32726. },
  32727. collar: {
  32728. height: math.unit(5.3, "feet"),
  32729. weight: math.unit(0, "lb"),
  32730. name: "Collar",
  32731. image: {
  32732. source: "./media/characters/smile/collar.svg"
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Macro",
  32739. height: math.unit(100, "feet"),
  32740. default: true
  32741. },
  32742. ]
  32743. ))
  32744. characterMakers.push(() => makeCharacter(
  32745. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32746. {
  32747. dragon: {
  32748. height: math.unit(26, "feet"),
  32749. weight: math.unit(36, "tons"),
  32750. name: "Dragon",
  32751. image: {
  32752. source: "./media/characters/arimphae/dragon.svg",
  32753. extra: 1574/983,
  32754. bottom: 357/1931
  32755. }
  32756. },
  32757. drake: {
  32758. height: math.unit(9, "feet"),
  32759. weight: math.unit(1.5, "tons"),
  32760. name: "Drake",
  32761. image: {
  32762. source: "./media/characters/arimphae/drake.svg",
  32763. extra: 1120/925,
  32764. bottom: 435/1555
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Small",
  32771. height: math.unit(26*5/9, "feet")
  32772. },
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(26, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(8 + 9/12, "feet"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/xander/front.svg",
  32788. extra: 1237/974,
  32789. bottom: 94/1331
  32790. }
  32791. },
  32792. },
  32793. [
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(8 + 9/12, "feet"),
  32797. default: true
  32798. },
  32799. {
  32800. name: "Gaze Grabber",
  32801. height: math.unit(13 + 8/12, "feet")
  32802. },
  32803. {
  32804. name: "Jaw Dropper",
  32805. height: math.unit(27, "feet")
  32806. },
  32807. {
  32808. name: "Show Stopper",
  32809. height: math.unit(136, "feet")
  32810. },
  32811. {
  32812. name: "Superstar",
  32813. height: math.unit(1.9e6, "miles")
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32819. {
  32820. side: {
  32821. height: math.unit(2100, "feet"),
  32822. name: "Side",
  32823. image: {
  32824. source: "./media/characters/osiris/side.svg",
  32825. extra: 1105/939,
  32826. bottom: 167/1272
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(2100, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(6 + 8/12, "feet"),
  32843. weight: math.unit(225, "lb"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/rhys-londe/front.svg",
  32847. extra: 2258/2141,
  32848. bottom: 188/2446
  32849. }
  32850. },
  32851. back: {
  32852. height: math.unit(6 + 8/12, "feet"),
  32853. weight: math.unit(225, "lb"),
  32854. name: "Back",
  32855. image: {
  32856. source: "./media/characters/rhys-londe/back.svg",
  32857. extra: 2237/2137,
  32858. bottom: 63/2300
  32859. }
  32860. },
  32861. frontNsfw: {
  32862. height: math.unit(6 + 8/12, "feet"),
  32863. weight: math.unit(225, "lb"),
  32864. name: "Front (NSFW)",
  32865. image: {
  32866. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32867. extra: 2258/2141,
  32868. bottom: 188/2446
  32869. }
  32870. },
  32871. backNsfw: {
  32872. height: math.unit(6 + 8/12, "feet"),
  32873. weight: math.unit(225, "lb"),
  32874. name: "Back (NSFW)",
  32875. image: {
  32876. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32877. extra: 2237/2137,
  32878. bottom: 63/2300
  32879. }
  32880. },
  32881. dick: {
  32882. height: math.unit(30, "inches"),
  32883. name: "Dick",
  32884. image: {
  32885. source: "./media/characters/rhys-londe/dick.svg"
  32886. }
  32887. },
  32888. maw: {
  32889. height: math.unit(1.6, "feet"),
  32890. name: "Maw",
  32891. image: {
  32892. source: "./media/characters/rhys-londe/maw.svg"
  32893. }
  32894. },
  32895. },
  32896. [
  32897. {
  32898. name: "Normal",
  32899. height: math.unit(6 + 8/12, "feet"),
  32900. default: true
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32906. {
  32907. front: {
  32908. height: math.unit(3 + 10/12, "feet"),
  32909. weight: math.unit(90, "lb"),
  32910. name: "Front",
  32911. image: {
  32912. source: "./media/characters/taivas-ensim/front.svg",
  32913. extra: 1327/1216,
  32914. bottom: 96/1423
  32915. }
  32916. },
  32917. back: {
  32918. height: math.unit(3 + 10/12, "feet"),
  32919. weight: math.unit(90, "lb"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/taivas-ensim/back.svg",
  32923. extra: 1355/1247,
  32924. bottom: 11/1366
  32925. }
  32926. },
  32927. frontNsfw: {
  32928. height: math.unit(3 + 10/12, "feet"),
  32929. weight: math.unit(90, "lb"),
  32930. name: "Front (NSFW)",
  32931. image: {
  32932. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32933. extra: 1327/1216,
  32934. bottom: 96/1423
  32935. }
  32936. },
  32937. backNsfw: {
  32938. height: math.unit(3 + 10/12, "feet"),
  32939. weight: math.unit(90, "lb"),
  32940. name: "Back (NSFW)",
  32941. image: {
  32942. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32943. extra: 1355/1247,
  32944. bottom: 11/1366
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(3 + 10/12, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(9 + 6/12, "feet"),
  32961. weight: math.unit(940, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/byliss/front.svg",
  32965. extra: 1327/1290,
  32966. bottom: 82/1409
  32967. }
  32968. },
  32969. back: {
  32970. height: math.unit(9 + 6/12, "feet"),
  32971. weight: math.unit(940, "lb"),
  32972. name: "Back",
  32973. image: {
  32974. source: "./media/characters/byliss/back.svg",
  32975. extra: 1376/1349,
  32976. bottom: 9/1385
  32977. }
  32978. },
  32979. frontNsfw: {
  32980. height: math.unit(9 + 6/12, "feet"),
  32981. weight: math.unit(940, "lb"),
  32982. name: "Front (NSFW)",
  32983. image: {
  32984. source: "./media/characters/byliss/front-nsfw.svg",
  32985. extra: 1327/1290,
  32986. bottom: 82/1409
  32987. }
  32988. },
  32989. backNsfw: {
  32990. height: math.unit(9 + 6/12, "feet"),
  32991. weight: math.unit(940, "lb"),
  32992. name: "Back (NSFW)",
  32993. image: {
  32994. source: "./media/characters/byliss/back-nsfw.svg",
  32995. extra: 1376/1349,
  32996. bottom: 9/1385
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(9 + 6/12, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(5 + 2/12, "feet"),
  33013. weight: math.unit(200, "lb"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/noraly/front.svg",
  33017. extra: 4985/4773,
  33018. bottom: 150/5135
  33019. }
  33020. },
  33021. full: {
  33022. height: math.unit(5 + 2/12, "feet"),
  33023. weight: math.unit(164, "lb"),
  33024. name: "Full",
  33025. image: {
  33026. source: "./media/characters/noraly/full.svg",
  33027. extra: 1114/1059,
  33028. bottom: 35/1149
  33029. }
  33030. },
  33031. fuller: {
  33032. height: math.unit(5 + 2/12, "feet"),
  33033. weight: math.unit(230, "lb"),
  33034. name: "Fuller",
  33035. image: {
  33036. source: "./media/characters/noraly/fuller.svg",
  33037. extra: 1114/1059,
  33038. bottom: 35/1149
  33039. }
  33040. },
  33041. fullest: {
  33042. height: math.unit(5 + 2/12, "feet"),
  33043. weight: math.unit(300, "lb"),
  33044. name: "Fullest",
  33045. image: {
  33046. source: "./media/characters/noraly/fullest.svg",
  33047. extra: 1114/1059,
  33048. bottom: 35/1149
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(5 + 2/12, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33062. {
  33063. front: {
  33064. height: math.unit(5 + 2/12, "feet"),
  33065. weight: math.unit(210, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/pera/front.svg",
  33069. extra: 1560/1531,
  33070. bottom: 165/1725
  33071. }
  33072. },
  33073. back: {
  33074. height: math.unit(5 + 2/12, "feet"),
  33075. weight: math.unit(210, "lb"),
  33076. name: "Back",
  33077. image: {
  33078. source: "./media/characters/pera/back.svg",
  33079. extra: 1523/1493,
  33080. bottom: 152/1675
  33081. }
  33082. },
  33083. dick: {
  33084. height: math.unit(2.4, "feet"),
  33085. name: "Dick",
  33086. image: {
  33087. source: "./media/characters/pera/dick.svg"
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(5 + 2/12, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33101. {
  33102. front: {
  33103. height: math.unit(12, "feet"),
  33104. weight: math.unit(3200, "lb"),
  33105. name: "Front",
  33106. image: {
  33107. source: "./media/characters/julian/front.svg",
  33108. extra: 2962/2701,
  33109. bottom: 184/3146
  33110. }
  33111. },
  33112. maw: {
  33113. height: math.unit(5.35, "feet"),
  33114. name: "Maw",
  33115. image: {
  33116. source: "./media/characters/julian/maw.svg"
  33117. }
  33118. },
  33119. paw: {
  33120. height: math.unit(3.07, "feet"),
  33121. name: "Paw",
  33122. image: {
  33123. source: "./media/characters/julian/paw.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Default",
  33130. height: math.unit(12, "feet"),
  33131. default: true
  33132. },
  33133. {
  33134. name: "Big",
  33135. height: math.unit(50, "feet")
  33136. },
  33137. {
  33138. name: "Really Big",
  33139. height: math.unit(1, "mile")
  33140. },
  33141. {
  33142. name: "Extremely Big",
  33143. height: math.unit(100, "miles")
  33144. },
  33145. {
  33146. name: "Planet Hugger",
  33147. height: math.unit(200, "megameters")
  33148. },
  33149. {
  33150. name: "Unreasonably Big",
  33151. height: math.unit(1e300, "meters")
  33152. },
  33153. ]
  33154. ))
  33155. characterMakers.push(() => makeCharacter(
  33156. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33157. {
  33158. solgooleo: {
  33159. height: math.unit(4, "meters"),
  33160. weight: math.unit(6000*1.5, "kg"),
  33161. volume: math.unit(6000, "liters"),
  33162. name: "Solgooleo",
  33163. image: {
  33164. source: "./media/characters/pi/solgooleo.svg",
  33165. extra: 388/331,
  33166. bottom: 29/417
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(4, "meters"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(8, "feet"),
  33183. weight: math.unit(4, "tons"),
  33184. name: "Front",
  33185. image: {
  33186. source: "./media/characters/shaun/front.svg",
  33187. extra: 503/495,
  33188. bottom: 20/523
  33189. }
  33190. },
  33191. back: {
  33192. height: math.unit(8, "feet"),
  33193. weight: math.unit(4, "tons"),
  33194. name: "Back",
  33195. image: {
  33196. source: "./media/characters/shaun/back.svg",
  33197. extra: 487/480,
  33198. bottom: 20/507
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Lorg",
  33205. height: math.unit(8, "feet"),
  33206. default: true
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33212. {
  33213. frontAnthro: {
  33214. height: math.unit(7, "feet"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/sini/front-anthro.svg",
  33218. extra: 726/678,
  33219. bottom: 35/761
  33220. },
  33221. form: "anthro",
  33222. default: true
  33223. },
  33224. backAnthro: {
  33225. height: math.unit(7, "feet"),
  33226. name: "Back",
  33227. image: {
  33228. source: "./media/characters/sini/back-anthro.svg",
  33229. extra: 743/701,
  33230. bottom: 12/755
  33231. },
  33232. form: "anthro",
  33233. },
  33234. frontAnthroNsfw: {
  33235. height: math.unit(7, "feet"),
  33236. name: "Front (NSFW)",
  33237. image: {
  33238. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33239. extra: 726/678,
  33240. bottom: 35/761
  33241. },
  33242. form: "anthro"
  33243. },
  33244. backAnthroNsfw: {
  33245. height: math.unit(7, "feet"),
  33246. name: "Back (NSFW)",
  33247. image: {
  33248. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33249. extra: 743/701,
  33250. bottom: 12/755
  33251. },
  33252. form: "anthro",
  33253. },
  33254. mawAnthro: {
  33255. height: math.unit(2.14, "feet"),
  33256. name: "Maw",
  33257. image: {
  33258. source: "./media/characters/sini/maw-anthro.svg"
  33259. },
  33260. form: "anthro"
  33261. },
  33262. dick: {
  33263. height: math.unit(1.45, "feet"),
  33264. name: "Dick",
  33265. image: {
  33266. source: "./media/characters/sini/dick-anthro.svg"
  33267. },
  33268. form: "anthro"
  33269. },
  33270. feral: {
  33271. height: math.unit(16, "feet"),
  33272. name: "Feral",
  33273. image: {
  33274. source: "./media/characters/sini/feral.svg",
  33275. extra: 814/605,
  33276. bottom: 11/825
  33277. },
  33278. form: "feral",
  33279. default: true
  33280. },
  33281. feralNsfw: {
  33282. height: math.unit(16, "feet"),
  33283. name: "Feral (NSFW)",
  33284. image: {
  33285. source: "./media/characters/sini/feral-nsfw.svg",
  33286. extra: 814/605,
  33287. bottom: 11/825
  33288. },
  33289. form: "feral"
  33290. },
  33291. mawFeral: {
  33292. height: math.unit(5.66, "feet"),
  33293. name: "Maw",
  33294. image: {
  33295. source: "./media/characters/sini/maw-feral.svg"
  33296. },
  33297. form: "feral",
  33298. },
  33299. pawFeral: {
  33300. height: math.unit(5.17, "feet"),
  33301. name: "Paw",
  33302. image: {
  33303. source: "./media/characters/sini/paw-feral.svg"
  33304. },
  33305. form: "feral",
  33306. },
  33307. rumpFeral: {
  33308. height: math.unit(13.11, "feet"),
  33309. name: "Rump",
  33310. image: {
  33311. source: "./media/characters/sini/rump-feral.svg"
  33312. },
  33313. form: "feral",
  33314. },
  33315. dickFeral: {
  33316. height: math.unit(1, "feet"),
  33317. name: "Dick",
  33318. image: {
  33319. source: "./media/characters/sini/dick-feral.svg"
  33320. },
  33321. form: "feral",
  33322. },
  33323. eyeFeral: {
  33324. height: math.unit(1.23, "feet"),
  33325. name: "Eye",
  33326. image: {
  33327. source: "./media/characters/sini/eye-feral.svg"
  33328. },
  33329. form: "feral",
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Normal",
  33335. height: math.unit(7, "feet"),
  33336. default: true,
  33337. form: "anthro"
  33338. },
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(16, "feet"),
  33342. default: true,
  33343. form: "feral"
  33344. },
  33345. ],
  33346. {
  33347. "anthro": {
  33348. name: "Anthro",
  33349. default: true
  33350. },
  33351. "feral": {
  33352. name: "Feral",
  33353. }
  33354. }
  33355. ))
  33356. characterMakers.push(() => makeCharacter(
  33357. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33358. {
  33359. side: {
  33360. height: math.unit(13, "meters"),
  33361. weight: math.unit(9072, "kg"),
  33362. name: "Side",
  33363. image: {
  33364. source: "./media/characters/raylldo/side.svg",
  33365. extra: 403/344,
  33366. bottom: 42/445
  33367. }
  33368. },
  33369. leaping: {
  33370. height: math.unit(12.3, "meters"),
  33371. weight: math.unit(9072, "kg"),
  33372. name: "Leaping",
  33373. image: {
  33374. source: "./media/characters/raylldo/leaping.svg",
  33375. extra: 470/249,
  33376. bottom: 13/483
  33377. }
  33378. },
  33379. flying: {
  33380. height: math.unit(18, "meters"),
  33381. weight: math.unit(9072, "kg"),
  33382. name: "Flying",
  33383. image: {
  33384. source: "./media/characters/raylldo/flying.svg"
  33385. }
  33386. },
  33387. head: {
  33388. height: math.unit(5.85, "meters"),
  33389. name: "Head",
  33390. image: {
  33391. source: "./media/characters/raylldo/head.svg"
  33392. }
  33393. },
  33394. maw: {
  33395. height: math.unit(5.32, "meters"),
  33396. name: "Maw",
  33397. image: {
  33398. source: "./media/characters/raylldo/maw.svg"
  33399. }
  33400. },
  33401. eye: {
  33402. height: math.unit(0.54, "meters"),
  33403. name: "Eye",
  33404. image: {
  33405. source: "./media/characters/raylldo/eye.svg"
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(13, "meters"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33419. {
  33420. anthroFront: {
  33421. height: math.unit(9, "feet"),
  33422. weight: math.unit(600, "lb"),
  33423. name: "Anthro (Front)",
  33424. image: {
  33425. source: "./media/characters/glint/anthro-front.svg",
  33426. extra: 1097/1018,
  33427. bottom: 28/1125
  33428. }
  33429. },
  33430. anthroBack: {
  33431. height: math.unit(9, "feet"),
  33432. weight: math.unit(600, "lb"),
  33433. name: "Anthro (Back)",
  33434. image: {
  33435. source: "./media/characters/glint/anthro-back.svg",
  33436. extra: 1154/997,
  33437. bottom: 36/1190
  33438. }
  33439. },
  33440. feral: {
  33441. height: math.unit(11, "feet"),
  33442. weight: math.unit(50000, "lb"),
  33443. name: "Feral",
  33444. image: {
  33445. source: "./media/characters/glint/feral.svg",
  33446. extra: 3035/1585,
  33447. bottom: 1169/4204
  33448. }
  33449. },
  33450. dickAnthro: {
  33451. height: math.unit(0.7, "meters"),
  33452. name: "Dick (Anthro)",
  33453. image: {
  33454. source: "./media/characters/glint/dick-anthro.svg"
  33455. }
  33456. },
  33457. dickFeral: {
  33458. height: math.unit(2.65, "meters"),
  33459. name: "Dick (Feral)",
  33460. image: {
  33461. source: "./media/characters/glint/dick-feral.svg"
  33462. }
  33463. },
  33464. slitHidden: {
  33465. height: math.unit(5.85, "meters"),
  33466. name: "Slit (Hidden)",
  33467. image: {
  33468. source: "./media/characters/glint/slit-hidden.svg"
  33469. }
  33470. },
  33471. slitErect: {
  33472. height: math.unit(5.85, "meters"),
  33473. name: "Slit (Erect)",
  33474. image: {
  33475. source: "./media/characters/glint/slit-erect.svg"
  33476. }
  33477. },
  33478. mawAnthro: {
  33479. height: math.unit(0.63, "meters"),
  33480. name: "Maw (Anthro)",
  33481. image: {
  33482. source: "./media/characters/glint/maw.svg"
  33483. }
  33484. },
  33485. mawFeral: {
  33486. height: math.unit(2.89, "meters"),
  33487. name: "Maw (Feral)",
  33488. image: {
  33489. source: "./media/characters/glint/maw.svg"
  33490. }
  33491. },
  33492. },
  33493. [
  33494. {
  33495. name: "Normal",
  33496. height: math.unit(9, "feet"),
  33497. default: true
  33498. },
  33499. ]
  33500. ))
  33501. characterMakers.push(() => makeCharacter(
  33502. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33503. {
  33504. side: {
  33505. height: math.unit(15, "feet"),
  33506. weight: math.unit(5000, "kg"),
  33507. name: "Side",
  33508. image: {
  33509. source: "./media/characters/kairne/side.svg",
  33510. extra: 979/811,
  33511. bottom: 13/992
  33512. }
  33513. },
  33514. front: {
  33515. height: math.unit(15, "feet"),
  33516. weight: math.unit(5000, "kg"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/kairne/front.svg",
  33520. extra: 908/814,
  33521. bottom: 26/934
  33522. }
  33523. },
  33524. sideNsfw: {
  33525. height: math.unit(15, "feet"),
  33526. weight: math.unit(5000, "kg"),
  33527. name: "Side (NSFW)",
  33528. image: {
  33529. source: "./media/characters/kairne/side-nsfw.svg",
  33530. extra: 979/811,
  33531. bottom: 13/992
  33532. }
  33533. },
  33534. frontNsfw: {
  33535. height: math.unit(15, "feet"),
  33536. weight: math.unit(5000, "kg"),
  33537. name: "Front (NSFW)",
  33538. image: {
  33539. source: "./media/characters/kairne/front-nsfw.svg",
  33540. extra: 908/814,
  33541. bottom: 26/934
  33542. }
  33543. },
  33544. dickCaged: {
  33545. height: math.unit(0.65, "meters"),
  33546. name: "Dick-caged",
  33547. image: {
  33548. source: "./media/characters/kairne/dick-caged.svg"
  33549. }
  33550. },
  33551. dick: {
  33552. height: math.unit(0.79, "meters"),
  33553. name: "Dick",
  33554. image: {
  33555. source: "./media/characters/kairne/dick.svg"
  33556. }
  33557. },
  33558. genitals: {
  33559. height: math.unit(1.29, "meters"),
  33560. name: "Genitals",
  33561. image: {
  33562. source: "./media/characters/kairne/genitals.svg"
  33563. }
  33564. },
  33565. maw: {
  33566. height: math.unit(1.73, "meters"),
  33567. name: "Maw",
  33568. image: {
  33569. source: "./media/characters/kairne/maw.svg"
  33570. }
  33571. },
  33572. },
  33573. [
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(15, "feet"),
  33577. default: true
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(5 + 8/12, "feet"),
  33586. weight: math.unit(139, "lb"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/biscuit-jackal/front.svg",
  33590. extra: 2106/1961,
  33591. bottom: 58/2164
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(5 + 8/12, "feet"),
  33596. weight: math.unit(139, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/biscuit-jackal/back.svg",
  33600. extra: 2132/1976,
  33601. bottom: 57/2189
  33602. }
  33603. },
  33604. werejackal: {
  33605. height: math.unit(6 + 3/12, "feet"),
  33606. weight: math.unit(188, "lb"),
  33607. name: "Werejackal",
  33608. image: {
  33609. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33610. extra: 2373/2178,
  33611. bottom: 53/2426
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(5 + 8/12, "feet"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33625. {
  33626. front: {
  33627. height: math.unit(140, "cm"),
  33628. weight: math.unit(45, "kg"),
  33629. name: "Front",
  33630. image: {
  33631. source: "./media/characters/tayra-white/front.svg",
  33632. extra: 2229/2192,
  33633. bottom: 75/2304
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(140, "cm"),
  33641. default: true
  33642. },
  33643. ]
  33644. ))
  33645. characterMakers.push(() => makeCharacter(
  33646. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33647. {
  33648. front: {
  33649. height: math.unit(4 + 5/12, "feet"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/scoop/front.svg",
  33653. extra: 1257/1136,
  33654. bottom: 69/1326
  33655. }
  33656. },
  33657. back: {
  33658. height: math.unit(4 + 5/12, "feet"),
  33659. name: "Back",
  33660. image: {
  33661. source: "./media/characters/scoop/back.svg",
  33662. extra: 1321/1152,
  33663. bottom: 32/1353
  33664. }
  33665. },
  33666. maw: {
  33667. height: math.unit(0.68, "feet"),
  33668. name: "Maw",
  33669. image: {
  33670. source: "./media/characters/scoop/maw.svg"
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Really Small",
  33677. height: math.unit(1, "mm")
  33678. },
  33679. {
  33680. name: "Micro",
  33681. height: math.unit(1, "inch")
  33682. },
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(4 + 5/12, "feet"),
  33686. default: true
  33687. },
  33688. {
  33689. name: "Macro",
  33690. height: math.unit(200, "feet")
  33691. },
  33692. {
  33693. name: "Megamacro",
  33694. height: math.unit(3240, "feet")
  33695. },
  33696. {
  33697. name: "Teramacro",
  33698. height: math.unit(2500, "miles")
  33699. },
  33700. ]
  33701. ))
  33702. characterMakers.push(() => makeCharacter(
  33703. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33704. {
  33705. front: {
  33706. height: math.unit(15 + 7/12, "feet"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/saphinara/front.svg",
  33710. extra: 604/546,
  33711. bottom: 19/623
  33712. }
  33713. },
  33714. side: {
  33715. height: math.unit(15 + 7/12, "feet"),
  33716. name: "Side",
  33717. image: {
  33718. source: "./media/characters/saphinara/side.svg",
  33719. extra: 605/547,
  33720. bottom: 6/611
  33721. }
  33722. },
  33723. back: {
  33724. height: math.unit(15 + 7/12, "feet"),
  33725. name: "Back",
  33726. image: {
  33727. source: "./media/characters/saphinara/back.svg",
  33728. extra: 591/531,
  33729. bottom: 13/604
  33730. }
  33731. },
  33732. frontTail: {
  33733. height: math.unit(15 + 7/12, "feet"),
  33734. name: "Front (Full Tail)",
  33735. image: {
  33736. source: "./media/characters/saphinara/front-tail.svg",
  33737. extra: 748/547,
  33738. bottom: 66/814
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(15 + 7/12, "feet"),
  33746. default: true
  33747. },
  33748. {
  33749. name: "Angry",
  33750. height: math.unit(30 + 6/12, "feet")
  33751. },
  33752. {
  33753. name: "Enraged",
  33754. height: math.unit(102 + 1/12, "feet")
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(6 + 8/12, "feet"),
  33763. weight: math.unit(300, "lb"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/jrain/front.svg",
  33767. extra: 3039/2865,
  33768. bottom: 399/3438
  33769. }
  33770. },
  33771. back: {
  33772. height: math.unit(6 + 8/12, "feet"),
  33773. weight: math.unit(300, "lb"),
  33774. name: "Back",
  33775. image: {
  33776. source: "./media/characters/jrain/back.svg",
  33777. extra: 3089/2938,
  33778. bottom: 172/3261
  33779. }
  33780. },
  33781. head: {
  33782. height: math.unit(2.14, "feet"),
  33783. name: "Head",
  33784. image: {
  33785. source: "./media/characters/jrain/head.svg"
  33786. }
  33787. },
  33788. maw: {
  33789. height: math.unit(1.77, "feet"),
  33790. name: "Maw",
  33791. image: {
  33792. source: "./media/characters/jrain/maw.svg"
  33793. }
  33794. },
  33795. leftHand: {
  33796. height: math.unit(1.1, "feet"),
  33797. name: "Left Hand",
  33798. image: {
  33799. source: "./media/characters/jrain/left-hand.svg"
  33800. }
  33801. },
  33802. rightHand: {
  33803. height: math.unit(1.1, "feet"),
  33804. name: "Right Hand",
  33805. image: {
  33806. source: "./media/characters/jrain/right-hand.svg"
  33807. }
  33808. },
  33809. eye: {
  33810. height: math.unit(0.35, "feet"),
  33811. name: "Eye",
  33812. image: {
  33813. source: "./media/characters/jrain/eye.svg"
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(6 + 8/12, "feet"),
  33821. default: true
  33822. },
  33823. {
  33824. name: "Casually Large",
  33825. height: math.unit(25, "feet")
  33826. },
  33827. {
  33828. name: "Giant",
  33829. height: math.unit(100, "feet")
  33830. },
  33831. {
  33832. name: "Kaiju",
  33833. height: math.unit(300, "feet")
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33839. {
  33840. dragon: {
  33841. height: math.unit(5, "meters"),
  33842. name: "Dragon",
  33843. image: {
  33844. source: "./media/characters/sabrina/dragon.svg",
  33845. extra: 3670 / 2365,
  33846. bottom: 333 / 4003
  33847. }
  33848. },
  33849. gryphon: {
  33850. height: math.unit(3, "meters"),
  33851. name: "Gryphon",
  33852. image: {
  33853. source: "./media/characters/sabrina/gryphon.svg",
  33854. extra: 1576 / 945,
  33855. bottom: 71 / 1647
  33856. }
  33857. },
  33858. snake: {
  33859. height: math.unit(12, "meters"),
  33860. name: "Snake",
  33861. image: {
  33862. source: "./media/characters/sabrina/snake.svg",
  33863. extra: 1758 / 1320,
  33864. bottom: 186 / 1944
  33865. }
  33866. },
  33867. collar: {
  33868. height: math.unit(1.86, "meters"),
  33869. name: "Collar",
  33870. image: {
  33871. source: "./media/characters/sabrina/collar.svg"
  33872. }
  33873. },
  33874. eye: {
  33875. height: math.unit(0.53, "meters"),
  33876. name: "Eye",
  33877. image: {
  33878. source: "./media/characters/sabrina/eye.svg"
  33879. }
  33880. },
  33881. foot: {
  33882. height: math.unit(1.86, "meters"),
  33883. name: "Foot",
  33884. image: {
  33885. source: "./media/characters/sabrina/foot.svg"
  33886. }
  33887. },
  33888. hand: {
  33889. height: math.unit(1.32, "meters"),
  33890. name: "Hand",
  33891. image: {
  33892. source: "./media/characters/sabrina/hand.svg"
  33893. }
  33894. },
  33895. head: {
  33896. height: math.unit(2.44, "meters"),
  33897. name: "Head",
  33898. image: {
  33899. source: "./media/characters/sabrina/head.svg"
  33900. }
  33901. },
  33902. headAngry: {
  33903. height: math.unit(2.44, "meters"),
  33904. name: "Head (Angry))",
  33905. image: {
  33906. source: "./media/characters/sabrina/head-angry.svg"
  33907. }
  33908. },
  33909. maw: {
  33910. height: math.unit(1.65, "meters"),
  33911. name: "Maw",
  33912. image: {
  33913. source: "./media/characters/sabrina/maw.svg"
  33914. }
  33915. },
  33916. spikes: {
  33917. height: math.unit(1.69, "meters"),
  33918. name: "Spikes",
  33919. image: {
  33920. source: "./media/characters/sabrina/spikes.svg"
  33921. }
  33922. },
  33923. stomach: {
  33924. height: math.unit(1.15, "meters"),
  33925. name: "Stomach",
  33926. image: {
  33927. source: "./media/characters/sabrina/stomach.svg"
  33928. }
  33929. },
  33930. tongue: {
  33931. height: math.unit(1.27, "meters"),
  33932. name: "Tongue",
  33933. image: {
  33934. source: "./media/characters/sabrina/tongue.svg"
  33935. }
  33936. },
  33937. wingDorsal: {
  33938. height: math.unit(4.85, "meters"),
  33939. name: "Wing (Dorsal)",
  33940. image: {
  33941. source: "./media/characters/sabrina/wing-dorsal.svg"
  33942. }
  33943. },
  33944. wingVentral: {
  33945. height: math.unit(4.85, "meters"),
  33946. name: "Wing (Ventral)",
  33947. image: {
  33948. source: "./media/characters/sabrina/wing-ventral.svg"
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(5, "meters"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33962. {
  33963. frontMaid: {
  33964. height: math.unit(5 + 5/12, "feet"),
  33965. weight: math.unit(130, "lb"),
  33966. name: "Front (Maid)",
  33967. image: {
  33968. source: "./media/characters/midnight-tales/front-maid.svg",
  33969. extra: 489/454,
  33970. bottom: 61/550
  33971. }
  33972. },
  33973. frontFormal: {
  33974. height: math.unit(5 + 5/12, "feet"),
  33975. weight: math.unit(130, "lb"),
  33976. name: "Front (Formal)",
  33977. image: {
  33978. source: "./media/characters/midnight-tales/front-formal.svg",
  33979. extra: 489/454,
  33980. bottom: 61/550
  33981. }
  33982. },
  33983. back: {
  33984. height: math.unit(5 + 5/12, "feet"),
  33985. weight: math.unit(130, "lb"),
  33986. name: "Back",
  33987. image: {
  33988. source: "./media/characters/midnight-tales/back.svg",
  33989. extra: 498/456,
  33990. bottom: 33/531
  33991. }
  33992. },
  33993. frontBeast: {
  33994. height: math.unit(40, "feet"),
  33995. weight: math.unit(64000, "lb"),
  33996. name: "Front (Beast)",
  33997. image: {
  33998. source: "./media/characters/midnight-tales/front-beast.svg",
  33999. extra: 927/860,
  34000. bottom: 53/980
  34001. }
  34002. },
  34003. backBeast: {
  34004. height: math.unit(40, "feet"),
  34005. weight: math.unit(64000, "lb"),
  34006. name: "Back (Beast)",
  34007. image: {
  34008. source: "./media/characters/midnight-tales/back-beast.svg",
  34009. extra: 929/855,
  34010. bottom: 16/945
  34011. }
  34012. },
  34013. footBeast: {
  34014. height: math.unit(6.7, "feet"),
  34015. name: "Foot (Beast)",
  34016. image: {
  34017. source: "./media/characters/midnight-tales/foot-beast.svg"
  34018. }
  34019. },
  34020. headBeast: {
  34021. height: math.unit(8, "feet"),
  34022. name: "Head (Beast)",
  34023. image: {
  34024. source: "./media/characters/midnight-tales/head-beast.svg"
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(5 + 5 / 12, "feet"),
  34032. default: true
  34033. },
  34034. {
  34035. name: "Macro",
  34036. height: math.unit(25, "feet")
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(5 + 10/12, "feet"),
  34045. name: "Front",
  34046. image: {
  34047. source: "./media/characters/argon/front.svg",
  34048. extra: 2009/1935,
  34049. bottom: 118/2127
  34050. }
  34051. },
  34052. back: {
  34053. height: math.unit(5 + 10/12, "feet"),
  34054. name: "Back",
  34055. image: {
  34056. source: "./media/characters/argon/back.svg",
  34057. extra: 2047/1992,
  34058. bottom: 20/2067
  34059. }
  34060. },
  34061. frontDressed: {
  34062. height: math.unit(5 + 10/12, "feet"),
  34063. name: "Front (Dressed)",
  34064. image: {
  34065. source: "./media/characters/argon/front-dressed.svg",
  34066. extra: 2009/1935,
  34067. bottom: 118/2127
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(5 + 10/12, "feet"),
  34075. default: true
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(8 + 6/12, "feet"),
  34084. weight: math.unit(1150, "lb"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/kichi/front.svg",
  34088. extra: 1267/1164,
  34089. bottom: 61/1328
  34090. }
  34091. },
  34092. back: {
  34093. height: math.unit(8 + 6/12, "feet"),
  34094. weight: math.unit(1150, "lb"),
  34095. name: "Back",
  34096. image: {
  34097. source: "./media/characters/kichi/back.svg",
  34098. extra: 1273/1166,
  34099. bottom: 33/1306
  34100. }
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Normal",
  34106. height: math.unit(8 + 6/12, "feet"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(6, "feet"),
  34116. weight: math.unit(210, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/manetel-greyscale/front.svg",
  34120. extra: 350/312,
  34121. bottom: 8/358
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Micro",
  34128. height: math.unit(2, "inches")
  34129. },
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(6, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Minimacro",
  34137. height: math.unit(17, "feet")
  34138. },
  34139. {
  34140. name: "Macro",
  34141. height: math.unit(117, "feet")
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34147. {
  34148. side: {
  34149. height: math.unit(5 + 1/12, "feet"),
  34150. weight: math.unit(418, "lb"),
  34151. name: "Side",
  34152. image: {
  34153. source: "./media/characters/softpurr/side.svg",
  34154. extra: 1993/1945,
  34155. bottom: 134/2127
  34156. }
  34157. },
  34158. front: {
  34159. height: math.unit(5 + 1/12, "feet"),
  34160. weight: math.unit(418, "lb"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/softpurr/front.svg",
  34164. extra: 1950/1856,
  34165. bottom: 174/2124
  34166. }
  34167. },
  34168. paw: {
  34169. height: math.unit(1, "feet"),
  34170. name: "Paw",
  34171. image: {
  34172. source: "./media/characters/softpurr/paw.svg"
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Normal",
  34179. height: math.unit(5 + 1/12, "feet"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34186. {
  34187. front: {
  34188. height: math.unit(260, "meters"),
  34189. name: "Front",
  34190. image: {
  34191. source: "./media/characters/anahita/front.svg",
  34192. extra: 665/635,
  34193. bottom: 89/754
  34194. }
  34195. },
  34196. },
  34197. [
  34198. {
  34199. name: "Macro",
  34200. height: math.unit(260, "meters"),
  34201. default: true
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(4 + 10/12, "feet"),
  34210. weight: math.unit(160, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/chip-mouse/front.svg",
  34214. extra: 3528/3408,
  34215. bottom: 0/3528
  34216. }
  34217. },
  34218. frontNsfw: {
  34219. height: math.unit(4 + 10/12, "feet"),
  34220. weight: math.unit(160, "lb"),
  34221. name: "Front (NSFW)",
  34222. image: {
  34223. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34224. extra: 3528/3408,
  34225. bottom: 0/3528
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(4 + 10/12, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34239. {
  34240. side: {
  34241. height: math.unit(10, "feet"),
  34242. weight: math.unit(14000, "lb"),
  34243. name: "Side",
  34244. image: {
  34245. source: "./media/characters/kremm/side.svg",
  34246. extra: 1390/1053,
  34247. bottom: 90/1480
  34248. }
  34249. },
  34250. gut: {
  34251. height: math.unit(5.8, "feet"),
  34252. name: "Gut",
  34253. image: {
  34254. source: "./media/characters/kremm/gut.svg"
  34255. }
  34256. },
  34257. ass: {
  34258. height: math.unit(6.1, "feet"),
  34259. name: "Ass",
  34260. image: {
  34261. source: "./media/characters/kremm/ass.svg"
  34262. }
  34263. },
  34264. jaws: {
  34265. height: math.unit(2.2, "feet"),
  34266. name: "Jaws",
  34267. image: {
  34268. source: "./media/characters/kremm/jaws.svg"
  34269. }
  34270. },
  34271. dick: {
  34272. height: math.unit(4.26, "feet"),
  34273. name: "Dick",
  34274. image: {
  34275. source: "./media/characters/kremm/dick.svg"
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(10, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(30, "stories"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/kai/front.svg",
  34295. extra: 1892/1718,
  34296. bottom: 162/2054
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Macro",
  34303. height: math.unit(30, "stories"),
  34304. default: true
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(6 + 4/12, "feet"),
  34313. weight: math.unit(145, "lb"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/sykes/front.svg",
  34317. extra: 1321 / 1187,
  34318. bottom: 66 / 1387
  34319. }
  34320. },
  34321. back: {
  34322. height: math.unit(6 + 4/12, "feet"),
  34323. weight: math.unit(145, "lb"),
  34324. name: "Back",
  34325. image: {
  34326. source: "./media/characters/sykes/back.svg",
  34327. extra: 1326/1181,
  34328. bottom: 31/1357
  34329. }
  34330. },
  34331. handBack: {
  34332. height: math.unit(0.9, "feet"),
  34333. name: "Hand (Back)",
  34334. image: {
  34335. source: "./media/characters/sykes/hand-back.svg"
  34336. }
  34337. },
  34338. handFront: {
  34339. height: math.unit(0.839, "feet"),
  34340. name: "Hand (Front)",
  34341. image: {
  34342. source: "./media/characters/sykes/hand-front.svg"
  34343. }
  34344. },
  34345. leftFoot: {
  34346. height: math.unit(1.2, "feet"),
  34347. name: "Foot (Left)",
  34348. image: {
  34349. source: "./media/characters/sykes/foot-left.svg"
  34350. }
  34351. },
  34352. rightFoot: {
  34353. height: math.unit(1.2, "feet"),
  34354. name: "Foot (Right)",
  34355. image: {
  34356. source: "./media/characters/sykes/foot-right.svg"
  34357. }
  34358. },
  34359. maw: {
  34360. height: math.unit(1.93, "feet"),
  34361. name: "Maw",
  34362. image: {
  34363. source: "./media/characters/sykes/maw.svg"
  34364. }
  34365. },
  34366. teeth: {
  34367. height: math.unit(0.51, "feet"),
  34368. name: "Teeth",
  34369. image: {
  34370. source: "./media/characters/sykes/teeth.svg"
  34371. }
  34372. },
  34373. tongue: {
  34374. height: math.unit(2.13, "feet"),
  34375. name: "Tongue",
  34376. image: {
  34377. source: "./media/characters/sykes/tongue.svg"
  34378. }
  34379. },
  34380. uvula: {
  34381. height: math.unit(0.16, "feet"),
  34382. name: "Uvula",
  34383. image: {
  34384. source: "./media/characters/sykes/uvula.svg"
  34385. }
  34386. },
  34387. collar: {
  34388. height: math.unit(0.287, "feet"),
  34389. name: "Collar",
  34390. image: {
  34391. source: "./media/characters/sykes/collar.svg"
  34392. }
  34393. },
  34394. },
  34395. [
  34396. {
  34397. name: "Shrunken",
  34398. height: math.unit(5, "inches")
  34399. },
  34400. {
  34401. name: "Normal",
  34402. height: math.unit(6 + 4 / 12, "feet"),
  34403. default: true
  34404. },
  34405. {
  34406. name: "Big",
  34407. height: math.unit(15, "feet")
  34408. },
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34413. {
  34414. front: {
  34415. height: math.unit(5 + 8/12, "feet"),
  34416. weight: math.unit(190, "lb"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/oven-otter/front.svg",
  34420. extra: 1809/1740,
  34421. bottom: 181/1990
  34422. }
  34423. },
  34424. back: {
  34425. height: math.unit(5 + 8/12, "feet"),
  34426. weight: math.unit(190, "lb"),
  34427. name: "Back",
  34428. image: {
  34429. source: "./media/characters/oven-otter/back.svg",
  34430. extra: 1709/1635,
  34431. bottom: 118/1827
  34432. }
  34433. },
  34434. hand: {
  34435. height: math.unit(1.07, "feet"),
  34436. name: "Hand",
  34437. image: {
  34438. source: "./media/characters/oven-otter/hand.svg"
  34439. }
  34440. },
  34441. beans: {
  34442. height: math.unit(1.74, "feet"),
  34443. name: "Beans",
  34444. image: {
  34445. source: "./media/characters/oven-otter/beans.svg"
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Micro",
  34452. height: math.unit(0.5, "inches")
  34453. },
  34454. {
  34455. name: "Normal",
  34456. height: math.unit(5 + 8/12, "feet"),
  34457. default: true
  34458. },
  34459. {
  34460. name: "Macro",
  34461. height: math.unit(250, "feet")
  34462. },
  34463. {
  34464. name: "Really High",
  34465. height: math.unit(420, "feet")
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(5, "meters"),
  34474. weight: math.unit(292000000000000, "kg"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/devourer/front.svg",
  34478. extra: 1800/1733,
  34479. bottom: 211/2011
  34480. }
  34481. },
  34482. maw: {
  34483. height: math.unit(1.1, "meter"),
  34484. name: "Maw",
  34485. image: {
  34486. source: "./media/characters/devourer/maw.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Small",
  34493. height: math.unit(3, "meters")
  34494. },
  34495. {
  34496. name: "Large",
  34497. height: math.unit(5, "meters"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34504. {
  34505. front: {
  34506. height: math.unit(6, "feet"),
  34507. weight: math.unit(400, "lb"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/ellarby/front.svg",
  34511. extra: 1909/1763,
  34512. bottom: 80/1989
  34513. }
  34514. },
  34515. back: {
  34516. height: math.unit(6, "feet"),
  34517. weight: math.unit(400, "lb"),
  34518. name: "Back",
  34519. image: {
  34520. source: "./media/characters/ellarby/back.svg",
  34521. extra: 1914/1784,
  34522. bottom: 172/2086
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Mischief",
  34529. height: math.unit(18, "inches")
  34530. },
  34531. {
  34532. name: "Trouble",
  34533. height: math.unit(12, "feet")
  34534. },
  34535. {
  34536. name: "Havoc",
  34537. height: math.unit(200, "feet"),
  34538. default: true
  34539. },
  34540. {
  34541. name: "Pandemonium",
  34542. height: math.unit(1, "mile")
  34543. },
  34544. {
  34545. name: "Catastrophe",
  34546. height: math.unit(100, "miles")
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34552. {
  34553. front: {
  34554. height: math.unit(4.7, "meters"),
  34555. weight: math.unit(6500, "kg"),
  34556. name: "Front",
  34557. image: {
  34558. source: "./media/characters/vex/front.svg",
  34559. extra: 1288/1140,
  34560. bottom: 100/1388
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Normal",
  34567. height: math.unit(4.7, "meters"),
  34568. default: true
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34574. {
  34575. normal: {
  34576. height: math.unit(6, "feet"),
  34577. weight: math.unit(350, "lb"),
  34578. name: "Normal",
  34579. image: {
  34580. source: "./media/characters/teshy/normal.svg",
  34581. extra: 1795/1735,
  34582. bottom: 16/1811
  34583. }
  34584. },
  34585. monsterFront: {
  34586. height: math.unit(12, "feet"),
  34587. weight: math.unit(4700, "lb"),
  34588. name: "Monster (Front)",
  34589. image: {
  34590. source: "./media/characters/teshy/monster-front.svg",
  34591. extra: 2042/2034,
  34592. bottom: 128/2170
  34593. }
  34594. },
  34595. monsterSide: {
  34596. height: math.unit(12, "feet"),
  34597. weight: math.unit(4700, "lb"),
  34598. name: "Monster (Side)",
  34599. image: {
  34600. source: "./media/characters/teshy/monster-side.svg",
  34601. extra: 2067/2056,
  34602. bottom: 70/2137
  34603. }
  34604. },
  34605. monsterBack: {
  34606. height: math.unit(12, "feet"),
  34607. weight: math.unit(4700, "lb"),
  34608. name: "Monster (Back)",
  34609. image: {
  34610. source: "./media/characters/teshy/monster-back.svg",
  34611. extra: 1921/1914,
  34612. bottom: 171/2092
  34613. }
  34614. },
  34615. },
  34616. [
  34617. {
  34618. name: "Normal",
  34619. height: math.unit(6, "feet"),
  34620. default: true
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34626. {
  34627. front: {
  34628. height: math.unit(6, "feet"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/ramey/front.svg",
  34632. extra: 790/787,
  34633. bottom: 27/817
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Normal",
  34640. height: math.unit(6, "feet"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(5 + 5/12, "feet"),
  34650. weight: math.unit(120, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/phirae/front.svg",
  34654. extra: 2491/2436,
  34655. bottom: 38/2529
  34656. }
  34657. },
  34658. },
  34659. [
  34660. {
  34661. name: "Normal",
  34662. height: math.unit(5 + 5/12, "feet"),
  34663. default: true
  34664. },
  34665. ]
  34666. ))
  34667. characterMakers.push(() => makeCharacter(
  34668. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34669. {
  34670. front: {
  34671. height: math.unit(5 + 3/12, "feet"),
  34672. name: "Front",
  34673. image: {
  34674. source: "./media/characters/stagglas/front.svg",
  34675. extra: 962/882,
  34676. bottom: 53/1015
  34677. }
  34678. },
  34679. feral: {
  34680. height: math.unit(335, "cm"),
  34681. name: "Feral",
  34682. image: {
  34683. source: "./media/characters/stagglas/feral.svg",
  34684. extra: 1732/1090,
  34685. bottom: 48/1780
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(5 + 3/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(5 + 4/12, "feet"),
  34702. weight: math.unit(145, "lb"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/starra/front.svg",
  34706. extra: 1790/1691,
  34707. bottom: 91/1881
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(5 + 4/12, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(2.2, "meters"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34727. extra: 1194/1005,
  34728. bottom: 25/1219
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(2.2, "meters"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34742. {
  34743. side: {
  34744. height: math.unit(8 + 2/12, "feet"),
  34745. weight: math.unit(1240, "lb"),
  34746. name: "Side",
  34747. image: {
  34748. source: "./media/characters/mika-valentine/side.svg",
  34749. extra: 2670/2501,
  34750. bottom: 250/2920
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(8 + 2/12, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(7 + 2/12, "feet"),
  34767. name: "Front",
  34768. image: {
  34769. source: "./media/characters/xoltol/front.svg",
  34770. extra: 2212/2124,
  34771. bottom: 84/2296
  34772. }
  34773. },
  34774. side: {
  34775. height: math.unit(7 + 2/12, "feet"),
  34776. name: "Side",
  34777. image: {
  34778. source: "./media/characters/xoltol/side.svg",
  34779. extra: 2273/2197,
  34780. bottom: 26/2299
  34781. }
  34782. },
  34783. hand: {
  34784. height: math.unit(2.5, "feet"),
  34785. name: "Hand",
  34786. image: {
  34787. source: "./media/characters/xoltol/hand.svg"
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Small-ish",
  34794. height: math.unit(5 + 11/12, "feet")
  34795. },
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(7 + 2/12, "feet")
  34799. },
  34800. {
  34801. name: "\"Macro\"",
  34802. height: math.unit(14 + 9/12, "feet"),
  34803. default: true
  34804. },
  34805. {
  34806. name: "Alternate Height",
  34807. height: math.unit(20, "feet")
  34808. },
  34809. {
  34810. name: "Actually Macro",
  34811. height: math.unit(100, "feet")
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(5 + 2/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/kotetsu-redwood/front.svg",
  34823. extra: 1053/942,
  34824. bottom: 60/1113
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(5 + 2/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(2.4, "meters"),
  34841. weight: math.unit(125, "kg"),
  34842. name: "Front",
  34843. image: {
  34844. source: "./media/characters/lilith/front.svg",
  34845. extra: 1590/1513,
  34846. bottom: 203/1793
  34847. }
  34848. },
  34849. },
  34850. [
  34851. {
  34852. name: "Humanoid",
  34853. height: math.unit(2.4, "meters")
  34854. },
  34855. {
  34856. name: "Normal",
  34857. height: math.unit(6, "meters"),
  34858. default: true
  34859. },
  34860. {
  34861. name: "Largest",
  34862. height: math.unit(55, "meters")
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(8 + 4/12, "feet"),
  34871. weight: math.unit(535, "lb"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/beh'kah-bolger/front.svg",
  34875. extra: 1660/1603,
  34876. bottom: 37/1697
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(8 + 4/12, "feet"),
  34884. default: true
  34885. },
  34886. {
  34887. name: "Kaiju",
  34888. height: math.unit(250, "feet")
  34889. },
  34890. {
  34891. name: "Still Growing",
  34892. height: math.unit(10, "miles")
  34893. },
  34894. {
  34895. name: "Continental",
  34896. height: math.unit(5000, "miles")
  34897. },
  34898. {
  34899. name: "Final Form",
  34900. height: math.unit(2500000, "miles")
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(7 + 2/12, "feet"),
  34909. weight: math.unit(230, "kg"),
  34910. name: "Front",
  34911. image: {
  34912. source: "./media/characters/tatyana-milewska/front.svg",
  34913. extra: 1199/1150,
  34914. bottom: 86/1285
  34915. }
  34916. },
  34917. },
  34918. [
  34919. {
  34920. name: "Normal",
  34921. height: math.unit(7 + 2/12, "feet"),
  34922. default: true
  34923. },
  34924. {
  34925. name: "Big",
  34926. height: math.unit(12, "feet")
  34927. },
  34928. {
  34929. name: "Minimacro",
  34930. height: math.unit(20, "feet")
  34931. },
  34932. {
  34933. name: "Macro",
  34934. height: math.unit(120, "feet")
  34935. },
  34936. ]
  34937. ))
  34938. characterMakers.push(() => makeCharacter(
  34939. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34940. {
  34941. front: {
  34942. height: math.unit(7 + 8/12, "feet"),
  34943. weight: math.unit(152, "kg"),
  34944. name: "Front",
  34945. image: {
  34946. source: "./media/characters/helen-arri/front.svg",
  34947. extra: 440/423,
  34948. bottom: 14/454
  34949. }
  34950. },
  34951. back: {
  34952. height: math.unit(7 + 8/12, "feet"),
  34953. weight: math.unit(152, "kg"),
  34954. name: "Back",
  34955. image: {
  34956. source: "./media/characters/helen-arri/back.svg",
  34957. extra: 443/426,
  34958. bottom: 8/451
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(7 + 8/12, "feet"),
  34966. default: true
  34967. },
  34968. {
  34969. name: "Big",
  34970. height: math.unit(14, "feet")
  34971. },
  34972. {
  34973. name: "Minimacro",
  34974. height: math.unit(24, "feet")
  34975. },
  34976. {
  34977. name: "Macro",
  34978. height: math.unit(140, "feet")
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(6, "meters"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/ehanu-rehu/front.svg",
  34990. extra: 1800/1800,
  34991. bottom: 59/1859
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(6, "meters"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(7 + 3/12, "feet"),
  35008. name: "Front",
  35009. image: {
  35010. source: "./media/characters/renholder/front.svg",
  35011. extra: 3096/2960,
  35012. bottom: 250/3346
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal Bat",
  35019. height: math.unit(7 + 3/12, "feet"),
  35020. default: true
  35021. },
  35022. {
  35023. name: "Slightly Tall Bat",
  35024. height: math.unit(100, "feet")
  35025. },
  35026. {
  35027. name: "Big Bat",
  35028. height: math.unit(1000, "feet")
  35029. },
  35030. {
  35031. name: "City-Sized Bat",
  35032. height: math.unit(200000, "feet")
  35033. },
  35034. {
  35035. name: "Bigger Bat",
  35036. height: math.unit(10000, "miles")
  35037. },
  35038. {
  35039. name: "Solar Sized Bat",
  35040. height: math.unit(100, "AU")
  35041. },
  35042. {
  35043. name: "Galactic Bat",
  35044. height: math.unit(200000, "lightyears")
  35045. },
  35046. {
  35047. name: "Universally Known Bat",
  35048. height: math.unit(1, "universe")
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35054. {
  35055. front: {
  35056. height: math.unit(6 + 11/12, "feet"),
  35057. weight: math.unit(250, "lb"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/cookiecat/front.svg",
  35061. extra: 893/827,
  35062. bottom: 14/907
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Micro",
  35069. height: math.unit(3, "inches")
  35070. },
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(6 + 11/12, "feet"),
  35074. default: true
  35075. },
  35076. {
  35077. name: "Macro",
  35078. height: math.unit(100, "feet")
  35079. },
  35080. {
  35081. name: "Macro+",
  35082. height: math.unit(404, "feet")
  35083. },
  35084. {
  35085. name: "Megamacro",
  35086. height: math.unit(165, "miles")
  35087. },
  35088. {
  35089. name: "Planetary",
  35090. height: math.unit(4600, "miles")
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(10 + 3/12, "feet"),
  35099. weight: math.unit(1500, "lb"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/tux-kusanagi/front.svg",
  35103. extra: 944/840,
  35104. bottom: 39/983
  35105. }
  35106. },
  35107. back: {
  35108. height: math.unit(10 + 3/12, "feet"),
  35109. weight: math.unit(1500, "lb"),
  35110. name: "Back",
  35111. image: {
  35112. source: "./media/characters/tux-kusanagi/back.svg",
  35113. extra: 941/842,
  35114. bottom: 28/969
  35115. }
  35116. },
  35117. rump: {
  35118. height: math.unit(5.25, "feet"),
  35119. name: "Rump",
  35120. image: {
  35121. source: "./media/characters/tux-kusanagi/rump.svg"
  35122. }
  35123. },
  35124. beak: {
  35125. height: math.unit(1.54, "feet"),
  35126. name: "Beak",
  35127. image: {
  35128. source: "./media/characters/tux-kusanagi/beak.svg"
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(10 + 3/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(58, "feet"),
  35145. weight: math.unit(200, "tons"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/uzarmazari/front.svg",
  35149. extra: 1575/1455,
  35150. bottom: 152/1727
  35151. }
  35152. },
  35153. back: {
  35154. height: math.unit(58, "feet"),
  35155. weight: math.unit(200, "tons"),
  35156. name: "Back",
  35157. image: {
  35158. source: "./media/characters/uzarmazari/back.svg",
  35159. extra: 1585/1510,
  35160. bottom: 157/1742
  35161. }
  35162. },
  35163. head: {
  35164. height: math.unit(26, "feet"),
  35165. name: "Head",
  35166. image: {
  35167. source: "./media/characters/uzarmazari/head.svg"
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Normal",
  35174. height: math.unit(58, "feet"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35181. {
  35182. side: {
  35183. height: math.unit(15, "feet"),
  35184. name: "Side",
  35185. image: {
  35186. source: "./media/characters/akitu/side.svg",
  35187. extra: 1421/1321,
  35188. bottom: 157/1578
  35189. }
  35190. },
  35191. front: {
  35192. height: math.unit(15, "feet"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/akitu/front.svg",
  35196. extra: 1435/1326,
  35197. bottom: 232/1667
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(15, "feet"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(10 + 8/12, "feet"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/azalie-croixland/front.svg",
  35217. extra: 1972/1856,
  35218. bottom: 31/2003
  35219. }
  35220. },
  35221. },
  35222. [
  35223. {
  35224. name: "Original Height",
  35225. height: math.unit(5 + 4/12, "feet")
  35226. },
  35227. {
  35228. name: "Normal Height",
  35229. height: math.unit(10 + 8/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35236. {
  35237. side: {
  35238. height: math.unit(7 + 1/12, "feet"),
  35239. weight: math.unit(245, "lb"),
  35240. name: "Side",
  35241. image: {
  35242. source: "./media/characters/kavus-kazian/side.svg",
  35243. extra: 349/342,
  35244. bottom: 15/364
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(7 + 1/12, "feet"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35258. {
  35259. normalFront: {
  35260. height: math.unit(5 + 11/12, "feet"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/moonlight-rose/normal-front.svg",
  35264. extra: 1980/1825,
  35265. bottom: 18/1998
  35266. },
  35267. form: "normal",
  35268. default: true
  35269. },
  35270. normalBack: {
  35271. height: math.unit(5 + 11/12, "feet"),
  35272. name: "Back",
  35273. image: {
  35274. source: "./media/characters/moonlight-rose/normal-back.svg",
  35275. extra: 2010/1839,
  35276. bottom: 10/2020
  35277. },
  35278. form: "normal"
  35279. },
  35280. demonFront: {
  35281. height: math.unit(1.5, "earths"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/moonlight-rose/demon.svg",
  35285. extra: 1400/1294,
  35286. bottom: 45/1445
  35287. },
  35288. form: "demon",
  35289. default: true
  35290. },
  35291. terraFront: {
  35292. height: math.unit(1.5, "earths"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/moonlight-rose/terra.svg"
  35296. },
  35297. form: "terra",
  35298. default: true
  35299. },
  35300. jupiterFront: {
  35301. height: math.unit(69911*2, "km"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35305. extra: 1367/1286,
  35306. bottom: 55/1422
  35307. },
  35308. form: "jupiter",
  35309. default: true
  35310. },
  35311. neptuneFront: {
  35312. height: math.unit(24622*2, "feet"),
  35313. name: "Front",
  35314. image: {
  35315. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35316. extra: 1851/1712,
  35317. bottom: 0/1851
  35318. },
  35319. form: "neptune",
  35320. default: true
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "\"Natural\" Height",
  35326. height: math.unit(5 + 11/12, "feet"),
  35327. form: "normal"
  35328. },
  35329. {
  35330. name: "Smallest comfortable size",
  35331. height: math.unit(40, "meters"),
  35332. form: "normal"
  35333. },
  35334. {
  35335. name: "Common size",
  35336. height: math.unit(50, "km"),
  35337. form: "normal",
  35338. default: true
  35339. },
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(1.5, "earths"),
  35343. form: "demon",
  35344. default: true
  35345. },
  35346. {
  35347. name: "Universal",
  35348. height: math.unit(15, "universes"),
  35349. form: "demon"
  35350. },
  35351. {
  35352. name: "Earth",
  35353. height: math.unit(1.5, "earths"),
  35354. form: "terra",
  35355. default: true
  35356. },
  35357. {
  35358. name: "Super Earth",
  35359. height: math.unit(67.5, "earths"),
  35360. form: "terra"
  35361. },
  35362. {
  35363. name: "Doesn't fit in a solar system...",
  35364. height: math.unit(1, "galaxy"),
  35365. form: "terra"
  35366. },
  35367. {
  35368. name: "Saturn",
  35369. height: math.unit(58232*2, "km"),
  35370. form: "jupiter"
  35371. },
  35372. {
  35373. name: "Jupiter",
  35374. height: math.unit(69911*2, "km"),
  35375. form: "jupiter",
  35376. default: true
  35377. },
  35378. {
  35379. name: "HD 100546 b",
  35380. height: math.unit(482938, "km"),
  35381. form: "jupiter"
  35382. },
  35383. {
  35384. name: "Enceladus",
  35385. height: math.unit(513*2, "km"),
  35386. form: "neptune"
  35387. },
  35388. {
  35389. name: "Europe",
  35390. height: math.unit(1560*2, "km"),
  35391. form: "neptune"
  35392. },
  35393. {
  35394. name: "Neptune",
  35395. height: math.unit(24622*2, "km"),
  35396. form: "neptune",
  35397. default: true
  35398. },
  35399. {
  35400. name: "CoRoT-9b",
  35401. height: math.unit(75067*2, "km"),
  35402. form: "neptune"
  35403. },
  35404. ],
  35405. {
  35406. "normal": {
  35407. name: "Normal",
  35408. default: true
  35409. },
  35410. "demon": {
  35411. name: "Demon"
  35412. },
  35413. "terra": {
  35414. name: "Terra"
  35415. },
  35416. "jupiter": {
  35417. name: "Jupiter"
  35418. },
  35419. "neptune": {
  35420. name: "Neptune"
  35421. }
  35422. }
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(16, "feet"),
  35429. weight: math.unit(610, "kg"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/huckle/front.svg",
  35433. extra: 1731/1625,
  35434. bottom: 33/1764
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(16, "feet"),
  35439. weight: math.unit(610, "kg"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/huckle/back.svg",
  35443. extra: 1738/1651,
  35444. bottom: 37/1775
  35445. }
  35446. },
  35447. laughing: {
  35448. height: math.unit(3.75, "feet"),
  35449. name: "Laughing",
  35450. image: {
  35451. source: "./media/characters/huckle/laughing.svg"
  35452. }
  35453. },
  35454. angry: {
  35455. height: math.unit(4.15, "feet"),
  35456. name: "Angry",
  35457. image: {
  35458. source: "./media/characters/huckle/angry.svg"
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(16, "feet"),
  35466. default: true
  35467. },
  35468. {
  35469. name: "Mini Macro",
  35470. height: math.unit(463, "feet")
  35471. },
  35472. {
  35473. name: "Macro",
  35474. height: math.unit(1680, "meters")
  35475. },
  35476. {
  35477. name: "Mega Macro",
  35478. height: math.unit(175, "km")
  35479. },
  35480. {
  35481. name: "Terra Macro",
  35482. height: math.unit(32, "gigameters")
  35483. },
  35484. {
  35485. name: "Multiverse+",
  35486. height: math.unit(2.56e23, "yottameters")
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(6 + 9/12, "feet"),
  35495. weight: math.unit(280, "lb"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/candy/front.svg",
  35499. extra: 234/217,
  35500. bottom: 11/245
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Really Small",
  35507. height: math.unit(0.1, "nm")
  35508. },
  35509. {
  35510. name: "Micro",
  35511. height: math.unit(2, "inches")
  35512. },
  35513. {
  35514. name: "Normal",
  35515. height: math.unit(6 + 9/12, "feet"),
  35516. default: true
  35517. },
  35518. {
  35519. name: "Small Macro",
  35520. height: math.unit(69, "feet")
  35521. },
  35522. {
  35523. name: "Macro",
  35524. height: math.unit(160, "feet")
  35525. },
  35526. {
  35527. name: "Megamacro",
  35528. height: math.unit(22000, "miles")
  35529. },
  35530. {
  35531. name: "Gigamacro",
  35532. height: math.unit(50000, "miles")
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35538. {
  35539. front: {
  35540. height: math.unit(4, "feet"),
  35541. weight: math.unit(90, "lb"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/joey-mcdonald/front.svg",
  35545. extra: 1059/852,
  35546. bottom: 33/1092
  35547. }
  35548. },
  35549. back: {
  35550. height: math.unit(4, "feet"),
  35551. weight: math.unit(90, "lb"),
  35552. name: "Back",
  35553. image: {
  35554. source: "./media/characters/joey-mcdonald/back.svg",
  35555. extra: 1077/879,
  35556. bottom: 5/1082
  35557. }
  35558. },
  35559. frontKobold: {
  35560. height: math.unit(4, "feet"),
  35561. weight: math.unit(100, "lb"),
  35562. name: "Front-kobold",
  35563. image: {
  35564. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35565. extra: 1480/1367,
  35566. bottom: 0/1480
  35567. }
  35568. },
  35569. backKobold: {
  35570. height: math.unit(4, "feet"),
  35571. weight: math.unit(100, "lb"),
  35572. name: "Back-kobold",
  35573. image: {
  35574. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35575. extra: 1449/1361,
  35576. bottom: 0/1449
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(4, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(12 + 6/12, "feet"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/kass-lockheed/front.svg",
  35596. extra: 354/343,
  35597. bottom: 9/363
  35598. }
  35599. },
  35600. back: {
  35601. height: math.unit(12 + 6/12, "feet"),
  35602. name: "Back",
  35603. image: {
  35604. source: "./media/characters/kass-lockheed/back.svg",
  35605. extra: 364/352,
  35606. bottom: 3/367
  35607. }
  35608. },
  35609. dick: {
  35610. height: math.unit(3.12, "feet"),
  35611. name: "Dick",
  35612. image: {
  35613. source: "./media/characters/kass-lockheed/dick.svg"
  35614. }
  35615. },
  35616. head: {
  35617. height: math.unit(2.6, "feet"),
  35618. name: "Head",
  35619. image: {
  35620. source: "./media/characters/kass-lockheed/head.svg"
  35621. }
  35622. },
  35623. bleh: {
  35624. height: math.unit(2.85, "feet"),
  35625. name: "Bleh",
  35626. image: {
  35627. source: "./media/characters/kass-lockheed/bleh.svg"
  35628. }
  35629. },
  35630. smug: {
  35631. height: math.unit(2.85, "feet"),
  35632. name: "Smug",
  35633. image: {
  35634. source: "./media/characters/kass-lockheed/smug.svg"
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(12 + 6/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(6 + 2/12, "feet"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/taylor/front.svg",
  35654. extra: 639/495,
  35655. bottom: 12/651
  35656. }
  35657. },
  35658. },
  35659. [
  35660. {
  35661. name: "Normal",
  35662. height: math.unit(6 + 2/12, "feet"),
  35663. default: true
  35664. },
  35665. {
  35666. name: "Big",
  35667. height: math.unit(15, "feet")
  35668. },
  35669. {
  35670. name: "Lorg",
  35671. height: math.unit(80, "feet")
  35672. },
  35673. {
  35674. name: "Too Lorg",
  35675. height: math.unit(120, "feet")
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(15, "feet"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/kaizer/front.svg",
  35687. extra: 1612/1436,
  35688. bottom: 43/1655
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(15, "feet"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(2, "feet"),
  35705. weight: math.unit(30, "lb"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/sandy/front.svg",
  35709. extra: 1439/1307,
  35710. bottom: 194/1633
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(2, "feet"),
  35718. default: true
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(3, "feet"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/mellvi/front.svg",
  35730. extra: 1831/1630,
  35731. bottom: 58/1889
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(3, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(5 + 11/12, "feet"),
  35748. weight: math.unit(200, "lb"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/shirou/front.svg",
  35752. extra: 2491/2383,
  35753. bottom: 189/2680
  35754. }
  35755. },
  35756. back: {
  35757. height: math.unit(5 + 11/12, "feet"),
  35758. weight: math.unit(200, "lb"),
  35759. name: "Back",
  35760. image: {
  35761. source: "./media/characters/shirou/back.svg",
  35762. extra: 2554/2450,
  35763. bottom: 76/2630
  35764. }
  35765. },
  35766. },
  35767. [
  35768. {
  35769. name: "Normal",
  35770. height: math.unit(5 + 11/12, "feet"),
  35771. default: true
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35777. {
  35778. front: {
  35779. height: math.unit(6 + 3/12, "feet"),
  35780. weight: math.unit(177, "lb"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/noryu/front.svg",
  35784. extra: 973/885,
  35785. bottom: 10/983
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(6 + 3/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(5 + 6/12, "feet"),
  35802. weight: math.unit(170, "lb"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/mevolas-rubenido/front.svg",
  35806. extra: 2109/1901,
  35807. bottom: 96/2205
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Normal",
  35814. height: math.unit(5 + 6/12, "feet"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35821. {
  35822. front: {
  35823. height: math.unit(100, "feet"),
  35824. name: "Front",
  35825. image: {
  35826. source: "./media/characters/dee/front.svg",
  35827. extra: 2153/2036,
  35828. bottom: 59/2212
  35829. }
  35830. },
  35831. back: {
  35832. height: math.unit(100, "feet"),
  35833. name: "Back",
  35834. image: {
  35835. source: "./media/characters/dee/back.svg",
  35836. extra: 2183/2058,
  35837. bottom: 75/2258
  35838. }
  35839. },
  35840. foot: {
  35841. height: math.unit(19.43, "feet"),
  35842. name: "Foot",
  35843. image: {
  35844. source: "./media/characters/dee/foot.svg"
  35845. }
  35846. },
  35847. hoof: {
  35848. height: math.unit(20.6, "feet"),
  35849. name: "Hoof",
  35850. image: {
  35851. source: "./media/characters/dee/hoof.svg"
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Macro",
  35858. height: math.unit(100, "feet"),
  35859. default: true
  35860. },
  35861. ]
  35862. ))
  35863. characterMakers.push(() => makeCharacter(
  35864. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35865. {
  35866. front: {
  35867. height: math.unit(5 + 6/12, "feet"),
  35868. name: "Front",
  35869. image: {
  35870. source: "./media/characters/teh/front.svg",
  35871. extra: 1002/847,
  35872. bottom: 62/1064
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(5 + 6/12, "feet"),
  35880. default: true
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35886. {
  35887. side: {
  35888. height: math.unit(6 + 1/12, "feet"),
  35889. weight: math.unit(204, "lb"),
  35890. name: "Side",
  35891. image: {
  35892. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35893. extra: 974/775,
  35894. bottom: 169/1143
  35895. }
  35896. },
  35897. sitting: {
  35898. height: math.unit(6 + 2/12, "feet"),
  35899. weight: math.unit(204, "lb"),
  35900. name: "Sitting",
  35901. image: {
  35902. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35903. extra: 1175/964,
  35904. bottom: 378/1553
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(6 + 1/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(6, "inches"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/tululi/front.svg",
  35924. extra: 1997/1876,
  35925. bottom: 20/2017
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(6, "inches"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(4 + 1/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/star/front.svg",
  35945. extra: 1493/1189,
  35946. bottom: 48/1541
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(4 + 1/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(6 + 3/12, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/comet/front.svg",
  35966. extra: 1681/1462,
  35967. bottom: 26/1707
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(6 + 3/12, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(950, "feet"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/vortex/front.svg",
  35987. extra: 1497/1434,
  35988. bottom: 56/1553
  35989. }
  35990. },
  35991. maw: {
  35992. height: math.unit(285, "feet"),
  35993. name: "Maw",
  35994. image: {
  35995. source: "./media/characters/vortex/maw.svg"
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Macro",
  36002. height: math.unit(950, "feet"),
  36003. default: true
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36009. {
  36010. front: {
  36011. height: math.unit(600, "feet"),
  36012. weight: math.unit(0.02, "grams"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/doodle/front.svg",
  36016. extra: 1578/1413,
  36017. bottom: 37/1615
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Macro",
  36024. height: math.unit(600, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6 + 6/12, "feet"),
  36034. name: "Front",
  36035. image: {
  36036. source: "./media/characters/jai/front.svg",
  36037. extra: 1645/1534,
  36038. bottom: 115/1760
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(6 + 6/12, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(6 + 8/12, "feet"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/pixel/front.svg",
  36058. extra: 1900/1735,
  36059. bottom: 63/1963
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(6 + 8/12, "feet"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36073. {
  36074. back: {
  36075. height: math.unit(4 + 1/12, "feet"),
  36076. weight: math.unit(75, "lb"),
  36077. name: "Back",
  36078. image: {
  36079. source: "./media/characters/rhett/back.svg",
  36080. extra: 930/878,
  36081. bottom: 25/955
  36082. }
  36083. },
  36084. front: {
  36085. height: math.unit(4 + 1/12, "feet"),
  36086. weight: math.unit(75, "lb"),
  36087. name: "Front",
  36088. image: {
  36089. source: "./media/characters/rhett/front.svg",
  36090. extra: 1682/1586,
  36091. bottom: 92/1774
  36092. }
  36093. },
  36094. },
  36095. [
  36096. {
  36097. name: "Micro",
  36098. height: math.unit(8, "inches")
  36099. },
  36100. {
  36101. name: "Tiny",
  36102. height: math.unit(2, "feet")
  36103. },
  36104. {
  36105. name: "Normal",
  36106. height: math.unit(4 + 1/12, "feet"),
  36107. default: true
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(3 + 3/12, "feet"),
  36116. name: "Front",
  36117. image: {
  36118. source: "./media/characters/penny/front.svg",
  36119. extra: 1406/1311,
  36120. bottom: 26/1432
  36121. }
  36122. },
  36123. },
  36124. [
  36125. {
  36126. name: "Normal",
  36127. height: math.unit(3 + 3/12, "feet"),
  36128. default: true
  36129. },
  36130. ]
  36131. ))
  36132. characterMakers.push(() => makeCharacter(
  36133. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36134. {
  36135. front: {
  36136. height: math.unit(4 + 11/12, "feet"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/monty/front.svg",
  36140. extra: 1479/1209,
  36141. bottom: 0/1479
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(4 + 11/12, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(8 + 4/12, "feet"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/sterling/front.svg",
  36161. extra: 1420/1236,
  36162. bottom: 27/1447
  36163. }
  36164. },
  36165. },
  36166. [
  36167. {
  36168. name: "Normal",
  36169. height: math.unit(8 + 4/12, "feet"),
  36170. default: true
  36171. },
  36172. ]
  36173. ))
  36174. characterMakers.push(() => makeCharacter(
  36175. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36176. {
  36177. front: {
  36178. height: math.unit(15, "feet"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/marble/front.svg",
  36182. extra: 973/937,
  36183. bottom: 32/1005
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(15, "feet"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36197. {
  36198. front: {
  36199. height: math.unit(3, "inches"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/powder/front.svg",
  36203. extra: 1504/1334,
  36204. bottom: 518/2022
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(3, "inches"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(4 + 5/12, "feet"),
  36221. name: "Front",
  36222. image: {
  36223. source: "./media/characters/joey-raccoon/front.svg",
  36224. extra: 1273/1197,
  36225. bottom: 0/1273
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Normal",
  36232. height: math.unit(4 + 5/12, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(8 + 4/12, "feet"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/vick/front.svg",
  36245. extra: 2187/2118,
  36246. bottom: 47/2234
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(8 + 4/12, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(5 + 5/12, "feet"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/mitsy/front.svg",
  36266. extra: 1842/1695,
  36267. bottom: 0/1842
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(5 + 5/12, "feet"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(6 + 3/12, "feet"),
  36284. name: "Front",
  36285. image: {
  36286. source: "./media/characters/silvy/front.svg",
  36287. extra: 1995/1836,
  36288. bottom: 225/2220
  36289. }
  36290. },
  36291. },
  36292. [
  36293. {
  36294. name: "Normal",
  36295. height: math.unit(6 + 3/12, "feet"),
  36296. default: true
  36297. },
  36298. ]
  36299. ))
  36300. characterMakers.push(() => makeCharacter(
  36301. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36302. {
  36303. front: {
  36304. height: math.unit(3 + 8/12, "feet"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/rodney/front.svg",
  36308. extra: 1956/1747,
  36309. bottom: 31/1987
  36310. }
  36311. },
  36312. frontDressed: {
  36313. height: math.unit(2.9, "feet"),
  36314. name: "Front (Dressed)",
  36315. image: {
  36316. source: "./media/characters/rodney/front-dressed.svg",
  36317. extra: 1382/1241,
  36318. bottom: 385/1767
  36319. }
  36320. },
  36321. },
  36322. [
  36323. {
  36324. name: "Normal",
  36325. height: math.unit(3 + 8/12, "feet"),
  36326. default: true
  36327. },
  36328. ]
  36329. ))
  36330. characterMakers.push(() => makeCharacter(
  36331. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36332. {
  36333. front: {
  36334. height: math.unit(5 + 9/12, "feet"),
  36335. weight: math.unit(194, "lbs"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/zakail-sudekai/front.svg",
  36339. extra: 2696/2533,
  36340. bottom: 248/2944
  36341. }
  36342. },
  36343. maw: {
  36344. height: math.unit(1.35, "feet"),
  36345. name: "Maw",
  36346. image: {
  36347. source: "./media/characters/zakail-sudekai/maw.svg"
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(5 + 9/12, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(8 + 4/12, "feet"),
  36364. weight: math.unit(1200, "lb"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/eleanor/front.svg",
  36368. extra: 1226/1192,
  36369. bottom: 52/1278
  36370. }
  36371. },
  36372. back: {
  36373. height: math.unit(8 + 4/12, "feet"),
  36374. weight: math.unit(1200, "lb"),
  36375. name: "Back",
  36376. image: {
  36377. source: "./media/characters/eleanor/back.svg",
  36378. extra: 1242/1184,
  36379. bottom: 60/1302
  36380. }
  36381. },
  36382. head: {
  36383. height: math.unit(2.62, "feet"),
  36384. name: "Head",
  36385. image: {
  36386. source: "./media/characters/eleanor/head.svg"
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(8 + 4/12, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(8 + 4/12, "feet"),
  36403. weight: math.unit(750, "lb"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/tanya/front.svg",
  36407. extra: 1749/1615,
  36408. bottom: 33/1782
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(8 + 4/12, "feet"),
  36416. default: true
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(5, "feet"),
  36425. weight: math.unit(225, "lb"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/cindy/front.svg",
  36429. extra: 1320/1250,
  36430. bottom: 42/1362
  36431. }
  36432. },
  36433. frontDressed: {
  36434. height: math.unit(5, "feet"),
  36435. weight: math.unit(225, "lb"),
  36436. name: "Front (Dressed)",
  36437. image: {
  36438. source: "./media/characters/cindy/front-dressed.svg",
  36439. extra: 1320/1250,
  36440. bottom: 42/1362
  36441. }
  36442. },
  36443. back: {
  36444. height: math.unit(5, "feet"),
  36445. weight: math.unit(225, "lb"),
  36446. name: "Back",
  36447. image: {
  36448. source: "./media/characters/cindy/back.svg",
  36449. extra: 1384/1346,
  36450. bottom: 14/1398
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(5, "feet"),
  36458. default: true
  36459. },
  36460. ]
  36461. ))
  36462. characterMakers.push(() => makeCharacter(
  36463. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36464. {
  36465. front: {
  36466. height: math.unit(6 + 9/12, "feet"),
  36467. weight: math.unit(440, "lb"),
  36468. name: "Front",
  36469. image: {
  36470. source: "./media/characters/wilbur-owen/front.svg",
  36471. extra: 1575/1448,
  36472. bottom: 72/1647
  36473. }
  36474. },
  36475. back: {
  36476. height: math.unit(6 + 9/12, "feet"),
  36477. weight: math.unit(440, "lb"),
  36478. name: "Back",
  36479. image: {
  36480. source: "./media/characters/wilbur-owen/back.svg",
  36481. extra: 1578/1445,
  36482. bottom: 36/1614
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Normal",
  36489. height: math.unit(6 + 9/12, "feet"),
  36490. default: true
  36491. },
  36492. ]
  36493. ))
  36494. characterMakers.push(() => makeCharacter(
  36495. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36496. {
  36497. front: {
  36498. height: math.unit(6 + 5/12, "feet"),
  36499. weight: math.unit(650, "lb"),
  36500. name: "Front",
  36501. image: {
  36502. source: "./media/characters/keegan/front.svg",
  36503. extra: 2387/2198,
  36504. bottom: 33/2420
  36505. }
  36506. },
  36507. side: {
  36508. height: math.unit(6 + 5/12, "feet"),
  36509. weight: math.unit(650, "lb"),
  36510. name: "Side",
  36511. image: {
  36512. source: "./media/characters/keegan/side.svg",
  36513. extra: 2390/2202,
  36514. bottom: 47/2437
  36515. }
  36516. },
  36517. back: {
  36518. height: math.unit(6 + 5/12, "feet"),
  36519. weight: math.unit(650, "lb"),
  36520. name: "Back",
  36521. image: {
  36522. source: "./media/characters/keegan/back.svg",
  36523. extra: 2418/2268,
  36524. bottom: 15/2433
  36525. }
  36526. },
  36527. frontSfw: {
  36528. height: math.unit(6 + 5/12, "feet"),
  36529. weight: math.unit(650, "lb"),
  36530. name: "Front (SFW)",
  36531. image: {
  36532. source: "./media/characters/keegan/front-sfw.svg",
  36533. extra: 2387/2198,
  36534. bottom: 33/2420
  36535. }
  36536. },
  36537. beans: {
  36538. height: math.unit(1.85, "feet"),
  36539. name: "Beans",
  36540. image: {
  36541. source: "./media/characters/keegan/beans.svg"
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(6 + 5/12, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(9, "feet"),
  36558. name: "Front",
  36559. image: {
  36560. source: "./media/characters/colton/front.svg",
  36561. extra: 1589/1326,
  36562. bottom: 139/1728
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(9, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(2 + 9/12, "feet"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/bora/front.svg",
  36582. extra: 1265/1250,
  36583. bottom: 24/1289
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(2 + 9/12, "feet"),
  36591. default: true
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(8, "feet"),
  36600. name: "Front",
  36601. image: {
  36602. source: "./media/characters/myu-myu/front.svg",
  36603. extra: 1949/1857,
  36604. bottom: 90/2039
  36605. }
  36606. },
  36607. },
  36608. [
  36609. {
  36610. name: "Normal",
  36611. height: math.unit(8, "feet"),
  36612. default: true
  36613. },
  36614. {
  36615. name: "Big",
  36616. height: math.unit(15, "feet")
  36617. },
  36618. {
  36619. name: "BIG",
  36620. height: math.unit(25, "feet")
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36626. {
  36627. side: {
  36628. height: math.unit(7 + 5/12, "feet"),
  36629. weight: math.unit(2800, "lb"),
  36630. name: "Side",
  36631. image: {
  36632. source: "./media/characters/haloren/side.svg",
  36633. extra: 1793/409,
  36634. bottom: 59/1852
  36635. }
  36636. },
  36637. frontPaw: {
  36638. height: math.unit(2.36, "feet"),
  36639. name: "Front paw",
  36640. image: {
  36641. source: "./media/characters/haloren/front-paw.svg"
  36642. }
  36643. },
  36644. hindPaw: {
  36645. height: math.unit(3.18, "feet"),
  36646. name: "Hind paw",
  36647. image: {
  36648. source: "./media/characters/haloren/hind-paw.svg"
  36649. }
  36650. },
  36651. maw: {
  36652. height: math.unit(5.05, "feet"),
  36653. name: "Maw",
  36654. image: {
  36655. source: "./media/characters/haloren/maw.svg"
  36656. }
  36657. },
  36658. dick: {
  36659. height: math.unit(2.90, "feet"),
  36660. name: "Dick",
  36661. image: {
  36662. source: "./media/characters/haloren/dick.svg"
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(7 + 5/12, "feet"),
  36670. default: true
  36671. },
  36672. {
  36673. name: "Enhanced",
  36674. height: math.unit(14 + 3/12, "feet")
  36675. },
  36676. ]
  36677. ))
  36678. characterMakers.push(() => makeCharacter(
  36679. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36680. {
  36681. front: {
  36682. height: math.unit(171, "cm"),
  36683. name: "Front",
  36684. image: {
  36685. source: "./media/characters/kimmy/front.svg",
  36686. extra: 1491/1435,
  36687. bottom: 53/1544
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Small",
  36694. height: math.unit(9, "cm")
  36695. },
  36696. {
  36697. name: "Normal",
  36698. height: math.unit(171, "cm"),
  36699. default: true
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(8, "feet"),
  36708. weight: math.unit(300, "lb"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/galeboomer/front.svg",
  36712. extra: 4651/4415,
  36713. bottom: 162/4813
  36714. }
  36715. },
  36716. back: {
  36717. height: math.unit(8, "feet"),
  36718. weight: math.unit(300, "lb"),
  36719. name: "Back",
  36720. image: {
  36721. source: "./media/characters/galeboomer/back.svg",
  36722. extra: 4544/4314,
  36723. bottom: 16/4560
  36724. }
  36725. },
  36726. frontAlt: {
  36727. height: math.unit(8, "feet"),
  36728. weight: math.unit(300, "lb"),
  36729. name: "Front (Alt)",
  36730. image: {
  36731. source: "./media/characters/galeboomer/front-alt.svg",
  36732. extra: 4458/4228,
  36733. bottom: 68/4526
  36734. }
  36735. },
  36736. maw: {
  36737. height: math.unit(1.2, "feet"),
  36738. name: "Maw",
  36739. image: {
  36740. source: "./media/characters/galeboomer/maw.svg"
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(8, "feet"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(5 + 9/12, "feet"),
  36757. weight: math.unit(120, "lb"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/chyr/front.svg",
  36761. extra: 1323/1254,
  36762. bottom: 63/1386
  36763. }
  36764. },
  36765. back: {
  36766. height: math.unit(5 + 9/12, "feet"),
  36767. weight: math.unit(120, "lb"),
  36768. name: "Back",
  36769. image: {
  36770. source: "./media/characters/chyr/back.svg",
  36771. extra: 1323/1252,
  36772. bottom: 48/1371
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(5 + 9/12, "feet"),
  36780. default: true
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36786. {
  36787. front: {
  36788. height: math.unit(7, "feet"),
  36789. weight: math.unit(310, "lb"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/solarus/front.svg",
  36793. extra: 2415/2021,
  36794. bottom: 103/2518
  36795. }
  36796. },
  36797. back: {
  36798. height: math.unit(7, "feet"),
  36799. weight: math.unit(310, "lb"),
  36800. name: "Back",
  36801. image: {
  36802. source: "./media/characters/solarus/back.svg",
  36803. extra: 2463/2089,
  36804. bottom: 79/2542
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(7, "feet"),
  36812. default: true
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36818. {
  36819. front: {
  36820. height: math.unit(16, "feet"),
  36821. name: "Front",
  36822. image: {
  36823. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36824. extra: 1844/1780,
  36825. bottom: 58/1902
  36826. }
  36827. },
  36828. winterCoat: {
  36829. height: math.unit(16, "feet"),
  36830. name: "Winter Coat",
  36831. image: {
  36832. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36833. extra: 1807/1775,
  36834. bottom: 69/1876
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(16, "feet"),
  36842. default: true
  36843. },
  36844. {
  36845. name: "Chicago Size",
  36846. height: math.unit(560, "feet")
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(11 + 6/12, "feet"),
  36855. weight: math.unit(1366, "lb"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/lexor/front.svg",
  36859. extra: 1560/1481,
  36860. bottom: 211/1771
  36861. }
  36862. },
  36863. back: {
  36864. height: math.unit(11 + 6/12, "feet"),
  36865. weight: math.unit(1366, "lb"),
  36866. name: "Back",
  36867. image: {
  36868. source: "./media/characters/lexor/back.svg",
  36869. extra: 1614/1533,
  36870. bottom: 76/1690
  36871. }
  36872. },
  36873. maw: {
  36874. height: math.unit(3, "feet"),
  36875. name: "Maw",
  36876. image: {
  36877. source: "./media/characters/lexor/maw.svg"
  36878. }
  36879. },
  36880. dick: {
  36881. height: math.unit(2.59, "feet"),
  36882. name: "Dick",
  36883. image: {
  36884. source: "./media/characters/lexor/dick.svg"
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(11 + 6/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(5 + 8/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/magnum/front.svg",
  36904. extra: 942/855,
  36905. bottom: 26/968
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(5 + 8/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(18 + 4/12, "feet"),
  36922. weight: math.unit(1500, "kg"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/solas-sharpsman/front.svg",
  36926. extra: 1698/1589,
  36927. bottom: 0/1698
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(18 + 4/12, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(5 + 5/12, "feet"),
  36944. weight: math.unit(180, "lb"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/october/front.svg",
  36948. extra: 1800/1650,
  36949. bottom: 0/1800
  36950. }
  36951. },
  36952. frontNsfw: {
  36953. height: math.unit(5 + 5/12, "feet"),
  36954. weight: math.unit(180, "lb"),
  36955. name: "Front (NSFW)",
  36956. image: {
  36957. source: "./media/characters/october/front-nsfw.svg",
  36958. extra: 1392/1307,
  36959. bottom: 42/1434
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(5 + 5/12, "feet"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36973. {
  36974. front: {
  36975. height: math.unit(8 + 6/12, "feet"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/essynkardi/front.svg",
  36979. extra: 1914/1846,
  36980. bottom: 22/1936
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(8 + 6/12, "feet"),
  36988. default: true
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(6 + 6/12, "feet"),
  36997. weight: math.unit(7, "lb"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/icky/front.svg",
  37001. extra: 813/782,
  37002. bottom: 66/879
  37003. }
  37004. },
  37005. back: {
  37006. height: math.unit(6 + 6/12, "feet"),
  37007. weight: math.unit(7, "lb"),
  37008. name: "Back",
  37009. image: {
  37010. source: "./media/characters/icky/back.svg",
  37011. extra: 754/735,
  37012. bottom: 56/810
  37013. }
  37014. },
  37015. },
  37016. [
  37017. {
  37018. name: "Normal",
  37019. height: math.unit(6 + 6/12, "feet"),
  37020. default: true
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(15, "feet"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/rojas/front.svg",
  37032. extra: 1462/1408,
  37033. bottom: 95/1557
  37034. }
  37035. },
  37036. back: {
  37037. height: math.unit(15, "feet"),
  37038. name: "Back",
  37039. image: {
  37040. source: "./media/characters/rojas/back.svg",
  37041. extra: 1023/954,
  37042. bottom: 28/1051
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(15, "feet"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37056. {
  37057. frontHuman: {
  37058. height: math.unit(5 + 7/12, "feet"),
  37059. name: "Front (Human)",
  37060. image: {
  37061. source: "./media/characters/alek-dryagan/front-human.svg",
  37062. extra: 1687/1667,
  37063. bottom: 69/1756
  37064. }
  37065. },
  37066. backHuman: {
  37067. height: math.unit(5 + 7/12, "feet"),
  37068. name: "Back (Human)",
  37069. image: {
  37070. source: "./media/characters/alek-dryagan/back-human.svg",
  37071. extra: 1670/1649,
  37072. bottom: 65/1735
  37073. }
  37074. },
  37075. frontDemi: {
  37076. height: math.unit(65, "feet"),
  37077. name: "Front (Demi)",
  37078. image: {
  37079. source: "./media/characters/alek-dryagan/front-demi.svg",
  37080. extra: 1669/1642,
  37081. bottom: 49/1718
  37082. }
  37083. },
  37084. backDemi: {
  37085. height: math.unit(65, "feet"),
  37086. name: "Back (Demi)",
  37087. image: {
  37088. source: "./media/characters/alek-dryagan/back-demi.svg",
  37089. extra: 1658/1637,
  37090. bottom: 40/1698
  37091. }
  37092. },
  37093. mawHuman: {
  37094. height: math.unit(0.3, "feet"),
  37095. name: "Maw (Human)",
  37096. image: {
  37097. source: "./media/characters/alek-dryagan/maw-human.svg"
  37098. }
  37099. },
  37100. mawDemi: {
  37101. height: math.unit(3.8, "feet"),
  37102. name: "Maw (Demi)",
  37103. image: {
  37104. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Normal",
  37111. height: math.unit(5 + 7/12, "feet"),
  37112. default: true
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37118. {
  37119. frontHuman: {
  37120. height: math.unit(5 + 2/12, "feet"),
  37121. name: "Front (Human)",
  37122. image: {
  37123. source: "./media/characters/gen/front-human.svg",
  37124. extra: 1627/1538,
  37125. bottom: 71/1698
  37126. }
  37127. },
  37128. backHuman: {
  37129. height: math.unit(5 + 2/12, "feet"),
  37130. name: "Back (Human)",
  37131. image: {
  37132. source: "./media/characters/gen/back-human.svg",
  37133. extra: 1638/1548,
  37134. bottom: 69/1707
  37135. }
  37136. },
  37137. frontDemi: {
  37138. height: math.unit(5 + 2/12, "feet"),
  37139. name: "Front (Demi)",
  37140. image: {
  37141. source: "./media/characters/gen/front-demi.svg",
  37142. extra: 1627/1538,
  37143. bottom: 71/1698
  37144. }
  37145. },
  37146. backDemi: {
  37147. height: math.unit(5 + 2/12, "feet"),
  37148. name: "Back (Demi)",
  37149. image: {
  37150. source: "./media/characters/gen/back-demi.svg",
  37151. extra: 1638/1548,
  37152. bottom: 69/1707
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(5 + 2/12, "feet"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37166. {
  37167. frontImp: {
  37168. height: math.unit(1 + 11/12, "feet"),
  37169. name: "Front (Imp)",
  37170. image: {
  37171. source: "./media/characters/max-kobold/front-imp.svg",
  37172. extra: 1238/1134,
  37173. bottom: 81/1319
  37174. }
  37175. },
  37176. backImp: {
  37177. height: math.unit(1 + 11/12, "feet"),
  37178. name: "Back (Imp)",
  37179. image: {
  37180. source: "./media/characters/max-kobold/back-imp.svg",
  37181. extra: 1334/1175,
  37182. bottom: 34/1368
  37183. }
  37184. },
  37185. frontDemi: {
  37186. height: math.unit(5 + 9/12, "feet"),
  37187. name: "Front (Demi)",
  37188. image: {
  37189. source: "./media/characters/max-kobold/front-demi.svg",
  37190. extra: 1715/1685,
  37191. bottom: 54/1769
  37192. }
  37193. },
  37194. backDemi: {
  37195. height: math.unit(5 + 9/12, "feet"),
  37196. name: "Back (Demi)",
  37197. image: {
  37198. source: "./media/characters/max-kobold/back-demi.svg",
  37199. extra: 1752/1729,
  37200. bottom: 41/1793
  37201. }
  37202. },
  37203. handImp: {
  37204. height: math.unit(0.45, "feet"),
  37205. name: "Hand (Imp)",
  37206. image: {
  37207. source: "./media/characters/max-kobold/hand.svg"
  37208. }
  37209. },
  37210. pawImp: {
  37211. height: math.unit(0.46, "feet"),
  37212. name: "Paw (Imp)",
  37213. image: {
  37214. source: "./media/characters/max-kobold/paw.svg"
  37215. }
  37216. },
  37217. handDemi: {
  37218. height: math.unit(0.80, "feet"),
  37219. name: "Hand (Demi)",
  37220. image: {
  37221. source: "./media/characters/max-kobold/hand.svg"
  37222. }
  37223. },
  37224. pawDemi: {
  37225. height: math.unit(1.1, "feet"),
  37226. name: "Paw (Demi)",
  37227. image: {
  37228. source: "./media/characters/max-kobold/paw.svg"
  37229. }
  37230. },
  37231. headImp: {
  37232. height: math.unit(1.33, "feet"),
  37233. name: "Head (Imp)",
  37234. image: {
  37235. source: "./media/characters/max-kobold/head-imp.svg"
  37236. }
  37237. },
  37238. mawImp: {
  37239. height: math.unit(0.75, "feet"),
  37240. name: "Maw (Imp)",
  37241. image: {
  37242. source: "./media/characters/max-kobold/maw-imp.svg"
  37243. }
  37244. },
  37245. mawDemi: {
  37246. height: math.unit(0.42, "feet"),
  37247. name: "Maw (Demi)",
  37248. image: {
  37249. source: "./media/characters/max-kobold/maw-demi.svg"
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(1 + 11/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(7 + 5/12, "feet"),
  37266. name: "Front",
  37267. image: {
  37268. source: "./media/characters/carbon/front.svg",
  37269. extra: 1754/1689,
  37270. bottom: 65/1819
  37271. }
  37272. },
  37273. back: {
  37274. height: math.unit(7 + 5/12, "feet"),
  37275. name: "Back",
  37276. image: {
  37277. source: "./media/characters/carbon/back.svg",
  37278. extra: 1762/1695,
  37279. bottom: 24/1786
  37280. }
  37281. },
  37282. frontGigantamax: {
  37283. height: math.unit(150, "feet"),
  37284. name: "Front (Gigantamax)",
  37285. image: {
  37286. source: "./media/characters/carbon/front-gigantamax.svg",
  37287. extra: 1826/1669,
  37288. bottom: 59/1885
  37289. }
  37290. },
  37291. backGigantamax: {
  37292. height: math.unit(150, "feet"),
  37293. name: "Back (Gigantamax)",
  37294. image: {
  37295. source: "./media/characters/carbon/back-gigantamax.svg",
  37296. extra: 1796/1653,
  37297. bottom: 53/1849
  37298. }
  37299. },
  37300. maw: {
  37301. height: math.unit(0.48, "feet"),
  37302. name: "Maw",
  37303. image: {
  37304. source: "./media/characters/carbon/maw.svg"
  37305. }
  37306. },
  37307. mawGigantamax: {
  37308. height: math.unit(7.5, "feet"),
  37309. name: "Maw (Gigantamax)",
  37310. image: {
  37311. source: "./media/characters/carbon/maw-gigantamax.svg"
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(7 + 5/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(6, "feet"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/maverick/front.svg",
  37331. extra: 1672/1661,
  37332. bottom: 85/1757
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(6, "feet"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/maverick/back.svg",
  37340. extra: 1642/1631,
  37341. bottom: 38/1680
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(6, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(15, "feet"),
  37358. weight: math.unit(615, "lb"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/grockle/front.svg",
  37362. extra: 1535/1427,
  37363. bottom: 56/1591
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(15, "feet"),
  37371. default: true
  37372. },
  37373. {
  37374. name: "Large",
  37375. height: math.unit(150, "feet")
  37376. },
  37377. {
  37378. name: "Macro",
  37379. height: math.unit(1876, "feet")
  37380. },
  37381. {
  37382. name: "Mega Macro",
  37383. height: math.unit(121940, "feet")
  37384. },
  37385. {
  37386. name: "Giga Macro",
  37387. height: math.unit(750, "km")
  37388. },
  37389. {
  37390. name: "Tera Macro",
  37391. height: math.unit(750000, "km")
  37392. },
  37393. {
  37394. name: "Galactic",
  37395. height: math.unit(1.4e5, "km")
  37396. },
  37397. {
  37398. name: "Godlike",
  37399. height: math.unit(9.8e280, "galaxies")
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(11, "meters"),
  37408. weight: math.unit(20, "tonnes"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/alistair/front.svg",
  37412. extra: 1265/1009,
  37413. bottom: 93/1358
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(11, "meters"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(5 + 8/12, "feet"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/haruka/front.svg",
  37433. extra: 2012/1952,
  37434. bottom: 0/2012
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Normal",
  37441. height: math.unit(5 + 8/12, "feet"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37448. {
  37449. back: {
  37450. height: math.unit(9, "feet"),
  37451. name: "Back",
  37452. image: {
  37453. source: "./media/characters/vivian-sylveon/back.svg",
  37454. extra: 1853/1714,
  37455. bottom: 0/1853
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(9, "feet"),
  37463. default: true
  37464. },
  37465. {
  37466. name: "Macro",
  37467. height: math.unit(500, "feet")
  37468. },
  37469. {
  37470. name: "Megamacro",
  37471. height: math.unit(600, "miles")
  37472. },
  37473. {
  37474. name: "Gigamacro",
  37475. height: math.unit(30000, "miles")
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37481. {
  37482. anthro: {
  37483. height: math.unit(5 + 10/12, "feet"),
  37484. weight: math.unit(100, "lb"),
  37485. name: "Anthro",
  37486. image: {
  37487. source: "./media/characters/daiki/anthro.svg",
  37488. extra: 1115/1027,
  37489. bottom: 69/1184
  37490. }
  37491. },
  37492. feral: {
  37493. height: math.unit(200, "feet"),
  37494. name: "Feral",
  37495. image: {
  37496. source: "./media/characters/daiki/feral.svg",
  37497. extra: 1256/313,
  37498. bottom: 39/1295
  37499. }
  37500. },
  37501. feralHead: {
  37502. height: math.unit(171, "feet"),
  37503. name: "Feral Head",
  37504. image: {
  37505. source: "./media/characters/daiki/feral-head.svg"
  37506. }
  37507. },
  37508. manaDragon: {
  37509. height: math.unit(170, "meters"),
  37510. name: "Mana-dragon",
  37511. image: {
  37512. source: "./media/characters/daiki/mana-dragon.svg",
  37513. extra: 763/420,
  37514. bottom: 97/860
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(5 + 10/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37528. {
  37529. fullyEquippedFront: {
  37530. height: math.unit(3 + 1/12, "feet"),
  37531. weight: math.unit(24, "lb"),
  37532. name: "Fully Equipped (Front)",
  37533. image: {
  37534. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37535. extra: 687/605,
  37536. bottom: 18/705
  37537. }
  37538. },
  37539. fullyEquippedBack: {
  37540. height: math.unit(3 + 1/12, "feet"),
  37541. weight: math.unit(24, "lb"),
  37542. name: "Fully Equipped (Back)",
  37543. image: {
  37544. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37545. extra: 689/590,
  37546. bottom: 18/707
  37547. }
  37548. },
  37549. dailyWear: {
  37550. height: math.unit(3 + 1/12, "feet"),
  37551. weight: math.unit(24, "lb"),
  37552. name: "Daily Wear",
  37553. image: {
  37554. source: "./media/characters/tea-spot/daily-wear.svg",
  37555. extra: 701/620,
  37556. bottom: 21/722
  37557. }
  37558. },
  37559. maidWork: {
  37560. height: math.unit(3 + 1/12, "feet"),
  37561. weight: math.unit(24, "lb"),
  37562. name: "Maid Work",
  37563. image: {
  37564. source: "./media/characters/tea-spot/maid-work.svg",
  37565. extra: 693/609,
  37566. bottom: 15/708
  37567. }
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "Normal",
  37573. height: math.unit(3 + 1/12, "feet"),
  37574. default: true
  37575. },
  37576. ]
  37577. ))
  37578. characterMakers.push(() => makeCharacter(
  37579. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37580. {
  37581. front: {
  37582. height: math.unit(175, "cm"),
  37583. weight: math.unit(75, "kg"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/chee/front.svg",
  37587. extra: 1796/1740,
  37588. bottom: 40/1836
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Micro-Micro",
  37595. height: math.unit(1, "nm")
  37596. },
  37597. {
  37598. name: "Micro-erst",
  37599. height: math.unit(1, "micrometer")
  37600. },
  37601. {
  37602. name: "Micro-er",
  37603. height: math.unit(1, "cm")
  37604. },
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(175, "cm"),
  37608. default: true
  37609. },
  37610. {
  37611. name: "Macro",
  37612. height: math.unit(100, "m")
  37613. },
  37614. {
  37615. name: "Macro-er",
  37616. height: math.unit(1, "km")
  37617. },
  37618. {
  37619. name: "Macro-erst",
  37620. height: math.unit(10, "km")
  37621. },
  37622. {
  37623. name: "Macro-Macro",
  37624. height: math.unit(100, "km")
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(11 + 9/12, "feet"),
  37633. weight: math.unit(935, "lb"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/kingsley/front.svg",
  37637. extra: 1803/1674,
  37638. bottom: 127/1930
  37639. }
  37640. },
  37641. frontNude: {
  37642. height: math.unit(11 + 9/12, "feet"),
  37643. weight: math.unit(935, "lb"),
  37644. name: "Front (Nude)",
  37645. image: {
  37646. source: "./media/characters/kingsley/front-nude.svg",
  37647. extra: 1803/1674,
  37648. bottom: 127/1930
  37649. }
  37650. },
  37651. },
  37652. [
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(11 + 9/12, "feet"),
  37656. default: true
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37662. {
  37663. side: {
  37664. height: math.unit(9, "feet"),
  37665. name: "Side",
  37666. image: {
  37667. source: "./media/characters/rymel/side.svg",
  37668. extra: 792/469,
  37669. bottom: 121/913
  37670. }
  37671. },
  37672. maw: {
  37673. height: math.unit(2.4, "meters"),
  37674. name: "Maw",
  37675. image: {
  37676. source: "./media/characters/rymel/maw.svg"
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "House Drake",
  37683. height: math.unit(2, "feet")
  37684. },
  37685. {
  37686. name: "Reduced",
  37687. height: math.unit(4.5, "feet")
  37688. },
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(9, "feet"),
  37692. default: true
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(1.74, "meters"),
  37701. weight: math.unit(55, "kg"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/rubus/front.svg",
  37705. extra: 1894/1742,
  37706. bottom: 44/1938
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(1.74, "meters"),
  37714. default: true
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37720. {
  37721. front: {
  37722. height: math.unit(5 + 2/12, "feet"),
  37723. weight: math.unit(112, "lb"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/cassie-kingston/front.svg",
  37727. extra: 1438/1390,
  37728. bottom: 47/1485
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(5 + 2/12, "feet"),
  37736. default: true
  37737. },
  37738. {
  37739. name: "Macro",
  37740. height: math.unit(128, "feet")
  37741. },
  37742. {
  37743. name: "Megamacro",
  37744. height: math.unit(2.56, "miles")
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(7, "feet"),
  37753. name: "Front",
  37754. image: {
  37755. source: "./media/characters/fox/front.svg",
  37756. extra: 1798/1703,
  37757. bottom: 55/1853
  37758. }
  37759. },
  37760. back: {
  37761. height: math.unit(7, "feet"),
  37762. name: "Back",
  37763. image: {
  37764. source: "./media/characters/fox/back.svg",
  37765. extra: 1748/1649,
  37766. bottom: 32/1780
  37767. }
  37768. },
  37769. head: {
  37770. height: math.unit(1.95, "feet"),
  37771. name: "Head",
  37772. image: {
  37773. source: "./media/characters/fox/head.svg"
  37774. }
  37775. },
  37776. dick: {
  37777. height: math.unit(1.33, "feet"),
  37778. name: "Dick",
  37779. image: {
  37780. source: "./media/characters/fox/dick.svg"
  37781. }
  37782. },
  37783. foot: {
  37784. height: math.unit(1, "feet"),
  37785. name: "Foot",
  37786. image: {
  37787. source: "./media/characters/fox/foot.svg"
  37788. }
  37789. },
  37790. paw: {
  37791. height: math.unit(0.92, "feet"),
  37792. name: "Paw",
  37793. image: {
  37794. source: "./media/characters/fox/paw.svg"
  37795. }
  37796. },
  37797. },
  37798. [
  37799. {
  37800. name: "Small",
  37801. height: math.unit(3, "inches")
  37802. },
  37803. {
  37804. name: "\"Realistic\"",
  37805. height: math.unit(7, "feet")
  37806. },
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(150, "feet"),
  37810. default: true
  37811. },
  37812. {
  37813. name: "BIG",
  37814. height: math.unit(1200, "feet")
  37815. },
  37816. {
  37817. name: "👀",
  37818. height: math.unit(5, "miles")
  37819. },
  37820. {
  37821. name: "👀👀👀",
  37822. height: math.unit(64, "miles")
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(625, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/asonja-rossa/front.svg",
  37834. extra: 1833/1686,
  37835. bottom: 24/1857
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(625, "feet"),
  37840. name: "Back",
  37841. image: {
  37842. source: "./media/characters/asonja-rossa/back.svg",
  37843. extra: 1852/1753,
  37844. bottom: 26/1878
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Macro",
  37851. height: math.unit(625, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37858. {
  37859. side: {
  37860. height: math.unit(8, "feet"),
  37861. name: "Side",
  37862. image: {
  37863. source: "./media/characters/rezukii/side.svg",
  37864. extra: 979/542,
  37865. bottom: 87/1066
  37866. }
  37867. },
  37868. sitting: {
  37869. height: math.unit(14.6, "feet"),
  37870. name: "Sitting",
  37871. image: {
  37872. source: "./media/characters/rezukii/sitting.svg",
  37873. extra: 1023/813,
  37874. bottom: 45/1068
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Tiny",
  37881. height: math.unit(2, "feet")
  37882. },
  37883. {
  37884. name: "Smol",
  37885. height: math.unit(4, "feet")
  37886. },
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(8, "feet"),
  37890. default: true
  37891. },
  37892. {
  37893. name: "Big",
  37894. height: math.unit(12, "feet")
  37895. },
  37896. {
  37897. name: "Macro",
  37898. height: math.unit(30, "feet")
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37904. {
  37905. front: {
  37906. height: math.unit(14, "feet"),
  37907. weight: math.unit(9.5, "tonnes"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/dawnheart/front.svg",
  37911. extra: 2792/2675,
  37912. bottom: 64/2856
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(14, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37926. {
  37927. front: {
  37928. height: math.unit(1.7, "m"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/gladi/front.svg",
  37932. extra: 1460/1362,
  37933. bottom: 19/1479
  37934. }
  37935. },
  37936. back: {
  37937. height: math.unit(1.7, "m"),
  37938. name: "Back",
  37939. image: {
  37940. source: "./media/characters/gladi/back.svg",
  37941. extra: 1459/1357,
  37942. bottom: 12/1471
  37943. }
  37944. },
  37945. feral: {
  37946. height: math.unit(2.05, "m"),
  37947. name: "Feral",
  37948. image: {
  37949. source: "./media/characters/gladi/feral.svg",
  37950. extra: 821/557,
  37951. bottom: 91/912
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Shortest",
  37958. height: math.unit(70, "cm")
  37959. },
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(1.7, "m")
  37963. },
  37964. {
  37965. name: "Macro",
  37966. height: math.unit(10, "m"),
  37967. default: true
  37968. },
  37969. {
  37970. name: "Tallest",
  37971. height: math.unit(200, "m")
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37977. {
  37978. front: {
  37979. height: math.unit(5 + 7/12, "feet"),
  37980. weight: math.unit(2, "tons"),
  37981. name: "Front",
  37982. image: {
  37983. source: "./media/characters/erdno/front.svg",
  37984. extra: 1234/1129,
  37985. bottom: 35/1269
  37986. }
  37987. },
  37988. angled: {
  37989. height: math.unit(5 + 7/12, "feet"),
  37990. weight: math.unit(2, "tons"),
  37991. name: "Angled",
  37992. image: {
  37993. source: "./media/characters/erdno/angled.svg",
  37994. extra: 1185/1139,
  37995. bottom: 36/1221
  37996. }
  37997. },
  37998. side: {
  37999. height: math.unit(5 + 7/12, "feet"),
  38000. weight: math.unit(2, "tons"),
  38001. name: "Side",
  38002. image: {
  38003. source: "./media/characters/erdno/side.svg",
  38004. extra: 1191/1144,
  38005. bottom: 40/1231
  38006. }
  38007. },
  38008. back: {
  38009. height: math.unit(5 + 7/12, "feet"),
  38010. weight: math.unit(2, "tons"),
  38011. name: "Back",
  38012. image: {
  38013. source: "./media/characters/erdno/back.svg",
  38014. extra: 1202/1146,
  38015. bottom: 17/1219
  38016. }
  38017. },
  38018. frontNsfw: {
  38019. height: math.unit(5 + 7/12, "feet"),
  38020. weight: math.unit(2, "tons"),
  38021. name: "Front (NSFW)",
  38022. image: {
  38023. source: "./media/characters/erdno/front-nsfw.svg",
  38024. extra: 1234/1129,
  38025. bottom: 35/1269
  38026. }
  38027. },
  38028. angledNsfw: {
  38029. height: math.unit(5 + 7/12, "feet"),
  38030. weight: math.unit(2, "tons"),
  38031. name: "Angled (NSFW)",
  38032. image: {
  38033. source: "./media/characters/erdno/angled-nsfw.svg",
  38034. extra: 1185/1139,
  38035. bottom: 36/1221
  38036. }
  38037. },
  38038. sideNsfw: {
  38039. height: math.unit(5 + 7/12, "feet"),
  38040. weight: math.unit(2, "tons"),
  38041. name: "Side (NSFW)",
  38042. image: {
  38043. source: "./media/characters/erdno/side-nsfw.svg",
  38044. extra: 1191/1144,
  38045. bottom: 40/1231
  38046. }
  38047. },
  38048. backNsfw: {
  38049. height: math.unit(5 + 7/12, "feet"),
  38050. weight: math.unit(2, "tons"),
  38051. name: "Back (NSFW)",
  38052. image: {
  38053. source: "./media/characters/erdno/back-nsfw.svg",
  38054. extra: 1202/1146,
  38055. bottom: 17/1219
  38056. }
  38057. },
  38058. frontHyper: {
  38059. height: math.unit(5 + 7/12, "feet"),
  38060. weight: math.unit(2, "tons"),
  38061. name: "Front (Hyper)",
  38062. image: {
  38063. source: "./media/characters/erdno/front-hyper.svg",
  38064. extra: 1298/1136,
  38065. bottom: 35/1333
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(5 + 7/12, "feet"),
  38073. default: true
  38074. },
  38075. {
  38076. name: "Big",
  38077. height: math.unit(5.7, "meters")
  38078. },
  38079. {
  38080. name: "Macro",
  38081. height: math.unit(5.7, "kilometers")
  38082. },
  38083. {
  38084. name: "Megamacro",
  38085. height: math.unit(5.7, "earths")
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(5 + 10/12, "feet"),
  38094. weight: math.unit(150, "lb"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/jamie/front.svg",
  38098. extra: 1908/1768,
  38099. bottom: 19/1927
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Minimum",
  38106. height: math.unit(2, "cm")
  38107. },
  38108. {
  38109. name: "Micro",
  38110. height: math.unit(3, "inches")
  38111. },
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(5 + 10/12, "feet"),
  38115. default: true
  38116. },
  38117. {
  38118. name: "Macro",
  38119. height: math.unit(150, "feet")
  38120. },
  38121. {
  38122. name: "Megamacro",
  38123. height: math.unit(10000, "m")
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(2, "meters"),
  38132. weight: math.unit(100, "kg"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/shiron/front.svg",
  38136. extra: 2103/1985,
  38137. bottom: 98/2201
  38138. }
  38139. },
  38140. back: {
  38141. height: math.unit(2, "meters"),
  38142. weight: math.unit(100, "kg"),
  38143. name: "Back",
  38144. image: {
  38145. source: "./media/characters/shiron/back.svg",
  38146. extra: 2110/2015,
  38147. bottom: 89/2199
  38148. }
  38149. },
  38150. hand: {
  38151. height: math.unit(0.96, "feet"),
  38152. name: "Hand",
  38153. image: {
  38154. source: "./media/characters/shiron/hand.svg"
  38155. }
  38156. },
  38157. foot: {
  38158. height: math.unit(1.464, "feet"),
  38159. name: "Foot",
  38160. image: {
  38161. source: "./media/characters/shiron/foot.svg"
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(2, "meters")
  38169. },
  38170. {
  38171. name: "Macro",
  38172. height: math.unit(500, "meters"),
  38173. default: true
  38174. },
  38175. {
  38176. name: "Megamacro",
  38177. height: math.unit(20, "km")
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(6, "feet"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/sam/front.svg",
  38189. extra: 849/826,
  38190. bottom: 19/868
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(6, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(8 + 4/12, "feet"),
  38207. weight: math.unit(122, "kg"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/namori-kurogawa/front.svg",
  38211. extra: 1894/1576,
  38212. bottom: 34/1928
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(8 + 4/12, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(9, "feet"),
  38229. weight: math.unit(621, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/unmru/front.svg",
  38233. extra: 1853/1747,
  38234. bottom: 73/1926
  38235. }
  38236. },
  38237. side: {
  38238. height: math.unit(9, "feet"),
  38239. weight: math.unit(621, "lb"),
  38240. name: "Side",
  38241. image: {
  38242. source: "./media/characters/unmru/side.svg",
  38243. extra: 1781/1671,
  38244. bottom: 127/1908
  38245. }
  38246. },
  38247. back: {
  38248. height: math.unit(9, "feet"),
  38249. weight: math.unit(621, "lb"),
  38250. name: "Back",
  38251. image: {
  38252. source: "./media/characters/unmru/back.svg",
  38253. extra: 1894/1765,
  38254. bottom: 75/1969
  38255. }
  38256. },
  38257. dick: {
  38258. height: math.unit(3, "feet"),
  38259. weight: math.unit(35, "lb"),
  38260. name: "Dick",
  38261. image: {
  38262. source: "./media/characters/unmru/dick.svg"
  38263. }
  38264. },
  38265. },
  38266. [
  38267. {
  38268. name: "Normal",
  38269. height: math.unit(9, "feet")
  38270. },
  38271. {
  38272. name: "Natural",
  38273. height: math.unit(27, "feet"),
  38274. default: true
  38275. },
  38276. {
  38277. name: "Giant",
  38278. height: math.unit(90, "feet")
  38279. },
  38280. {
  38281. name: "Kaiju",
  38282. height: math.unit(270, "feet")
  38283. },
  38284. {
  38285. name: "Macro",
  38286. height: math.unit(900, "feet")
  38287. },
  38288. {
  38289. name: "Macro+",
  38290. height: math.unit(2700, "feet")
  38291. },
  38292. {
  38293. name: "Megamacro",
  38294. height: math.unit(9000, "feet")
  38295. },
  38296. {
  38297. name: "City-Crushing",
  38298. height: math.unit(27000, "feet")
  38299. },
  38300. {
  38301. name: "Mountain-Mashing",
  38302. height: math.unit(90000, "feet")
  38303. },
  38304. {
  38305. name: "Earth-Eclipsing",
  38306. height: math.unit(2.7e8, "feet")
  38307. },
  38308. {
  38309. name: "Sol-Swallowing",
  38310. height: math.unit(9e10, "feet")
  38311. },
  38312. {
  38313. name: "Majoris-Munching",
  38314. height: math.unit(2.7e13, "feet")
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38320. {
  38321. front: {
  38322. height: math.unit(1, "inch"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/squeaks-mouse/front.svg",
  38326. extra: 352/308,
  38327. bottom: 25/377
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Micro",
  38334. height: math.unit(1, "inch"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38341. {
  38342. side: {
  38343. height: math.unit(35, "feet"),
  38344. name: "Side",
  38345. image: {
  38346. source: "./media/characters/sayko/side.svg",
  38347. extra: 1697/1021,
  38348. bottom: 82/1779
  38349. }
  38350. },
  38351. head: {
  38352. height: math.unit(16, "feet"),
  38353. name: "Head",
  38354. image: {
  38355. source: "./media/characters/sayko/head.svg"
  38356. }
  38357. },
  38358. forepaw: {
  38359. height: math.unit(7.85, "feet"),
  38360. name: "Forepaw",
  38361. image: {
  38362. source: "./media/characters/sayko/forepaw.svg"
  38363. }
  38364. },
  38365. hindpaw: {
  38366. height: math.unit(8.8, "feet"),
  38367. name: "Hindpaw",
  38368. image: {
  38369. source: "./media/characters/sayko/hindpaw.svg"
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(35, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Colossus",
  38381. height: math.unit(100, "meters")
  38382. },
  38383. {
  38384. name: "\"Small\" Deity",
  38385. height: math.unit(1, "km")
  38386. },
  38387. {
  38388. name: "\"Large\" Deity",
  38389. height: math.unit(15, "km")
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38395. {
  38396. front: {
  38397. height: math.unit(6, "feet"),
  38398. weight: math.unit(250, "lb"),
  38399. name: "Front",
  38400. image: {
  38401. source: "./media/characters/mukiro/front.svg",
  38402. extra: 1368/1310,
  38403. bottom: 34/1402
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(6, "feet"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38417. {
  38418. front: {
  38419. height: math.unit(12 + 4/12, "feet"),
  38420. name: "Front",
  38421. image: {
  38422. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38423. extra: 1346/1311,
  38424. bottom: 65/1411
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Base",
  38431. height: math.unit(12 + 4/12, "feet"),
  38432. default: true
  38433. },
  38434. {
  38435. name: "Macro",
  38436. height: math.unit(150, "feet")
  38437. },
  38438. {
  38439. name: "Mega",
  38440. height: math.unit(2, "miles")
  38441. },
  38442. {
  38443. name: "Demi God",
  38444. height: math.unit(4, "AU")
  38445. },
  38446. {
  38447. name: "God Size",
  38448. height: math.unit(1, "universe")
  38449. },
  38450. ]
  38451. ))
  38452. characterMakers.push(() => makeCharacter(
  38453. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38454. {
  38455. front: {
  38456. height: math.unit(3 + 3/12, "feet"),
  38457. weight: math.unit(88, "lb"),
  38458. name: "Front",
  38459. image: {
  38460. source: "./media/characters/trey/front.svg",
  38461. extra: 1815/1509,
  38462. bottom: 60/1875
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(3 + 3/12, "feet"),
  38470. default: true
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38476. {
  38477. front: {
  38478. height: math.unit(4, "meters"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/adelonda/front.svg",
  38482. extra: 1077/982,
  38483. bottom: 39/1116
  38484. }
  38485. },
  38486. back: {
  38487. height: math.unit(4, "meters"),
  38488. name: "Back",
  38489. image: {
  38490. source: "./media/characters/adelonda/back.svg",
  38491. extra: 1105/1003,
  38492. bottom: 25/1130
  38493. }
  38494. },
  38495. feral: {
  38496. height: math.unit(40/1.5, "meters"),
  38497. name: "Feral",
  38498. image: {
  38499. source: "./media/characters/adelonda/feral.svg",
  38500. extra: 597/271,
  38501. bottom: 387/984
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(4, "meters"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(8 + 4/12, "feet"),
  38518. weight: math.unit(670, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/acadiel/front.svg",
  38522. extra: 1901/1595,
  38523. bottom: 142/2043
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(8 + 4/12, "feet"),
  38531. default: true
  38532. },
  38533. {
  38534. name: "Macro",
  38535. height: math.unit(200, "feet")
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(6 + 2/12, "feet"),
  38544. weight: math.unit(185, "lb"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/kayne-ein/front.svg",
  38548. extra: 1780/1560,
  38549. bottom: 81/1861
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(6 + 2/12, "feet"),
  38557. default: true
  38558. },
  38559. {
  38560. name: "Transformation Stage",
  38561. height: math.unit(15, "feet")
  38562. },
  38563. {
  38564. name: "Macro",
  38565. height: math.unit(150, "feet")
  38566. },
  38567. {
  38568. name: "Earth's Shadow",
  38569. height: math.unit(6200, "miles")
  38570. },
  38571. {
  38572. name: "Universal Demon",
  38573. height: math.unit(28e9, "parsecs")
  38574. },
  38575. {
  38576. name: "Multiverse God",
  38577. height: math.unit(3, "multiverses")
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(5 + 5/12, "feet"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/fawn/front.svg",
  38589. extra: 1873/1731,
  38590. bottom: 95/1968
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(5 + 5/12, "feet"),
  38595. name: "Back",
  38596. image: {
  38597. source: "./media/characters/fawn/back.svg",
  38598. extra: 1813/1700,
  38599. bottom: 14/1827
  38600. }
  38601. },
  38602. hoof: {
  38603. height: math.unit(1.45, "feet"),
  38604. name: "Hoof",
  38605. image: {
  38606. source: "./media/characters/fawn/hoof.svg"
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(5 + 5/12, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(2 + 5/12, "feet"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/orion/front.svg",
  38626. extra: 1366/1304,
  38627. bottom: 43/1409
  38628. }
  38629. },
  38630. paw: {
  38631. height: math.unit(0.52, "feet"),
  38632. name: "Paw",
  38633. image: {
  38634. source: "./media/characters/orion/paw.svg"
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(2 + 5/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(5 + 10/12, "feet"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/vera/front.svg",
  38654. extra: 1680/1575,
  38655. bottom: 49/1729
  38656. }
  38657. },
  38658. back: {
  38659. height: math.unit(5 + 10/12, "feet"),
  38660. name: "Back",
  38661. image: {
  38662. source: "./media/characters/vera/back.svg",
  38663. extra: 1700/1588,
  38664. bottom: 18/1718
  38665. }
  38666. },
  38667. arcanine: {
  38668. height: math.unit(6 + 8/12, "feet"),
  38669. name: "Arcanine",
  38670. image: {
  38671. source: "./media/characters/vera/arcanine.svg",
  38672. extra: 1590/1511,
  38673. bottom: 71/1661
  38674. }
  38675. },
  38676. maw: {
  38677. height: math.unit(0.82, "feet"),
  38678. name: "Maw",
  38679. image: {
  38680. source: "./media/characters/vera/maw.svg"
  38681. }
  38682. },
  38683. mawArcanine: {
  38684. height: math.unit(0.97, "feet"),
  38685. name: "Maw (Arcanine)",
  38686. image: {
  38687. source: "./media/characters/vera/maw-arcanine.svg"
  38688. }
  38689. },
  38690. paw: {
  38691. height: math.unit(0.75, "feet"),
  38692. name: "Paw",
  38693. image: {
  38694. source: "./media/characters/vera/paw.svg"
  38695. }
  38696. },
  38697. pawprint: {
  38698. height: math.unit(0.52, "feet"),
  38699. name: "Pawprint",
  38700. image: {
  38701. source: "./media/characters/vera/pawprint.svg"
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(5 + 10/12, "feet"),
  38709. default: true
  38710. },
  38711. {
  38712. name: "Macro",
  38713. height: math.unit(75, "feet")
  38714. },
  38715. ]
  38716. ))
  38717. characterMakers.push(() => makeCharacter(
  38718. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38719. {
  38720. front: {
  38721. height: math.unit(4, "feet"),
  38722. weight: math.unit(40, "lb"),
  38723. name: "Front",
  38724. image: {
  38725. source: "./media/characters/orvan-rabbit/front.svg",
  38726. extra: 1896/1642,
  38727. bottom: 29/1925
  38728. }
  38729. },
  38730. },
  38731. [
  38732. {
  38733. name: "Normal",
  38734. height: math.unit(4, "feet"),
  38735. default: true
  38736. },
  38737. ]
  38738. ))
  38739. characterMakers.push(() => makeCharacter(
  38740. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38741. {
  38742. front: {
  38743. height: math.unit(6, "feet"),
  38744. weight: math.unit(168, "lb"),
  38745. name: "Front",
  38746. image: {
  38747. source: "./media/characters/lisa/front.svg",
  38748. extra: 2065/1867,
  38749. bottom: 46/2111
  38750. }
  38751. },
  38752. back: {
  38753. height: math.unit(6, "feet"),
  38754. weight: math.unit(168, "lb"),
  38755. name: "Back",
  38756. image: {
  38757. source: "./media/characters/lisa/back.svg",
  38758. extra: 1982/1838,
  38759. bottom: 29/2011
  38760. }
  38761. },
  38762. maw: {
  38763. height: math.unit(0.81, "feet"),
  38764. name: "Maw",
  38765. image: {
  38766. source: "./media/characters/lisa/maw.svg"
  38767. }
  38768. },
  38769. paw: {
  38770. height: math.unit(0.9, "feet"),
  38771. name: "Paw",
  38772. image: {
  38773. source: "./media/characters/lisa/paw.svg"
  38774. }
  38775. },
  38776. caribousune: {
  38777. height: math.unit(7 + 2/12, "feet"),
  38778. weight: math.unit(268, "lb"),
  38779. name: "Caribousune",
  38780. image: {
  38781. source: "./media/characters/lisa/caribousune.svg",
  38782. extra: 1843/1633,
  38783. bottom: 29/1872
  38784. }
  38785. },
  38786. frontCaribousune: {
  38787. height: math.unit(7 + 2/12, "feet"),
  38788. weight: math.unit(268, "lb"),
  38789. name: "Front (Caribousune)",
  38790. image: {
  38791. source: "./media/characters/lisa/front-caribousune.svg",
  38792. extra: 1818/1638,
  38793. bottom: 52/1870
  38794. }
  38795. },
  38796. sideCaribousune: {
  38797. height: math.unit(7 + 2/12, "feet"),
  38798. weight: math.unit(268, "lb"),
  38799. name: "Side (Caribousune)",
  38800. image: {
  38801. source: "./media/characters/lisa/side-caribousune.svg",
  38802. extra: 1851/1635,
  38803. bottom: 16/1867
  38804. }
  38805. },
  38806. backCaribousune: {
  38807. height: math.unit(7 + 2/12, "feet"),
  38808. weight: math.unit(268, "lb"),
  38809. name: "Back (Caribousune)",
  38810. image: {
  38811. source: "./media/characters/lisa/back-caribousune.svg",
  38812. extra: 1801/1604,
  38813. bottom: 44/1845
  38814. }
  38815. },
  38816. caribou: {
  38817. height: math.unit(7 + 2/12, "feet"),
  38818. weight: math.unit(268, "lb"),
  38819. name: "Caribou",
  38820. image: {
  38821. source: "./media/characters/lisa/caribou.svg",
  38822. extra: 1843/1633,
  38823. bottom: 29/1872
  38824. }
  38825. },
  38826. frontCaribou: {
  38827. height: math.unit(7 + 2/12, "feet"),
  38828. weight: math.unit(268, "lb"),
  38829. name: "Front (Caribou)",
  38830. image: {
  38831. source: "./media/characters/lisa/front-caribou.svg",
  38832. extra: 1818/1638,
  38833. bottom: 52/1870
  38834. }
  38835. },
  38836. sideCaribou: {
  38837. height: math.unit(7 + 2/12, "feet"),
  38838. weight: math.unit(268, "lb"),
  38839. name: "Side (Caribou)",
  38840. image: {
  38841. source: "./media/characters/lisa/side-caribou.svg",
  38842. extra: 1851/1635,
  38843. bottom: 16/1867
  38844. }
  38845. },
  38846. backCaribou: {
  38847. height: math.unit(7 + 2/12, "feet"),
  38848. weight: math.unit(268, "lb"),
  38849. name: "Back (Caribou)",
  38850. image: {
  38851. source: "./media/characters/lisa/back-caribou.svg",
  38852. extra: 1801/1604,
  38853. bottom: 44/1845
  38854. }
  38855. },
  38856. mawCaribou: {
  38857. height: math.unit(1.45, "feet"),
  38858. name: "Maw (Caribou)",
  38859. image: {
  38860. source: "./media/characters/lisa/maw-caribou.svg"
  38861. }
  38862. },
  38863. mawCaribousune: {
  38864. height: math.unit(1.45, "feet"),
  38865. name: "Maw (Caribousune)",
  38866. image: {
  38867. source: "./media/characters/lisa/maw-caribousune.svg"
  38868. }
  38869. },
  38870. pawCaribousune: {
  38871. height: math.unit(1.61, "feet"),
  38872. name: "Paw (Caribou)",
  38873. image: {
  38874. source: "./media/characters/lisa/paw-caribousune.svg"
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Normal",
  38881. height: math.unit(6, "feet")
  38882. },
  38883. {
  38884. name: "God Size",
  38885. height: math.unit(72, "feet"),
  38886. default: true
  38887. },
  38888. {
  38889. name: "Towering",
  38890. height: math.unit(288, "feet")
  38891. },
  38892. {
  38893. name: "City Size",
  38894. height: math.unit(48384, "feet")
  38895. },
  38896. {
  38897. name: "Continental",
  38898. height: math.unit(4200, "miles")
  38899. },
  38900. {
  38901. name: "Planet Eater",
  38902. height: math.unit(42, "earths")
  38903. },
  38904. {
  38905. name: "Star Swallower",
  38906. height: math.unit(42, "solarradii")
  38907. },
  38908. {
  38909. name: "System Swallower",
  38910. height: math.unit(84000, "AU")
  38911. },
  38912. {
  38913. name: "Galaxy Gobbler",
  38914. height: math.unit(42, "galaxies")
  38915. },
  38916. {
  38917. name: "Universe Devourer",
  38918. height: math.unit(42, "universes")
  38919. },
  38920. {
  38921. name: "Multiverse Muncher",
  38922. height: math.unit(42, "multiverses")
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(36, "feet"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/shadow-rat/front.svg",
  38934. extra: 1845/1758,
  38935. bottom: 83/1928
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Macro",
  38942. height: math.unit(36, "feet"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38949. {
  38950. side: {
  38951. height: math.unit(8, "feet"),
  38952. weight: math.unit(2630, "lb"),
  38953. name: "Side",
  38954. image: {
  38955. source: "./media/characters/torallia/side.svg",
  38956. extra: 2164/2021,
  38957. bottom: 371/2535
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Mortal Interaction",
  38964. height: math.unit(8, "feet")
  38965. },
  38966. {
  38967. name: "Natural",
  38968. height: math.unit(24, "feet"),
  38969. default: true
  38970. },
  38971. {
  38972. name: "Giant",
  38973. height: math.unit(80, "feet")
  38974. },
  38975. {
  38976. name: "Kaiju",
  38977. height: math.unit(240, "feet")
  38978. },
  38979. {
  38980. name: "Macro",
  38981. height: math.unit(800, "feet")
  38982. },
  38983. {
  38984. name: "Macro+",
  38985. height: math.unit(2400, "feet")
  38986. },
  38987. {
  38988. name: "Macro++",
  38989. height: math.unit(8000, "feet")
  38990. },
  38991. {
  38992. name: "City-Crushing",
  38993. height: math.unit(24000, "feet")
  38994. },
  38995. {
  38996. name: "Mountain-Mashing",
  38997. height: math.unit(80000, "feet")
  38998. },
  38999. {
  39000. name: "District Demolisher",
  39001. height: math.unit(240000, "feet")
  39002. },
  39003. {
  39004. name: "Tri-County Terror",
  39005. height: math.unit(800000, "feet")
  39006. },
  39007. {
  39008. name: "State Smasher",
  39009. height: math.unit(2.4e6, "feet")
  39010. },
  39011. {
  39012. name: "Nation Nemesis",
  39013. height: math.unit(8e6, "feet")
  39014. },
  39015. {
  39016. name: "Continent Cracker",
  39017. height: math.unit(2.4e7, "feet")
  39018. },
  39019. {
  39020. name: "Planet-Pillaging",
  39021. height: math.unit(8e7, "feet")
  39022. },
  39023. {
  39024. name: "Earth-Eclipsing",
  39025. height: math.unit(2.4e8, "feet")
  39026. },
  39027. {
  39028. name: "Jovian-Jostling",
  39029. height: math.unit(8e8, "feet")
  39030. },
  39031. {
  39032. name: "Gas Giant Gulper",
  39033. height: math.unit(2.4e9, "feet")
  39034. },
  39035. {
  39036. name: "Astral Annihilator",
  39037. height: math.unit(8e9, "feet")
  39038. },
  39039. {
  39040. name: "Celestial Conqueror",
  39041. height: math.unit(2.4e10, "feet")
  39042. },
  39043. {
  39044. name: "Sol-Swallowing",
  39045. height: math.unit(8e10, "feet")
  39046. },
  39047. {
  39048. name: "Hunter of the Heavens",
  39049. height: math.unit(2.4e13, "feet")
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(6 + 8/12, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/rebecca-pawlson/front.svg",
  39061. extra: 1737/1596,
  39062. bottom: 107/1844
  39063. }
  39064. },
  39065. back: {
  39066. height: math.unit(6 + 8/12, "feet"),
  39067. name: "Back",
  39068. image: {
  39069. source: "./media/characters/rebecca-pawlson/back.svg",
  39070. extra: 1702/1523,
  39071. bottom: 86/1788
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(6 + 8/12, "feet")
  39079. },
  39080. {
  39081. name: "Mini Macro",
  39082. height: math.unit(10, "feet"),
  39083. default: true
  39084. },
  39085. {
  39086. name: "Macro",
  39087. height: math.unit(100, "feet")
  39088. },
  39089. {
  39090. name: "Mega Macro",
  39091. height: math.unit(2500, "feet")
  39092. },
  39093. {
  39094. name: "Giga Macro",
  39095. height: math.unit(50, "miles")
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(7 + 6/12, "feet"),
  39104. weight: math.unit(600, "lb"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/moxie-nova/front.svg",
  39108. extra: 1734/1652,
  39109. bottom: 41/1775
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Normal",
  39116. height: math.unit(7 + 6/12, "feet"),
  39117. default: true
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39123. {
  39124. goat: {
  39125. height: math.unit(4, "feet"),
  39126. weight: math.unit(180, "lb"),
  39127. name: "Goat",
  39128. image: {
  39129. source: "./media/characters/tiffany/goat.svg",
  39130. extra: 1845/1595,
  39131. bottom: 106/1951
  39132. }
  39133. },
  39134. front: {
  39135. height: math.unit(5, "feet"),
  39136. weight: math.unit(150, "lb"),
  39137. name: "Foxcoon",
  39138. image: {
  39139. source: "./media/characters/tiffany/foxcoon.svg",
  39140. extra: 1941/1845,
  39141. bottom: 58/1999
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(5, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(8, "feet"),
  39158. weight: math.unit(300, "lb"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/raxinath/front.svg",
  39162. extra: 1407/1309,
  39163. bottom: 39/1446
  39164. }
  39165. },
  39166. back: {
  39167. height: math.unit(8, "feet"),
  39168. weight: math.unit(300, "lb"),
  39169. name: "Back",
  39170. image: {
  39171. source: "./media/characters/raxinath/back.svg",
  39172. extra: 1405/1315,
  39173. bottom: 9/1414
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Speck",
  39180. height: math.unit(0.5, "nm")
  39181. },
  39182. {
  39183. name: "Micro",
  39184. height: math.unit(3, "inches")
  39185. },
  39186. {
  39187. name: "Kobold",
  39188. height: math.unit(3, "feet")
  39189. },
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(8, "feet"),
  39193. default: true
  39194. },
  39195. {
  39196. name: "Giant",
  39197. height: math.unit(50, "feet")
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(1000, "feet")
  39202. },
  39203. {
  39204. name: "Megamacro",
  39205. height: math.unit(1, "mile")
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(10, "feet"),
  39214. weight: math.unit(1442, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/mal-dragon/front.svg",
  39218. extra: 1515/1444,
  39219. bottom: 113/1628
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(10, "feet"),
  39224. weight: math.unit(1442, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/mal-dragon/back.svg",
  39228. extra: 1527/1434,
  39229. bottom: 25/1552
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Mortal Interaction",
  39236. height: math.unit(10, "feet"),
  39237. default: true
  39238. },
  39239. {
  39240. name: "Large",
  39241. height: math.unit(30, "feet")
  39242. },
  39243. {
  39244. name: "Kaiju",
  39245. height: math.unit(300, "feet")
  39246. },
  39247. {
  39248. name: "Megamacro",
  39249. height: math.unit(10000, "feet")
  39250. },
  39251. {
  39252. name: "Continent Cracker",
  39253. height: math.unit(30000000, "feet")
  39254. },
  39255. {
  39256. name: "Sol-Swallowing",
  39257. height: math.unit(1e11, "feet")
  39258. },
  39259. {
  39260. name: "Light Universal",
  39261. height: math.unit(5, "universes")
  39262. },
  39263. {
  39264. name: "Universe Atoms",
  39265. height: math.unit(1.829e9, "universes")
  39266. },
  39267. {
  39268. name: "Light Multiversal",
  39269. height: math.unit(5, "multiverses")
  39270. },
  39271. {
  39272. name: "Multiverse Atoms",
  39273. height: math.unit(1.829e9, "multiverses")
  39274. },
  39275. {
  39276. name: "Fabric of Time",
  39277. height: math.unit(1e262, "multiverses")
  39278. },
  39279. ]
  39280. ))
  39281. characterMakers.push(() => makeCharacter(
  39282. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39283. {
  39284. front: {
  39285. height: math.unit(9, "feet"),
  39286. weight: math.unit(1050, "lb"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/tabitha/front.svg",
  39290. extra: 2083/1994,
  39291. bottom: 68/2151
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Baseline",
  39298. height: math.unit(9, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Giant",
  39303. height: math.unit(90, "feet")
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(900, "feet")
  39308. },
  39309. {
  39310. name: "Megamacro",
  39311. height: math.unit(9000, "feet")
  39312. },
  39313. {
  39314. name: "City-Crushing",
  39315. height: math.unit(27000, "feet")
  39316. },
  39317. {
  39318. name: "Mountain-Mashing",
  39319. height: math.unit(90000, "feet")
  39320. },
  39321. {
  39322. name: "Nation Nemesis",
  39323. height: math.unit(9e6, "feet")
  39324. },
  39325. {
  39326. name: "Continent Cracker",
  39327. height: math.unit(27e6, "feet")
  39328. },
  39329. {
  39330. name: "Earth-Eclipsing",
  39331. height: math.unit(2.7e8, "feet")
  39332. },
  39333. {
  39334. name: "Gas Giant Gulper",
  39335. height: math.unit(2.7e9, "feet")
  39336. },
  39337. {
  39338. name: "Sol-Swallowing",
  39339. height: math.unit(9e10, "feet")
  39340. },
  39341. {
  39342. name: "Galaxy Gulper",
  39343. height: math.unit(9, "galaxies")
  39344. },
  39345. {
  39346. name: "Cosmos Churner",
  39347. height: math.unit(9, "universes")
  39348. },
  39349. ]
  39350. ))
  39351. characterMakers.push(() => makeCharacter(
  39352. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39353. {
  39354. front: {
  39355. height: math.unit(160, "cm"),
  39356. weight: math.unit(55, "kg"),
  39357. name: "Front",
  39358. image: {
  39359. source: "./media/characters/tow/front.svg",
  39360. extra: 1751/1722,
  39361. bottom: 74/1825
  39362. }
  39363. },
  39364. },
  39365. [
  39366. {
  39367. name: "Norm",
  39368. height: math.unit(160, "cm")
  39369. },
  39370. {
  39371. name: "Casual",
  39372. height: math.unit(3200, "m"),
  39373. default: true
  39374. },
  39375. {
  39376. name: "Show-Off",
  39377. height: math.unit(160, "km")
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39383. {
  39384. front: {
  39385. height: math.unit(7 + 11/12, "feet"),
  39386. weight: math.unit(342.8, "lb"),
  39387. name: "Front",
  39388. image: {
  39389. source: "./media/characters/vivian-orca-dragon/front.svg",
  39390. extra: 1890/1865,
  39391. bottom: 28/1918
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Micro",
  39398. height: math.unit(5, "inches")
  39399. },
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(7 + 11/12, "feet"),
  39403. default: true
  39404. },
  39405. {
  39406. name: "Macro",
  39407. height: math.unit(395 + 7/12, "feet")
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39413. {
  39414. side: {
  39415. height: math.unit(10, "feet"),
  39416. weight: math.unit(1442, "lb"),
  39417. name: "Side",
  39418. image: {
  39419. source: "./media/characters/lotherakon/side.svg",
  39420. extra: 1604/1497,
  39421. bottom: 89/1693
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Mortal Interaction",
  39428. height: math.unit(10, "feet")
  39429. },
  39430. {
  39431. name: "Large",
  39432. height: math.unit(30, "feet"),
  39433. default: true
  39434. },
  39435. {
  39436. name: "Giant",
  39437. height: math.unit(100, "feet")
  39438. },
  39439. {
  39440. name: "Kaiju",
  39441. height: math.unit(300, "feet")
  39442. },
  39443. {
  39444. name: "Macro",
  39445. height: math.unit(1000, "feet")
  39446. },
  39447. {
  39448. name: "Macro+",
  39449. height: math.unit(3000, "feet")
  39450. },
  39451. {
  39452. name: "Megamacro",
  39453. height: math.unit(10000, "feet")
  39454. },
  39455. {
  39456. name: "City-Crushing",
  39457. height: math.unit(30000, "feet")
  39458. },
  39459. {
  39460. name: "Continent Cracker",
  39461. height: math.unit(30e6, "feet")
  39462. },
  39463. {
  39464. name: "Earth Eclipsing",
  39465. height: math.unit(3e8, "feet")
  39466. },
  39467. {
  39468. name: "Gas Giant Gulper",
  39469. height: math.unit(3e9, "feet")
  39470. },
  39471. {
  39472. name: "Sol-Swallowing",
  39473. height: math.unit(1e11, "feet")
  39474. },
  39475. {
  39476. name: "System Swallower",
  39477. height: math.unit(3e14, "feet")
  39478. },
  39479. {
  39480. name: "Galaxy Gulper",
  39481. height: math.unit(10, "galaxies")
  39482. },
  39483. {
  39484. name: "Light Universal",
  39485. height: math.unit(5, "universes")
  39486. },
  39487. {
  39488. name: "Universe Palm",
  39489. height: math.unit(20, "universes")
  39490. },
  39491. {
  39492. name: "Light Multiversal",
  39493. height: math.unit(5, "multiverses")
  39494. },
  39495. {
  39496. name: "Multiverse Palm",
  39497. height: math.unit(20, "multiverses")
  39498. },
  39499. {
  39500. name: "Inferno Incarnate",
  39501. height: math.unit(1e7, "multiverses")
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(8, "feet"),
  39510. weight: math.unit(1200, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/malithee/front.svg",
  39514. extra: 1675/1640,
  39515. bottom: 162/1837
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Mortal Interaction",
  39522. height: math.unit(8, "feet"),
  39523. default: true
  39524. },
  39525. {
  39526. name: "Large",
  39527. height: math.unit(24, "feet")
  39528. },
  39529. {
  39530. name: "Kaiju",
  39531. height: math.unit(240, "feet")
  39532. },
  39533. {
  39534. name: "Megamacro",
  39535. height: math.unit(8000, "feet")
  39536. },
  39537. {
  39538. name: "Continent Cracker",
  39539. height: math.unit(24e6, "feet")
  39540. },
  39541. {
  39542. name: "Earth-Eclipsing",
  39543. height: math.unit(2.4e8, "feet")
  39544. },
  39545. {
  39546. name: "Sol-Swallowing",
  39547. height: math.unit(8e10, "feet")
  39548. },
  39549. {
  39550. name: "Galaxy Gulper",
  39551. height: math.unit(8, "galaxies")
  39552. },
  39553. {
  39554. name: "Light Universal",
  39555. height: math.unit(4, "universes")
  39556. },
  39557. {
  39558. name: "Universe Atoms",
  39559. height: math.unit(1.829e9, "universes")
  39560. },
  39561. {
  39562. name: "Light Multiversal",
  39563. height: math.unit(4, "multiverses")
  39564. },
  39565. {
  39566. name: "Multiverse Atoms",
  39567. height: math.unit(1.829e9, "multiverses")
  39568. },
  39569. {
  39570. name: "Nigh-Omnipresence",
  39571. height: math.unit(8e261, "multiverses")
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(10, "feet"),
  39580. weight: math.unit(1500, "lb"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/miles-thestia/front.svg",
  39584. extra: 1812/1727,
  39585. bottom: 86/1898
  39586. }
  39587. },
  39588. back: {
  39589. height: math.unit(10, "feet"),
  39590. weight: math.unit(1500, "lb"),
  39591. name: "Back",
  39592. image: {
  39593. source: "./media/characters/miles-thestia/back.svg",
  39594. extra: 1799/1690,
  39595. bottom: 47/1846
  39596. }
  39597. },
  39598. frontNsfw: {
  39599. height: math.unit(10, "feet"),
  39600. weight: math.unit(1500, "lb"),
  39601. name: "Front (NSFW)",
  39602. image: {
  39603. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39604. extra: 1812/1727,
  39605. bottom: 86/1898
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Mini-Macro",
  39612. height: math.unit(10, "feet"),
  39613. default: true
  39614. },
  39615. ]
  39616. ))
  39617. characterMakers.push(() => makeCharacter(
  39618. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39619. {
  39620. front: {
  39621. height: math.unit(25, "feet"),
  39622. name: "Front",
  39623. image: {
  39624. source: "./media/characters/titan-s-wulf/front.svg",
  39625. extra: 1560/1484,
  39626. bottom: 76/1636
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Smallest",
  39633. height: math.unit(25, "feet"),
  39634. default: true
  39635. },
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(200, "feet")
  39639. },
  39640. {
  39641. name: "Macro",
  39642. height: math.unit(200000, "feet")
  39643. },
  39644. {
  39645. name: "Multiversal Original",
  39646. height: math.unit(10000, "multiverses")
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39652. {
  39653. front: {
  39654. height: math.unit(8, "feet"),
  39655. weight: math.unit(553, "lb"),
  39656. name: "Front",
  39657. image: {
  39658. source: "./media/characters/tawendeh/front.svg",
  39659. extra: 2365/2268,
  39660. bottom: 83/2448
  39661. }
  39662. },
  39663. frontClothed: {
  39664. height: math.unit(8, "feet"),
  39665. weight: math.unit(553, "lb"),
  39666. name: "Front (Clothed)",
  39667. image: {
  39668. source: "./media/characters/tawendeh/front-clothed.svg",
  39669. extra: 2365/2268,
  39670. bottom: 83/2448
  39671. }
  39672. },
  39673. back: {
  39674. height: math.unit(8, "feet"),
  39675. weight: math.unit(553, "lb"),
  39676. name: "Back",
  39677. image: {
  39678. source: "./media/characters/tawendeh/back.svg",
  39679. extra: 2397/2294,
  39680. bottom: 42/2439
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Mortal Interaction",
  39687. height: math.unit(8, "feet"),
  39688. default: true
  39689. },
  39690. {
  39691. name: "Giant",
  39692. height: math.unit(80, "feet")
  39693. },
  39694. {
  39695. name: "Macro",
  39696. height: math.unit(800, "feet")
  39697. },
  39698. {
  39699. name: "Megamacro",
  39700. height: math.unit(8000, "feet")
  39701. },
  39702. {
  39703. name: "City-Crushing",
  39704. height: math.unit(24000, "feet")
  39705. },
  39706. {
  39707. name: "Mountain-Mashing",
  39708. height: math.unit(80000, "feet")
  39709. },
  39710. {
  39711. name: "Nation Nemesis",
  39712. height: math.unit(8e6, "feet")
  39713. },
  39714. {
  39715. name: "Continent Cracker",
  39716. height: math.unit(24e6, "feet")
  39717. },
  39718. {
  39719. name: "Earth-Eclipsing",
  39720. height: math.unit(2.4e8, "feet")
  39721. },
  39722. {
  39723. name: "Gas Giant Gulper",
  39724. height: math.unit(2.4e9, "feet")
  39725. },
  39726. {
  39727. name: "Sol-Swallowing",
  39728. height: math.unit(8e10, "feet")
  39729. },
  39730. {
  39731. name: "Galaxy Gulper",
  39732. height: math.unit(8, "galaxies")
  39733. },
  39734. {
  39735. name: "Cosmos Churner",
  39736. height: math.unit(8, "universes")
  39737. },
  39738. {
  39739. name: "Omnipotent Otter",
  39740. height: math.unit(80, "universes")
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(2.6, "meters"),
  39749. weight: math.unit(900, "kg"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/neesha/front.svg",
  39753. extra: 1803/1653,
  39754. bottom: 128/1931
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(2.6, "meters"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(50, "meters")
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39772. {
  39773. front: {
  39774. height: math.unit(5, "feet"),
  39775. weight: math.unit(185, "lb"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/kyera/front.svg",
  39779. extra: 1875/1790,
  39780. bottom: 96/1971
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(5, "feet"),
  39788. default: true
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(7 + 6/12, "feet"),
  39797. weight: math.unit(540, "lb"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/yuko/front.svg",
  39801. extra: 1282/1222,
  39802. bottom: 101/1383
  39803. }
  39804. },
  39805. frontClothed: {
  39806. height: math.unit(7 + 6/12, "feet"),
  39807. weight: math.unit(540, "lb"),
  39808. name: "Front (Clothed)",
  39809. image: {
  39810. source: "./media/characters/yuko/front-clothed.svg",
  39811. extra: 1282/1222,
  39812. bottom: 101/1383
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Normal",
  39819. height: math.unit(7 + 6/12, "feet"),
  39820. default: true
  39821. },
  39822. {
  39823. name: "Macro",
  39824. height: math.unit(26 + 9/12, "feet")
  39825. },
  39826. {
  39827. name: "Megamacro",
  39828. height: math.unit(300, "feet")
  39829. },
  39830. {
  39831. name: "Gigamacro",
  39832. height: math.unit(5000, "feet")
  39833. },
  39834. {
  39835. name: "Planetary",
  39836. height: math.unit(10000, "miles")
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(8 + 2/12, "feet"),
  39845. weight: math.unit(600, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/deam-nitrel/front.svg",
  39849. extra: 1308/1234,
  39850. bottom: 125/1433
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(8 + 2/12, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(6.1, "feet"),
  39867. weight: math.unit(180, "lb"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/skyress/front.svg",
  39871. extra: 1045/915,
  39872. bottom: 28/1073
  39873. }
  39874. },
  39875. maw: {
  39876. height: math.unit(1, "feet"),
  39877. name: "Maw",
  39878. image: {
  39879. source: "./media/characters/skyress/maw.svg"
  39880. }
  39881. },
  39882. },
  39883. [
  39884. {
  39885. name: "Normal",
  39886. height: math.unit(6.1, "feet"),
  39887. default: true
  39888. },
  39889. {
  39890. name: "Macro",
  39891. height: math.unit(200, "feet")
  39892. },
  39893. ]
  39894. ))
  39895. characterMakers.push(() => makeCharacter(
  39896. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39897. {
  39898. front: {
  39899. height: math.unit(4 + 2/12, "feet"),
  39900. weight: math.unit(40, "kg"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/amethyst-jones/front.svg",
  39904. extra: 1220/1150,
  39905. bottom: 101/1321
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Normal",
  39912. height: math.unit(4 + 2/12, "feet"),
  39913. default: true
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(1.7, "m"),
  39922. weight: math.unit(135, "lb"),
  39923. name: "Front",
  39924. image: {
  39925. source: "./media/characters/jade/front.svg",
  39926. extra: 1818/1767,
  39927. bottom: 32/1850
  39928. }
  39929. },
  39930. back: {
  39931. height: math.unit(1.7, "m"),
  39932. weight: math.unit(135, "lb"),
  39933. name: "Back",
  39934. image: {
  39935. source: "./media/characters/jade/back.svg",
  39936. extra: 1869/1809,
  39937. bottom: 35/1904
  39938. }
  39939. },
  39940. hand: {
  39941. height: math.unit(0.24, "m"),
  39942. name: "Hand",
  39943. image: {
  39944. source: "./media/characters/jade/hand.svg"
  39945. }
  39946. },
  39947. foot: {
  39948. height: math.unit(0.263, "m"),
  39949. name: "Foot",
  39950. image: {
  39951. source: "./media/characters/jade/foot.svg"
  39952. }
  39953. },
  39954. dick: {
  39955. height: math.unit(0.47, "m"),
  39956. name: "Dick",
  39957. image: {
  39958. source: "./media/characters/jade/dick.svg"
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Micro",
  39965. height: math.unit(22, "cm")
  39966. },
  39967. {
  39968. name: "Normal",
  39969. height: math.unit(1.7, "m"),
  39970. default: true
  39971. },
  39972. {
  39973. name: "Macro",
  39974. height: math.unit(152, "m")
  39975. },
  39976. ]
  39977. ))
  39978. characterMakers.push(() => makeCharacter(
  39979. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39980. {
  39981. front: {
  39982. height: math.unit(100, "miles"),
  39983. weight: math.unit(20000, "tons"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/cookie/front.svg",
  39987. extra: 1125/1070,
  39988. bottom: 30/1155
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Big",
  39995. height: math.unit(50, "feet")
  39996. },
  39997. {
  39998. name: "Macro",
  39999. height: math.unit(100, "miles"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "Megamacro",
  40004. height: math.unit(90000, "miles")
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40010. {
  40011. front: {
  40012. height: math.unit(6, "feet"),
  40013. weight: math.unit(145, "lb"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/farzian/front.svg",
  40017. extra: 1902/1693,
  40018. bottom: 108/2010
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Macro",
  40025. height: math.unit(500, "feet"),
  40026. default: true
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(3 + 6/12, "feet"),
  40035. weight: math.unit(50, "lb"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/kimberly-tilson/front.svg",
  40039. extra: 1400/1322,
  40040. bottom: 36/1436
  40041. }
  40042. },
  40043. back: {
  40044. height: math.unit(3 + 6/12, "feet"),
  40045. weight: math.unit(50, "lb"),
  40046. name: "Back",
  40047. image: {
  40048. source: "./media/characters/kimberly-tilson/back.svg",
  40049. extra: 1370/1307,
  40050. bottom: 20/1390
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Normal",
  40057. height: math.unit(3 + 6/12, "feet"),
  40058. default: true
  40059. },
  40060. ]
  40061. ))
  40062. characterMakers.push(() => makeCharacter(
  40063. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40064. {
  40065. front: {
  40066. height: math.unit(1148, "feet"),
  40067. weight: math.unit(34057, "lb"),
  40068. name: "Front",
  40069. image: {
  40070. source: "./media/characters/harthos/front.svg",
  40071. extra: 1391/1339,
  40072. bottom: 13/1404
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Macro",
  40079. height: math.unit(1148, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(15, "feet"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/hypatia/front.svg",
  40092. extra: 1653/1591,
  40093. bottom: 79/1732
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(15, "feet")
  40101. },
  40102. {
  40103. name: "Small",
  40104. height: math.unit(300, "feet")
  40105. },
  40106. {
  40107. name: "Macro",
  40108. height: math.unit(2500, "feet"),
  40109. default: true
  40110. },
  40111. {
  40112. name: "Mega Macro",
  40113. height: math.unit(1500, "miles")
  40114. },
  40115. {
  40116. name: "Giga Macro",
  40117. height: math.unit(1.5e6, "miles")
  40118. },
  40119. ]
  40120. ))
  40121. characterMakers.push(() => makeCharacter(
  40122. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40123. {
  40124. front: {
  40125. height: math.unit(6, "feet"),
  40126. weight: math.unit(200, "lb"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/wulver/front.svg",
  40130. extra: 1724/1632,
  40131. bottom: 130/1854
  40132. }
  40133. },
  40134. frontNsfw: {
  40135. height: math.unit(6, "feet"),
  40136. weight: math.unit(200, "lb"),
  40137. name: "Front (NSFW)",
  40138. image: {
  40139. source: "./media/characters/wulver/front-nsfw.svg",
  40140. extra: 1724/1632,
  40141. bottom: 130/1854
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Human-Sized",
  40148. height: math.unit(6, "feet")
  40149. },
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(4, "meters"),
  40153. default: true
  40154. },
  40155. {
  40156. name: "Large",
  40157. height: math.unit(6, "m")
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(7, "feet"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/maru/front.svg",
  40169. extra: 1595/1570,
  40170. bottom: 0/1595
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(7, "feet"),
  40178. default: true
  40179. },
  40180. {
  40181. name: "Macro",
  40182. height: math.unit(700, "feet")
  40183. },
  40184. {
  40185. name: "Mega Macro",
  40186. height: math.unit(25, "miles")
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(6, "feet"),
  40195. weight: math.unit(170, "lb"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/xenon/front.svg",
  40199. extra: 1376/1305,
  40200. bottom: 56/1432
  40201. }
  40202. },
  40203. back: {
  40204. height: math.unit(6, "feet"),
  40205. weight: math.unit(170, "lb"),
  40206. name: "Back",
  40207. image: {
  40208. source: "./media/characters/xenon/back.svg",
  40209. extra: 1328/1259,
  40210. bottom: 95/1423
  40211. }
  40212. },
  40213. maw: {
  40214. height: math.unit(0.52, "feet"),
  40215. name: "Maw",
  40216. image: {
  40217. source: "./media/characters/xenon/maw.svg"
  40218. }
  40219. },
  40220. hand: {
  40221. height: math.unit(0.82, "feet"),
  40222. name: "Hand",
  40223. image: {
  40224. source: "./media/characters/xenon/hand.svg"
  40225. }
  40226. },
  40227. foot: {
  40228. height: math.unit(1.13, "feet"),
  40229. name: "Foot",
  40230. image: {
  40231. source: "./media/characters/xenon/foot.svg"
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Micro",
  40238. height: math.unit(0.8, "inches")
  40239. },
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(6, "feet")
  40243. },
  40244. {
  40245. name: "Macro",
  40246. height: math.unit(50, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro+",
  40251. height: math.unit(250, "feet")
  40252. },
  40253. {
  40254. name: "Megamacro",
  40255. height: math.unit(1500, "feet")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(7 + 5/12, "feet"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/zane/front.svg",
  40267. extra: 1260/1203,
  40268. bottom: 94/1354
  40269. }
  40270. },
  40271. back: {
  40272. height: math.unit(5.05, "feet"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/zane/back.svg",
  40276. extra: 893/829,
  40277. bottom: 30/923
  40278. }
  40279. },
  40280. werewolf: {
  40281. height: math.unit(11, "feet"),
  40282. name: "Werewolf",
  40283. image: {
  40284. source: "./media/characters/zane/werewolf.svg",
  40285. extra: 1383/1323,
  40286. bottom: 89/1472
  40287. }
  40288. },
  40289. foot: {
  40290. height: math.unit(1.46, "feet"),
  40291. name: "Foot",
  40292. image: {
  40293. source: "./media/characters/zane/foot.svg"
  40294. }
  40295. },
  40296. footFront: {
  40297. height: math.unit(0.784, "feet"),
  40298. name: "Foot (Front)",
  40299. image: {
  40300. source: "./media/characters/zane/foot-front.svg"
  40301. }
  40302. },
  40303. dick: {
  40304. height: math.unit(1.95, "feet"),
  40305. name: "Dick",
  40306. image: {
  40307. source: "./media/characters/zane/dick.svg"
  40308. }
  40309. },
  40310. dickWerewolf: {
  40311. height: math.unit(3.77, "feet"),
  40312. name: "Dick (Werewolf)",
  40313. image: {
  40314. source: "./media/characters/zane/dick.svg"
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(7 + 5/12, "feet"),
  40322. default: true
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(6 + 2/12, "feet"),
  40331. weight: math.unit(284, "lb"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/benni-desparque/front.svg",
  40335. extra: 1353/1126,
  40336. bottom: 69/1422
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Civilian",
  40343. height: math.unit(6 + 2/12, "feet")
  40344. },
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(98, "feet"),
  40348. default: true
  40349. },
  40350. {
  40351. name: "Kaiju Fighter",
  40352. height: math.unit(268, "feet")
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(5, "feet"),
  40361. weight: math.unit(105, "lb"),
  40362. name: "Front",
  40363. image: {
  40364. source: "./media/characters/maxine/front.svg",
  40365. extra: 1386/1250,
  40366. bottom: 71/1457
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(5, "feet"),
  40374. default: true
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40380. {
  40381. front: {
  40382. height: math.unit(11 + 7/12, "feet"),
  40383. weight: math.unit(9576, "lb"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/scaly/front.svg",
  40387. extra: 888/867,
  40388. bottom: 36/924
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(11 + 7/12, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40402. {
  40403. front: {
  40404. height: math.unit(6 + 3/12, "feet"),
  40405. name: "Front",
  40406. image: {
  40407. source: "./media/characters/saelria/front.svg",
  40408. extra: 1243/1138,
  40409. bottom: 46/1289
  40410. }
  40411. },
  40412. },
  40413. [
  40414. {
  40415. name: "Micro",
  40416. height: math.unit(6, "inches"),
  40417. },
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(6 + 3/12, "feet"),
  40421. default: true
  40422. },
  40423. {
  40424. name: "Macro",
  40425. height: math.unit(25, "feet")
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40431. {
  40432. front: {
  40433. height: math.unit(80, "meters"),
  40434. weight: math.unit(7000, "tonnes"),
  40435. name: "Front",
  40436. image: {
  40437. source: "./media/characters/tef/front.svg",
  40438. extra: 2036/1991,
  40439. bottom: 54/2090
  40440. }
  40441. },
  40442. back: {
  40443. height: math.unit(80, "meters"),
  40444. weight: math.unit(7000, "tonnes"),
  40445. name: "Back",
  40446. image: {
  40447. source: "./media/characters/tef/back.svg",
  40448. extra: 2036/1991,
  40449. bottom: 54/2090
  40450. }
  40451. },
  40452. },
  40453. [
  40454. {
  40455. name: "Macro",
  40456. height: math.unit(80, "meters"),
  40457. default: true
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(13, "feet"),
  40466. weight: math.unit(6, "tons"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/rover/front.svg",
  40470. extra: 1233/1156,
  40471. bottom: 50/1283
  40472. }
  40473. },
  40474. back: {
  40475. height: math.unit(13, "feet"),
  40476. weight: math.unit(6, "tons"),
  40477. name: "Back",
  40478. image: {
  40479. source: "./media/characters/rover/back.svg",
  40480. extra: 1327/1258,
  40481. bottom: 39/1366
  40482. }
  40483. },
  40484. },
  40485. [
  40486. {
  40487. name: "Normal",
  40488. height: math.unit(13, "feet"),
  40489. default: true
  40490. },
  40491. {
  40492. name: "Macro",
  40493. height: math.unit(1300, "feet")
  40494. },
  40495. {
  40496. name: "Megamacro",
  40497. height: math.unit(1300, "miles")
  40498. },
  40499. {
  40500. name: "Gigamacro",
  40501. height: math.unit(1300000, "miles")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(6, "feet"),
  40510. weight: math.unit(150, "lb"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/ariz/front.svg",
  40514. extra: 1401/1346,
  40515. bottom: 5/1406
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(10, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40529. {
  40530. front: {
  40531. height: math.unit(6, "feet"),
  40532. weight: math.unit(140, "lb"),
  40533. name: "Front",
  40534. image: {
  40535. source: "./media/characters/sigrun/front.svg",
  40536. extra: 1418/1359,
  40537. bottom: 27/1445
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(35, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(6, "feet"),
  40554. weight: math.unit(150, "lb"),
  40555. name: "Front",
  40556. image: {
  40557. source: "./media/characters/numin/front.svg",
  40558. extra: 1433/1388,
  40559. bottom: 12/1445
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Macro",
  40566. height: math.unit(21.5, "km"),
  40567. default: true
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40573. {
  40574. front: {
  40575. height: math.unit(6, "feet"),
  40576. weight: math.unit(463, "lb"),
  40577. name: "Front",
  40578. image: {
  40579. source: "./media/characters/melwa/front.svg",
  40580. extra: 1307/1248,
  40581. bottom: 93/1400
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Macro",
  40588. height: math.unit(50, "meters"),
  40589. default: true
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(325, "feet"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/zorkaiju/front.svg",
  40601. extra: 1955/1814,
  40602. bottom: 40/1995
  40603. }
  40604. },
  40605. frontExtended: {
  40606. height: math.unit(325, "feet"),
  40607. name: "Front (Extended)",
  40608. image: {
  40609. source: "./media/characters/zorkaiju/front-extended.svg",
  40610. extra: 1955/1814,
  40611. bottom: 40/1995
  40612. }
  40613. },
  40614. side: {
  40615. height: math.unit(325, "feet"),
  40616. name: "Side",
  40617. image: {
  40618. source: "./media/characters/zorkaiju/side.svg",
  40619. extra: 1495/1396,
  40620. bottom: 17/1512
  40621. }
  40622. },
  40623. sideExtended: {
  40624. height: math.unit(325, "feet"),
  40625. name: "Side (Extended)",
  40626. image: {
  40627. source: "./media/characters/zorkaiju/side-extended.svg",
  40628. extra: 1495/1396,
  40629. bottom: 17/1512
  40630. }
  40631. },
  40632. back: {
  40633. height: math.unit(325, "feet"),
  40634. name: "Back",
  40635. image: {
  40636. source: "./media/characters/zorkaiju/back.svg",
  40637. extra: 1959/1821,
  40638. bottom: 31/1990
  40639. }
  40640. },
  40641. backExtended: {
  40642. height: math.unit(325, "feet"),
  40643. name: "Back (Extended)",
  40644. image: {
  40645. source: "./media/characters/zorkaiju/back-extended.svg",
  40646. extra: 1959/1821,
  40647. bottom: 31/1990
  40648. }
  40649. },
  40650. hand: {
  40651. height: math.unit(58.4, "feet"),
  40652. name: "Hand",
  40653. image: {
  40654. source: "./media/characters/zorkaiju/hand.svg"
  40655. }
  40656. },
  40657. handExtended: {
  40658. height: math.unit(61.4, "feet"),
  40659. name: "Hand (Extended)",
  40660. image: {
  40661. source: "./media/characters/zorkaiju/hand-extended.svg"
  40662. }
  40663. },
  40664. foot: {
  40665. height: math.unit(95, "feet"),
  40666. name: "Foot",
  40667. image: {
  40668. source: "./media/characters/zorkaiju/foot.svg"
  40669. }
  40670. },
  40671. leftArm: {
  40672. height: math.unit(59, "feet"),
  40673. name: "Left Arm",
  40674. image: {
  40675. source: "./media/characters/zorkaiju/left-arm.svg"
  40676. }
  40677. },
  40678. rightArm: {
  40679. height: math.unit(59, "feet"),
  40680. name: "Right Arm",
  40681. image: {
  40682. source: "./media/characters/zorkaiju/right-arm.svg"
  40683. }
  40684. },
  40685. tail: {
  40686. height: math.unit(104, "feet"),
  40687. name: "Tail",
  40688. image: {
  40689. source: "./media/characters/zorkaiju/tail.svg"
  40690. }
  40691. },
  40692. tailExtended: {
  40693. height: math.unit(104, "feet"),
  40694. name: "Tail (Extended)",
  40695. image: {
  40696. source: "./media/characters/zorkaiju/tail-extended.svg"
  40697. }
  40698. },
  40699. tailBottom: {
  40700. height: math.unit(104, "feet"),
  40701. name: "Tail Bottom",
  40702. image: {
  40703. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40704. }
  40705. },
  40706. crystal: {
  40707. height: math.unit(27.54, "feet"),
  40708. name: "Crystal",
  40709. image: {
  40710. source: "./media/characters/zorkaiju/crystal.svg"
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Kaiju",
  40717. height: math.unit(325, "feet"),
  40718. default: true
  40719. },
  40720. ]
  40721. ))
  40722. characterMakers.push(() => makeCharacter(
  40723. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40724. {
  40725. front: {
  40726. height: math.unit(6 + 1/12, "feet"),
  40727. weight: math.unit(115, "lb"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/bailey-belfry/front.svg",
  40731. extra: 1240/1121,
  40732. bottom: 101/1341
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(6 + 1/12, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40746. {
  40747. side: {
  40748. height: math.unit(4, "meters"),
  40749. weight: math.unit(250, "kg"),
  40750. name: "Side",
  40751. image: {
  40752. source: "./media/characters/blacky/side.svg",
  40753. extra: 1027/919,
  40754. bottom: 43/1070
  40755. }
  40756. },
  40757. maw: {
  40758. height: math.unit(1, "meters"),
  40759. name: "Maw",
  40760. image: {
  40761. source: "./media/characters/blacky/maw.svg"
  40762. }
  40763. },
  40764. paw: {
  40765. height: math.unit(1, "meters"),
  40766. name: "Paw",
  40767. image: {
  40768. source: "./media/characters/blacky/paw.svg"
  40769. }
  40770. },
  40771. },
  40772. [
  40773. {
  40774. name: "Normal",
  40775. height: math.unit(4, "meters"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(170, "cm"),
  40785. weight: math.unit(66, "kg"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/thux-ei/front.svg",
  40789. extra: 1109/1011,
  40790. bottom: 8/1117
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Normal",
  40797. height: math.unit(170, "cm"),
  40798. default: true
  40799. },
  40800. ]
  40801. ))
  40802. characterMakers.push(() => makeCharacter(
  40803. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40804. {
  40805. front: {
  40806. height: math.unit(5, "feet"),
  40807. weight: math.unit(120, "lb"),
  40808. name: "Front",
  40809. image: {
  40810. source: "./media/characters/roxanne-voltaire/front.svg",
  40811. extra: 1901/1779,
  40812. bottom: 53/1954
  40813. }
  40814. },
  40815. },
  40816. [
  40817. {
  40818. name: "Normal",
  40819. height: math.unit(5, "feet"),
  40820. default: true
  40821. },
  40822. {
  40823. name: "Giant",
  40824. height: math.unit(50, "feet")
  40825. },
  40826. {
  40827. name: "Titan",
  40828. height: math.unit(500, "feet")
  40829. },
  40830. {
  40831. name: "Macro",
  40832. height: math.unit(5000, "feet")
  40833. },
  40834. {
  40835. name: "Megamacro",
  40836. height: math.unit(50000, "feet")
  40837. },
  40838. {
  40839. name: "Gigamacro",
  40840. height: math.unit(500000, "feet")
  40841. },
  40842. {
  40843. name: "Teramacro",
  40844. height: math.unit(5e6, "feet")
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(6 + 2/12, "feet"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/squeaks/front.svg",
  40856. extra: 1823/1768,
  40857. bottom: 138/1961
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Micro",
  40864. height: math.unit(0.5, "inches")
  40865. },
  40866. {
  40867. name: "Normal",
  40868. height: math.unit(6 + 2/12, "feet"),
  40869. default: true
  40870. },
  40871. {
  40872. name: "Macro",
  40873. height: math.unit(600, "feet")
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(1.72, "meters"),
  40882. name: "Front",
  40883. image: {
  40884. source: "./media/characters/archinger/front.svg",
  40885. extra: 1861/1675,
  40886. bottom: 125/1986
  40887. }
  40888. },
  40889. back: {
  40890. height: math.unit(1.72, "meters"),
  40891. name: "Back",
  40892. image: {
  40893. source: "./media/characters/archinger/back.svg",
  40894. extra: 1844/1701,
  40895. bottom: 104/1948
  40896. }
  40897. },
  40898. cock: {
  40899. height: math.unit(0.59, "feet"),
  40900. name: "Cock",
  40901. image: {
  40902. source: "./media/characters/archinger/cock.svg"
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Normal",
  40909. height: math.unit(1.72, "meters"),
  40910. default: true
  40911. },
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(84, "meters")
  40915. },
  40916. {
  40917. name: "Macro+",
  40918. height: math.unit(112, "meters")
  40919. },
  40920. {
  40921. name: "Macro++",
  40922. height: math.unit(960, "meters")
  40923. },
  40924. {
  40925. name: "Macro+++",
  40926. height: math.unit(4, "km")
  40927. },
  40928. {
  40929. name: "Macro++++",
  40930. height: math.unit(48, "km")
  40931. },
  40932. {
  40933. name: "Macro+++++",
  40934. height: math.unit(4500, "km")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40940. {
  40941. front: {
  40942. height: math.unit(5 + 5/12, "feet"),
  40943. name: "Front",
  40944. image: {
  40945. source: "./media/characters/alsnapz/front.svg",
  40946. extra: 1157/1065,
  40947. bottom: 42/1199
  40948. }
  40949. },
  40950. },
  40951. [
  40952. {
  40953. name: "Normal",
  40954. height: math.unit(5 + 5/12, "feet"),
  40955. default: true
  40956. },
  40957. ]
  40958. ))
  40959. characterMakers.push(() => makeCharacter(
  40960. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40961. {
  40962. side: {
  40963. height: math.unit(3.2, "earths"),
  40964. name: "Side",
  40965. image: {
  40966. source: "./media/characters/mag/side.svg",
  40967. extra: 1331/1008,
  40968. bottom: 52/1383
  40969. }
  40970. },
  40971. wing: {
  40972. height: math.unit(1.94, "earths"),
  40973. name: "Wing",
  40974. image: {
  40975. source: "./media/characters/mag/wing.svg"
  40976. }
  40977. },
  40978. dick: {
  40979. height: math.unit(1.8, "earths"),
  40980. name: "Dick",
  40981. image: {
  40982. source: "./media/characters/mag/dick.svg"
  40983. }
  40984. },
  40985. ass: {
  40986. height: math.unit(1.33, "earths"),
  40987. name: "Ass",
  40988. image: {
  40989. source: "./media/characters/mag/ass.svg"
  40990. }
  40991. },
  40992. head: {
  40993. height: math.unit(1.1, "earths"),
  40994. name: "Head",
  40995. image: {
  40996. source: "./media/characters/mag/head.svg"
  40997. }
  40998. },
  40999. maw: {
  41000. height: math.unit(1.62, "earths"),
  41001. name: "Maw",
  41002. image: {
  41003. source: "./media/characters/mag/maw.svg"
  41004. }
  41005. },
  41006. },
  41007. [
  41008. {
  41009. name: "Small",
  41010. height: math.unit(162, "feet")
  41011. },
  41012. {
  41013. name: "Normal",
  41014. height: math.unit(3.2, "earths"),
  41015. default: true
  41016. },
  41017. ]
  41018. ))
  41019. characterMakers.push(() => makeCharacter(
  41020. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41021. {
  41022. front: {
  41023. height: math.unit(512, "feet"),
  41024. weight: math.unit(63509, "tonnes"),
  41025. name: "Front",
  41026. image: {
  41027. source: "./media/characters/vorrel-harroc/front.svg",
  41028. extra: 1075/1063,
  41029. bottom: 62/1137
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Normal",
  41036. height: math.unit(10, "feet")
  41037. },
  41038. {
  41039. name: "Macro",
  41040. height: math.unit(512, "feet"),
  41041. default: true
  41042. },
  41043. {
  41044. name: "Megamacro",
  41045. height: math.unit(256, "miles")
  41046. },
  41047. {
  41048. name: "Gigamacro",
  41049. height: math.unit(4096, "miles")
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41055. {
  41056. side: {
  41057. height: math.unit(50, "feet"),
  41058. name: "Side",
  41059. image: {
  41060. source: "./media/characters/froimar/side.svg",
  41061. extra: 855/638,
  41062. bottom: 99/954
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Macro",
  41069. height: math.unit(50, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(210, "miles"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/timothy/front.svg",
  41082. extra: 1007/943,
  41083. bottom: 62/1069
  41084. }
  41085. },
  41086. frontSkirt: {
  41087. height: math.unit(210, "miles"),
  41088. name: "Front (Skirt)",
  41089. image: {
  41090. source: "./media/characters/timothy/front-skirt.svg",
  41091. extra: 1007/943,
  41092. bottom: 62/1069
  41093. }
  41094. },
  41095. frontCoat: {
  41096. height: math.unit(210, "miles"),
  41097. name: "Front (Coat)",
  41098. image: {
  41099. source: "./media/characters/timothy/front-coat.svg",
  41100. extra: 1007/943,
  41101. bottom: 62/1069
  41102. }
  41103. },
  41104. },
  41105. [
  41106. {
  41107. name: "Macro",
  41108. height: math.unit(210, "miles"),
  41109. default: true
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(210000, "miles")
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(188, "feet"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/pyotr/front.svg",
  41125. extra: 1912/1826,
  41126. bottom: 18/1930
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Macro",
  41133. height: math.unit(188, "feet"),
  41134. default: true
  41135. },
  41136. {
  41137. name: "Megamacro",
  41138. height: math.unit(8, "miles")
  41139. },
  41140. ]
  41141. ))
  41142. characterMakers.push(() => makeCharacter(
  41143. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41144. {
  41145. side: {
  41146. height: math.unit(10, "feet"),
  41147. weight: math.unit(4500, "lb"),
  41148. name: "Side",
  41149. image: {
  41150. source: "./media/characters/ackart/side.svg",
  41151. extra: 1776/1668,
  41152. bottom: 116/1892
  41153. }
  41154. },
  41155. },
  41156. [
  41157. {
  41158. name: "Normal",
  41159. height: math.unit(10, "feet"),
  41160. default: true
  41161. },
  41162. ]
  41163. ))
  41164. characterMakers.push(() => makeCharacter(
  41165. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41166. {
  41167. side: {
  41168. height: math.unit(21, "feet"),
  41169. name: "Side",
  41170. image: {
  41171. source: "./media/characters/nolow/side.svg",
  41172. extra: 1484/1434,
  41173. bottom: 85/1569
  41174. }
  41175. },
  41176. sideErect: {
  41177. height: math.unit(21, "feet"),
  41178. name: "Side-erect",
  41179. image: {
  41180. source: "./media/characters/nolow/side-erect.svg",
  41181. extra: 1484/1434,
  41182. bottom: 85/1569
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Regular",
  41189. height: math.unit(12, "feet")
  41190. },
  41191. {
  41192. name: "Big Chee",
  41193. height: math.unit(21, "feet"),
  41194. default: true
  41195. },
  41196. ]
  41197. ))
  41198. characterMakers.push(() => makeCharacter(
  41199. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41200. {
  41201. front: {
  41202. height: math.unit(7, "feet"),
  41203. weight: math.unit(250, "lb"),
  41204. name: "Front",
  41205. image: {
  41206. source: "./media/characters/nines/front.svg",
  41207. extra: 1741/1607,
  41208. bottom: 41/1782
  41209. }
  41210. },
  41211. side: {
  41212. height: math.unit(7, "feet"),
  41213. weight: math.unit(250, "lb"),
  41214. name: "Side",
  41215. image: {
  41216. source: "./media/characters/nines/side.svg",
  41217. extra: 1854/1735,
  41218. bottom: 93/1947
  41219. }
  41220. },
  41221. back: {
  41222. height: math.unit(7, "feet"),
  41223. weight: math.unit(250, "lb"),
  41224. name: "Back",
  41225. image: {
  41226. source: "./media/characters/nines/back.svg",
  41227. extra: 1748/1615,
  41228. bottom: 20/1768
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Megamacro",
  41235. height: math.unit(99, "km"),
  41236. default: true
  41237. },
  41238. ]
  41239. ))
  41240. characterMakers.push(() => makeCharacter(
  41241. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41242. {
  41243. front: {
  41244. height: math.unit(5 + 10/12, "feet"),
  41245. weight: math.unit(210, "lb"),
  41246. name: "Front",
  41247. image: {
  41248. source: "./media/characters/zenith/front.svg",
  41249. extra: 1531/1452,
  41250. bottom: 198/1729
  41251. }
  41252. },
  41253. back: {
  41254. height: math.unit(5 + 10/12, "feet"),
  41255. weight: math.unit(210, "lb"),
  41256. name: "Back",
  41257. image: {
  41258. source: "./media/characters/zenith/back.svg",
  41259. extra: 1571/1487,
  41260. bottom: 75/1646
  41261. }
  41262. },
  41263. },
  41264. [
  41265. {
  41266. name: "Normal",
  41267. height: math.unit(5 + 10/12, "feet"),
  41268. default: true
  41269. }
  41270. ]
  41271. ))
  41272. characterMakers.push(() => makeCharacter(
  41273. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41274. {
  41275. front: {
  41276. height: math.unit(4, "feet"),
  41277. weight: math.unit(60, "lb"),
  41278. name: "Front",
  41279. image: {
  41280. source: "./media/characters/jasper/front.svg",
  41281. extra: 1450/1379,
  41282. bottom: 19/1469
  41283. }
  41284. },
  41285. },
  41286. [
  41287. {
  41288. name: "Normal",
  41289. height: math.unit(4, "feet"),
  41290. default: true
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(6 + 5/12, "feet"),
  41299. weight: math.unit(290, "lb"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/tiberius-thyben/front.svg",
  41303. extra: 757/739,
  41304. bottom: 39/796
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Micro",
  41311. height: math.unit(1.5, "inches")
  41312. },
  41313. {
  41314. name: "Normal",
  41315. height: math.unit(6 + 5/12, "feet"),
  41316. default: true
  41317. },
  41318. {
  41319. name: "Macro",
  41320. height: math.unit(300, "feet")
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(5 + 6/12, "feet"),
  41329. weight: math.unit(60, "kg"),
  41330. name: "Front",
  41331. image: {
  41332. source: "./media/characters/sabre/front.svg",
  41333. extra: 738/671,
  41334. bottom: 27/765
  41335. }
  41336. },
  41337. },
  41338. [
  41339. {
  41340. name: "Teeny",
  41341. height: math.unit(2, "inches")
  41342. },
  41343. {
  41344. name: "Smol",
  41345. height: math.unit(8, "inches")
  41346. },
  41347. {
  41348. name: "Normal",
  41349. height: math.unit(5 + 6/12, "feet"),
  41350. default: true
  41351. },
  41352. {
  41353. name: "Mini-Macro",
  41354. height: math.unit(15, "feet")
  41355. },
  41356. {
  41357. name: "Macro",
  41358. height: math.unit(50, "feet")
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(6 + 4/12, "feet"),
  41367. weight: math.unit(170, "lb"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/charlie/front.svg",
  41371. extra: 1348/1228,
  41372. bottom: 15/1363
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Macro",
  41379. height: math.unit(1700, "meters"),
  41380. default: true
  41381. },
  41382. {
  41383. name: "MegaMacro",
  41384. height: math.unit(20400, "meters")
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6 + 3/12, "feet"),
  41393. weight: math.unit(185, "lb"),
  41394. name: "Front",
  41395. image: {
  41396. source: "./media/characters/susan-grant/front.svg",
  41397. extra: 1351/1327,
  41398. bottom: 26/1377
  41399. }
  41400. },
  41401. },
  41402. [
  41403. {
  41404. name: "Normal",
  41405. height: math.unit(6 + 3/12, "feet"),
  41406. default: true
  41407. },
  41408. {
  41409. name: "Macro",
  41410. height: math.unit(225, "feet")
  41411. },
  41412. {
  41413. name: "Macro+",
  41414. height: math.unit(900, "feet")
  41415. },
  41416. {
  41417. name: "MegaMacro",
  41418. height: math.unit(14400, "feet")
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41424. {
  41425. front: {
  41426. height: math.unit(5 + 4/12, "feet"),
  41427. weight: math.unit(110, "lb"),
  41428. name: "Front",
  41429. image: {
  41430. source: "./media/characters/axel-isanov/front.svg",
  41431. extra: 1096/1065,
  41432. bottom: 13/1109
  41433. }
  41434. },
  41435. },
  41436. [
  41437. {
  41438. name: "Normal",
  41439. height: math.unit(5 + 4/12, "feet"),
  41440. default: true
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41446. {
  41447. front: {
  41448. height: math.unit(9, "feet"),
  41449. weight: math.unit(467, "lb"),
  41450. name: "Front",
  41451. image: {
  41452. source: "./media/characters/necahual/front.svg",
  41453. extra: 920/873,
  41454. bottom: 26/946
  41455. }
  41456. },
  41457. back: {
  41458. height: math.unit(9, "feet"),
  41459. weight: math.unit(467, "lb"),
  41460. name: "Back",
  41461. image: {
  41462. source: "./media/characters/necahual/back.svg",
  41463. extra: 930/884,
  41464. bottom: 16/946
  41465. }
  41466. },
  41467. frontUnderwear: {
  41468. height: math.unit(9, "feet"),
  41469. weight: math.unit(467, "lb"),
  41470. name: "Front (Underwear)",
  41471. image: {
  41472. source: "./media/characters/necahual/front-underwear.svg",
  41473. extra: 920/873,
  41474. bottom: 26/946
  41475. }
  41476. },
  41477. frontDressed: {
  41478. height: math.unit(9, "feet"),
  41479. weight: math.unit(467, "lb"),
  41480. name: "Front (Dressed)",
  41481. image: {
  41482. source: "./media/characters/necahual/front-dressed.svg",
  41483. extra: 920/873,
  41484. bottom: 26/946
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Comprsesed",
  41491. height: math.unit(9, "feet")
  41492. },
  41493. {
  41494. name: "Natural",
  41495. height: math.unit(15, "feet"),
  41496. default: true
  41497. },
  41498. {
  41499. name: "Boosted",
  41500. height: math.unit(50, "feet")
  41501. },
  41502. {
  41503. name: "Boosted+",
  41504. height: math.unit(150, "feet")
  41505. },
  41506. {
  41507. name: "Max",
  41508. height: math.unit(500, "feet")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(22 + 1/12, "feet"),
  41517. weight: math.unit(3200, "lb"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/theo-acacia/front.svg",
  41521. extra: 1796/1741,
  41522. bottom: 83/1879
  41523. }
  41524. },
  41525. frontUnderwear: {
  41526. height: math.unit(22 + 1/12, "feet"),
  41527. weight: math.unit(3200, "lb"),
  41528. name: "Front (Underwear)",
  41529. image: {
  41530. source: "./media/characters/theo-acacia/front-underwear.svg",
  41531. extra: 1796/1741,
  41532. bottom: 83/1879
  41533. }
  41534. },
  41535. frontNude: {
  41536. height: math.unit(22 + 1/12, "feet"),
  41537. weight: math.unit(3200, "lb"),
  41538. name: "Front (Nude)",
  41539. image: {
  41540. source: "./media/characters/theo-acacia/front-nude.svg",
  41541. extra: 1796/1741,
  41542. bottom: 83/1879
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Normal",
  41549. height: math.unit(22 + 1/12, "feet"),
  41550. default: true
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41556. {
  41557. front: {
  41558. height: math.unit(20, "feet"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/astra/front.svg",
  41562. extra: 1850/1714,
  41563. bottom: 106/1956
  41564. }
  41565. },
  41566. frontUndressed: {
  41567. height: math.unit(20, "feet"),
  41568. name: "Front (Undressed)",
  41569. image: {
  41570. source: "./media/characters/astra/front-undressed.svg",
  41571. extra: 1926/1749,
  41572. bottom: 0/1926
  41573. }
  41574. },
  41575. hand: {
  41576. height: math.unit(1.53, "feet"),
  41577. name: "Hand",
  41578. image: {
  41579. source: "./media/characters/astra/hand.svg"
  41580. }
  41581. },
  41582. paw: {
  41583. height: math.unit(1.53, "feet"),
  41584. name: "Paw",
  41585. image: {
  41586. source: "./media/characters/astra/paw.svg"
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Smallest",
  41593. height: math.unit(20, "feet")
  41594. },
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(1e9, "miles"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Larger",
  41602. height: math.unit(5, "multiverses")
  41603. },
  41604. {
  41605. name: "Largest",
  41606. height: math.unit(1e9, "multiverses")
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(8, "feet"),
  41615. name: "Front",
  41616. image: {
  41617. source: "./media/characters/breanna/front.svg",
  41618. extra: 1912/1632,
  41619. bottom: 33/1945
  41620. }
  41621. },
  41622. },
  41623. [
  41624. {
  41625. name: "Smallest",
  41626. height: math.unit(8, "feet")
  41627. },
  41628. {
  41629. name: "Normal",
  41630. height: math.unit(1, "mile"),
  41631. default: true
  41632. },
  41633. {
  41634. name: "Maximum",
  41635. height: math.unit(1500000000000, "lightyears")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(5 + 11/12, "feet"),
  41644. weight: math.unit(155, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/cai/front.svg",
  41648. extra: 1823/1702,
  41649. bottom: 32/1855
  41650. }
  41651. },
  41652. back: {
  41653. height: math.unit(5 + 11/12, "feet"),
  41654. weight: math.unit(155, "lb"),
  41655. name: "Back",
  41656. image: {
  41657. source: "./media/characters/cai/back.svg",
  41658. extra: 1809/1708,
  41659. bottom: 31/1840
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Normal",
  41666. height: math.unit(5 + 11/12, "feet"),
  41667. default: true
  41668. },
  41669. {
  41670. name: "Big",
  41671. height: math.unit(15, "feet")
  41672. },
  41673. {
  41674. name: "Macro",
  41675. height: math.unit(200, "feet")
  41676. },
  41677. ]
  41678. ))
  41679. characterMakers.push(() => makeCharacter(
  41680. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41681. {
  41682. front: {
  41683. height: math.unit(5 + 6/12, "feet"),
  41684. weight: math.unit(160, "lb"),
  41685. name: "Front",
  41686. image: {
  41687. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41688. extra: 1227/1174,
  41689. bottom: 37/1264
  41690. }
  41691. },
  41692. },
  41693. [
  41694. {
  41695. name: "Macro",
  41696. height: math.unit(444, "meters"),
  41697. default: true
  41698. },
  41699. ]
  41700. ))
  41701. characterMakers.push(() => makeCharacter(
  41702. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41703. {
  41704. front: {
  41705. height: math.unit(18 + 7/12, "feet"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/rex/front.svg",
  41709. extra: 1941/1807,
  41710. bottom: 66/2007
  41711. }
  41712. },
  41713. back: {
  41714. height: math.unit(18 + 7/12, "feet"),
  41715. name: "Back",
  41716. image: {
  41717. source: "./media/characters/rex/back.svg",
  41718. extra: 1937/1822,
  41719. bottom: 42/1979
  41720. }
  41721. },
  41722. boot: {
  41723. height: math.unit(3.45, "feet"),
  41724. name: "Boot",
  41725. image: {
  41726. source: "./media/characters/rex/boot.svg"
  41727. }
  41728. },
  41729. paw: {
  41730. height: math.unit(4.17, "feet"),
  41731. name: "Paw",
  41732. image: {
  41733. source: "./media/characters/rex/paw.svg"
  41734. }
  41735. },
  41736. head: {
  41737. height: math.unit(6.728, "feet"),
  41738. name: "Head",
  41739. image: {
  41740. source: "./media/characters/rex/head.svg"
  41741. }
  41742. },
  41743. },
  41744. [
  41745. {
  41746. name: "Nano",
  41747. height: math.unit(18 + 7/12, "feet")
  41748. },
  41749. {
  41750. name: "Micro",
  41751. height: math.unit(1.5, "megameters")
  41752. },
  41753. {
  41754. name: "Normal",
  41755. height: math.unit(440, "megameters"),
  41756. default: true
  41757. },
  41758. {
  41759. name: "Macro",
  41760. height: math.unit(2.5, "gigameters")
  41761. },
  41762. {
  41763. name: "Gigamacro",
  41764. height: math.unit(2, "galaxies")
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41770. {
  41771. side: {
  41772. height: math.unit(32, "feet"),
  41773. weight: math.unit(250000, "lb"),
  41774. name: "Side",
  41775. image: {
  41776. source: "./media/characters/silverwing/side.svg",
  41777. extra: 1100/1019,
  41778. bottom: 204/1304
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Normal",
  41785. height: math.unit(32, "feet"),
  41786. default: true
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(6 + 6/12, "feet"),
  41795. weight: math.unit(350, "lb"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/tristan-hawthorne/front.svg",
  41799. extra: 1159/1124,
  41800. bottom: 37/1196
  41801. },
  41802. form: "labrador",
  41803. default: true
  41804. },
  41805. skunkFront: {
  41806. height: math.unit(4 + 6/12, "feet"),
  41807. weight: math.unit(120, "lb"),
  41808. name: "Front",
  41809. image: {
  41810. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41811. extra: 1609/1551,
  41812. bottom: 169/1778
  41813. },
  41814. form: "skunk",
  41815. default: true
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Normal",
  41821. height: math.unit(6 + 6/12, "feet"),
  41822. form: "labrador",
  41823. default: true
  41824. },
  41825. {
  41826. name: "Normal",
  41827. height: math.unit(4 + 6/12, "feet"),
  41828. form: "skunk",
  41829. default: true
  41830. },
  41831. ],
  41832. {
  41833. "labrador": {
  41834. name: "Labrador",
  41835. default: true
  41836. },
  41837. "skunk": {
  41838. name: "Skunk"
  41839. }
  41840. }
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(5 + 11/12, "feet"),
  41847. weight: math.unit(190, "lb"),
  41848. name: "Front",
  41849. image: {
  41850. source: "./media/characters/mizu/front.svg",
  41851. extra: 1988/1788,
  41852. bottom: 14/2002
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(5 + 11/12, "feet"),
  41860. default: true
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(1.7, "feet"),
  41869. weight: math.unit(50, "lb"),
  41870. name: "Front",
  41871. image: {
  41872. source: "./media/characters/dechroma/front.svg",
  41873. extra: 1095/859,
  41874. bottom: 64/1159
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Normal",
  41881. height: math.unit(1.7, "feet"),
  41882. default: true
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41888. {
  41889. side: {
  41890. height: math.unit(30, "feet"),
  41891. name: "Side",
  41892. image: {
  41893. source: "./media/characters/veluren-thanazel/side.svg",
  41894. extra: 1611/633,
  41895. bottom: 118/1729
  41896. }
  41897. },
  41898. front: {
  41899. height: math.unit(30, "feet"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/veluren-thanazel/front.svg",
  41903. extra: 1486/636,
  41904. bottom: 238/1724
  41905. }
  41906. },
  41907. head: {
  41908. height: math.unit(21.4, "feet"),
  41909. name: "Head",
  41910. image: {
  41911. source: "./media/characters/veluren-thanazel/head.svg"
  41912. }
  41913. },
  41914. genitals: {
  41915. height: math.unit(19.4, "feet"),
  41916. name: "Genitals",
  41917. image: {
  41918. source: "./media/characters/veluren-thanazel/genitals.svg"
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Social",
  41925. height: math.unit(6, "feet")
  41926. },
  41927. {
  41928. name: "Play",
  41929. height: math.unit(12, "feet")
  41930. },
  41931. {
  41932. name: "True",
  41933. height: math.unit(30, "feet"),
  41934. default: true
  41935. },
  41936. ]
  41937. ))
  41938. characterMakers.push(() => makeCharacter(
  41939. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41940. {
  41941. front: {
  41942. height: math.unit(7 + 6/12, "feet"),
  41943. weight: math.unit(500, "kg"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/arcturas/front.svg",
  41947. extra: 1700/1500,
  41948. bottom: 145/1845
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(7 + 6/12, "feet"),
  41956. default: true
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41962. {
  41963. side: {
  41964. height: math.unit(6, "feet"),
  41965. weight: math.unit(2, "tons"),
  41966. name: "Side",
  41967. image: {
  41968. source: "./media/characters/vitaen/side.svg",
  41969. extra: 1157/617,
  41970. bottom: 122/1279
  41971. }
  41972. },
  41973. },
  41974. [
  41975. {
  41976. name: "Normal",
  41977. height: math.unit(6, "feet"),
  41978. default: true
  41979. },
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41984. {
  41985. front: {
  41986. height: math.unit(19, "feet"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/fia-dreamweaver/front.svg",
  41990. extra: 1630/1504,
  41991. bottom: 25/1655
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(19, "feet"),
  41999. default: true
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42005. {
  42006. front: {
  42007. height: math.unit(5 + 4/12, "feet"),
  42008. name: "Front",
  42009. image: {
  42010. source: "./media/characters/artan/front.svg",
  42011. extra: 1618/1535,
  42012. bottom: 46/1664
  42013. }
  42014. },
  42015. back: {
  42016. height: math.unit(5 + 4/12, "feet"),
  42017. name: "Back",
  42018. image: {
  42019. source: "./media/characters/artan/back.svg",
  42020. extra: 1618/1543,
  42021. bottom: 31/1649
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(5 + 4/12, "feet"),
  42029. default: true
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42035. {
  42036. side: {
  42037. height: math.unit(182, "cm"),
  42038. weight: math.unit(1000, "lb"),
  42039. name: "Side",
  42040. image: {
  42041. source: "./media/characters/silver-dragon/side.svg",
  42042. extra: 710/287,
  42043. bottom: 88/798
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(182, "cm"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42057. {
  42058. side: {
  42059. height: math.unit(6 + 6/12, "feet"),
  42060. weight: math.unit(1.5, "tons"),
  42061. name: "Side",
  42062. image: {
  42063. source: "./media/characters/zephyr/side.svg",
  42064. extra: 1433/586,
  42065. bottom: 109/1542
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(6 + 6/12, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42079. {
  42080. side: {
  42081. height: math.unit(1, "feet"),
  42082. name: "Side",
  42083. image: {
  42084. source: "./media/characters/vixye/side.svg",
  42085. extra: 632/541,
  42086. bottom: 0/632
  42087. }
  42088. },
  42089. },
  42090. [
  42091. {
  42092. name: "Normal",
  42093. height: math.unit(1, "feet"),
  42094. default: true
  42095. },
  42096. {
  42097. name: "True",
  42098. height: math.unit(1e15, "multiverses")
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42104. {
  42105. front: {
  42106. height: math.unit(8 + 2/12, "feet"),
  42107. weight: math.unit(650, "lb"),
  42108. name: "Front",
  42109. image: {
  42110. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42111. extra: 1174/1137,
  42112. bottom: 82/1256
  42113. }
  42114. },
  42115. back: {
  42116. height: math.unit(8 + 2/12, "feet"),
  42117. weight: math.unit(650, "lb"),
  42118. name: "Back",
  42119. image: {
  42120. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42121. extra: 1204/1157,
  42122. bottom: 46/1250
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Wildform",
  42129. height: math.unit(8 + 2/12, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(18, "feet"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/cyphin/front.svg",
  42142. extra: 970/886,
  42143. bottom: 42/1012
  42144. }
  42145. },
  42146. back: {
  42147. height: math.unit(18, "feet"),
  42148. name: "Back",
  42149. image: {
  42150. source: "./media/characters/cyphin/back.svg",
  42151. extra: 1009/894,
  42152. bottom: 24/1033
  42153. }
  42154. },
  42155. head: {
  42156. height: math.unit(5.05, "feet"),
  42157. name: "Head",
  42158. image: {
  42159. source: "./media/characters/cyphin/head.svg"
  42160. }
  42161. },
  42162. tailbud: {
  42163. height: math.unit(5, "feet"),
  42164. name: "Tailbud",
  42165. image: {
  42166. source: "./media/characters/cyphin/tailbud.svg"
  42167. }
  42168. },
  42169. },
  42170. [
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42175. {
  42176. side: {
  42177. height: math.unit(10, "feet"),
  42178. weight: math.unit(6, "tons"),
  42179. name: "Side",
  42180. image: {
  42181. source: "./media/characters/raijin/side.svg",
  42182. extra: 1529/613,
  42183. bottom: 337/1866
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(10, "feet"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42197. {
  42198. side: {
  42199. height: math.unit(9, "feet"),
  42200. name: "Side",
  42201. image: {
  42202. source: "./media/characters/nilghais/side.svg",
  42203. extra: 1047/744,
  42204. bottom: 91/1138
  42205. }
  42206. },
  42207. head: {
  42208. height: math.unit(3.14, "feet"),
  42209. name: "Head",
  42210. image: {
  42211. source: "./media/characters/nilghais/head.svg"
  42212. }
  42213. },
  42214. mouth: {
  42215. height: math.unit(4.6, "feet"),
  42216. name: "Mouth",
  42217. image: {
  42218. source: "./media/characters/nilghais/mouth.svg"
  42219. }
  42220. },
  42221. wings: {
  42222. height: math.unit(24, "feet"),
  42223. name: "Wings",
  42224. image: {
  42225. source: "./media/characters/nilghais/wings.svg"
  42226. }
  42227. },
  42228. ass: {
  42229. height: math.unit(6.12, "feet"),
  42230. name: "Ass",
  42231. image: {
  42232. source: "./media/characters/nilghais/ass.svg"
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Normal",
  42239. height: math.unit(9, "feet"),
  42240. default: true
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42246. {
  42247. regular: {
  42248. height: math.unit(16 + 2/12, "feet"),
  42249. weight: math.unit(2300, "lb"),
  42250. name: "Regular",
  42251. image: {
  42252. source: "./media/characters/zolgar/regular.svg",
  42253. extra: 1246/1004,
  42254. bottom: 124/1370
  42255. }
  42256. },
  42257. boxers: {
  42258. height: math.unit(16 + 2/12, "feet"),
  42259. weight: math.unit(2300, "lb"),
  42260. name: "Boxers",
  42261. image: {
  42262. source: "./media/characters/zolgar/boxers.svg",
  42263. extra: 1246/1004,
  42264. bottom: 124/1370
  42265. }
  42266. },
  42267. armored: {
  42268. height: math.unit(16 + 2/12, "feet"),
  42269. weight: math.unit(2300, "lb"),
  42270. name: "Armored",
  42271. image: {
  42272. source: "./media/characters/zolgar/armored.svg",
  42273. extra: 1246/1004,
  42274. bottom: 124/1370
  42275. }
  42276. },
  42277. goth: {
  42278. height: math.unit(16 + 2/12, "feet"),
  42279. weight: math.unit(2300, "lb"),
  42280. name: "Goth",
  42281. image: {
  42282. source: "./media/characters/zolgar/goth.svg",
  42283. extra: 1246/1004,
  42284. bottom: 124/1370
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Shrunken Down",
  42291. height: math.unit(9 + 2/12, "feet")
  42292. },
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(16 + 2/12, "feet"),
  42296. default: true
  42297. },
  42298. ]
  42299. ))
  42300. characterMakers.push(() => makeCharacter(
  42301. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42302. {
  42303. front: {
  42304. height: math.unit(6, "feet"),
  42305. weight: math.unit(168, "lb"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/luca/front.svg",
  42309. extra: 841/667,
  42310. bottom: 102/943
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(6, "feet"),
  42318. default: true
  42319. },
  42320. ]
  42321. ))
  42322. characterMakers.push(() => makeCharacter(
  42323. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42324. {
  42325. side: {
  42326. height: math.unit(7 + 3/12, "feet"),
  42327. weight: math.unit(312, "lb"),
  42328. name: "Side",
  42329. image: {
  42330. source: "./media/characters/zezo/side.svg",
  42331. extra: 1192/1067,
  42332. bottom: 63/1255
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Normal",
  42339. height: math.unit(7 + 3/12, "feet"),
  42340. default: true
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(5 + 5/12, "feet"),
  42349. weight: math.unit(170, "lb"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/mayso/front.svg",
  42353. extra: 1215/1108,
  42354. bottom: 16/1231
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(5 + 5/12, "feet"),
  42362. default: true
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(4 + 3/12, "feet"),
  42371. weight: math.unit(80, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/hess/front.svg",
  42375. extra: 1200/1123,
  42376. bottom: 16/1216
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(4 + 3/12, "feet"),
  42384. default: true
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42390. {
  42391. front: {
  42392. height: math.unit(1.9, "meters"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/ashgar/front.svg",
  42396. extra: 1177/1146,
  42397. bottom: 99/1276
  42398. }
  42399. },
  42400. back: {
  42401. height: math.unit(1.9, "meters"),
  42402. name: "Back",
  42403. image: {
  42404. source: "./media/characters/ashgar/back.svg",
  42405. extra: 1201/1183,
  42406. bottom: 53/1254
  42407. }
  42408. },
  42409. feral: {
  42410. height: math.unit(1.4, "meters"),
  42411. name: "Feral",
  42412. image: {
  42413. source: "./media/characters/ashgar/feral.svg",
  42414. extra: 370/345,
  42415. bottom: 45/415
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(1.9, "meters"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42429. {
  42430. regular: {
  42431. height: math.unit(6, "feet"),
  42432. weight: math.unit(220, "lb"),
  42433. name: "Regular",
  42434. image: {
  42435. source: "./media/characters/phillip/regular.svg",
  42436. extra: 1373/1277,
  42437. bottom: 75/1448
  42438. }
  42439. },
  42440. dressed: {
  42441. height: math.unit(6, "feet"),
  42442. weight: math.unit(220, "lb"),
  42443. name: "Dressed",
  42444. image: {
  42445. source: "./media/characters/phillip/dressed.svg",
  42446. extra: 1373/1277,
  42447. bottom: 75/1448
  42448. }
  42449. },
  42450. paw: {
  42451. height: math.unit(1.44, "feet"),
  42452. name: "Paw",
  42453. image: {
  42454. source: "./media/characters/phillip/paw.svg"
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(6, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42468. {
  42469. side: {
  42470. height: math.unit(42, "feet"),
  42471. name: "Side",
  42472. image: {
  42473. source: "./media/characters/uvula/side.svg",
  42474. extra: 683/586,
  42475. bottom: 60/743
  42476. }
  42477. },
  42478. front: {
  42479. height: math.unit(42, "feet"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/uvula/front.svg",
  42483. extra: 705/613,
  42484. bottom: 54/759
  42485. }
  42486. },
  42487. maw: {
  42488. height: math.unit(23.5, "feet"),
  42489. name: "Maw",
  42490. image: {
  42491. source: "./media/characters/uvula/maw.svg"
  42492. }
  42493. },
  42494. },
  42495. [
  42496. {
  42497. name: "Original Size",
  42498. height: math.unit(14, "inches")
  42499. },
  42500. {
  42501. name: "Human Size",
  42502. height: math.unit(6, "feet")
  42503. },
  42504. {
  42505. name: "Big",
  42506. height: math.unit(42, "feet"),
  42507. default: true
  42508. },
  42509. {
  42510. name: "Bigger",
  42511. height: math.unit(100, "feet")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(5 + 11/12, "feet"),
  42520. name: "Front",
  42521. image: {
  42522. source: "./media/characters/lannah/front.svg",
  42523. extra: 1208/1113,
  42524. bottom: 97/1305
  42525. }
  42526. },
  42527. },
  42528. [
  42529. {
  42530. name: "Normal",
  42531. height: math.unit(5 + 11/12, "feet"),
  42532. default: true
  42533. },
  42534. ]
  42535. ))
  42536. characterMakers.push(() => makeCharacter(
  42537. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42538. {
  42539. front: {
  42540. height: math.unit(6 + 3/12, "feet"),
  42541. weight: math.unit(3.5, "tons"),
  42542. name: "Front",
  42543. image: {
  42544. source: "./media/characters/emberflame/front.svg",
  42545. extra: 1198/672,
  42546. bottom: 82/1280
  42547. }
  42548. },
  42549. side: {
  42550. height: math.unit(6 + 3/12, "feet"),
  42551. weight: math.unit(3.5, "tons"),
  42552. name: "Side",
  42553. image: {
  42554. source: "./media/characters/emberflame/side.svg",
  42555. extra: 938/527,
  42556. bottom: 56/994
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(6 + 3/12, "feet"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42570. {
  42571. side: {
  42572. height: math.unit(17.5, "feet"),
  42573. weight: math.unit(35, "tons"),
  42574. name: "Side",
  42575. image: {
  42576. source: "./media/characters/sophie-ambrose/side.svg",
  42577. extra: 1573/1242,
  42578. bottom: 71/1644
  42579. }
  42580. },
  42581. maw: {
  42582. height: math.unit(7.4, "feet"),
  42583. name: "Maw",
  42584. image: {
  42585. source: "./media/characters/sophie-ambrose/maw.svg"
  42586. }
  42587. },
  42588. },
  42589. [
  42590. {
  42591. name: "Normal",
  42592. height: math.unit(17.5, "feet"),
  42593. default: true
  42594. },
  42595. ]
  42596. ))
  42597. characterMakers.push(() => makeCharacter(
  42598. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42599. {
  42600. front: {
  42601. height: math.unit(280, "feet"),
  42602. weight: math.unit(550, "tons"),
  42603. name: "Front",
  42604. image: {
  42605. source: "./media/characters/king-mugi/front.svg",
  42606. extra: 1102/947,
  42607. bottom: 104/1206
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "King Mugi",
  42614. height: math.unit(280, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(64, "meters"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/nova-fox/front.svg",
  42627. extra: 1310/1246,
  42628. bottom: 65/1375
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(64, "meters"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(6 + 3/12, "feet"),
  42645. weight: math.unit(170, "lb"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/sam-bat/front.svg",
  42649. extra: 1601/1411,
  42650. bottom: 125/1726
  42651. }
  42652. },
  42653. back: {
  42654. height: math.unit(6 + 3/12, "feet"),
  42655. weight: math.unit(170, "lb"),
  42656. name: "Back",
  42657. image: {
  42658. source: "./media/characters/sam-bat/back.svg",
  42659. extra: 1577/1405,
  42660. bottom: 58/1635
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "Normal",
  42667. height: math.unit(6 + 3/12, "feet"),
  42668. default: true
  42669. },
  42670. ]
  42671. ))
  42672. characterMakers.push(() => makeCharacter(
  42673. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42674. {
  42675. front: {
  42676. height: math.unit(59, "feet"),
  42677. weight: math.unit(40000, "lb"),
  42678. name: "Front",
  42679. image: {
  42680. source: "./media/characters/inari/front.svg",
  42681. extra: 1884/1350,
  42682. bottom: 95/1979
  42683. }
  42684. },
  42685. },
  42686. [
  42687. {
  42688. name: "Gigantamax",
  42689. height: math.unit(59, "feet"),
  42690. default: true
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42696. {
  42697. front: {
  42698. height: math.unit(5 + 8/12, "feet"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/elizabeth/front.svg",
  42702. extra: 1395/1298,
  42703. bottom: 54/1449
  42704. }
  42705. },
  42706. mouth: {
  42707. height: math.unit(1.97, "feet"),
  42708. name: "Mouth",
  42709. image: {
  42710. source: "./media/characters/elizabeth/mouth.svg"
  42711. }
  42712. },
  42713. foot: {
  42714. height: math.unit(1.17, "feet"),
  42715. name: "Foot",
  42716. image: {
  42717. source: "./media/characters/elizabeth/foot.svg"
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(5 + 8/12, "feet"),
  42725. default: true
  42726. },
  42727. {
  42728. name: "Minimacro",
  42729. height: math.unit(18, "feet")
  42730. },
  42731. {
  42732. name: "Macro",
  42733. height: math.unit(180, "feet")
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(5 + 2/12, "feet"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/october-gossamer/front.svg",
  42745. extra: 505/454,
  42746. bottom: 7/512
  42747. }
  42748. },
  42749. back: {
  42750. height: math.unit(5 + 2/12, "feet"),
  42751. name: "Back",
  42752. image: {
  42753. source: "./media/characters/october-gossamer/back.svg",
  42754. extra: 501/454,
  42755. bottom: 11/512
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(5 + 2/12, "feet"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(5, "feet"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/epiglottis/front.svg",
  42775. extra: 923/849,
  42776. bottom: 17/940
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Original Size",
  42783. height: math.unit(10, "inches")
  42784. },
  42785. {
  42786. name: "Human Size",
  42787. height: math.unit(5, "feet"),
  42788. default: true
  42789. },
  42790. {
  42791. name: "Big",
  42792. height: math.unit(25, "feet")
  42793. },
  42794. {
  42795. name: "Bigger",
  42796. height: math.unit(50, "feet")
  42797. },
  42798. {
  42799. name: "oh lawd",
  42800. height: math.unit(75, "feet")
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(2 + 4/12, "feet"),
  42809. weight: math.unit(60, "lb"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/lerm/front.svg",
  42813. extra: 796/790,
  42814. bottom: 79/875
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(2 + 4/12, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(5.5, "feet"),
  42831. weight: math.unit(130, "lb"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/xena-nebadon/front.svg",
  42835. extra: 1828/1730,
  42836. bottom: 79/1907
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Tiny Puppy",
  42843. height: math.unit(3, "inches")
  42844. },
  42845. {
  42846. name: "Normal",
  42847. height: math.unit(5.5, "feet"),
  42848. default: true
  42849. },
  42850. {
  42851. name: "Lotta Lady",
  42852. height: math.unit(12, "feet")
  42853. },
  42854. {
  42855. name: "Pretty Big",
  42856. height: math.unit(100, "feet")
  42857. },
  42858. {
  42859. name: "Big",
  42860. height: math.unit(500, "feet")
  42861. },
  42862. {
  42863. name: "Skyscraper Toys",
  42864. height: math.unit(2500, "feet")
  42865. },
  42866. {
  42867. name: "Plane Catcher",
  42868. height: math.unit(8, "miles")
  42869. },
  42870. {
  42871. name: "Planet Toys",
  42872. height: math.unit(15, "earths")
  42873. },
  42874. {
  42875. name: "Stardust",
  42876. height: math.unit(0.25, "galaxies")
  42877. },
  42878. {
  42879. name: "Snacks",
  42880. height: math.unit(70, "universes")
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(1.6, "meters"),
  42889. weight: math.unit(60, "kg"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/bounty/front.svg",
  42893. extra: 1426/1308,
  42894. bottom: 15/1441
  42895. }
  42896. },
  42897. back: {
  42898. height: math.unit(1.6, "meters"),
  42899. weight: math.unit(60, "kg"),
  42900. name: "Back",
  42901. image: {
  42902. source: "./media/characters/bounty/back.svg",
  42903. extra: 1417/1307,
  42904. bottom: 8/1425
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(1.6, "meters"),
  42912. default: true
  42913. },
  42914. {
  42915. name: "Macro",
  42916. height: math.unit(300, "meters")
  42917. },
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42922. {
  42923. front: {
  42924. height: math.unit(2 + 8/12, "feet"),
  42925. weight: math.unit(15, "lb"),
  42926. name: "Front",
  42927. image: {
  42928. source: "./media/characters/mochi/front.svg",
  42929. extra: 1022/852,
  42930. bottom: 435/1457
  42931. }
  42932. },
  42933. back: {
  42934. height: math.unit(2 + 8/12, "feet"),
  42935. weight: math.unit(15, "lb"),
  42936. name: "Back",
  42937. image: {
  42938. source: "./media/characters/mochi/back.svg",
  42939. extra: 1335/1119,
  42940. bottom: 39/1374
  42941. }
  42942. },
  42943. bird: {
  42944. height: math.unit(2 + 8/12, "feet"),
  42945. weight: math.unit(15, "lb"),
  42946. name: "Bird",
  42947. image: {
  42948. source: "./media/characters/mochi/bird.svg",
  42949. extra: 1251/1113,
  42950. bottom: 178/1429
  42951. }
  42952. },
  42953. kaiju: {
  42954. height: math.unit(154, "feet"),
  42955. weight: math.unit(1e7, "lb"),
  42956. name: "Kaiju",
  42957. image: {
  42958. source: "./media/characters/mochi/kaiju.svg",
  42959. extra: 460/324,
  42960. bottom: 40/500
  42961. }
  42962. },
  42963. head: {
  42964. height: math.unit(1.21, "feet"),
  42965. name: "Head",
  42966. image: {
  42967. source: "./media/characters/mochi/head.svg"
  42968. }
  42969. },
  42970. alternateTail: {
  42971. height: math.unit(2 + 8/12, "feet"),
  42972. weight: math.unit(45, "lb"),
  42973. name: "Alternate Tail",
  42974. image: {
  42975. source: "./media/characters/mochi/alternate-tail.svg",
  42976. extra: 139/76,
  42977. bottom: 45/184
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "Micro",
  42984. height: math.unit(2, "inches")
  42985. },
  42986. {
  42987. name: "Normal",
  42988. height: math.unit(2 + 8/12, "feet"),
  42989. default: true
  42990. },
  42991. {
  42992. name: "Macro",
  42993. height: math.unit(106, "feet")
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42999. {
  43000. front: {
  43001. height: math.unit(5.67, "feet"),
  43002. weight: math.unit(135, "lb"),
  43003. name: "Front",
  43004. image: {
  43005. source: "./media/characters/sarel/front.svg",
  43006. extra: 865/788,
  43007. bottom: 97/962
  43008. }
  43009. },
  43010. back: {
  43011. height: math.unit(5.67, "feet"),
  43012. weight: math.unit(135, "lb"),
  43013. name: "Back",
  43014. image: {
  43015. source: "./media/characters/sarel/back.svg",
  43016. extra: 857/777,
  43017. bottom: 32/889
  43018. }
  43019. },
  43020. chozoan: {
  43021. height: math.unit(5.67, "feet"),
  43022. weight: math.unit(135, "lb"),
  43023. name: "Chozoan",
  43024. image: {
  43025. source: "./media/characters/sarel/chozoan.svg",
  43026. extra: 865/788,
  43027. bottom: 97/962
  43028. }
  43029. },
  43030. current: {
  43031. height: math.unit(5.67, "feet"),
  43032. weight: math.unit(135, "lb"),
  43033. name: "Current",
  43034. image: {
  43035. source: "./media/characters/sarel/current.svg",
  43036. extra: 865/788,
  43037. bottom: 97/962
  43038. }
  43039. },
  43040. head: {
  43041. height: math.unit(1.77, "feet"),
  43042. name: "Head",
  43043. image: {
  43044. source: "./media/characters/sarel/head.svg"
  43045. }
  43046. },
  43047. claws: {
  43048. height: math.unit(1.8, "feet"),
  43049. name: "Claws",
  43050. image: {
  43051. source: "./media/characters/sarel/claws.svg"
  43052. }
  43053. },
  43054. clawsAlt: {
  43055. height: math.unit(1.8, "feet"),
  43056. name: "Claws-alt",
  43057. image: {
  43058. source: "./media/characters/sarel/claws-alt.svg"
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(5.67, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43072. {
  43073. front: {
  43074. height: math.unit(5500, "feet"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/alyonia/front.svg",
  43078. extra: 1200/1135,
  43079. bottom: 29/1229
  43080. }
  43081. },
  43082. back: {
  43083. height: math.unit(5500, "feet"),
  43084. name: "Back",
  43085. image: {
  43086. source: "./media/characters/alyonia/back.svg",
  43087. extra: 1205/1138,
  43088. bottom: 10/1215
  43089. }
  43090. },
  43091. },
  43092. [
  43093. {
  43094. name: "Small",
  43095. height: math.unit(10, "feet")
  43096. },
  43097. {
  43098. name: "Macro",
  43099. height: math.unit(500, "feet")
  43100. },
  43101. {
  43102. name: "Mega Macro",
  43103. height: math.unit(5500, "feet"),
  43104. default: true
  43105. },
  43106. {
  43107. name: "Mega Macro+",
  43108. height: math.unit(500000, "feet")
  43109. },
  43110. {
  43111. name: "Giga Macro",
  43112. height: math.unit(3000, "miles")
  43113. },
  43114. {
  43115. name: "Tera Macro",
  43116. height: math.unit(2.8e6, "miles")
  43117. },
  43118. {
  43119. name: "Galactic",
  43120. height: math.unit(120000, "lightyears")
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43126. {
  43127. werewolf: {
  43128. height: math.unit(8, "feet"),
  43129. weight: math.unit(425, "lb"),
  43130. name: "Werewolf",
  43131. image: {
  43132. source: "./media/characters/autumn/werewolf.svg",
  43133. extra: 2154/2031,
  43134. bottom: 160/2314
  43135. }
  43136. },
  43137. human: {
  43138. height: math.unit(5 + 8/12, "feet"),
  43139. weight: math.unit(150, "lb"),
  43140. name: "Human",
  43141. image: {
  43142. source: "./media/characters/autumn/human.svg",
  43143. extra: 1200/1149,
  43144. bottom: 30/1230
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Normal",
  43151. height: math.unit(8, "feet"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43158. {
  43159. front: {
  43160. height: math.unit(8 + 5/12, "feet"),
  43161. weight: math.unit(825, "lb"),
  43162. name: "Front",
  43163. image: {
  43164. source: "./media/characters/cobalt-charizard/front.svg",
  43165. extra: 1268/1155,
  43166. bottom: 122/1390
  43167. }
  43168. },
  43169. side: {
  43170. height: math.unit(8 + 5/12, "feet"),
  43171. weight: math.unit(825, "lb"),
  43172. name: "Side",
  43173. image: {
  43174. source: "./media/characters/cobalt-charizard/side.svg",
  43175. extra: 1348/1257,
  43176. bottom: 58/1406
  43177. }
  43178. },
  43179. gMax: {
  43180. height: math.unit(134 + 11/12, "feet"),
  43181. name: "G-Max",
  43182. image: {
  43183. source: "./media/characters/cobalt-charizard/g-max.svg",
  43184. extra: 1835/1541,
  43185. bottom: 151/1986
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(8 + 5/12, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(6 + 3/12, "feet"),
  43202. weight: math.unit(210, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/stella/front.svg",
  43206. extra: 3549/3335,
  43207. bottom: 51/3600
  43208. }
  43209. },
  43210. },
  43211. [
  43212. {
  43213. name: "Normal",
  43214. height: math.unit(6 + 3/12, "feet"),
  43215. default: true
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(5, "feet"),
  43224. weight: math.unit(90, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/riley-bishop/front.svg",
  43228. extra: 1450/1428,
  43229. bottom: 152/1602
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43243. {
  43244. side: {
  43245. height: math.unit(8 + 2/12, "feet"),
  43246. weight: math.unit(500, "kg"),
  43247. name: "Side",
  43248. image: {
  43249. source: "./media/characters/theo-arcanine/side.svg",
  43250. extra: 1342/1074,
  43251. bottom: 111/1453
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Normal",
  43258. height: math.unit(8 + 2/12, "feet"),
  43259. default: true
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(4, "feet"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/kali/front.svg",
  43271. extra: 1921/1357,
  43272. bottom: 70/1991
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(4, "feet"),
  43280. default: true
  43281. },
  43282. {
  43283. name: "Macro",
  43284. height: math.unit(32, "meters")
  43285. },
  43286. {
  43287. name: "Macro+",
  43288. height: math.unit(150, "meters")
  43289. },
  43290. {
  43291. name: "Megamacro",
  43292. height: math.unit(7500, "meters")
  43293. },
  43294. {
  43295. name: "Megamacro+",
  43296. height: math.unit(80, "kilometers")
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43302. {
  43303. side: {
  43304. height: math.unit(5 + 11/12, "feet"),
  43305. weight: math.unit(236, "lb"),
  43306. name: "Side",
  43307. image: {
  43308. source: "./media/characters/gapp/side.svg",
  43309. extra: 775/340,
  43310. bottom: 58/833
  43311. }
  43312. },
  43313. mouth: {
  43314. height: math.unit(2.98, "feet"),
  43315. name: "Mouth",
  43316. image: {
  43317. source: "./media/characters/gapp/mouth.svg"
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(5 + 1/12, "feet"),
  43325. default: true
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43331. {
  43332. front: {
  43333. height: math.unit(6, "feet"),
  43334. name: "Front",
  43335. image: {
  43336. source: "./media/characters/persephone/front.svg",
  43337. extra: 1895/1717,
  43338. bottom: 96/1991
  43339. }
  43340. },
  43341. back: {
  43342. height: math.unit(6, "feet"),
  43343. name: "Back",
  43344. image: {
  43345. source: "./media/characters/persephone/back.svg",
  43346. extra: 1868/1679,
  43347. bottom: 26/1894
  43348. }
  43349. },
  43350. casual: {
  43351. height: math.unit(6, "feet"),
  43352. name: "Casual",
  43353. image: {
  43354. source: "./media/characters/persephone/casual.svg",
  43355. extra: 1713/1541,
  43356. bottom: 76/1789
  43357. }
  43358. },
  43359. },
  43360. [
  43361. {
  43362. name: "Human Size",
  43363. height: math.unit(6, "feet")
  43364. },
  43365. {
  43366. name: "Big Steppy",
  43367. height: math.unit(600, "meters"),
  43368. default: true
  43369. },
  43370. {
  43371. name: "Galaxy Brain",
  43372. height: math.unit(1, "zettameter")
  43373. },
  43374. ]
  43375. ))
  43376. characterMakers.push(() => makeCharacter(
  43377. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43378. {
  43379. front: {
  43380. height: math.unit(1.85, "meters"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/riley-foxthing/front.svg",
  43384. extra: 1495/1354,
  43385. bottom: 122/1617
  43386. }
  43387. },
  43388. frontAlt: {
  43389. height: math.unit(1.85, "meters"),
  43390. name: "Front (Alt)",
  43391. image: {
  43392. source: "./media/characters/riley-foxthing/front-alt.svg",
  43393. extra: 1572/1389,
  43394. bottom: 116/1688
  43395. }
  43396. },
  43397. },
  43398. [
  43399. {
  43400. name: "Normal Sized",
  43401. height: math.unit(1.85, "meters"),
  43402. default: true
  43403. },
  43404. {
  43405. name: "Quite Sizable",
  43406. height: math.unit(5, "meters")
  43407. },
  43408. {
  43409. name: "Rather Large",
  43410. height: math.unit(20, "meters")
  43411. },
  43412. {
  43413. name: "Macro",
  43414. height: math.unit(450, "meters")
  43415. },
  43416. {
  43417. name: "Giga",
  43418. height: math.unit(5, "km")
  43419. },
  43420. ]
  43421. ))
  43422. characterMakers.push(() => makeCharacter(
  43423. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43424. {
  43425. front: {
  43426. height: math.unit(6, "feet"),
  43427. weight: math.unit(200, "lb"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/blizzard/front.svg",
  43431. extra: 1136/990,
  43432. bottom: 136/1272
  43433. }
  43434. },
  43435. back: {
  43436. height: math.unit(6, "feet"),
  43437. weight: math.unit(200, "lb"),
  43438. name: "Back",
  43439. image: {
  43440. source: "./media/characters/blizzard/back.svg",
  43441. extra: 1175/1034,
  43442. bottom: 97/1272
  43443. }
  43444. },
  43445. sitting: {
  43446. height: math.unit(3.725, "feet"),
  43447. weight: math.unit(200, "lb"),
  43448. name: "Sitting",
  43449. image: {
  43450. source: "./media/characters/blizzard/sitting.svg",
  43451. extra: 581/485,
  43452. bottom: 90/671
  43453. }
  43454. },
  43455. frontWizard: {
  43456. height: math.unit(7.9, "feet"),
  43457. weight: math.unit(200, "lb"),
  43458. name: "Front (Wizard)",
  43459. image: {
  43460. source: "./media/characters/blizzard/front-wizard.svg"
  43461. }
  43462. },
  43463. backWizard: {
  43464. height: math.unit(7.9, "feet"),
  43465. weight: math.unit(200, "lb"),
  43466. name: "Back (Wizard)",
  43467. image: {
  43468. source: "./media/characters/blizzard/back-wizard.svg"
  43469. }
  43470. },
  43471. frontNsfw: {
  43472. height: math.unit(6, "feet"),
  43473. weight: math.unit(200, "lb"),
  43474. name: "Front (NSFW)",
  43475. image: {
  43476. source: "./media/characters/blizzard/front-nsfw.svg",
  43477. extra: 1136/990,
  43478. bottom: 136/1272
  43479. }
  43480. },
  43481. backNsfw: {
  43482. height: math.unit(6, "feet"),
  43483. weight: math.unit(200, "lb"),
  43484. name: "Back (NSFW)",
  43485. image: {
  43486. source: "./media/characters/blizzard/back-nsfw.svg",
  43487. extra: 1175/1034,
  43488. bottom: 97/1272
  43489. }
  43490. },
  43491. sittingNsfw: {
  43492. height: math.unit(3.725, "feet"),
  43493. weight: math.unit(200, "lb"),
  43494. name: "Sitting (NSFW)",
  43495. image: {
  43496. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43497. extra: 581/485,
  43498. bottom: 90/671
  43499. }
  43500. },
  43501. wizardFrontNsfw: {
  43502. height: math.unit(7.9, "feet"),
  43503. weight: math.unit(200, "lb"),
  43504. name: "Wizard (Front, NSFW)",
  43505. image: {
  43506. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(6, "feet"),
  43514. default: true
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43520. {
  43521. front: {
  43522. height: math.unit(5 + 2/12, "feet"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/lumi/front.svg",
  43526. extra: 1328/1268,
  43527. bottom: 103/1431
  43528. }
  43529. },
  43530. back: {
  43531. height: math.unit(5 + 2/12, "feet"),
  43532. name: "Back",
  43533. image: {
  43534. source: "./media/characters/lumi/back.svg",
  43535. extra: 1381/1327,
  43536. bottom: 43/1424
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(5 + 2/12, "feet"),
  43544. default: true
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43550. {
  43551. front: {
  43552. height: math.unit(5 + 9/12, "feet"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/aliya-cotton/front.svg",
  43556. extra: 577/564,
  43557. bottom: 29/606
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(5 + 9/12, "feet"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(2.7, "meters"),
  43574. weight: math.unit(25000, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/noah-luxray/front.svg",
  43578. extra: 1644/825,
  43579. bottom: 339/1983
  43580. }
  43581. },
  43582. side: {
  43583. height: math.unit(2.97, "meters"),
  43584. weight: math.unit(25000, "lb"),
  43585. name: "Side",
  43586. image: {
  43587. source: "./media/characters/noah-luxray/side.svg",
  43588. extra: 1319/650,
  43589. bottom: 163/1482
  43590. }
  43591. },
  43592. dick: {
  43593. height: math.unit(7.4, "feet"),
  43594. weight: math.unit(2500, "lb"),
  43595. name: "Dick",
  43596. image: {
  43597. source: "./media/characters/noah-luxray/dick.svg"
  43598. }
  43599. },
  43600. dickAlt: {
  43601. height: math.unit(10.83, "feet"),
  43602. weight: math.unit(2500, "lb"),
  43603. name: "Dick-alt",
  43604. image: {
  43605. source: "./media/characters/noah-luxray/dick-alt.svg"
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "BIG",
  43612. height: math.unit(2.7, "meters"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43619. {
  43620. standing: {
  43621. height: math.unit(183, "cm"),
  43622. weight: math.unit(68, "kg"),
  43623. name: "Standing",
  43624. image: {
  43625. source: "./media/characters/arion/standing.svg",
  43626. extra: 1869/1807,
  43627. bottom: 93/1962
  43628. }
  43629. },
  43630. reclining: {
  43631. height: math.unit(70.5, "cm"),
  43632. weight: math.unit(68, "lb"),
  43633. name: "Reclining",
  43634. image: {
  43635. source: "./media/characters/arion/reclining.svg",
  43636. extra: 937/870,
  43637. bottom: 63/1000
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Colossus Size, Low",
  43644. height: math.unit(33, "meters"),
  43645. default: true
  43646. },
  43647. {
  43648. name: "Colossus Size, Mid",
  43649. height: math.unit(52, "meters")
  43650. },
  43651. {
  43652. name: "Colossus Size, High",
  43653. height: math.unit(60, "meters")
  43654. },
  43655. {
  43656. name: "Titan Size, Low",
  43657. height: math.unit(91, "meters"),
  43658. },
  43659. {
  43660. name: "Titan Size, Mid",
  43661. height: math.unit(122, "meters")
  43662. },
  43663. {
  43664. name: "Titan Size, High",
  43665. height: math.unit(162, "meters")
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(53, "meters"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/stellar-marbey/front.svg",
  43677. extra: 1913/1805,
  43678. bottom: 92/2005
  43679. }
  43680. },
  43681. back: {
  43682. height: math.unit(53, "meters"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/stellar-marbey/back.svg",
  43686. extra: 1960/1851,
  43687. bottom: 28/1988
  43688. }
  43689. },
  43690. mouth: {
  43691. height: math.unit(3.5, "meters"),
  43692. name: "Mouth",
  43693. image: {
  43694. source: "./media/characters/stellar-marbey/mouth.svg"
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Macro",
  43701. height: math.unit(53, "meters"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(8 + 1/12, "feet"),
  43711. weight: math.unit(233, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/matsu/front.svg",
  43715. extra: 832/772,
  43716. bottom: 40/872
  43717. }
  43718. },
  43719. back: {
  43720. height: math.unit(8 + 1/12, "feet"),
  43721. weight: math.unit(233, "lb"),
  43722. name: "Back",
  43723. image: {
  43724. source: "./media/characters/matsu/back.svg",
  43725. extra: 839/780,
  43726. bottom: 47/886
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Normal",
  43733. height: math.unit(8 + 1/12, "feet"),
  43734. default: true
  43735. },
  43736. ]
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43740. {
  43741. front: {
  43742. height: math.unit(4, "feet"),
  43743. weight: math.unit(148, "lb"),
  43744. name: "Front",
  43745. image: {
  43746. source: "./media/characters/thiz/front.svg",
  43747. extra: 1913/1748,
  43748. bottom: 62/1975
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(4, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(7 + 6/12, "feet"),
  43765. weight: math.unit(267, "lb"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/marcel/front.svg",
  43769. extra: 1221/1096,
  43770. bottom: 76/1297
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(7 + 6/12, "feet"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43784. {
  43785. side: {
  43786. height: math.unit(42, "meters"),
  43787. name: "Side",
  43788. image: {
  43789. source: "./media/characters/flake/side.svg",
  43790. extra: 1525/1306,
  43791. bottom: 209/1734
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(42, "meters"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43805. {
  43806. dressed: {
  43807. height: math.unit(6 + 4/12, "feet"),
  43808. weight: math.unit(520, "lb"),
  43809. name: "Dressed",
  43810. image: {
  43811. source: "./media/characters/someonne/dressed.svg",
  43812. extra: 1020/1010,
  43813. bottom: 178/1198
  43814. }
  43815. },
  43816. undressed: {
  43817. height: math.unit(6 + 4/12, "feet"),
  43818. weight: math.unit(520, "lb"),
  43819. name: "Undressed",
  43820. image: {
  43821. source: "./media/characters/someonne/undressed.svg",
  43822. extra: 1019/1014,
  43823. bottom: 169/1188
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Normal",
  43830. height: math.unit(6 + 4/12, "feet"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(3, "feet"),
  43840. weight: math.unit(30, "lb"),
  43841. name: "Front",
  43842. image: {
  43843. source: "./media/characters/till/front.svg",
  43844. extra: 892/823,
  43845. bottom: 55/947
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Normal",
  43852. height: math.unit(3, "feet"),
  43853. default: true
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43859. {
  43860. front: {
  43861. height: math.unit(9 + 8/12, "feet"),
  43862. weight: math.unit(800, "lb"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/sydney-heki/front.svg",
  43866. extra: 1360/1300,
  43867. bottom: 22/1382
  43868. }
  43869. },
  43870. back: {
  43871. height: math.unit(9 + 8/12, "feet"),
  43872. weight: math.unit(800, "lb"),
  43873. name: "Back",
  43874. image: {
  43875. source: "./media/characters/sydney-heki/back.svg",
  43876. extra: 1356/1293,
  43877. bottom: 12/1368
  43878. }
  43879. },
  43880. frontDressed: {
  43881. height: math.unit(9 + 8/12, "feet"),
  43882. weight: math.unit(800, "lb"),
  43883. name: "Front-dressed",
  43884. image: {
  43885. source: "./media/characters/sydney-heki/front-dressed.svg",
  43886. extra: 1360/1300,
  43887. bottom: 22/1382
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Normal",
  43894. height: math.unit(9 + 8/12, "feet"),
  43895. default: true
  43896. },
  43897. {
  43898. name: "Macro",
  43899. height: math.unit(500, "feet")
  43900. },
  43901. {
  43902. name: "Megamacro",
  43903. height: math.unit(3.6, "miles")
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(200, "cm"),
  43912. weight: math.unit(250, "lb"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/fowler-karlsson/front.svg",
  43916. extra: 897/845,
  43917. bottom: 123/1020
  43918. }
  43919. },
  43920. back: {
  43921. height: math.unit(200, "cm"),
  43922. weight: math.unit(250, "lb"),
  43923. name: "Back",
  43924. image: {
  43925. source: "./media/characters/fowler-karlsson/back.svg",
  43926. extra: 999/944,
  43927. bottom: 26/1025
  43928. }
  43929. },
  43930. dick: {
  43931. height: math.unit(1.92, "feet"),
  43932. weight: math.unit(150, "lb"),
  43933. name: "Dick",
  43934. image: {
  43935. source: "./media/characters/fowler-karlsson/dick.svg"
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(200, "cm"),
  43943. default: true
  43944. },
  43945. {
  43946. name: "Smaller Macro",
  43947. height: math.unit(90, "m")
  43948. },
  43949. {
  43950. name: "Macro",
  43951. height: math.unit(150, "m")
  43952. },
  43953. {
  43954. name: "Bigger Macro",
  43955. height: math.unit(300, "m")
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43961. {
  43962. side: {
  43963. height: math.unit(8 + 2/12, "feet"),
  43964. weight: math.unit(1, "tonne"),
  43965. name: "Side",
  43966. image: {
  43967. source: "./media/characters/rylide/side.svg",
  43968. extra: 1318/1034,
  43969. bottom: 106/1424
  43970. }
  43971. },
  43972. sitting: {
  43973. height: math.unit(303, "cm"),
  43974. weight: math.unit(1, "tonne"),
  43975. name: "Sitting",
  43976. image: {
  43977. source: "./media/characters/rylide/sitting.svg",
  43978. extra: 1303/1103,
  43979. bottom: 36/1339
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(8 + 2/12, "feet"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43993. {
  43994. front: {
  43995. height: math.unit(5 + 10/12, "feet"),
  43996. weight: math.unit(160, "lb"),
  43997. name: "Front",
  43998. image: {
  43999. source: "./media/characters/pudask/front.svg",
  44000. extra: 1616/1590,
  44001. bottom: 161/1777
  44002. }
  44003. },
  44004. },
  44005. [
  44006. {
  44007. name: "Ferret Height",
  44008. height: math.unit(2 + 5/12, "feet")
  44009. },
  44010. {
  44011. name: "Canon Height",
  44012. height: math.unit(5 + 10/12, "feet"),
  44013. default: true
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(3 + 6/12, "feet"),
  44022. weight: math.unit(60, "lb"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/ramita/front.svg",
  44026. extra: 1402/1232,
  44027. bottom: 62/1464
  44028. }
  44029. },
  44030. dressed: {
  44031. height: math.unit(3 + 6/12, "feet"),
  44032. weight: math.unit(60, "lb"),
  44033. name: "Dressed",
  44034. image: {
  44035. source: "./media/characters/ramita/dressed.svg",
  44036. extra: 1534/1249,
  44037. bottom: 50/1584
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(3 + 6/12, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44051. {
  44052. front: {
  44053. height: math.unit(8, "feet"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/ark/front.svg",
  44057. extra: 772/693,
  44058. bottom: 45/817
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(8, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44072. {
  44073. front: {
  44074. height: math.unit(6, "feet"),
  44075. weight: math.unit(250, "lb"),
  44076. volume: math.unit(5/8, "gallons"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/ludwig-horn/front.svg",
  44080. extra: 1782/1635,
  44081. bottom: 96/1878
  44082. }
  44083. },
  44084. back: {
  44085. height: math.unit(6, "feet"),
  44086. weight: math.unit(250, "lb"),
  44087. volume: math.unit(5/8, "gallons"),
  44088. name: "Back",
  44089. image: {
  44090. source: "./media/characters/ludwig-horn/back.svg",
  44091. extra: 1874/1729,
  44092. bottom: 27/1901
  44093. }
  44094. },
  44095. dick: {
  44096. height: math.unit(1.05, "feet"),
  44097. weight: math.unit(15, "lb"),
  44098. volume: math.unit(5/8, "gallons"),
  44099. name: "Dick",
  44100. image: {
  44101. source: "./media/characters/ludwig-horn/dick.svg"
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Small",
  44108. height: math.unit(6, "feet")
  44109. },
  44110. {
  44111. name: "Typical",
  44112. height: math.unit(12, "feet"),
  44113. default: true
  44114. },
  44115. {
  44116. name: "Building",
  44117. height: math.unit(80, "feet")
  44118. },
  44119. {
  44120. name: "Town",
  44121. height: math.unit(800, "feet")
  44122. },
  44123. {
  44124. name: "Kingdom",
  44125. height: math.unit(80000, "feet")
  44126. },
  44127. {
  44128. name: "Planet",
  44129. height: math.unit(8000000, "feet")
  44130. },
  44131. {
  44132. name: "Universe",
  44133. height: math.unit(8000000000, "feet")
  44134. },
  44135. {
  44136. name: "Transcended",
  44137. height: math.unit(8e27, "feet")
  44138. },
  44139. ]
  44140. ))
  44141. characterMakers.push(() => makeCharacter(
  44142. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44143. {
  44144. front: {
  44145. height: math.unit(5, "feet"),
  44146. weight: math.unit(50, "kg"),
  44147. name: "Front",
  44148. image: {
  44149. source: "./media/characters/biot-avery/front.svg",
  44150. extra: 1295/1232,
  44151. bottom: 86/1381
  44152. }
  44153. },
  44154. },
  44155. [
  44156. {
  44157. name: "Normal",
  44158. height: math.unit(5, "feet"),
  44159. default: true
  44160. },
  44161. ]
  44162. ))
  44163. characterMakers.push(() => makeCharacter(
  44164. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44165. {
  44166. front: {
  44167. height: math.unit(6, "feet"),
  44168. name: "Front",
  44169. image: {
  44170. source: "./media/characters/kitsune-kiro/front.svg",
  44171. extra: 1270/1158,
  44172. bottom: 42/1312
  44173. }
  44174. },
  44175. frontAlt: {
  44176. height: math.unit(6, "feet"),
  44177. name: "Front-alt",
  44178. image: {
  44179. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44180. extra: 1130/1081,
  44181. bottom: 36/1166
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Smol",
  44188. height: math.unit(3, "feet")
  44189. },
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(6, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44199. {
  44200. front: {
  44201. height: math.unit(6, "feet"),
  44202. weight: math.unit(125, "lb"),
  44203. name: "Front",
  44204. image: {
  44205. source: "./media/characters/jack-thatcher/front.svg",
  44206. extra: 1474/1370,
  44207. bottom: 26/1500
  44208. }
  44209. },
  44210. back: {
  44211. height: math.unit(6, "feet"),
  44212. weight: math.unit(125, "lb"),
  44213. name: "Back",
  44214. image: {
  44215. source: "./media/characters/jack-thatcher/back.svg",
  44216. extra: 1489/1384,
  44217. bottom: 18/1507
  44218. }
  44219. },
  44220. },
  44221. [
  44222. {
  44223. name: "Normal",
  44224. height: math.unit(6, "feet"),
  44225. default: true
  44226. },
  44227. {
  44228. name: "Macro",
  44229. height: math.unit(75, "feet")
  44230. },
  44231. {
  44232. name: "Macro-er",
  44233. height: math.unit(250, "feet")
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44239. {
  44240. front: {
  44241. height: math.unit(7, "feet"),
  44242. weight: math.unit(110, "kg"),
  44243. name: "Front",
  44244. image: {
  44245. source: "./media/characters/max-hyper/front.svg",
  44246. extra: 1969/1881,
  44247. bottom: 49/2018
  44248. }
  44249. },
  44250. },
  44251. [
  44252. {
  44253. name: "Normal",
  44254. height: math.unit(7, "feet"),
  44255. default: true
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44261. {
  44262. front: {
  44263. height: math.unit(5 + 5/12, "feet"),
  44264. weight: math.unit(160, "lb"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/spook/front.svg",
  44268. extra: 794/791,
  44269. bottom: 54/848
  44270. }
  44271. },
  44272. back: {
  44273. height: math.unit(5 + 5/12, "feet"),
  44274. weight: math.unit(160, "lb"),
  44275. name: "Back",
  44276. image: {
  44277. source: "./media/characters/spook/back.svg",
  44278. extra: 812/798,
  44279. bottom: 32/844
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(5 + 5/12, "feet"),
  44287. default: true
  44288. },
  44289. ]
  44290. ))
  44291. characterMakers.push(() => makeCharacter(
  44292. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44293. {
  44294. front: {
  44295. height: math.unit(18, "feet"),
  44296. name: "Front",
  44297. image: {
  44298. source: "./media/characters/xeaduulix/front.svg",
  44299. extra: 1380/1166,
  44300. bottom: 110/1490
  44301. }
  44302. },
  44303. back: {
  44304. height: math.unit(18, "feet"),
  44305. name: "Back",
  44306. image: {
  44307. source: "./media/characters/xeaduulix/back.svg",
  44308. extra: 1592/1170,
  44309. bottom: 128/1720
  44310. }
  44311. },
  44312. frontNsfw: {
  44313. height: math.unit(18, "feet"),
  44314. name: "Front (NSFW)",
  44315. image: {
  44316. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44317. extra: 1380/1166,
  44318. bottom: 110/1490
  44319. }
  44320. },
  44321. backNsfw: {
  44322. height: math.unit(18, "feet"),
  44323. name: "Back (NSFW)",
  44324. image: {
  44325. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44326. extra: 1592/1170,
  44327. bottom: 128/1720
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Normal",
  44334. height: math.unit(18, "feet"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44341. {
  44342. spreadWings: {
  44343. height: math.unit(20, "feet"),
  44344. name: "Spread Wings",
  44345. image: {
  44346. source: "./media/characters/fledge/spread-wings.svg",
  44347. extra: 693/635,
  44348. bottom: 26/719
  44349. }
  44350. },
  44351. front: {
  44352. height: math.unit(20, "feet"),
  44353. name: "Front",
  44354. image: {
  44355. source: "./media/characters/fledge/front.svg",
  44356. extra: 684/637,
  44357. bottom: 18/702
  44358. }
  44359. },
  44360. frontAlt: {
  44361. height: math.unit(20, "feet"),
  44362. name: "Front (Alt)",
  44363. image: {
  44364. source: "./media/characters/fledge/front-alt.svg",
  44365. extra: 708/664,
  44366. bottom: 13/721
  44367. }
  44368. },
  44369. back: {
  44370. height: math.unit(20, "feet"),
  44371. name: "Back",
  44372. image: {
  44373. source: "./media/characters/fledge/back.svg",
  44374. extra: 718/634,
  44375. bottom: 22/740
  44376. }
  44377. },
  44378. head: {
  44379. height: math.unit(5.55, "feet"),
  44380. name: "Head",
  44381. image: {
  44382. source: "./media/characters/fledge/head.svg"
  44383. }
  44384. },
  44385. headAlt: {
  44386. height: math.unit(5.1, "feet"),
  44387. name: "Head (Alt)",
  44388. image: {
  44389. source: "./media/characters/fledge/head-alt.svg"
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Small",
  44396. height: math.unit(6 + 2/12, "feet")
  44397. },
  44398. {
  44399. name: "Big",
  44400. height: math.unit(20, "feet"),
  44401. default: true
  44402. },
  44403. {
  44404. name: "Giant",
  44405. height: math.unit(100, "feet")
  44406. },
  44407. {
  44408. name: "Macro",
  44409. height: math.unit(200, "feet")
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44415. {
  44416. front: {
  44417. height: math.unit(1, "meter"),
  44418. name: "Front",
  44419. image: {
  44420. source: "./media/characters/atlas-morenai/front.svg",
  44421. extra: 1275/1043,
  44422. bottom: 19/1294
  44423. }
  44424. },
  44425. back: {
  44426. height: math.unit(1, "meter"),
  44427. name: "Back",
  44428. image: {
  44429. source: "./media/characters/atlas-morenai/back.svg",
  44430. extra: 1141/1001,
  44431. bottom: 25/1166
  44432. }
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Normal",
  44438. height: math.unit(1, "meter"),
  44439. default: true
  44440. },
  44441. {
  44442. name: "Magic-Infused",
  44443. height: math.unit(5, "meters")
  44444. },
  44445. ]
  44446. ))
  44447. characterMakers.push(() => makeCharacter(
  44448. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44449. {
  44450. front: {
  44451. height: math.unit(5, "meters"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/cintia/front.svg",
  44455. extra: 1312/1228,
  44456. bottom: 38/1350
  44457. }
  44458. },
  44459. back: {
  44460. height: math.unit(5, "meters"),
  44461. name: "Back",
  44462. image: {
  44463. source: "./media/characters/cintia/back.svg",
  44464. extra: 1260/1166,
  44465. bottom: 98/1358
  44466. }
  44467. },
  44468. frontDick: {
  44469. height: math.unit(5, "meters"),
  44470. name: "Front (Dick)",
  44471. image: {
  44472. source: "./media/characters/cintia/front-dick.svg",
  44473. extra: 1312/1228,
  44474. bottom: 38/1350
  44475. }
  44476. },
  44477. backDick: {
  44478. height: math.unit(5, "meters"),
  44479. name: "Back (Dick)",
  44480. image: {
  44481. source: "./media/characters/cintia/back-dick.svg",
  44482. extra: 1260/1166,
  44483. bottom: 98/1358
  44484. }
  44485. },
  44486. bust: {
  44487. height: math.unit(1.97, "meters"),
  44488. name: "Bust",
  44489. image: {
  44490. source: "./media/characters/cintia/bust.svg",
  44491. extra: 617/565,
  44492. bottom: 0/617
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(5, "meters"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44506. {
  44507. side: {
  44508. height: math.unit(100, "feet"),
  44509. name: "Side",
  44510. image: {
  44511. source: "./media/characters/denora/side.svg",
  44512. extra: 875/803,
  44513. bottom: 9/884
  44514. }
  44515. },
  44516. },
  44517. [
  44518. {
  44519. name: "Standard",
  44520. height: math.unit(100, "feet"),
  44521. default: true
  44522. },
  44523. {
  44524. name: "Grand",
  44525. height: math.unit(1000, "feet")
  44526. },
  44527. {
  44528. name: "Conquering",
  44529. height: math.unit(10000, "feet")
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44535. {
  44536. dressed: {
  44537. height: math.unit(8 + 5/12, "feet"),
  44538. weight: math.unit(700, "lb"),
  44539. name: "Dressed",
  44540. image: {
  44541. source: "./media/characters/kiva/dressed.svg",
  44542. extra: 1102/1055,
  44543. bottom: 60/1162
  44544. }
  44545. },
  44546. nude: {
  44547. height: math.unit(8 + 5/12, "feet"),
  44548. weight: math.unit(700, "lb"),
  44549. name: "Nude",
  44550. image: {
  44551. source: "./media/characters/kiva/nude.svg",
  44552. extra: 1102/1055,
  44553. bottom: 60/1162
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Base Height",
  44560. height: math.unit(8 + 5/12, "feet"),
  44561. default: true
  44562. },
  44563. {
  44564. name: "Macro",
  44565. height: math.unit(100, "feet")
  44566. },
  44567. {
  44568. name: "Max",
  44569. height: math.unit(3280, "feet")
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44575. {
  44576. front: {
  44577. height: math.unit(6 + 8/12, "feet"),
  44578. weight: math.unit(250, "lb"),
  44579. name: "Front",
  44580. image: {
  44581. source: "./media/characters/ztragon/front.svg",
  44582. extra: 1825/1684,
  44583. bottom: 98/1923
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(6 + 8/12, "feet"),
  44591. default: true
  44592. },
  44593. {
  44594. name: "Macro",
  44595. height: math.unit(80, "feet")
  44596. },
  44597. ]
  44598. ))
  44599. characterMakers.push(() => makeCharacter(
  44600. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44601. {
  44602. front: {
  44603. height: math.unit(10.4, "feet"),
  44604. weight: math.unit(2, "tons"),
  44605. name: "Front",
  44606. image: {
  44607. source: "./media/characters/yesenia/front.svg",
  44608. extra: 1479/1474,
  44609. bottom: 233/1712
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(10.4, "feet"),
  44617. default: true
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44623. {
  44624. normal: {
  44625. height: math.unit(6 + 1/12, "feet"),
  44626. weight: math.unit(180, "lb"),
  44627. name: "Normal",
  44628. image: {
  44629. source: "./media/characters/leanne-lycheborne/normal.svg",
  44630. extra: 1748/1660,
  44631. bottom: 98/1846
  44632. }
  44633. },
  44634. were: {
  44635. height: math.unit(12, "feet"),
  44636. weight: math.unit(1600, "lb"),
  44637. name: "Were",
  44638. image: {
  44639. source: "./media/characters/leanne-lycheborne/were.svg",
  44640. extra: 1485/1432,
  44641. bottom: 66/1551
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Normal",
  44648. height: math.unit(6 + 1/12, "feet"),
  44649. default: true
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44655. {
  44656. side: {
  44657. height: math.unit(13, "feet"),
  44658. name: "Side",
  44659. image: {
  44660. source: "./media/characters/kira-tyler/side.svg",
  44661. extra: 693/393,
  44662. bottom: 58/751
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(13, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(10.3, "feet"),
  44679. weight: math.unit(150, "lb"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/blaze/front.svg",
  44683. extra: 1378/1286,
  44684. bottom: 172/1550
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(10.3, "feet"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44698. {
  44699. side: {
  44700. height: math.unit(2, "meters"),
  44701. weight: math.unit(400, "kg"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/anu/side.svg",
  44705. extra: 506/394,
  44706. bottom: 18/524
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Humanoid",
  44713. height: math.unit(2, "meters")
  44714. },
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(5, "meters"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(5 + 5/12, "feet"),
  44727. weight: math.unit(170, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/synx-the-lynx/front.svg",
  44731. extra: 1893/1745,
  44732. bottom: 17/1910
  44733. }
  44734. },
  44735. side: {
  44736. height: math.unit(5 + 5/12, "feet"),
  44737. weight: math.unit(170, "lb"),
  44738. name: "Side",
  44739. image: {
  44740. source: "./media/characters/synx-the-lynx/side.svg",
  44741. extra: 1884/1740,
  44742. bottom: 39/1923
  44743. }
  44744. },
  44745. back: {
  44746. height: math.unit(5 + 5/12, "feet"),
  44747. weight: math.unit(170, "lb"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/synx-the-lynx/back.svg",
  44751. extra: 1903/1755,
  44752. bottom: 14/1917
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(5 + 5/12, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44766. {
  44767. back: {
  44768. height: math.unit(15, "feet"),
  44769. name: "Back",
  44770. image: {
  44771. source: "./media/characters/nadezda-fex/back.svg",
  44772. extra: 1695/1481,
  44773. bottom: 25/1720
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(15, "feet"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Macro",
  44785. height: math.unit(2.5, "miles")
  44786. },
  44787. {
  44788. name: "Goddess",
  44789. height: math.unit(2, "multiverses")
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(216, "cm"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/lev/front.svg",
  44801. extra: 1728/1670,
  44802. bottom: 82/1810
  44803. }
  44804. },
  44805. back: {
  44806. height: math.unit(216, "cm"),
  44807. name: "Back",
  44808. image: {
  44809. source: "./media/characters/lev/back.svg",
  44810. extra: 1738/1675,
  44811. bottom: 24/1762
  44812. }
  44813. },
  44814. dressed: {
  44815. height: math.unit(216, "cm"),
  44816. name: "Dressed",
  44817. image: {
  44818. source: "./media/characters/lev/dressed.svg",
  44819. extra: 1397/1351,
  44820. bottom: 73/1470
  44821. }
  44822. },
  44823. head: {
  44824. height: math.unit(0.51, "meter"),
  44825. name: "Head",
  44826. image: {
  44827. source: "./media/characters/lev/head.svg"
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(216, "cm"),
  44835. default: true
  44836. },
  44837. {
  44838. name: "Relatively Macro",
  44839. height: math.unit(80, "meters")
  44840. },
  44841. {
  44842. name: "Megamacro",
  44843. height: math.unit(21600, "meters")
  44844. },
  44845. {
  44846. name: "Megamacro+",
  44847. height: math.unit(64800, "meters")
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44853. {
  44854. front: {
  44855. height: math.unit(2, "meters"),
  44856. weight: math.unit(80, "kg"),
  44857. name: "Front",
  44858. image: {
  44859. source: "./media/characters/moka/front.svg",
  44860. extra: 1337/1255,
  44861. bottom: 58/1395
  44862. }
  44863. },
  44864. },
  44865. [
  44866. {
  44867. name: "Micro",
  44868. height: math.unit(15, "cm")
  44869. },
  44870. {
  44871. name: "Normal",
  44872. height: math.unit(2, "meters"),
  44873. default: true
  44874. },
  44875. {
  44876. name: "Macro",
  44877. height: math.unit(20, "meters"),
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(9, "feet"),
  44886. weight: math.unit(240, "lb"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/kuzco/front.svg",
  44890. extra: 1593/1487,
  44891. bottom: 32/1625
  44892. }
  44893. },
  44894. side: {
  44895. height: math.unit(9, "feet"),
  44896. weight: math.unit(240, "lb"),
  44897. name: "Side",
  44898. image: {
  44899. source: "./media/characters/kuzco/side.svg",
  44900. extra: 1575/1485,
  44901. bottom: 30/1605
  44902. }
  44903. },
  44904. back: {
  44905. height: math.unit(9, "feet"),
  44906. weight: math.unit(240, "lb"),
  44907. name: "Back",
  44908. image: {
  44909. source: "./media/characters/kuzco/back.svg",
  44910. extra: 1603/1514,
  44911. bottom: 14/1617
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(9, "feet"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44925. {
  44926. side: {
  44927. height: math.unit(2, "meters"),
  44928. weight: math.unit(300, "kg"),
  44929. name: "Side",
  44930. image: {
  44931. source: "./media/characters/ceruleus/side.svg",
  44932. extra: 1068/974,
  44933. bottom: 126/1194
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(16, "meters"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44947. {
  44948. front: {
  44949. height: math.unit(9, "feet"),
  44950. weight: math.unit(500, "kg"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/acouya/front.svg",
  44954. extra: 1660/1473,
  44955. bottom: 28/1688
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(9, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(5 + 6/12, "feet"),
  44972. weight: math.unit(195, "lb"),
  44973. name: "Front",
  44974. image: {
  44975. source: "./media/characters/vant/front.svg",
  44976. extra: 1396/1320,
  44977. bottom: 20/1416
  44978. }
  44979. },
  44980. back: {
  44981. height: math.unit(5 + 6/12, "feet"),
  44982. weight: math.unit(195, "lb"),
  44983. name: "Back",
  44984. image: {
  44985. source: "./media/characters/vant/back.svg",
  44986. extra: 1396/1320,
  44987. bottom: 20/1416
  44988. }
  44989. },
  44990. maw: {
  44991. height: math.unit(0.75, "feet"),
  44992. name: "Maw",
  44993. image: {
  44994. source: "./media/characters/vant/maw.svg"
  44995. }
  44996. },
  44997. paw: {
  44998. height: math.unit(1.07, "feet"),
  44999. name: "Paw",
  45000. image: {
  45001. source: "./media/characters/vant/paw.svg"
  45002. }
  45003. },
  45004. },
  45005. [
  45006. {
  45007. name: "Micro",
  45008. height: math.unit(0.25, "inches")
  45009. },
  45010. {
  45011. name: "Normal",
  45012. height: math.unit(5 + 6/12, "feet"),
  45013. default: true
  45014. },
  45015. {
  45016. name: "Macro",
  45017. height: math.unit(75, "feet")
  45018. },
  45019. ]
  45020. ))
  45021. characterMakers.push(() => makeCharacter(
  45022. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45023. {
  45024. front: {
  45025. height: math.unit(30, "meters"),
  45026. weight: math.unit(363, "tons"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/ahra/front.svg",
  45030. extra: 1914/1814,
  45031. bottom: 46/1960
  45032. }
  45033. },
  45034. },
  45035. [
  45036. {
  45037. name: "Macro",
  45038. height: math.unit(30, "meters"),
  45039. default: true
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45045. {
  45046. undressed: {
  45047. height: math.unit(2, "m"),
  45048. weight: math.unit(250, "kg"),
  45049. name: "Undressed",
  45050. image: {
  45051. source: "./media/characters/coriander/undressed.svg",
  45052. extra: 1757/1606,
  45053. bottom: 107/1864
  45054. }
  45055. },
  45056. dressed: {
  45057. height: math.unit(2, "m"),
  45058. weight: math.unit(250, "kg"),
  45059. name: "Dressed",
  45060. image: {
  45061. source: "./media/characters/coriander/dressed.svg",
  45062. extra: 1757/1606,
  45063. bottom: 107/1864
  45064. }
  45065. },
  45066. },
  45067. [
  45068. {
  45069. name: "Normal",
  45070. height: math.unit(4, "meters"),
  45071. default: true
  45072. },
  45073. {
  45074. name: "XL",
  45075. height: math.unit(6, "meters")
  45076. },
  45077. {
  45078. name: "XXL",
  45079. height: math.unit(8, "meters")
  45080. },
  45081. ]
  45082. ))
  45083. characterMakers.push(() => makeCharacter(
  45084. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45085. {
  45086. front: {
  45087. height: math.unit(6, "feet"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/syrinx/front.svg",
  45091. extra: 1557/1259,
  45092. bottom: 171/1728
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(6 + 3/12, "feet"),
  45100. default: true
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(11 + 6/12, "feet"),
  45109. weight: math.unit(1.5, "tons"),
  45110. name: "Front",
  45111. image: {
  45112. source: "./media/characters/bor/front.svg",
  45113. extra: 1189/1109,
  45114. bottom: 170/1359
  45115. }
  45116. },
  45117. },
  45118. [
  45119. {
  45120. name: "Normal",
  45121. height: math.unit(11 + 6/12, "feet"),
  45122. default: true
  45123. },
  45124. {
  45125. name: "Macro",
  45126. height: math.unit(32 + 9/12, "feet")
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45132. {
  45133. anthro: {
  45134. height: math.unit(9, "feet"),
  45135. weight: math.unit(2076, "lb"),
  45136. name: "Anthro",
  45137. image: {
  45138. source: "./media/characters/abacus/anthro.svg",
  45139. extra: 1540/1494,
  45140. bottom: 233/1773
  45141. }
  45142. },
  45143. pigeon: {
  45144. height: math.unit(1, "feet"),
  45145. name: "Pigeon",
  45146. image: {
  45147. source: "./media/characters/abacus/pigeon.svg",
  45148. extra: 528/525,
  45149. bottom: 46/574
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(9, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45163. {
  45164. side: {
  45165. height: math.unit(6, "feet"),
  45166. name: "Side",
  45167. image: {
  45168. source: "./media/characters/delkhan/side.svg",
  45169. extra: 1884/1786,
  45170. bottom: 308/2192
  45171. }
  45172. },
  45173. head: {
  45174. height: math.unit(3.38, "feet"),
  45175. name: "Head",
  45176. image: {
  45177. source: "./media/characters/delkhan/head.svg"
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(72, "feet"),
  45185. default: true
  45186. },
  45187. {
  45188. name: "Giant",
  45189. height: math.unit(172, "feet")
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45195. {
  45196. standing: {
  45197. height: math.unit(6, "feet"),
  45198. name: "Standing",
  45199. image: {
  45200. source: "./media/characters/euchidat/standing.svg",
  45201. extra: 1612/1553,
  45202. bottom: 116/1728
  45203. }
  45204. },
  45205. leaning: {
  45206. height: math.unit(6, "feet"),
  45207. name: "Leaning",
  45208. image: {
  45209. source: "./media/characters/euchidat/leaning.svg",
  45210. extra: 1719/1674,
  45211. bottom: 27/1746
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(175, "feet"),
  45219. default: true
  45220. },
  45221. {
  45222. name: "Megamacro",
  45223. height: math.unit(190, "miles")
  45224. },
  45225. {
  45226. name: "Gigamacro",
  45227. height: math.unit(190000, "miles")
  45228. },
  45229. ]
  45230. ))
  45231. characterMakers.push(() => makeCharacter(
  45232. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45233. {
  45234. front: {
  45235. height: math.unit(6, "feet"),
  45236. weight: math.unit(150, "lb"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/rebecca-stack/front.svg",
  45240. extra: 1256/1201,
  45241. bottom: 18/1274
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Normal",
  45248. height: math.unit(5 + 8/12, "feet"),
  45249. default: true
  45250. },
  45251. {
  45252. name: "Demolitionist",
  45253. height: math.unit(200, "feet")
  45254. },
  45255. {
  45256. name: "Out of Control",
  45257. height: math.unit(2, "miles")
  45258. },
  45259. {
  45260. name: "Giga",
  45261. height: math.unit(7200, "miles")
  45262. },
  45263. ]
  45264. ))
  45265. characterMakers.push(() => makeCharacter(
  45266. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45267. {
  45268. front: {
  45269. height: math.unit(6, "feet"),
  45270. weight: math.unit(150, "lb"),
  45271. name: "Front",
  45272. image: {
  45273. source: "./media/characters/jenny-cartwright/front.svg",
  45274. extra: 1384/1376,
  45275. bottom: 58/1442
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(6 + 7/12, "feet"),
  45283. default: true
  45284. },
  45285. {
  45286. name: "Librarian",
  45287. height: math.unit(55, "feet")
  45288. },
  45289. {
  45290. name: "Sightseer",
  45291. height: math.unit(50, "miles")
  45292. },
  45293. {
  45294. name: "Giga",
  45295. height: math.unit(30000, "miles")
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45301. {
  45302. nude: {
  45303. height: math.unit(8, "feet"),
  45304. weight: math.unit(225, "lb"),
  45305. name: "Nude",
  45306. image: {
  45307. source: "./media/characters/marvy/nude.svg",
  45308. extra: 1900/1683,
  45309. bottom: 89/1989
  45310. }
  45311. },
  45312. dressed: {
  45313. height: math.unit(8, "feet"),
  45314. weight: math.unit(225, "lb"),
  45315. name: "Dressed",
  45316. image: {
  45317. source: "./media/characters/marvy/dressed.svg",
  45318. extra: 1900/1683,
  45319. bottom: 89/1989
  45320. }
  45321. },
  45322. head: {
  45323. height: math.unit(2.85, "feet"),
  45324. name: "Head",
  45325. image: {
  45326. source: "./media/characters/marvy/head.svg"
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(8, "feet"),
  45334. default: true
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45340. {
  45341. front: {
  45342. height: math.unit(8, "feet"),
  45343. weight: math.unit(250, "lb"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/leah/front.svg",
  45347. extra: 1257/1149,
  45348. bottom: 109/1366
  45349. }
  45350. },
  45351. },
  45352. [
  45353. {
  45354. name: "Normal",
  45355. height: math.unit(8, "feet"),
  45356. default: true
  45357. },
  45358. {
  45359. name: "Minimacro",
  45360. height: math.unit(40, "feet")
  45361. },
  45362. {
  45363. name: "Macro",
  45364. height: math.unit(124, "feet")
  45365. },
  45366. {
  45367. name: "Megamacro",
  45368. height: math.unit(850, "feet")
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45374. {
  45375. side: {
  45376. height: math.unit(13 + 6/12, "feet"),
  45377. weight: math.unit(3200, "lb"),
  45378. name: "Side",
  45379. image: {
  45380. source: "./media/characters/alvir/side.svg",
  45381. extra: 896/589,
  45382. bottom: 26/922
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(13 + 6/12, "feet"),
  45390. default: true
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45396. {
  45397. front: {
  45398. height: math.unit(5 + 4/12, "feet"),
  45399. weight: math.unit(236, "lb"),
  45400. name: "Front",
  45401. image: {
  45402. source: "./media/characters/zaina-khalil/front.svg",
  45403. extra: 1533/1485,
  45404. bottom: 94/1627
  45405. }
  45406. },
  45407. side: {
  45408. height: math.unit(5 + 4/12, "feet"),
  45409. weight: math.unit(236, "lb"),
  45410. name: "Side",
  45411. image: {
  45412. source: "./media/characters/zaina-khalil/side.svg",
  45413. extra: 1537/1498,
  45414. bottom: 66/1603
  45415. }
  45416. },
  45417. back: {
  45418. height: math.unit(5 + 4/12, "feet"),
  45419. weight: math.unit(236, "lb"),
  45420. name: "Back",
  45421. image: {
  45422. source: "./media/characters/zaina-khalil/back.svg",
  45423. extra: 1546/1494,
  45424. bottom: 89/1635
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(5 + 4/12, "feet"),
  45432. default: true
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45438. {
  45439. side: {
  45440. height: math.unit(12, "feet"),
  45441. weight: math.unit(4000, "lb"),
  45442. name: "Side",
  45443. image: {
  45444. source: "./media/characters/terry/side.svg",
  45445. extra: 1518/1439,
  45446. bottom: 149/1667
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(12, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45460. {
  45461. front: {
  45462. height: math.unit(12, "feet"),
  45463. weight: math.unit(1500, "lb"),
  45464. name: "Front",
  45465. image: {
  45466. source: "./media/characters/kahea/front.svg",
  45467. extra: 1722/1617,
  45468. bottom: 179/1901
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(12, "feet"),
  45476. default: true
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45482. {
  45483. demonFront: {
  45484. height: math.unit(36, "feet"),
  45485. name: "Front",
  45486. image: {
  45487. source: "./media/characters/alex-xuria/demon-front.svg",
  45488. extra: 1705/1673,
  45489. bottom: 198/1903
  45490. },
  45491. form: "demon",
  45492. default: true
  45493. },
  45494. demonBack: {
  45495. height: math.unit(36, "feet"),
  45496. name: "Back",
  45497. image: {
  45498. source: "./media/characters/alex-xuria/demon-back.svg",
  45499. extra: 1725/1693,
  45500. bottom: 70/1795
  45501. },
  45502. form: "demon"
  45503. },
  45504. demonHead: {
  45505. height: math.unit(2.14, "meters"),
  45506. name: "Head",
  45507. image: {
  45508. source: "./media/characters/alex-xuria/demon-head.svg"
  45509. },
  45510. form: "demon"
  45511. },
  45512. demonHand: {
  45513. height: math.unit(1.61, "meters"),
  45514. name: "Hand",
  45515. image: {
  45516. source: "./media/characters/alex-xuria/demon-hand.svg"
  45517. },
  45518. form: "demon"
  45519. },
  45520. demonPaw: {
  45521. height: math.unit(1.35, "meters"),
  45522. name: "Paw",
  45523. image: {
  45524. source: "./media/characters/alex-xuria/demon-paw.svg"
  45525. },
  45526. form: "demon"
  45527. },
  45528. demonFoot: {
  45529. height: math.unit(2.2, "meters"),
  45530. name: "Foot",
  45531. image: {
  45532. source: "./media/characters/alex-xuria/demon-foot.svg"
  45533. },
  45534. form: "demon"
  45535. },
  45536. demonCock: {
  45537. height: math.unit(1.74, "meters"),
  45538. name: "Cock",
  45539. image: {
  45540. source: "./media/characters/alex-xuria/demon-cock.svg"
  45541. },
  45542. form: "demon"
  45543. },
  45544. demonTailClosed: {
  45545. height: math.unit(1.47, "meters"),
  45546. name: "Tail (Closed)",
  45547. image: {
  45548. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45549. },
  45550. form: "demon"
  45551. },
  45552. demonTailOpen: {
  45553. height: math.unit(2.85, "meters"),
  45554. name: "Tail (Open)",
  45555. image: {
  45556. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45557. },
  45558. form: "demon"
  45559. },
  45560. incubusFront: {
  45561. height: math.unit(12, "feet"),
  45562. name: "Front",
  45563. image: {
  45564. source: "./media/characters/alex-xuria/incubus-front.svg",
  45565. extra: 1754/1677,
  45566. bottom: 125/1879
  45567. },
  45568. form: "incubus",
  45569. default: true
  45570. },
  45571. incubusBack: {
  45572. height: math.unit(12, "feet"),
  45573. name: "Back",
  45574. image: {
  45575. source: "./media/characters/alex-xuria/incubus-back.svg",
  45576. extra: 1702/1647,
  45577. bottom: 30/1732
  45578. },
  45579. form: "incubus"
  45580. },
  45581. incubusHead: {
  45582. height: math.unit(3.45, "feet"),
  45583. name: "Head",
  45584. image: {
  45585. source: "./media/characters/alex-xuria/incubus-head.svg"
  45586. },
  45587. form: "incubus"
  45588. },
  45589. rabbitFront: {
  45590. height: math.unit(6, "feet"),
  45591. name: "Front",
  45592. image: {
  45593. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45594. extra: 1369/1349,
  45595. bottom: 45/1414
  45596. },
  45597. form: "rabbit",
  45598. default: true
  45599. },
  45600. rabbitSide: {
  45601. height: math.unit(6, "feet"),
  45602. name: "Side",
  45603. image: {
  45604. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45605. extra: 1370/1356,
  45606. bottom: 37/1407
  45607. },
  45608. form: "rabbit"
  45609. },
  45610. rabbitBack: {
  45611. height: math.unit(6, "feet"),
  45612. name: "Back",
  45613. image: {
  45614. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45615. extra: 1375/1358,
  45616. bottom: 43/1418
  45617. },
  45618. form: "rabbit"
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Normal",
  45624. height: math.unit(6, "feet"),
  45625. default: true,
  45626. form: "rabbit"
  45627. },
  45628. {
  45629. name: "Incubus",
  45630. height: math.unit(12, "feet"),
  45631. default: true,
  45632. form: "incubus"
  45633. },
  45634. {
  45635. name: "Demon",
  45636. height: math.unit(36, "feet"),
  45637. default: true,
  45638. form: "demon"
  45639. }
  45640. ],
  45641. {
  45642. "demon": {
  45643. name: "Demon",
  45644. default: true
  45645. },
  45646. "incubus": {
  45647. name: "Incubus",
  45648. },
  45649. "rabbit": {
  45650. name: "Rabbit"
  45651. }
  45652. }
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(7 + 5/12, "feet"),
  45659. weight: math.unit(510, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/syrup/front.svg",
  45663. extra: 932/916,
  45664. bottom: 26/958
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(7 + 5/12, "feet"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Big",
  45676. height: math.unit(50, "feet")
  45677. },
  45678. {
  45679. name: "Macro",
  45680. height: math.unit(300, "feet")
  45681. },
  45682. {
  45683. name: "Megamacro",
  45684. height: math.unit(1, "mile")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(6 + 9/12, "feet"),
  45693. name: "Front",
  45694. image: {
  45695. source: "./media/characters/zeimne/front.svg",
  45696. extra: 1969/1806,
  45697. bottom: 53/2022
  45698. }
  45699. },
  45700. },
  45701. [
  45702. {
  45703. name: "Normal",
  45704. height: math.unit(6 + 9/12, "feet"),
  45705. default: true
  45706. },
  45707. {
  45708. name: "Giant",
  45709. height: math.unit(550, "feet")
  45710. },
  45711. {
  45712. name: "Mega",
  45713. height: math.unit(3, "miles")
  45714. },
  45715. {
  45716. name: "Giga",
  45717. height: math.unit(250, "miles")
  45718. },
  45719. {
  45720. name: "Tera",
  45721. height: math.unit(1, "AU")
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45727. {
  45728. front: {
  45729. height: math.unit(5 + 2/12, "feet"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/grar/front.svg",
  45733. extra: 1331/1119,
  45734. bottom: 60/1391
  45735. }
  45736. },
  45737. back: {
  45738. height: math.unit(5 + 2/12, "feet"),
  45739. name: "Back",
  45740. image: {
  45741. source: "./media/characters/grar/back.svg",
  45742. extra: 1385/1169,
  45743. bottom: 23/1408
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(5 + 2/12, "feet"),
  45751. default: true
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45757. {
  45758. front: {
  45759. height: math.unit(13 + 7/12, "feet"),
  45760. weight: math.unit(2200, "lb"),
  45761. name: "Front",
  45762. image: {
  45763. source: "./media/characters/endraya/front.svg",
  45764. extra: 1289/1215,
  45765. bottom: 50/1339
  45766. }
  45767. },
  45768. nude: {
  45769. height: math.unit(13 + 7/12, "feet"),
  45770. weight: math.unit(2200, "lb"),
  45771. name: "Nude",
  45772. image: {
  45773. source: "./media/characters/endraya/nude.svg",
  45774. extra: 1247/1171,
  45775. bottom: 40/1287
  45776. }
  45777. },
  45778. head: {
  45779. height: math.unit(2.6, "feet"),
  45780. name: "Head",
  45781. image: {
  45782. source: "./media/characters/endraya/head.svg"
  45783. }
  45784. },
  45785. slit: {
  45786. height: math.unit(3.4, "feet"),
  45787. name: "Slit",
  45788. image: {
  45789. source: "./media/characters/endraya/slit.svg"
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(13 + 7/12, "feet"),
  45797. default: true
  45798. },
  45799. {
  45800. name: "Macro",
  45801. height: math.unit(200, "feet")
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(412, "meters"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/rodryana/front.svg",
  45813. extra: 2002/1921,
  45814. bottom: 53/2055
  45815. }
  45816. },
  45817. back: {
  45818. height: math.unit(412, "meters"),
  45819. name: "Back",
  45820. image: {
  45821. source: "./media/characters/rodryana/back.svg",
  45822. extra: 1993/1926,
  45823. bottom: 48/2041
  45824. }
  45825. },
  45826. maw: {
  45827. height: math.unit(45, "meters"),
  45828. name: "Maw",
  45829. image: {
  45830. source: "./media/characters/rodryana/maw.svg"
  45831. }
  45832. },
  45833. slit: {
  45834. height: math.unit(72, "meters"),
  45835. name: "Slit",
  45836. image: {
  45837. source: "./media/characters/rodryana/slit.svg"
  45838. }
  45839. },
  45840. },
  45841. [
  45842. {
  45843. name: "Macro",
  45844. height: math.unit(412, "meters"),
  45845. default: true
  45846. },
  45847. ]
  45848. ))
  45849. characterMakers.push(() => makeCharacter(
  45850. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45851. {
  45852. front: {
  45853. height: math.unit(6, "feet"),
  45854. weight: math.unit(1000, "lb"),
  45855. name: "Front",
  45856. image: {
  45857. source: "./media/characters/asaya/front.svg",
  45858. extra: 1460/1200,
  45859. bottom: 71/1531
  45860. }
  45861. },
  45862. },
  45863. [
  45864. {
  45865. name: "Normal",
  45866. height: math.unit(8, "km"),
  45867. default: true
  45868. },
  45869. ]
  45870. ))
  45871. characterMakers.push(() => makeCharacter(
  45872. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45873. {
  45874. front: {
  45875. height: math.unit(3.5, "meters"),
  45876. name: "Front",
  45877. image: {
  45878. source: "./media/characters/sarzu-and-israz/front.svg",
  45879. extra: 1570/1558,
  45880. bottom: 150/1720
  45881. },
  45882. },
  45883. back: {
  45884. height: math.unit(3.5, "meters"),
  45885. name: "Back",
  45886. image: {
  45887. source: "./media/characters/sarzu-and-israz/back.svg",
  45888. extra: 1523/1509,
  45889. bottom: 132/1655
  45890. },
  45891. },
  45892. frontFemale: {
  45893. height: math.unit(3.5, "meters"),
  45894. name: "Front (Female)",
  45895. image: {
  45896. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45897. extra: 1570/1558,
  45898. bottom: 150/1720
  45899. },
  45900. },
  45901. frontHerm: {
  45902. height: math.unit(3.5, "meters"),
  45903. name: "Front (Herm)",
  45904. image: {
  45905. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45906. extra: 1570/1558,
  45907. bottom: 150/1720
  45908. },
  45909. },
  45910. },
  45911. [
  45912. {
  45913. name: "Normal",
  45914. height: math.unit(3.5, "meters"),
  45915. default: true,
  45916. },
  45917. {
  45918. name: "Macro",
  45919. height: math.unit(65.5, "meters"),
  45920. },
  45921. ],
  45922. ))
  45923. characterMakers.push(() => makeCharacter(
  45924. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45925. {
  45926. front: {
  45927. height: math.unit(6, "feet"),
  45928. weight: math.unit(250, "lb"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/zenimma/front.svg",
  45932. extra: 1346/1320,
  45933. bottom: 58/1404
  45934. }
  45935. },
  45936. back: {
  45937. height: math.unit(6, "feet"),
  45938. weight: math.unit(250, "lb"),
  45939. name: "Back",
  45940. image: {
  45941. source: "./media/characters/zenimma/back.svg",
  45942. extra: 1324/1308,
  45943. bottom: 44/1368
  45944. }
  45945. },
  45946. dick: {
  45947. height: math.unit(1.44, "feet"),
  45948. name: "Dick",
  45949. image: {
  45950. source: "./media/characters/zenimma/dick.svg"
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Canon Height",
  45957. height: math.unit(66, "miles"),
  45958. default: true
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45964. {
  45965. nude: {
  45966. height: math.unit(6, "feet"),
  45967. weight: math.unit(150, "lb"),
  45968. name: "Nude",
  45969. image: {
  45970. source: "./media/characters/shavon/nude.svg",
  45971. extra: 1242/1096,
  45972. bottom: 98/1340
  45973. }
  45974. },
  45975. dressed: {
  45976. height: math.unit(6, "feet"),
  45977. weight: math.unit(150, "lb"),
  45978. name: "Dressed",
  45979. image: {
  45980. source: "./media/characters/shavon/dressed.svg",
  45981. extra: 1242/1096,
  45982. bottom: 98/1340
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Macro",
  45989. height: math.unit(255, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(6, "feet"),
  45999. name: "Front",
  46000. image: {
  46001. source: "./media/characters/steph/front.svg",
  46002. extra: 1430/1330,
  46003. bottom: 54/1484
  46004. }
  46005. },
  46006. },
  46007. [
  46008. {
  46009. name: "Normal",
  46010. height: math.unit(6, "feet"),
  46011. default: true
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(9, "feet"),
  46020. weight: math.unit(400, "lb"),
  46021. name: "Front",
  46022. image: {
  46023. source: "./media/characters/kil'aman/front.svg",
  46024. extra: 1210/1159,
  46025. bottom: 109/1319
  46026. }
  46027. },
  46028. head: {
  46029. height: math.unit(2.14, "feet"),
  46030. name: "Head",
  46031. image: {
  46032. source: "./media/characters/kil'aman/head.svg"
  46033. }
  46034. },
  46035. maw: {
  46036. height: math.unit(1.21, "feet"),
  46037. name: "Maw",
  46038. image: {
  46039. source: "./media/characters/kil'aman/maw.svg"
  46040. }
  46041. },
  46042. foot: {
  46043. height: math.unit(1.7, "feet"),
  46044. name: "Foot",
  46045. image: {
  46046. source: "./media/characters/kil'aman/foot.svg"
  46047. }
  46048. },
  46049. dick: {
  46050. height: math.unit(2.1, "feet"),
  46051. name: "Dick",
  46052. image: {
  46053. source: "./media/characters/kil'aman/dick.svg"
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(9, "feet")
  46061. },
  46062. {
  46063. name: "Canon Height",
  46064. height: math.unit(10, "miles"),
  46065. default: true
  46066. },
  46067. {
  46068. name: "Maximum",
  46069. height: math.unit(6e9, "miles")
  46070. },
  46071. ]
  46072. ))
  46073. characterMakers.push(() => makeCharacter(
  46074. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46075. {
  46076. front: {
  46077. height: math.unit(90, "feet"),
  46078. weight: math.unit(675000, "lb"),
  46079. name: "Front",
  46080. image: {
  46081. source: "./media/characters/qadan/front.svg",
  46082. extra: 1012/1004,
  46083. bottom: 78/1090
  46084. }
  46085. },
  46086. back: {
  46087. height: math.unit(90, "feet"),
  46088. weight: math.unit(675000, "lb"),
  46089. name: "Back",
  46090. image: {
  46091. source: "./media/characters/qadan/back.svg",
  46092. extra: 1042/1031,
  46093. bottom: 55/1097
  46094. }
  46095. },
  46096. armored: {
  46097. height: math.unit(90, "feet"),
  46098. weight: math.unit(675000, "lb"),
  46099. name: "Armored",
  46100. image: {
  46101. source: "./media/characters/qadan/armored.svg",
  46102. extra: 1047/1037,
  46103. bottom: 48/1095
  46104. }
  46105. },
  46106. },
  46107. [
  46108. {
  46109. name: "Normal",
  46110. height: math.unit(90, "feet"),
  46111. default: true
  46112. },
  46113. ]
  46114. ))
  46115. characterMakers.push(() => makeCharacter(
  46116. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46117. {
  46118. front: {
  46119. height: math.unit(6, "feet"),
  46120. weight: math.unit(225, "lb"),
  46121. name: "Front",
  46122. image: {
  46123. source: "./media/characters/brooke/front.svg",
  46124. extra: 1050/1010,
  46125. bottom: 66/1116
  46126. }
  46127. },
  46128. back: {
  46129. height: math.unit(6, "feet"),
  46130. weight: math.unit(225, "lb"),
  46131. name: "Back",
  46132. image: {
  46133. source: "./media/characters/brooke/back.svg",
  46134. extra: 1053/1013,
  46135. bottom: 41/1094
  46136. }
  46137. },
  46138. dressed: {
  46139. height: math.unit(6, "feet"),
  46140. weight: math.unit(225, "lb"),
  46141. name: "Dressed",
  46142. image: {
  46143. source: "./media/characters/brooke/dressed.svg",
  46144. extra: 1050/1010,
  46145. bottom: 66/1116
  46146. }
  46147. },
  46148. },
  46149. [
  46150. {
  46151. name: "Canon Height",
  46152. height: math.unit(500, "miles"),
  46153. default: true
  46154. },
  46155. ]
  46156. ))
  46157. characterMakers.push(() => makeCharacter(
  46158. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46159. {
  46160. front: {
  46161. height: math.unit(6 + 2/12, "feet"),
  46162. weight: math.unit(210, "lb"),
  46163. name: "Front",
  46164. image: {
  46165. source: "./media/characters/wubs/front.svg",
  46166. extra: 1345/1325,
  46167. bottom: 70/1415
  46168. }
  46169. },
  46170. back: {
  46171. height: math.unit(6 + 2/12, "feet"),
  46172. weight: math.unit(210, "lb"),
  46173. name: "Back",
  46174. image: {
  46175. source: "./media/characters/wubs/back.svg",
  46176. extra: 1296/1275,
  46177. bottom: 58/1354
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(6 + 2/12, "feet"),
  46185. default: true
  46186. },
  46187. {
  46188. name: "Macro",
  46189. height: math.unit(1000, "feet")
  46190. },
  46191. {
  46192. name: "Megamacro",
  46193. height: math.unit(1, "mile")
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(4, "feet"),
  46202. weight: math.unit(120, "lb"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/blue/front.svg",
  46206. extra: 1636/1525,
  46207. bottom: 43/1679
  46208. }
  46209. },
  46210. back: {
  46211. height: math.unit(4, "feet"),
  46212. weight: math.unit(120, "lb"),
  46213. name: "Back",
  46214. image: {
  46215. source: "./media/characters/blue/back.svg",
  46216. extra: 1660/1560,
  46217. bottom: 57/1717
  46218. }
  46219. },
  46220. paws: {
  46221. height: math.unit(0.826, "feet"),
  46222. name: "Paws",
  46223. image: {
  46224. source: "./media/characters/blue/paws.svg"
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Micro",
  46231. height: math.unit(3, "inches")
  46232. },
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(4, "feet"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Femenine Form",
  46240. height: math.unit(14, "feet")
  46241. },
  46242. {
  46243. name: "Werebat Form",
  46244. height: math.unit(18, "feet")
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46250. {
  46251. female: {
  46252. height: math.unit(7 + 4/12, "feet"),
  46253. weight: math.unit(243, "lb"),
  46254. name: "Female",
  46255. image: {
  46256. source: "./media/characters/kaya/female.svg",
  46257. extra: 975/898,
  46258. bottom: 34/1009
  46259. }
  46260. },
  46261. herm: {
  46262. height: math.unit(7 + 4/12, "feet"),
  46263. weight: math.unit(243, "lb"),
  46264. name: "Herm",
  46265. image: {
  46266. source: "./media/characters/kaya/herm.svg",
  46267. extra: 975/898,
  46268. bottom: 34/1009
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(7 + 4/12, "feet"),
  46276. default: true
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46282. {
  46283. female: {
  46284. height: math.unit(9 + 4/12, "feet"),
  46285. weight: math.unit(398, "lb"),
  46286. name: "Female",
  46287. image: {
  46288. source: "./media/characters/kassandra/female.svg",
  46289. extra: 908/839,
  46290. bottom: 61/969
  46291. }
  46292. },
  46293. intersex: {
  46294. height: math.unit(9 + 4/12, "feet"),
  46295. weight: math.unit(398, "lb"),
  46296. name: "Intersex",
  46297. image: {
  46298. source: "./media/characters/kassandra/intersex.svg",
  46299. extra: 908/839,
  46300. bottom: 61/969
  46301. }
  46302. },
  46303. },
  46304. [
  46305. {
  46306. name: "Normal",
  46307. height: math.unit(9 + 4/12, "feet"),
  46308. default: true
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46314. {
  46315. front: {
  46316. height: math.unit(3, "meters"),
  46317. name: "Front",
  46318. image: {
  46319. source: "./media/characters/amy/front.svg",
  46320. extra: 1380/1343,
  46321. bottom: 70/1450
  46322. }
  46323. },
  46324. back: {
  46325. height: math.unit(3, "meters"),
  46326. name: "Back",
  46327. image: {
  46328. source: "./media/characters/amy/back.svg",
  46329. extra: 1380/1347,
  46330. bottom: 66/1446
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(3, "meters"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46344. {
  46345. side: {
  46346. height: math.unit(47, "cm"),
  46347. weight: math.unit(10.8, "kg"),
  46348. name: "Side",
  46349. image: {
  46350. source: "./media/characters/alphaschakal/side.svg",
  46351. extra: 1058/568,
  46352. bottom: 62/1120
  46353. }
  46354. },
  46355. back: {
  46356. height: math.unit(78, "cm"),
  46357. weight: math.unit(10.8, "kg"),
  46358. name: "Back",
  46359. image: {
  46360. source: "./media/characters/alphaschakal/back.svg",
  46361. extra: 1102/942,
  46362. bottom: 185/1287
  46363. }
  46364. },
  46365. head: {
  46366. height: math.unit(28, "cm"),
  46367. name: "Head",
  46368. image: {
  46369. source: "./media/characters/alphaschakal/head.svg",
  46370. extra: 696/508,
  46371. bottom: 0/696
  46372. }
  46373. },
  46374. paw: {
  46375. height: math.unit(16, "cm"),
  46376. name: "Paw",
  46377. image: {
  46378. source: "./media/characters/alphaschakal/paw.svg"
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(47, "cm"),
  46386. default: true
  46387. },
  46388. {
  46389. name: "Macro",
  46390. height: math.unit(340, "cm")
  46391. },
  46392. ]
  46393. ))
  46394. characterMakers.push(() => makeCharacter(
  46395. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46396. {
  46397. front: {
  46398. height: math.unit(36, "earths"),
  46399. name: "Front",
  46400. image: {
  46401. source: "./media/characters/ecobyss/front.svg",
  46402. extra: 1282/1215,
  46403. bottom: 11/1293
  46404. }
  46405. },
  46406. back: {
  46407. height: math.unit(36, "earths"),
  46408. name: "Back",
  46409. image: {
  46410. source: "./media/characters/ecobyss/back.svg",
  46411. extra: 1291/1222,
  46412. bottom: 8/1299
  46413. }
  46414. },
  46415. },
  46416. [
  46417. {
  46418. name: "Normal",
  46419. height: math.unit(36, "earths"),
  46420. default: true
  46421. },
  46422. ]
  46423. ))
  46424. characterMakers.push(() => makeCharacter(
  46425. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46426. {
  46427. front: {
  46428. height: math.unit(12, "feet"),
  46429. name: "Front",
  46430. image: {
  46431. source: "./media/characters/vasuk/front.svg",
  46432. extra: 1326/1207,
  46433. bottom: 64/1390
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Normal",
  46440. height: math.unit(12, "feet"),
  46441. default: true
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46447. {
  46448. side: {
  46449. height: math.unit(100, "feet"),
  46450. name: "Side",
  46451. image: {
  46452. source: "./media/characters/linneaus/side.svg",
  46453. extra: 987/807,
  46454. bottom: 47/1034
  46455. }
  46456. },
  46457. },
  46458. [
  46459. {
  46460. name: "Macro",
  46461. height: math.unit(100, "feet"),
  46462. default: true
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46468. {
  46469. front: {
  46470. height: math.unit(8, "feet"),
  46471. weight: math.unit(1200, "lb"),
  46472. name: "Front",
  46473. image: {
  46474. source: "./media/characters/nyterious-daligdig/front.svg",
  46475. extra: 1284/1094,
  46476. bottom: 84/1368
  46477. }
  46478. },
  46479. back: {
  46480. height: math.unit(8, "feet"),
  46481. weight: math.unit(1200, "lb"),
  46482. name: "Back",
  46483. image: {
  46484. source: "./media/characters/nyterious-daligdig/back.svg",
  46485. extra: 1301/1121,
  46486. bottom: 129/1430
  46487. }
  46488. },
  46489. mouth: {
  46490. height: math.unit(1.464, "feet"),
  46491. name: "Mouth",
  46492. image: {
  46493. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Small",
  46500. height: math.unit(8, "feet"),
  46501. default: true
  46502. },
  46503. {
  46504. name: "Normal",
  46505. height: math.unit(15, "feet")
  46506. },
  46507. {
  46508. name: "Macro",
  46509. height: math.unit(90, "feet")
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(7 + 4/12, "feet"),
  46518. weight: math.unit(252, "lb"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/bandel/front.svg",
  46522. extra: 1946/1775,
  46523. bottom: 26/1972
  46524. }
  46525. },
  46526. back: {
  46527. height: math.unit(7 + 4/12, "feet"),
  46528. weight: math.unit(252, "lb"),
  46529. name: "Back",
  46530. image: {
  46531. source: "./media/characters/bandel/back.svg",
  46532. extra: 1940/1770,
  46533. bottom: 25/1965
  46534. }
  46535. },
  46536. maw: {
  46537. height: math.unit(2.15, "feet"),
  46538. name: "Maw",
  46539. image: {
  46540. source: "./media/characters/bandel/maw.svg"
  46541. }
  46542. },
  46543. stomach: {
  46544. height: math.unit(1.95, "feet"),
  46545. name: "Stomach",
  46546. image: {
  46547. source: "./media/characters/bandel/stomach.svg"
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(7 + 4/12, "feet"),
  46555. default: true
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(10 + 5/12, "feet"),
  46564. weight: math.unit(773.5, "kg"),
  46565. name: "Front",
  46566. image: {
  46567. source: "./media/characters/zed/front.svg",
  46568. extra: 987/941,
  46569. bottom: 52/1039
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Short",
  46576. height: math.unit(5 + 4/12, "feet")
  46577. },
  46578. {
  46579. name: "Average",
  46580. height: math.unit(10 + 5/12, "feet"),
  46581. default: true
  46582. },
  46583. {
  46584. name: "Mini-Macro",
  46585. height: math.unit(24 + 9/12, "feet")
  46586. },
  46587. {
  46588. name: "Macro",
  46589. height: math.unit(249, "feet")
  46590. },
  46591. {
  46592. name: "Mega-Macro",
  46593. height: math.unit(12490, "feet")
  46594. },
  46595. {
  46596. name: "Giga-Macro",
  46597. height: math.unit(24.9, "miles")
  46598. },
  46599. {
  46600. name: "Tera-Macro",
  46601. height: math.unit(24900, "miles")
  46602. },
  46603. {
  46604. name: "Cosmic Scale",
  46605. height: math.unit(38.9, "lightyears")
  46606. },
  46607. {
  46608. name: "Universal Scale",
  46609. height: math.unit(138e12, "lightyears")
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46615. {
  46616. front: {
  46617. height: math.unit(1561, "inches"),
  46618. name: "Front",
  46619. image: {
  46620. source: "./media/characters/ivan/front.svg",
  46621. extra: 1126/1071,
  46622. bottom: 26/1152
  46623. }
  46624. },
  46625. back: {
  46626. height: math.unit(1561, "inches"),
  46627. name: "Back",
  46628. image: {
  46629. source: "./media/characters/ivan/back.svg",
  46630. extra: 1134/1079,
  46631. bottom: 30/1164
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(1561, "inches"),
  46639. default: true
  46640. },
  46641. ]
  46642. ))
  46643. characterMakers.push(() => makeCharacter(
  46644. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46645. {
  46646. front: {
  46647. height: math.unit(5 + 7/12, "feet"),
  46648. weight: math.unit(150, "lb"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/robin-arctic-hare/front.svg",
  46652. extra: 1148/974,
  46653. bottom: 20/1168
  46654. }
  46655. },
  46656. },
  46657. [
  46658. {
  46659. name: "Normal",
  46660. height: math.unit(5 + 7/12, "feet"),
  46661. default: true
  46662. },
  46663. ]
  46664. ))
  46665. characterMakers.push(() => makeCharacter(
  46666. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46667. {
  46668. side: {
  46669. height: math.unit(5, "feet"),
  46670. name: "Side",
  46671. image: {
  46672. source: "./media/characters/birch/side.svg",
  46673. extra: 985/796,
  46674. bottom: 111/1096
  46675. }
  46676. },
  46677. },
  46678. [
  46679. {
  46680. name: "Normal",
  46681. height: math.unit(5, "feet"),
  46682. default: true
  46683. },
  46684. ]
  46685. ))
  46686. characterMakers.push(() => makeCharacter(
  46687. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46688. {
  46689. front: {
  46690. height: math.unit(4, "feet"),
  46691. name: "Front",
  46692. image: {
  46693. source: "./media/characters/rasp/front.svg",
  46694. extra: 561/478,
  46695. bottom: 74/635
  46696. }
  46697. },
  46698. },
  46699. [
  46700. {
  46701. name: "Normal",
  46702. height: math.unit(4, "feet"),
  46703. default: true
  46704. },
  46705. ]
  46706. ))
  46707. characterMakers.push(() => makeCharacter(
  46708. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46709. {
  46710. front: {
  46711. height: math.unit(4 + 6/12, "feet"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/agatha/front.svg",
  46715. extra: 947/933,
  46716. bottom: 42/989
  46717. }
  46718. },
  46719. back: {
  46720. height: math.unit(4 + 6/12, "feet"),
  46721. name: "Back",
  46722. image: {
  46723. source: "./media/characters/agatha/back.svg",
  46724. extra: 935/922,
  46725. bottom: 48/983
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(4 + 6 /12, "feet"),
  46733. default: true
  46734. },
  46735. {
  46736. name: "Max Size",
  46737. height: math.unit(500, "feet")
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46743. {
  46744. side: {
  46745. height: math.unit(30, "feet"),
  46746. name: "Side",
  46747. image: {
  46748. source: "./media/characters/roggy/side.svg",
  46749. extra: 909/643,
  46750. bottom: 63/972
  46751. }
  46752. },
  46753. lounging: {
  46754. height: math.unit(20, "feet"),
  46755. name: "Lounging",
  46756. image: {
  46757. source: "./media/characters/roggy/lounging.svg",
  46758. extra: 643/479,
  46759. bottom: 145/788
  46760. }
  46761. },
  46762. handpaw: {
  46763. height: math.unit(13.1, "feet"),
  46764. name: "Handpaw",
  46765. image: {
  46766. source: "./media/characters/roggy/handpaw.svg"
  46767. }
  46768. },
  46769. footpaw: {
  46770. height: math.unit(15.8, "feet"),
  46771. name: "Footpaw",
  46772. image: {
  46773. source: "./media/characters/roggy/footpaw.svg"
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Menacing",
  46780. height: math.unit(30, "feet"),
  46781. default: true
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46787. {
  46788. front: {
  46789. height: math.unit(5 + 7/12, "feet"),
  46790. weight: math.unit(135, "lb"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/naomi/front.svg",
  46794. extra: 1209/1154,
  46795. bottom: 129/1338
  46796. }
  46797. },
  46798. back: {
  46799. height: math.unit(5 + 7/12, "feet"),
  46800. weight: math.unit(135, "lb"),
  46801. name: "Back",
  46802. image: {
  46803. source: "./media/characters/naomi/back.svg",
  46804. extra: 1252/1190,
  46805. bottom: 23/1275
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(5 + 7 /12, "feet"),
  46813. default: true
  46814. },
  46815. ]
  46816. ))
  46817. characterMakers.push(() => makeCharacter(
  46818. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46819. {
  46820. side: {
  46821. height: math.unit(35, "meters"),
  46822. name: "Side",
  46823. image: {
  46824. source: "./media/characters/kimpi/side.svg",
  46825. extra: 419/382,
  46826. bottom: 63/482
  46827. }
  46828. },
  46829. hand: {
  46830. height: math.unit(8.96, "meters"),
  46831. name: "Hand",
  46832. image: {
  46833. source: "./media/characters/kimpi/hand.svg"
  46834. }
  46835. },
  46836. },
  46837. [
  46838. {
  46839. name: "Normal",
  46840. height: math.unit(35, "meters"),
  46841. default: true
  46842. },
  46843. ]
  46844. ))
  46845. characterMakers.push(() => makeCharacter(
  46846. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46847. {
  46848. front: {
  46849. height: math.unit(4 + 4/12, "feet"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/pepper-purrloin/front.svg",
  46853. extra: 1141/1024,
  46854. bottom: 21/1162
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(4 + 4/12, "feet"),
  46862. default: true
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(6 + 2/12, "feet"),
  46871. name: "Front",
  46872. image: {
  46873. source: "./media/characters/raphael/front.svg",
  46874. extra: 1101/962,
  46875. bottom: 59/1160
  46876. }
  46877. },
  46878. },
  46879. [
  46880. {
  46881. name: "Normal",
  46882. height: math.unit(6 + 2/12, "feet"),
  46883. default: true
  46884. },
  46885. ]
  46886. ))
  46887. characterMakers.push(() => makeCharacter(
  46888. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46889. {
  46890. front: {
  46891. height: math.unit(6, "feet"),
  46892. weight: math.unit(150, "lb"),
  46893. name: "Front",
  46894. image: {
  46895. source: "./media/characters/victor-williams/front.svg",
  46896. extra: 1894/1825,
  46897. bottom: 67/1961
  46898. }
  46899. },
  46900. },
  46901. [
  46902. {
  46903. name: "Normal",
  46904. height: math.unit(6, "feet"),
  46905. default: true
  46906. },
  46907. ]
  46908. ))
  46909. characterMakers.push(() => makeCharacter(
  46910. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  46911. {
  46912. front: {
  46913. height: math.unit(5 + 8/12, "feet"),
  46914. weight: math.unit(150, "lb"),
  46915. name: "Front",
  46916. image: {
  46917. source: "./media/characters/rachel/front.svg",
  46918. extra: 1902/1787,
  46919. bottom: 46/1948
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Base Height",
  46926. height: math.unit(5 + 8/12, "feet"),
  46927. default: true
  46928. },
  46929. {
  46930. name: "Macro",
  46931. height: math.unit(200, "feet")
  46932. },
  46933. {
  46934. name: "Mega Macro",
  46935. height: math.unit(1, "mile")
  46936. },
  46937. {
  46938. name: "Giga Macro",
  46939. height: math.unit(1500, "miles")
  46940. },
  46941. {
  46942. name: "Tera Macro",
  46943. height: math.unit(8000, "miles")
  46944. },
  46945. {
  46946. name: "Tera Macro+",
  46947. height: math.unit(2e5, "miles")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  46953. {
  46954. front: {
  46955. height: math.unit(6.5, "feet"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/svetlana-rozovskaya/front.svg",
  46959. extra: 860/819,
  46960. bottom: 307/1167
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(6.5, "feet"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/svetlana-rozovskaya/back.svg",
  46968. extra: 880/837,
  46969. bottom: 395/1275
  46970. }
  46971. },
  46972. sleeping: {
  46973. height: math.unit(2.79, "feet"),
  46974. name: "Sleeping",
  46975. image: {
  46976. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  46977. extra: 465/383,
  46978. bottom: 263/728
  46979. }
  46980. },
  46981. maw: {
  46982. height: math.unit(2.52, "feet"),
  46983. name: "Maw",
  46984. image: {
  46985. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(6.5, "feet"),
  46993. default: true
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Nova (Dritty)", species: ["dragon", "cat"], tags: ["anthro"] },
  46999. {
  47000. front: {
  47001. height: math.unit(5, "feet"),
  47002. name: "Front",
  47003. image: {
  47004. source: "./media/characters/nova-dritty/front.svg",
  47005. extra: 1548/1392,
  47006. bottom: 374/1922
  47007. }
  47008. },
  47009. back: {
  47010. height: math.unit(5, "feet"),
  47011. name: "Back",
  47012. image: {
  47013. source: "./media/characters/nova-dritty/back.svg",
  47014. extra: 1658/1468,
  47015. bottom: 257/1915
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(5, "feet"),
  47023. default: true
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47029. {
  47030. front: {
  47031. height: math.unit(5 + 4/12, "feet"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/ashe-pyriph/front.svg",
  47035. extra: 1935/1747,
  47036. bottom: 60/1995
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(5 + 4/12, "feet"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. //characters
  47049. function makeCharacters() {
  47050. const results = [];
  47051. characterMakers.forEach(character => {
  47052. results.push(character());
  47053. });
  47054. return results;
  47055. }