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

47858 строки
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. }
  1876. //species
  1877. function getSpeciesInfo(speciesList) {
  1878. let result = new Set();
  1879. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1880. result.add(entry)
  1881. });
  1882. return Array.from(result);
  1883. };
  1884. function getSpeciesInfoHelper(species) {
  1885. if (!speciesData[species]) {
  1886. console.warn(species + " doesn't exist");
  1887. return [];
  1888. }
  1889. if (speciesData[species].parents) {
  1890. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1891. } else {
  1892. return [species];
  1893. }
  1894. }
  1895. characterMakers.push(() => makeCharacter(
  1896. {
  1897. name: "Fen",
  1898. species: ["crux"],
  1899. description: {
  1900. title: "Bio",
  1901. text: "Very furry. Sheds on everything."
  1902. },
  1903. tags: [
  1904. "anthro",
  1905. "goo"
  1906. ]
  1907. },
  1908. {
  1909. front: {
  1910. height: math.unit(12, "feet"),
  1911. weight: math.unit(2400, "lb"),
  1912. name: "Front",
  1913. image: {
  1914. source: "./media/characters/fen/front.svg",
  1915. extra: 1804/1562,
  1916. bottom: 205/2009
  1917. }
  1918. },
  1919. diving: {
  1920. height: math.unit(4.9, "meters"),
  1921. weight: math.unit(2400, "lb"),
  1922. name: "Diving",
  1923. image: {
  1924. source: "./media/characters/fen/diving.svg"
  1925. }
  1926. },
  1927. goo: {
  1928. height: math.unit(12, "feet"),
  1929. weight: math.unit(3000, "lb"),
  1930. capacity: math.unit(6, "people"),
  1931. name: "Goo",
  1932. image: {
  1933. source: "./media/characters/fen/goo.svg",
  1934. extra: 1307/1071,
  1935. bottom: 134/1441
  1936. }
  1937. },
  1938. maw: {
  1939. height: math.unit(5.03, "feet"),
  1940. name: "Maw",
  1941. image: {
  1942. source: "./media/characters/fen/maw.svg"
  1943. }
  1944. },
  1945. gooCeiling: {
  1946. height: math.unit(6.6, "feet"),
  1947. weight: math.unit(3000, "lb"),
  1948. capacity: math.unit(6, "people"),
  1949. name: "Goo (Ceiling)",
  1950. image: {
  1951. source: "./media/characters/fen/goo-ceiling.svg"
  1952. }
  1953. },
  1954. back: {
  1955. height: math.unit(12, "feet"),
  1956. weight: math.unit(2400, "lb"),
  1957. name: "Back",
  1958. image: {
  1959. source: "./media/characters/fen/back.svg",
  1960. },
  1961. info: {
  1962. description: {
  1963. mode: "append",
  1964. text: "\n\nHe is not currently looking at you."
  1965. }
  1966. }
  1967. },
  1968. full: {
  1969. height: math.unit(1.6, "meter"),
  1970. weight: math.unit(3200, "lb"),
  1971. name: "Full",
  1972. image: {
  1973. source: "./media/characters/fen/full.svg",
  1974. extra: 1133/859,
  1975. bottom: 145/1278
  1976. },
  1977. info: {
  1978. description: {
  1979. mode: "append",
  1980. text: "\n\nMunch."
  1981. }
  1982. }
  1983. },
  1984. gooLounging: {
  1985. height: math.unit(4.53, "feet"),
  1986. weight: math.unit(3000, "lb"),
  1987. capacity: math.unit(6, "people"),
  1988. name: "Goo (Lounging)",
  1989. image: {
  1990. source: "./media/characters/fen/goo.svg",
  1991. bottom: 116 / 613
  1992. }
  1993. },
  1994. lounging: {
  1995. height: math.unit(10.52, "feet"),
  1996. weight: math.unit(2400, "lb"),
  1997. name: "Lounging",
  1998. image: {
  1999. source: "./media/characters/fen/lounging.svg"
  2000. }
  2001. },
  2002. },
  2003. [
  2004. {
  2005. name: "Small",
  2006. height: math.unit(2.2428, "meter")
  2007. },
  2008. {
  2009. name: "Normal",
  2010. height: math.unit(12, "feet"),
  2011. default: true,
  2012. },
  2013. {
  2014. name: "Big",
  2015. height: math.unit(20, "feet")
  2016. },
  2017. {
  2018. name: "Minimacro",
  2019. height: math.unit(40, "feet"),
  2020. info: {
  2021. description: {
  2022. mode: "append",
  2023. text: "\n\nTOO DAMN BIG"
  2024. }
  2025. }
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(100, "feet"),
  2030. info: {
  2031. description: {
  2032. mode: "append",
  2033. text: "\n\nTOO DAMN BIG"
  2034. }
  2035. }
  2036. },
  2037. {
  2038. name: "Megamacro",
  2039. height: math.unit(2, "miles")
  2040. },
  2041. {
  2042. name: "Gigamacro",
  2043. height: math.unit(10, "earths")
  2044. },
  2045. ]
  2046. ))
  2047. characterMakers.push(() => makeCharacter(
  2048. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2049. {
  2050. front: {
  2051. height: math.unit(183, "cm"),
  2052. weight: math.unit(80, "kg"),
  2053. name: "Front",
  2054. image: {
  2055. source: "./media/characters/sofia-fluttertail/front.svg",
  2056. bottom: 0.01,
  2057. extra: 2154 / 2081
  2058. }
  2059. },
  2060. frontAlt: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Front (alt)",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2066. }
  2067. },
  2068. back: {
  2069. height: math.unit(183, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Back",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/back.svg"
  2074. }
  2075. },
  2076. kneeling: {
  2077. height: math.unit(125, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Kneeling",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2082. extra: 1033 / 977,
  2083. bottom: 23.7 / 1057
  2084. }
  2085. },
  2086. maw: {
  2087. height: math.unit(183 / 5, "cm"),
  2088. name: "Maw",
  2089. image: {
  2090. source: "./media/characters/sofia-fluttertail/maw.svg"
  2091. }
  2092. },
  2093. mawcloseup: {
  2094. height: math.unit(183 / 5 * 0.41, "cm"),
  2095. name: "Maw (Closeup)",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2098. }
  2099. },
  2100. paws: {
  2101. height: math.unit(1.17, "feet"),
  2102. name: "Paws",
  2103. image: {
  2104. source: "./media/characters/sofia-fluttertail/paws.svg",
  2105. extra: 851 / 851,
  2106. bottom: 17 / 868
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Normal",
  2113. height: math.unit(1.83, "meter")
  2114. },
  2115. {
  2116. name: "Size Thief",
  2117. height: math.unit(18, "feet")
  2118. },
  2119. {
  2120. name: "50 Foot Collie",
  2121. height: math.unit(50, "feet")
  2122. },
  2123. {
  2124. name: "Macro",
  2125. height: math.unit(96, "feet"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "Megamerger",
  2130. height: math.unit(650, "feet")
  2131. },
  2132. ]
  2133. ))
  2134. characterMakers.push(() => makeCharacter(
  2135. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2136. {
  2137. front: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/march/front.svg",
  2143. extra: 1992/1851,
  2144. bottom: 39/2031
  2145. }
  2146. },
  2147. foot: {
  2148. height: math.unit(0.9, "feet"),
  2149. name: "Foot",
  2150. image: {
  2151. source: "./media/characters/march/foot.svg"
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Normal",
  2158. height: math.unit(7.9, "feet")
  2159. },
  2160. {
  2161. name: "Macro",
  2162. height: math.unit(220, "meters")
  2163. },
  2164. {
  2165. name: "Megamacro",
  2166. height: math.unit(2.98, "km"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Gigamacro",
  2171. height: math.unit(15963, "km")
  2172. },
  2173. {
  2174. name: "Teramacro",
  2175. height: math.unit(2980000000, "km")
  2176. },
  2177. {
  2178. name: "Examacro",
  2179. height: math.unit(250, "parsecs")
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2185. {
  2186. front: {
  2187. height: math.unit(6, "feet"),
  2188. weight: math.unit(60, "kg"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/noir/front.svg",
  2192. extra: 1,
  2193. bottom: 0.032
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(6.6, "feet")
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(500, "feet")
  2205. },
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(2.5, "km"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(22500, "km")
  2214. },
  2215. {
  2216. name: "Teramacro",
  2217. height: math.unit(2500000000, "km")
  2218. },
  2219. {
  2220. name: "Examacro",
  2221. height: math.unit(200, "parsecs")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/okuri/front.svg",
  2234. extra: 1,
  2235. bottom: 0.037
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/okuri/back.svg",
  2244. extra: 1,
  2245. bottom: 0.007
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Megamacro",
  2252. height: math.unit(100, "miles"),
  2253. default: true
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(7, "feet"),
  2262. weight: math.unit(100, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/manny/front.svg",
  2266. extra: 1,
  2267. bottom: 0.06
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(7, "feet"),
  2272. weight: math.unit(100, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/manny/back.svg",
  2276. extra: 1,
  2277. bottom: 0.014
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Normal",
  2284. height: math.unit(7, "feet"),
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(78, "feet"),
  2289. default: true
  2290. },
  2291. {
  2292. name: "Macro+",
  2293. height: math.unit(300, "meters")
  2294. },
  2295. {
  2296. name: "Macro++",
  2297. height: math.unit(2400, "meters")
  2298. },
  2299. {
  2300. name: "Megamacro",
  2301. height: math.unit(5167, "meters")
  2302. },
  2303. {
  2304. name: "Gigamacro",
  2305. height: math.unit(41769, "miles")
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/adake/front-1.svg"
  2318. }
  2319. },
  2320. frontAlt: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Front (Alt)",
  2324. image: {
  2325. source: "./media/characters/adake/front-2.svg",
  2326. extra: 1,
  2327. bottom: 0.01
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(7, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/adake/back.svg",
  2336. }
  2337. },
  2338. kneel: {
  2339. height: math.unit(5.385, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Kneeling",
  2342. image: {
  2343. source: "./media/characters/adake/kneel.svg",
  2344. bottom: 0.052
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Normal",
  2351. height: math.unit(7, "feet"),
  2352. },
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(78, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Macro+",
  2360. height: math.unit(300, "meters")
  2361. },
  2362. {
  2363. name: "Macro++",
  2364. height: math.unit(2400, "meters")
  2365. },
  2366. {
  2367. name: "Megamacro",
  2368. height: math.unit(5167, "meters")
  2369. },
  2370. {
  2371. name: "Gigamacro",
  2372. height: math.unit(41769, "miles")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(1.65, "meters"),
  2381. weight: math.unit(50, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/elijah/front.svg",
  2385. extra: 858 / 830,
  2386. bottom: 95.5 / 953.8559
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(1.65, "meters"),
  2391. weight: math.unit(50, "kg"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/elijah/back.svg",
  2395. extra: 895 / 850,
  2396. bottom: 5.3 / 897.956
  2397. }
  2398. },
  2399. frontNsfw: {
  2400. height: math.unit(1.65, "meters"),
  2401. weight: math.unit(50, "kg"),
  2402. name: "Front (NSFW)",
  2403. image: {
  2404. source: "./media/characters/elijah/front-nsfw.svg",
  2405. extra: 858 / 830,
  2406. bottom: 95.5 / 953.8559
  2407. }
  2408. },
  2409. backNsfw: {
  2410. height: math.unit(1.65, "meters"),
  2411. weight: math.unit(50, "kg"),
  2412. name: "Back (NSFW)",
  2413. image: {
  2414. source: "./media/characters/elijah/back-nsfw.svg",
  2415. extra: 895 / 850,
  2416. bottom: 5.3 / 897.956
  2417. }
  2418. },
  2419. dick: {
  2420. height: math.unit(1, "feet"),
  2421. name: "Dick",
  2422. image: {
  2423. source: "./media/characters/elijah/dick.svg"
  2424. }
  2425. },
  2426. beakOpen: {
  2427. height: math.unit(1.25, "feet"),
  2428. name: "Beak (Open)",
  2429. image: {
  2430. source: "./media/characters/elijah/beak-open.svg"
  2431. }
  2432. },
  2433. beakShut: {
  2434. height: math.unit(1.25, "feet"),
  2435. name: "Beak (Shut)",
  2436. image: {
  2437. source: "./media/characters/elijah/beak-shut.svg"
  2438. }
  2439. },
  2440. footFlexing: {
  2441. height: math.unit(1.61, "feet"),
  2442. name: "Foot (Flexing)",
  2443. image: {
  2444. source: "./media/characters/elijah/foot-flexing.svg"
  2445. }
  2446. },
  2447. footStepping: {
  2448. height: math.unit(1.44, "feet"),
  2449. name: "Foot (Stepping)",
  2450. image: {
  2451. source: "./media/characters/elijah/foot-stepping.svg"
  2452. }
  2453. },
  2454. plantigradeLeg: {
  2455. height: math.unit(2.34, "feet"),
  2456. name: "Plantigrade Leg",
  2457. image: {
  2458. source: "./media/characters/elijah/plantigrade-leg.svg"
  2459. }
  2460. },
  2461. plantigradeFootLeft: {
  2462. height: math.unit(0.9, "feet"),
  2463. name: "Plantigrade Foot (Left)",
  2464. image: {
  2465. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2466. }
  2467. },
  2468. plantigradeFootRight: {
  2469. height: math.unit(0.9, "feet"),
  2470. name: "Plantigrade Foot (Right)",
  2471. image: {
  2472. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2473. }
  2474. },
  2475. },
  2476. [
  2477. {
  2478. name: "Normal",
  2479. height: math.unit(1.65, "meters")
  2480. },
  2481. {
  2482. name: "Macro",
  2483. height: math.unit(55, "meters"),
  2484. default: true
  2485. },
  2486. {
  2487. name: "Macro+",
  2488. height: math.unit(105, "meters")
  2489. },
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2494. {
  2495. front: {
  2496. height: math.unit(7 + 2/12, "feet"),
  2497. weight: math.unit(320, "kg"),
  2498. name: "Front",
  2499. image: {
  2500. source: "./media/characters/rai/front.svg",
  2501. extra: 1802/1696,
  2502. bottom: 68/1870
  2503. }
  2504. },
  2505. frontDressed: {
  2506. height: math.unit(7 + 2/12, "feet"),
  2507. weight: math.unit(320, "kg"),
  2508. name: "Front (Dressed)",
  2509. image: {
  2510. source: "./media/characters/rai/front-dressed.svg",
  2511. extra: 1802/1696,
  2512. bottom: 68/1870
  2513. }
  2514. },
  2515. side: {
  2516. height: math.unit(7 + 2/12, "feet"),
  2517. weight: math.unit(320, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/rai/side.svg",
  2521. extra: 1789/1710,
  2522. bottom: 115/1904
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(7 + 2/12, "feet"),
  2527. weight: math.unit(320, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/rai/back.svg",
  2531. extra: 1770/1707,
  2532. bottom: 28/1798
  2533. }
  2534. },
  2535. feral: {
  2536. height: math.unit(9.5, "feet"),
  2537. weight: math.unit(640, "kg"),
  2538. name: "Feral",
  2539. image: {
  2540. source: "./media/characters/rai/feral.svg",
  2541. extra: 945/553,
  2542. bottom: 176/1121
  2543. }
  2544. },
  2545. dragon: {
  2546. height: math.unit(23, "feet"),
  2547. weight: math.unit(50000, "lb"),
  2548. name: "Dragon",
  2549. image: {
  2550. source: "./media/characters/rai/dragon.svg",
  2551. extra: 2498 / 2030,
  2552. bottom: 85.2 / 2584
  2553. }
  2554. },
  2555. maw: {
  2556. height: math.unit(1.69, "feet"),
  2557. name: "Maw",
  2558. image: {
  2559. source: "./media/characters/rai/maw.svg"
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7 + 2/12, "feet")
  2567. },
  2568. {
  2569. name: "Big",
  2570. height: math.unit(11, "feet")
  2571. },
  2572. {
  2573. name: "Macro",
  2574. height: math.unit(302, "feet"),
  2575. default: true
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2581. {
  2582. frontDressed: {
  2583. height: math.unit(216, "feet"),
  2584. weight: math.unit(7000000, "lb"),
  2585. name: "Front (Dressed)",
  2586. image: {
  2587. source: "./media/characters/jazzy/front-dressed.svg",
  2588. extra: 2738 / 2651,
  2589. bottom: 41.8 / 2786
  2590. }
  2591. },
  2592. backDressed: {
  2593. height: math.unit(216, "feet"),
  2594. weight: math.unit(7000000, "lb"),
  2595. name: "Back (Dressed)",
  2596. image: {
  2597. source: "./media/characters/jazzy/back-dressed.svg",
  2598. extra: 2775 / 2673,
  2599. bottom: 36.8 / 2817
  2600. }
  2601. },
  2602. front: {
  2603. height: math.unit(216, "feet"),
  2604. weight: math.unit(7000000, "lb"),
  2605. name: "Front",
  2606. image: {
  2607. source: "./media/characters/jazzy/front.svg",
  2608. extra: 2738 / 2651,
  2609. bottom: 41.8 / 2786
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(216, "feet"),
  2614. weight: math.unit(7000000, "lb"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/jazzy/back.svg",
  2618. extra: 2775 / 2673,
  2619. bottom: 36.8 / 2817
  2620. }
  2621. },
  2622. maw: {
  2623. height: math.unit(20, "feet"),
  2624. name: "Maw",
  2625. image: {
  2626. source: "./media/characters/jazzy/maw.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(27.5, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/jazzy/paws.svg"
  2634. }
  2635. },
  2636. eye: {
  2637. height: math.unit(4.4, "feet"),
  2638. name: "Eye",
  2639. image: {
  2640. source: "./media/characters/jazzy/eye.svg"
  2641. }
  2642. },
  2643. droneOffense: {
  2644. height: math.unit(9.5, "inches"),
  2645. name: "Drone (Offense)",
  2646. image: {
  2647. source: "./media/characters/jazzy/drone-offense.svg"
  2648. }
  2649. },
  2650. droneRecon: {
  2651. height: math.unit(9.5, "inches"),
  2652. name: "Drone (Recon)",
  2653. image: {
  2654. source: "./media/characters/jazzy/drone-recon.svg"
  2655. }
  2656. },
  2657. droneDefense: {
  2658. height: math.unit(9.5, "inches"),
  2659. name: "Drone (Defense)",
  2660. image: {
  2661. source: "./media/characters/jazzy/drone-defense.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(216, "feet"),
  2669. default: true
  2670. },
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2675. {
  2676. front: {
  2677. height: math.unit(9 + 6/12, "feet"),
  2678. weight: math.unit(700, "lb"),
  2679. name: "Front",
  2680. image: {
  2681. source: "./media/characters/flamm/front.svg",
  2682. extra: 1751/1632,
  2683. bottom: 46/1797
  2684. }
  2685. },
  2686. buff: {
  2687. height: math.unit(9 + 6/12, "feet"),
  2688. weight: math.unit(950, "lb"),
  2689. name: "Buff",
  2690. image: {
  2691. source: "./media/characters/flamm/buff.svg",
  2692. extra: 3018/2874,
  2693. bottom: 221/3239
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(9.5, "feet")
  2701. },
  2702. {
  2703. name: "Macro",
  2704. height: math.unit(200, "feet"),
  2705. default: true
  2706. },
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2711. {
  2712. front: {
  2713. height: math.unit(5 + 3/12, "feet"),
  2714. weight: math.unit(60, "kg"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/zephiro/front.svg",
  2718. extra: 2309 / 2162,
  2719. bottom: 0.069
  2720. }
  2721. },
  2722. side: {
  2723. height: math.unit(5 + 3/12, "feet"),
  2724. weight: math.unit(60, "kg"),
  2725. name: "Side",
  2726. image: {
  2727. source: "./media/characters/zephiro/side.svg",
  2728. extra: 2403 / 2279,
  2729. bottom: 0.015
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(5 + 3/12, "feet"),
  2734. weight: math.unit(60, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/zephiro/back.svg",
  2738. extra: 2373 / 2244,
  2739. bottom: 0.013
  2740. }
  2741. },
  2742. hand: {
  2743. height: math.unit(0.68, "feet"),
  2744. name: "Hand",
  2745. image: {
  2746. source: "./media/characters/zephiro/hand.svg"
  2747. }
  2748. },
  2749. paw: {
  2750. height: math.unit(1, "feet"),
  2751. name: "Paw",
  2752. image: {
  2753. source: "./media/characters/zephiro/paw.svg"
  2754. }
  2755. },
  2756. beans: {
  2757. height: math.unit(0.93, "feet"),
  2758. name: "Beans",
  2759. image: {
  2760. source: "./media/characters/zephiro/beans.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Micro",
  2767. height: math.unit(3, "inches")
  2768. },
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(5 + 3 / 12, "feet"),
  2772. default: true
  2773. },
  2774. {
  2775. name: "Macro",
  2776. height: math.unit(118, "feet")
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2782. {
  2783. front: {
  2784. height: math.unit(5, "feet"),
  2785. weight: math.unit(90, "kg"),
  2786. name: "Front",
  2787. image: {
  2788. source: "./media/characters/fory/front.svg",
  2789. extra: 2862 / 2674,
  2790. bottom: 180 / 3043.8
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(5, "feet"),
  2795. weight: math.unit(90, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/fory/back.svg",
  2799. extra: 2962 / 2791,
  2800. bottom: 106 / 3071.8
  2801. }
  2802. },
  2803. foot: {
  2804. height: math.unit(2.14, "feet"),
  2805. name: "Foot",
  2806. image: {
  2807. source: "./media/characters/fory/foot.svg"
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(5, "feet")
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(50, "feet"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(10, "miles")
  2824. },
  2825. {
  2826. name: "Gigamacro",
  2827. height: math.unit(5, "earths")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7, "feet"),
  2836. weight: math.unit(90, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/kurrikage/front.svg",
  2840. extra: 1845/1733,
  2841. bottom: 119/1964
  2842. }
  2843. },
  2844. back: {
  2845. height: math.unit(7, "feet"),
  2846. weight: math.unit(90, "kg"),
  2847. name: "Back",
  2848. image: {
  2849. source: "./media/characters/kurrikage/back.svg",
  2850. extra: 1790/1677,
  2851. bottom: 61/1851
  2852. }
  2853. },
  2854. dressed: {
  2855. height: math.unit(7, "feet"),
  2856. weight: math.unit(90, "kg"),
  2857. name: "Dressed",
  2858. image: {
  2859. source: "./media/characters/kurrikage/dressed.svg",
  2860. extra: 1845/1733,
  2861. bottom: 119/1964
  2862. }
  2863. },
  2864. foot: {
  2865. height: math.unit(1.5, "feet"),
  2866. name: "Foot",
  2867. image: {
  2868. source: "./media/characters/kurrikage/foot.svg"
  2869. }
  2870. },
  2871. staff: {
  2872. height: math.unit(6.7, "feet"),
  2873. name: "Staff",
  2874. image: {
  2875. source: "./media/characters/kurrikage/staff.svg"
  2876. }
  2877. },
  2878. peek: {
  2879. height: math.unit(1.05, "feet"),
  2880. name: "Peeking",
  2881. image: {
  2882. source: "./media/characters/kurrikage/peek.svg",
  2883. bottom: 0.08
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(12, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Big",
  2895. height: math.unit(20, "feet")
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(500, "feet")
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(20, "miles")
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(75, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/shingo/front.svg",
  2916. extra: 1900/1825,
  2917. bottom: 82/1982
  2918. }
  2919. },
  2920. side: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Side",
  2924. image: {
  2925. source: "./media/characters/shingo/side.svg",
  2926. extra: 1930/1865,
  2927. bottom: 16/1946
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/shingo/back.svg",
  2936. extra: 1922/1852,
  2937. bottom: 16/1938
  2938. }
  2939. },
  2940. frontDressed: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(150, "lb"),
  2943. name: "Front-dressed",
  2944. image: {
  2945. source: "./media/characters/shingo/front-dressed.svg",
  2946. extra: 1900/1825,
  2947. bottom: 82/1982
  2948. }
  2949. },
  2950. paw: {
  2951. height: math.unit(1.29, "feet"),
  2952. name: "Paw",
  2953. image: {
  2954. source: "./media/characters/shingo/paw.svg"
  2955. }
  2956. },
  2957. hand: {
  2958. height: math.unit(1.07, "feet"),
  2959. name: "Hand",
  2960. image: {
  2961. source: "./media/characters/shingo/hand.svg"
  2962. }
  2963. },
  2964. frontAlt: {
  2965. height: math.unit(6, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front (Alt)",
  2968. image: {
  2969. source: "./media/characters/shingo/front-alt.svg",
  2970. extra: 3511 / 3338,
  2971. bottom: 0.005
  2972. }
  2973. },
  2974. frontAlt2: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (Alt 2)",
  2978. image: {
  2979. source: "./media/characters/shingo/front-alt-2.svg",
  2980. extra: 706/681,
  2981. bottom: 11/717
  2982. }
  2983. },
  2984. pawAlt: {
  2985. height: math.unit(1, "feet"),
  2986. name: "Paw (Alt)",
  2987. image: {
  2988. source: "./media/characters/shingo/paw-alt.svg"
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Micro",
  2995. height: math.unit(4, "inches")
  2996. },
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(6, "feet"),
  3000. default: true
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(108, "feet")
  3005. },
  3006. {
  3007. name: "Macro+",
  3008. height: math.unit(1500, "feet")
  3009. },
  3010. ]
  3011. ))
  3012. characterMakers.push(() => makeCharacter(
  3013. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3014. {
  3015. side: {
  3016. height: math.unit(6, "feet"),
  3017. weight: math.unit(75, "kg"),
  3018. name: "Side",
  3019. image: {
  3020. source: "./media/characters/aigey/side.svg"
  3021. }
  3022. },
  3023. },
  3024. [
  3025. {
  3026. name: "Macro",
  3027. height: math.unit(200, "feet"),
  3028. default: true
  3029. },
  3030. {
  3031. name: "Megamacro",
  3032. height: math.unit(100, "miles")
  3033. },
  3034. ]
  3035. )
  3036. )
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(5 + 5 / 12, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/natasha/front.svg",
  3046. extra: 859 / 824,
  3047. bottom: 23 / 879.6
  3048. }
  3049. },
  3050. frontNsfw: {
  3051. height: math.unit(5 + 5 / 12, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Front (NSFW)",
  3054. image: {
  3055. source: "./media/characters/natasha/front-nsfw.svg",
  3056. extra: 859 / 824,
  3057. bottom: 23 / 879.6
  3058. }
  3059. },
  3060. frontErect: {
  3061. height: math.unit(5 + 5 / 12, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Erect)",
  3064. image: {
  3065. source: "./media/characters/natasha/front-erect.svg",
  3066. extra: 859 / 824,
  3067. bottom: 23 / 879.6
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(5 + 5 / 12, "feet"),
  3072. weight: math.unit(75, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/natasha/back.svg",
  3076. extra: 887.9 / 852.6,
  3077. bottom: 9.7 / 896.4
  3078. }
  3079. },
  3080. backAlt: {
  3081. height: math.unit(5 + 5 / 12, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Back (Alt)",
  3084. image: {
  3085. source: "./media/characters/natasha/back-alt.svg",
  3086. extra: 1236.7 / 1192,
  3087. bottom: 22.3 / 1258.2
  3088. }
  3089. },
  3090. dick: {
  3091. height: math.unit(1.772, "feet"),
  3092. name: "Dick",
  3093. image: {
  3094. source: "./media/characters/natasha/dick.svg"
  3095. }
  3096. },
  3097. paw: {
  3098. height: math.unit(0.250, "meters"),
  3099. name: "Paw",
  3100. image: {
  3101. source: "./media/characters/natasha/paw.svg"
  3102. }
  3103. },
  3104. },
  3105. [
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(5 + 5 / 12, "feet")
  3109. },
  3110. {
  3111. name: "Large",
  3112. height: math.unit(12, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(100, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Macro+",
  3121. height: math.unit(260, "feet")
  3122. },
  3123. {
  3124. name: "Macro++",
  3125. height: math.unit(1, "mile")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/malik/front.svg"
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/malik/side.svg",
  3146. extra: 1.1539
  3147. }
  3148. },
  3149. back: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Back",
  3153. image: {
  3154. source: "./media/characters/malik/back.svg"
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(156, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro+",
  3166. height: math.unit(1188, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(6, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/sefer/front.svg",
  3179. extra: 848 / 659,
  3180. bottom: 28.3 / 876.442
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(6, "feet"),
  3185. weight: math.unit(75, "kg"),
  3186. name: "Back",
  3187. image: {
  3188. source: "./media/characters/sefer/back.svg",
  3189. extra: 864 / 695,
  3190. bottom: 10 / 871
  3191. }
  3192. },
  3193. frontDressed: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Front (Dressed)",
  3197. image: {
  3198. source: "./media/characters/sefer/front-dressed.svg",
  3199. extra: 839 / 653,
  3200. bottom: 37.6 / 878
  3201. }
  3202. },
  3203. },
  3204. [
  3205. {
  3206. name: "Normal",
  3207. height: math.unit(6, "feet"),
  3208. default: true
  3209. },
  3210. ]
  3211. ))
  3212. characterMakers.push(() => makeCharacter(
  3213. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3214. {
  3215. body: {
  3216. height: math.unit(2.2428, "meter"),
  3217. weight: math.unit(124.738, "kg"),
  3218. name: "Body",
  3219. image: {
  3220. extra: 1225 / 1050,
  3221. source: "./media/characters/north/front.svg"
  3222. }
  3223. }
  3224. },
  3225. [
  3226. {
  3227. name: "Micro",
  3228. height: math.unit(4, "inches")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(63, "meters")
  3233. },
  3234. {
  3235. name: "Megamacro",
  3236. height: math.unit(101, "miles"),
  3237. default: true
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3243. {
  3244. angled: {
  3245. height: math.unit(4, "meter"),
  3246. weight: math.unit(150, "kg"),
  3247. name: "Angled",
  3248. image: {
  3249. source: "./media/characters/talan/angled-sfw.svg",
  3250. bottom: 29 / 3734
  3251. }
  3252. },
  3253. angledNsfw: {
  3254. height: math.unit(4, "meter"),
  3255. weight: math.unit(150, "kg"),
  3256. name: "Angled (NSFW)",
  3257. image: {
  3258. source: "./media/characters/talan/angled-nsfw.svg",
  3259. bottom: 29 / 3734
  3260. }
  3261. },
  3262. frontNsfw: {
  3263. height: math.unit(4, "meter"),
  3264. weight: math.unit(150, "kg"),
  3265. name: "Front (NSFW)",
  3266. image: {
  3267. source: "./media/characters/talan/front-nsfw.svg",
  3268. bottom: 29 / 3734
  3269. }
  3270. },
  3271. sideNsfw: {
  3272. height: math.unit(4, "meter"),
  3273. weight: math.unit(150, "kg"),
  3274. name: "Side (NSFW)",
  3275. image: {
  3276. source: "./media/characters/talan/side-nsfw.svg",
  3277. bottom: 29 / 3734
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(4, "meter"),
  3282. weight: math.unit(150, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/talan/back.svg"
  3286. }
  3287. },
  3288. dickBottom: {
  3289. height: math.unit(0.621, "meter"),
  3290. name: "Dick (Bottom)",
  3291. image: {
  3292. source: "./media/characters/talan/dick-bottom.svg"
  3293. }
  3294. },
  3295. dickTop: {
  3296. height: math.unit(0.621, "meter"),
  3297. name: "Dick (Top)",
  3298. image: {
  3299. source: "./media/characters/talan/dick-top.svg"
  3300. }
  3301. },
  3302. dickSide: {
  3303. height: math.unit(0.305, "meter"),
  3304. name: "Dick (Side)",
  3305. image: {
  3306. source: "./media/characters/talan/dick-side.svg"
  3307. }
  3308. },
  3309. dickFront: {
  3310. height: math.unit(0.305, "meter"),
  3311. name: "Dick (Front)",
  3312. image: {
  3313. source: "./media/characters/talan/dick-front.svg"
  3314. }
  3315. },
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(4, "meters")
  3321. },
  3322. {
  3323. name: "Macro",
  3324. height: math.unit(100, "meters")
  3325. },
  3326. {
  3327. name: "Megamacro",
  3328. height: math.unit(2, "miles"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Gigamacro",
  3333. height: math.unit(5000, "miles")
  3334. },
  3335. {
  3336. name: "Teramacro",
  3337. height: math.unit(100, "parsecs")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front.svg"
  3350. }
  3351. },
  3352. frontAlt: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt.svg"
  3358. }
  3359. },
  3360. frontAlt2: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(90, "kg"),
  3363. name: "Front (alt 2)",
  3364. image: {
  3365. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3366. }
  3367. }
  3368. },
  3369. [
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(9, "feet"),
  3373. default: true
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(25, "feet")
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(0.25, "miles")
  3382. },
  3383. {
  3384. name: "Megamacro",
  3385. height: math.unit(10, "miles")
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3391. {
  3392. side: {
  3393. height: math.unit(2, "meter"),
  3394. weight: math.unit(140, "kg"),
  3395. name: "Side",
  3396. image: {
  3397. source: "./media/characters/sosha/side.svg",
  3398. bottom: 0.042
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(12, "feet"),
  3406. default: true
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3412. {
  3413. side: {
  3414. height: math.unit(5 + 5 / 12, "feet"),
  3415. weight: math.unit(170, "kg"),
  3416. name: "Side",
  3417. image: {
  3418. source: "./media/characters/runnola/side.svg",
  3419. extra: 741 / 448,
  3420. bottom: 0.05
  3421. }
  3422. },
  3423. },
  3424. [
  3425. {
  3426. name: "Small",
  3427. height: math.unit(3, "feet")
  3428. },
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(5 + 5 / 12, "feet"),
  3432. default: true
  3433. },
  3434. {
  3435. name: "Big",
  3436. height: math.unit(10, "feet")
  3437. },
  3438. ]
  3439. ))
  3440. characterMakers.push(() => makeCharacter(
  3441. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3442. {
  3443. front: {
  3444. height: math.unit(2, "meter"),
  3445. weight: math.unit(50, "kg"),
  3446. name: "Front",
  3447. image: {
  3448. source: "./media/characters/kurribird/front.svg",
  3449. bottom: 0.015
  3450. }
  3451. },
  3452. frontAlt: {
  3453. height: math.unit(1.5, "meter"),
  3454. weight: math.unit(50, "kg"),
  3455. name: "Front (Alt)",
  3456. image: {
  3457. source: "./media/characters/kurribird/front-alt.svg",
  3458. extra: 1.45
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(7, "feet")
  3466. },
  3467. {
  3468. name: "Big",
  3469. height: math.unit(12, "feet"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Macro",
  3474. height: math.unit(1500, "feet")
  3475. },
  3476. {
  3477. name: "Megamacro",
  3478. height: math.unit(2, "miles")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3484. {
  3485. front: {
  3486. height: math.unit(2, "meter"),
  3487. weight: math.unit(80, "kg"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/elbial/front.svg",
  3491. extra: 1643 / 1556,
  3492. bottom: 60.2 / 1696
  3493. }
  3494. },
  3495. side: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(80, "kg"),
  3498. name: "Side",
  3499. image: {
  3500. source: "./media/characters/elbial/side.svg",
  3501. extra: 1601/1528,
  3502. bottom: 97/1698
  3503. }
  3504. },
  3505. back: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(80, "kg"),
  3508. name: "Back",
  3509. image: {
  3510. source: "./media/characters/elbial/back.svg",
  3511. extra: 1653/1569,
  3512. bottom: 20/1673
  3513. }
  3514. },
  3515. frontDressed: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Front (Dressed)",
  3519. image: {
  3520. source: "./media/characters/elbial/front-dressed.svg",
  3521. extra: 1638/1569,
  3522. bottom: 70/1708
  3523. }
  3524. },
  3525. genitals: {
  3526. height: math.unit(2 / 3.367, "meter"),
  3527. name: "Genitals",
  3528. image: {
  3529. source: "./media/characters/elbial/genitals.svg"
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Large",
  3536. height: math.unit(100, "feet")
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(500, "feet"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Megamacro",
  3545. height: math.unit(10, "miles")
  3546. },
  3547. {
  3548. name: "Gigamacro",
  3549. height: math.unit(25000, "miles")
  3550. },
  3551. {
  3552. name: "Full-Size",
  3553. height: math.unit(8000000, "gigaparsecs")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(2, "meter"),
  3562. weight: math.unit(60, "kg"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/noah/front.svg"
  3566. }
  3567. },
  3568. talons: {
  3569. height: math.unit(0.315, "meter"),
  3570. name: "Talons",
  3571. image: {
  3572. source: "./media/characters/noah/talons.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Large",
  3579. height: math.unit(50, "feet")
  3580. },
  3581. {
  3582. name: "Macro",
  3583. height: math.unit(750, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(50, "miles")
  3589. },
  3590. {
  3591. name: "Gigamacro",
  3592. height: math.unit(100000, "miles")
  3593. },
  3594. {
  3595. name: "Full-Size",
  3596. height: math.unit(3000000000, "miles")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/natalya/front.svg"
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(80, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/natalya/back.svg"
  3617. }
  3618. }
  3619. },
  3620. [
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(150, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(5, "miles")
  3629. },
  3630. {
  3631. name: "Full-Size",
  3632. height: math.unit(600, "kiloparsecs")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(50, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/erestrebah/front.svg",
  3645. extra: 1262/1162,
  3646. bottom: 96/1358
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(50, "kg"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/erestrebah/back.svg",
  3655. extra: 1257/1139,
  3656. bottom: 13/1270
  3657. }
  3658. },
  3659. wing: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(50, "kg"),
  3662. name: "Wing",
  3663. image: {
  3664. source: "./media/characters/erestrebah/wing.svg",
  3665. extra: 1262/1162,
  3666. bottom: 96/1358
  3667. }
  3668. },
  3669. mouth: {
  3670. height: math.unit(0.39, "feet"),
  3671. name: "Mouth",
  3672. image: {
  3673. source: "./media/characters/erestrebah/mouth.svg"
  3674. }
  3675. }
  3676. },
  3677. [
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(10, "feet")
  3681. },
  3682. {
  3683. name: "Large",
  3684. height: math.unit(50, "feet"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(300, "feet")
  3690. },
  3691. {
  3692. name: "Macro+",
  3693. height: math.unit(750, "feet")
  3694. },
  3695. {
  3696. name: "Megamacro",
  3697. height: math.unit(3, "miles")
  3698. }
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3703. {
  3704. front: {
  3705. height: math.unit(2, "meter"),
  3706. weight: math.unit(80, "kg"),
  3707. name: "Front",
  3708. image: {
  3709. source: "./media/characters/jennifer/front.svg",
  3710. bottom: 0.11,
  3711. extra: 1.16
  3712. }
  3713. },
  3714. frontAlt: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(80, "kg"),
  3717. name: "Front (Alt)",
  3718. image: {
  3719. source: "./media/characters/jennifer/front-alt.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Canon Height",
  3726. height: math.unit(120, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro+",
  3731. height: math.unit(300, "feet")
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(20000, "feet")
  3736. }
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3741. {
  3742. front: {
  3743. height: math.unit(2, "meter"),
  3744. weight: math.unit(50, "kg"),
  3745. name: "Front",
  3746. image: {
  3747. source: "./media/characters/kalista/front.svg",
  3748. extra: 1314/1145,
  3749. bottom: 101/1415
  3750. }
  3751. },
  3752. back: {
  3753. height: math.unit(2, "meter"),
  3754. weight: math.unit(50, "kg"),
  3755. name: "Back",
  3756. image: {
  3757. source: "./media/characters/kalista/back.svg",
  3758. extra: 1366 / 1156,
  3759. bottom: 33.9 / 1362.78
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Uncomfortably Small",
  3766. height: math.unit(10, "feet")
  3767. },
  3768. {
  3769. name: "Small",
  3770. height: math.unit(30, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(100, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro+",
  3779. height: math.unit(2000, "feet")
  3780. },
  3781. {
  3782. name: "True Form",
  3783. height: math.unit(8924, "miles")
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/ggv/front.svg"
  3796. }
  3797. },
  3798. side: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(120, "kg"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/ggv/side.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Extremely Puny",
  3810. height: math.unit(9 + 5 / 12, "feet")
  3811. },
  3812. {
  3813. name: "Horribly Small",
  3814. height: math.unit(47.7, "miles"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Reasonably Sized",
  3819. height: math.unit(25000, "parsecs")
  3820. },
  3821. {
  3822. name: "Slightly Uncompressed",
  3823. height: math.unit(7.77e31, "parsecs")
  3824. },
  3825. {
  3826. name: "Omniversal",
  3827. height: math.unit(1e300, "meters")
  3828. },
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/napalm/front.svg"
  3840. }
  3841. },
  3842. back: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(75, "lb"),
  3845. name: "Back",
  3846. image: {
  3847. source: "./media/characters/napalm/back.svg"
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Standard",
  3854. height: math.unit(55, "feet"),
  3855. default: true
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(7 + 5 / 6, "feet"),
  3864. weight: math.unit(325, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/asana/front.svg",
  3868. extra: 1133 / 1060,
  3869. bottom: 15.2 / 1148.6
  3870. }
  3871. },
  3872. back: {
  3873. height: math.unit(7 + 5 / 6, "feet"),
  3874. weight: math.unit(325, "lb"),
  3875. name: "Back",
  3876. image: {
  3877. source: "./media/characters/asana/back.svg",
  3878. extra: 1114 / 1043,
  3879. bottom: 5 / 1120
  3880. }
  3881. },
  3882. dressedDark: {
  3883. height: math.unit(7 + 5 / 6, "feet"),
  3884. weight: math.unit(325, "lb"),
  3885. name: "Dressed (Dark)",
  3886. image: {
  3887. source: "./media/characters/asana/dressed-dark.svg",
  3888. extra: 1133 / 1060,
  3889. bottom: 15.2 / 1148.6
  3890. }
  3891. },
  3892. dressedLight: {
  3893. height: math.unit(7 + 5 / 6, "feet"),
  3894. weight: math.unit(325, "lb"),
  3895. name: "Dressed (Light)",
  3896. image: {
  3897. source: "./media/characters/asana/dressed-light.svg",
  3898. extra: 1133 / 1060,
  3899. bottom: 15.2 / 1148.6
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Standard",
  3906. height: math.unit(7 + 5 / 6, "feet"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Large",
  3911. height: math.unit(10, "meters")
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(2500, "meters")
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(5e6, "meters")
  3920. },
  3921. {
  3922. name: "Examacro",
  3923. height: math.unit(5e12, "lightyears")
  3924. },
  3925. {
  3926. name: "Max Size",
  3927. height: math.unit(1e31, "lightyears")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(60, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/ebony/front.svg",
  3940. bottom: 0.03,
  3941. extra: 1045 / 810 + 0.03
  3942. }
  3943. },
  3944. side: {
  3945. height: math.unit(2, "meter"),
  3946. weight: math.unit(60, "kg"),
  3947. name: "Side",
  3948. image: {
  3949. source: "./media/characters/ebony/side.svg",
  3950. bottom: 0.03,
  3951. extra: 1045 / 810 + 0.03
  3952. }
  3953. },
  3954. back: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(60, "kg"),
  3957. name: "Back",
  3958. image: {
  3959. source: "./media/characters/ebony/back.svg",
  3960. bottom: 0.01,
  3961. extra: 1045 / 810 + 0.01
  3962. }
  3963. },
  3964. },
  3965. [
  3966. // TODO check why I did this lol
  3967. {
  3968. name: "Standard",
  3969. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(200, "feet")
  3975. },
  3976. {
  3977. name: "Gigamacro",
  3978. height: math.unit(13000, "km")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(6, "feet"),
  3987. weight: math.unit(175, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/mountain/front.svg",
  3991. extra: 972 / 955,
  3992. bottom: 64 / 1036.6
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(175, "lb"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/mountain/back.svg",
  4001. extra: 970 / 950,
  4002. bottom: 28.25 / 999
  4003. }
  4004. },
  4005. },
  4006. [
  4007. {
  4008. name: "Large",
  4009. height: math.unit(20, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(300, "meters")
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(10000, "km"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Examacro",
  4022. height: math.unit(10e9, "lightyears")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(500, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/rick/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Normal",
  4041. height: math.unit(8, "feet"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(5, "km")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/ona/front.svg"
  4059. }
  4060. },
  4061. frontAlt: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Front (Alt)",
  4065. image: {
  4066. source: "./media/characters/ona/front-alt.svg"
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(8, "feet"),
  4071. weight: math.unit(120, "lb"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/ona/back.svg"
  4075. }
  4076. },
  4077. foot: {
  4078. height: math.unit(1.1, "feet"),
  4079. name: "Foot",
  4080. image: {
  4081. source: "./media/characters/ona/foot.svg"
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(70, "km"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(681818, "miles")
  4094. },
  4095. {
  4096. name: "Examacro",
  4097. height: math.unit(3800000, "lightyears")
  4098. },
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(12, "feet"),
  4106. weight: math.unit(3000, "lb"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/mech/front.svg",
  4110. extra: 2900 / 2770,
  4111. bottom: 110 / 3010
  4112. }
  4113. },
  4114. back: {
  4115. height: math.unit(12, "feet"),
  4116. weight: math.unit(3000, "lb"),
  4117. name: "Back",
  4118. image: {
  4119. source: "./media/characters/mech/back.svg",
  4120. extra: 3011 / 2890,
  4121. bottom: 94 / 3105
  4122. }
  4123. },
  4124. maw: {
  4125. height: math.unit(3.07, "feet"),
  4126. name: "Maw",
  4127. image: {
  4128. source: "./media/characters/mech/maw.svg"
  4129. }
  4130. },
  4131. head: {
  4132. height: math.unit(2.82, "feet"),
  4133. name: "Head",
  4134. image: {
  4135. source: "./media/characters/mech/head.svg"
  4136. }
  4137. },
  4138. dick: {
  4139. height: math.unit(1.43, "feet"),
  4140. name: "Dick",
  4141. image: {
  4142. source: "./media/characters/mech/dick.svg"
  4143. }
  4144. },
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(12, "feet")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(300, "feet"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro+",
  4158. height: math.unit(1500, "feet")
  4159. },
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(1.3, "meter"),
  4167. weight: math.unit(30, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/gregory/front.svg",
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(1.3, "meter"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(20, "meter")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(2.8, "meter"),
  4191. weight: math.unit(200, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/elory/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(2.8, "meter"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(38, "meter")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(470, "feet"),
  4215. weight: math.unit(924, "tons"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/angelpatamon/front.svg",
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(470, "feet"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Deity Size I",
  4230. height: math.unit(28651.2, "km")
  4231. },
  4232. {
  4233. name: "Deity Size II",
  4234. height: math.unit(171907.2, "km")
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4240. {
  4241. side: {
  4242. height: math.unit(7.2, "meter"),
  4243. weight: math.unit(8.2, "tons"),
  4244. name: "Side",
  4245. image: {
  4246. source: "./media/characters/cryae/side.svg",
  4247. extra: 3500 / 1500
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Normal",
  4254. height: math.unit(7.2, "meter"),
  4255. default: true
  4256. }
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(6, "feet"),
  4264. weight: math.unit(175, "lb"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/xera/front.svg",
  4268. extra: 2377 / 1972,
  4269. bottom: 75.5 / 2452
  4270. }
  4271. },
  4272. side: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(175, "lb"),
  4275. name: "Side",
  4276. image: {
  4277. source: "./media/characters/xera/side.svg",
  4278. extra: 2345 / 2019,
  4279. bottom: 39.7 / 2384
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(6, "feet"),
  4284. weight: math.unit(175, "lb"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/xera/back.svg",
  4288. extra: 2095 / 1984,
  4289. bottom: 67 / 2166
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Small",
  4296. height: math.unit(10, "feet")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(500, "meters"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro+",
  4305. height: math.unit(10, "km")
  4306. },
  4307. {
  4308. name: "Gigamacro",
  4309. height: math.unit(25000, "km")
  4310. },
  4311. {
  4312. name: "Teramacro",
  4313. height: math.unit(3e6, "km")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(6, "feet"),
  4322. weight: math.unit(175, "lb"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/nebula/front.svg",
  4326. extra: 2566 / 2362,
  4327. bottom: 81 / 2644
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Small",
  4334. height: math.unit(4.5, "meters")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(1500, "meters"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(150, "km")
  4344. },
  4345. {
  4346. name: "Gigamacro",
  4347. height: math.unit(27000, "km")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(225, "lb"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/abysgar/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Small",
  4366. height: math.unit(4.5, "meters")
  4367. },
  4368. {
  4369. name: "Macro",
  4370. height: math.unit(1250, "meters"),
  4371. default: true
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(125, "km")
  4376. },
  4377. {
  4378. name: "Gigamacro",
  4379. height: math.unit(26000, "km")
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4385. {
  4386. front: {
  4387. height: math.unit(6, "feet"),
  4388. weight: math.unit(180, "lb"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/yakuz/front.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Small",
  4398. height: math.unit(5, "meters")
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(1500, "meters"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Megamacro",
  4407. height: math.unit(200, "km")
  4408. },
  4409. {
  4410. name: "Gigamacro",
  4411. height: math.unit(100000, "km")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(175, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/mirova/front.svg",
  4424. extra: 3334 / 3071,
  4425. bottom: 42 / 3375.6
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(5, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(900, "meters"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megamacro",
  4441. height: math.unit(135, "km")
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(20000, "km")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4451. {
  4452. side: {
  4453. height: math.unit(28.35, "feet"),
  4454. weight: math.unit(99.75, "tons"),
  4455. name: "Side",
  4456. image: {
  4457. source: "./media/characters/asana-mech/side.svg",
  4458. extra: 923 / 699,
  4459. bottom: 50 / 975
  4460. }
  4461. },
  4462. chaingun: {
  4463. height: math.unit(7, "feet"),
  4464. weight: math.unit(2400, "lb"),
  4465. name: "Chaingun",
  4466. image: {
  4467. source: "./media/characters/asana-mech/chaingun.svg"
  4468. }
  4469. },
  4470. laser: {
  4471. height: math.unit(7.12, "feet"),
  4472. weight: math.unit(2000, "lb"),
  4473. name: "Laser",
  4474. image: {
  4475. source: "./media/characters/asana-mech/laser.svg"
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(28.35, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(2500, "feet")
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(25, "miles")
  4492. },
  4493. {
  4494. name: "Examacro",
  4495. height: math.unit(6e8, "lightyears")
  4496. },
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(5, "meters"),
  4504. weight: math.unit(1000, "kg"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/asche/front.svg",
  4508. extra: 1258 / 1190,
  4509. bottom: 47 / 1305
  4510. }
  4511. },
  4512. frontUnderwear: {
  4513. height: math.unit(5, "meters"),
  4514. weight: math.unit(1000, "kg"),
  4515. name: "Front (Underwear)",
  4516. image: {
  4517. source: "./media/characters/asche/front-underwear.svg",
  4518. extra: 1258 / 1190,
  4519. bottom: 47 / 1305
  4520. }
  4521. },
  4522. frontDressed: {
  4523. height: math.unit(5, "meters"),
  4524. weight: math.unit(1000, "kg"),
  4525. name: "Front (Dressed)",
  4526. image: {
  4527. source: "./media/characters/asche/front-dressed.svg",
  4528. extra: 1258 / 1190,
  4529. bottom: 47 / 1305
  4530. }
  4531. },
  4532. frontArmor: {
  4533. height: math.unit(5, "meters"),
  4534. weight: math.unit(1000, "kg"),
  4535. name: "Front (Armored)",
  4536. image: {
  4537. source: "./media/characters/asche/front-armored.svg",
  4538. extra: 1374 / 1308,
  4539. bottom: 23 / 1397
  4540. }
  4541. },
  4542. mp724: {
  4543. height: math.unit(0.96, "meters"),
  4544. weight: math.unit(38, "kg"),
  4545. name: "H&K MP724",
  4546. image: {
  4547. source: "./media/characters/asche/h&k-mp724.svg"
  4548. }
  4549. },
  4550. side: {
  4551. height: math.unit(5, "meters"),
  4552. weight: math.unit(1000, "kg"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/asche/side.svg",
  4556. extra: 1717 / 1609,
  4557. bottom: 0.005
  4558. }
  4559. },
  4560. back: {
  4561. height: math.unit(5, "meters"),
  4562. weight: math.unit(1000, "kg"),
  4563. name: "Back",
  4564. image: {
  4565. source: "./media/characters/asche/back.svg",
  4566. extra: 1570 / 1501
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "DEFCON 5",
  4573. height: math.unit(5, "meters")
  4574. },
  4575. {
  4576. name: "DEFCON 4",
  4577. height: math.unit(500, "meters"),
  4578. default: true
  4579. },
  4580. {
  4581. name: "DEFCON 3",
  4582. height: math.unit(5, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 2",
  4586. height: math.unit(500, "km")
  4587. },
  4588. {
  4589. name: "DEFCON 1",
  4590. height: math.unit(500000, "km")
  4591. },
  4592. {
  4593. name: "DEFCON 0",
  4594. height: math.unit(3, "gigaparsecs")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4600. {
  4601. front: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/gale/front.svg"
  4607. }
  4608. },
  4609. frontAlt1: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 1)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-1.svg"
  4615. }
  4616. },
  4617. frontAlt2: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(76, "kg"),
  4620. name: "Front (Alt 2)",
  4621. image: {
  4622. source: "./media/characters/gale/front-alt-2.svg"
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(7, "feet")
  4630. },
  4631. {
  4632. name: "Macro",
  4633. height: math.unit(150, "feet"),
  4634. default: true
  4635. },
  4636. {
  4637. name: "Macro+",
  4638. height: math.unit(300, "feet")
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4644. {
  4645. front: {
  4646. height: math.unit(5 + 10/12, "feet"),
  4647. weight: math.unit(67, "kg"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/draylen/front.svg",
  4651. extra: 832/777,
  4652. bottom: 85/917
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(5 + 10/12, "feet")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(150, "feet"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/chez/front.svg"
  4677. }
  4678. },
  4679. side: {
  4680. height: math.unit(7 + 9 / 12, "feet"),
  4681. weight: math.unit(379, "lbs"),
  4682. name: "Side",
  4683. image: {
  4684. source: "./media/characters/chez/side.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(7 + 9 / 12, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "God King",
  4696. height: math.unit(9750000, "meters")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(275, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/kaylum/front.svg",
  4709. bottom: 0.01,
  4710. extra: 1166 / 1031
  4711. }
  4712. },
  4713. frontWingless: {
  4714. height: math.unit(6, "feet"),
  4715. weight: math.unit(275, "lbs"),
  4716. name: "Front (Wingless)",
  4717. image: {
  4718. source: "./media/characters/kaylum/front-wingless.svg",
  4719. bottom: 0.01,
  4720. extra: 1117 / 1031
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(3.05, "meters")
  4728. },
  4729. {
  4730. name: "Master",
  4731. height: math.unit(5.5, "meters")
  4732. },
  4733. {
  4734. name: "Rampage",
  4735. height: math.unit(19, "meters")
  4736. },
  4737. {
  4738. name: "Macro Lite",
  4739. height: math.unit(37, "meters")
  4740. },
  4741. {
  4742. name: "Hyper Predator",
  4743. height: math.unit(61, "meters")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(138, "meters"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(150, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/geta/front.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Micro",
  4767. height: math.unit(3, "inches"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(5 + 5 / 12, "feet")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(300, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/tyrnn/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Main Height",
  4791. height: math.unit(355, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Fave. Height",
  4796. height: math.unit(2400, "feet")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(300, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/appledectomy/front.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(2500, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(50, "miles"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(5000, "miles")
  4825. },
  4826. {
  4827. name: "Teramacro",
  4828. height: math.unit(250000, "miles")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(200, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/vulpes/front.svg",
  4841. extra: 573 / 543,
  4842. bottom: 0.033
  4843. }
  4844. },
  4845. side: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(200, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/vulpes/side.svg",
  4851. extra: 577 / 549,
  4852. bottom: 11 / 588
  4853. }
  4854. },
  4855. back: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(200, "lbs"),
  4858. name: "Back",
  4859. image: {
  4860. source: "./media/characters/vulpes/back.svg",
  4861. extra: 573 / 549,
  4862. bottom: 20 / 593
  4863. }
  4864. },
  4865. feet: {
  4866. height: math.unit(1.276, "feet"),
  4867. name: "Feet",
  4868. image: {
  4869. source: "./media/characters/vulpes/feet.svg"
  4870. }
  4871. },
  4872. maw: {
  4873. height: math.unit(1.18, "feet"),
  4874. name: "Maw",
  4875. image: {
  4876. source: "./media/characters/vulpes/maw.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Micro",
  4883. height: math.unit(2, "inches")
  4884. },
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(6.3, "feet")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(850, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(7500, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(570000, "miles")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4906. {
  4907. front: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/front.svg"
  4913. }
  4914. },
  4915. side: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/side.svg"
  4921. }
  4922. },
  4923. back: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(210, "lbs"),
  4926. name: "Back",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/back.svg"
  4929. }
  4930. },
  4931. feral: {
  4932. height: math.unit(9, "feet"),
  4933. weight: math.unit(700, "lbs"),
  4934. name: "Feral",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/feral.svg"
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Meddling with Mortals",
  4943. height: math.unit(8 + 8/12, "feet")
  4944. },
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(5, "meter")
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(150, "meter"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Megamacro",
  4956. height: math.unit(278e6, "meter")
  4957. },
  4958. {
  4959. name: "Gigamacro",
  4960. height: math.unit(2e9, "meter")
  4961. },
  4962. {
  4963. name: "Teramacro",
  4964. height: math.unit(8e12, "meter")
  4965. },
  4966. {
  4967. name: "Devourer",
  4968. height: math.unit(14, "zettameters")
  4969. },
  4970. {
  4971. name: "Scarlet King",
  4972. height: math.unit(18, "yottameters")
  4973. },
  4974. {
  4975. name: "Void",
  4976. height: math.unit(1e88, "yottameters")
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4982. {
  4983. standing: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(180, "lbs"),
  4986. name: "Standing",
  4987. image: {
  4988. source: "./media/characters/zaakira/standing.svg",
  4989. extra: 1599/1504,
  4990. bottom: 39/1638
  4991. }
  4992. },
  4993. laying: {
  4994. height: math.unit(3, "feet"),
  4995. weight: math.unit(180, "lbs"),
  4996. name: "Laying",
  4997. image: {
  4998. source: "./media/characters/zaakira/laying.svg"
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(12, "feet")
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(279, "feet"),
  5010. default: true
  5011. }
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5016. {
  5017. femSfw: {
  5018. height: math.unit(8, "feet"),
  5019. weight: math.unit(350, "lb"),
  5020. name: "Fem",
  5021. image: {
  5022. source: "./media/characters/sigvald/fem-sfw.svg",
  5023. extra: 182 / 164,
  5024. bottom: 8.7 / 190.5
  5025. }
  5026. },
  5027. femNsfw: {
  5028. height: math.unit(8, "feet"),
  5029. weight: math.unit(350, "lb"),
  5030. name: "Fem (NSFW)",
  5031. image: {
  5032. source: "./media/characters/sigvald/fem-nsfw.svg",
  5033. extra: 182 / 164,
  5034. bottom: 8.7 / 190.5
  5035. }
  5036. },
  5037. maleNsfw: {
  5038. height: math.unit(8, "feet"),
  5039. weight: math.unit(350, "lb"),
  5040. name: "Male (NSFW)",
  5041. image: {
  5042. source: "./media/characters/sigvald/male-nsfw.svg",
  5043. extra: 182 / 164,
  5044. bottom: 8.7 / 190.5
  5045. }
  5046. },
  5047. hermNsfw: {
  5048. height: math.unit(8, "feet"),
  5049. weight: math.unit(350, "lb"),
  5050. name: "Herm (NSFW)",
  5051. image: {
  5052. source: "./media/characters/sigvald/herm-nsfw.svg",
  5053. extra: 182 / 164,
  5054. bottom: 8.7 / 190.5
  5055. }
  5056. },
  5057. dick: {
  5058. height: math.unit(2.36, "feet"),
  5059. name: "Dick",
  5060. image: {
  5061. source: "./media/characters/sigvald/dick.svg"
  5062. }
  5063. },
  5064. eye: {
  5065. height: math.unit(0.31, "feet"),
  5066. name: "Eye",
  5067. image: {
  5068. source: "./media/characters/sigvald/eye.svg"
  5069. }
  5070. },
  5071. mouth: {
  5072. height: math.unit(0.92, "feet"),
  5073. name: "Mouth",
  5074. image: {
  5075. source: "./media/characters/sigvald/mouth.svg"
  5076. }
  5077. },
  5078. paws: {
  5079. height: math.unit(2.2, "feet"),
  5080. name: "Paws",
  5081. image: {
  5082. source: "./media/characters/sigvald/paws.svg"
  5083. }
  5084. }
  5085. },
  5086. [
  5087. {
  5088. name: "Normal",
  5089. height: math.unit(8, "feet")
  5090. },
  5091. {
  5092. name: "Large",
  5093. height: math.unit(12, "feet")
  5094. },
  5095. {
  5096. name: "Larger",
  5097. height: math.unit(20, "feet")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(150, "feet")
  5102. },
  5103. {
  5104. name: "Macro+",
  5105. height: math.unit(200, "feet"),
  5106. default: true
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5112. {
  5113. side: {
  5114. height: math.unit(12, "feet"),
  5115. weight: math.unit(2000, "kg"),
  5116. name: "Side",
  5117. image: {
  5118. source: "./media/characters/scott/side.svg",
  5119. extra: 754 / 724,
  5120. bottom: 0.069
  5121. }
  5122. },
  5123. upright: {
  5124. height: math.unit(12, "feet"),
  5125. weight: math.unit(2000, "kg"),
  5126. name: "Upright",
  5127. image: {
  5128. source: "./media/characters/scott/upright.svg",
  5129. extra: 3881 / 3722,
  5130. bottom: 0.05
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(12, "feet"),
  5138. default: true
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5144. {
  5145. side: {
  5146. height: math.unit(8, "meters"),
  5147. weight: math.unit(84755, "lbs"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/tobias/side.svg",
  5151. extra: 1474 / 1096,
  5152. bottom: 38.9 / 1513.1235
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(8, "meters"),
  5160. default: true
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5166. {
  5167. front: {
  5168. height: math.unit(5.5, "feet"),
  5169. weight: math.unit(400, "lbs"),
  5170. name: "Front",
  5171. image: {
  5172. source: "./media/characters/kieran/front.svg",
  5173. extra: 2694 / 2364,
  5174. bottom: 217 / 2908
  5175. }
  5176. },
  5177. side: {
  5178. height: math.unit(5.5, "feet"),
  5179. weight: math.unit(400, "lbs"),
  5180. name: "Side",
  5181. image: {
  5182. source: "./media/characters/kieran/side.svg",
  5183. extra: 875 / 777,
  5184. bottom: 84.6 / 959
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(5.5, "feet"),
  5192. default: true
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5198. {
  5199. side: {
  5200. height: math.unit(2, "meters"),
  5201. weight: math.unit(70, "kg"),
  5202. name: "Side",
  5203. image: {
  5204. source: "./media/characters/sanya/side.svg",
  5205. bottom: 0.02,
  5206. extra: 1.02
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Small",
  5213. height: math.unit(2, "meters")
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(3, "meters")
  5218. },
  5219. {
  5220. name: "Macro",
  5221. height: math.unit(16, "meters"),
  5222. default: true
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(2, "meters"),
  5231. weight: math.unit(120, "kg"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/miranda/front.svg",
  5235. extra: 195 / 185,
  5236. bottom: 10.9 / 206.5
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(2, "meters"),
  5241. weight: math.unit(120, "kg"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/miranda/back.svg",
  5245. extra: 201 / 193,
  5246. bottom: 2.3 / 203.7
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(10, "feet"),
  5254. default: true
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "James", species: ["deer"], tags: ["anthro"] },
  5260. {
  5261. side: {
  5262. height: math.unit(2, "meters"),
  5263. weight: math.unit(100, "kg"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/james/front.svg",
  5267. extra: 10 / 8.5
  5268. }
  5269. },
  5270. },
  5271. [
  5272. {
  5273. name: "Normal",
  5274. height: math.unit(8.5, "feet"),
  5275. default: true
  5276. }
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5281. {
  5282. side: {
  5283. height: math.unit(9.5, "feet"),
  5284. weight: math.unit(2500, "lbs"),
  5285. name: "Side",
  5286. image: {
  5287. source: "./media/characters/heather/side.svg"
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(9.5, "feet"),
  5295. default: true
  5296. }
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5301. {
  5302. side: {
  5303. height: math.unit(6.5, "feet"),
  5304. weight: math.unit(400, "lbs"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/lukas/side.svg",
  5308. extra: 7.25 / 6.5
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(6.5, "feet"),
  5316. default: true
  5317. }
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5322. {
  5323. side: {
  5324. height: math.unit(5, "feet"),
  5325. weight: math.unit(3000, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/louise/side.svg"
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(5, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5342. {
  5343. side: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(150, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/ramona/side.svg",
  5349. extra: 871/854,
  5350. bottom: 41/912
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5.3, "meters"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(20, "stories")
  5363. },
  5364. {
  5365. name: "Macro+",
  5366. height: math.unit(50, "stories")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5372. {
  5373. standing: {
  5374. height: math.unit(5.75, "feet"),
  5375. weight: math.unit(160, "lbs"),
  5376. name: "Standing",
  5377. image: {
  5378. source: "./media/characters/deerpuff/standing.svg",
  5379. extra: 682 / 624
  5380. }
  5381. },
  5382. sitting: {
  5383. height: math.unit(5.75 / 1.79, "feet"),
  5384. weight: math.unit(160, "lbs"),
  5385. name: "Sitting",
  5386. image: {
  5387. source: "./media/characters/deerpuff/sitting.svg",
  5388. bottom: 44 / 400,
  5389. extra: 1
  5390. }
  5391. },
  5392. taurLaying: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(400, "lbs"),
  5395. name: "Taur (Laying)",
  5396. image: {
  5397. source: "./media/characters/deerpuff/taur-laying.svg"
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Puffball",
  5404. height: math.unit(6, "inches")
  5405. },
  5406. {
  5407. name: "Normalpuff",
  5408. height: math.unit(5.75, "feet")
  5409. },
  5410. {
  5411. name: "Macropuff",
  5412. height: math.unit(1500, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megapuff",
  5417. height: math.unit(500, "miles")
  5418. },
  5419. {
  5420. name: "Gigapuff",
  5421. height: math.unit(250000, "miles")
  5422. },
  5423. {
  5424. name: "Omegapuff",
  5425. height: math.unit(1000, "lightyears")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5431. {
  5432. stomping: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Stomping",
  5436. image: {
  5437. source: "./media/characters/vivian/stomping.svg"
  5438. }
  5439. },
  5440. sitting: {
  5441. height: math.unit(6 / 1.75, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Sitting",
  5444. image: {
  5445. source: "./media/characters/vivian/sitting.svg",
  5446. bottom: 1 / 6.4,
  5447. extra: 1,
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(7, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(10, "stories")
  5460. },
  5461. {
  5462. name: "Macro+",
  5463. height: math.unit(30, "stories")
  5464. },
  5465. {
  5466. name: "Megamacro",
  5467. height: math.unit(10, "miles")
  5468. },
  5469. {
  5470. name: "Megamacro+",
  5471. height: math.unit(2750000, "meters")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(160, "lbs"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/prince/front.svg",
  5484. extra: 3400 / 3000
  5485. }
  5486. },
  5487. jumping: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(160, "lbs"),
  5490. name: "Jumping",
  5491. image: {
  5492. source: "./media/characters/prince/jump.svg",
  5493. extra: 2555 / 2134
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(7.75, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Not cute",
  5505. height: math.unit(17, "feet")
  5506. },
  5507. {
  5508. name: "I said NOT",
  5509. height: math.unit(91, "feet")
  5510. },
  5511. {
  5512. name: "Please stop",
  5513. height: math.unit(560, "feet")
  5514. },
  5515. {
  5516. name: "What have you done",
  5517. height: math.unit(2200, "feet")
  5518. },
  5519. {
  5520. name: "Deer God",
  5521. height: math.unit(3.6, "miles")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5527. {
  5528. standing: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(300, "lbs"),
  5531. name: "Standing",
  5532. image: {
  5533. source: "./media/characters/psymon/standing.svg",
  5534. extra: 1888 / 1810,
  5535. bottom: 0.05
  5536. }
  5537. },
  5538. slithering: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(300, "lbs"),
  5541. name: "Slithering",
  5542. image: {
  5543. source: "./media/characters/psymon/slithering.svg",
  5544. extra: 1330 / 1224
  5545. }
  5546. },
  5547. slitheringAlt: {
  5548. height: math.unit(6, "feet"),
  5549. weight: math.unit(300, "lbs"),
  5550. name: "Slithering (Alt)",
  5551. image: {
  5552. source: "./media/characters/psymon/slithering-alt.svg",
  5553. extra: 1330 / 1224
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(11.25, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Large",
  5565. height: math.unit(27, "feet")
  5566. },
  5567. {
  5568. name: "Giant",
  5569. height: math.unit(87, "feet")
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(365, "feet")
  5574. },
  5575. {
  5576. name: "Megamacro",
  5577. height: math.unit(3, "miles")
  5578. },
  5579. {
  5580. name: "World Serpent",
  5581. height: math.unit(8000, "miles")
  5582. },
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(180, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/daimos/front.svg",
  5594. extra: 4160 / 3897,
  5595. bottom: 0.021
  5596. }
  5597. }
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(8, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Big Dog",
  5607. height: math.unit(22, "feet")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(127, "feet")
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(3600, "feet")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5621. {
  5622. side: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(180, "lbs"),
  5625. name: "Side",
  5626. image: {
  5627. source: "./media/characters/blake/side.svg",
  5628. extra: 1212 / 1120,
  5629. bottom: 0.05
  5630. }
  5631. },
  5632. crouched: {
  5633. height: math.unit(6 * 0.57, "feet"),
  5634. weight: math.unit(180, "lbs"),
  5635. name: "Crouched",
  5636. image: {
  5637. source: "./media/characters/blake/crouched.svg",
  5638. extra: 840 / 587,
  5639. bottom: 0.04
  5640. }
  5641. },
  5642. bent: {
  5643. height: math.unit(6 * 0.75, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Bent",
  5646. image: {
  5647. source: "./media/characters/blake/bent.svg",
  5648. extra: 592 / 544,
  5649. bottom: 0.035
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(8 + 1 / 6, "feet"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Big Backside",
  5661. height: math.unit(37, "feet")
  5662. },
  5663. {
  5664. name: "Subway Shredder",
  5665. height: math.unit(72, "feet")
  5666. },
  5667. {
  5668. name: "City Carver",
  5669. height: math.unit(1675, "feet")
  5670. },
  5671. {
  5672. name: "Tectonic Tweaker",
  5673. height: math.unit(2300, "miles")
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(180, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/guisetto/front.svg",
  5686. extra: 856 / 817,
  5687. bottom: 0.06
  5688. }
  5689. },
  5690. airborne: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(180, "lbs"),
  5693. name: "Airborne",
  5694. image: {
  5695. source: "./media/characters/guisetto/airborne.svg",
  5696. extra: 584 / 525
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(10 + 11 / 12, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Large",
  5708. height: math.unit(35, "feet")
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(475, "feet")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(180, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/luxor/front.svg",
  5725. extra: 2940 / 2152
  5726. }
  5727. },
  5728. back: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(180, "lbs"),
  5731. name: "Back",
  5732. image: {
  5733. source: "./media/characters/luxor/back.svg",
  5734. extra: 1083 / 960
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 5 / 6, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Lamp",
  5746. height: math.unit(50, "feet")
  5747. },
  5748. {
  5749. name: "Lämp",
  5750. height: math.unit(300, "feet")
  5751. },
  5752. {
  5753. name: "The sun is a lamp",
  5754. height: math.unit(250000, "miles")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(50, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/huoyan/front.svg"
  5767. }
  5768. },
  5769. side: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Side",
  5773. image: {
  5774. source: "./media/characters/huoyan/side.svg"
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Chef",
  5781. height: math.unit(9, "feet")
  5782. },
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(65, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(780, "feet")
  5791. },
  5792. {
  5793. name: "Flaming Mountain",
  5794. height: math.unit(4.8, "miles")
  5795. },
  5796. {
  5797. name: "Celestial",
  5798. height: math.unit(765000, "miles")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(5 + 3 / 4, "feet"),
  5807. weight: math.unit(120, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/tails/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 3 / 4, "feet"),
  5818. default: true
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(4, "feet"),
  5827. weight: math.unit(50, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/rainy/front.svg"
  5831. }
  5832. }
  5833. },
  5834. [
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(800, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(150, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rainier/front.svg"
  5851. }
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(2, "mm"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(8 + 4/12, "feet"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/andy-renard/front.svg",
  5870. extra: 1839/1726,
  5871. bottom: 134/1973
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(8 + 4/12, "feet"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/andy-renard/back.svg",
  5879. extra: 1838/1710,
  5880. bottom: 105/1943
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Tall",
  5887. height: math.unit(8 + 4/12, "feet")
  5888. },
  5889. {
  5890. name: "Mini Macro",
  5891. height: math.unit(15, "feet"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Macro",
  5896. height: math.unit(100, "feet")
  5897. },
  5898. {
  5899. name: "Mega Macro",
  5900. height: math.unit(1000, "feet")
  5901. },
  5902. {
  5903. name: "Giga Macro",
  5904. height: math.unit(10, "miles")
  5905. },
  5906. {
  5907. name: "God Macro",
  5908. height: math.unit(1, "multiverse")
  5909. },
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5914. {
  5915. front: {
  5916. height: math.unit(6, "feet"),
  5917. weight: math.unit(210, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/cimmaron/front-sfw.svg",
  5921. extra: 701 / 676,
  5922. bottom: 0.046
  5923. }
  5924. },
  5925. back: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(210, "lbs"),
  5928. name: "Back",
  5929. image: {
  5930. source: "./media/characters/cimmaron/back-sfw.svg",
  5931. extra: 701 / 676,
  5932. bottom: 0.046
  5933. }
  5934. },
  5935. frontNsfw: {
  5936. height: math.unit(6, "feet"),
  5937. weight: math.unit(210, "lbs"),
  5938. name: "Front (NSFW)",
  5939. image: {
  5940. source: "./media/characters/cimmaron/front-nsfw.svg",
  5941. extra: 701 / 676,
  5942. bottom: 0.046
  5943. }
  5944. },
  5945. backNsfw: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(210, "lbs"),
  5948. name: "Back (NSFW)",
  5949. image: {
  5950. source: "./media/characters/cimmaron/back-nsfw.svg",
  5951. extra: 701 / 676,
  5952. bottom: 0.046
  5953. }
  5954. },
  5955. dick: {
  5956. height: math.unit(1.714, "feet"),
  5957. name: "Dick",
  5958. image: {
  5959. source: "./media/characters/cimmaron/dick.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(6, "feet"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Macro Mayor",
  5971. height: math.unit(350, "meters")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(200, "lbs"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/akari/front.svg",
  5984. extra: 962 / 901,
  5985. bottom: 0.04
  5986. }
  5987. }
  5988. },
  5989. [
  5990. {
  5991. name: "Micro",
  5992. height: math.unit(5, "inches"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Normal",
  5997. height: math.unit(7, "feet")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(140, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cynosura/front.svg",
  6010. extra: 896 / 847
  6011. }
  6012. },
  6013. back: {
  6014. height: math.unit(6, "feet"),
  6015. weight: math.unit(140, "lbs"),
  6016. name: "Back",
  6017. image: {
  6018. source: "./media/characters/cynosura/back.svg",
  6019. extra: 1365 / 1250
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(4, "inches")
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(5.75, "feet"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "Tall",
  6035. height: math.unit(10, "feet")
  6036. },
  6037. {
  6038. name: "Big",
  6039. height: math.unit(20, "feet")
  6040. },
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(50, "feet")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(13 + 2/12, "feet"),
  6052. weight: math.unit(800, "kg"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/gin/front.svg",
  6056. extra: 1312/1191,
  6057. bottom: 45/1357
  6058. }
  6059. },
  6060. mouth: {
  6061. height: math.unit(2.39 * 1.8, "feet"),
  6062. name: "Mouth",
  6063. image: {
  6064. source: "./media/characters/gin/mouth.svg"
  6065. }
  6066. },
  6067. hand: {
  6068. height: math.unit(1.57 * 2.19, "feet"),
  6069. name: "Hand",
  6070. image: {
  6071. source: "./media/characters/gin/hand.svg"
  6072. }
  6073. },
  6074. foot: {
  6075. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6076. name: "Foot",
  6077. image: {
  6078. source: "./media/characters/gin/foot.svg"
  6079. }
  6080. },
  6081. sole: {
  6082. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6083. name: "Sole",
  6084. image: {
  6085. source: "./media/characters/gin/sole.svg"
  6086. }
  6087. },
  6088. },
  6089. [
  6090. {
  6091. name: "Very Small",
  6092. height: math.unit(13 + 2 / 12, "feet")
  6093. },
  6094. {
  6095. name: "Micro",
  6096. height: math.unit(600, "miles")
  6097. },
  6098. {
  6099. name: "Regular",
  6100. height: math.unit(20, "earths"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(2.2, "solarradii")
  6106. },
  6107. {
  6108. name: "Teramacro",
  6109. height: math.unit(1.2, "galaxies")
  6110. },
  6111. {
  6112. name: "Omegamacro",
  6113. height: math.unit(200, "universes")
  6114. },
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(6 + 1 / 6, "feet"),
  6122. weight: math.unit(178, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/guy/front.svg"
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6 + 1 / 6, "feet"),
  6133. default: true
  6134. },
  6135. {
  6136. name: "Large",
  6137. height: math.unit(25 + 7 / 12, "feet")
  6138. },
  6139. {
  6140. name: "Macro",
  6141. height: math.unit(60 + 9 / 12, "feet")
  6142. },
  6143. {
  6144. name: "Macro+",
  6145. height: math.unit(246, "feet")
  6146. },
  6147. {
  6148. name: "Macro++",
  6149. height: math.unit(878, "feet")
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6155. {
  6156. front: {
  6157. height: math.unit(9, "feet"),
  6158. weight: math.unit(800, "lbs"),
  6159. name: "Front",
  6160. image: {
  6161. source: "./media/characters/tiberius/front.svg",
  6162. extra: 2295 / 2071
  6163. }
  6164. },
  6165. back: {
  6166. height: math.unit(9, "feet"),
  6167. weight: math.unit(800, "lbs"),
  6168. name: "Back",
  6169. image: {
  6170. source: "./media/characters/tiberius/back.svg",
  6171. extra: 2373 / 2160
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(9, "feet"),
  6179. default: true
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6185. {
  6186. front: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(600, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/surgo/front.svg",
  6192. extra: 3591 / 2227
  6193. }
  6194. },
  6195. back: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(600, "lbs"),
  6198. name: "Back",
  6199. image: {
  6200. source: "./media/characters/surgo/back.svg",
  6201. extra: 3557 / 2228
  6202. }
  6203. },
  6204. laying: {
  6205. height: math.unit(6 * 0.85, "feet"),
  6206. weight: math.unit(600, "lbs"),
  6207. name: "Laying",
  6208. image: {
  6209. source: "./media/characters/surgo/laying.svg"
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(6, "feet"),
  6217. default: true
  6218. }
  6219. ]
  6220. ))
  6221. characterMakers.push(() => makeCharacter(
  6222. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6223. {
  6224. side: {
  6225. height: math.unit(6, "feet"),
  6226. weight: math.unit(150, "lbs"),
  6227. name: "Side",
  6228. image: {
  6229. source: "./media/characters/cibus/side.svg",
  6230. extra: 800 / 400
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(6, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/nibbles/front.svg"
  6251. }
  6252. },
  6253. side: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(240, "lbs"),
  6256. name: "Side",
  6257. image: {
  6258. source: "./media/characters/nibbles/side.svg"
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(9, "feet"),
  6266. default: true
  6267. }
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6272. {
  6273. side: {
  6274. height: math.unit(5 + 1 / 6, "feet"),
  6275. weight: math.unit(130, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/rikky/side.svg",
  6279. extra: 851 / 801
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5 + 1 / 6, "feet")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(152, "feet"),
  6291. default: true
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(7, "miles")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6301. {
  6302. side: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Side",
  6306. image: {
  6307. source: "./media/characters/malfressa/side.svg"
  6308. }
  6309. },
  6310. walking: {
  6311. height: math.unit(370, "cm"),
  6312. weight: math.unit(350, "lbs"),
  6313. name: "Walking",
  6314. image: {
  6315. source: "./media/characters/malfressa/walking.svg"
  6316. }
  6317. },
  6318. feral: {
  6319. height: math.unit(2500, "cm"),
  6320. weight: math.unit(100000, "lbs"),
  6321. name: "Feral",
  6322. image: {
  6323. source: "./media/characters/malfressa/feral.svg",
  6324. extra: 2108 / 837,
  6325. bottom: 0.02
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(370, "cm")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(300, "meters"),
  6337. default: true
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(60, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/jaro/front.svg",
  6350. extra: 845/817,
  6351. bottom: 45/890
  6352. }
  6353. },
  6354. back: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(60, "kg"),
  6357. name: "Back",
  6358. image: {
  6359. source: "./media/characters/jaro/back.svg",
  6360. extra: 847/817,
  6361. bottom: 34/881
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Micro",
  6368. height: math.unit(7, "inches")
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(5.5, "feet"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Minimacro",
  6377. height: math.unit(20, "feet")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(200, "meters")
  6382. }
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(195, "lb"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/rogue/front.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(90, "feet"),
  6401. default: true
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(5 + 8 / 12, "feet"),
  6410. weight: math.unit(140, "lb"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/piper/front.svg",
  6414. extra: 3948/3655,
  6415. bottom: 0/3948
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Micro",
  6422. height: math.unit(2, "inches")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5 + 8 / 12, "feet")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(250, "feet"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(7, "miles")
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(220, "lb"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/gemini/front.svg"
  6448. }
  6449. },
  6450. back: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Back",
  6454. image: {
  6455. source: "./media/characters/gemini/back.svg"
  6456. }
  6457. },
  6458. kneeling: {
  6459. height: math.unit(6 / 1.5, "feet"),
  6460. weight: math.unit(220, "lb"),
  6461. name: "Kneeling",
  6462. image: {
  6463. source: "./media/characters/gemini/kneeling.svg",
  6464. bottom: 0.02
  6465. }
  6466. },
  6467. },
  6468. [
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(300, "meters"),
  6472. default: true
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(6900, "meters")
  6477. },
  6478. ]
  6479. ))
  6480. characterMakers.push(() => makeCharacter(
  6481. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6482. {
  6483. anthro: {
  6484. height: math.unit(2.35, "meters"),
  6485. weight: math.unit(73, "kg"),
  6486. name: "Anthro",
  6487. image: {
  6488. source: "./media/characters/alicia/anthro.svg",
  6489. extra: 2571 / 2385,
  6490. bottom: 75 / 2648
  6491. }
  6492. },
  6493. paw: {
  6494. height: math.unit(1.32, "feet"),
  6495. name: "Paw",
  6496. image: {
  6497. source: "./media/characters/alicia/paw.svg"
  6498. }
  6499. },
  6500. feral: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(73, "kg"),
  6503. name: "Feral",
  6504. image: {
  6505. source: "./media/characters/alicia/feral.svg",
  6506. extra: 2123 / 1715,
  6507. bottom: 222 / 2349
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(2.35, "meters")
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(60, "meters"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(10000, "kilometers")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(7, "feet"),
  6532. weight: math.unit(250, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/archy/front.svg"
  6536. }
  6537. }
  6538. },
  6539. [
  6540. {
  6541. name: "Micro",
  6542. height: math.unit(1, "inch")
  6543. },
  6544. {
  6545. name: "Shorty",
  6546. height: math.unit(5, "feet")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(7, "feet")
  6551. },
  6552. {
  6553. name: "Macro",
  6554. height: math.unit(600, "meters"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Megamacro",
  6559. height: math.unit(1, "mile")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(1.65, "meters"),
  6568. weight: math.unit(74, "kg"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/berri/front.svg",
  6572. extra: 857 / 837,
  6573. bottom: 18 / 877
  6574. }
  6575. },
  6576. bum: {
  6577. height: math.unit(1.46, "feet"),
  6578. name: "Bum",
  6579. image: {
  6580. source: "./media/characters/berri/bum.svg"
  6581. }
  6582. },
  6583. mouth: {
  6584. height: math.unit(0.44, "feet"),
  6585. name: "Mouth",
  6586. image: {
  6587. source: "./media/characters/berri/mouth.svg"
  6588. }
  6589. },
  6590. paw: {
  6591. height: math.unit(0.826, "feet"),
  6592. name: "Paw",
  6593. image: {
  6594. source: "./media/characters/berri/paw.svg"
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(1.65, "meters")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(60, "m"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Megamacro",
  6610. height: math.unit(9.213, "km")
  6611. },
  6612. {
  6613. name: "Planet Eater",
  6614. height: math.unit(489, "megameters")
  6615. },
  6616. {
  6617. name: "Teramacro",
  6618. height: math.unit(2471635000000, "meters")
  6619. },
  6620. {
  6621. name: "Examacro",
  6622. height: math.unit(8.0624e+26, "meters")
  6623. }
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(1.72, "meters"),
  6631. weight: math.unit(68, "kg"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/lexi/front.svg"
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Very Smol",
  6641. height: math.unit(10, "mm")
  6642. },
  6643. {
  6644. name: "Micro",
  6645. height: math.unit(6.8, "cm"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.72, "m")
  6651. }
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(1.69, "meters"),
  6659. weight: math.unit(68, "kg"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/martin/front.svg",
  6663. extra: 596 / 581
  6664. }
  6665. }
  6666. },
  6667. [
  6668. {
  6669. name: "Micro",
  6670. height: math.unit(6.85, "cm"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(1.69, "m")
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.69, "meters"),
  6684. weight: math.unit(68, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/juno/front.svg"
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(7, "cm")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.89, "m")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(353, "meters"),
  6703. default: true
  6704. }
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(1.93, "meters"),
  6712. weight: math.unit(83, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/samantha/front.svg"
  6716. }
  6717. },
  6718. frontClothed: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Front (Clothed)",
  6722. image: {
  6723. source: "./media/characters/samantha/front-clothed.svg"
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(1.93, "meters"),
  6728. weight: math.unit(83, "kg"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/samantha/back.svg"
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(1.93, "m")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(74, "meters"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Macro+",
  6747. height: math.unit(223, "meters"),
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(8381, "meters"),
  6752. },
  6753. {
  6754. name: "Megamacro+",
  6755. height: math.unit(12000, "kilometers")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.92, "meters"),
  6764. weight: math.unit(80, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/dr-clay/front.svg"
  6768. }
  6769. },
  6770. frontClothed: {
  6771. height: math.unit(1.92, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front (Clothed)",
  6774. image: {
  6775. source: "./media/characters/dr-clay/front-clothed.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(1.92, "m")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(214, "meters"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Macro+",
  6791. height: math.unit(12.237, "meters"),
  6792. },
  6793. {
  6794. name: "Megamacro",
  6795. height: math.unit(557, "megameters"),
  6796. },
  6797. {
  6798. name: "Unimaginable",
  6799. height: math.unit(120e9, "lightyears")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(2, "meters"),
  6808. weight: math.unit(80, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Teramacro",
  6818. height: math.unit(500000, "lightyears"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6825. {
  6826. crux: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(150, "kg"),
  6829. name: "Crux",
  6830. image: {
  6831. source: "./media/characters/vemus/crux.svg",
  6832. extra: 1074/936,
  6833. bottom: 23/1097
  6834. }
  6835. },
  6836. skunkTanuki: {
  6837. height: math.unit(2, "meters"),
  6838. weight: math.unit(150, "kg"),
  6839. name: "Skunk-Tanuki",
  6840. image: {
  6841. source: "./media/characters/vemus/skunk-tanuki.svg",
  6842. extra: 926/893,
  6843. bottom: 20/946
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(3.75, "meters"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Big",
  6855. height: math.unit(8, "meters")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(100, "meters")
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(1500, "meters")
  6864. },
  6865. {
  6866. name: "Stellar",
  6867. height: math.unit(14e8, "meters")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(2, "meters"),
  6876. weight: math.unit(70, "kg"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/beherit/front.svg",
  6880. extra: 1234/1109,
  6881. bottom: 55/1289
  6882. }
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(6, "feet")
  6889. },
  6890. {
  6891. name: "Lorg",
  6892. height: math.unit(25, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Lorger",
  6897. height: math.unit(75, "feet")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(200, "meters")
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(2, "meters"),
  6910. weight: math.unit(150, "kg"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/everett/front.svg",
  6914. extra: 1017/866,
  6915. bottom: 86/1103
  6916. }
  6917. },
  6918. paw: {
  6919. height: math.unit(2 / 3.6, "meters"),
  6920. name: "Paw",
  6921. image: {
  6922. source: "./media/characters/everett/paw.svg"
  6923. }
  6924. },
  6925. },
  6926. [
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(15, "feet"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Lorg",
  6934. height: math.unit(70, "feet"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Lorger",
  6939. height: math.unit(250, "feet")
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(500, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(86, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rose/front.svg",
  6956. extra: 1785/1636,
  6957. bottom: 30/1815
  6958. }
  6959. },
  6960. frontSporty: {
  6961. height: math.unit(2, "meters"),
  6962. weight: math.unit(86, "kg"),
  6963. name: "Front (Sporty)",
  6964. image: {
  6965. source: "./media/characters/rose/front-sporty.svg",
  6966. extra: 350/335,
  6967. bottom: 10/360
  6968. }
  6969. },
  6970. frontAlt: {
  6971. height: math.unit(1.6, "meters"),
  6972. weight: math.unit(86, "kg"),
  6973. name: "Front (Alt)",
  6974. image: {
  6975. source: "./media/characters/rose/front-alt.svg",
  6976. extra: 299/283,
  6977. bottom: 3/302
  6978. }
  6979. },
  6980. plush: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(86/3, "kg"),
  6983. name: "Plush",
  6984. image: {
  6985. source: "./media/characters/rose/plush.svg",
  6986. extra: 361/337,
  6987. bottom: 11/372
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "True Micro",
  6994. height: math.unit(9, "cm")
  6995. },
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(16, "cm")
  6999. },
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(1.85, "meters"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Mini-Macro",
  7007. height: math.unit(5, "meters")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(15, "meters")
  7012. },
  7013. {
  7014. name: "True Macro",
  7015. height: math.unit(40, "meters")
  7016. },
  7017. {
  7018. name: "City Scale",
  7019. height: math.unit(1, "km")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(350, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/regal/front.svg"
  7032. }
  7033. },
  7034. back: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(350, "lbs"),
  7037. name: "Back",
  7038. image: {
  7039. source: "./media/characters/regal/back.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(350, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(4 + 11 / 12, "feet"),
  7056. weight: math.unit(100, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/opal/front.svg"
  7060. }
  7061. },
  7062. frontAlt: {
  7063. height: math.unit(4 + 11 / 12, "feet"),
  7064. weight: math.unit(100, "lbs"),
  7065. name: "Front (Alt)",
  7066. image: {
  7067. source: "./media/characters/opal/front-alt.svg"
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Small",
  7074. height: math.unit(4 + 11 / 12, "feet")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(20, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(120, "feet")
  7084. },
  7085. {
  7086. name: "Megamacro",
  7087. height: math.unit(80, "miles")
  7088. },
  7089. {
  7090. name: "True Size",
  7091. height: math.unit(100000, "lightyears")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(200, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/vector-wuff/front.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(2.8, "meters")
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(450, "meters"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Megamacro",
  7119. height: math.unit(15, "kilometers")
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(256, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/dannik/front.svg"
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(69.57, "meters"),
  7139. default: true
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(120, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/azura-saharah/front.svg"
  7152. }
  7153. },
  7154. back: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(120, "lbs"),
  7157. name: "Back",
  7158. image: {
  7159. source: "./media/characters/azura-saharah/back.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Macro",
  7166. height: math.unit(100, "feet"),
  7167. default: true
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7173. {
  7174. side: {
  7175. height: math.unit(5 + 4 / 12, "feet"),
  7176. weight: math.unit(163, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/kennedy/side.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Standard Doggo",
  7186. height: math.unit(5 + 4 / 12, "feet")
  7187. },
  7188. {
  7189. name: "Big Doggo",
  7190. height: math.unit(25 + 3 / 12, "feet"),
  7191. default: true
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(5 + 5/12, "feet"),
  7200. weight: math.unit(100, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/odios-de-lunar/front.svg",
  7204. extra: 1468/1323,
  7205. bottom: 22/1490
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Micro",
  7212. height: math.unit(3, "inches")
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(5.5, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(100, "feet")
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7227. {
  7228. back: {
  7229. height: math.unit(6, "feet"),
  7230. weight: math.unit(220, "lbs"),
  7231. name: "Back",
  7232. image: {
  7233. source: "./media/characters/mandake/back.svg"
  7234. }
  7235. }
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(7, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(78, "feet")
  7246. },
  7247. {
  7248. name: "Macro+",
  7249. height: math.unit(300, "meters")
  7250. },
  7251. {
  7252. name: "Macro++",
  7253. height: math.unit(2400, "feet")
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(5167, "meters")
  7258. },
  7259. {
  7260. name: "Gigamacro",
  7261. height: math.unit(41769, "miles")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(120, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/yozey/front.svg"
  7274. }
  7275. },
  7276. frontAlt: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Front (Alt)",
  7280. image: {
  7281. source: "./media/characters/yozey/front-alt.svg"
  7282. }
  7283. },
  7284. side: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Side",
  7288. image: {
  7289. source: "./media/characters/yozey/side.svg"
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Micro",
  7296. height: math.unit(3, "inches"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(6, "feet")
  7302. }
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(103, "lbs"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/valeska-voss/front.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Mini-Sized Sub",
  7320. height: math.unit(3.1, "inches")
  7321. },
  7322. {
  7323. name: "Mid-Sized Sub",
  7324. height: math.unit(6.2, "inches")
  7325. },
  7326. {
  7327. name: "Full-Sized Sub",
  7328. height: math.unit(9.3, "inches")
  7329. },
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(5 + 2 / 12, "foot"),
  7333. default: true
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(160, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/gene-zeta/front.svg",
  7346. extra: 3006 / 2826,
  7347. bottom: 182 / 3188
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(6, "inches")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5 + 11 / 12, "foot"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(140, "feet")
  7364. },
  7365. {
  7366. name: "Supercharged",
  7367. height: math.unit(2500, "feet")
  7368. },
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(350, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/razinox/front.svg",
  7380. extra: 1686 / 1548,
  7381. bottom: 28.2 / 1868
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(350, "lbs"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/razinox/back.svg",
  7390. extra: 1660 / 1590,
  7391. bottom: 15 / 1665
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Normal",
  7398. height: math.unit(10 + 8 / 12, "foot")
  7399. },
  7400. {
  7401. name: "Minimacro",
  7402. height: math.unit(15, "foot")
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(60, "foot"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Megamacro",
  7411. height: math.unit(5, "miles")
  7412. },
  7413. {
  7414. name: "Gigamacro",
  7415. height: math.unit(6000, "miles")
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(6, "feet"),
  7424. weight: math.unit(150, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/cobalt/front.svg"
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(8 + 1 / 12, "foot")
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(111, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Supracosmic",
  7443. height: math.unit(1e42, "feet")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(140, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/amanda/front.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Micro",
  7462. height: math.unit(5, "inches"),
  7463. default: true
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(2.75, "meters"),
  7472. weight: math.unit(1200, "lb"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/teal/front.svg",
  7476. extra: 2463 / 2320,
  7477. bottom: 166 / 2629
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(2.75, "meters"),
  7482. weight: math.unit(1200, "lb"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/teal/back.svg",
  7486. extra: 2580 / 2489,
  7487. bottom: 151 / 2731
  7488. }
  7489. },
  7490. sitting: {
  7491. height: math.unit(1.9, "meters"),
  7492. weight: math.unit(1200, "lb"),
  7493. name: "Sitting",
  7494. image: {
  7495. source: "./media/characters/teal/sitting.svg",
  7496. extra: 623 / 590,
  7497. bottom: 121 / 744
  7498. }
  7499. },
  7500. standing: {
  7501. height: math.unit(2.75, "meters"),
  7502. weight: math.unit(1200, "lb"),
  7503. name: "Standing",
  7504. image: {
  7505. source: "./media/characters/teal/standing.svg",
  7506. extra: 923 / 893,
  7507. bottom: 60 / 983
  7508. }
  7509. },
  7510. stretching: {
  7511. height: math.unit(3.65, "meters"),
  7512. weight: math.unit(1200, "lb"),
  7513. name: "Stretching",
  7514. image: {
  7515. source: "./media/characters/teal/stretching.svg",
  7516. extra: 1276 / 1244,
  7517. bottom: 0 / 1276
  7518. }
  7519. },
  7520. legged: {
  7521. height: math.unit(1.3, "meters"),
  7522. weight: math.unit(100, "lb"),
  7523. name: "Legged",
  7524. image: {
  7525. source: "./media/characters/teal/legged.svg",
  7526. extra: 462 / 437,
  7527. bottom: 24 / 486
  7528. }
  7529. },
  7530. naga: {
  7531. height: math.unit(5.4, "meters"),
  7532. weight: math.unit(4000, "lb"),
  7533. name: "Naga",
  7534. image: {
  7535. source: "./media/characters/teal/naga.svg",
  7536. extra: 1902 / 1858,
  7537. bottom: 0 / 1902
  7538. }
  7539. },
  7540. hand: {
  7541. height: math.unit(0.52, "meters"),
  7542. name: "Hand",
  7543. image: {
  7544. source: "./media/characters/teal/hand.svg"
  7545. }
  7546. },
  7547. maw: {
  7548. height: math.unit(0.43, "meters"),
  7549. name: "Maw",
  7550. image: {
  7551. source: "./media/characters/teal/maw.svg"
  7552. }
  7553. },
  7554. slit: {
  7555. height: math.unit(0.25, "meters"),
  7556. name: "Slit",
  7557. image: {
  7558. source: "./media/characters/teal/slit.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(2.75, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(300, "feet")
  7571. },
  7572. {
  7573. name: "Macro+",
  7574. height: math.unit(2000, "feet")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7580. {
  7581. frontCat: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(180, "lbs"),
  7584. name: "Front (Cat)",
  7585. image: {
  7586. source: "./media/characters/ravin-amulet/front-cat.svg"
  7587. }
  7588. },
  7589. frontCatAlt: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(180, "lbs"),
  7592. name: "Front (Alt, Cat)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7595. }
  7596. },
  7597. frontWerewolf: {
  7598. height: math.unit(6 * 1.2, "feet"),
  7599. weight: math.unit(225, "lbs"),
  7600. name: "Front (Werewolf)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7603. }
  7604. },
  7605. backWerewolf: {
  7606. height: math.unit(6 * 1.2, "feet"),
  7607. weight: math.unit(225, "lbs"),
  7608. name: "Back (Werewolf)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Nano",
  7617. height: math.unit(1, "micrometer")
  7618. },
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(1, "inch")
  7622. },
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(6, "feet"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Macro",
  7630. height: math.unit(60, "feet")
  7631. }
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(165, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/fluoresce/front.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(6, "cm")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(5 + 7 / 12, "feet"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(56, "feet")
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(1.9, "miles")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(9 + 6 / 12, "feet"),
  7671. weight: math.unit(523, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/aurora/side.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(9 + 6 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(96, "feet"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Macro+",
  7690. height: math.unit(243, "feet")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(194, "cm"),
  7699. weight: math.unit(90, "kg"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/ranek/front.svg"
  7703. }
  7704. },
  7705. side: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Side",
  7709. image: {
  7710. source: "./media/characters/ranek/side.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(194, "cm"),
  7715. weight: math.unit(90, "kg"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/ranek/back.svg"
  7719. }
  7720. },
  7721. feral: {
  7722. height: math.unit(30, "cm"),
  7723. weight: math.unit(1.6, "lbs"),
  7724. name: "Feral",
  7725. image: {
  7726. source: "./media/characters/ranek/feral.svg"
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(194, "cm"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(100, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(5 + 6 / 12, "feet"),
  7747. weight: math.unit(153, "lbs"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/andrew-cooper/front.svg"
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Nano",
  7757. height: math.unit(1, "mm")
  7758. },
  7759. {
  7760. name: "Micro",
  7761. height: math.unit(2, "inches")
  7762. },
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(5 + 6 / 12, "feet"),
  7766. default: true
  7767. }
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(6, "feet"),
  7775. weight: math.unit(180, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/akane-sato/front.svg",
  7779. extra: 1219 / 1140
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(180, "lbs"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/akane-sato/back.svg",
  7788. extra: 1219 / 1170
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(2.5, "meters")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(250, "meters"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(25, "km")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(65, "kg"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/rook/front.svg",
  7817. extra: 960 / 950
  7818. }
  7819. }
  7820. },
  7821. [
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(8.8, "feet")
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(88, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Megamacro",
  7833. height: math.unit(8, "miles")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(12 + 2 / 12, "feet"),
  7842. weight: math.unit(808, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/prodigy/front.svg"
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(12 + 2 / 12, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(143, "feet")
  7858. },
  7859. {
  7860. name: "Macro+",
  7861. height: math.unit(400, "feet")
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(225, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/daniel/front.svg"
  7874. }
  7875. },
  7876. leaning: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(225, "lbs"),
  7879. name: "Leaning",
  7880. image: {
  7881. source: "./media/characters/daniel/leaning.svg"
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(1000, "feet"),
  7889. default: true
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(88, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/chiros/front.svg",
  7902. extra: 306 / 226
  7903. }
  7904. },
  7905. side: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(88, "lbs"),
  7908. name: "Side",
  7909. image: {
  7910. source: "./media/characters/chiros/side.svg",
  7911. extra: 306 / 226
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(6, "cm"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(100, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/selka/front.svg",
  7932. extra: 947 / 887
  7933. }
  7934. }
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(5, "cm"),
  7940. default: true
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(8 + 3 / 12, "feet"),
  7949. weight: math.unit(424, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/verin/front.svg",
  7953. extra: 1845 / 1550
  7954. }
  7955. },
  7956. frontArmored: {
  7957. height: math.unit(8 + 3 / 12, "feet"),
  7958. weight: math.unit(424, "lbs"),
  7959. name: "Front (Armored)",
  7960. image: {
  7961. source: "./media/characters/verin/front-armor.svg",
  7962. extra: 1845 / 1550,
  7963. bottom: 0.01
  7964. }
  7965. },
  7966. back: {
  7967. height: math.unit(8 + 3 / 12, "feet"),
  7968. weight: math.unit(424, "lbs"),
  7969. name: "Back",
  7970. image: {
  7971. source: "./media/characters/verin/back.svg",
  7972. bottom: 0.1,
  7973. extra: 1
  7974. }
  7975. },
  7976. foot: {
  7977. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7978. name: "Foot",
  7979. image: {
  7980. source: "./media/characters/verin/foot.svg"
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(8 + 3 / 12, "feet")
  7988. },
  7989. {
  7990. name: "Minimacro",
  7991. height: math.unit(21, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(626, "feet")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(2.718, "meters"),
  8005. weight: math.unit(150, "lbs"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/sovrim-terraquian/front.svg",
  8009. extra: 1752/1689,
  8010. bottom: 36/1788
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(2.718, "meters"),
  8015. weight: math.unit(150, "lbs"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/sovrim-terraquian/back.svg",
  8019. extra: 1698/1657,
  8020. bottom: 58/1756
  8021. }
  8022. },
  8023. tongue: {
  8024. height: math.unit(2.865, "feet"),
  8025. name: "Tongue",
  8026. image: {
  8027. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8028. }
  8029. },
  8030. hand: {
  8031. height: math.unit(1.61, "feet"),
  8032. name: "Hand",
  8033. image: {
  8034. source: "./media/characters/sovrim-terraquian/hand.svg"
  8035. }
  8036. },
  8037. foot: {
  8038. height: math.unit(1.05, "feet"),
  8039. name: "Foot",
  8040. image: {
  8041. source: "./media/characters/sovrim-terraquian/foot.svg"
  8042. }
  8043. },
  8044. footAlt: {
  8045. height: math.unit(0.88, "feet"),
  8046. name: "Foot (Alt)",
  8047. image: {
  8048. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Micro",
  8055. height: math.unit(2, "inches")
  8056. },
  8057. {
  8058. name: "Small",
  8059. height: math.unit(1, "meter")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(Math.E, "meters"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(20, "meters")
  8069. },
  8070. {
  8071. name: "Macro+",
  8072. height: math.unit(400, "meters")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(7, "feet"),
  8081. weight: math.unit(489, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/reece-silvermane/front.svg",
  8085. bottom: 0.02,
  8086. extra: 1
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(1.5, "miles"),
  8094. default: true
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(6, "feet"),
  8103. weight: math.unit(78, "kg"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/kane/front.svg",
  8107. extra: 978 / 899
  8108. }
  8109. },
  8110. },
  8111. [
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(2.1, "m"),
  8115. },
  8116. {
  8117. name: "Macro",
  8118. height: math.unit(1, "km"),
  8119. default: true
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8125. {
  8126. front: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(200, "kg"),
  8129. name: "Front",
  8130. image: {
  8131. source: "./media/characters/tegon/front.svg",
  8132. bottom: 0.01,
  8133. extra: 1
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Micro",
  8140. height: math.unit(1, "inch")
  8141. },
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(6 + 3 / 12, "feet"),
  8145. default: true
  8146. },
  8147. {
  8148. name: "Macro",
  8149. height: math.unit(300, "feet")
  8150. },
  8151. {
  8152. name: "Megamacro",
  8153. height: math.unit(69, "miles")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8159. {
  8160. side: {
  8161. height: math.unit(6, "feet"),
  8162. weight: math.unit(2304, "lbs"),
  8163. name: "Side",
  8164. image: {
  8165. source: "./media/characters/arcturax/side.svg",
  8166. extra: 790 / 376,
  8167. bottom: 0.01
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(2, "inch")
  8175. },
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(6, "feet")
  8179. },
  8180. {
  8181. name: "Macro",
  8182. height: math.unit(39, "feet"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Megamacro",
  8187. height: math.unit(7, "miles")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(50, "lbs"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/sentri/front.svg",
  8200. extra: 1750 / 1570,
  8201. bottom: 0.025
  8202. }
  8203. },
  8204. frontAlt: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(50, "lbs"),
  8207. name: "Front (Alt)",
  8208. image: {
  8209. source: "./media/characters/sentri/front-alt.svg",
  8210. extra: 1750 / 1570,
  8211. bottom: 0.025
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(15, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(2500, "feet")
  8224. }
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(5 + 8 / 12, "feet"),
  8232. weight: math.unit(130, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/corvin/front.svg",
  8236. extra: 1803 / 1629
  8237. }
  8238. },
  8239. frontShirt: {
  8240. height: math.unit(5 + 8 / 12, "feet"),
  8241. weight: math.unit(130, "lbs"),
  8242. name: "Front (Shirt)",
  8243. image: {
  8244. source: "./media/characters/corvin/front-shirt.svg",
  8245. extra: 1803 / 1629
  8246. }
  8247. },
  8248. frontPoncho: {
  8249. height: math.unit(5 + 8 / 12, "feet"),
  8250. weight: math.unit(130, "lbs"),
  8251. name: "Front (Poncho)",
  8252. image: {
  8253. source: "./media/characters/corvin/front-poncho.svg",
  8254. extra: 1803 / 1629
  8255. }
  8256. },
  8257. side: {
  8258. height: math.unit(5 + 8 / 12, "feet"),
  8259. weight: math.unit(130, "lbs"),
  8260. name: "Side",
  8261. image: {
  8262. source: "./media/characters/corvin/side.svg",
  8263. extra: 1012 / 945
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(5 + 8 / 12, "feet"),
  8268. weight: math.unit(130, "lbs"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/corvin/back.svg",
  8272. extra: 1803 / 1629
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(3, "inches")
  8280. },
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(5 + 8 / 12, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(300, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(500, "miles")
  8293. }
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(135, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/q/front.svg",
  8305. extra: 854 / 752,
  8306. bottom: 0.005
  8307. }
  8308. },
  8309. back: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(130, "lbs"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/q/back.svg",
  8315. extra: 854 / 752
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Macro",
  8322. height: math.unit(90, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Extra Macro",
  8327. height: math.unit(300, "feet"),
  8328. },
  8329. {
  8330. name: "BIG WALF",
  8331. height: math.unit(750, "feet"),
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(150, "lbs"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/carley/front.svg",
  8344. extra: 3927 / 3540,
  8345. bottom: 29.2 / 735
  8346. }
  8347. }
  8348. },
  8349. [
  8350. {
  8351. name: "Normal",
  8352. height: math.unit(6 + 3 / 12, "feet")
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(185, "feet"),
  8357. default: true
  8358. },
  8359. {
  8360. name: "Megamacro",
  8361. height: math.unit(8, "miles"),
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(3, "feet"),
  8370. weight: math.unit(28, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/citrine/front.svg"
  8374. }
  8375. }
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(3, "feet"),
  8381. default: true
  8382. }
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8387. {
  8388. front: {
  8389. height: math.unit(14, "feet"),
  8390. weight: math.unit(1450, "kg"),
  8391. capacity: math.unit(15, "people"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/aura-starwind/front.svg",
  8395. extra: 1440/1327,
  8396. bottom: 11/1451
  8397. }
  8398. },
  8399. side: {
  8400. height: math.unit(14, "feet"),
  8401. weight: math.unit(1450, "kg"),
  8402. capacity: math.unit(15, "people"),
  8403. name: "Side",
  8404. image: {
  8405. source: "./media/characters/aura-starwind/side.svg",
  8406. extra: 1654 / 1497
  8407. }
  8408. },
  8409. taur: {
  8410. height: math.unit(18, "feet"),
  8411. weight: math.unit(5500, "kg"),
  8412. capacity: math.unit(50, "people"),
  8413. name: "Taur",
  8414. image: {
  8415. source: "./media/characters/aura-starwind/taur.svg",
  8416. extra: 1760 / 1650
  8417. }
  8418. },
  8419. feral: {
  8420. height: math.unit(46, "feet"),
  8421. weight: math.unit(25000, "kg"),
  8422. capacity: math.unit(120, "people"),
  8423. name: "Feral",
  8424. image: {
  8425. source: "./media/characters/aura-starwind/feral.svg"
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(14, "feet"),
  8433. default: true
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(50, "meters")
  8438. },
  8439. {
  8440. name: "Megamacro",
  8441. height: math.unit(5000, "meters")
  8442. },
  8443. {
  8444. name: "Gigamacro",
  8445. height: math.unit(100000, "kilometers")
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(2 + 7 / 12, "feet"),
  8454. weight: math.unit(32, "lbs"),
  8455. name: "Front",
  8456. image: {
  8457. source: "./media/characters/rivet/front.svg",
  8458. extra: 1716 / 1658,
  8459. bottom: 0.03
  8460. }
  8461. },
  8462. foot: {
  8463. height: math.unit(0.551, "feet"),
  8464. name: "Rivet's Foot",
  8465. image: {
  8466. source: "./media/characters/rivet/foot.svg"
  8467. },
  8468. rename: true
  8469. }
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(1.5, "inches"),
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(2 + 7 / 12, "feet"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(85, "feet")
  8484. },
  8485. {
  8486. name: "Megamacro",
  8487. height: math.unit(2.2, "km")
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(5 + 9 / 12, "feet"),
  8496. weight: math.unit(150, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/coffee/front.svg",
  8500. extra: 3666 / 3032,
  8501. bottom: 0.04
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(1.29, "feet"),
  8506. name: "Foot",
  8507. image: {
  8508. source: "./media/characters/coffee/foot.svg"
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Micro",
  8515. height: math.unit(2, "inches"),
  8516. },
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(5 + 9 / 12, "feet"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Macro",
  8524. height: math.unit(800, "feet")
  8525. },
  8526. {
  8527. name: "Megamacro",
  8528. height: math.unit(25, "miles")
  8529. }
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(200, "lbs"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/chari-gal/front.svg",
  8541. extra: 1568 / 1385,
  8542. bottom: 0.047
  8543. }
  8544. },
  8545. gigantamax: {
  8546. height: math.unit(6 * 16, "feet"),
  8547. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8548. name: "Gigantamax",
  8549. image: {
  8550. source: "./media/characters/chari-gal/gigantamax.svg",
  8551. extra: 1124 / 888,
  8552. bottom: 0.03
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(5 + 7 / 12, "feet")
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(200, "feet"),
  8564. default: true
  8565. }
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(150, "lbs"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/nova/front.svg",
  8577. extra: 5000 / 4722,
  8578. bottom: 0.02
  8579. }
  8580. }
  8581. },
  8582. [
  8583. {
  8584. name: "Micro-",
  8585. height: math.unit(0.8, "inches")
  8586. },
  8587. {
  8588. name: "Micro",
  8589. height: math.unit(2, "inches"),
  8590. default: true
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(3 + 1 / 12, "feet"),
  8599. weight: math.unit(21.7, "lbs"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/argent/front.svg",
  8603. extra: 1471 / 1331,
  8604. bottom: 100.8 / 1575.5
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Micro",
  8611. height: math.unit(2, "inches")
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(3 + 1 / 12, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(120, "feet")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8626. {
  8627. lamp: {
  8628. height: math.unit(7 * 1559 / 989, "feet"),
  8629. name: "Magic Lamp",
  8630. image: {
  8631. source: "./media/characters/mira-al-cul/lamp.svg",
  8632. extra: 1617 / 1559
  8633. }
  8634. },
  8635. front: {
  8636. height: math.unit(7, "feet"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/mira-al-cul/front.svg",
  8640. extra: 1044 / 990
  8641. }
  8642. },
  8643. },
  8644. [
  8645. {
  8646. name: "Heavily Restricted",
  8647. height: math.unit(7 * 1559 / 989, "feet")
  8648. },
  8649. {
  8650. name: "Freshly Freed",
  8651. height: math.unit(50 * 1559 / 989, "feet")
  8652. },
  8653. {
  8654. name: "World Encompassing",
  8655. height: math.unit(10000 * 1559 / 989, "miles")
  8656. },
  8657. {
  8658. name: "Galactic",
  8659. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8660. },
  8661. {
  8662. name: "Palmed Universe",
  8663. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Multiversal Matriarch",
  8668. height: math.unit(8.87e10, "yottameters")
  8669. },
  8670. {
  8671. name: "Void Mother",
  8672. height: math.unit(3.14e110, "yottaparsecs")
  8673. },
  8674. {
  8675. name: "Toying with Transcendence",
  8676. height: math.unit(1e307, "meters")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8682. {
  8683. front: {
  8684. height: math.unit(17 + 1 / 12, "feet"),
  8685. weight: math.unit(476.2 * 5, "lbs"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/kuro-shi-uchū/front.svg",
  8689. extra: 2329 / 1835,
  8690. bottom: 0.02
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(2, "inches")
  8698. },
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(12, "meters")
  8702. },
  8703. {
  8704. name: "Planetary",
  8705. height: math.unit(0.00929, "AU"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Universal",
  8710. height: math.unit(20, "gigaparsecs")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(5 + 2 / 12, "feet"),
  8719. weight: math.unit(120, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/katherine/front.svg",
  8723. extra: 2075 / 1969
  8724. }
  8725. },
  8726. dress: {
  8727. height: math.unit(5 + 2 / 12, "feet"),
  8728. weight: math.unit(120, "lbs"),
  8729. name: "Dress",
  8730. image: {
  8731. source: "./media/characters/katherine/dress.svg",
  8732. extra: 2258 / 2064
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Micro",
  8739. height: math.unit(1, "inches"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(5 + 2 / 12, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(100, "meters")
  8749. },
  8750. {
  8751. name: "Megamacro",
  8752. height: math.unit(80, "miles")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(7 + 8 / 12, "feet"),
  8761. weight: math.unit(250, "lbs"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/yevis/front.svg",
  8765. extra: 1938 / 1755
  8766. }
  8767. }
  8768. },
  8769. [
  8770. {
  8771. name: "Mortal",
  8772. height: math.unit(7 + 8 / 12, "feet")
  8773. },
  8774. {
  8775. name: "Battle",
  8776. height: math.unit(25 + 11 / 12, "feet")
  8777. },
  8778. {
  8779. name: "Wrath",
  8780. height: math.unit(1654 + 11 / 12, "feet")
  8781. },
  8782. {
  8783. name: "Planet Destroyer",
  8784. height: math.unit(12000, "miles")
  8785. },
  8786. {
  8787. name: "Galaxy Conqueror",
  8788. height: math.unit(1.45, "zettameters"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Universal War",
  8793. height: math.unit(184, "gigaparsecs")
  8794. },
  8795. {
  8796. name: "Eternity War",
  8797. height: math.unit(1.98e55, "yottaparsecs")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(5 + 8 / 12, "feet"),
  8806. weight: math.unit(63, "kg"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/xavier/front.svg",
  8810. extra: 944 / 883
  8811. }
  8812. },
  8813. frontStretch: {
  8814. height: math.unit(5 + 8 / 12, "feet"),
  8815. weight: math.unit(63, "kg"),
  8816. name: "Stretching",
  8817. image: {
  8818. source: "./media/characters/xavier/front-stretch.svg",
  8819. extra: 962 / 820
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 8 / 12, "feet")
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(100, "meters"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "McLargeHuge",
  8835. height: math.unit(10, "miles")
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(5 + 5 / 12, "feet"),
  8844. weight: math.unit(150, "lb"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/joshii/front.svg",
  8848. extra: 765 / 653,
  8849. bottom: 51 / 816
  8850. }
  8851. },
  8852. foot: {
  8853. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8854. name: "Foot",
  8855. image: {
  8856. source: "./media/characters/joshii/foot.svg"
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Micro",
  8863. height: math.unit(2, "inches"),
  8864. default: true
  8865. },
  8866. {
  8867. name: "Normal",
  8868. height: math.unit(5 + 5 / 12, "feet")
  8869. },
  8870. {
  8871. name: "Macro",
  8872. height: math.unit(785, "feet")
  8873. },
  8874. {
  8875. name: "Megamacro",
  8876. height: math.unit(24.5, "miles")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(150, "lb"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/goddess-elizabeth/front.svg",
  8889. extra: 1800 / 1525,
  8890. bottom: 0.005
  8891. }
  8892. },
  8893. foot: {
  8894. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8895. name: "Foot",
  8896. image: {
  8897. source: "./media/characters/goddess-elizabeth/foot.svg"
  8898. }
  8899. },
  8900. mouth: {
  8901. height: math.unit(6, "feet"),
  8902. name: "Mouth",
  8903. image: {
  8904. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(12, "feet")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(80, "miles"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(15000, "parsecs")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(5 + 9 / 12, "feet"),
  8929. weight: math.unit(144, "lb"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/kara/front.svg"
  8933. }
  8934. },
  8935. feet: {
  8936. height: math.unit(6 / 6.765, "feet"),
  8937. name: "Kara's Feet",
  8938. rename: true,
  8939. image: {
  8940. source: "./media/characters/kara/feet.svg"
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(5 + 9 / 12, "feet")
  8948. },
  8949. {
  8950. name: "Macro",
  8951. height: math.unit(174, "feet"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(18, "feet"),
  8961. weight: math.unit(4050, "lb"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/tyrone/front.svg",
  8965. extra: 2405 / 2270,
  8966. bottom: 182 / 2587
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(18, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet")
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(15, "km")
  8983. },
  8984. {
  8985. name: "Gigamacro",
  8986. height: math.unit(500, "km")
  8987. },
  8988. {
  8989. name: "Teramacro",
  8990. height: math.unit(0.5, "gigameters")
  8991. },
  8992. {
  8993. name: "Omnimacro",
  8994. height: math.unit(1e252, "yottauniverse")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(7 + 8 / 12, "feet"),
  9003. weight: math.unit(120, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/danny/front.svg",
  9007. extra: 1490 / 1350
  9008. }
  9009. },
  9010. back: {
  9011. height: math.unit(7 + 8 / 12, "feet"),
  9012. weight: math.unit(120, "lb"),
  9013. name: "Back",
  9014. image: {
  9015. source: "./media/characters/danny/back.svg",
  9016. extra: 1490 / 1350
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(7 + 8 / 12, "feet"),
  9024. default: true
  9025. },
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(3.5, "inches"),
  9033. weight: math.unit(19, "grams"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/mallow/front.svg",
  9037. extra: 471 / 431
  9038. }
  9039. },
  9040. back: {
  9041. height: math.unit(3.5, "inches"),
  9042. weight: math.unit(19, "grams"),
  9043. name: "Back",
  9044. image: {
  9045. source: "./media/characters/mallow/back.svg",
  9046. extra: 471 / 431
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(3.5, "inches"),
  9054. default: true
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(9, "feet"),
  9063. weight: math.unit(230, "kg"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/starry-aqua/front.svg"
  9067. }
  9068. },
  9069. back: {
  9070. height: math.unit(9, "feet"),
  9071. weight: math.unit(230, "kg"),
  9072. name: "Back",
  9073. image: {
  9074. source: "./media/characters/starry-aqua/back.svg"
  9075. }
  9076. },
  9077. hand: {
  9078. height: math.unit(9 * 0.1168, "feet"),
  9079. name: "Hand",
  9080. image: {
  9081. source: "./media/characters/starry-aqua/hand.svg"
  9082. }
  9083. },
  9084. foot: {
  9085. height: math.unit(9 * 0.18, "feet"),
  9086. name: "Foot",
  9087. image: {
  9088. source: "./media/characters/starry-aqua/foot.svg"
  9089. }
  9090. }
  9091. },
  9092. [
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(3, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(9, "feet")
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(300, "feet"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Megamacro",
  9108. height: math.unit(3200, "feet")
  9109. }
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(15, "feet"),
  9117. weight: math.unit(5026, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/luka-towers/front.svg",
  9121. extra: 1269/1133,
  9122. bottom: 51/1320
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(15, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Minimacro",
  9134. height: math.unit(25, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(320, "feet")
  9139. },
  9140. {
  9141. name: "Megamacro",
  9142. height: math.unit(35000, "feet")
  9143. },
  9144. {
  9145. name: "Gigamacro",
  9146. height: math.unit(4000, "miles")
  9147. },
  9148. {
  9149. name: "Teramacro",
  9150. height: math.unit(15000, "miles")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(150, "lb"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/natalie-nightring/front.svg",
  9163. extra: 1,
  9164. bottom: 0.06
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Uh Oh",
  9171. height: math.unit(0.1, "mm")
  9172. },
  9173. {
  9174. name: "Small",
  9175. height: math.unit(3, "inches")
  9176. },
  9177. {
  9178. name: "Human Scale",
  9179. height: math.unit(6, "feet")
  9180. },
  9181. {
  9182. name: "Librarian",
  9183. height: math.unit(50, "feet"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Immense",
  9188. height: math.unit(200, "miles")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(180, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/danni-rosie/front.svg",
  9201. extra: 1260 / 1128,
  9202. bottom: 0.022
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Micro",
  9209. height: math.unit(2, "inches"),
  9210. default: true
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(5 + 9 / 12, "feet"),
  9219. weight: math.unit(220, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/samantha-kruse/front.svg",
  9223. extra: (985 / 935),
  9224. bottom: 0.03
  9225. }
  9226. },
  9227. frontUndressed: {
  9228. height: math.unit(5 + 9 / 12, "feet"),
  9229. weight: math.unit(220, "lb"),
  9230. name: "Front (Undressed)",
  9231. image: {
  9232. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9233. extra: (973 / 923),
  9234. bottom: 0.025
  9235. }
  9236. },
  9237. fat: {
  9238. height: math.unit(5 + 9 / 12, "feet"),
  9239. weight: math.unit(900, "lb"),
  9240. name: "Front (Fat)",
  9241. image: {
  9242. source: "./media/characters/samantha-kruse/fat.svg",
  9243. extra: 2688 / 2561
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Normal",
  9250. height: math.unit(5 + 9 / 12, "feet"),
  9251. default: true
  9252. }
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9257. {
  9258. back: {
  9259. height: math.unit(5 + 4 / 12, "feet"),
  9260. weight: math.unit(4963, "lb"),
  9261. name: "Back",
  9262. image: {
  9263. source: "./media/characters/amelia-rosie/back.svg",
  9264. extra: 1113 / 963,
  9265. bottom: 0.01
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Level 0",
  9272. height: math.unit(5 + 4 / 12, "feet")
  9273. },
  9274. {
  9275. name: "Level 1",
  9276. height: math.unit(164597, "feet"),
  9277. default: true
  9278. },
  9279. {
  9280. name: "Level 2",
  9281. height: math.unit(956243, "miles")
  9282. },
  9283. {
  9284. name: "Level 3",
  9285. height: math.unit(29421709423, "miles")
  9286. },
  9287. {
  9288. name: "Level 4",
  9289. height: math.unit(154, "lightyears")
  9290. },
  9291. {
  9292. name: "Level 5",
  9293. height: math.unit(4738272, "lightyears")
  9294. },
  9295. {
  9296. name: "Level 6",
  9297. height: math.unit(145787152896, "lightyears")
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 11 / 12, "feet"),
  9306. weight: math.unit(65, "kg"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/rook-kitara/front.svg",
  9310. extra: 1347 / 1274,
  9311. bottom: 0.005
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Totally Unfair",
  9318. height: math.unit(1.8, "mm")
  9319. },
  9320. {
  9321. name: "Lap Rookie",
  9322. height: math.unit(1.4, "feet")
  9323. },
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(5 + 11 / 12, "feet"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "How Did This Happen",
  9331. height: math.unit(80, "miles")
  9332. }
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(7, "feet"),
  9340. weight: math.unit(300, "lb"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/pisces/front.svg",
  9344. extra: 2255 / 2115,
  9345. bottom: 0.03
  9346. }
  9347. },
  9348. back: {
  9349. height: math.unit(7, "feet"),
  9350. weight: math.unit(300, "lb"),
  9351. name: "Back",
  9352. image: {
  9353. source: "./media/characters/pisces/back.svg",
  9354. extra: 2146 / 2055,
  9355. bottom: 0.04
  9356. }
  9357. },
  9358. },
  9359. [
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(7, "feet"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Swimming Pool",
  9367. height: math.unit(12.2, "meters")
  9368. },
  9369. {
  9370. name: "Olympic Swimming Pool",
  9371. height: math.unit(56.3, "meters")
  9372. },
  9373. {
  9374. name: "Lake Superior",
  9375. height: math.unit(93900, "meters")
  9376. },
  9377. {
  9378. name: "Mediterranean Sea",
  9379. height: math.unit(644457, "meters")
  9380. },
  9381. {
  9382. name: "World's Oceans",
  9383. height: math.unit(4567491, "meters")
  9384. },
  9385. ]
  9386. ))
  9387. characterMakers.push(() => makeCharacter(
  9388. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9389. {
  9390. front: {
  9391. height: math.unit(2.3, "meters"),
  9392. weight: math.unit(120, "kg"),
  9393. name: "Front",
  9394. image: {
  9395. source: "./media/characters/zelas/front.svg"
  9396. }
  9397. },
  9398. side: {
  9399. height: math.unit(2.3, "meters"),
  9400. weight: math.unit(120, "kg"),
  9401. name: "Side",
  9402. image: {
  9403. source: "./media/characters/zelas/side.svg"
  9404. }
  9405. },
  9406. back: {
  9407. height: math.unit(2.3, "meters"),
  9408. weight: math.unit(120, "kg"),
  9409. name: "Back",
  9410. image: {
  9411. source: "./media/characters/zelas/back.svg"
  9412. }
  9413. },
  9414. foot: {
  9415. height: math.unit(1.116, "feet"),
  9416. name: "Foot",
  9417. image: {
  9418. source: "./media/characters/zelas/foot.svg"
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(2.3, "meters")
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(30, "meters"),
  9430. default: true
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(1, "inch"),
  9439. weight: math.unit(0.21, "grams"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/talbot/front.svg",
  9443. extra: 594 / 544
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Micro",
  9450. height: math.unit(1, "inch"),
  9451. default: true
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9457. {
  9458. front: {
  9459. height: math.unit(3 + 3 / 12, "feet"),
  9460. weight: math.unit(51.8, "lb"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/fliss/front.svg",
  9464. extra: 840 / 640
  9465. }
  9466. },
  9467. },
  9468. [
  9469. {
  9470. name: "Teeny Tiny",
  9471. height: math.unit(1, "mm")
  9472. },
  9473. {
  9474. name: "Small",
  9475. height: math.unit(1, "inch"),
  9476. default: true
  9477. },
  9478. {
  9479. name: "Standard Sylveon",
  9480. height: math.unit(3 + 3 / 12, "feet")
  9481. },
  9482. {
  9483. name: "Large Nuisance",
  9484. height: math.unit(33, "feet")
  9485. },
  9486. {
  9487. name: "City Filler",
  9488. height: math.unit(3000, "feet")
  9489. },
  9490. {
  9491. name: "New Horizon",
  9492. height: math.unit(6000, "miles")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(5, "cm"),
  9501. weight: math.unit(1.94, "g"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/fleta/front.svg",
  9505. extra: 835 / 803
  9506. }
  9507. },
  9508. back: {
  9509. height: math.unit(5, "cm"),
  9510. weight: math.unit(1.94, "g"),
  9511. name: "Back",
  9512. image: {
  9513. source: "./media/characters/fleta/back.svg",
  9514. extra: 835 / 803
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Micro",
  9521. height: math.unit(5, "cm"),
  9522. default: true
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(225, "lb"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/dominic/front.svg",
  9535. extra: 1770 / 1620,
  9536. bottom: 0.025
  9537. }
  9538. },
  9539. back: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(225, "lb"),
  9542. name: "Back",
  9543. image: {
  9544. source: "./media/characters/dominic/back.svg",
  9545. extra: 1745 / 1620,
  9546. bottom: 0.065
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Nano",
  9553. height: math.unit(0.1, "mm")
  9554. },
  9555. {
  9556. name: "Micro-",
  9557. height: math.unit(1, "mm")
  9558. },
  9559. {
  9560. name: "Micro",
  9561. height: math.unit(4, "inches")
  9562. },
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(6 + 4 / 12, "feet"),
  9566. default: true
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(115, "feet")
  9571. },
  9572. {
  9573. name: "Macro+",
  9574. height: math.unit(955, "feet")
  9575. },
  9576. {
  9577. name: "Megamacro",
  9578. height: math.unit(8990, "feet")
  9579. },
  9580. {
  9581. name: "Gigmacro",
  9582. height: math.unit(9310, "miles")
  9583. },
  9584. {
  9585. name: "Teramacro",
  9586. height: math.unit(1567005010, "miles")
  9587. },
  9588. {
  9589. name: "Examacro",
  9590. height: math.unit(1425, "parsecs")
  9591. },
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(400, "feet"),
  9599. weight: math.unit(44444444, "lb"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/major-colonel/front.svg"
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(400, "feet"),
  9607. weight: math.unit(44444444, "lb"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/major-colonel/back.svg"
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Macro",
  9617. height: math.unit(400, "feet"),
  9618. default: true
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9624. {
  9625. catFront: {
  9626. height: math.unit(6, "feet"),
  9627. weight: math.unit(120, "lb"),
  9628. name: "Front (Cat Side)",
  9629. image: {
  9630. source: "./media/characters/axel-lycan/cat-front.svg",
  9631. extra: 430 / 402,
  9632. bottom: 43 / 472.35
  9633. }
  9634. },
  9635. catBack: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(120, "lb"),
  9638. name: "Back (Cat Side)",
  9639. image: {
  9640. source: "./media/characters/axel-lycan/cat-back.svg",
  9641. extra: 447 / 419,
  9642. bottom: 23.3 / 469
  9643. }
  9644. },
  9645. wolfFront: {
  9646. height: math.unit(6, "feet"),
  9647. weight: math.unit(120, "lb"),
  9648. name: "Front (Wolf Side)",
  9649. image: {
  9650. source: "./media/characters/axel-lycan/wolf-front.svg",
  9651. extra: 485 / 456,
  9652. bottom: 19 / 504
  9653. }
  9654. },
  9655. wolfBack: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(120, "lb"),
  9658. name: "Back (Wolf Side)",
  9659. image: {
  9660. source: "./media/characters/axel-lycan/wolf-back.svg",
  9661. extra: 475 / 438,
  9662. bottom: 39.2 / 514
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(1, "km"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(5 + 9 / 12, "feet"),
  9679. weight: math.unit(175, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/vanrel-hyena/front.svg",
  9683. extra: 1086 / 1010,
  9684. bottom: 0.04
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(5 + 9 / 12, "feet"),
  9692. default: true
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(6, "feet"),
  9701. weight: math.unit(103, "lb"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/abbott-absol/front.svg",
  9705. extra: 2010 / 1842
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Megamicro",
  9712. height: math.unit(0.1, "mm")
  9713. },
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(1, "inch")
  9717. },
  9718. {
  9719. name: "Normal",
  9720. height: math.unit(6, "feet"),
  9721. default: true
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(6, "feet"),
  9730. weight: math.unit(264, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/hector/front.svg",
  9734. extra: 2280 / 2130,
  9735. bottom: 0.07
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(12.25, "foot"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(160, "feet")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(150, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/sal/front.svg",
  9760. extra: 1846 / 1699,
  9761. bottom: 0.04
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Megamacro",
  9768. height: math.unit(10, "miles"),
  9769. default: true
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9775. {
  9776. front: {
  9777. height: math.unit(3, "meters"),
  9778. weight: math.unit(450, "kg"),
  9779. name: "front",
  9780. image: {
  9781. source: "./media/characters/ranger/front.svg",
  9782. extra: 2401 / 2243,
  9783. bottom: 0.05
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(3, "meters"),
  9791. default: true
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(14, "feet"),
  9800. weight: math.unit(800, "kg"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/theresa/front.svg",
  9804. extra: 3575 / 3346,
  9805. bottom: 0.03
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(14, "feet"),
  9813. default: true
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9819. {
  9820. front: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(3, "kg"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/ine/front.svg",
  9826. extra: 678 / 539,
  9827. bottom: 0.023
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(2.265, "feet"),
  9835. default: true
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(5, "feet"),
  9844. weight: math.unit(30, "kg"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/vial/front.svg",
  9848. extra: 1365 / 1277,
  9849. bottom: 0.04
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Normal",
  9856. height: math.unit(5, "feet"),
  9857. default: true
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9863. {
  9864. side: {
  9865. height: math.unit(3.4, "meters"),
  9866. weight: math.unit(1000, "lb"),
  9867. name: "Side",
  9868. image: {
  9869. source: "./media/characters/rovoska/side.svg",
  9870. extra: 4403 / 1515
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(3.4, "meters"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(8, "feet"),
  9887. weight: math.unit(315, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/gunner-rotthbauer/front.svg"
  9891. }
  9892. },
  9893. back: {
  9894. height: math.unit(8, "feet"),
  9895. weight: math.unit(315, "lb"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/gunner-rotthbauer/back.svg"
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Micro",
  9905. height: math.unit(3.5, "inches")
  9906. },
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(8, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(250, "feet")
  9915. },
  9916. {
  9917. name: "Megamacro",
  9918. height: math.unit(1, "AU")
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(5 + 5 / 12, "feet"),
  9927. weight: math.unit(140, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/allatia/front.svg",
  9931. extra: 1227 / 1180,
  9932. bottom: 0.027
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(5 + 5 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(250, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Megamacro",
  9948. height: math.unit(8, "miles")
  9949. }
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(120, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/tene/front.svg",
  9961. extra: 1728 / 1578,
  9962. bottom: 0.022
  9963. }
  9964. },
  9965. stomping: {
  9966. height: math.unit(2.025, "meters"),
  9967. weight: math.unit(120, "lb"),
  9968. name: "Stomping",
  9969. image: {
  9970. source: "./media/characters/tene/stomping.svg",
  9971. extra: 938 / 873,
  9972. bottom: 0.01
  9973. }
  9974. },
  9975. sitting: {
  9976. height: math.unit(1, "meter"),
  9977. weight: math.unit(120, "lb"),
  9978. name: "Sitting",
  9979. image: {
  9980. source: "./media/characters/tene/sitting.svg",
  9981. extra: 437 / 415,
  9982. bottom: 0.1
  9983. }
  9984. },
  9985. feral: {
  9986. height: math.unit(3.9, "feet"),
  9987. weight: math.unit(250, "lb"),
  9988. name: "Feral",
  9989. image: {
  9990. source: "./media/characters/tene/feral.svg",
  9991. extra: 717 / 458,
  9992. bottom: 0.179
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Normal",
  9999. height: math.unit(6, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(300, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(5, "miles")
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10014. {
  10015. side: {
  10016. height: math.unit(6, "feet"),
  10017. name: "Side",
  10018. image: {
  10019. source: "./media/characters/evander/side.svg",
  10020. extra: 877 / 477
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(0.83, "meters"),
  10028. default: true
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(12, "feet"),
  10037. weight: math.unit(1000, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10041. extra: 1762 / 1611
  10042. }
  10043. },
  10044. back: {
  10045. height: math.unit(12, "feet"),
  10046. weight: math.unit(1000, "lb"),
  10047. name: "Back",
  10048. image: {
  10049. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10050. extra: 1762 / 1611
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(12, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Kaiju",
  10062. height: math.unit(150, "feet")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(150, "lb"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/zero-alurus/front.svg"
  10075. }
  10076. },
  10077. back: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Back",
  10081. image: {
  10082. source: "./media/characters/zero-alurus/back.svg"
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(5 + 10 / 12, "feet")
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(60, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Macro+",
  10098. height: math.unit(450, "feet")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(200, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/mega-shi/front.svg",
  10111. extra: 1279 / 1250,
  10112. bottom: 0.02
  10113. }
  10114. },
  10115. back: {
  10116. height: math.unit(6, "feet"),
  10117. weight: math.unit(200, "lb"),
  10118. name: "Back",
  10119. image: {
  10120. source: "./media/characters/mega-shi/back.svg",
  10121. extra: 1279 / 1250,
  10122. bottom: 0.02
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Micro",
  10129. height: math.unit(16 + 6 / 12, "feet")
  10130. },
  10131. {
  10132. name: "Third Dimension",
  10133. height: math.unit(40, "meters")
  10134. },
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(660, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Megamacro",
  10142. height: math.unit(10, "miles")
  10143. },
  10144. {
  10145. name: "Planetary Launch",
  10146. height: math.unit(500, "miles")
  10147. },
  10148. {
  10149. name: "Interstellar",
  10150. height: math.unit(1e9, "miles")
  10151. },
  10152. {
  10153. name: "Leaving the Universe",
  10154. height: math.unit(1, "gigaparsec")
  10155. },
  10156. {
  10157. name: "Travelling Universes",
  10158. height: math.unit(30e15, "parsecs")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(5 + 4/12, "feet"),
  10167. weight: math.unit(120, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/odyssey/front.svg",
  10171. extra: 1747/1571,
  10172. bottom: 47/1794
  10173. }
  10174. },
  10175. side: {
  10176. height: math.unit(5.1, "feet"),
  10177. weight: math.unit(120, "lb"),
  10178. name: "Side",
  10179. image: {
  10180. source: "./media/characters/odyssey/side.svg",
  10181. extra: 1847/1619,
  10182. bottom: 47/1894
  10183. }
  10184. },
  10185. lounging: {
  10186. height: math.unit(1.464, "feet"),
  10187. weight: math.unit(120, "lb"),
  10188. name: "Lounging",
  10189. image: {
  10190. source: "./media/characters/odyssey/lounging.svg",
  10191. extra: 1235/837,
  10192. bottom: 551/1786
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(5 + 4 / 12, "feet")
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(1, "km")
  10204. },
  10205. {
  10206. name: "Megamacro",
  10207. height: math.unit(3000, "km")
  10208. },
  10209. {
  10210. name: "Gigamacro",
  10211. height: math.unit(1, "AU"),
  10212. default: true
  10213. },
  10214. {
  10215. name: "Omniversal",
  10216. height: math.unit(100e14, "lightyears")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10222. {
  10223. front: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(300, "lb"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/mekuto/front.svg",
  10229. extra: 921 / 832,
  10230. bottom: 0.03
  10231. }
  10232. },
  10233. hand: {
  10234. height: math.unit(6 / 10.24, "feet"),
  10235. name: "Hand",
  10236. image: {
  10237. source: "./media/characters/mekuto/hand.svg"
  10238. }
  10239. },
  10240. foot: {
  10241. height: math.unit(6 / 5.05, "feet"),
  10242. name: "Foot",
  10243. image: {
  10244. source: "./media/characters/mekuto/foot.svg"
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Minimicro",
  10251. height: math.unit(0.2, "inches")
  10252. },
  10253. {
  10254. name: "Micro",
  10255. height: math.unit(1.5, "inches")
  10256. },
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(5 + 11 / 12, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Minimacro",
  10264. height: math.unit(17 + 9 / 12, "feet")
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(177.5, "feet")
  10269. },
  10270. {
  10271. name: "Megamacro",
  10272. height: math.unit(152, "miles")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6.5, "inches"),
  10281. weight: math.unit(13, "oz"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/dafydd-tomos/front.svg",
  10285. extra: 2990 / 2603,
  10286. bottom: 0.03
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(6.5, "inches"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(6, "feet"),
  10303. weight: math.unit(150, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/splinter/front.svg",
  10307. extra: 2990 / 2882,
  10308. bottom: 0.04
  10309. }
  10310. },
  10311. back: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Back",
  10315. image: {
  10316. source: "./media/characters/splinter/back.svg",
  10317. extra: 2990 / 2882,
  10318. bottom: 0.04
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(6, "feet")
  10326. },
  10327. {
  10328. name: "Macro",
  10329. height: math.unit(230, "meters"),
  10330. default: true
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(4 + 10 / 12, "feet"),
  10339. weight: math.unit(480, "lb"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/snow-gabumon/front.svg",
  10343. extra: 1140 / 963,
  10344. bottom: 0.058
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(4 + 10 / 12, "feet"),
  10349. weight: math.unit(480, "lb"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/snow-gabumon/back.svg",
  10353. extra: 1115 / 962,
  10354. bottom: 0.041
  10355. }
  10356. },
  10357. frontUndresed: {
  10358. height: math.unit(4 + 10 / 12, "feet"),
  10359. weight: math.unit(480, "lb"),
  10360. name: "Front (Undressed)",
  10361. image: {
  10362. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10363. extra: 1061 / 960,
  10364. bottom: 0.045
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Micro",
  10371. height: math.unit(1, "inch")
  10372. },
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(4 + 10 / 12, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(200, "feet")
  10381. },
  10382. {
  10383. name: "Megamacro",
  10384. height: math.unit(120, "miles")
  10385. },
  10386. {
  10387. name: "Gigamacro",
  10388. height: math.unit(9800, "miles")
  10389. },
  10390. ]
  10391. ))
  10392. characterMakers.push(() => makeCharacter(
  10393. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10394. {
  10395. front: {
  10396. height: math.unit(1.7, "meters"),
  10397. weight: math.unit(140, "lb"),
  10398. name: "Front",
  10399. image: {
  10400. source: "./media/characters/moody/front.svg",
  10401. extra: 3226 / 3007,
  10402. bottom: 0.087
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Micro",
  10409. height: math.unit(1, "mm")
  10410. },
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(1.7, "meters"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(80, "meters")
  10419. },
  10420. {
  10421. name: "Macro+",
  10422. height: math.unit(500, "meters")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(150, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/zyas/front.svg",
  10435. extra: 1180 / 1120,
  10436. bottom: 0.045
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(10, "feet"),
  10444. default: true
  10445. },
  10446. {
  10447. name: "Macro",
  10448. height: math.unit(500, "feet")
  10449. },
  10450. {
  10451. name: "Megamacro",
  10452. height: math.unit(5, "miles")
  10453. },
  10454. {
  10455. name: "Teramacro",
  10456. height: math.unit(150000, "miles")
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10462. {
  10463. front: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(150, "lb"),
  10466. name: "Front",
  10467. image: {
  10468. source: "./media/characters/cuon/front.svg",
  10469. extra: 1390 / 1320,
  10470. bottom: 0.008
  10471. }
  10472. },
  10473. },
  10474. [
  10475. {
  10476. name: "Micro",
  10477. height: math.unit(3, "inches")
  10478. },
  10479. {
  10480. name: "Normal",
  10481. height: math.unit(18 + 9 / 12, "feet"),
  10482. default: true
  10483. },
  10484. {
  10485. name: "Macro",
  10486. height: math.unit(360, "feet")
  10487. },
  10488. {
  10489. name: "Megamacro",
  10490. height: math.unit(360, "miles")
  10491. },
  10492. ]
  10493. ))
  10494. characterMakers.push(() => makeCharacter(
  10495. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10496. {
  10497. front: {
  10498. height: math.unit(2.4, "meters"),
  10499. weight: math.unit(70, "kg"),
  10500. name: "Front",
  10501. image: {
  10502. source: "./media/characters/nyanuxk/front.svg",
  10503. extra: 1172 / 1084,
  10504. bottom: 0.065
  10505. }
  10506. },
  10507. side: {
  10508. height: math.unit(2.4, "meters"),
  10509. weight: math.unit(70, "kg"),
  10510. name: "Side",
  10511. image: {
  10512. source: "./media/characters/nyanuxk/side.svg",
  10513. extra: 1190 / 1132,
  10514. bottom: 0.007
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(2.4, "meters"),
  10519. weight: math.unit(70, "kg"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/nyanuxk/back.svg",
  10523. extra: 1200 / 1141,
  10524. bottom: 0.015
  10525. }
  10526. },
  10527. foot: {
  10528. height: math.unit(0.52, "meters"),
  10529. name: "Foot",
  10530. image: {
  10531. source: "./media/characters/nyanuxk/foot.svg"
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Micro",
  10538. height: math.unit(2, "cm")
  10539. },
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(2.4, "meters"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Smaller Macro",
  10547. height: math.unit(120, "meters")
  10548. },
  10549. {
  10550. name: "Bigger Macro",
  10551. height: math.unit(1.2, "km")
  10552. },
  10553. {
  10554. name: "Megamacro",
  10555. height: math.unit(15, "kilometers")
  10556. },
  10557. {
  10558. name: "Gigamacro",
  10559. height: math.unit(2000, "km")
  10560. },
  10561. {
  10562. name: "Teramacro",
  10563. height: math.unit(500000, "km")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10569. {
  10570. side: {
  10571. height: math.unit(6, "feet"),
  10572. name: "Side",
  10573. image: {
  10574. source: "./media/characters/ailbhe/side.svg",
  10575. extra: 757 / 464,
  10576. bottom: 0.041
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(1.07, "meters"),
  10584. default: true
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(120, "kg"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/zevulfius/front.svg",
  10597. extra: 965 / 903
  10598. }
  10599. },
  10600. side: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(120, "kg"),
  10603. name: "Side",
  10604. image: {
  10605. source: "./media/characters/zevulfius/side.svg",
  10606. extra: 939 / 900
  10607. }
  10608. },
  10609. back: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(120, "kg"),
  10612. name: "Back",
  10613. image: {
  10614. source: "./media/characters/zevulfius/back.svg",
  10615. extra: 918 / 854,
  10616. bottom: 0.005
  10617. }
  10618. },
  10619. foot: {
  10620. height: math.unit(6 / 3.72, "feet"),
  10621. name: "Foot",
  10622. image: {
  10623. source: "./media/characters/zevulfius/foot.svg"
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Macro",
  10630. height: math.unit(750, "meters")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(20, "km"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Gigamacro",
  10639. height: math.unit(2000, "km")
  10640. },
  10641. {
  10642. name: "Teramacro",
  10643. height: math.unit(250000, "km")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(100, "feet"),
  10652. weight: math.unit(350, "kg"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/rikes/front.svg",
  10656. extra: 1565 / 1483,
  10657. bottom: 0.017
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Macro",
  10664. height: math.unit(100, "feet"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(8, "feet"),
  10674. weight: math.unit(356, "lb"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/adam-silver-mane/front.svg",
  10678. extra: 1036/937,
  10679. bottom: 63/1099
  10680. }
  10681. },
  10682. side: {
  10683. height: math.unit(8, "feet"),
  10684. weight: math.unit(356, "lb"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/adam-silver-mane/side.svg",
  10688. extra: 997/901,
  10689. bottom: 59/1056
  10690. }
  10691. },
  10692. frontNsfw: {
  10693. height: math.unit(8, "feet"),
  10694. weight: math.unit(356, "lb"),
  10695. name: "Front (NSFW)",
  10696. image: {
  10697. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10698. extra: 1036/937,
  10699. bottom: 63/1099
  10700. }
  10701. },
  10702. sideNsfw: {
  10703. height: math.unit(8, "feet"),
  10704. weight: math.unit(356, "lb"),
  10705. name: "Side (NSFW)",
  10706. image: {
  10707. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10708. extra: 997/901,
  10709. bottom: 59/1056
  10710. }
  10711. },
  10712. dick: {
  10713. height: math.unit(2.1, "feet"),
  10714. name: "Dick",
  10715. image: {
  10716. source: "./media/characters/adam-silver-mane/dick.svg"
  10717. }
  10718. },
  10719. taur: {
  10720. height: math.unit(16, "feet"),
  10721. weight: math.unit(1500, "kg"),
  10722. name: "Taur",
  10723. image: {
  10724. source: "./media/characters/adam-silver-mane/taur.svg",
  10725. extra: 1713 / 1571,
  10726. bottom: 0.01
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Normal",
  10733. height: math.unit(8, "feet")
  10734. },
  10735. {
  10736. name: "Minimacro",
  10737. height: math.unit(80, "feet")
  10738. },
  10739. {
  10740. name: "MDA",
  10741. height: math.unit(80, "meters")
  10742. },
  10743. {
  10744. name: "Macro",
  10745. height: math.unit(800, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Megamacro",
  10750. height: math.unit(8000, "feet")
  10751. },
  10752. {
  10753. name: "Gigamacro",
  10754. height: math.unit(800, "miles")
  10755. },
  10756. {
  10757. name: "Teramacro",
  10758. height: math.unit(80000, "miles")
  10759. },
  10760. {
  10761. name: "Celestial",
  10762. height: math.unit(8e6, "miles")
  10763. },
  10764. {
  10765. name: "Star Dragon",
  10766. height: math.unit(800000, "parsecs")
  10767. },
  10768. {
  10769. name: "Godly",
  10770. height: math.unit(800, "teraparsecs")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(150, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/ky'owin/front.svg",
  10783. extra: 3888 / 3068,
  10784. bottom: 0.015
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(6 + 8 / 12, "feet")
  10792. },
  10793. {
  10794. name: "Large",
  10795. height: math.unit(68, "feet")
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(132, "feet")
  10800. },
  10801. {
  10802. name: "Macro+",
  10803. height: math.unit(340, "feet")
  10804. },
  10805. {
  10806. name: "Macro++",
  10807. height: math.unit(680, "feet"),
  10808. default: true
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(1, "mile")
  10813. },
  10814. {
  10815. name: "Megamacro+",
  10816. height: math.unit(10, "miles")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(4, "feet"),
  10825. weight: math.unit(50, "lb"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/mal/front.svg",
  10829. extra: 785 / 724,
  10830. bottom: 0.07
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Micro",
  10837. height: math.unit(4, "inches")
  10838. },
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(4, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Macro",
  10846. height: math.unit(200, "feet")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(150, "lb"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/jordan-deware/front.svg",
  10859. extra: 1191 / 1012
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Nano",
  10866. height: math.unit(0.01, "mm")
  10867. },
  10868. {
  10869. name: "Minimicro",
  10870. height: math.unit(1, "mm")
  10871. },
  10872. {
  10873. name: "Micro",
  10874. height: math.unit(0.5, "inches")
  10875. },
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(4, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Minimacro",
  10883. height: math.unit(40, "meters")
  10884. },
  10885. {
  10886. name: "Small Macro",
  10887. height: math.unit(400, "meters")
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(4, "miles")
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(40, "miles")
  10896. },
  10897. {
  10898. name: "Megamacro+",
  10899. height: math.unit(400, "miles")
  10900. },
  10901. {
  10902. name: "Gigamacro",
  10903. height: math.unit(400000, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10909. {
  10910. side: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(150, "lb"),
  10913. name: "Side",
  10914. image: {
  10915. source: "./media/characters/kimiko/side.svg",
  10916. extra: 600 / 358
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(15, "feet"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Macro",
  10928. height: math.unit(220, "feet")
  10929. },
  10930. {
  10931. name: "Macro+",
  10932. height: math.unit(1450, "feet")
  10933. },
  10934. {
  10935. name: "Megamacro",
  10936. height: math.unit(11500, "feet")
  10937. },
  10938. {
  10939. name: "Gigamacro",
  10940. height: math.unit(9500, "miles")
  10941. },
  10942. {
  10943. name: "Teramacro",
  10944. height: math.unit(2208005005, "miles")
  10945. },
  10946. {
  10947. name: "Examacro",
  10948. height: math.unit(2750, "parsecs")
  10949. },
  10950. {
  10951. name: "Zettamacro",
  10952. height: math.unit(101500, "parsecs")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(70, "kg"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/andrew-sleepy/front.svg"
  10965. }
  10966. },
  10967. side: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(70, "kg"),
  10970. name: "Side",
  10971. image: {
  10972. source: "./media/characters/andrew-sleepy/side.svg"
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(1, "mm"),
  10980. default: true
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(150, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/judio/front.svg",
  10993. extra: 1258 / 1110
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(5 + 6 / 12, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(1000, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(10, "miles")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(68, "kg"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/nomaxice/front.svg",
  11022. extra: 1498 / 1073,
  11023. bottom: 0.075
  11024. }
  11025. },
  11026. foot: {
  11027. height: math.unit(1.1, "feet"),
  11028. name: "Foot",
  11029. image: {
  11030. source: "./media/characters/nomaxice/foot.svg"
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(8, "cm")
  11038. },
  11039. {
  11040. name: "Norm",
  11041. height: math.unit(1.82, "m")
  11042. },
  11043. {
  11044. name: "Norm+",
  11045. height: math.unit(8.8, "feet")
  11046. },
  11047. {
  11048. name: "Big",
  11049. height: math.unit(8, "meters"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Macro",
  11054. height: math.unit(18, "meters")
  11055. },
  11056. {
  11057. name: "Macro+",
  11058. height: math.unit(88, "meters")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(12, "feet"),
  11067. weight: math.unit(1.5, "tons"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/dydros/front.svg",
  11071. extra: 863 / 800,
  11072. bottom: 0.015
  11073. }
  11074. },
  11075. back: {
  11076. height: math.unit(12, "feet"),
  11077. weight: math.unit(1.5, "tons"),
  11078. name: "Back",
  11079. image: {
  11080. source: "./media/characters/dydros/back.svg",
  11081. extra: 900 / 843,
  11082. bottom: 0.005
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(12, "feet"),
  11090. default: true
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(100, "kg"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/riggi/front.svg",
  11103. extra: 5787 / 5303
  11104. }
  11105. },
  11106. hyper: {
  11107. height: math.unit(6 * 5 / 3, "feet"),
  11108. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11109. name: "Hyper",
  11110. image: {
  11111. source: "./media/characters/riggi/hyper.svg",
  11112. extra: 3595 / 3485
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Small Macro",
  11119. height: math.unit(50, "feet")
  11120. },
  11121. {
  11122. name: "Default",
  11123. height: math.unit(200, "feet"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Loom",
  11128. height: math.unit(10000, "feet")
  11129. },
  11130. {
  11131. name: "Cruising Altitude",
  11132. height: math.unit(30000, "feet")
  11133. },
  11134. {
  11135. name: "Megamacro",
  11136. height: math.unit(100, "miles")
  11137. },
  11138. {
  11139. name: "Continent Sized",
  11140. height: math.unit(2800, "miles")
  11141. },
  11142. {
  11143. name: "Earth Sized",
  11144. height: math.unit(8000, "miles")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(250, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/alexi/front.svg",
  11157. extra: 3483 / 3291,
  11158. bottom: 0.04
  11159. }
  11160. },
  11161. back: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(250, "lb"),
  11164. name: "Back",
  11165. image: {
  11166. source: "./media/characters/alexi/back.svg",
  11167. extra: 3533 / 3356,
  11168. bottom: 0.021
  11169. }
  11170. },
  11171. frontTransforming: {
  11172. height: math.unit(8.58, "feet"),
  11173. weight: math.unit(1300, "lb"),
  11174. name: "Transforming",
  11175. image: {
  11176. source: "./media/characters/alexi/front-transforming.svg",
  11177. extra: 437 / 409,
  11178. bottom: 19 / 458.66
  11179. }
  11180. },
  11181. frontTransformed: {
  11182. height: math.unit(12.5, "feet"),
  11183. weight: math.unit(4000, "lb"),
  11184. name: "Transformed",
  11185. image: {
  11186. source: "./media/characters/alexi/front-transformed.svg",
  11187. extra: 639 / 614,
  11188. bottom: 30.55 / 671
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(14, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Minimacro",
  11200. height: math.unit(30, "meters")
  11201. },
  11202. {
  11203. name: "Macro",
  11204. height: math.unit(500, "meters")
  11205. },
  11206. {
  11207. name: "Megamacro",
  11208. height: math.unit(9000, "km")
  11209. },
  11210. {
  11211. name: "Teramacro",
  11212. height: math.unit(384000, "km")
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(150, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/kayroo/front.svg",
  11225. extra: 1153 / 1038,
  11226. bottom: 0.06
  11227. }
  11228. },
  11229. foot: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(150, "lb"),
  11232. name: "Foot",
  11233. image: {
  11234. source: "./media/characters/kayroo/foot.svg"
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(8, "feet"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Minimacro",
  11246. height: math.unit(250, "feet")
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(2800, "feet")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(5200, "feet")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(27000, "feet")
  11259. },
  11260. {
  11261. name: "Omega",
  11262. height: math.unit(45000, "feet")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(18, "feet"),
  11271. weight: math.unit(5800, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/rhys/front.svg",
  11275. extra: 3386 / 3090,
  11276. bottom: 0.07
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(18, "feet"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Working Size",
  11288. height: math.unit(200, "feet")
  11289. },
  11290. {
  11291. name: "Demolition Size",
  11292. height: math.unit(2000, "feet")
  11293. },
  11294. {
  11295. name: "Maximum Licensed Size",
  11296. height: math.unit(5, "miles")
  11297. },
  11298. {
  11299. name: "Maximum Observed Size",
  11300. height: math.unit(10, "yottameters")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(250, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/toto/front.svg",
  11313. extra: 527 / 479,
  11314. bottom: 0.05
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Micro",
  11321. height: math.unit(3, "feet")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(10, "feet")
  11326. },
  11327. {
  11328. name: "Macro",
  11329. height: math.unit(150, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Megamacro",
  11334. height: math.unit(1200, "feet")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "King", species: ["lion"], tags: ["anthro"] },
  11340. {
  11341. back: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Back",
  11345. image: {
  11346. source: "./media/characters/king/back.svg"
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Micro",
  11353. height: math.unit(2, "inches")
  11354. },
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(8, "feet")
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(200, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(50, "miles")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(11, "feet"),
  11375. weight: math.unit(1400, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/cordite/front.svg",
  11379. extra: 1919/1827,
  11380. bottom: 40/1959
  11381. }
  11382. },
  11383. side: {
  11384. height: math.unit(11, "feet"),
  11385. weight: math.unit(1400, "lb"),
  11386. name: "Side",
  11387. image: {
  11388. source: "./media/characters/cordite/side.svg",
  11389. extra: 1908/1793,
  11390. bottom: 38/1946
  11391. }
  11392. },
  11393. back: {
  11394. height: math.unit(11, "feet"),
  11395. weight: math.unit(1400, "lb"),
  11396. name: "Back",
  11397. image: {
  11398. source: "./media/characters/cordite/back.svg",
  11399. extra: 1938/1837,
  11400. bottom: 10/1948
  11401. }
  11402. },
  11403. feral: {
  11404. height: math.unit(2, "feet"),
  11405. weight: math.unit(90, "lb"),
  11406. name: "Feral",
  11407. image: {
  11408. source: "./media/characters/cordite/feral.svg",
  11409. extra: 1260 / 755,
  11410. bottom: 0.05
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(11, "feet"),
  11418. default: true
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/pianostrong/front.svg",
  11431. extra: 6577 / 6254,
  11432. bottom: 0.02
  11433. }
  11434. },
  11435. side: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Side",
  11439. image: {
  11440. source: "./media/characters/pianostrong/side.svg",
  11441. extra: 6106 / 5730
  11442. }
  11443. },
  11444. back: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(150, "lb"),
  11447. name: "Back",
  11448. image: {
  11449. source: "./media/characters/pianostrong/back.svg",
  11450. extra: 6085 / 5733,
  11451. bottom: 0.01
  11452. }
  11453. },
  11454. },
  11455. [
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(100, "feet")
  11459. },
  11460. {
  11461. name: "Macro+",
  11462. height: math.unit(300, "feet"),
  11463. default: true
  11464. },
  11465. {
  11466. name: "Macro++",
  11467. height: math.unit(1000, "feet")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/kona/front.svg",
  11480. extra: 2960 / 2629,
  11481. bottom: 0.005
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(11 + 8 / 12, "feet")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(850, "feet"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Macro+",
  11497. height: math.unit(1.5, "km"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Megamacro",
  11502. height: math.unit(80, "miles")
  11503. },
  11504. {
  11505. name: "Gigamacro",
  11506. height: math.unit(3500, "miles")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11512. {
  11513. side: {
  11514. height: math.unit(1.9, "meters"),
  11515. weight: math.unit(326, "kg"),
  11516. name: "Side",
  11517. image: {
  11518. source: "./media/characters/levi/side.svg",
  11519. extra: 1704 / 1334,
  11520. bottom: 0.02
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(1.9, "meters"),
  11528. default: true
  11529. },
  11530. {
  11531. name: "Macro",
  11532. height: math.unit(20, "meters")
  11533. },
  11534. {
  11535. name: "Macro+",
  11536. height: math.unit(200, "meters")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(2, "km")
  11541. },
  11542. {
  11543. name: "Megamacro+",
  11544. height: math.unit(20, "km")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(2500, "km")
  11549. },
  11550. {
  11551. name: "Gigamacro+",
  11552. height: math.unit(120000, "km")
  11553. },
  11554. {
  11555. name: "Teramacro",
  11556. height: math.unit(7.77e6, "km")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(6 + 4/12, "feet"),
  11565. weight: math.unit(190, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/bmc/front.svg",
  11569. extra: 1626/1472,
  11570. bottom: 79/1705
  11571. }
  11572. },
  11573. back: {
  11574. height: math.unit(6 + 4/12, "feet"),
  11575. weight: math.unit(190, "lb"),
  11576. name: "Back",
  11577. image: {
  11578. source: "./media/characters/bmc/back.svg",
  11579. extra: 1640/1479,
  11580. bottom: 45/1685
  11581. }
  11582. },
  11583. frontArmor: {
  11584. height: math.unit(6 + 4/12, "feet"),
  11585. weight: math.unit(190, "lb"),
  11586. name: "Front-armor",
  11587. image: {
  11588. source: "./media/characters/bmc/front-armor.svg",
  11589. extra: 1538/1468,
  11590. bottom: 79/1617
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Human-sized",
  11597. height: math.unit(6 + 4 / 12, "feet")
  11598. },
  11599. {
  11600. name: "Interactive Size",
  11601. height: math.unit(25, "feet")
  11602. },
  11603. {
  11604. name: "Small",
  11605. height: math.unit(250, "feet")
  11606. },
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(1250, "feet"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Good Day",
  11614. height: math.unit(88, "miles")
  11615. },
  11616. {
  11617. name: "Largest Measured Size",
  11618. height: math.unit(105.960, "galaxies")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(20, "feet"),
  11627. weight: math.unit(2016, "kg"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/sven-the-kaiju/front.svg",
  11631. extra: 1277/1250,
  11632. bottom: 35/1312
  11633. }
  11634. },
  11635. mouth: {
  11636. height: math.unit(1.85, "feet"),
  11637. name: "Mouth",
  11638. image: {
  11639. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Fairy",
  11646. height: math.unit(6, "inches")
  11647. },
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(20, "feet"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Rampage",
  11655. height: math.unit(200, "feet")
  11656. },
  11657. {
  11658. name: "Archfey Forest Guardian",
  11659. height: math.unit(1, "mile")
  11660. },
  11661. ]
  11662. ))
  11663. characterMakers.push(() => makeCharacter(
  11664. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11665. {
  11666. front: {
  11667. height: math.unit(4, "meters"),
  11668. weight: math.unit(2, "tons"),
  11669. name: "Front",
  11670. image: {
  11671. source: "./media/characters/marik/front.svg",
  11672. extra: 1057 / 1003,
  11673. bottom: 0.08
  11674. }
  11675. },
  11676. },
  11677. [
  11678. {
  11679. name: "Normal",
  11680. height: math.unit(4, "meters"),
  11681. default: true
  11682. },
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(20, "meters")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(50, "km")
  11690. },
  11691. {
  11692. name: "Gigamacro",
  11693. height: math.unit(100, "km")
  11694. },
  11695. {
  11696. name: "Alpha Macro",
  11697. height: math.unit(7.88e7, "yottameters")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(110, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/mel/front.svg",
  11710. extra: 736 / 617,
  11711. bottom: 0.017
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Pico",
  11718. height: math.unit(3, "pm")
  11719. },
  11720. {
  11721. name: "Nano",
  11722. height: math.unit(3, "nm")
  11723. },
  11724. {
  11725. name: "Micro",
  11726. height: math.unit(0.3, "mm"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Micro+",
  11731. height: math.unit(3, "mm")
  11732. },
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(5 + 10.5 / 12, "feet")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11741. {
  11742. kaiju: {
  11743. height: math.unit(1.75, "meters"),
  11744. weight: math.unit(55, "kg"),
  11745. name: "Kaiju",
  11746. image: {
  11747. source: "./media/characters/lykonous/kaiju.svg",
  11748. extra: 1055 / 946,
  11749. bottom: 0.135
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(2.5, "meters"),
  11757. default: true
  11758. },
  11759. {
  11760. name: "Kaiju Dragon",
  11761. height: math.unit(60, "meters")
  11762. },
  11763. {
  11764. name: "Mega Kaiju",
  11765. height: math.unit(120, "km")
  11766. },
  11767. {
  11768. name: "Giga Kaiju",
  11769. height: math.unit(200, "megameters")
  11770. },
  11771. {
  11772. name: "Terra Kaiju",
  11773. height: math.unit(400, "gigameters")
  11774. },
  11775. {
  11776. name: "Kaiju Dragon God",
  11777. height: math.unit(13000, "exaparsecs")
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/blü/front.svg",
  11790. extra: 1883 / 1564,
  11791. bottom: 0.031
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(13, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Big Boi",
  11803. height: math.unit(150, "meters")
  11804. },
  11805. {
  11806. name: "Mini Stomper",
  11807. height: math.unit(300, "meters")
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(1000, "meters")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(11000, "meters")
  11816. },
  11817. {
  11818. name: "Gigamacro",
  11819. height: math.unit(11000, "km")
  11820. },
  11821. {
  11822. name: "Teramacro",
  11823. height: math.unit(420000, "km")
  11824. },
  11825. {
  11826. name: "Examacro",
  11827. height: math.unit(120, "parsecs")
  11828. },
  11829. {
  11830. name: "God Tho",
  11831. height: math.unit(98000000000, "parsecs")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11837. {
  11838. taurFront: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(200, "lb"),
  11841. name: "Taur (Front)",
  11842. image: {
  11843. source: "./media/characters/scales/taur-front.svg",
  11844. extra: 1,
  11845. bottom: 0.05
  11846. }
  11847. },
  11848. taurBack: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(200, "lb"),
  11851. name: "Taur (Back)",
  11852. image: {
  11853. source: "./media/characters/scales/taur-back.svg",
  11854. extra: 1,
  11855. bottom: 0.08
  11856. }
  11857. },
  11858. anthro: {
  11859. height: math.unit(6 * 7 / 12, "feet"),
  11860. weight: math.unit(100, "lb"),
  11861. name: "Anthro",
  11862. image: {
  11863. source: "./media/characters/scales/anthro.svg",
  11864. extra: 1,
  11865. bottom: 0.06
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(12, "feet"),
  11873. default: true
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11879. {
  11880. front: {
  11881. height: math.unit(6, "feet"),
  11882. weight: math.unit(150, "lb"),
  11883. name: "Front",
  11884. image: {
  11885. source: "./media/characters/koragos/front.svg",
  11886. extra: 841 / 794,
  11887. bottom: 0.035
  11888. }
  11889. },
  11890. back: {
  11891. height: math.unit(6, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Back",
  11894. image: {
  11895. source: "./media/characters/koragos/back.svg",
  11896. extra: 841 / 810,
  11897. bottom: 0.022
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(6 + 11 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(490, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(10, "miles")
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(50, "miles")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(250, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/xylrem/front.svg",
  11930. extra: 3323 / 3050,
  11931. bottom: 0.065
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(4, "feet")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(16, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(2720, "feet")
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(25000, "miles")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(8, "feet"),
  11960. weight: math.unit(250, "kg"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/ikideru/front.svg",
  11964. extra: 930 / 870,
  11965. bottom: 0.087
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(8, "feet"),
  11970. weight: math.unit(250, "kg"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/ikideru/back.svg",
  11974. extra: 919 / 852,
  11975. bottom: 0.055
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Rare",
  11982. height: math.unit(8, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Playful Loom",
  11987. height: math.unit(80, "feet")
  11988. },
  11989. {
  11990. name: "City Leaner",
  11991. height: math.unit(230, "feet")
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(2500, "feet")
  11996. },
  11997. {
  11998. name: "Gigamacro",
  11999. height: math.unit(26400, "feet")
  12000. },
  12001. {
  12002. name: "Tectonic Shifter",
  12003. height: math.unit(1.7, "megameters")
  12004. },
  12005. {
  12006. name: "Planet Carer",
  12007. height: math.unit(21, "megameters")
  12008. },
  12009. {
  12010. name: "God",
  12011. height: math.unit(11157.22, "parsecs")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(120, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/neo/front.svg"
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Micro",
  12030. height: math.unit(2, "inches"),
  12031. default: true
  12032. },
  12033. {
  12034. name: "Human Size",
  12035. height: math.unit(5 + 8 / 12, "feet")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(13 + 10 / 12, "feet"),
  12044. weight: math.unit(5320, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/chauncey-chantz/front.svg",
  12048. extra: 1587 / 1435,
  12049. bottom: 0.02
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(13 + 10 / 12, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Macro",
  12061. height: math.unit(45, "feet")
  12062. },
  12063. {
  12064. name: "Megamacro",
  12065. height: math.unit(250, "miles")
  12066. },
  12067. {
  12068. name: "Planetary",
  12069. height: math.unit(10000, "miles")
  12070. },
  12071. {
  12072. name: "Galactic",
  12073. height: math.unit(40000, "parsecs")
  12074. },
  12075. {
  12076. name: "Universal",
  12077. height: math.unit(1, "yottameter")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12083. {
  12084. front: {
  12085. height: math.unit(6, "feet"),
  12086. weight: math.unit(150, "lb"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/epifox/front.svg",
  12090. extra: 1,
  12091. bottom: 0.075
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Micro",
  12098. height: math.unit(6, "inches")
  12099. },
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(12, "feet"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(3810, "feet")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(500, "miles")
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(1.8796, "m"),
  12120. weight: math.unit(230, "lb"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/colin-t/front.svg",
  12124. extra: 1272 / 1193,
  12125. bottom: 0.07
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Micro",
  12132. height: math.unit(0.571, "meters")
  12133. },
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(1.8796, "meters"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Tall",
  12141. height: math.unit(4, "meters")
  12142. },
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(67.241, "meters")
  12146. },
  12147. {
  12148. name: "Megamacro",
  12149. height: math.unit(371.856, "meters")
  12150. },
  12151. {
  12152. name: "Planetary",
  12153. height: math.unit(12631.5689, "km")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(1.85, "meters"),
  12162. weight: math.unit(80, "kg"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/matvei/front.svg",
  12166. extra: 614 / 594,
  12167. bottom: 0.01
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(1.85, "meters"),
  12175. default: true
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(5 + 9 / 12, "feet"),
  12184. weight: math.unit(70, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/quincy/front.svg",
  12188. extra: 3041 / 2751
  12189. }
  12190. },
  12191. back: {
  12192. height: math.unit(5 + 9 / 12, "feet"),
  12193. weight: math.unit(70, "lb"),
  12194. name: "Back",
  12195. image: {
  12196. source: "./media/characters/quincy/back.svg",
  12197. extra: 3041 / 2751
  12198. }
  12199. },
  12200. flying: {
  12201. height: math.unit(5 + 4 / 12, "feet"),
  12202. weight: math.unit(70, "lb"),
  12203. name: "Flying",
  12204. image: {
  12205. source: "./media/characters/quincy/flying.svg",
  12206. extra: 1044 / 930
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Micro",
  12213. height: math.unit(3, "cm")
  12214. },
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(5 + 9 / 12, "feet")
  12218. },
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(200, "meters"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Megamacro",
  12226. height: math.unit(1000, "meters")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(3 + 11/12, "feet"),
  12235. weight: math.unit(50, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/vanrel/front.svg",
  12239. extra: 1104/949,
  12240. bottom: 52/1156
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(3 + 11/12, "feet"),
  12245. weight: math.unit(50, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/vanrel/back.svg",
  12249. extra: 1119/976,
  12250. bottom: 37/1156
  12251. }
  12252. },
  12253. tome: {
  12254. height: math.unit(1.35, "feet"),
  12255. weight: math.unit(10, "lb"),
  12256. name: "Vanrel's Tome",
  12257. rename: true,
  12258. image: {
  12259. source: "./media/characters/vanrel/tome.svg"
  12260. }
  12261. },
  12262. beans: {
  12263. height: math.unit(0.89, "feet"),
  12264. name: "Beans",
  12265. image: {
  12266. source: "./media/characters/vanrel/beans.svg"
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(3 + 11/12, "feet"),
  12274. default: true
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(7 + 5 / 12, "feet"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/kuiper-vanrel/front.svg",
  12286. extra: 1219/1169,
  12287. bottom: 69/1288
  12288. }
  12289. },
  12290. back: {
  12291. height: math.unit(7 + 5 / 12, "feet"),
  12292. name: "Back",
  12293. image: {
  12294. source: "./media/characters/kuiper-vanrel/back.svg",
  12295. extra: 1236/1193,
  12296. bottom: 27/1263
  12297. }
  12298. },
  12299. foot: {
  12300. height: math.unit(0.55, "meters"),
  12301. name: "Foot",
  12302. image: {
  12303. source: "./media/characters/kuiper-vanrel/foot.svg",
  12304. }
  12305. },
  12306. battle: {
  12307. height: math.unit(6.824, "feet"),
  12308. name: "Battle",
  12309. image: {
  12310. source: "./media/characters/kuiper-vanrel/battle.svg",
  12311. extra: 1466 / 1327,
  12312. bottom: 29 / 1492.5
  12313. }
  12314. },
  12315. meerkui: {
  12316. height: math.unit(18, "inches"),
  12317. name: "Meerkui",
  12318. image: {
  12319. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12320. extra: 1354/1289,
  12321. bottom: 69/1423
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Normal",
  12328. height: math.unit(7 + 5 / 12, "feet"),
  12329. default: true
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(8 + 5 / 12, "feet"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/keset-vanrel/front.svg",
  12341. extra: 1231/1148,
  12342. bottom: 82/1313
  12343. }
  12344. },
  12345. back: {
  12346. height: math.unit(8 + 5 / 12, "feet"),
  12347. name: "Back",
  12348. image: {
  12349. source: "./media/characters/keset-vanrel/back.svg",
  12350. extra: 1240/1174,
  12351. bottom: 33/1273
  12352. }
  12353. },
  12354. hand: {
  12355. height: math.unit(0.6, "meters"),
  12356. name: "Hand",
  12357. image: {
  12358. source: "./media/characters/keset-vanrel/hand.svg"
  12359. }
  12360. },
  12361. foot: {
  12362. height: math.unit(0.94978, "meters"),
  12363. name: "Foot",
  12364. image: {
  12365. source: "./media/characters/keset-vanrel/foot.svg"
  12366. }
  12367. },
  12368. battle: {
  12369. height: math.unit(7.408, "feet"),
  12370. name: "Battle",
  12371. image: {
  12372. source: "./media/characters/keset-vanrel/battle.svg",
  12373. extra: 1890 / 1386,
  12374. bottom: 73.28 / 1970
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(8 + 5 / 12, "feet"),
  12382. default: true
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/neos/front.svg",
  12395. extra: 1696 / 992,
  12396. bottom: 0.14
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(54, "cm"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(100, "m")
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(10, "km")
  12413. },
  12414. {
  12415. name: "Megamacro+",
  12416. height: math.unit(100, "km")
  12417. },
  12418. {
  12419. name: "Gigamacro",
  12420. height: math.unit(100, "Mm")
  12421. },
  12422. {
  12423. name: "Teramacro",
  12424. height: math.unit(100, "Gm")
  12425. },
  12426. {
  12427. name: "Examacro",
  12428. height: math.unit(100, "Em")
  12429. },
  12430. {
  12431. name: "Godly",
  12432. height: math.unit(10000, "Ym")
  12433. },
  12434. {
  12435. name: "Beyond Godly",
  12436. height: math.unit(25, "multiverses")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12442. {
  12443. feminine: {
  12444. height: math.unit(5, "feet"),
  12445. weight: math.unit(100, "lb"),
  12446. name: "Feminine",
  12447. image: {
  12448. source: "./media/characters/sammy-mouse/feminine.svg",
  12449. extra: 2526 / 2425,
  12450. bottom: 0.123
  12451. }
  12452. },
  12453. masculine: {
  12454. height: math.unit(5, "feet"),
  12455. weight: math.unit(100, "lb"),
  12456. name: "Masculine",
  12457. image: {
  12458. source: "./media/characters/sammy-mouse/masculine.svg",
  12459. extra: 2526 / 2425,
  12460. bottom: 0.123
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(5, "inches")
  12468. },
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(5, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(60, "feet")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(4, "feet"),
  12485. weight: math.unit(50, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/kole/front.svg",
  12489. extra: 1423 / 1303,
  12490. bottom: 0.025
  12491. }
  12492. },
  12493. back: {
  12494. height: math.unit(4, "feet"),
  12495. weight: math.unit(50, "lb"),
  12496. name: "Back",
  12497. image: {
  12498. source: "./media/characters/kole/back.svg",
  12499. extra: 1426 / 1280,
  12500. bottom: 0.02
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(4, "feet"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(2.5, "feet"),
  12517. weight: math.unit(32, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/rufran/front.svg",
  12521. extra: 1313/885,
  12522. bottom: 94/1407
  12523. }
  12524. },
  12525. side: {
  12526. height: math.unit(2.5, "feet"),
  12527. weight: math.unit(32, "lb"),
  12528. name: "Side",
  12529. image: {
  12530. source: "./media/characters/rufran/side.svg",
  12531. extra: 1109/852,
  12532. bottom: 118/1227
  12533. }
  12534. },
  12535. back: {
  12536. height: math.unit(2.5, "feet"),
  12537. weight: math.unit(32, "lb"),
  12538. name: "Back",
  12539. image: {
  12540. source: "./media/characters/rufran/back.svg",
  12541. extra: 1280/878,
  12542. bottom: 131/1411
  12543. }
  12544. },
  12545. mouth: {
  12546. height: math.unit(1.13, "feet"),
  12547. name: "Mouth",
  12548. image: {
  12549. source: "./media/characters/rufran/mouth.svg"
  12550. }
  12551. },
  12552. foot: {
  12553. height: math.unit(1.33, "feet"),
  12554. name: "Foot",
  12555. image: {
  12556. source: "./media/characters/rufran/foot.svg"
  12557. }
  12558. },
  12559. koboldFront: {
  12560. height: math.unit(2 + 6 / 12, "feet"),
  12561. weight: math.unit(20, "lb"),
  12562. name: "Front (Kobold)",
  12563. image: {
  12564. source: "./media/characters/rufran/kobold-front.svg",
  12565. extra: 2041 / 1839,
  12566. bottom: 0.055
  12567. }
  12568. },
  12569. koboldBack: {
  12570. height: math.unit(2 + 6 / 12, "feet"),
  12571. weight: math.unit(20, "lb"),
  12572. name: "Back (Kobold)",
  12573. image: {
  12574. source: "./media/characters/rufran/kobold-back.svg",
  12575. extra: 2054 / 1839,
  12576. bottom: 0.01
  12577. }
  12578. },
  12579. koboldHand: {
  12580. height: math.unit(0.2166, "meters"),
  12581. name: "Hand (Kobold)",
  12582. image: {
  12583. source: "./media/characters/rufran/kobold-hand.svg"
  12584. }
  12585. },
  12586. koboldFoot: {
  12587. height: math.unit(0.185, "meters"),
  12588. name: "Foot (Kobold)",
  12589. image: {
  12590. source: "./media/characters/rufran/kobold-foot.svg"
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Micro",
  12597. height: math.unit(1, "inch")
  12598. },
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(2 + 6 / 12, "feet"),
  12602. default: true
  12603. },
  12604. {
  12605. name: "Big",
  12606. height: math.unit(60, "feet")
  12607. },
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(325, "feet")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(0.3, "meters"),
  12619. weight: math.unit(3.5, "kg"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/chip/front.svg",
  12623. extra: 748 / 674
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(1, "inch"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12637. {
  12638. side: {
  12639. height: math.unit(2.3, "meters"),
  12640. weight: math.unit(3500, "lb"),
  12641. name: "Side",
  12642. image: {
  12643. source: "./media/characters/torvid/side.svg",
  12644. extra: 1972 / 722,
  12645. bottom: 0.035
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(2.3, "meters"),
  12653. default: true
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12659. {
  12660. front: {
  12661. height: math.unit(2, "meters"),
  12662. weight: math.unit(150.5, "kg"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/susan/front.svg",
  12666. extra: 693 / 635,
  12667. bottom: 0.05
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(505, "miles"),
  12675. default: true
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(6, "feet"),
  12684. weight: math.unit(150, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/raindrops/front.svg",
  12688. extra: 2655 / 2461,
  12689. bottom: 49 / 2705
  12690. }
  12691. },
  12692. back: {
  12693. height: math.unit(6, "feet"),
  12694. weight: math.unit(150, "lb"),
  12695. name: "Back",
  12696. image: {
  12697. source: "./media/characters/raindrops/back.svg",
  12698. extra: 2574 / 2400,
  12699. bottom: 65 / 2634
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Micro",
  12706. height: math.unit(6, "inches")
  12707. },
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(6 + 2 / 12, "feet")
  12711. },
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(131, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(15, "miles")
  12720. },
  12721. {
  12722. name: "Gigamacro",
  12723. height: math.unit(4000, "miles")
  12724. },
  12725. {
  12726. name: "Teramacro",
  12727. height: math.unit(315000, "miles")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(2.794, "meters"),
  12736. weight: math.unit(325, "kg"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/tezwa/front.svg",
  12740. extra: 2083 / 1906,
  12741. bottom: 0.031
  12742. }
  12743. },
  12744. foot: {
  12745. height: math.unit(0.687, "meters"),
  12746. name: "Foot",
  12747. image: {
  12748. source: "./media/characters/tezwa/foot.svg"
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(9 + 2 / 12, "feet"),
  12756. default: true
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(58, "feet"),
  12765. weight: math.unit(89000, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/typhus/front.svg",
  12769. extra: 816 / 800,
  12770. bottom: 0.065
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Macro",
  12777. height: math.unit(58, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(12, "feet"),
  12787. weight: math.unit(6, "tonnes"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/lyra-von-wulf/front.svg",
  12791. extra: 1,
  12792. bottom: 0.10
  12793. }
  12794. },
  12795. frontMecha: {
  12796. height: math.unit(12, "feet"),
  12797. weight: math.unit(12, "tonnes"),
  12798. name: "Front (Mecha)",
  12799. image: {
  12800. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12801. extra: 1,
  12802. bottom: 0.042
  12803. }
  12804. },
  12805. maw: {
  12806. height: math.unit(2.2, "feet"),
  12807. name: "Maw",
  12808. image: {
  12809. source: "./media/characters/lyra-von-wulf/maw.svg"
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Normal",
  12816. height: math.unit(12, "feet"),
  12817. default: true
  12818. },
  12819. {
  12820. name: "Classic",
  12821. height: math.unit(50, "feet")
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(500, "feet")
  12826. },
  12827. {
  12828. name: "Megamacro",
  12829. height: math.unit(1, "mile")
  12830. },
  12831. {
  12832. name: "Gigamacro",
  12833. height: math.unit(400, "miles")
  12834. },
  12835. {
  12836. name: "Teramacro",
  12837. height: math.unit(22000, "miles")
  12838. },
  12839. {
  12840. name: "Solarmacro",
  12841. height: math.unit(8600000, "miles")
  12842. },
  12843. {
  12844. name: "Galactic",
  12845. height: math.unit(1057000, "lightyears")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6 + 10 / 12, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/dixon/front.svg",
  12858. extra: 3361 / 3209,
  12859. bottom: 0.01
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(6 + 10 / 12, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Big",
  12871. height: math.unit(12, "meters")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(500, "meters")
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(2, "km")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(185, "cm"),
  12888. weight: math.unit(68, "kg"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/kauko/front.svg",
  12892. extra: 1455 / 1421,
  12893. bottom: 0.03
  12894. }
  12895. },
  12896. back: {
  12897. height: math.unit(185, "cm"),
  12898. weight: math.unit(68, "kg"),
  12899. name: "Back",
  12900. image: {
  12901. source: "./media/characters/kauko/back.svg",
  12902. extra: 1455 / 1421,
  12903. bottom: 0.004
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(185, "cm"),
  12911. default: true
  12912. },
  12913. ]
  12914. ))
  12915. characterMakers.push(() => makeCharacter(
  12916. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12917. {
  12918. front: {
  12919. height: math.unit(6, "feet"),
  12920. weight: math.unit(150, "kg"),
  12921. name: "Front",
  12922. image: {
  12923. source: "./media/characters/varg/front.svg",
  12924. extra: 1108 / 1018,
  12925. bottom: 0.0375
  12926. }
  12927. },
  12928. },
  12929. [
  12930. {
  12931. name: "Normal",
  12932. height: math.unit(5, "meters")
  12933. },
  12934. {
  12935. name: "Macro",
  12936. height: math.unit(200, "meters")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(20, "kilometers")
  12941. },
  12942. {
  12943. name: "True Size",
  12944. height: math.unit(211, "km"),
  12945. default: true
  12946. },
  12947. {
  12948. name: "Gigamacro",
  12949. height: math.unit(1000, "km")
  12950. },
  12951. {
  12952. name: "Gigamacro+",
  12953. height: math.unit(8000, "km")
  12954. },
  12955. {
  12956. name: "Teramacro",
  12957. height: math.unit(1000000, "km")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(7 + 7 / 12, "feet"),
  12966. weight: math.unit(267, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/dayza/front.svg",
  12970. extra: 1262 / 1200,
  12971. bottom: 0.035
  12972. }
  12973. },
  12974. side: {
  12975. height: math.unit(7 + 7 / 12, "feet"),
  12976. weight: math.unit(267, "lb"),
  12977. name: "Side",
  12978. image: {
  12979. source: "./media/characters/dayza/side.svg",
  12980. extra: 1295 / 1245,
  12981. bottom: 0.05
  12982. }
  12983. },
  12984. back: {
  12985. height: math.unit(7 + 7 / 12, "feet"),
  12986. weight: math.unit(267, "lb"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/dayza/back.svg",
  12990. extra: 1241 / 1170
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Normal",
  12997. height: math.unit(7 + 7 / 12, "feet"),
  12998. default: true
  12999. },
  13000. {
  13001. name: "Macro",
  13002. height: math.unit(155, "feet")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(6 + 5 / 12, "feet"),
  13011. weight: math.unit(160, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/xanthos/front.svg",
  13015. extra: 1,
  13016. bottom: 0.04
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(6 + 5 / 12, "feet"),
  13021. weight: math.unit(160, "lb"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/xanthos/back.svg",
  13025. extra: 1,
  13026. bottom: 0.03
  13027. }
  13028. },
  13029. hand: {
  13030. height: math.unit(0.928, "feet"),
  13031. name: "Hand",
  13032. image: {
  13033. source: "./media/characters/xanthos/hand.svg"
  13034. }
  13035. },
  13036. foot: {
  13037. height: math.unit(1.286, "feet"),
  13038. name: "Foot",
  13039. image: {
  13040. source: "./media/characters/xanthos/foot.svg"
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Normal",
  13047. height: math.unit(6 + 5 / 12, "feet"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Normal+",
  13052. height: math.unit(6, "meters")
  13053. },
  13054. {
  13055. name: "Macro",
  13056. height: math.unit(40, "feet")
  13057. },
  13058. {
  13059. name: "Macro+",
  13060. height: math.unit(200, "meters")
  13061. },
  13062. {
  13063. name: "Megamacro",
  13064. height: math.unit(20, "km")
  13065. },
  13066. {
  13067. name: "Megamacro+",
  13068. height: math.unit(100, "km")
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(200, "megameters")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(1.5, "gigameters")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(6 + 3 / 12, "feet"),
  13085. weight: math.unit(215, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/grynn/front.svg",
  13089. extra: 4627 / 4209,
  13090. bottom: 0.047
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Micro",
  13097. height: math.unit(6, "inches")
  13098. },
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(6 + 3 / 12, "feet"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Big",
  13106. height: math.unit(104, "feet")
  13107. },
  13108. {
  13109. name: "Macro",
  13110. height: math.unit(944, "feet")
  13111. },
  13112. {
  13113. name: "Macro+",
  13114. height: math.unit(9480, "feet")
  13115. },
  13116. {
  13117. name: "Megamacro",
  13118. height: math.unit(78752, "feet")
  13119. },
  13120. {
  13121. name: "Megamacro+",
  13122. height: math.unit(630128, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro++",
  13126. height: math.unit(3150695, "feet")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(7 + 5 / 12, "feet"),
  13135. weight: math.unit(450, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/mocha-aura/front.svg",
  13139. extra: 1907 / 1817,
  13140. bottom: 0.04
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(7 + 5 / 12, "feet"),
  13145. weight: math.unit(450, "lb"),
  13146. name: "Back",
  13147. image: {
  13148. source: "./media/characters/mocha-aura/back.svg",
  13149. extra: 1900 / 1825,
  13150. bottom: 0.045
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Nano",
  13157. height: math.unit(1, "nm")
  13158. },
  13159. {
  13160. name: "Megamicro",
  13161. height: math.unit(1, "mm")
  13162. },
  13163. {
  13164. name: "Micro",
  13165. height: math.unit(3, "inches")
  13166. },
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(7 + 5 / 12, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(30, "feet")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(3500, "feet")
  13179. },
  13180. {
  13181. name: "Teramacro",
  13182. height: math.unit(500000, "miles")
  13183. },
  13184. {
  13185. name: "Petamacro",
  13186. height: math.unit(50000000000000000, "parsecs")
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13192. {
  13193. front: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(150, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/ilisha-devya/front.svg",
  13199. extra: 1053/1049,
  13200. bottom: 270/1323
  13201. }
  13202. },
  13203. back: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Back",
  13207. image: {
  13208. source: "./media/characters/ilisha-devya/back.svg",
  13209. extra: 1131/1128,
  13210. bottom: 39/1170
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(500, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(10, "miles")
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(100000, "miles")
  13227. },
  13228. {
  13229. name: "Examacro",
  13230. height: math.unit(1e9, "lightyears")
  13231. },
  13232. {
  13233. name: "Omniversal",
  13234. height: math.unit(1e33, "lightyears")
  13235. },
  13236. {
  13237. name: "Beyond Infinite",
  13238. height: math.unit(1e100, "lightyears")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13244. {
  13245. Side: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Side",
  13249. image: {
  13250. source: "./media/characters/mira/side.svg",
  13251. extra: 900 / 799,
  13252. bottom: 0.02
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Human Size",
  13259. height: math.unit(6, "feet")
  13260. },
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(100, "feet"),
  13264. default: true
  13265. },
  13266. {
  13267. name: "Megamacro",
  13268. height: math.unit(10, "miles")
  13269. },
  13270. {
  13271. name: "Gigamacro",
  13272. height: math.unit(25000, "miles")
  13273. },
  13274. {
  13275. name: "Teramacro",
  13276. height: math.unit(300, "AU")
  13277. },
  13278. {
  13279. name: "Full Size",
  13280. height: math.unit(4.5e10, "lightyears")
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(150, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/holly/front.svg",
  13293. extra: 639 / 606
  13294. }
  13295. },
  13296. back: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(150, "lb"),
  13299. name: "Back",
  13300. image: {
  13301. source: "./media/characters/holly/back.svg",
  13302. extra: 623 / 598
  13303. }
  13304. },
  13305. frontWorking: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front (Working)",
  13309. image: {
  13310. source: "./media/characters/holly/front-working.svg",
  13311. extra: 607 / 577,
  13312. bottom: 0.048
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(12 + 3 / 12, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/porter/front.svg",
  13333. extra: 1,
  13334. bottom: 0.01
  13335. }
  13336. },
  13337. frontRobes: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front (Robes)",
  13341. image: {
  13342. source: "./media/characters/porter/front-robes.svg",
  13343. extra: 1.01,
  13344. bottom: 0.01
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(11 + 9 / 12, "feet"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13358. {
  13359. legendary: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Legendary",
  13363. image: {
  13364. source: "./media/characters/lucy/legendary.svg",
  13365. extra: 1355 / 1100,
  13366. bottom: 0.045
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Legendary",
  13373. height: math.unit(86882 * 2, "miles"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/drusilla/front.svg",
  13387. extra: 678 / 635,
  13388. bottom: 0.03
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/drusilla/back.svg",
  13397. extra: 678 / 635,
  13398. bottom: 0.005
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(100, "feet")
  13406. },
  13407. {
  13408. name: "Canon Height",
  13409. height: math.unit(2000, "feet"),
  13410. default: true
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(6, "feet"),
  13419. weight: math.unit(180, "lb"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/renard-thatch/front.svg",
  13423. extra: 2411 / 2275,
  13424. bottom: 0.01
  13425. }
  13426. },
  13427. frontPosing: {
  13428. height: math.unit(6, "feet"),
  13429. weight: math.unit(180, "lb"),
  13430. name: "Front (Posing)",
  13431. image: {
  13432. source: "./media/characters/renard-thatch/front-posing.svg",
  13433. extra: 2381 / 2261,
  13434. bottom: 0.01
  13435. }
  13436. },
  13437. back: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(180, "lb"),
  13440. name: "Back",
  13441. image: {
  13442. source: "./media/characters/renard-thatch/back.svg",
  13443. extra: 2428 / 2288
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(3, "inches")
  13451. },
  13452. {
  13453. name: "Default",
  13454. height: math.unit(6, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(75, "feet")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(1450, "feet"),
  13468. weight: math.unit(1.21e6, "tons"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/sekvra/front.svg",
  13472. extra: 1193/1190,
  13473. bottom: 78/1271
  13474. }
  13475. },
  13476. side: {
  13477. height: math.unit(1450, "feet"),
  13478. weight: math.unit(1.21e6, "tons"),
  13479. name: "Side",
  13480. image: {
  13481. source: "./media/characters/sekvra/side.svg",
  13482. extra: 1193/1190,
  13483. bottom: 52/1245
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(1450, "feet"),
  13488. weight: math.unit(1.21e6, "tons"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/sekvra/back.svg",
  13492. extra: 1219/1216,
  13493. bottom: 21/1240
  13494. }
  13495. },
  13496. frontClothed: {
  13497. height: math.unit(1450, "feet"),
  13498. weight: math.unit(1.21e6, "tons"),
  13499. name: "Front (Clothed)",
  13500. image: {
  13501. source: "./media/characters/sekvra/front-clothed.svg",
  13502. extra: 1192/1189,
  13503. bottom: 79/1271
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(1450, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Megamacro",
  13515. height: math.unit(15000, "feet")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/carmine/front.svg",
  13528. extra: 1,
  13529. bottom: 0.035
  13530. }
  13531. },
  13532. frontArmor: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(150, "lb"),
  13535. name: "Front (Armor)",
  13536. image: {
  13537. source: "./media/characters/carmine/front-armor.svg",
  13538. extra: 1,
  13539. bottom: 0.035
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Large",
  13546. height: math.unit(1, "mile")
  13547. },
  13548. {
  13549. name: "Huge",
  13550. height: math.unit(40, "miles"),
  13551. default: true
  13552. },
  13553. {
  13554. name: "Colossal",
  13555. height: math.unit(2500, "miles")
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/elyssia/front.svg",
  13568. extra: 2201 / 2035,
  13569. bottom: 0.05
  13570. }
  13571. },
  13572. frontClothed: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Front (Clothed)",
  13576. image: {
  13577. source: "./media/characters/elyssia/front-clothed.svg",
  13578. extra: 2201 / 2035,
  13579. bottom: 0.05
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/elyssia/back.svg",
  13588. extra: 2201 / 2035,
  13589. bottom: 0.013
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Smaller",
  13596. height: math.unit(150, "feet")
  13597. },
  13598. {
  13599. name: "Standard",
  13600. height: math.unit(1400, "feet"),
  13601. default: true
  13602. },
  13603. {
  13604. name: "Distracted",
  13605. height: math.unit(15000, "feet")
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(7 + 4/12, "feet"),
  13614. weight: math.unit(690, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/geno-maxwell/front.svg",
  13618. extra: 984/856,
  13619. bottom: 87/1071
  13620. }
  13621. },
  13622. back: {
  13623. height: math.unit(7 + 4/12, "feet"),
  13624. weight: math.unit(690, "lb"),
  13625. name: "Back",
  13626. image: {
  13627. source: "./media/characters/geno-maxwell/back.svg",
  13628. extra: 981/854,
  13629. bottom: 57/1038
  13630. }
  13631. },
  13632. frontCostume: {
  13633. height: math.unit(7 + 4/12, "feet"),
  13634. weight: math.unit(690, "lb"),
  13635. name: "Front (Costume)",
  13636. image: {
  13637. source: "./media/characters/geno-maxwell/front-costume.svg",
  13638. extra: 984/856,
  13639. bottom: 87/1071
  13640. }
  13641. },
  13642. backcostume: {
  13643. height: math.unit(7 + 4/12, "feet"),
  13644. weight: math.unit(690, "lb"),
  13645. name: "Back (Costume)",
  13646. image: {
  13647. source: "./media/characters/geno-maxwell/back-costume.svg",
  13648. extra: 981/854,
  13649. bottom: 57/1038
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Micro",
  13656. height: math.unit(3, "inches")
  13657. },
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(7 + 4 / 12, "feet"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(220, "feet")
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(11, "miles")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(7 + 4/12, "feet"),
  13678. weight: math.unit(750, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/regena-maxwell/front.svg",
  13682. extra: 984/856,
  13683. bottom: 87/1071
  13684. }
  13685. },
  13686. back: {
  13687. height: math.unit(7 + 4/12, "feet"),
  13688. weight: math.unit(750, "lb"),
  13689. name: "Back",
  13690. image: {
  13691. source: "./media/characters/regena-maxwell/back.svg",
  13692. extra: 981/854,
  13693. bottom: 57/1038
  13694. }
  13695. },
  13696. frontCostume: {
  13697. height: math.unit(7 + 4/12, "feet"),
  13698. weight: math.unit(750, "lb"),
  13699. name: "Front (Costume)",
  13700. image: {
  13701. source: "./media/characters/regena-maxwell/front-costume.svg",
  13702. extra: 984/856,
  13703. bottom: 87/1071
  13704. }
  13705. },
  13706. backcostume: {
  13707. height: math.unit(7 + 4/12, "feet"),
  13708. weight: math.unit(750, "lb"),
  13709. name: "Back (Costume)",
  13710. image: {
  13711. source: "./media/characters/regena-maxwell/back-costume.svg",
  13712. extra: 981/854,
  13713. bottom: 57/1038
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(7 + 4 / 12, "feet"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(220, "feet")
  13726. },
  13727. {
  13728. name: "Megamacro",
  13729. height: math.unit(11, "miles")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13742. extra: 860 / 690,
  13743. bottom: 0.03
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(1.7, "meters"),
  13751. default: true
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(150, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/quilly/front.svg",
  13764. extra: 890 / 776
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Gigamacro",
  13771. height: math.unit(404090, "miles"),
  13772. default: true
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(7 + 8 / 12, "feet"),
  13781. weight: math.unit(350, "lb"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/tempest/front.svg",
  13785. extra: 1175 / 1086,
  13786. bottom: 0.02
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(7 + 8 / 12, "feet"),
  13794. default: true
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13800. {
  13801. side: {
  13802. height: math.unit(4 + 5 / 12, "feet"),
  13803. weight: math.unit(80, "lb"),
  13804. name: "Side",
  13805. image: {
  13806. source: "./media/characters/rodger/side.svg",
  13807. extra: 1235 / 1118
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Micro",
  13814. height: math.unit(1, "inch")
  13815. },
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(4 + 5 / 12, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(120, "feet")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/danyel/front.svg",
  13836. extra: 1185 / 1123,
  13837. bottom: 0.05
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Shrunken",
  13844. height: math.unit(0.5, "mm")
  13845. },
  13846. {
  13847. name: "Micro",
  13848. height: math.unit(1, "mm"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Upsized",
  13853. height: math.unit(5 + 5 / 12, "feet")
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(5 + 6 / 12, "feet"),
  13862. weight: math.unit(200, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/vivian-bijoux/front.svg",
  13866. extra: 1217/1209,
  13867. bottom: 76/1293
  13868. }
  13869. },
  13870. back: {
  13871. height: math.unit(5 + 6 / 12, "feet"),
  13872. weight: math.unit(200, "lb"),
  13873. name: "Back",
  13874. image: {
  13875. source: "./media/characters/vivian-bijoux/back.svg",
  13876. extra: 1214/1208,
  13877. bottom: 51/1265
  13878. }
  13879. },
  13880. dressed: {
  13881. height: math.unit(5 + 6 / 12, "feet"),
  13882. weight: math.unit(200, "lb"),
  13883. name: "Dressed",
  13884. image: {
  13885. source: "./media/characters/vivian-bijoux/dressed.svg",
  13886. extra: 1217/1209,
  13887. bottom: 76/1293
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5 + 6 / 12, "feet"),
  13895. default: true
  13896. },
  13897. {
  13898. name: "Bad Dream",
  13899. height: math.unit(500, "feet")
  13900. },
  13901. {
  13902. name: "Nightmare",
  13903. height: math.unit(500, "miles")
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(6 + 1 / 12, "feet"),
  13912. weight: math.unit(260, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/zeta/front.svg",
  13916. extra: 1968 / 1889,
  13917. bottom: 0.06
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(6 + 1 / 12, "feet"),
  13922. weight: math.unit(260, "lb"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/zeta/back.svg",
  13926. extra: 1944 / 1858,
  13927. bottom: 0.03
  13928. }
  13929. },
  13930. hand: {
  13931. height: math.unit(1.112, "feet"),
  13932. name: "Hand",
  13933. image: {
  13934. source: "./media/characters/zeta/hand.svg"
  13935. }
  13936. },
  13937. foot: {
  13938. height: math.unit(1.48, "feet"),
  13939. name: "Foot",
  13940. image: {
  13941. source: "./media/characters/zeta/foot.svg"
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(6, "inches")
  13949. },
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(6 + 1 / 12, "feet"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(20, "feet")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(6, "feet"),
  13966. weight: math.unit(150, "lb"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/jamie-larsen/front.svg",
  13970. extra: 962 / 933,
  13971. bottom: 0.02
  13972. }
  13973. },
  13974. back: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(150, "lb"),
  13977. name: "Back",
  13978. image: {
  13979. source: "./media/characters/jamie-larsen/back.svg",
  13980. extra: 997 / 946
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(28 + 7 / 12, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Macro+",
  13992. height: math.unit(180, "feet")
  13993. },
  13994. {
  13995. name: "Megamacro",
  13996. height: math.unit(10, "miles")
  13997. },
  13998. {
  13999. name: "Gigamacro",
  14000. height: math.unit(200000, "miles")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(120, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/vance/front.svg",
  14013. extra: 1980 / 1890,
  14014. bottom: 0.09
  14015. }
  14016. },
  14017. back: {
  14018. height: math.unit(6, "feet"),
  14019. weight: math.unit(120, "lb"),
  14020. name: "Back",
  14021. image: {
  14022. source: "./media/characters/vance/back.svg",
  14023. extra: 2081 / 1994,
  14024. bottom: 0.014
  14025. }
  14026. },
  14027. hand: {
  14028. height: math.unit(0.88, "feet"),
  14029. name: "Hand",
  14030. image: {
  14031. source: "./media/characters/vance/hand.svg"
  14032. }
  14033. },
  14034. foot: {
  14035. height: math.unit(0.64, "feet"),
  14036. name: "Foot",
  14037. image: {
  14038. source: "./media/characters/vance/foot.svg"
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Small",
  14045. height: math.unit(90, "feet"),
  14046. default: true
  14047. },
  14048. {
  14049. name: "Macro",
  14050. height: math.unit(100, "meters")
  14051. },
  14052. {
  14053. name: "Megamacro",
  14054. height: math.unit(15, "miles")
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14060. {
  14061. front: {
  14062. height: math.unit(6, "feet"),
  14063. weight: math.unit(180, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/xochitl/front.svg",
  14067. extra: 2297 / 2261,
  14068. bottom: 0.065
  14069. }
  14070. },
  14071. back: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(180, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/xochitl/back.svg",
  14077. extra: 2386 / 2354,
  14078. bottom: 0.01
  14079. }
  14080. },
  14081. foot: {
  14082. height: math.unit(6 / 5 * 1.15, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Foot",
  14085. image: {
  14086. source: "./media/characters/xochitl/foot.svg"
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Macro",
  14093. height: math.unit(80, "feet")
  14094. },
  14095. {
  14096. name: "Macro+",
  14097. height: math.unit(400, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Gigamacro",
  14102. height: math.unit(80000, "miles")
  14103. },
  14104. {
  14105. name: "Gigamacro+",
  14106. height: math.unit(400000, "miles")
  14107. },
  14108. {
  14109. name: "Teramacro",
  14110. height: math.unit(300, "AU")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(6, "feet"),
  14119. weight: math.unit(150, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/vincent/front.svg",
  14123. extra: 1130 / 1080,
  14124. bottom: 0.055
  14125. }
  14126. },
  14127. beak: {
  14128. height: math.unit(6 * 0.1, "feet"),
  14129. name: "Beak",
  14130. image: {
  14131. source: "./media/characters/vincent/beak.svg"
  14132. }
  14133. },
  14134. hand: {
  14135. height: math.unit(6 * 0.85, "feet"),
  14136. weight: math.unit(150, "lb"),
  14137. name: "Hand",
  14138. image: {
  14139. source: "./media/characters/vincent/hand.svg"
  14140. }
  14141. },
  14142. foot: {
  14143. height: math.unit(6 * 0.19, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Foot",
  14146. image: {
  14147. source: "./media/characters/vincent/foot.svg"
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Base",
  14154. height: math.unit(6 + 5 / 12, "feet"),
  14155. default: true
  14156. },
  14157. {
  14158. name: "Macro",
  14159. height: math.unit(300, "feet")
  14160. },
  14161. {
  14162. name: "Megamacro",
  14163. height: math.unit(2, "miles")
  14164. },
  14165. {
  14166. name: "Gigamacro",
  14167. height: math.unit(1000, "miles")
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14173. {
  14174. front: {
  14175. height: math.unit(2, "meters"),
  14176. weight: math.unit(500, "kg"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/coatl/front.svg",
  14180. extra: 3948 / 3500,
  14181. bottom: 0.082
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Normal",
  14188. height: math.unit(4, "meters")
  14189. },
  14190. {
  14191. name: "Macro",
  14192. height: math.unit(100, "meters"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Macro+",
  14197. height: math.unit(300, "meters")
  14198. },
  14199. {
  14200. name: "Megamacro",
  14201. height: math.unit(3, "gigameters")
  14202. },
  14203. {
  14204. name: "Megamacro+",
  14205. height: math.unit(300, "terameters")
  14206. },
  14207. {
  14208. name: "Megamacro++",
  14209. height: math.unit(3, "lightyears")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(50, "kg"),
  14219. name: "front",
  14220. image: {
  14221. source: "./media/characters/shiroryu/front.svg",
  14222. extra: 1990 / 1935
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Mortal Mingling",
  14229. height: math.unit(3, "meters")
  14230. },
  14231. {
  14232. name: "Kaiju-ish",
  14233. height: math.unit(250, "meters")
  14234. },
  14235. {
  14236. name: "Somewhat Godly",
  14237. height: math.unit(400, "km"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Planetary",
  14242. height: math.unit(300, "megameters")
  14243. },
  14244. {
  14245. name: "Galaxy-dwarfing",
  14246. height: math.unit(450, "kiloparsecs")
  14247. },
  14248. {
  14249. name: "Universe Eater",
  14250. height: math.unit(150, "gigaparsecs")
  14251. },
  14252. {
  14253. name: "Almost Immeasurable",
  14254. height: math.unit(1.3e266, "yottaparsecs")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/umeko/front.svg",
  14267. extra: 1,
  14268. bottom: 0.019
  14269. }
  14270. },
  14271. frontArmored: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Front (Armored)",
  14275. image: {
  14276. source: "./media/characters/umeko/front-armored.svg",
  14277. extra: 1,
  14278. bottom: 0.021
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Macro",
  14285. height: math.unit(220, "feet"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Guardian Dragon",
  14290. height: math.unit(50, "miles")
  14291. },
  14292. {
  14293. name: "Cosmic",
  14294. height: math.unit(800000, "miles")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(150, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/cassidy/front.svg",
  14307. extra: 810/808,
  14308. bottom: 41/851
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Canon Height",
  14315. height: math.unit(120, "feet"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro+",
  14320. height: math.unit(400, "feet")
  14321. },
  14322. {
  14323. name: "Macro++",
  14324. height: math.unit(4000, "feet")
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(3, "miles")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/isaac/front.svg",
  14341. extra: 896 / 815,
  14342. bottom: 0.11
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Human Size",
  14349. height: math.unit(8, "feet"),
  14350. default: true
  14351. },
  14352. {
  14353. name: "Macro",
  14354. height: math.unit(400, "feet")
  14355. },
  14356. {
  14357. name: "Megamacro",
  14358. height: math.unit(50, "miles")
  14359. },
  14360. {
  14361. name: "Canon Height",
  14362. height: math.unit(200, "AU")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(72, "kg"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/sleekit/front.svg",
  14375. extra: 4693 / 4487,
  14376. bottom: 0.012
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Minimum Height",
  14383. height: math.unit(10, "meters")
  14384. },
  14385. {
  14386. name: "Smaller",
  14387. height: math.unit(25, "meters")
  14388. },
  14389. {
  14390. name: "Larger",
  14391. height: math.unit(38, "meters"),
  14392. default: true
  14393. },
  14394. {
  14395. name: "Maximum height",
  14396. height: math.unit(100, "meters")
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14402. {
  14403. front: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/nillia/front.svg",
  14409. extra: 2195 / 2037,
  14410. bottom: 0.005
  14411. }
  14412. },
  14413. back: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(150, "lb"),
  14416. name: "Back",
  14417. image: {
  14418. source: "./media/characters/nillia/back.svg",
  14419. extra: 2195 / 2037,
  14420. bottom: 0.005
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Canon Height",
  14427. height: math.unit(489, "feet"),
  14428. default: true
  14429. }
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(150, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/mesmyriza/front.svg",
  14441. extra: 2067 / 1784,
  14442. bottom: 0.035
  14443. }
  14444. },
  14445. foot: {
  14446. height: math.unit(6 / (250 / 35), "feet"),
  14447. name: "Foot",
  14448. image: {
  14449. source: "./media/characters/mesmyriza/foot.svg"
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(457, "meters"),
  14457. default: true
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(8, "megameters")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(250, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/saudade/front.svg",
  14474. extra: 1172 / 1139,
  14475. bottom: 0.035
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Micro",
  14482. height: math.unit(3, "inches")
  14483. },
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(6, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(50, "feet")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(2800, "feet")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(5 + 4 / 12, "feet"),
  14504. weight: math.unit(100, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/keireer/front.svg",
  14508. extra: 716 / 666,
  14509. bottom: 0.05
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5 + 4 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14523. {
  14524. front: {
  14525. height: math.unit(6, "feet"),
  14526. weight: math.unit(90, "kg"),
  14527. name: "Front",
  14528. image: {
  14529. source: "./media/characters/mirja/front.svg",
  14530. extra: 1789 / 1683,
  14531. bottom: 0.05
  14532. }
  14533. },
  14534. frontDressed: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(90, "lb"),
  14537. name: "Front (Dressed)",
  14538. image: {
  14539. source: "./media/characters/mirja/front-dressed.svg",
  14540. extra: 1789 / 1683,
  14541. bottom: 0.05
  14542. }
  14543. },
  14544. back: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(90, "lb"),
  14547. name: "Back",
  14548. image: {
  14549. source: "./media/characters/mirja/back.svg",
  14550. extra: 953 / 917,
  14551. bottom: 0.017
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "\"Incognito\"",
  14558. height: math.unit(3, "meters")
  14559. },
  14560. {
  14561. name: "Strolling Size",
  14562. height: math.unit(15, "km")
  14563. },
  14564. {
  14565. name: "Larger Strolling Size",
  14566. height: math.unit(400, "km")
  14567. },
  14568. {
  14569. name: "Preferred Size",
  14570. height: math.unit(5000, "km")
  14571. },
  14572. {
  14573. name: "True Size",
  14574. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(15, "feet"),
  14584. weight: math.unit(880, "kg"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/nightraver/front.svg",
  14588. extra: 2444 / 2160,
  14589. bottom: 0.027
  14590. }
  14591. },
  14592. back: {
  14593. height: math.unit(15, "feet"),
  14594. weight: math.unit(880, "kg"),
  14595. name: "Back",
  14596. image: {
  14597. source: "./media/characters/nightraver/back.svg",
  14598. extra: 2309 / 2180,
  14599. bottom: 0.005
  14600. }
  14601. },
  14602. sole: {
  14603. height: math.unit(2.878, "feet"),
  14604. name: "Sole",
  14605. image: {
  14606. source: "./media/characters/nightraver/sole.svg"
  14607. }
  14608. },
  14609. foot: {
  14610. height: math.unit(2.285, "feet"),
  14611. name: "Foot",
  14612. image: {
  14613. source: "./media/characters/nightraver/foot.svg"
  14614. }
  14615. },
  14616. maw: {
  14617. height: math.unit(2.67, "feet"),
  14618. name: "Maw",
  14619. image: {
  14620. source: "./media/characters/nightraver/maw.svg"
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Micro",
  14627. height: math.unit(1, "cm")
  14628. },
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(15, "feet"),
  14632. default: true
  14633. },
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(300, "feet")
  14637. },
  14638. {
  14639. name: "Megamacro",
  14640. height: math.unit(300, "miles")
  14641. },
  14642. {
  14643. name: "Gigamacro",
  14644. height: math.unit(10000, "miles")
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14650. {
  14651. side: {
  14652. height: math.unit(2, "inches"),
  14653. weight: math.unit(5, "grams"),
  14654. name: "Side",
  14655. image: {
  14656. source: "./media/characters/arc/side.svg"
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Micro",
  14663. height: math.unit(2, "inches"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(1.1938, "meters"),
  14673. weight: math.unit(54, "kg"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/nebula-shahar/front.svg",
  14677. extra: 1642 / 1436,
  14678. bottom: 0.06
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Megamicro",
  14685. height: math.unit(0.3, "mm")
  14686. },
  14687. {
  14688. name: "Micro",
  14689. height: math.unit(3, "cm")
  14690. },
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(138, "cm"),
  14694. default: true
  14695. },
  14696. {
  14697. name: "Macro",
  14698. height: math.unit(30, "m")
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5.24, "feet"),
  14707. weight: math.unit(150, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/shayla/front.svg",
  14711. extra: 1512 / 1414,
  14712. bottom: 0.01
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(5.24, "feet"),
  14717. weight: math.unit(150, "lb"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/shayla/back.svg",
  14721. extra: 1512 / 1414
  14722. }
  14723. },
  14724. hand: {
  14725. height: math.unit(0.7781496062992126, "feet"),
  14726. name: "Hand",
  14727. image: {
  14728. source: "./media/characters/shayla/hand.svg"
  14729. }
  14730. },
  14731. foot: {
  14732. height: math.unit(1.4206036745406823, "feet"),
  14733. name: "Foot",
  14734. image: {
  14735. source: "./media/characters/shayla/foot.svg"
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Micro",
  14742. height: math.unit(0.32, "feet")
  14743. },
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(5.24, "feet"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Macro",
  14751. height: math.unit(492.12, "feet")
  14752. },
  14753. {
  14754. name: "Megamacro",
  14755. height: math.unit(186.41, "miles")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(2.2, "m"),
  14764. weight: math.unit(120, "kg"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/pia-jr/front.svg",
  14768. extra: 1000 / 970,
  14769. bottom: 0.035
  14770. }
  14771. },
  14772. hand: {
  14773. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14774. name: "Hand",
  14775. image: {
  14776. source: "./media/characters/pia-jr/hand.svg"
  14777. }
  14778. },
  14779. paw: {
  14780. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14781. name: "Paw",
  14782. image: {
  14783. source: "./media/characters/pia-jr/paw.svg"
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Micro",
  14790. height: math.unit(1.2, "cm")
  14791. },
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(2.2, "m"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(180, "m")
  14800. },
  14801. {
  14802. name: "Megamacro",
  14803. height: math.unit(420, "km")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(2, "m"),
  14812. weight: math.unit(115, "kg"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/pia-sr/front.svg",
  14816. extra: 760 / 730,
  14817. bottom: 0.015
  14818. }
  14819. },
  14820. back: {
  14821. height: math.unit(2, "m"),
  14822. weight: math.unit(115, "kg"),
  14823. name: "Back",
  14824. image: {
  14825. source: "./media/characters/pia-sr/back.svg",
  14826. extra: 760 / 730,
  14827. bottom: 0.01
  14828. }
  14829. },
  14830. hand: {
  14831. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14832. name: "Hand",
  14833. image: {
  14834. source: "./media/characters/pia-sr/hand.svg"
  14835. }
  14836. },
  14837. foot: {
  14838. height: math.unit(1.83, "feet"),
  14839. name: "Foot",
  14840. image: {
  14841. source: "./media/characters/pia-sr/foot.svg"
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Micro",
  14848. height: math.unit(88, "mm")
  14849. },
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(2, "m"),
  14853. default: true
  14854. },
  14855. {
  14856. name: "Macro",
  14857. height: math.unit(200, "m")
  14858. },
  14859. {
  14860. name: "Megamacro",
  14861. height: math.unit(420, "km")
  14862. },
  14863. ]
  14864. ))
  14865. characterMakers.push(() => makeCharacter(
  14866. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14867. {
  14868. front: {
  14869. height: math.unit(8 + 2 / 12, "feet"),
  14870. weight: math.unit(300, "lb"),
  14871. name: "Front",
  14872. image: {
  14873. source: "./media/characters/kibibyte/front.svg",
  14874. extra: 2221 / 2098,
  14875. bottom: 0.04
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(8 + 2 / 12, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Socialable Macro",
  14887. height: math.unit(50, "feet")
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(300, "feet")
  14892. },
  14893. {
  14894. name: "Megamacro",
  14895. height: math.unit(500, "miles")
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14901. {
  14902. front: {
  14903. height: math.unit(6, "feet"),
  14904. weight: math.unit(150, "lb"),
  14905. name: "Front",
  14906. image: {
  14907. source: "./media/characters/felix/front.svg",
  14908. extra: 762 / 722,
  14909. bottom: 0.02
  14910. }
  14911. },
  14912. frontClothed: {
  14913. height: math.unit(6, "feet"),
  14914. weight: math.unit(150, "lb"),
  14915. name: "Front (Clothed)",
  14916. image: {
  14917. source: "./media/characters/felix/front-clothed.svg",
  14918. extra: 762 / 722,
  14919. bottom: 0.02
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(6 + 8 / 12, "feet"),
  14927. default: true
  14928. },
  14929. {
  14930. name: "Macro",
  14931. height: math.unit(2600, "feet")
  14932. },
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(450, "miles")
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(6 + 1 / 12, "feet"),
  14944. weight: math.unit(250, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/tobo/front.svg",
  14948. extra: 608 / 586,
  14949. bottom: 0.023
  14950. }
  14951. },
  14952. back: {
  14953. height: math.unit(6 + 1 / 12, "feet"),
  14954. weight: math.unit(250, "lb"),
  14955. name: "Back",
  14956. image: {
  14957. source: "./media/characters/tobo/back.svg",
  14958. extra: 608 / 586
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Nano",
  14965. height: math.unit(2, "nm")
  14966. },
  14967. {
  14968. name: "Megamicro",
  14969. height: math.unit(0.1, "mm")
  14970. },
  14971. {
  14972. name: "Micro",
  14973. height: math.unit(1, "inch"),
  14974. default: true
  14975. },
  14976. {
  14977. name: "Human-sized",
  14978. height: math.unit(6 + 1 / 12, "feet")
  14979. },
  14980. {
  14981. name: "Macro",
  14982. height: math.unit(250, "feet")
  14983. },
  14984. {
  14985. name: "Megamacro",
  14986. height: math.unit(75, "miles")
  14987. },
  14988. {
  14989. name: "Texas-sized",
  14990. height: math.unit(750, "miles")
  14991. },
  14992. {
  14993. name: "Teramacro",
  14994. height: math.unit(50000, "miles")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(269, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/danny-kapowsky/front.svg",
  15007. extra: 766 / 736,
  15008. bottom: 0.044
  15009. }
  15010. },
  15011. back: {
  15012. height: math.unit(6, "feet"),
  15013. weight: math.unit(269, "lb"),
  15014. name: "Back",
  15015. image: {
  15016. source: "./media/characters/danny-kapowsky/back.svg",
  15017. extra: 797 / 760,
  15018. bottom: 0.025
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Macro",
  15025. height: math.unit(150, "feet"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Macro+",
  15030. height: math.unit(200, "feet")
  15031. },
  15032. {
  15033. name: "Macro++",
  15034. height: math.unit(300, "feet")
  15035. },
  15036. {
  15037. name: "Macro+++",
  15038. height: math.unit(400, "feet")
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15044. {
  15045. side: {
  15046. height: math.unit(6, "feet"),
  15047. weight: math.unit(170, "lb"),
  15048. name: "Side",
  15049. image: {
  15050. source: "./media/characters/finn/side.svg",
  15051. extra: 1953 / 1807,
  15052. bottom: 0.057
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Megamacro",
  15059. height: math.unit(14445, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(5 + 6 / 12, "feet"),
  15069. weight: math.unit(125, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/roy/front.svg",
  15073. extra: 1,
  15074. bottom: 0.11
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Micro",
  15081. height: math.unit(3, "inches"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(5 + 6 / 12, "feet")
  15087. },
  15088. {
  15089. name: "Lesser Macro",
  15090. height: math.unit(60, "feet")
  15091. },
  15092. {
  15093. name: "Greater Macro",
  15094. height: math.unit(120, "feet")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(6, "feet"),
  15103. weight: math.unit(100, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/aevsivs/front.svg",
  15107. extra: 1,
  15108. bottom: 0.03
  15109. }
  15110. },
  15111. back: {
  15112. height: math.unit(6, "feet"),
  15113. weight: math.unit(100, "lb"),
  15114. name: "Back",
  15115. image: {
  15116. source: "./media/characters/aevsivs/back.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Micro",
  15123. height: math.unit(2, "inches"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(5, "feet")
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(5 + 7 / 12, "feet"),
  15137. weight: math.unit(159, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/hildegard/front.svg",
  15141. extra: 289 / 269,
  15142. bottom: 7.63 / 297.8
  15143. }
  15144. },
  15145. back: {
  15146. height: math.unit(5 + 7 / 12, "feet"),
  15147. weight: math.unit(159, "lb"),
  15148. name: "Back",
  15149. image: {
  15150. source: "./media/characters/hildegard/back.svg",
  15151. extra: 280 / 260,
  15152. bottom: 2.3 / 282
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(5 + 7 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15166. {
  15167. bernard: {
  15168. height: math.unit(2 + 7 / 12, "feet"),
  15169. weight: math.unit(66, "lb"),
  15170. name: "Bernard",
  15171. rename: true,
  15172. image: {
  15173. source: "./media/characters/bernard-wilder/bernard.svg",
  15174. extra: 192 / 128,
  15175. bottom: 0.05
  15176. }
  15177. },
  15178. wilder: {
  15179. height: math.unit(5 + 8 / 12, "feet"),
  15180. weight: math.unit(143, "lb"),
  15181. name: "Wilder",
  15182. rename: true,
  15183. image: {
  15184. source: "./media/characters/bernard-wilder/wilder.svg",
  15185. extra: 361 / 312,
  15186. bottom: 0.02
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(2 + 7 / 12, "feet"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15200. {
  15201. anthro: {
  15202. height: math.unit(6 + 1 / 12, "feet"),
  15203. weight: math.unit(155, "lb"),
  15204. name: "Anthro",
  15205. image: {
  15206. source: "./media/characters/hearth/anthro.svg",
  15207. extra: 1178/1136,
  15208. bottom: 28/1206
  15209. }
  15210. },
  15211. feral: {
  15212. height: math.unit(3.78, "feet"),
  15213. weight: math.unit(35, "kg"),
  15214. name: "Feral",
  15215. image: {
  15216. source: "./media/characters/hearth/feral.svg",
  15217. extra: 153 / 135,
  15218. bottom: 0.03
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(6 + 1 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(182, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/ingrid/front.svg",
  15239. extra: 294 / 268,
  15240. bottom: 0.027
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(6, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15254. {
  15255. eevee: {
  15256. height: math.unit(2 + 10 / 12, "feet"),
  15257. weight: math.unit(86, "lb"),
  15258. name: "Malgam",
  15259. image: {
  15260. source: "./media/characters/malgam/eevee.svg",
  15261. extra: 952/784,
  15262. bottom: 38/990
  15263. }
  15264. },
  15265. sylveon: {
  15266. height: math.unit(4, "feet"),
  15267. weight: math.unit(101, "lb"),
  15268. name: "Future Malgam",
  15269. rename: true,
  15270. image: {
  15271. source: "./media/characters/malgam/sylveon.svg",
  15272. extra: 371 / 325,
  15273. bottom: 0.015
  15274. }
  15275. },
  15276. gigantamax: {
  15277. height: math.unit(50, "feet"),
  15278. name: "Gigantamax Malgam",
  15279. rename: true,
  15280. image: {
  15281. source: "./media/characters/malgam/gigantamax.svg"
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(2 + 10 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(5 + 11 / 12, "feet"),
  15298. weight: math.unit(188, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/fleur/front.svg",
  15302. extra: 309 / 283,
  15303. bottom: 0.007
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 11 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(5 + 4 / 12, "feet"),
  15320. weight: math.unit(122, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/jude/front.svg",
  15324. extra: 288 / 273,
  15325. bottom: 0.03
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(5 + 4 / 12, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(5 + 11 / 12, "feet"),
  15342. weight: math.unit(190, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/seara/front.svg",
  15346. extra: 1,
  15347. bottom: 0.05
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(5 + 11 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(16 + 5 / 12, "feet"),
  15364. weight: math.unit(524, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/caspian/front.svg",
  15368. extra: 1,
  15369. bottom: 0.04
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(16 + 5 / 12, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(5 + 7 / 12, "feet"),
  15386. weight: math.unit(170, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/mika/front.svg",
  15390. extra: 1,
  15391. bottom: 0.016
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(5 + 7 / 12, "feet"),
  15399. default: true
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6 + 2 / 12, "feet"),
  15408. weight: math.unit(268, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/sol/front.svg",
  15412. extra: 247 / 231,
  15413. bottom: 0.05
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(6 + 2 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15427. {
  15428. buizel: {
  15429. height: math.unit(2 + 5 / 12, "feet"),
  15430. weight: math.unit(87, "lb"),
  15431. name: "Buizel",
  15432. image: {
  15433. source: "./media/characters/umiko/buizel.svg",
  15434. extra: 172 / 157,
  15435. bottom: 0.01
  15436. }
  15437. },
  15438. floatzel: {
  15439. height: math.unit(5 + 9 / 12, "feet"),
  15440. weight: math.unit(250, "lb"),
  15441. name: "Floatzel",
  15442. image: {
  15443. source: "./media/characters/umiko/floatzel.svg",
  15444. extra: 262 / 248
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(2 + 5 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6 + 2 / 12, "feet"),
  15461. weight: math.unit(146, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/iliac/front.svg",
  15465. extra: 389 / 365,
  15466. bottom: 0.035
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(6 + 2 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6, "feet"),
  15483. weight: math.unit(170, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/topaz/front.svg",
  15487. extra: 317 / 303,
  15488. bottom: 0.055
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(6, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(5 + 11 / 12, "feet"),
  15505. weight: math.unit(144, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/gabriel/front.svg",
  15509. extra: 285 / 262,
  15510. bottom: 0.004
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(5 + 11 / 12, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15524. {
  15525. side: {
  15526. height: math.unit(6 + 5 / 12, "feet"),
  15527. weight: math.unit(300, "lb"),
  15528. name: "Side",
  15529. image: {
  15530. source: "./media/characters/tempest-suicune/side.svg",
  15531. extra: 195 / 154,
  15532. bottom: 0.04
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(6 + 5 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(7 + 2 / 12, "feet"),
  15549. weight: math.unit(322, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/vulcan/front.svg",
  15553. extra: 154 / 147,
  15554. bottom: 0.04
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(7 + 2 / 12, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(5 + 10 / 12, "feet"),
  15571. weight: math.unit(264, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/gault/front.svg",
  15575. extra: 161 / 140,
  15576. bottom: 0.028
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(5 + 10 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/shard/front.svg",
  15597. extra: 273 / 238,
  15598. bottom: 0.02
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(3 + 6 / 12, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(5 + 11 / 12, "feet"),
  15615. weight: math.unit(146, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/ashe/front.svg",
  15619. extra: 400 / 373,
  15620. bottom: 0.01
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(5 + 11 / 12, "feet"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(5 + 5 / 12, "feet"),
  15637. weight: math.unit(135, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/beatrix/front.svg",
  15641. extra: 392 / 379,
  15642. bottom: 0.01
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(6, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(6 + 2/12, "feet"),
  15659. weight: math.unit(135, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/ignatius/front.svg",
  15663. extra: 1380/1259,
  15664. bottom: 27/1407
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(6 + 2/12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(6 + 2 / 12, "feet"),
  15681. weight: math.unit(138, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/mei-li/front.svg",
  15685. extra: 237 / 229,
  15686. bottom: 0.03
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(6 + 2 / 12, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(2 + 4 / 12, "feet"),
  15703. weight: math.unit(62, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/puru/front.svg",
  15707. extra: 206 / 149,
  15708. bottom: 0.06
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(2 + 4 / 12, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15722. {
  15723. anthro: {
  15724. height: math.unit(5 + 8/12, "feet"),
  15725. weight: math.unit(200, "lb"),
  15726. energyNeed: math.unit(2000, "kcal"),
  15727. name: "Anthro",
  15728. image: {
  15729. source: "./media/characters/kee/anthro.svg",
  15730. extra: 3251/3184,
  15731. bottom: 250/3501
  15732. }
  15733. },
  15734. taur: {
  15735. height: math.unit(11, "feet"),
  15736. weight: math.unit(500, "lb"),
  15737. energyNeed: math.unit(5000, "kcal"),
  15738. name: "Taur",
  15739. image: {
  15740. source: "./media/characters/kee/taur.svg",
  15741. extra: 1362/1320,
  15742. bottom: 83/1445
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(5 + 8/12, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Macro",
  15754. height: math.unit(35, "feet")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15760. {
  15761. anthro: {
  15762. height: math.unit(7, "feet"),
  15763. weight: math.unit(190, "lb"),
  15764. name: "Anthro",
  15765. image: {
  15766. source: "./media/characters/cobalt-dracha/anthro.svg",
  15767. extra: 231 / 225,
  15768. bottom: 0.04
  15769. }
  15770. },
  15771. feral: {
  15772. height: math.unit(9 + 7 / 12, "feet"),
  15773. weight: math.unit(294, "lb"),
  15774. name: "Feral",
  15775. image: {
  15776. source: "./media/characters/cobalt-dracha/feral.svg",
  15777. extra: 692 / 633,
  15778. bottom: 0.05
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(7, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15792. {
  15793. fallen: {
  15794. height: math.unit(11 + 8 / 12, "feet"),
  15795. weight: math.unit(485, "lb"),
  15796. name: "Java (Fallen)",
  15797. rename: true,
  15798. image: {
  15799. source: "./media/characters/java/fallen.svg",
  15800. extra: 226 / 208,
  15801. bottom: 0.005
  15802. }
  15803. },
  15804. godkin: {
  15805. height: math.unit(10 + 6 / 12, "feet"),
  15806. weight: math.unit(328, "lb"),
  15807. name: "Java (Godkin)",
  15808. rename: true,
  15809. image: {
  15810. source: "./media/characters/java/godkin.svg",
  15811. extra: 1104/1068,
  15812. bottom: 36/1140
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(11 + 8 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(5 + 9 / 12, "feet"),
  15829. weight: math.unit(170, "lb"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/purna/front.svg",
  15833. extra: 239 / 229,
  15834. bottom: 0.01
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(5 + 9 / 12, "feet"),
  15842. default: true
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15848. {
  15849. front: {
  15850. height: math.unit(5 + 9 / 12, "feet"),
  15851. weight: math.unit(142, "lb"),
  15852. name: "Front",
  15853. image: {
  15854. source: "./media/characters/kuva/front.svg",
  15855. extra: 281 / 271,
  15856. bottom: 0.006
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Normal",
  15863. height: math.unit(5 + 9 / 12, "feet"),
  15864. default: true
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15870. {
  15871. anthro: {
  15872. height: math.unit(9 + 2 / 12, "feet"),
  15873. weight: math.unit(270, "lb"),
  15874. name: "Anthro",
  15875. image: {
  15876. source: "./media/characters/embra/anthro.svg",
  15877. extra: 200 / 187,
  15878. bottom: 0.02
  15879. }
  15880. },
  15881. feral: {
  15882. height: math.unit(18 + 8 / 12, "feet"),
  15883. weight: math.unit(576, "lb"),
  15884. name: "Feral",
  15885. image: {
  15886. source: "./media/characters/embra/feral.svg",
  15887. extra: 152 / 137,
  15888. bottom: 0.037
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(9 + 2 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15902. {
  15903. anthro: {
  15904. height: math.unit(10 + 9 / 12, "feet"),
  15905. weight: math.unit(224, "lb"),
  15906. name: "Anthro",
  15907. image: {
  15908. source: "./media/characters/grottos/anthro.svg",
  15909. extra: 350 / 332,
  15910. bottom: 0.045
  15911. }
  15912. },
  15913. feral: {
  15914. height: math.unit(20 + 7 / 12, "feet"),
  15915. weight: math.unit(629, "lb"),
  15916. name: "Feral",
  15917. image: {
  15918. source: "./media/characters/grottos/feral.svg",
  15919. extra: 207 / 190,
  15920. bottom: 0.05
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(10 + 9 / 12, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15934. {
  15935. anthro: {
  15936. height: math.unit(9 + 6 / 12, "feet"),
  15937. weight: math.unit(298, "lb"),
  15938. name: "Anthro",
  15939. image: {
  15940. source: "./media/characters/frifna/anthro.svg",
  15941. extra: 282 / 269,
  15942. bottom: 0.015
  15943. }
  15944. },
  15945. feral: {
  15946. height: math.unit(16 + 2 / 12, "feet"),
  15947. weight: math.unit(624, "lb"),
  15948. name: "Feral",
  15949. image: {
  15950. source: "./media/characters/frifna/feral.svg"
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(9 + 6 / 12, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(6 + 2 / 12, "feet"),
  15967. weight: math.unit(168, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/elise/front.svg",
  15971. extra: 276 / 271
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(6 + 2 / 12, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(5 + 10 / 12, "feet"),
  15988. weight: math.unit(210, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/glade/front.svg",
  15992. extra: 258 / 247,
  15993. bottom: 0.008
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(5 + 10 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(5 + 10 / 12, "feet"),
  16010. weight: math.unit(129, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/rina/front.svg",
  16014. extra: 266 / 255,
  16015. bottom: 0.005
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(5 + 10 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(6 + 1 / 12, "feet"),
  16032. weight: math.unit(192, "lb"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/veronica/front.svg",
  16036. extra: 319 / 309,
  16037. bottom: 0.005
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(6 + 1 / 12, "feet"),
  16045. default: true
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(9 + 3 / 12, "feet"),
  16054. weight: math.unit(1100, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/braxton/front.svg",
  16058. extra: 1057 / 984,
  16059. bottom: 0.05
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(9 + 3 / 12, "feet")
  16067. },
  16068. {
  16069. name: "Giant",
  16070. height: math.unit(300, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro",
  16075. height: math.unit(700, "feet")
  16076. },
  16077. {
  16078. name: "Megamacro",
  16079. height: math.unit(6000, "feet")
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16085. {
  16086. front: {
  16087. height: math.unit(6 + 7 / 12, "feet"),
  16088. weight: math.unit(150, "lb"),
  16089. name: "Front",
  16090. image: {
  16091. source: "./media/characters/blue-feyonics/front.svg",
  16092. extra: 1403 / 1306,
  16093. bottom: 0.047
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Normal",
  16100. height: math.unit(6 + 7 / 12, "feet"),
  16101. default: true
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(1.8, "meters"),
  16110. weight: math.unit(60, "kg"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/maxwell/front.svg",
  16114. extra: 2060 / 1873
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Micro",
  16121. height: math.unit(1, "mm")
  16122. },
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(1.8, "meter"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro",
  16130. height: math.unit(30, "meters")
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(10, "km")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(150, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/jack/front.svg",
  16147. extra: 1754 / 1640,
  16148. bottom: 0.01
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(80000, "feet"),
  16156. default: true
  16157. },
  16158. {
  16159. name: "Max size",
  16160. height: math.unit(10, "lightyears")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16166. {
  16167. urban: {
  16168. height: math.unit(5, "feet"),
  16169. weight: math.unit(240, "lb"),
  16170. name: "Urban",
  16171. image: {
  16172. source: "./media/characters/cafat/urban.svg",
  16173. extra: 1223/1126,
  16174. bottom: 205/1428
  16175. }
  16176. },
  16177. summer: {
  16178. height: math.unit(5, "feet"),
  16179. weight: math.unit(240, "lb"),
  16180. name: "Summer",
  16181. image: {
  16182. source: "./media/characters/cafat/summer.svg",
  16183. extra: 1223/1126,
  16184. bottom: 205/1428
  16185. }
  16186. },
  16187. winter: {
  16188. height: math.unit(5, "feet"),
  16189. weight: math.unit(240, "lb"),
  16190. name: "Winter",
  16191. image: {
  16192. source: "./media/characters/cafat/winter.svg",
  16193. extra: 1223/1126,
  16194. bottom: 205/1428
  16195. }
  16196. },
  16197. lingerie: {
  16198. height: math.unit(5, "feet"),
  16199. weight: math.unit(240, "lb"),
  16200. name: "Lingerie",
  16201. image: {
  16202. source: "./media/characters/cafat/lingerie.svg",
  16203. extra: 1223/1126,
  16204. bottom: 205/1428
  16205. }
  16206. },
  16207. upright: {
  16208. height: math.unit(6.3, "feet"),
  16209. weight: math.unit(240, "lb"),
  16210. name: "Upright",
  16211. image: {
  16212. source: "./media/characters/cafat/upright.svg",
  16213. bottom: 0.01
  16214. }
  16215. },
  16216. uprightFull: {
  16217. height: math.unit(6.3, "feet"),
  16218. weight: math.unit(240, "lb"),
  16219. name: "Upright (Full)",
  16220. image: {
  16221. source: "./media/characters/cafat/upright-full.svg",
  16222. bottom: 0.01
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Small",
  16229. height: math.unit(5, "feet"),
  16230. default: true
  16231. },
  16232. {
  16233. name: "Large",
  16234. height: math.unit(13, "feet")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(150, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/verin-raharra/front.svg",
  16247. extra: 5019 / 4835,
  16248. bottom: 0.023
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(7 + 5 / 12, "feet"),
  16256. default: true
  16257. },
  16258. {
  16259. name: "Upsized",
  16260. height: math.unit(20, "feet")
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(7, "feet"),
  16269. weight: math.unit(230, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/nakata/front.svg",
  16273. extra: 1.005,
  16274. bottom: 0.01
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(7, "feet"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Big",
  16286. height: math.unit(14, "feet")
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(400, "feet")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(4.91, "feet"),
  16299. weight: math.unit(100, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/lily/front.svg",
  16303. extra: 1585 / 1415,
  16304. bottom: 0.02
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(4.91, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16318. {
  16319. laying: {
  16320. height: math.unit(4 + 4 / 12, "feet"),
  16321. weight: math.unit(600, "lb"),
  16322. name: "Laying",
  16323. image: {
  16324. source: "./media/characters/sheila/laying.svg",
  16325. extra: 1333 / 1265,
  16326. bottom: 0.16
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(4 + 4 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(190, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/sax/front.svg",
  16347. extra: 1187 / 973,
  16348. bottom: 0.042
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Micro",
  16355. height: math.unit(4, "inches"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/pandora/front.svg",
  16369. extra: 2720 / 2556,
  16370. bottom: 0.015
  16371. }
  16372. },
  16373. back: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Back",
  16377. image: {
  16378. source: "./media/characters/pandora/back.svg",
  16379. extra: 2720 / 2556,
  16380. bottom: 0.01
  16381. }
  16382. },
  16383. beans: {
  16384. height: math.unit(6 / 8, "feet"),
  16385. name: "Beans",
  16386. image: {
  16387. source: "./media/characters/pandora/beans.svg"
  16388. }
  16389. },
  16390. collar: {
  16391. height: math.unit(0.31, "feet"),
  16392. name: "Collar",
  16393. image: {
  16394. source: "./media/characters/pandora/collar.svg"
  16395. }
  16396. },
  16397. skirt: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Skirt",
  16401. image: {
  16402. source: "./media/characters/pandora/skirt.svg",
  16403. extra: 1622 / 1525,
  16404. bottom: 0.015
  16405. }
  16406. },
  16407. hoodie: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(150, "lb"),
  16410. name: "Hoodie",
  16411. image: {
  16412. source: "./media/characters/pandora/hoodie.svg",
  16413. extra: 1622 / 1525,
  16414. bottom: 0.015
  16415. }
  16416. },
  16417. casual: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(150, "lb"),
  16420. name: "Casual",
  16421. image: {
  16422. source: "./media/characters/pandora/casual.svg",
  16423. extra: 1622 / 1525,
  16424. bottom: 0.015
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(6, "feet")
  16432. },
  16433. {
  16434. name: "Big Steppy",
  16435. height: math.unit(1, "km"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Galactic Steppy",
  16440. height: math.unit(2, "gigameters")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16446. {
  16447. side: {
  16448. height: math.unit(10, "feet"),
  16449. weight: math.unit(800, "kg"),
  16450. name: "Side",
  16451. image: {
  16452. source: "./media/characters/venio-darcony/side.svg",
  16453. extra: 1373 / 1003,
  16454. bottom: 0.037
  16455. }
  16456. },
  16457. front: {
  16458. height: math.unit(19, "feet"),
  16459. weight: math.unit(800, "kg"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/venio-darcony/front.svg"
  16463. }
  16464. },
  16465. back: {
  16466. height: math.unit(19, "feet"),
  16467. weight: math.unit(800, "kg"),
  16468. name: "Back",
  16469. image: {
  16470. source: "./media/characters/venio-darcony/back.svg"
  16471. }
  16472. },
  16473. sideNsfw: {
  16474. height: math.unit(10, "feet"),
  16475. weight: math.unit(800, "kg"),
  16476. name: "Side (NSFW)",
  16477. image: {
  16478. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16479. extra: 1373 / 1003,
  16480. bottom: 0.037
  16481. }
  16482. },
  16483. frontNsfw: {
  16484. height: math.unit(19, "feet"),
  16485. weight: math.unit(800, "kg"),
  16486. name: "Front (NSFW)",
  16487. image: {
  16488. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16489. }
  16490. },
  16491. backNsfw: {
  16492. height: math.unit(19, "feet"),
  16493. weight: math.unit(800, "kg"),
  16494. name: "Back (NSFW)",
  16495. image: {
  16496. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16497. }
  16498. },
  16499. sideArmored: {
  16500. height: math.unit(10, "feet"),
  16501. weight: math.unit(800, "kg"),
  16502. name: "Side (Armored)",
  16503. image: {
  16504. source: "./media/characters/venio-darcony/side-armored.svg",
  16505. extra: 1373 / 1003,
  16506. bottom: 0.037
  16507. }
  16508. },
  16509. frontArmored: {
  16510. height: math.unit(19, "feet"),
  16511. weight: math.unit(900, "kg"),
  16512. name: "Front (Armored)",
  16513. image: {
  16514. source: "./media/characters/venio-darcony/front-armored.svg"
  16515. }
  16516. },
  16517. backArmored: {
  16518. height: math.unit(19, "feet"),
  16519. weight: math.unit(900, "kg"),
  16520. name: "Back (Armored)",
  16521. image: {
  16522. source: "./media/characters/venio-darcony/back-armored.svg"
  16523. }
  16524. },
  16525. sword: {
  16526. height: math.unit(10, "feet"),
  16527. weight: math.unit(50, "lb"),
  16528. name: "Sword",
  16529. image: {
  16530. source: "./media/characters/venio-darcony/sword.svg"
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(10, "feet")
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(130, "feet"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Macro+",
  16546. height: math.unit(240, "feet")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(6, "feet"),
  16555. weight: math.unit(150, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/veski/front.svg",
  16559. extra: 1299 / 1225,
  16560. bottom: 0.04
  16561. }
  16562. },
  16563. back: {
  16564. height: math.unit(6, "feet"),
  16565. weight: math.unit(150, "lb"),
  16566. name: "Back",
  16567. image: {
  16568. source: "./media/characters/veski/back.svg",
  16569. extra: 1299 / 1225,
  16570. bottom: 0.008
  16571. }
  16572. },
  16573. maw: {
  16574. height: math.unit(1.5 * 1.21, "feet"),
  16575. name: "Maw",
  16576. image: {
  16577. source: "./media/characters/veski/maw.svg"
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Macro",
  16584. height: math.unit(2, "km"),
  16585. default: true
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(5 + 7 / 12, "feet"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/isabelle/front.svg",
  16597. extra: 2130 / 1976,
  16598. bottom: 0.05
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Supermicro",
  16605. height: math.unit(10, "micrometers")
  16606. },
  16607. {
  16608. name: "Micro",
  16609. height: math.unit(1, "inch")
  16610. },
  16611. {
  16612. name: "Tiny",
  16613. height: math.unit(5, "inches")
  16614. },
  16615. {
  16616. name: "Standard",
  16617. height: math.unit(5 + 7 / 12, "inches")
  16618. },
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(80, "meters"),
  16622. default: true
  16623. },
  16624. {
  16625. name: "Megamacro",
  16626. height: math.unit(250, "meters")
  16627. },
  16628. {
  16629. name: "Gigamacro",
  16630. height: math.unit(5, "km")
  16631. },
  16632. {
  16633. name: "Cosmic",
  16634. height: math.unit(2.5e6, "miles")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/hanzo/front.svg",
  16647. extra: 374 / 344,
  16648. bottom: 0.02
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(8, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(7, "feet"),
  16665. weight: math.unit(130, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/anna/front.svg",
  16669. extra: 169 / 145,
  16670. bottom: 0.06
  16671. }
  16672. },
  16673. full: {
  16674. height: math.unit(4.96, "feet"),
  16675. weight: math.unit(220, "lb"),
  16676. name: "Full",
  16677. image: {
  16678. source: "./media/characters/anna/full.svg",
  16679. extra: 138 / 114,
  16680. bottom: 0.15
  16681. }
  16682. },
  16683. tongue: {
  16684. height: math.unit(2.53, "feet"),
  16685. name: "Tongue",
  16686. image: {
  16687. source: "./media/characters/anna/tongue.svg"
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(7, "feet"),
  16695. default: true
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(7, "feet"),
  16704. weight: math.unit(150, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/ian-corvid/front.svg",
  16708. extra: 150 / 142,
  16709. bottom: 0.02
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(7, "feet"),
  16714. weight: math.unit(150, "lb"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/ian-corvid/back.svg",
  16718. extra: 150 / 143,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. stomping: {
  16723. height: math.unit(7, "feet"),
  16724. weight: math.unit(150, "lb"),
  16725. name: "Stomping",
  16726. image: {
  16727. source: "./media/characters/ian-corvid/stomping.svg",
  16728. extra: 76 / 72
  16729. }
  16730. },
  16731. sitting: {
  16732. height: math.unit(7 / 1.8, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Sitting",
  16735. image: {
  16736. source: "./media/characters/ian-corvid/sitting.svg",
  16737. extra: 1400 / 1269,
  16738. bottom: 0.15
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Tiny Microw",
  16745. height: math.unit(1, "inch")
  16746. },
  16747. {
  16748. name: "Microw",
  16749. height: math.unit(6, "inches")
  16750. },
  16751. {
  16752. name: "Crow",
  16753. height: math.unit(7 + 1 / 12, "feet"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Macrow",
  16758. height: math.unit(176, "feet")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(5 + 7 / 12, "feet"),
  16767. weight: math.unit(147, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/natalie-kellon/front.svg",
  16771. extra: 1214 / 1141,
  16772. bottom: 0.02
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Micro",
  16779. height: math.unit(1 / 16, "inch")
  16780. },
  16781. {
  16782. name: "Tiny",
  16783. height: math.unit(4, "inches")
  16784. },
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(5 + 7 / 12, "feet"),
  16788. default: true
  16789. },
  16790. {
  16791. name: "Amazon",
  16792. height: math.unit(12, "feet")
  16793. },
  16794. {
  16795. name: "Giantess",
  16796. height: math.unit(160, "meters")
  16797. },
  16798. {
  16799. name: "Titaness",
  16800. height: math.unit(800, "meters")
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6, "feet"),
  16809. weight: math.unit(150, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/alluria/front.svg",
  16813. extra: 806 / 738,
  16814. bottom: 0.01
  16815. }
  16816. },
  16817. side: {
  16818. height: math.unit(6, "feet"),
  16819. weight: math.unit(150, "lb"),
  16820. name: "Side",
  16821. image: {
  16822. source: "./media/characters/alluria/side.svg",
  16823. extra: 800 / 750,
  16824. }
  16825. },
  16826. back: {
  16827. height: math.unit(6, "feet"),
  16828. weight: math.unit(150, "lb"),
  16829. name: "Back",
  16830. image: {
  16831. source: "./media/characters/alluria/back.svg",
  16832. extra: 806 / 738,
  16833. }
  16834. },
  16835. frontMaid: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Front (Maid)",
  16839. image: {
  16840. source: "./media/characters/alluria/front-maid.svg",
  16841. extra: 806 / 738,
  16842. bottom: 0.01
  16843. }
  16844. },
  16845. sideMaid: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(150, "lb"),
  16848. name: "Side (Maid)",
  16849. image: {
  16850. source: "./media/characters/alluria/side-maid.svg",
  16851. extra: 800 / 750,
  16852. bottom: 0.005
  16853. }
  16854. },
  16855. backMaid: {
  16856. height: math.unit(6, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Back (Maid)",
  16859. image: {
  16860. source: "./media/characters/alluria/back-maid.svg",
  16861. extra: 806 / 738,
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Micro",
  16868. height: math.unit(6, "inches"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(6, "feet"),
  16878. weight: math.unit(150, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/kyle/front.svg",
  16882. extra: 1069 / 962,
  16883. bottom: 77.228 / 1727.45
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(150, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(6, "feet"),
  16900. weight: math.unit(300, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/duncan/front.svg",
  16904. extra: 1650 / 1482,
  16905. bottom: 0.05
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Macro",
  16912. height: math.unit(100, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(5 + 4 / 12, "feet"),
  16922. weight: math.unit(220, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/memory/front.svg",
  16926. extra: 3641 / 3545,
  16927. bottom: 0.03
  16928. }
  16929. },
  16930. back: {
  16931. height: math.unit(5 + 4 / 12, "feet"),
  16932. weight: math.unit(220, "lb"),
  16933. name: "Back",
  16934. image: {
  16935. source: "./media/characters/memory/back.svg",
  16936. extra: 3641 / 3545,
  16937. bottom: 0.025
  16938. }
  16939. },
  16940. frontSkirt: {
  16941. height: math.unit(5 + 4 / 12, "feet"),
  16942. weight: math.unit(220, "lb"),
  16943. name: "Front (Skirt)",
  16944. image: {
  16945. source: "./media/characters/memory/front-skirt.svg",
  16946. extra: 3641 / 3545,
  16947. bottom: 0.03
  16948. }
  16949. },
  16950. frontDress: {
  16951. height: math.unit(5 + 4 / 12, "feet"),
  16952. weight: math.unit(220, "lb"),
  16953. name: "Front (Dress)",
  16954. image: {
  16955. source: "./media/characters/memory/front-dress.svg",
  16956. extra: 3641 / 3545,
  16957. bottom: 0.03
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Micro",
  16964. height: math.unit(6, "inches"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(5 + 4 / 12, "feet")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(4 + 11 / 12, "feet"),
  16978. weight: math.unit(100, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/luno/front.svg",
  16982. extra: 1535 / 1487,
  16983. bottom: 0.03
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Micro",
  16990. height: math.unit(3, "inches")
  16991. },
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(4 + 11 / 12, "feet"),
  16995. default: true
  16996. },
  16997. {
  16998. name: "Macro",
  16999. height: math.unit(300, "feet")
  17000. },
  17001. {
  17002. name: "Megamacro",
  17003. height: math.unit(700, "miles")
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(6 + 2 / 12, "feet"),
  17012. weight: math.unit(170, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/jamesy/front.svg",
  17016. extra: 440 / 382,
  17017. bottom: 0.005
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Micro",
  17024. height: math.unit(3, "inches")
  17025. },
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(6 + 2 / 12, "feet"),
  17029. default: true
  17030. },
  17031. {
  17032. name: "Macro",
  17033. height: math.unit(300, "feet")
  17034. },
  17035. {
  17036. name: "Megamacro",
  17037. height: math.unit(700, "miles")
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(6, "feet"),
  17046. weight: math.unit(160, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/mark/front.svg",
  17050. extra: 3300 / 3100,
  17051. bottom: 136.42 / 3440.47
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Macro",
  17058. height: math.unit(120, "meters")
  17059. },
  17060. {
  17061. name: "Bigger Macro",
  17062. height: math.unit(350, "meters")
  17063. },
  17064. {
  17065. name: "Megamacro",
  17066. height: math.unit(8, "km"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Continental",
  17071. height: math.unit(4550, "km")
  17072. },
  17073. {
  17074. name: "Planetary",
  17075. height: math.unit(65000, "km")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(6, "feet"),
  17084. weight: math.unit(400, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/mac/front.svg",
  17088. extra: 1048 / 987.7,
  17089. bottom: 60 / 1107.6,
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Macro",
  17096. height: math.unit(500, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(5 + 2 / 12, "feet"),
  17106. weight: math.unit(190, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/bari/front.svg",
  17110. extra: 3156 / 2880,
  17111. bottom: 0.03
  17112. }
  17113. },
  17114. back: {
  17115. height: math.unit(5 + 2 / 12, "feet"),
  17116. weight: math.unit(190, "lb"),
  17117. name: "Back",
  17118. image: {
  17119. source: "./media/characters/bari/back.svg",
  17120. extra: 3260 / 2834,
  17121. bottom: 0.025
  17122. }
  17123. },
  17124. frontPlush: {
  17125. height: math.unit(5 + 2 / 12, "feet"),
  17126. weight: math.unit(190, "lb"),
  17127. name: "Front (Plush)",
  17128. image: {
  17129. source: "./media/characters/bari/front-plush.svg",
  17130. extra: 1112 / 1061,
  17131. bottom: 0.002
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Micro",
  17138. height: math.unit(3, "inches")
  17139. },
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(5 + 2 / 12, "feet"),
  17143. default: true
  17144. },
  17145. {
  17146. name: "Macro",
  17147. height: math.unit(20, "feet")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 1 / 12, "feet"),
  17156. weight: math.unit(275, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/hunter-misha-raven/front.svg"
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Mortal",
  17166. height: math.unit(6 + 1 / 12, "feet")
  17167. },
  17168. {
  17169. name: "Divine",
  17170. height: math.unit(1.12134e34, "parsecs"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6 + 3 / 12, "feet"),
  17180. weight: math.unit(220, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/max-calore/front.svg",
  17184. extra: 1700 / 1648,
  17185. bottom: 0.01
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(6 + 3 / 12, "feet"),
  17190. weight: math.unit(220, "lb"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/max-calore/back.svg",
  17194. extra: 1700 / 1648,
  17195. bottom: 0.01
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(6 + 3 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17209. {
  17210. side: {
  17211. height: math.unit(2 + 8 / 12, "feet"),
  17212. weight: math.unit(99, "lb"),
  17213. name: "Side",
  17214. image: {
  17215. source: "./media/characters/aspen/side.svg",
  17216. extra: 152 / 138,
  17217. bottom: 0.032
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(2 + 8 / 12, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17231. {
  17232. side: {
  17233. height: math.unit(3 + 2 / 12, "feet"),
  17234. weight: math.unit(224, "lb"),
  17235. name: "Side",
  17236. image: {
  17237. source: "./media/characters/sheila-feral-wolf/side.svg",
  17238. extra: 179 / 166,
  17239. bottom: 0.03
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(3 + 2 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17253. {
  17254. side: {
  17255. height: math.unit(1 + 9 / 12, "feet"),
  17256. weight: math.unit(38, "lb"),
  17257. name: "Side",
  17258. image: {
  17259. source: "./media/characters/michelle/side.svg",
  17260. extra: 147 / 136.7,
  17261. bottom: 0.03
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(1 + 9 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(1.54, "feet"),
  17278. weight: math.unit(50, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/nino/front.svg"
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(1.54, "feet"),
  17289. default: true
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(1, "feet"),
  17298. weight: math.unit(16, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/viola/front.svg"
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(1, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(6 + 5 / 12, "feet"),
  17318. weight: math.unit(580, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/atlas/front.svg",
  17322. extra: 298.5 / 290,
  17323. bottom: 0.015
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(6 + 5 / 12, "feet"),
  17331. default: true
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17337. {
  17338. side: {
  17339. height: math.unit(1 + 10 / 12, "feet"),
  17340. weight: math.unit(25, "lb"),
  17341. name: "Side",
  17342. image: {
  17343. source: "./media/characters/davy/side.svg",
  17344. extra: 200 / 170,
  17345. bottom: 0.01
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(1 + 10 / 12, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17359. {
  17360. side: {
  17361. height: math.unit(4 + 8 / 12, "feet"),
  17362. weight: math.unit(166, "lb"),
  17363. name: "Side",
  17364. image: {
  17365. source: "./media/characters/fiona/side.svg",
  17366. extra: 232 / 220,
  17367. bottom: 0.03
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(4 + 8 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17381. {
  17382. front: {
  17383. height: math.unit(3, "feet"),
  17384. weight: math.unit(100, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/lyla/front.svg",
  17388. bottom: 0.1
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(3, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17402. {
  17403. side: {
  17404. height: math.unit(1.8, "feet"),
  17405. weight: math.unit(44, "lb"),
  17406. name: "Side",
  17407. image: {
  17408. source: "./media/characters/perseus/side.svg",
  17409. bottom: 0.21
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(1.8, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17423. {
  17424. side: {
  17425. height: math.unit(4 + 2 / 12, "feet"),
  17426. weight: math.unit(20, "lb"),
  17427. name: "Side",
  17428. image: {
  17429. source: "./media/characters/remus/side.svg"
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(4 + 2 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(4 + 11 / 12, "feet"),
  17446. weight: math.unit(114, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/raf/front.svg",
  17450. extra: 1504/1339,
  17451. bottom: 26/1530
  17452. }
  17453. },
  17454. side: {
  17455. height: math.unit(4 + 11 / 12, "feet"),
  17456. weight: math.unit(114, "lb"),
  17457. name: "Side",
  17458. image: {
  17459. source: "./media/characters/raf/side.svg",
  17460. extra: 1466/1316,
  17461. bottom: 29/1495
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Micro",
  17468. height: math.unit(2, "inches")
  17469. },
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(4 + 11 / 12, "feet"),
  17473. default: true
  17474. },
  17475. {
  17476. name: "Macro",
  17477. height: math.unit(70, "feet")
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(1.5, "meters"),
  17486. weight: math.unit(68, "kg"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/liam-einarr/front.svg",
  17490. extra: 2822 / 2666
  17491. }
  17492. },
  17493. back: {
  17494. height: math.unit(1.5, "meters"),
  17495. weight: math.unit(68, "kg"),
  17496. name: "Back",
  17497. image: {
  17498. source: "./media/characters/liam-einarr/back.svg",
  17499. extra: 2822 / 2666,
  17500. bottom: 0.015
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(1.5, "meters"),
  17508. default: true
  17509. },
  17510. {
  17511. name: "Macro",
  17512. height: math.unit(150, "meters")
  17513. },
  17514. {
  17515. name: "Megamacro",
  17516. height: math.unit(35, "km")
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17522. {
  17523. front: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(75, "kg"),
  17526. name: "Front",
  17527. image: {
  17528. source: "./media/characters/linda/front.svg",
  17529. extra: 930 / 874,
  17530. bottom: 0.004
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(6, "feet"),
  17538. default: true
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(6 + 8 / 12, "feet"),
  17547. weight: math.unit(220, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/caylex/front.svg",
  17551. extra: 821 / 772,
  17552. bottom: 0.07
  17553. }
  17554. },
  17555. back: {
  17556. height: math.unit(6 + 8 / 12, "feet"),
  17557. weight: math.unit(220, "lb"),
  17558. name: "Back",
  17559. image: {
  17560. source: "./media/characters/caylex/back.svg",
  17561. extra: 821 / 772,
  17562. bottom: 0.022
  17563. }
  17564. },
  17565. hand: {
  17566. height: math.unit(1.25, "feet"),
  17567. name: "Hand",
  17568. image: {
  17569. source: "./media/characters/caylex/hand.svg"
  17570. }
  17571. },
  17572. foot: {
  17573. height: math.unit(1.6, "feet"),
  17574. name: "Foot",
  17575. image: {
  17576. source: "./media/characters/caylex/foot.svg"
  17577. }
  17578. },
  17579. armored: {
  17580. height: math.unit(6 + 8 / 12, "feet"),
  17581. weight: math.unit(250, "lb"),
  17582. name: "Armored",
  17583. image: {
  17584. source: "./media/characters/caylex/armored.svg",
  17585. extra: 1420 / 1310,
  17586. bottom: 0.045
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(6 + 8 / 12, "feet"),
  17594. default: true
  17595. },
  17596. {
  17597. name: "Normal+",
  17598. height: math.unit(12, "feet")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(7 + 6 / 12, "feet"),
  17607. weight: math.unit(288, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/alana/front.svg",
  17611. extra: 679 / 653,
  17612. bottom: 22.5 / 701
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(7 + 6 / 12, "feet")
  17620. },
  17621. {
  17622. name: "Large",
  17623. height: math.unit(50, "feet")
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(100, "feet"),
  17628. default: true
  17629. },
  17630. {
  17631. name: "Macro+",
  17632. height: math.unit(200, "feet")
  17633. },
  17634. ]
  17635. ))
  17636. characterMakers.push(() => makeCharacter(
  17637. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17638. {
  17639. front: {
  17640. height: math.unit(6 + 1 / 12, "feet"),
  17641. weight: math.unit(210, "lb"),
  17642. name: "Front",
  17643. image: {
  17644. source: "./media/characters/hasani/front.svg",
  17645. extra: 244 / 232,
  17646. bottom: 0.01
  17647. }
  17648. },
  17649. back: {
  17650. height: math.unit(6 + 1 / 12, "feet"),
  17651. weight: math.unit(210, "lb"),
  17652. name: "Back",
  17653. image: {
  17654. source: "./media/characters/hasani/back.svg",
  17655. extra: 244 / 232,
  17656. bottom: 0.01
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(6 + 1 / 12, "feet")
  17664. },
  17665. {
  17666. name: "Macro",
  17667. height: math.unit(175, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(1.82, "meters"),
  17677. weight: math.unit(140, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/nita/front.svg",
  17681. extra: 2473 / 2363,
  17682. bottom: 0.01
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(1.82, "m")
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(300, "m")
  17694. },
  17695. {
  17696. name: "Mistake Canon",
  17697. height: math.unit(0.5, "miles"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Big Mistake",
  17702. height: math.unit(13, "miles")
  17703. },
  17704. {
  17705. name: "Playing God",
  17706. height: math.unit(2450, "miles")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(4, "feet"),
  17715. weight: math.unit(120, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/shiriko/front.svg",
  17719. extra: 970/934,
  17720. bottom: 5/975
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(4, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6, "feet"),
  17737. name: "front",
  17738. image: {
  17739. source: "./media/characters/deja/front.svg",
  17740. extra: 926 / 840,
  17741. bottom: 0.07
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Planck Length",
  17748. height: math.unit(1.6e-35, "meters")
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(30.48, "meters"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Universal",
  17757. height: math.unit(8.8e26, "meters")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17763. {
  17764. side: {
  17765. height: math.unit(8, "feet"),
  17766. weight: math.unit(6300, "lb"),
  17767. name: "Side",
  17768. image: {
  17769. source: "./media/characters/anima/side.svg",
  17770. bottom: 0.035
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(8, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(8, "feet"),
  17787. weight: math.unit(350, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/bianca/front.svg",
  17791. extra: 234 / 225,
  17792. bottom: 0.03
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(8, "feet"),
  17800. default: true
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(6, "feet"),
  17809. weight: math.unit(150, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/adinia/front.svg",
  17813. extra: 1845 / 1672,
  17814. bottom: 0.02
  17815. }
  17816. },
  17817. back: {
  17818. height: math.unit(6, "feet"),
  17819. weight: math.unit(150, "lb"),
  17820. name: "Back",
  17821. image: {
  17822. source: "./media/characters/adinia/back.svg",
  17823. extra: 1845 / 1672,
  17824. bottom: 0.002
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(11 + 5 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(3, "meters"),
  17841. weight: math.unit(200, "kg"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/lykasa/front.svg",
  17845. extra: 1076 / 976,
  17846. bottom: 0.06
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Normal",
  17853. height: math.unit(3, "meters")
  17854. },
  17855. {
  17856. name: "Kaiju",
  17857. height: math.unit(120, "meters"),
  17858. default: true
  17859. },
  17860. {
  17861. name: "Mega Kaiju",
  17862. height: math.unit(240, "km")
  17863. },
  17864. {
  17865. name: "Giga Kaiju",
  17866. height: math.unit(400, "megameters")
  17867. },
  17868. {
  17869. name: "Tera Kaiju",
  17870. height: math.unit(800, "gigameters")
  17871. },
  17872. {
  17873. name: "Kaiju Dragon Goddess",
  17874. height: math.unit(26, "zettaparsecs")
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17880. {
  17881. side: {
  17882. height: math.unit(283 / 124 * 6, "feet"),
  17883. weight: math.unit(35000, "lb"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/malfaren/side.svg",
  17887. extra: 1310/529,
  17888. bottom: 24/1334
  17889. }
  17890. },
  17891. front: {
  17892. height: math.unit(22.36, "feet"),
  17893. weight: math.unit(35000, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/malfaren/front.svg",
  17897. extra: 1237/1115,
  17898. bottom: 32/1269
  17899. }
  17900. },
  17901. maw: {
  17902. height: math.unit(6.9, "feet"),
  17903. name: "Maw",
  17904. image: {
  17905. source: "./media/characters/malfaren/maw.svg"
  17906. }
  17907. },
  17908. dick: {
  17909. height: math.unit(6.19, "feet"),
  17910. name: "Dick",
  17911. image: {
  17912. source: "./media/characters/malfaren/dick.svg"
  17913. }
  17914. },
  17915. eye: {
  17916. height: math.unit(0.69, "feet"),
  17917. name: "Eye",
  17918. image: {
  17919. source: "./media/characters/malfaren/eye.svg"
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Big",
  17926. height: math.unit(283 / 162 * 6, "feet"),
  17927. },
  17928. {
  17929. name: "Bigger",
  17930. height: math.unit(283 / 124 * 6, "feet")
  17931. },
  17932. {
  17933. name: "Massive",
  17934. height: math.unit(283 / 92 * 6, "feet"),
  17935. default: true
  17936. },
  17937. {
  17938. name: "👀💦",
  17939. height: math.unit(283 / 73 * 6, "feet"),
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(1.7, "m"),
  17948. weight: math.unit(70, "kg"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/kernel/front.svg",
  17952. extra: 222 / 210,
  17953. bottom: 0.007
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Nano",
  17960. height: math.unit(17, "micrometers")
  17961. },
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(1.7, "mm")
  17965. },
  17966. {
  17967. name: "Small",
  17968. height: math.unit(1.7, "cm")
  17969. },
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(1.7, "m"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(1.75, "meters"),
  17982. weight: math.unit(65, "kg"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/jayne-folest/front.svg",
  17986. extra: 2115 / 2007,
  17987. bottom: 0.02
  17988. }
  17989. },
  17990. back: {
  17991. height: math.unit(1.75, "meters"),
  17992. weight: math.unit(65, "kg"),
  17993. name: "Back",
  17994. image: {
  17995. source: "./media/characters/jayne-folest/back.svg",
  17996. extra: 2115 / 2007,
  17997. bottom: 0.005
  17998. }
  17999. },
  18000. frontClothed: {
  18001. height: math.unit(1.75, "meters"),
  18002. weight: math.unit(65, "kg"),
  18003. name: "Front (Clothed)",
  18004. image: {
  18005. source: "./media/characters/jayne-folest/front-clothed.svg",
  18006. extra: 2115 / 2007,
  18007. bottom: 0.035
  18008. }
  18009. },
  18010. hand: {
  18011. height: math.unit(1 / 1.260, "feet"),
  18012. name: "Hand",
  18013. image: {
  18014. source: "./media/characters/jayne-folest/hand.svg"
  18015. }
  18016. },
  18017. foot: {
  18018. height: math.unit(1 / 0.918, "feet"),
  18019. name: "Foot",
  18020. image: {
  18021. source: "./media/characters/jayne-folest/foot.svg"
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Micro",
  18028. height: math.unit(4, "cm")
  18029. },
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(1.75, "meters")
  18033. },
  18034. {
  18035. name: "Macro",
  18036. height: math.unit(47.5, "meters"),
  18037. default: true
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(180, "cm"),
  18046. weight: math.unit(70, "kg"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/algier/front.svg",
  18050. extra: 596 / 572,
  18051. bottom: 0.04
  18052. }
  18053. },
  18054. back: {
  18055. height: math.unit(180, "cm"),
  18056. weight: math.unit(70, "kg"),
  18057. name: "Back",
  18058. image: {
  18059. source: "./media/characters/algier/back.svg",
  18060. extra: 596 / 572,
  18061. bottom: 0.025
  18062. }
  18063. },
  18064. frontdressed: {
  18065. height: math.unit(180, "cm"),
  18066. weight: math.unit(150, "kg"),
  18067. name: "Front-dressed",
  18068. image: {
  18069. source: "./media/characters/algier/front-dressed.svg",
  18070. extra: 596 / 572,
  18071. bottom: 0.038
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Micro",
  18078. height: math.unit(5, "cm")
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(180, "cm"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(64, "m")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18093. {
  18094. upright: {
  18095. height: math.unit(7, "feet"),
  18096. weight: math.unit(300, "lb"),
  18097. name: "Upright",
  18098. image: {
  18099. source: "./media/characters/pretzel/upright.svg",
  18100. extra: 534 / 522,
  18101. bottom: 0.065
  18102. }
  18103. },
  18104. sprawling: {
  18105. height: math.unit(3.75, "feet"),
  18106. weight: math.unit(300, "lb"),
  18107. name: "Sprawling",
  18108. image: {
  18109. source: "./media/characters/pretzel/sprawling.svg",
  18110. extra: 314 / 281,
  18111. bottom: 0.1
  18112. }
  18113. },
  18114. tongue: {
  18115. height: math.unit(2, "feet"),
  18116. name: "Tongue",
  18117. image: {
  18118. source: "./media/characters/pretzel/tongue.svg"
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(7, "feet"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Oversized",
  18130. height: math.unit(15, "feet")
  18131. },
  18132. {
  18133. name: "Huge",
  18134. height: math.unit(30, "feet")
  18135. },
  18136. {
  18137. name: "Macro",
  18138. height: math.unit(250, "feet")
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18144. {
  18145. sideFront: {
  18146. height: math.unit(5 + 2 / 12, "feet"),
  18147. weight: math.unit(120, "lb"),
  18148. name: "Front Side",
  18149. image: {
  18150. source: "./media/characters/roxi/side-front.svg",
  18151. extra: 2924 / 2717,
  18152. bottom: 0.08
  18153. }
  18154. },
  18155. sideBack: {
  18156. height: math.unit(5 + 2 / 12, "feet"),
  18157. weight: math.unit(120, "lb"),
  18158. name: "Back Side",
  18159. image: {
  18160. source: "./media/characters/roxi/side-back.svg",
  18161. extra: 2904 / 2693,
  18162. bottom: 0.06
  18163. }
  18164. },
  18165. front: {
  18166. height: math.unit(5 + 2 / 12, "feet"),
  18167. weight: math.unit(120, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/roxi/front.svg",
  18171. extra: 2028 / 1907,
  18172. bottom: 0.01
  18173. }
  18174. },
  18175. frontAlt: {
  18176. height: math.unit(5 + 2 / 12, "feet"),
  18177. weight: math.unit(120, "lb"),
  18178. name: "Front (Alt)",
  18179. image: {
  18180. source: "./media/characters/roxi/front-alt.svg",
  18181. extra: 1828 / 1798,
  18182. bottom: 0.01
  18183. }
  18184. },
  18185. sitting: {
  18186. height: math.unit(2.8, "feet"),
  18187. weight: math.unit(120, "lb"),
  18188. name: "Sitting",
  18189. image: {
  18190. source: "./media/characters/roxi/sitting.svg",
  18191. extra: 2660 / 2462,
  18192. bottom: 0.1
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(5 + 2 / 12, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18206. {
  18207. side: {
  18208. height: math.unit(55, "feet"),
  18209. weight: math.unit(153, "tons"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/shadow/side.svg",
  18213. extra: 701 / 628,
  18214. bottom: 0.02
  18215. }
  18216. },
  18217. flying: {
  18218. height: math.unit(145, "feet"),
  18219. weight: math.unit(153, "tons"),
  18220. name: "Flying",
  18221. image: {
  18222. source: "./media/characters/shadow/flying.svg"
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(55, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(200, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/marcie/front.svg",
  18243. extra: 960 / 876,
  18244. bottom: 58 / 1017.87
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(1, "mile"),
  18252. default: true
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(7, "feet"),
  18261. weight: math.unit(200, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/kachina/front.svg",
  18265. extra: 1290.68 / 1119,
  18266. bottom: 36.5 / 1327.18
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(7, "feet"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18280. {
  18281. looking: {
  18282. height: math.unit(2, "meters"),
  18283. weight: math.unit(300, "kg"),
  18284. name: "Looking",
  18285. image: {
  18286. source: "./media/characters/kash/looking.svg",
  18287. extra: 474 / 344,
  18288. bottom: 0.03
  18289. }
  18290. },
  18291. side: {
  18292. height: math.unit(2, "meters"),
  18293. weight: math.unit(300, "kg"),
  18294. name: "Side",
  18295. image: {
  18296. source: "./media/characters/kash/side.svg",
  18297. extra: 302 / 251,
  18298. bottom: 0.03
  18299. }
  18300. },
  18301. front: {
  18302. height: math.unit(2, "meters"),
  18303. weight: math.unit(300, "kg"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/kash/front.svg",
  18307. extra: 495 / 360,
  18308. bottom: 0.015
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(2, "meters"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Big",
  18320. height: math.unit(3, "meters")
  18321. },
  18322. {
  18323. name: "Large",
  18324. height: math.unit(5, "meters")
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18330. {
  18331. feeding: {
  18332. height: math.unit(6.7, "feet"),
  18333. weight: math.unit(350, "lb"),
  18334. name: "Feeding",
  18335. image: {
  18336. source: "./media/characters/lalim/feeding.svg",
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(6.7, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18350. {
  18351. front: {
  18352. height: math.unit(9.5, "feet"),
  18353. weight: math.unit(600, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/de'vout/front.svg",
  18357. extra: 1443 / 1328,
  18358. bottom: 0.025
  18359. }
  18360. },
  18361. back: {
  18362. height: math.unit(9.5, "feet"),
  18363. weight: math.unit(600, "lb"),
  18364. name: "Back",
  18365. image: {
  18366. source: "./media/characters/de'vout/back.svg",
  18367. extra: 1443 / 1328
  18368. }
  18369. },
  18370. frontDressed: {
  18371. height: math.unit(9.5, "feet"),
  18372. weight: math.unit(600, "lb"),
  18373. name: "Front (Dressed",
  18374. image: {
  18375. source: "./media/characters/de'vout/front-dressed.svg",
  18376. extra: 1443 / 1328,
  18377. bottom: 0.025
  18378. }
  18379. },
  18380. backDressed: {
  18381. height: math.unit(9.5, "feet"),
  18382. weight: math.unit(600, "lb"),
  18383. name: "Back (Dressed",
  18384. image: {
  18385. source: "./media/characters/de'vout/back-dressed.svg",
  18386. extra: 1443 / 1328
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(9.5, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(8, "feet"),
  18403. weight: math.unit(225, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/talana/front.svg",
  18407. extra: 1410 / 1300,
  18408. bottom: 0.015
  18409. }
  18410. },
  18411. frontDressed: {
  18412. height: math.unit(8, "feet"),
  18413. weight: math.unit(225, "lb"),
  18414. name: "Front (Dressed",
  18415. image: {
  18416. source: "./media/characters/talana/front-dressed.svg",
  18417. extra: 1410 / 1300,
  18418. bottom: 0.015
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(8, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18432. {
  18433. side: {
  18434. height: math.unit(7.2, "feet"),
  18435. weight: math.unit(150, "lb"),
  18436. name: "Side",
  18437. image: {
  18438. source: "./media/characters/xeauvok/side.svg",
  18439. extra: 1975 / 1523,
  18440. bottom: 0.07
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(7.2, "feet"),
  18448. default: true
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18454. {
  18455. side: {
  18456. height: math.unit(10, "feet"),
  18457. weight: math.unit(900, "kg"),
  18458. name: "Side",
  18459. image: {
  18460. source: "./media/characters/zara/side.svg",
  18461. extra: 504 / 498
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(10, "feet"),
  18469. default: true
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18475. {
  18476. side: {
  18477. height: math.unit(6, "feet"),
  18478. weight: math.unit(150, "lb"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/richard-dragon/side.svg",
  18482. extra: 845 / 340,
  18483. bottom: 0.017
  18484. }
  18485. },
  18486. maw: {
  18487. height: math.unit(2.97, "feet"),
  18488. name: "Maw",
  18489. image: {
  18490. source: "./media/characters/richard-dragon/maw.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(4, "feet"),
  18502. weight: math.unit(100, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/richard-smeargle/front.svg",
  18506. extra: 2952 / 2820,
  18507. bottom: 0.028
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Normal",
  18514. height: math.unit(4, "feet"),
  18515. default: true
  18516. },
  18517. {
  18518. name: "Dynamax",
  18519. height: math.unit(20, "meters")
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18525. {
  18526. front: {
  18527. height: math.unit(6, "feet"),
  18528. weight: math.unit(110, "lb"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/klay/front.svg",
  18532. extra: 962 / 883,
  18533. bottom: 0.04
  18534. }
  18535. },
  18536. back: {
  18537. height: math.unit(6, "feet"),
  18538. weight: math.unit(110, "lb"),
  18539. name: "Back",
  18540. image: {
  18541. source: "./media/characters/klay/back.svg",
  18542. extra: 962 / 883
  18543. }
  18544. },
  18545. beans: {
  18546. height: math.unit(1.15, "feet"),
  18547. name: "Beans",
  18548. image: {
  18549. source: "./media/characters/klay/beans.svg"
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Micro",
  18556. height: math.unit(6, "inches")
  18557. },
  18558. {
  18559. name: "Mini",
  18560. height: math.unit(3, "feet")
  18561. },
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(6, "feet"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Big",
  18569. height: math.unit(25, "feet")
  18570. },
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(100, "feet")
  18574. },
  18575. {
  18576. name: "Megamacro",
  18577. height: math.unit(400, "feet")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(6, "feet"),
  18586. weight: math.unit(160, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/marcus/front.svg",
  18590. extra: 734 / 676,
  18591. bottom: 0.03
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Little",
  18598. height: math.unit(6, "feet")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(110, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(250, "feet")
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(1000, "feet")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(7, "feet"),
  18620. weight: math.unit(275, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/claude-delroute/front.svg",
  18624. extra: 902/827,
  18625. bottom: 26/928
  18626. }
  18627. },
  18628. side: {
  18629. height: math.unit(7, "feet"),
  18630. weight: math.unit(275, "lb"),
  18631. name: "Side",
  18632. image: {
  18633. source: "./media/characters/claude-delroute/side.svg",
  18634. extra: 908/853,
  18635. bottom: 16/924
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(7, "feet"),
  18640. weight: math.unit(275, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/claude-delroute/back.svg",
  18644. extra: 911/829,
  18645. bottom: 18/929
  18646. }
  18647. },
  18648. maw: {
  18649. height: math.unit(0.6407, "meters"),
  18650. name: "Maw",
  18651. image: {
  18652. source: "./media/characters/claude-delroute/maw.svg"
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(7, "feet"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Lorge",
  18664. height: math.unit(20, "feet")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(8 + 4 / 12, "feet"),
  18673. weight: math.unit(600, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/dragonien/front.svg",
  18677. extra: 100 / 94,
  18678. bottom: 3.3 / 103.3445
  18679. }
  18680. },
  18681. back: {
  18682. height: math.unit(8 + 4 / 12, "feet"),
  18683. weight: math.unit(600, "lb"),
  18684. name: "Back",
  18685. image: {
  18686. source: "./media/characters/dragonien/back.svg",
  18687. extra: 776 / 746,
  18688. bottom: 6.4 / 782.0616
  18689. }
  18690. },
  18691. foot: {
  18692. height: math.unit(1.54, "feet"),
  18693. name: "Foot",
  18694. image: {
  18695. source: "./media/characters/dragonien/foot.svg",
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(8 + 4 / 12, "feet"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(200, "feet")
  18708. },
  18709. {
  18710. name: "Megamacro",
  18711. height: math.unit(1, "mile")
  18712. },
  18713. {
  18714. name: "Gigamacro",
  18715. height: math.unit(1000, "miles")
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(5 + 2 / 12, "feet"),
  18724. weight: math.unit(110, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/desta/front.svg",
  18728. extra: 767 / 726,
  18729. bottom: 11.7 / 779
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(5 + 2 / 12, "feet"),
  18734. weight: math.unit(110, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/desta/back.svg",
  18738. extra: 777 / 728,
  18739. bottom: 6 / 784
  18740. }
  18741. },
  18742. frontAlt: {
  18743. height: math.unit(5 + 2 / 12, "feet"),
  18744. weight: math.unit(110, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/desta/front-alt.svg",
  18748. extra: 1482 / 1417
  18749. }
  18750. },
  18751. side: {
  18752. height: math.unit(5 + 2 / 12, "feet"),
  18753. weight: math.unit(110, "lb"),
  18754. name: "Side",
  18755. image: {
  18756. source: "./media/characters/desta/side.svg",
  18757. extra: 2579 / 2491,
  18758. bottom: 0.053
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Micro",
  18765. height: math.unit(6, "inches")
  18766. },
  18767. {
  18768. name: "Normal",
  18769. height: math.unit(5 + 2 / 12, "feet"),
  18770. default: true
  18771. },
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(62, "feet")
  18775. },
  18776. {
  18777. name: "Megamacro",
  18778. height: math.unit(1800, "feet")
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(10, "feet"),
  18787. weight: math.unit(700, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/storm-alystar/front.svg",
  18791. extra: 2112 / 1898,
  18792. bottom: 0.034
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Micro",
  18799. height: math.unit(3.5, "inches")
  18800. },
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(10, "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Macro",
  18808. height: math.unit(400, "feet")
  18809. },
  18810. {
  18811. name: "Deific",
  18812. height: math.unit(60, "miles")
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18818. {
  18819. front: {
  18820. height: math.unit(2.35, "meters"),
  18821. weight: math.unit(119, "kg"),
  18822. name: "Front",
  18823. image: {
  18824. source: "./media/characters/ilia/front.svg",
  18825. extra: 1285 / 1255,
  18826. bottom: 0.06
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(2.35, "meters")
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(140, "meters"),
  18838. default: true
  18839. },
  18840. {
  18841. name: "Megamacro",
  18842. height: math.unit(100, "miles")
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(6 + 5 / 12, "feet"),
  18851. weight: math.unit(190, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/kingdead/front.svg",
  18855. extra: 1228 / 1177
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(7, "inches")
  18863. },
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(6 + 5 / 12, "feet")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(150, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(200, "miles")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(8, "feet"),
  18884. weight: math.unit(600, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/kyrehx/front.svg",
  18888. extra: 1195 / 1095,
  18889. bottom: 0.034
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Micro",
  18896. height: math.unit(2, "inches")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(8, "feet"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(255, "feet")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18914. weight: math.unit(184, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/xang/front.svg",
  18918. extra: 845 / 755
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18926. default: true
  18927. },
  18928. {
  18929. name: "Macro",
  18930. height: math.unit(0.935 * 146, "feet")
  18931. },
  18932. {
  18933. name: "Megamacro",
  18934. height: math.unit(0.935 * 3, "miles")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18940. {
  18941. frontDressed: {
  18942. height: math.unit(5 + 7 / 12, "feet"),
  18943. weight: math.unit(140, "lb"),
  18944. name: "Front (Dressed)",
  18945. image: {
  18946. source: "./media/characters/doc-weardno/front-dressed.svg",
  18947. extra: 263 / 234
  18948. }
  18949. },
  18950. backDressed: {
  18951. height: math.unit(5 + 7 / 12, "feet"),
  18952. weight: math.unit(140, "lb"),
  18953. name: "Back (Dressed)",
  18954. image: {
  18955. source: "./media/characters/doc-weardno/back-dressed.svg",
  18956. extra: 266 / 238
  18957. }
  18958. },
  18959. front: {
  18960. height: math.unit(5 + 7 / 12, "feet"),
  18961. weight: math.unit(140, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/doc-weardno/front.svg",
  18965. extra: 254 / 233
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Micro",
  18972. height: math.unit(3, "inches")
  18973. },
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(5 + 7 / 12, "feet"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(25, "feet")
  18982. },
  18983. {
  18984. name: "Megamacro",
  18985. height: math.unit(2, "miles")
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(6 + 2 / 12, "feet"),
  18994. weight: math.unit(153, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/seth-whilst/front.svg",
  18998. bottom: 0.07
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(5, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 2 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(3, "inches"),
  19019. weight: math.unit(8, "grams"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/pocket-jabari/front.svg",
  19023. extra: 1024 / 974,
  19024. bottom: 0.039
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Minimicro",
  19031. height: math.unit(8, "mm")
  19032. },
  19033. {
  19034. name: "Micro",
  19035. height: math.unit(3, "inches"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(3, "feet")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(15, "feet"),
  19049. weight: math.unit(3280, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/sapphy/front.svg",
  19053. extra: 671 / 577,
  19054. bottom: 0.085
  19055. }
  19056. },
  19057. back: {
  19058. height: math.unit(15, "feet"),
  19059. weight: math.unit(3280, "lb"),
  19060. name: "Back",
  19061. image: {
  19062. source: "./media/characters/sapphy/back.svg",
  19063. extra: 631 / 607,
  19064. bottom: 0.045
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(15, "feet")
  19072. },
  19073. {
  19074. name: "Casual Macro",
  19075. height: math.unit(120, "feet")
  19076. },
  19077. {
  19078. name: "Macro",
  19079. height: math.unit(2150, "feet"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Megamacro",
  19084. height: math.unit(8, "miles")
  19085. },
  19086. {
  19087. name: "Galaxy Mom",
  19088. height: math.unit(6, "megalightyears")
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(6, "feet"),
  19097. weight: math.unit(170, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/kiro/front.svg",
  19101. extra: 1064 / 1012,
  19102. bottom: 0.052
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Micro",
  19109. height: math.unit(6, "inches")
  19110. },
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(6, "feet"),
  19114. default: true
  19115. },
  19116. {
  19117. name: "Macro",
  19118. height: math.unit(72, "feet")
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(5 + 9 / 12, "feet"),
  19127. weight: math.unit(175, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/irishfox/front.svg",
  19131. extra: 1912 / 1680,
  19132. bottom: 0.02
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Nano",
  19139. height: math.unit(1, "mm")
  19140. },
  19141. {
  19142. name: "Micro",
  19143. height: math.unit(2, "inches")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(5 + 9 / 12, "feet"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(45, "feet")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(6 + 1 / 12, "feet"),
  19161. weight: math.unit(75, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/aronai-sieyes/front.svg",
  19165. extra: 1532/1450,
  19166. bottom: 42/1574
  19167. }
  19168. },
  19169. side: {
  19170. height: math.unit(6 + 1 / 12, "feet"),
  19171. weight: math.unit(75, "lb"),
  19172. name: "Side",
  19173. image: {
  19174. source: "./media/characters/aronai-sieyes/side.svg",
  19175. extra: 1422/1365,
  19176. bottom: 148/1570
  19177. }
  19178. },
  19179. back: {
  19180. height: math.unit(6 + 1 / 12, "feet"),
  19181. weight: math.unit(75, "lb"),
  19182. name: "Back",
  19183. image: {
  19184. source: "./media/characters/aronai-sieyes/back.svg",
  19185. extra: 1526/1464,
  19186. bottom: 51/1577
  19187. }
  19188. },
  19189. dressed: {
  19190. height: math.unit(6 + 1 / 12, "feet"),
  19191. weight: math.unit(75, "lb"),
  19192. name: "Dressed",
  19193. image: {
  19194. source: "./media/characters/aronai-sieyes/dressed.svg",
  19195. extra: 1559/1483,
  19196. bottom: 39/1598
  19197. }
  19198. },
  19199. slit: {
  19200. height: math.unit(1.3, "feet"),
  19201. name: "Slit",
  19202. image: {
  19203. source: "./media/characters/aronai-sieyes/slit.svg"
  19204. }
  19205. },
  19206. slitSpread: {
  19207. height: math.unit(0.9, "feet"),
  19208. name: "Slit (Spread)",
  19209. image: {
  19210. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19211. }
  19212. },
  19213. rump: {
  19214. height: math.unit(1.3, "feet"),
  19215. name: "Rump",
  19216. image: {
  19217. source: "./media/characters/aronai-sieyes/rump.svg"
  19218. }
  19219. },
  19220. maw: {
  19221. height: math.unit(1.25, "feet"),
  19222. name: "Maw",
  19223. image: {
  19224. source: "./media/characters/aronai-sieyes/maw.svg"
  19225. }
  19226. },
  19227. feral: {
  19228. height: math.unit(18, "feet"),
  19229. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19230. name: "Feral",
  19231. image: {
  19232. source: "./media/characters/aronai-sieyes/feral.svg",
  19233. extra: 1530 / 1240,
  19234. bottom: 0.035
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Micro",
  19241. height: math.unit(2, "inches")
  19242. },
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(6 + 1 / 12, "feet"),
  19246. default: true
  19247. }
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(12, "feet"),
  19255. weight: math.unit(410, "kg"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/xuna/front.svg",
  19259. extra: 2184 / 1980
  19260. }
  19261. },
  19262. side: {
  19263. height: math.unit(12, "feet"),
  19264. weight: math.unit(410, "kg"),
  19265. name: "Side",
  19266. image: {
  19267. source: "./media/characters/xuna/side.svg",
  19268. extra: 2184 / 1980
  19269. }
  19270. },
  19271. back: {
  19272. height: math.unit(12, "feet"),
  19273. weight: math.unit(410, "kg"),
  19274. name: "Back",
  19275. image: {
  19276. source: "./media/characters/xuna/back.svg",
  19277. extra: 2184 / 1980
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Nano glow",
  19284. height: math.unit(10, "nm")
  19285. },
  19286. {
  19287. name: "Micro floof",
  19288. height: math.unit(0.3, "m")
  19289. },
  19290. {
  19291. name: "Huggable softy boi",
  19292. height: math.unit(3.6576, "m"),
  19293. default: true
  19294. },
  19295. {
  19296. name: "Admirable floof",
  19297. height: math.unit(80, "meters")
  19298. },
  19299. {
  19300. name: "Gentle macro",
  19301. height: math.unit(300, "meters")
  19302. },
  19303. {
  19304. name: "Very careful floof",
  19305. height: math.unit(3200, "meters")
  19306. },
  19307. {
  19308. name: "The mega floof",
  19309. height: math.unit(36000, "meters")
  19310. },
  19311. {
  19312. name: "Giga-fur-Wicker",
  19313. height: math.unit(4800000, "meters")
  19314. },
  19315. {
  19316. name: "Licky world",
  19317. height: math.unit(20000000, "meters")
  19318. },
  19319. {
  19320. name: "Floofy cyan sun",
  19321. height: math.unit(1500000000, "meters")
  19322. },
  19323. {
  19324. name: "Milky Wicker",
  19325. height: math.unit(1000000000000000000000, "meters")
  19326. },
  19327. {
  19328. name: "The observing Wicker",
  19329. height: math.unit(999999999999999999999999999, "meters")
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(5 + 9 / 12, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/arokha-sieyes/front.svg",
  19342. extra: 1425 / 1284,
  19343. bottom: 0.05
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(5 + 9 / 12, "feet")
  19351. },
  19352. {
  19353. name: "Macro",
  19354. height: math.unit(30, "meters"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(6, "feet"),
  19364. weight: math.unit(180, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/arokh-sieyes/front.svg",
  19368. extra: 1830 / 1769,
  19369. bottom: 0.01
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(6, "feet")
  19377. },
  19378. {
  19379. name: "Macro",
  19380. height: math.unit(30, "meters"),
  19381. default: true
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19387. {
  19388. side: {
  19389. height: math.unit(13 + 1 / 12, "feet"),
  19390. weight: math.unit(8.5, "tonnes"),
  19391. name: "Side",
  19392. image: {
  19393. source: "./media/characters/goldeneye/side.svg",
  19394. extra: 1182 / 778,
  19395. bottom: 0.067
  19396. }
  19397. },
  19398. paw: {
  19399. height: math.unit(3.4, "feet"),
  19400. name: "Paw",
  19401. image: {
  19402. source: "./media/characters/goldeneye/paw.svg"
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(13 + 1 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19416. {
  19417. front: {
  19418. height: math.unit(6 + 1 / 12, "feet"),
  19419. weight: math.unit(210, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/leonardo-lycheborne/front.svg",
  19423. extra: 776/723,
  19424. bottom: 34/810
  19425. }
  19426. },
  19427. side: {
  19428. height: math.unit(6 + 1 / 12, "feet"),
  19429. weight: math.unit(210, "lb"),
  19430. name: "Side",
  19431. image: {
  19432. source: "./media/characters/leonardo-lycheborne/side.svg",
  19433. extra: 780/728,
  19434. bottom: 12/792
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(6 + 1 / 12, "feet"),
  19439. weight: math.unit(210, "lb"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/leonardo-lycheborne/back.svg",
  19443. extra: 775/721,
  19444. bottom: 17/792
  19445. }
  19446. },
  19447. hand: {
  19448. height: math.unit(1.08, "feet"),
  19449. name: "Hand",
  19450. image: {
  19451. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19452. }
  19453. },
  19454. foot: {
  19455. height: math.unit(1.32, "feet"),
  19456. name: "Foot",
  19457. image: {
  19458. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19459. }
  19460. },
  19461. maw: {
  19462. height: math.unit(1, "feet"),
  19463. name: "Maw",
  19464. image: {
  19465. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19466. }
  19467. },
  19468. were: {
  19469. height: math.unit(20, "feet"),
  19470. weight: math.unit(7800, "lb"),
  19471. name: "Were",
  19472. image: {
  19473. source: "./media/characters/leonardo-lycheborne/were.svg",
  19474. extra: 1224/1165,
  19475. bottom: 72/1296
  19476. }
  19477. },
  19478. feral: {
  19479. height: math.unit(7.5, "feet"),
  19480. weight: math.unit(600, "lb"),
  19481. name: "Feral",
  19482. image: {
  19483. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19484. extra: 797/702,
  19485. bottom: 139/936
  19486. }
  19487. },
  19488. taur: {
  19489. height: math.unit(11, "feet"),
  19490. weight: math.unit(3300, "lb"),
  19491. name: "Taur",
  19492. image: {
  19493. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19494. extra: 1271/1197,
  19495. bottom: 47/1318
  19496. }
  19497. },
  19498. barghest: {
  19499. height: math.unit(11, "feet"),
  19500. weight: math.unit(1300, "lb"),
  19501. name: "Barghest",
  19502. image: {
  19503. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19504. extra: 1291/1204,
  19505. bottom: 37/1328
  19506. }
  19507. },
  19508. dick: {
  19509. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19510. name: "Dick",
  19511. image: {
  19512. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19513. }
  19514. },
  19515. dickWere: {
  19516. height: math.unit((20) / 3.8, "feet"),
  19517. name: "Dick (Were)",
  19518. image: {
  19519. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 1 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(10, "feet"),
  19536. weight: math.unit(350, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/jet/front.svg",
  19540. extra: 2050 / 1980,
  19541. bottom: 0.013
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(10, "feet"),
  19546. weight: math.unit(350, "lb"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/jet/back.svg",
  19550. extra: 2050 / 1980,
  19551. bottom: 0.013
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Micro",
  19558. height: math.unit(6, "inches")
  19559. },
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(10, "feet"),
  19563. default: true
  19564. },
  19565. {
  19566. name: "Macro",
  19567. height: math.unit(100, "feet")
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(15, "feet"),
  19576. weight: math.unit(2800, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/tanarath/front.svg",
  19580. extra: 2392 / 2220,
  19581. bottom: 0.03
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(15, "feet"),
  19586. weight: math.unit(2800, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/tanarath/back.svg",
  19590. extra: 2392 / 2220,
  19591. bottom: 0.03
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(15, "feet"),
  19599. default: true
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(7 + 1 / 12, "feet"),
  19608. weight: math.unit(175, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/patty-cattybatty/front.svg",
  19612. extra: 908 / 874,
  19613. bottom: 0.025
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Micro",
  19620. height: math.unit(1, "inch")
  19621. },
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(7 + 1 / 12, "feet")
  19625. },
  19626. {
  19627. name: "Mini Macro",
  19628. height: math.unit(155, "feet")
  19629. },
  19630. {
  19631. name: "Macro",
  19632. height: math.unit(1077, "feet")
  19633. },
  19634. {
  19635. name: "Mega Macro",
  19636. height: math.unit(47650, "feet"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Giga Macro",
  19641. height: math.unit(440, "miles")
  19642. },
  19643. {
  19644. name: "Tera Macro",
  19645. height: math.unit(8700, "miles")
  19646. },
  19647. {
  19648. name: "Planetary Macro",
  19649. height: math.unit(32700, "miles")
  19650. },
  19651. {
  19652. name: "Solar Macro",
  19653. height: math.unit(550000, "miles")
  19654. },
  19655. {
  19656. name: "Celestial Macro",
  19657. height: math.unit(2.5, "AU")
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19663. {
  19664. front: {
  19665. height: math.unit(4 + 5 / 12, "feet"),
  19666. weight: math.unit(90, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/cappu/front.svg",
  19670. extra: 1247 / 1152,
  19671. bottom: 0.012
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(4 + 5 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19685. {
  19686. frontDressed: {
  19687. height: math.unit(70, "cm"),
  19688. weight: math.unit(6, "kg"),
  19689. name: "Front (Dressed)",
  19690. image: {
  19691. source: "./media/characters/sebi/front-dressed.svg",
  19692. extra: 713.5 / 686.5,
  19693. bottom: 0.003
  19694. }
  19695. },
  19696. front: {
  19697. height: math.unit(70, "cm"),
  19698. weight: math.unit(5, "kg"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/sebi/front.svg",
  19702. extra: 713.5 / 686.5,
  19703. bottom: 0.003
  19704. }
  19705. }
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(70, "cm"),
  19711. default: true
  19712. },
  19713. {
  19714. name: "Macro",
  19715. height: math.unit(8, "meters")
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(6, "feet"),
  19724. weight: math.unit(150, "lb"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/typhek/front.svg",
  19728. extra: 1948 / 1929,
  19729. bottom: 0.025
  19730. }
  19731. },
  19732. side: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(150, "lb"),
  19735. name: "Side",
  19736. image: {
  19737. source: "./media/characters/typhek/side.svg",
  19738. extra: 2034 / 2010,
  19739. bottom: 0.003
  19740. }
  19741. },
  19742. back: {
  19743. height: math.unit(6, "feet"),
  19744. weight: math.unit(150, "lb"),
  19745. name: "Back",
  19746. image: {
  19747. source: "./media/characters/typhek/back.svg",
  19748. extra: 2005 / 1978,
  19749. bottom: 0.004
  19750. }
  19751. },
  19752. palm: {
  19753. height: math.unit(1.2, "feet"),
  19754. name: "Palm",
  19755. image: {
  19756. source: "./media/characters/typhek/palm.svg"
  19757. }
  19758. },
  19759. fist: {
  19760. height: math.unit(1.1, "feet"),
  19761. name: "Fist",
  19762. image: {
  19763. source: "./media/characters/typhek/fist.svg"
  19764. }
  19765. },
  19766. foot: {
  19767. height: math.unit(1.57, "feet"),
  19768. name: "Foot",
  19769. image: {
  19770. source: "./media/characters/typhek/foot.svg"
  19771. }
  19772. },
  19773. sole: {
  19774. height: math.unit(2.05, "feet"),
  19775. name: "Sole",
  19776. image: {
  19777. source: "./media/characters/typhek/sole.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Macro",
  19784. height: math.unit(40, "stories"),
  19785. default: true
  19786. },
  19787. {
  19788. name: "Megamacro",
  19789. height: math.unit(1, "mile")
  19790. },
  19791. {
  19792. name: "Gigamacro",
  19793. height: math.unit(4000, "solarradii")
  19794. },
  19795. {
  19796. name: "Universal",
  19797. height: math.unit(1.1, "universes")
  19798. }
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19803. {
  19804. side: {
  19805. height: math.unit(5 + 7 / 12, "feet"),
  19806. weight: math.unit(150, "lb"),
  19807. name: "Side",
  19808. image: {
  19809. source: "./media/characters/kassy/side.svg",
  19810. extra: 1280 / 1225,
  19811. bottom: 0.002
  19812. }
  19813. },
  19814. front: {
  19815. height: math.unit(5 + 7 / 12, "feet"),
  19816. weight: math.unit(150, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/kassy/front.svg",
  19820. extra: 1280 / 1225,
  19821. bottom: 0.025
  19822. }
  19823. },
  19824. back: {
  19825. height: math.unit(5 + 7 / 12, "feet"),
  19826. weight: math.unit(150, "lb"),
  19827. name: "Back",
  19828. image: {
  19829. source: "./media/characters/kassy/back.svg",
  19830. extra: 1280 / 1225,
  19831. bottom: 0.002
  19832. }
  19833. },
  19834. foot: {
  19835. height: math.unit(1.266, "feet"),
  19836. name: "Foot",
  19837. image: {
  19838. source: "./media/characters/kassy/foot.svg"
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(5 + 7 / 12, "feet")
  19846. },
  19847. {
  19848. name: "Macro",
  19849. height: math.unit(137, "feet"),
  19850. default: true
  19851. },
  19852. {
  19853. name: "Megamacro",
  19854. height: math.unit(1, "mile")
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(6 + 1 / 12, "feet"),
  19863. weight: math.unit(200, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/neil/front.svg",
  19867. extra: 1326 / 1250,
  19868. bottom: 0.023
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Normal",
  19875. height: math.unit(6 + 1 / 12, "feet"),
  19876. default: true
  19877. },
  19878. {
  19879. name: "Macro",
  19880. height: math.unit(200, "feet")
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(5 + 9 / 12, "feet"),
  19889. weight: math.unit(190, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/atticus/front.svg",
  19893. extra: 2934 / 2785,
  19894. bottom: 0.025
  19895. }
  19896. },
  19897. },
  19898. [
  19899. {
  19900. name: "Normal",
  19901. height: math.unit(5 + 9 / 12, "feet"),
  19902. default: true
  19903. },
  19904. {
  19905. name: "Macro",
  19906. height: math.unit(180, "feet")
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19912. {
  19913. side: {
  19914. height: math.unit(9, "feet"),
  19915. weight: math.unit(650, "lb"),
  19916. name: "Side",
  19917. image: {
  19918. source: "./media/characters/milo/side.svg",
  19919. extra: 2644 / 2310,
  19920. bottom: 0.032
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(9, "feet"),
  19928. default: true
  19929. },
  19930. {
  19931. name: "Macro",
  19932. height: math.unit(300, "feet")
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19938. {
  19939. side: {
  19940. height: math.unit(8, "meters"),
  19941. weight: math.unit(90000, "kg"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/ijzer/side.svg",
  19945. extra: 2756 / 1600,
  19946. bottom: 0.01
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Small",
  19953. height: math.unit(3, "meters")
  19954. },
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(8, "meters"),
  19958. default: true
  19959. },
  19960. {
  19961. name: "Normal+",
  19962. height: math.unit(10, "meters")
  19963. },
  19964. {
  19965. name: "Bigger",
  19966. height: math.unit(24, "meters")
  19967. },
  19968. {
  19969. name: "Huge",
  19970. height: math.unit(80, "meters")
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19976. {
  19977. front: {
  19978. height: math.unit(6 + 2 / 12, "feet"),
  19979. weight: math.unit(153, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/luca-cervicum/front.svg",
  19983. extra: 370 / 327,
  19984. bottom: 0.015
  19985. }
  19986. },
  19987. back: {
  19988. height: math.unit(6 + 2 / 12, "feet"),
  19989. weight: math.unit(153, "lb"),
  19990. name: "Back",
  19991. image: {
  19992. source: "./media/characters/luca-cervicum/back.svg",
  19993. extra: 367 / 333,
  19994. bottom: 0.005
  19995. }
  19996. },
  19997. frontGear: {
  19998. height: math.unit(6 + 2 / 12, "feet"),
  19999. weight: math.unit(173, "lb"),
  20000. name: "Front (Gear)",
  20001. image: {
  20002. source: "./media/characters/luca-cervicum/front-gear.svg",
  20003. extra: 377 / 333,
  20004. bottom: 0.006
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(6 + 2 / 12, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(6 + 1 / 12, "feet"),
  20021. weight: math.unit(304, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/oliver/front.svg",
  20025. extra: 157 / 143,
  20026. bottom: 0.08
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(6 + 1 / 12, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(5 + 7 / 12, "feet"),
  20043. weight: math.unit(140, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/shane/front.svg",
  20047. extra: 304 / 289,
  20048. bottom: 0.005
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(5 + 7 / 12, "feet"),
  20056. default: true
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(5 + 9 / 12, "feet"),
  20065. weight: math.unit(178, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/shin/front.svg",
  20069. extra: 159 / 151,
  20070. bottom: 0.015
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(5 + 9 / 12, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(5 + 10 / 12, "feet"),
  20087. weight: math.unit(168, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/xerxes/front.svg",
  20091. extra: 282 / 260,
  20092. bottom: 0.045
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(5 + 10 / 12, "feet"),
  20100. default: true
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(6 + 7 / 12, "feet"),
  20109. weight: math.unit(208, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/chaska/front.svg",
  20113. extra: 332 / 319,
  20114. bottom: 0.015
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(6 + 7 / 12, "feet"),
  20122. default: true
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(5 + 8 / 12, "feet"),
  20131. weight: math.unit(208, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/enuk/front.svg",
  20135. extra: 437 / 406,
  20136. bottom: 0.02
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(5 + 8 / 12, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(5 + 10 / 12, "feet"),
  20153. weight: math.unit(252, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/bruun/front.svg",
  20157. extra: 197 / 187,
  20158. bottom: 0.012
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(5 + 10 / 12, "feet"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(6 + 10 / 12, "feet"),
  20175. weight: math.unit(255, "lb"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/alexeev/front.svg",
  20179. extra: 213 / 200,
  20180. bottom: 0.05
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(6 + 10 / 12, "feet"),
  20188. default: true
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20194. {
  20195. front: {
  20196. height: math.unit(2 + 8 / 12, "feet"),
  20197. weight: math.unit(22, "lb"),
  20198. name: "Front",
  20199. image: {
  20200. source: "./media/characters/evelyn/front.svg",
  20201. extra: 208 / 180
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(2 + 8 / 12, "feet"),
  20209. default: true
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20215. {
  20216. front: {
  20217. height: math.unit(5 + 9 / 12, "feet"),
  20218. weight: math.unit(139, "lb"),
  20219. name: "Front",
  20220. image: {
  20221. source: "./media/characters/inca/front.svg",
  20222. extra: 294 / 291,
  20223. bottom: 0.03
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(5 + 9 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(6 + 3 / 12, "feet"),
  20240. weight: math.unit(185, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/mera/front.svg",
  20244. extra: 291 / 277,
  20245. bottom: 0.03
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(6 + 3 / 12, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(6 + 7 / 12, "feet"),
  20262. weight: math.unit(160, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/ceres/front.svg",
  20266. extra: 1023 / 950,
  20267. bottom: 0.027
  20268. }
  20269. },
  20270. back: {
  20271. height: math.unit(6 + 7 / 12, "feet"),
  20272. weight: math.unit(160, "lb"),
  20273. name: "Back",
  20274. image: {
  20275. source: "./media/characters/ceres/back.svg",
  20276. extra: 1023 / 950
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(6 + 7 / 12, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(5 + 10 / 12, "feet"),
  20293. weight: math.unit(150, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/kris/front.svg",
  20297. extra: 885 / 803,
  20298. bottom: 0.03
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(5 + 10 / 12, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(7, "feet"),
  20315. weight: math.unit(120, "kg"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/taluthus/front.svg",
  20319. extra: 903 / 833,
  20320. bottom: 0.015
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(7, "feet"),
  20328. default: true
  20329. },
  20330. {
  20331. name: "Macro",
  20332. height: math.unit(300, "feet")
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(5 + 9 / 12, "feet"),
  20341. weight: math.unit(145, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/dawn/front.svg",
  20345. extra: 2094 / 2016,
  20346. bottom: 0.025
  20347. }
  20348. },
  20349. back: {
  20350. height: math.unit(5 + 9 / 12, "feet"),
  20351. weight: math.unit(160, "lb"),
  20352. name: "Back",
  20353. image: {
  20354. source: "./media/characters/dawn/back.svg",
  20355. extra: 2112 / 2080,
  20356. bottom: 0.005
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(6 + 7 / 12, "feet"),
  20364. default: true
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20370. {
  20371. anthro: {
  20372. height: math.unit(8 + 3 / 12, "feet"),
  20373. weight: math.unit(450, "lb"),
  20374. name: "Anthro",
  20375. image: {
  20376. source: "./media/characters/arador/anthro.svg",
  20377. extra: 1835 / 1718,
  20378. bottom: 0.025
  20379. }
  20380. },
  20381. feral: {
  20382. height: math.unit(4, "feet"),
  20383. weight: math.unit(200, "lb"),
  20384. name: "Feral",
  20385. image: {
  20386. source: "./media/characters/arador/feral.svg",
  20387. extra: 1683 / 1514,
  20388. bottom: 0.07
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Normal",
  20395. height: math.unit(8 + 3 / 12, "feet")
  20396. },
  20397. {
  20398. name: "Macro",
  20399. height: math.unit(82.5, "feet"),
  20400. default: true
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(5 + 10 / 12, "feet"),
  20409. weight: math.unit(125, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/dharsi/front.svg",
  20413. extra: 716 / 630,
  20414. bottom: 0.035
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Nano",
  20421. height: math.unit(100, "nm")
  20422. },
  20423. {
  20424. name: "Micro",
  20425. height: math.unit(2, "inches")
  20426. },
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(5 + 10 / 12, "feet"),
  20430. default: true
  20431. },
  20432. {
  20433. name: "Macro",
  20434. height: math.unit(1000, "feet")
  20435. },
  20436. {
  20437. name: "Megamacro",
  20438. height: math.unit(10, "miles")
  20439. },
  20440. {
  20441. name: "Gigamacro",
  20442. height: math.unit(3000, "miles")
  20443. },
  20444. {
  20445. name: "Teramacro",
  20446. height: math.unit(500000, "miles")
  20447. },
  20448. {
  20449. name: "Teramacro+",
  20450. height: math.unit(30, "galaxies")
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(6, "feet"),
  20459. weight: math.unit(150, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/deathy/front.svg",
  20463. extra: 1552 / 1463,
  20464. bottom: 0.025
  20465. }
  20466. },
  20467. side: {
  20468. height: math.unit(6, "feet"),
  20469. weight: math.unit(150, "lb"),
  20470. name: "Side",
  20471. image: {
  20472. source: "./media/characters/deathy/side.svg",
  20473. extra: 1604 / 1455,
  20474. bottom: 0.025
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(6, "feet"),
  20479. weight: math.unit(150, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/deathy/back.svg",
  20483. extra: 1580 / 1463,
  20484. bottom: 0.005
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Micro",
  20491. height: math.unit(5, "millimeters")
  20492. },
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(6 + 5 / 12, "feet"),
  20496. default: true
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20502. {
  20503. front: {
  20504. height: math.unit(16, "feet"),
  20505. weight: math.unit(4000, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/juniper/front.svg",
  20509. bottom: 0.04
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Normal",
  20516. height: math.unit(16, "feet"),
  20517. default: true
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20523. {
  20524. front: {
  20525. height: math.unit(6, "feet"),
  20526. weight: math.unit(150, "lb"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/hipster/front.svg",
  20530. extra: 1312 / 1209,
  20531. bottom: 0.025
  20532. }
  20533. },
  20534. back: {
  20535. height: math.unit(6, "feet"),
  20536. weight: math.unit(150, "lb"),
  20537. name: "Back",
  20538. image: {
  20539. source: "./media/characters/hipster/back.svg",
  20540. extra: 1281 / 1196,
  20541. bottom: 0.01
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Micro",
  20548. height: math.unit(1, "mm")
  20549. },
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(4, "inches"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Macro",
  20557. height: math.unit(500, "feet")
  20558. },
  20559. {
  20560. name: "Megamacro",
  20561. height: math.unit(1000, "miles")
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(6, "feet"),
  20570. weight: math.unit(150, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/tendirmuldr/front.svg",
  20574. extra: 1878 / 1772,
  20575. bottom: 0.015
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Megamacro",
  20582. height: math.unit(1500, "miles"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20589. {
  20590. front: {
  20591. height: math.unit(14, "feet"),
  20592. weight: math.unit(12000, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/mort/front.svg",
  20596. extra: 365 / 318,
  20597. bottom: 0.01
  20598. }
  20599. },
  20600. side: {
  20601. height: math.unit(14, "feet"),
  20602. weight: math.unit(12000, "lb"),
  20603. name: "Side",
  20604. image: {
  20605. source: "./media/characters/mort/side.svg",
  20606. extra: 365 / 318,
  20607. bottom: 0.052
  20608. },
  20609. default: true
  20610. },
  20611. back: {
  20612. height: math.unit(14, "feet"),
  20613. weight: math.unit(12000, "lb"),
  20614. name: "Back",
  20615. image: {
  20616. source: "./media/characters/mort/back.svg",
  20617. extra: 371 / 332,
  20618. bottom: 0.18
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(14, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20632. {
  20633. front: {
  20634. height: math.unit(8, "feet"),
  20635. weight: math.unit(1, "ton"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/lycoa/front.svg",
  20639. extra: 1875 / 1789,
  20640. bottom: 0.022
  20641. }
  20642. },
  20643. back: {
  20644. height: math.unit(8, "feet"),
  20645. weight: math.unit(1, "ton"),
  20646. name: "Back",
  20647. image: {
  20648. source: "./media/characters/lycoa/back.svg",
  20649. extra: 1835 / 1781,
  20650. bottom: 0.03
  20651. }
  20652. },
  20653. head: {
  20654. height: math.unit(2.1, "feet"),
  20655. name: "Head",
  20656. image: {
  20657. source: "./media/characters/lycoa/head.svg"
  20658. }
  20659. },
  20660. tailmaw: {
  20661. height: math.unit(1.9, "feet"),
  20662. name: "Tailmaw",
  20663. image: {
  20664. source: "./media/characters/lycoa/tailmaw.svg"
  20665. }
  20666. },
  20667. tentacles: {
  20668. height: math.unit(2.1, "feet"),
  20669. name: "Tentacles",
  20670. image: {
  20671. source: "./media/characters/lycoa/tentacles.svg"
  20672. }
  20673. },
  20674. dick: {
  20675. height: math.unit(1.73, "feet"),
  20676. name: "Dick",
  20677. image: {
  20678. source: "./media/characters/lycoa/dick.svg"
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Normal",
  20685. height: math.unit(8, "feet"),
  20686. default: true
  20687. },
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(30, "feet")
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20696. {
  20697. front: {
  20698. height: math.unit(4 + 2 / 12, "feet"),
  20699. weight: math.unit(70, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/naldara/front.svg",
  20703. extra: 841 / 720,
  20704. bottom: 0.04
  20705. }
  20706. },
  20707. naga: {
  20708. height: math.unit(23, "feet"),
  20709. weight: math.unit(15000, "kg"),
  20710. name: "Naga",
  20711. image: {
  20712. source: "./media/characters/naldara/naga.svg",
  20713. extra: 3290 / 2959,
  20714. bottom: 124 / 3432
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(4 + 2 / 12, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(13 + 7 / 12, "feet"),
  20731. weight: math.unit(1500, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/briar/front.svg",
  20735. extra: 626 / 596,
  20736. bottom: 0.08
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(13 + 7 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20750. {
  20751. side: {
  20752. height: math.unit(10, "feet"),
  20753. weight: math.unit(500, "lb"),
  20754. name: "Side",
  20755. image: {
  20756. source: "./media/characters/vanguard/side.svg",
  20757. extra: 502 / 425,
  20758. bottom: 0.087
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(10, "feet"),
  20766. default: true
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20772. {
  20773. front: {
  20774. height: math.unit(7.5, "feet"),
  20775. weight: math.unit(2, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/artemis/front.svg",
  20779. extra: 1192 / 1075,
  20780. bottom: 0.07
  20781. }
  20782. },
  20783. frontNsfw: {
  20784. height: math.unit(7.5, "feet"),
  20785. weight: math.unit(2, "lb"),
  20786. name: "Front (NSFW)",
  20787. image: {
  20788. source: "./media/characters/artemis/front-nsfw.svg",
  20789. extra: 1192 / 1075,
  20790. bottom: 0.07
  20791. }
  20792. },
  20793. frontNsfwer: {
  20794. height: math.unit(7.5, "feet"),
  20795. weight: math.unit(2, "lb"),
  20796. name: "Front (NSFW-er)",
  20797. image: {
  20798. source: "./media/characters/artemis/front-nsfwer.svg",
  20799. extra: 1192 / 1075,
  20800. bottom: 0.07
  20801. }
  20802. },
  20803. side: {
  20804. height: math.unit(7.5, "feet"),
  20805. weight: math.unit(2, "lb"),
  20806. name: "Side",
  20807. image: {
  20808. source: "./media/characters/artemis/side.svg",
  20809. extra: 1192 / 1075,
  20810. bottom: 0.07
  20811. }
  20812. },
  20813. sideNsfw: {
  20814. height: math.unit(7.5, "feet"),
  20815. weight: math.unit(2, "lb"),
  20816. name: "Side (NSFW)",
  20817. image: {
  20818. source: "./media/characters/artemis/side-nsfw.svg",
  20819. extra: 1192 / 1075,
  20820. bottom: 0.07
  20821. }
  20822. },
  20823. sideNsfwer: {
  20824. height: math.unit(7.5, "feet"),
  20825. weight: math.unit(2, "lb"),
  20826. name: "Side (NSFW-er)",
  20827. image: {
  20828. source: "./media/characters/artemis/side-nsfwer.svg",
  20829. extra: 1192 / 1075,
  20830. bottom: 0.07
  20831. }
  20832. },
  20833. maw: {
  20834. height: math.unit(1.1, "feet"),
  20835. name: "Maw",
  20836. image: {
  20837. source: "./media/characters/artemis/maw.svg"
  20838. }
  20839. },
  20840. stomach: {
  20841. height: math.unit(0.95, "feet"),
  20842. name: "Stomach",
  20843. image: {
  20844. source: "./media/characters/artemis/stomach.svg"
  20845. }
  20846. },
  20847. dickCanine: {
  20848. height: math.unit(1, "feet"),
  20849. name: "Dick (Canine)",
  20850. image: {
  20851. source: "./media/characters/artemis/dick-canine.svg"
  20852. }
  20853. },
  20854. dickEquine: {
  20855. height: math.unit(0.85, "feet"),
  20856. name: "Dick (Equine)",
  20857. image: {
  20858. source: "./media/characters/artemis/dick-equine.svg"
  20859. }
  20860. },
  20861. dickExotic: {
  20862. height: math.unit(0.85, "feet"),
  20863. name: "Dick (Exotic)",
  20864. image: {
  20865. source: "./media/characters/artemis/dick-exotic.svg"
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(7.5, "feet"),
  20873. default: true
  20874. },
  20875. {
  20876. name: "Enlarged",
  20877. height: math.unit(12, "feet")
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(5 + 3 / 12, "feet"),
  20886. weight: math.unit(160, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/kira/front.svg",
  20890. extra: 906 / 786,
  20891. bottom: 0.01
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(5 + 3 / 12, "feet"),
  20896. weight: math.unit(160, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/kira/back.svg",
  20900. extra: 882 / 757,
  20901. bottom: 0.005
  20902. }
  20903. },
  20904. frontDressed: {
  20905. height: math.unit(5 + 3 / 12, "feet"),
  20906. weight: math.unit(160, "lb"),
  20907. name: "Front (Dressed)",
  20908. image: {
  20909. source: "./media/characters/kira/front-dressed.svg",
  20910. extra: 906 / 786,
  20911. bottom: 0.01
  20912. }
  20913. },
  20914. beans: {
  20915. height: math.unit(0.92, "feet"),
  20916. name: "Beans",
  20917. image: {
  20918. source: "./media/characters/kira/beans.svg"
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(5 + 3 / 12, "feet"),
  20926. default: true
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20932. {
  20933. front: {
  20934. height: math.unit(5 + 4 / 12, "feet"),
  20935. weight: math.unit(145, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/scramble/front.svg",
  20939. extra: 763 / 727,
  20940. bottom: 0.05
  20941. }
  20942. },
  20943. back: {
  20944. height: math.unit(5 + 4 / 12, "feet"),
  20945. weight: math.unit(145, "lb"),
  20946. name: "Back",
  20947. image: {
  20948. source: "./media/characters/scramble/back.svg",
  20949. extra: 826 / 737,
  20950. bottom: 0.002
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 4 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20964. {
  20965. side: {
  20966. height: math.unit(6 + 2 / 12, "feet"),
  20967. weight: math.unit(190, "lb"),
  20968. name: "Side",
  20969. image: {
  20970. source: "./media/characters/biscuit/side.svg",
  20971. extra: 858 / 791,
  20972. bottom: 0.044
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 2 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(5 + 2 / 12, "feet"),
  20989. weight: math.unit(120, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/poffin/front.svg",
  20993. extra: 786 / 680,
  20994. bottom: 0.005
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(5 + 2 / 12, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21008. {
  21009. front: {
  21010. height: math.unit(6 + 3 / 12, "feet"),
  21011. weight: math.unit(519, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/dhari/front.svg",
  21015. extra: 1048 / 946,
  21016. bottom: 0.015
  21017. }
  21018. },
  21019. back: {
  21020. height: math.unit(6 + 3 / 12, "feet"),
  21021. weight: math.unit(519, "lb"),
  21022. name: "Back",
  21023. image: {
  21024. source: "./media/characters/dhari/back.svg",
  21025. extra: 1048 / 931,
  21026. bottom: 0.005
  21027. }
  21028. },
  21029. frontDressed: {
  21030. height: math.unit(6 + 3 / 12, "feet"),
  21031. weight: math.unit(519, "lb"),
  21032. name: "Front (Dressed)",
  21033. image: {
  21034. source: "./media/characters/dhari/front-dressed.svg",
  21035. extra: 1713 / 1546,
  21036. bottom: 0.02
  21037. }
  21038. },
  21039. backDressed: {
  21040. height: math.unit(6 + 3 / 12, "feet"),
  21041. weight: math.unit(519, "lb"),
  21042. name: "Back (Dressed)",
  21043. image: {
  21044. source: "./media/characters/dhari/back-dressed.svg",
  21045. extra: 1699 / 1537,
  21046. bottom: 0.01
  21047. }
  21048. },
  21049. maw: {
  21050. height: math.unit(0.95, "feet"),
  21051. name: "Maw",
  21052. image: {
  21053. source: "./media/characters/dhari/maw.svg"
  21054. }
  21055. },
  21056. wereFront: {
  21057. height: math.unit(12 + 8 / 12, "feet"),
  21058. weight: math.unit(4000, "lb"),
  21059. name: "Front (Were)",
  21060. image: {
  21061. source: "./media/characters/dhari/were-front.svg",
  21062. extra: 1065 / 969,
  21063. bottom: 0.015
  21064. }
  21065. },
  21066. wereBack: {
  21067. height: math.unit(12 + 8 / 12, "feet"),
  21068. weight: math.unit(4000, "lb"),
  21069. name: "Back (Were)",
  21070. image: {
  21071. source: "./media/characters/dhari/were-back.svg",
  21072. extra: 1065 / 969,
  21073. bottom: 0.012
  21074. }
  21075. },
  21076. wereMaw: {
  21077. height: math.unit(0.625, "meters"),
  21078. name: "Maw (Were)",
  21079. image: {
  21080. source: "./media/characters/dhari/were-maw.svg"
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(6 + 3 / 12, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21094. {
  21095. anthro: {
  21096. height: math.unit(5 + 7 / 12, "feet"),
  21097. weight: math.unit(175, "lb"),
  21098. name: "Anthro",
  21099. image: {
  21100. source: "./media/characters/rena-dyne/anthro.svg",
  21101. extra: 1849 / 1785,
  21102. bottom: 0.005
  21103. }
  21104. },
  21105. taur: {
  21106. height: math.unit(15 + 6 / 12, "feet"),
  21107. weight: math.unit(8000, "lb"),
  21108. name: "Taur",
  21109. image: {
  21110. source: "./media/characters/rena-dyne/taur.svg",
  21111. extra: 2315 / 2234,
  21112. bottom: 0.033
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(5 + 7 / 12, "feet"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(8, "feet"),
  21129. weight: math.unit(600, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/weremeep/front.svg",
  21133. extra: 967 / 862,
  21134. bottom: 0.01
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(8, "feet"),
  21142. default: true
  21143. },
  21144. {
  21145. name: "Lorg",
  21146. height: math.unit(12, "feet")
  21147. },
  21148. {
  21149. name: "Oh Lawd She Comin'",
  21150. height: math.unit(20, "feet")
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21156. {
  21157. front: {
  21158. height: math.unit(4, "feet"),
  21159. weight: math.unit(90, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/reza/front.svg",
  21163. extra: 1183 / 1111,
  21164. bottom: 0.017
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(4, "feet"),
  21169. weight: math.unit(90, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/reza/back.svg",
  21173. extra: 1183 / 1111,
  21174. bottom: 0.01
  21175. }
  21176. },
  21177. drake: {
  21178. height: math.unit(30, "feet"),
  21179. weight: math.unit(246960, "lb"),
  21180. name: "Drake",
  21181. image: {
  21182. source: "./media/characters/reza/drake.svg",
  21183. extra: 2350 / 2024,
  21184. bottom: 60.7 / 2403
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(4, "feet"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21198. {
  21199. side: {
  21200. height: math.unit(15, "feet"),
  21201. weight: math.unit(14, "tons"),
  21202. name: "Side",
  21203. image: {
  21204. source: "./media/characters/athea/side.svg",
  21205. extra: 960 / 540,
  21206. bottom: 0.003
  21207. }
  21208. },
  21209. sitting: {
  21210. height: math.unit(6 * 2.85, "feet"),
  21211. weight: math.unit(14, "tons"),
  21212. name: "Sitting",
  21213. image: {
  21214. source: "./media/characters/athea/sitting.svg",
  21215. extra: 621 / 581,
  21216. bottom: 0.075
  21217. }
  21218. },
  21219. maw: {
  21220. height: math.unit(7.59498031496063, "feet"),
  21221. name: "Maw",
  21222. image: {
  21223. source: "./media/characters/athea/maw.svg"
  21224. }
  21225. },
  21226. },
  21227. [
  21228. {
  21229. name: "Lap Cat",
  21230. height: math.unit(2.5, "feet")
  21231. },
  21232. {
  21233. name: "Minimacro",
  21234. height: math.unit(15, "feet"),
  21235. default: true
  21236. },
  21237. {
  21238. name: "Macro",
  21239. height: math.unit(120, "feet")
  21240. },
  21241. {
  21242. name: "Macro+",
  21243. height: math.unit(640, "feet")
  21244. },
  21245. {
  21246. name: "Colossus",
  21247. height: math.unit(2.2, "miles")
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21253. {
  21254. front: {
  21255. height: math.unit(8 + 8 / 12, "feet"),
  21256. weight: math.unit(130, "kg"),
  21257. name: "Front",
  21258. image: {
  21259. source: "./media/characters/seroko/front.svg",
  21260. extra: 1385 / 1280,
  21261. bottom: 0.025
  21262. }
  21263. },
  21264. back: {
  21265. height: math.unit(8 + 8 / 12, "feet"),
  21266. weight: math.unit(130, "kg"),
  21267. name: "Back",
  21268. image: {
  21269. source: "./media/characters/seroko/back.svg",
  21270. extra: 1369 / 1238,
  21271. bottom: 0.018
  21272. }
  21273. },
  21274. frontDressed: {
  21275. height: math.unit(8 + 8 / 12, "feet"),
  21276. weight: math.unit(130, "kg"),
  21277. name: "Front (Dressed)",
  21278. image: {
  21279. source: "./media/characters/seroko/front-dressed.svg",
  21280. extra: 1366 / 1275,
  21281. bottom: 0.03
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(8 + 8 / 12, "feet"),
  21289. default: true
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21295. {
  21296. front: {
  21297. height: math.unit(5.5, "feet"),
  21298. weight: math.unit(160, "lb"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/quatzi/front.svg",
  21302. extra: 2346 / 2242,
  21303. bottom: 0.015
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(5.5, "feet"),
  21311. default: true
  21312. },
  21313. {
  21314. name: "Big",
  21315. height: math.unit(7.7, "feet")
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(5 + 11 / 12, "feet"),
  21324. weight: math.unit(180, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/sen/front.svg",
  21328. extra: 1321 / 1254,
  21329. bottom: 0.015
  21330. }
  21331. },
  21332. side: {
  21333. height: math.unit(5 + 11 / 12, "feet"),
  21334. weight: math.unit(180, "lb"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/sen/side.svg",
  21338. extra: 1321 / 1254,
  21339. bottom: 0.007
  21340. }
  21341. },
  21342. back: {
  21343. height: math.unit(5 + 11 / 12, "feet"),
  21344. weight: math.unit(180, "lb"),
  21345. name: "Back",
  21346. image: {
  21347. source: "./media/characters/sen/back.svg",
  21348. extra: 1321 / 1254
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(5 + 11 / 12, "feet"),
  21356. default: true
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(166.6, "cm"),
  21365. weight: math.unit(66.6, "kg"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/fruity/front.svg",
  21369. extra: 1510 / 1386,
  21370. bottom: 0.04
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(166.6, "cm"),
  21375. weight: math.unit(66.6, "lb"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/fruity/back.svg",
  21379. extra: 1563 / 1435,
  21380. bottom: 0.005
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(166.6, "cm"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Demonic",
  21392. height: math.unit(166.6, "feet")
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21398. {
  21399. side: {
  21400. height: math.unit(10, "feet"),
  21401. weight: math.unit(500, "lb"),
  21402. name: "Side",
  21403. image: {
  21404. source: "./media/characters/zost/side.svg",
  21405. extra: 966 / 880,
  21406. bottom: 0.075
  21407. }
  21408. },
  21409. mawFront: {
  21410. height: math.unit(1.08, "meters"),
  21411. name: "Maw (Front)",
  21412. image: {
  21413. source: "./media/characters/zost/maw-front.svg"
  21414. }
  21415. },
  21416. mawSide: {
  21417. height: math.unit(2.66, "feet"),
  21418. name: "Maw (Side)",
  21419. image: {
  21420. source: "./media/characters/zost/maw-side.svg"
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(10, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 4 / 12, "feet"),
  21437. weight: math.unit(120, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/luci/front.svg",
  21441. extra: 1985 / 1884,
  21442. bottom: 0.04
  21443. }
  21444. },
  21445. back: {
  21446. height: math.unit(5 + 4 / 12, "feet"),
  21447. weight: math.unit(120, "lb"),
  21448. name: "Back",
  21449. image: {
  21450. source: "./media/characters/luci/back.svg",
  21451. extra: 1892 / 1791,
  21452. bottom: 0.002
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(5 + 4 / 12, "feet"),
  21460. default: true
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(1500, "feet"),
  21469. weight: math.unit(3.8e6, "tons"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/2th/front.svg",
  21473. extra: 3489 / 3350,
  21474. bottom: 0.1
  21475. }
  21476. },
  21477. foot: {
  21478. height: math.unit(461, "feet"),
  21479. name: "Foot",
  21480. image: {
  21481. source: "./media/characters/2th/foot.svg"
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "\"Micro\"",
  21488. height: math.unit(15 + 7 / 12, "feet")
  21489. },
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(1500, "feet"),
  21493. default: true
  21494. },
  21495. {
  21496. name: "Macro",
  21497. height: math.unit(5000, "feet")
  21498. },
  21499. {
  21500. name: "Megamacro",
  21501. height: math.unit(15, "miles")
  21502. },
  21503. {
  21504. name: "Gigamacro",
  21505. height: math.unit(4000, "miles")
  21506. },
  21507. {
  21508. name: "Galactic",
  21509. height: math.unit(50, "AU")
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(5 + 6 / 12, "feet"),
  21518. weight: math.unit(220, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/amethyst/front.svg",
  21522. extra: 2078 / 2040,
  21523. bottom: 0.045
  21524. }
  21525. },
  21526. back: {
  21527. height: math.unit(5 + 6 / 12, "feet"),
  21528. weight: math.unit(220, "lb"),
  21529. name: "Back",
  21530. image: {
  21531. source: "./media/characters/amethyst/back.svg",
  21532. extra: 2021 / 1989,
  21533. bottom: 0.02
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5 + 6 / 12, "feet"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(4 + 11 / 12, "feet"),
  21550. weight: math.unit(120, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/yumi-akiyama/front.svg",
  21554. extra: 1327 / 1235,
  21555. bottom: 0.02
  21556. }
  21557. },
  21558. back: {
  21559. height: math.unit(4 + 11 / 12, "feet"),
  21560. weight: math.unit(120, "lb"),
  21561. name: "Back",
  21562. image: {
  21563. source: "./media/characters/yumi-akiyama/back.svg",
  21564. extra: 1287 / 1245,
  21565. bottom: 0.002
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Galactic",
  21572. height: math.unit(50, "galaxies"),
  21573. default: true
  21574. },
  21575. {
  21576. name: "Universal",
  21577. height: math.unit(100, "universes")
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(8, "feet"),
  21586. weight: math.unit(500, "lb"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/rifter-yrmori/front.svg",
  21590. extra: 1180 / 1125,
  21591. bottom: 0.02
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(8, "feet"),
  21596. weight: math.unit(500, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/rifter-yrmori/back.svg",
  21600. extra: 1190 / 1145,
  21601. bottom: 0.001
  21602. }
  21603. },
  21604. wings: {
  21605. height: math.unit(7.75, "feet"),
  21606. weight: math.unit(500, "lb"),
  21607. name: "Wings",
  21608. image: {
  21609. source: "./media/characters/rifter-yrmori/wings.svg",
  21610. extra: 1357 / 1285
  21611. }
  21612. },
  21613. maw: {
  21614. height: math.unit(0.8, "feet"),
  21615. name: "Maw",
  21616. image: {
  21617. source: "./media/characters/rifter-yrmori/maw.svg"
  21618. }
  21619. },
  21620. mawfront: {
  21621. height: math.unit(1.45, "feet"),
  21622. name: "Maw (Front)",
  21623. image: {
  21624. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(8, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(42, "meters")
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21642. {
  21643. were: {
  21644. height: math.unit(25 + 6 / 12, "feet"),
  21645. weight: math.unit(10000, "lb"),
  21646. name: "Were",
  21647. image: {
  21648. source: "./media/characters/tahajin/were.svg",
  21649. extra: 801 / 770,
  21650. bottom: 0.042
  21651. }
  21652. },
  21653. aquatic: {
  21654. height: math.unit(6 + 4 / 12, "feet"),
  21655. weight: math.unit(160, "lb"),
  21656. name: "Aquatic",
  21657. image: {
  21658. source: "./media/characters/tahajin/aquatic.svg",
  21659. extra: 572 / 542,
  21660. bottom: 0.04
  21661. }
  21662. },
  21663. chow: {
  21664. height: math.unit(8 + 11 / 12, "feet"),
  21665. weight: math.unit(450, "lb"),
  21666. name: "Chow",
  21667. image: {
  21668. source: "./media/characters/tahajin/chow.svg",
  21669. extra: 660 / 640,
  21670. bottom: 0.015
  21671. }
  21672. },
  21673. demiNaga: {
  21674. height: math.unit(6 + 8 / 12, "feet"),
  21675. weight: math.unit(300, "lb"),
  21676. name: "Demi Naga",
  21677. image: {
  21678. source: "./media/characters/tahajin/demi-naga.svg",
  21679. extra: 643 / 615,
  21680. bottom: 0.1
  21681. }
  21682. },
  21683. data: {
  21684. height: math.unit(5, "inches"),
  21685. weight: math.unit(0.1, "lb"),
  21686. name: "Data",
  21687. image: {
  21688. source: "./media/characters/tahajin/data.svg"
  21689. }
  21690. },
  21691. fluu: {
  21692. height: math.unit(5 + 7 / 12, "feet"),
  21693. weight: math.unit(140, "lb"),
  21694. name: "Fluu",
  21695. image: {
  21696. source: "./media/characters/tahajin/fluu.svg",
  21697. extra: 628 / 592,
  21698. bottom: 0.02
  21699. }
  21700. },
  21701. starWarrior: {
  21702. height: math.unit(4 + 5 / 12, "feet"),
  21703. weight: math.unit(50, "lb"),
  21704. name: "Star Warrior",
  21705. image: {
  21706. source: "./media/characters/tahajin/star-warrior.svg"
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(25 + 6 / 12, "feet"),
  21714. default: true
  21715. },
  21716. ]
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21720. {
  21721. front: {
  21722. height: math.unit(8, "feet"),
  21723. weight: math.unit(350, "lb"),
  21724. name: "Front",
  21725. image: {
  21726. source: "./media/characters/gabira/front.svg",
  21727. extra: 608 / 580,
  21728. bottom: 0.03
  21729. }
  21730. },
  21731. back: {
  21732. height: math.unit(8, "feet"),
  21733. weight: math.unit(350, "lb"),
  21734. name: "Back",
  21735. image: {
  21736. source: "./media/characters/gabira/back.svg",
  21737. extra: 608 / 580,
  21738. bottom: 0.03
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(8, "feet"),
  21746. default: true
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21752. {
  21753. front: {
  21754. height: math.unit(5 + 3 / 12, "feet"),
  21755. weight: math.unit(137, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/sasha-katraine/front.svg",
  21759. bottom: 0.045
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Micro",
  21766. height: math.unit(5, "inches")
  21767. },
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(5 + 3 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21777. {
  21778. side: {
  21779. height: math.unit(4, "inches"),
  21780. weight: math.unit(200, "grams"),
  21781. name: "Side",
  21782. image: {
  21783. source: "./media/characters/der/side.svg",
  21784. extra: 719 / 400,
  21785. bottom: 30.6 / 749.9187
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Micro",
  21792. height: math.unit(4, "inches"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21799. {
  21800. side: {
  21801. height: math.unit(30, "meters"),
  21802. weight: math.unit(700, "tonnes"),
  21803. name: "Side",
  21804. image: {
  21805. source: "./media/characters/fixerdragon/side.svg",
  21806. extra: (1293.0514 - 116.03) / 1106.86,
  21807. bottom: 116.03 / 1293.0514
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Planck",
  21814. height: math.unit(1.6e-35, "meters")
  21815. },
  21816. {
  21817. name: "Micro",
  21818. height: math.unit(0.4, "meters")
  21819. },
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(30, "meters"),
  21823. default: true
  21824. },
  21825. {
  21826. name: "Megamacro",
  21827. height: math.unit(1.2, "megameters")
  21828. },
  21829. {
  21830. name: "Teramacro",
  21831. height: math.unit(130, "terameters")
  21832. },
  21833. {
  21834. name: "Yottamacro",
  21835. height: math.unit(6200, "yottameters")
  21836. },
  21837. ]
  21838. ));
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(8, "feet"),
  21844. weight: math.unit(250, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/kite/front.svg",
  21848. extra: 2796 / 2659,
  21849. bottom: 0.002
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(8, "feet"),
  21857. default: true
  21858. },
  21859. {
  21860. name: "Macro",
  21861. height: math.unit(360, "feet")
  21862. },
  21863. {
  21864. name: "Megamacro",
  21865. height: math.unit(1500, "feet")
  21866. },
  21867. ]
  21868. ))
  21869. characterMakers.push(() => makeCharacter(
  21870. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21871. {
  21872. front: {
  21873. height: math.unit(5 + 11/12, "feet"),
  21874. weight: math.unit(170, "lb"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/poojawa-vynar/front.svg",
  21878. extra: 1735/1585,
  21879. bottom: 96/1831
  21880. }
  21881. },
  21882. back: {
  21883. height: math.unit(5 + 11/12, "feet"),
  21884. weight: math.unit(170, "lb"),
  21885. name: "Back",
  21886. image: {
  21887. source: "./media/characters/poojawa-vynar/back.svg",
  21888. extra: 1749/1607,
  21889. bottom: 28/1777
  21890. }
  21891. },
  21892. male: {
  21893. height: math.unit(5 + 11/12, "feet"),
  21894. weight: math.unit(170, "lb"),
  21895. name: "Male",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/male.svg",
  21898. extra: 1855/1713,
  21899. bottom: 63/1918
  21900. }
  21901. },
  21902. taur: {
  21903. height: math.unit(5 + 11/12, "feet"),
  21904. weight: math.unit(170, "lb"),
  21905. name: "Taur",
  21906. image: {
  21907. source: "./media/characters/poojawa-vynar/taur.svg",
  21908. extra: 1151/1059,
  21909. bottom: 356/1507
  21910. }
  21911. },
  21912. frontDressed: {
  21913. height: math.unit(5 + 11/12, "feet"),
  21914. weight: math.unit(170, "lb"),
  21915. name: "Front (Dressed)",
  21916. image: {
  21917. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21918. extra: 1735/1585,
  21919. bottom: 96/1831
  21920. }
  21921. },
  21922. backDressed: {
  21923. height: math.unit(5 + 11/12, "feet"),
  21924. weight: math.unit(170, "lb"),
  21925. name: "Back (Dressed)",
  21926. image: {
  21927. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21928. extra: 1749/1607,
  21929. bottom: 28/1777
  21930. }
  21931. },
  21932. maleDressed: {
  21933. height: math.unit(5 + 11/12, "feet"),
  21934. weight: math.unit(170, "lb"),
  21935. name: "Male (Dressed)",
  21936. image: {
  21937. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21938. extra: 1855/1713,
  21939. bottom: 63/1918
  21940. }
  21941. },
  21942. taurDressed: {
  21943. height: math.unit(5 + 11/12, "feet"),
  21944. weight: math.unit(170, "lb"),
  21945. name: "Taur (Dressed)",
  21946. image: {
  21947. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21948. extra: 1151/1059,
  21949. bottom: 356/1507
  21950. }
  21951. },
  21952. maw: {
  21953. height: math.unit(1.46, "feet"),
  21954. name: "Maw",
  21955. image: {
  21956. source: "./media/characters/poojawa-vynar/maw.svg"
  21957. }
  21958. },
  21959. head: {
  21960. height: math.unit(2.34, "feet"),
  21961. name: "Head",
  21962. image: {
  21963. source: "./media/characters/poojawa-vynar/head.svg"
  21964. }
  21965. },
  21966. paw: {
  21967. height: math.unit(1.61, "feet"),
  21968. name: "Paw",
  21969. image: {
  21970. source: "./media/characters/poojawa-vynar/paw.svg"
  21971. }
  21972. },
  21973. pawToering: {
  21974. height: math.unit(1.72, "feet"),
  21975. name: "Paw (Toering)",
  21976. image: {
  21977. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21978. }
  21979. },
  21980. toering: {
  21981. height: math.unit(2.9, "inches"),
  21982. name: "Toering",
  21983. image: {
  21984. source: "./media/characters/poojawa-vynar/toering.svg"
  21985. }
  21986. },
  21987. shaft: {
  21988. height: math.unit(0.625, "feet"),
  21989. name: "Shaft",
  21990. image: {
  21991. source: "./media/characters/poojawa-vynar/shaft.svg"
  21992. }
  21993. },
  21994. spade: {
  21995. height: math.unit(0.42, "feet"),
  21996. name: "Spade",
  21997. image: {
  21998. source: "./media/characters/poojawa-vynar/spade.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Shortstack",
  22005. height: math.unit(4, "feet")
  22006. },
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(5 + 11 / 12, "feet"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Tauric",
  22014. height: math.unit(4, "meters")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(293, "meters"),
  22023. weight: math.unit(70400, "tons"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/violette/front.svg",
  22027. extra: 1227 / 1180,
  22028. bottom: 0.005
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(293, "meters"),
  22033. weight: math.unit(70400, "tons"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/violette/back.svg",
  22037. extra: 1227 / 1180,
  22038. bottom: 0.005
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Macro",
  22045. height: math.unit(293, "meters"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(1050, "feet"),
  22055. weight: math.unit(200000, "tons"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/alessandra/front.svg",
  22059. extra: 960 / 912,
  22060. bottom: 0.06
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Macro",
  22067. height: math.unit(1050, "feet")
  22068. },
  22069. {
  22070. name: "Macro+",
  22071. height: math.unit(900, "meters"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22078. {
  22079. front: {
  22080. height: math.unit(5, "feet"),
  22081. weight: math.unit(187, "lb"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/person/front.svg",
  22085. extra: 3087 / 2945,
  22086. bottom: 91 / 3181
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Micro",
  22093. height: math.unit(3, "inches")
  22094. },
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5, "feet"),
  22098. default: true
  22099. },
  22100. {
  22101. name: "Macro",
  22102. height: math.unit(90, "feet")
  22103. },
  22104. {
  22105. name: "Max Size",
  22106. height: math.unit(280, "feet")
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(4.5, "meters"),
  22115. weight: math.unit(3200, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/ty/front.svg",
  22119. extra: 1038 / 960,
  22120. bottom: 31.156 / 1068
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(4.5, "meters"),
  22125. weight: math.unit(3200, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/ty/back.svg",
  22129. extra: 1044 / 966,
  22130. bottom: 7.48 / 1049
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(4.5, "meters"),
  22138. default: true
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(5 + 4 / 12, "feet"),
  22147. weight: math.unit(115, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/rocky/front.svg",
  22151. extra: 1012 / 975,
  22152. bottom: 54 / 1066
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(5 + 4 / 12, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22166. {
  22167. upright: {
  22168. height: math.unit(6, "meters"),
  22169. weight: math.unit(4000, "kg"),
  22170. name: "Upright",
  22171. image: {
  22172. source: "./media/characters/ruin/upright.svg",
  22173. extra: 668 / 661,
  22174. bottom: 42 / 799.8396
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(6, "meters"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(5, "feet"),
  22191. weight: math.unit(106, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/robin/front.svg",
  22195. extra: 862 / 799,
  22196. bottom: 42.4 / 914.8856
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(5, "feet"),
  22204. default: true
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22210. {
  22211. side: {
  22212. height: math.unit(3, "feet"),
  22213. weight: math.unit(225, "lb"),
  22214. name: "Side",
  22215. image: {
  22216. source: "./media/characters/saian/side.svg",
  22217. extra: 566 / 356,
  22218. bottom: 79.7 / 643
  22219. }
  22220. },
  22221. maw: {
  22222. height: math.unit(2.85, "feet"),
  22223. name: "Maw",
  22224. image: {
  22225. source: "./media/characters/saian/maw.svg"
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(3, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22239. {
  22240. side: {
  22241. height: math.unit(8, "feet"),
  22242. weight: math.unit(300, "lb"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/equus-silvermane/side.svg",
  22246. extra: 2176 / 2050,
  22247. bottom: 65.7 / 2245
  22248. }
  22249. },
  22250. front: {
  22251. height: math.unit(8, "feet"),
  22252. weight: math.unit(300, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/equus-silvermane/front.svg",
  22256. extra: 4633 / 4400,
  22257. bottom: 71.3 / 4706.915
  22258. }
  22259. },
  22260. sideStepping: {
  22261. height: math.unit(8, "feet"),
  22262. weight: math.unit(300, "lb"),
  22263. name: "Side (Stepping)",
  22264. image: {
  22265. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22266. extra: 1968 / 1860,
  22267. bottom: 16.4 / 1989
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(8, "feet")
  22275. },
  22276. {
  22277. name: "Minimacro",
  22278. height: math.unit(75, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(150, "feet")
  22284. },
  22285. {
  22286. name: "Macro+",
  22287. height: math.unit(1000, "feet")
  22288. },
  22289. {
  22290. name: "Megamacro",
  22291. height: math.unit(1, "mile")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22297. {
  22298. side: {
  22299. height: math.unit(20, "feet"),
  22300. weight: math.unit(30000, "kg"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/windar/side.svg",
  22304. extra: 1491 / 1248,
  22305. bottom: 82.56 / 1568
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "Normal",
  22312. height: math.unit(20, "feet"),
  22313. default: true
  22314. },
  22315. ]
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22319. {
  22320. side: {
  22321. height: math.unit(15.66, "feet"),
  22322. weight: math.unit(150, "lb"),
  22323. name: "Side",
  22324. image: {
  22325. source: "./media/characters/melody/side.svg",
  22326. extra: 1097 / 944,
  22327. bottom: 11.8 / 1109
  22328. }
  22329. },
  22330. sideOutfit: {
  22331. height: math.unit(15.66, "feet"),
  22332. weight: math.unit(150, "lb"),
  22333. name: "Side (Outfit)",
  22334. image: {
  22335. source: "./media/characters/melody/side-outfit.svg",
  22336. extra: 1097 / 944,
  22337. bottom: 11.8 / 1109
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(15.66, "feet"),
  22345. default: true
  22346. },
  22347. ]
  22348. ))
  22349. characterMakers.push(() => makeCharacter(
  22350. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22351. {
  22352. front: {
  22353. height: math.unit(8, "feet"),
  22354. weight: math.unit(325, "lb"),
  22355. name: "Front",
  22356. image: {
  22357. source: "./media/characters/windera/front.svg",
  22358. extra: 3180 / 2845,
  22359. bottom: 178 / 3365
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(8, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22373. {
  22374. front: {
  22375. height: math.unit(28.75, "feet"),
  22376. weight: math.unit(2000, "kg"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/sonear/front.svg",
  22380. extra: 1041.1 / 964.9,
  22381. bottom: 53.7 / 1096.6
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(28.75, "feet"),
  22389. default: true
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22395. {
  22396. side: {
  22397. height: math.unit(25.5, "feet"),
  22398. weight: math.unit(23000, "kg"),
  22399. name: "Side",
  22400. image: {
  22401. source: "./media/characters/kanara/side.svg"
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(25.5, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22415. {
  22416. side: {
  22417. height: math.unit(10, "feet"),
  22418. weight: math.unit(1000, "kg"),
  22419. name: "Side",
  22420. image: {
  22421. source: "./media/characters/ereus/side.svg",
  22422. extra: 1157 / 959,
  22423. bottom: 153 / 1312.5
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(10, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22437. {
  22438. side: {
  22439. height: math.unit(4.5, "feet"),
  22440. weight: math.unit(500, "lb"),
  22441. name: "Side",
  22442. image: {
  22443. source: "./media/characters/e-ter/side.svg",
  22444. extra: 1550 / 1248,
  22445. bottom: 146 / 1694
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Normal",
  22452. height: math.unit(4.5, "feet"),
  22453. default: true
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22459. {
  22460. side: {
  22461. height: math.unit(9.7, "feet"),
  22462. weight: math.unit(4000, "kg"),
  22463. name: "Side",
  22464. image: {
  22465. source: "./media/characters/yamie/side.svg"
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(9.7, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(50, "feet"),
  22482. weight: math.unit(50000, "kg"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/anders/front.svg",
  22486. extra: 570 / 539,
  22487. bottom: 14.7 / 586.7
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Large",
  22494. height: math.unit(50, "feet")
  22495. },
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(2000, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Megamacro",
  22503. height: math.unit(12, "miles")
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(7 + 2 / 12, "feet"),
  22512. weight: math.unit(300, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/reban/front.svg",
  22516. extra: 1287/1212,
  22517. bottom: 148/1435
  22518. }
  22519. },
  22520. head: {
  22521. height: math.unit(1.95, "feet"),
  22522. name: "Head",
  22523. image: {
  22524. source: "./media/characters/reban/head.svg"
  22525. }
  22526. },
  22527. maw: {
  22528. height: math.unit(0.95, "feet"),
  22529. name: "Maw",
  22530. image: {
  22531. source: "./media/characters/reban/maw.svg"
  22532. }
  22533. },
  22534. foot: {
  22535. height: math.unit(1.65, "feet"),
  22536. name: "Foot",
  22537. image: {
  22538. source: "./media/characters/reban/foot.svg"
  22539. }
  22540. },
  22541. dick: {
  22542. height: math.unit(7 / 5, "feet"),
  22543. name: "Dick",
  22544. image: {
  22545. source: "./media/characters/reban/dick.svg"
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Natural Height",
  22552. height: math.unit(7 + 2 / 12, "feet")
  22553. },
  22554. {
  22555. name: "Macro",
  22556. height: math.unit(500, "feet"),
  22557. default: true
  22558. },
  22559. {
  22560. name: "Canon Height",
  22561. height: math.unit(50, "AU")
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(6, "feet"),
  22570. weight: math.unit(150, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/terrance-keayes/front.svg",
  22574. extra: 1.005,
  22575. bottom: 151 / 1615
  22576. }
  22577. },
  22578. side: {
  22579. height: math.unit(6, "feet"),
  22580. weight: math.unit(150, "lb"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/terrance-keayes/side.svg",
  22584. extra: 1.005,
  22585. bottom: 129.4 / 1544
  22586. }
  22587. },
  22588. back: {
  22589. height: math.unit(6, "feet"),
  22590. weight: math.unit(150, "lb"),
  22591. name: "Back",
  22592. image: {
  22593. source: "./media/characters/terrance-keayes/back.svg",
  22594. extra: 1.005,
  22595. bottom: 58.4 / 1557.3
  22596. }
  22597. },
  22598. dick: {
  22599. height: math.unit(6 * 0.208, "feet"),
  22600. name: "Dick",
  22601. image: {
  22602. source: "./media/characters/terrance-keayes/dick.svg"
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Canon Height",
  22609. height: math.unit(35, "miles"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(6, "feet"),
  22619. weight: math.unit(150, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/ofelia/front.svg",
  22623. extra: 1130/1117,
  22624. bottom: 91/1221
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(6, "feet"),
  22629. weight: math.unit(150, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/ofelia/back.svg",
  22633. extra: 1172/1159,
  22634. bottom: 28/1200
  22635. }
  22636. },
  22637. maw: {
  22638. height: math.unit(1, "feet"),
  22639. name: "Maw",
  22640. image: {
  22641. source: "./media/characters/ofelia/maw.svg"
  22642. }
  22643. },
  22644. foot: {
  22645. height: math.unit(1.949, "feet"),
  22646. name: "Foot",
  22647. image: {
  22648. source: "./media/characters/ofelia/foot.svg"
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Canon Height",
  22655. height: math.unit(2000, "miles"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(6, "feet"),
  22665. weight: math.unit(150, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/samuel/front.svg",
  22669. extra: 265 / 258,
  22670. bottom: 2 / 266.1566
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Macro",
  22677. height: math.unit(100, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Full Size",
  22682. height: math.unit(1000, "miles")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(6, "feet"),
  22691. weight: math.unit(300, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/beishir-kiel/front.svg",
  22695. extra: 569 / 547,
  22696. bottom: 41.9 / 609
  22697. }
  22698. },
  22699. maw: {
  22700. height: math.unit(6 * 0.202, "feet"),
  22701. name: "Maw",
  22702. image: {
  22703. source: "./media/characters/beishir-kiel/maw.svg"
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(300, "feet"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(5 + 7/12, "feet"),
  22720. weight: math.unit(120, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/logan-grey/front.svg",
  22724. extra: 1836/1738,
  22725. bottom: 108/1944
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(5 + 7/12, "feet"),
  22730. weight: math.unit(120, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/logan-grey/back.svg",
  22734. extra: 1880/1794,
  22735. bottom: 24/1904
  22736. }
  22737. },
  22738. frontSfw: {
  22739. height: math.unit(5 + 7/12, "feet"),
  22740. weight: math.unit(120, "lb"),
  22741. name: "Front (SFW)",
  22742. image: {
  22743. source: "./media/characters/logan-grey/front-sfw.svg",
  22744. extra: 1836/1738,
  22745. bottom: 108/1944
  22746. }
  22747. },
  22748. backSfw: {
  22749. height: math.unit(5 + 7/12, "feet"),
  22750. weight: math.unit(120, "lb"),
  22751. name: "Back (SFW)",
  22752. image: {
  22753. source: "./media/characters/logan-grey/back-sfw.svg",
  22754. extra: 1880/1794,
  22755. bottom: 24/1904
  22756. }
  22757. },
  22758. hands: {
  22759. height: math.unit(0.84, "feet"),
  22760. name: "Hands",
  22761. image: {
  22762. source: "./media/characters/logan-grey/hands.svg"
  22763. }
  22764. },
  22765. paws: {
  22766. height: math.unit(0.72, "feet"),
  22767. name: "Paws",
  22768. image: {
  22769. source: "./media/characters/logan-grey/paws.svg"
  22770. }
  22771. },
  22772. cock: {
  22773. height: math.unit(1.45, "feet"),
  22774. name: "Cock",
  22775. image: {
  22776. source: "./media/characters/logan-grey/cock.svg"
  22777. }
  22778. },
  22779. cockAlt: {
  22780. height: math.unit(1.437, "feet"),
  22781. name: "Cock (alt)",
  22782. image: {
  22783. source: "./media/characters/logan-grey/cock-alt.svg"
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(5 + 8 / 12, "feet")
  22791. },
  22792. {
  22793. name: "The 500 Foot Femboy",
  22794. height: math.unit(500, "feet"),
  22795. default: true
  22796. },
  22797. {
  22798. name: "Megmacro",
  22799. height: math.unit(20, "miles")
  22800. },
  22801. ]
  22802. ))
  22803. characterMakers.push(() => makeCharacter(
  22804. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22805. {
  22806. front: {
  22807. height: math.unit(8 + 2 / 12, "feet"),
  22808. weight: math.unit(275, "lb"),
  22809. name: "Front",
  22810. image: {
  22811. source: "./media/characters/draganta/front.svg",
  22812. extra: 1177 / 1135,
  22813. bottom: 33.46 / 1212.1
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(8 + 6 / 12, "feet"),
  22821. default: true
  22822. },
  22823. {
  22824. name: "Macro",
  22825. height: math.unit(150, "feet")
  22826. },
  22827. {
  22828. name: "Megamacro",
  22829. height: math.unit(1000, "miles")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22835. {
  22836. front: {
  22837. height: math.unit(1.72, "m"),
  22838. weight: math.unit(80, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/voski/front.svg",
  22842. extra: 2076.22 / 2022.4,
  22843. bottom: 102.7 / 2177.3866
  22844. }
  22845. },
  22846. frontNsfw: {
  22847. height: math.unit(1.72, "m"),
  22848. weight: math.unit(80, "lb"),
  22849. name: "Front (NSFW)",
  22850. image: {
  22851. source: "./media/characters/voski/front-nsfw.svg",
  22852. extra: 2076.22 / 2022.4,
  22853. bottom: 102.7 / 2177.3866
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(1.72, "m"),
  22858. weight: math.unit(80, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/voski/back.svg",
  22862. extra: 2104 / 2051,
  22863. bottom: 10.45 / 2113.63
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(1.72, "m")
  22871. },
  22872. {
  22873. name: "Macro",
  22874. height: math.unit(55, "m"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(300, "m")
  22880. },
  22881. {
  22882. name: "Macro++",
  22883. height: math.unit(700, "m")
  22884. },
  22885. {
  22886. name: "Macro+++",
  22887. height: math.unit(4500, "m")
  22888. },
  22889. {
  22890. name: "Macro++++",
  22891. height: math.unit(45, "km")
  22892. },
  22893. {
  22894. name: "Macro+++++",
  22895. height: math.unit(1220, "km")
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(2.3, "m"),
  22904. weight: math.unit(304, "kg"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/icowom-lee/front.svg",
  22908. extra: 985 / 955,
  22909. bottom: 25.4 / 1012
  22910. }
  22911. },
  22912. fronttentacles: {
  22913. height: math.unit(2.3, "m"),
  22914. weight: math.unit(304, "kg"),
  22915. name: "Front-tentacles",
  22916. image: {
  22917. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22918. extra: 985 / 955,
  22919. bottom: 25.4 / 1012
  22920. }
  22921. },
  22922. back: {
  22923. height: math.unit(2.3, "m"),
  22924. weight: math.unit(304, "kg"),
  22925. name: "Back",
  22926. image: {
  22927. source: "./media/characters/icowom-lee/back.svg",
  22928. extra: 975 / 954,
  22929. bottom: 9.5 / 985
  22930. }
  22931. },
  22932. backtentacles: {
  22933. height: math.unit(2.3, "m"),
  22934. weight: math.unit(304, "kg"),
  22935. name: "Back-tentacles",
  22936. image: {
  22937. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22938. extra: 975 / 954,
  22939. bottom: 9.5 / 985
  22940. }
  22941. },
  22942. frontDressed: {
  22943. height: math.unit(2.3, "m"),
  22944. weight: math.unit(304, "kg"),
  22945. name: "Front (Dressed)",
  22946. image: {
  22947. source: "./media/characters/icowom-lee/front-dressed.svg",
  22948. extra: 3076 / 2933,
  22949. bottom: 51.4 / 3125.1889
  22950. }
  22951. },
  22952. rump: {
  22953. height: math.unit(0.776, "meters"),
  22954. name: "Rump",
  22955. image: {
  22956. source: "./media/characters/icowom-lee/rump.svg"
  22957. }
  22958. },
  22959. genitals: {
  22960. height: math.unit(0.78, "meters"),
  22961. name: "Genitals",
  22962. image: {
  22963. source: "./media/characters/icowom-lee/genitals.svg"
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(2.3, "meters"),
  22971. default: true
  22972. },
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(94, "meters"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(22, "meters"),
  22985. weight: math.unit(21000, "kg"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/shock-diamond/front.svg",
  22989. extra: 2204 / 2053,
  22990. bottom: 65 / 2239.47
  22991. }
  22992. },
  22993. frontNude: {
  22994. height: math.unit(22, "meters"),
  22995. weight: math.unit(21000, "kg"),
  22996. name: "Front (Nude)",
  22997. image: {
  22998. source: "./media/characters/shock-diamond/front-nude.svg",
  22999. extra: 2514 / 2285,
  23000. bottom: 13 / 2527.56
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(3, "meters")
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(22, "meters"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(5 + 4 / 12, "feet"),
  23021. weight: math.unit(120, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/rory/front.svg",
  23025. extra: 1318/1241,
  23026. bottom: 42/1360
  23027. }
  23028. },
  23029. back: {
  23030. height: math.unit(5 + 4 / 12, "feet"),
  23031. weight: math.unit(120, "lb"),
  23032. name: "Back",
  23033. image: {
  23034. source: "./media/characters/rory/back.svg",
  23035. extra: 1318/1241,
  23036. bottom: 42/1360
  23037. }
  23038. },
  23039. butt: {
  23040. height: math.unit(1.74, "feet"),
  23041. name: "Butt",
  23042. image: {
  23043. source: "./media/characters/rory/butt.svg"
  23044. }
  23045. },
  23046. dick: {
  23047. height: math.unit(1.02, "feet"),
  23048. name: "Dick",
  23049. image: {
  23050. source: "./media/characters/rory/dick.svg"
  23051. }
  23052. },
  23053. paws: {
  23054. height: math.unit(1, "feet"),
  23055. name: "Paws",
  23056. image: {
  23057. source: "./media/characters/rory/paws.svg"
  23058. }
  23059. },
  23060. frontAlt: {
  23061. height: math.unit(5 + 4 / 12, "feet"),
  23062. weight: math.unit(120, "lb"),
  23063. name: "Front (Alt)",
  23064. image: {
  23065. source: "./media/characters/rory/front-alt.svg",
  23066. extra: 589 / 556,
  23067. bottom: 45.7 / 635.76
  23068. }
  23069. },
  23070. frontAltNude: {
  23071. height: math.unit(5 + 4 / 12, "feet"),
  23072. weight: math.unit(120, "lb"),
  23073. name: "Front (Alt, Nude)",
  23074. image: {
  23075. source: "./media/characters/rory/front-alt-nude.svg",
  23076. extra: 589 / 556,
  23077. bottom: 45.7 / 635.76
  23078. }
  23079. },
  23080. side: {
  23081. height: math.unit(5 + 4 / 12, "feet"),
  23082. weight: math.unit(120, "lb"),
  23083. name: "Side",
  23084. image: {
  23085. source: "./media/characters/rory/side.svg",
  23086. extra: 597 / 564,
  23087. bottom: 55 / 653
  23088. }
  23089. },
  23090. backAlt: {
  23091. height: math.unit(5 + 4 / 12, "feet"),
  23092. weight: math.unit(120, "lb"),
  23093. name: "Back (Alt)",
  23094. image: {
  23095. source: "./media/characters/rory/back-alt.svg",
  23096. extra: 620 / 585,
  23097. bottom: 8.86 / 630.43
  23098. }
  23099. },
  23100. dickAlt: {
  23101. height: math.unit(0.86, "feet"),
  23102. name: "Dick (Alt)",
  23103. image: {
  23104. source: "./media/characters/rory/dick-alt.svg"
  23105. }
  23106. },
  23107. },
  23108. [
  23109. {
  23110. name: "Normal",
  23111. height: math.unit(5 + 4 / 12, "feet"),
  23112. default: true
  23113. },
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(100, "feet")
  23117. },
  23118. {
  23119. name: "Macro+",
  23120. height: math.unit(140, "feet")
  23121. },
  23122. {
  23123. name: "Macro++",
  23124. height: math.unit(300, "feet")
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(5 + 9 / 12, "feet"),
  23133. weight: math.unit(190, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/sprisk/front.svg",
  23137. extra: 1225 / 1180,
  23138. bottom: 42.7 / 1266.4
  23139. }
  23140. },
  23141. frontNsfw: {
  23142. height: math.unit(5 + 9 / 12, "feet"),
  23143. weight: math.unit(190, "lb"),
  23144. name: "Front (NSFW)",
  23145. image: {
  23146. source: "./media/characters/sprisk/front-nsfw.svg",
  23147. extra: 1225 / 1180,
  23148. bottom: 42.7 / 1266.4
  23149. }
  23150. },
  23151. back: {
  23152. height: math.unit(5 + 9 / 12, "feet"),
  23153. weight: math.unit(190, "lb"),
  23154. name: "Back",
  23155. image: {
  23156. source: "./media/characters/sprisk/back.svg",
  23157. extra: 1247 / 1200,
  23158. bottom: 5.6 / 1253.04
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Tiny",
  23165. height: math.unit(2, "inches")
  23166. },
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(5 + 9 / 12, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Mini Macro",
  23174. height: math.unit(18, "feet")
  23175. },
  23176. {
  23177. name: "Macro",
  23178. height: math.unit(100, "feet")
  23179. },
  23180. {
  23181. name: "MACRO",
  23182. height: math.unit(50, "miles")
  23183. },
  23184. {
  23185. name: "M A C R O",
  23186. height: math.unit(300, "miles")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23192. {
  23193. side: {
  23194. height: math.unit(15.6, "meters"),
  23195. weight: math.unit(700000, "kg"),
  23196. name: "Side",
  23197. image: {
  23198. source: "./media/characters/bunsen/side.svg",
  23199. extra: 1644 / 358
  23200. }
  23201. },
  23202. foot: {
  23203. height: math.unit(1.611 * 1644 / 358, "meter"),
  23204. name: "Foot",
  23205. image: {
  23206. source: "./media/characters/bunsen/foot.svg"
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Small",
  23213. height: math.unit(10, "feet")
  23214. },
  23215. {
  23216. name: "Normal",
  23217. height: math.unit(15.6, "meters"),
  23218. default: true
  23219. },
  23220. ]
  23221. ))
  23222. characterMakers.push(() => makeCharacter(
  23223. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23224. {
  23225. front: {
  23226. height: math.unit(4 + 11 / 12, "feet"),
  23227. weight: math.unit(140, "lb"),
  23228. name: "Front",
  23229. image: {
  23230. source: "./media/characters/sesh/front.svg",
  23231. extra: 3420 / 3231,
  23232. bottom: 72 / 3949.5
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Normal",
  23239. height: math.unit(4 + 11 / 12, "feet")
  23240. },
  23241. {
  23242. name: "Grown",
  23243. height: math.unit(15, "feet"),
  23244. default: true
  23245. },
  23246. {
  23247. name: "Macro",
  23248. height: math.unit(1500, "feet")
  23249. },
  23250. {
  23251. name: "Megamacro",
  23252. height: math.unit(30, "miles")
  23253. },
  23254. {
  23255. name: "Continental",
  23256. height: math.unit(3000, "miles")
  23257. },
  23258. {
  23259. name: "Gravity Mass",
  23260. height: math.unit(300000, "miles")
  23261. },
  23262. {
  23263. name: "Planet Buster",
  23264. height: math.unit(30000000, "miles")
  23265. },
  23266. {
  23267. name: "Big",
  23268. height: math.unit(3000000000, "miles")
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(9, "feet"),
  23277. weight: math.unit(350, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/pepper/front.svg",
  23281. extra: 1448 / 1312,
  23282. bottom: 9.4 / 1457.88
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(9, "feet"),
  23287. weight: math.unit(350, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/pepper/back.svg",
  23291. extra: 1423 / 1300,
  23292. bottom: 4.6 / 1429
  23293. }
  23294. },
  23295. maw: {
  23296. height: math.unit(0.932, "feet"),
  23297. name: "Maw",
  23298. image: {
  23299. source: "./media/characters/pepper/maw.svg"
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(9, "feet"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(6, "feet"),
  23316. weight: math.unit(150, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/maelstrom/front.svg",
  23320. extra: 2100 / 1883,
  23321. bottom: 94 / 2196.7
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Less Kaiju",
  23328. height: math.unit(200, "feet")
  23329. },
  23330. {
  23331. name: "Kaiju",
  23332. height: math.unit(400, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Kaiju-er",
  23337. height: math.unit(600, "feet")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(6 + 5 / 12, "feet"),
  23346. weight: math.unit(180, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/lexir/front.svg",
  23350. extra: 180 / 172,
  23351. bottom: 12 / 192
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(6 + 5 / 12, "feet"),
  23356. weight: math.unit(180, "lb"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/lexir/back.svg",
  23360. extra: 183.84 / 175.5,
  23361. bottom: 3.1 / 187
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Very Smal",
  23368. height: math.unit(1, "nm")
  23369. },
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(6 + 5 / 12, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Macro",
  23377. height: math.unit(1, "mile")
  23378. },
  23379. {
  23380. name: "Megamacro",
  23381. height: math.unit(50, "miles")
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(1.5, "meters"),
  23390. weight: math.unit(100, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/maksio/front.svg",
  23394. extra: 1549 / 1531,
  23395. bottom: 123.7 / 1674.5429
  23396. }
  23397. },
  23398. back: {
  23399. height: math.unit(1.5, "meters"),
  23400. weight: math.unit(100, "lb"),
  23401. name: "Back",
  23402. image: {
  23403. source: "./media/characters/maksio/back.svg",
  23404. extra: 1541 / 1509,
  23405. bottom: 97 / 1639
  23406. }
  23407. },
  23408. hand: {
  23409. height: math.unit(0.621, "feet"),
  23410. name: "Hand",
  23411. image: {
  23412. source: "./media/characters/maksio/hand.svg"
  23413. }
  23414. },
  23415. foot: {
  23416. height: math.unit(1.611, "feet"),
  23417. name: "Foot",
  23418. image: {
  23419. source: "./media/characters/maksio/foot.svg"
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Shrunken",
  23426. height: math.unit(10, "cm")
  23427. },
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(150, "cm"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(100, "feet"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/erza-bear/front.svg",
  23443. extra: 2449 / 2390,
  23444. bottom: 46 / 2494
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(100, "feet"),
  23449. name: "Back",
  23450. image: {
  23451. source: "./media/characters/erza-bear/back.svg",
  23452. extra: 2489 / 2430,
  23453. bottom: 85.4 / 2480
  23454. }
  23455. },
  23456. tail: {
  23457. height: math.unit(42, "feet"),
  23458. name: "Tail",
  23459. image: {
  23460. source: "./media/characters/erza-bear/tail.svg"
  23461. }
  23462. },
  23463. tongue: {
  23464. height: math.unit(8, "feet"),
  23465. name: "Tongue",
  23466. image: {
  23467. source: "./media/characters/erza-bear/tongue.svg"
  23468. }
  23469. },
  23470. dick: {
  23471. height: math.unit(10.5, "feet"),
  23472. name: "Dick",
  23473. image: {
  23474. source: "./media/characters/erza-bear/dick.svg"
  23475. }
  23476. },
  23477. dickVertical: {
  23478. height: math.unit(16.9, "feet"),
  23479. name: "Dick (Vertical)",
  23480. image: {
  23481. source: "./media/characters/erza-bear/dick-vertical.svg"
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Macro",
  23488. height: math.unit(100, "feet"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23495. {
  23496. front: {
  23497. height: math.unit(172, "cm"),
  23498. weight: math.unit(73, "kg"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/violet-flor/front.svg",
  23502. extra: 1530 / 1442,
  23503. bottom: 61.9 / 1588.8
  23504. }
  23505. },
  23506. back: {
  23507. height: math.unit(180, "cm"),
  23508. weight: math.unit(73, "kg"),
  23509. name: "Back",
  23510. image: {
  23511. source: "./media/characters/violet-flor/back.svg",
  23512. extra: 1692 / 1630,
  23513. bottom: 20 / 1712
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Normal",
  23520. height: math.unit(172, "cm"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(6, "feet"),
  23530. weight: math.unit(220, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/lynn-rhea/front.svg",
  23534. extra: 310 / 273
  23535. }
  23536. },
  23537. back: {
  23538. height: math.unit(6, "feet"),
  23539. weight: math.unit(220, "lb"),
  23540. name: "Back",
  23541. image: {
  23542. source: "./media/characters/lynn-rhea/back.svg",
  23543. extra: 310 / 273
  23544. }
  23545. },
  23546. dicks: {
  23547. height: math.unit(0.9, "feet"),
  23548. name: "Dicks",
  23549. image: {
  23550. source: "./media/characters/lynn-rhea/dicks.svg"
  23551. }
  23552. },
  23553. slit: {
  23554. height: math.unit(0.4, "feet"),
  23555. name: "Slit",
  23556. image: {
  23557. source: "./media/characters/lynn-rhea/slit.svg"
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Micro",
  23564. height: math.unit(1, "inch")
  23565. },
  23566. {
  23567. name: "Macro",
  23568. height: math.unit(60, "feet"),
  23569. default: true
  23570. },
  23571. {
  23572. name: "Megamacro",
  23573. height: math.unit(2, "miles")
  23574. },
  23575. {
  23576. name: "Gigamacro",
  23577. height: math.unit(3, "earths")
  23578. },
  23579. {
  23580. name: "Galactic",
  23581. height: math.unit(0.8, "galaxies")
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23587. {
  23588. front: {
  23589. height: math.unit(1600, "feet"),
  23590. weight: math.unit(85758785169, "kg"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/valathos/front.svg",
  23594. extra: 1451 / 1339
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(1600, "feet"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(7 + 5 / 12, "feet"),
  23611. weight: math.unit(300, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/azula/front.svg",
  23615. extra: 3208 / 2880,
  23616. bottom: 80.2 / 3277
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(7 + 5 / 12, "feet"),
  23621. weight: math.unit(300, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/azula/back.svg",
  23625. extra: 3169 / 2822,
  23626. bottom: 150.6 / 3321
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(7 + 5 / 12, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Big",
  23638. height: math.unit(20, "feet")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(5 + 1 / 12, "feet"),
  23647. weight: math.unit(110, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/rupert/front.svg",
  23651. extra: 1549 / 1495,
  23652. bottom: 54.2 / 1604.4
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(5 + 1 / 12, "feet"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23666. {
  23667. front: {
  23668. height: math.unit(8 + 4 / 12, "feet"),
  23669. weight: math.unit(350, "lb"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/sheera-castellar/front.svg",
  23673. extra: 1957 / 1894,
  23674. bottom: 26.97 / 1975.017
  23675. }
  23676. },
  23677. side: {
  23678. height: math.unit(8 + 4 / 12, "feet"),
  23679. weight: math.unit(350, "lb"),
  23680. name: "Side",
  23681. image: {
  23682. source: "./media/characters/sheera-castellar/side.svg",
  23683. extra: 1957 / 1894
  23684. }
  23685. },
  23686. back: {
  23687. height: math.unit(8 + 4 / 12, "feet"),
  23688. weight: math.unit(350, "lb"),
  23689. name: "Back",
  23690. image: {
  23691. source: "./media/characters/sheera-castellar/back.svg",
  23692. extra: 1957 / 1894
  23693. }
  23694. },
  23695. angled: {
  23696. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23697. weight: math.unit(350, "lb"),
  23698. name: "Angled",
  23699. image: {
  23700. source: "./media/characters/sheera-castellar/angled.svg",
  23701. extra: 1807 / 1707,
  23702. bottom: 68 / 1875
  23703. }
  23704. },
  23705. genitals: {
  23706. height: math.unit(2.2, "feet"),
  23707. name: "Genitals",
  23708. image: {
  23709. source: "./media/characters/sheera-castellar/genitals.svg"
  23710. }
  23711. },
  23712. taur: {
  23713. height: math.unit(10 + 6/12, "feet"),
  23714. name: "Taur",
  23715. image: {
  23716. source: "./media/characters/sheera-castellar/taur.svg",
  23717. extra: 2017/1909,
  23718. bottom: 185/2202
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(8 + 4 / 12, "feet")
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(150, "feet"),
  23730. default: true
  23731. },
  23732. {
  23733. name: "Macro+",
  23734. height: math.unit(800, "feet")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(6, "feet"),
  23743. weight: math.unit(150, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/jaipur/front.svg",
  23747. extra: 3860 / 3731,
  23748. bottom: 287 / 4140
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(6, "feet"),
  23753. weight: math.unit(150, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/jaipur/back.svg",
  23757. extra: 4060 / 3930,
  23758. bottom: 151 / 4200
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(1.85, "meters"),
  23766. default: true
  23767. },
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(150, "meters")
  23771. },
  23772. {
  23773. name: "Macro+",
  23774. height: math.unit(0.5, "miles")
  23775. },
  23776. {
  23777. name: "Macro++",
  23778. height: math.unit(2.5, "miles")
  23779. },
  23780. {
  23781. name: "Macro+++",
  23782. height: math.unit(12, "miles")
  23783. },
  23784. {
  23785. name: "Macro++++",
  23786. height: math.unit(120, "miles")
  23787. },
  23788. {
  23789. name: "Macro+++++",
  23790. height: math.unit(1200, "miles")
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23796. {
  23797. front: {
  23798. height: math.unit(6, "feet"),
  23799. weight: math.unit(150, "lb"),
  23800. name: "Front",
  23801. image: {
  23802. source: "./media/characters/sheila-wolf/front.svg",
  23803. extra: 1931 / 1808,
  23804. bottom: 29.5 / 1960
  23805. }
  23806. },
  23807. dick: {
  23808. height: math.unit(1.464, "feet"),
  23809. name: "Dick",
  23810. image: {
  23811. source: "./media/characters/sheila-wolf/dick.svg"
  23812. }
  23813. },
  23814. muzzle: {
  23815. height: math.unit(0.513, "feet"),
  23816. name: "Muzzle",
  23817. image: {
  23818. source: "./media/characters/sheila-wolf/muzzle.svg"
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(70, "feet"),
  23826. default: true
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(32, "meters"),
  23835. weight: math.unit(300000, "kg"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/almor/front.svg",
  23839. extra: 1408 / 1322,
  23840. bottom: 94.6 / 1506.5
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Macro",
  23847. height: math.unit(32, "meters"),
  23848. default: true
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(7, "feet"),
  23857. weight: math.unit(200, "lb"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/silver/front.svg",
  23861. extra: 472.1 / 450.5,
  23862. bottom: 26.5 / 499.424
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(7, "feet"),
  23870. default: true
  23871. },
  23872. {
  23873. name: "Macro",
  23874. height: math.unit(800, "feet")
  23875. },
  23876. {
  23877. name: "Megamacro",
  23878. height: math.unit(250, "miles")
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(6, "feet"),
  23887. weight: math.unit(150, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/pliskin/front.svg",
  23891. extra: 1469 / 1359,
  23892. bottom: 70 / 1540
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Micro",
  23899. height: math.unit(3, "inches")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5 + 11 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(120, "feet")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(6, "feet"),
  23917. weight: math.unit(150, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/sammy/front.svg",
  23921. extra: 1193 / 1089,
  23922. bottom: 30.5 / 1226
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Macro",
  23929. height: math.unit(1700, "feet"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Examacro",
  23934. height: math.unit(2.5e9, "lightyears")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(21, "meters"),
  23943. weight: math.unit(12, "tonnes"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/kuru/front.svg",
  23947. extra: 4301 / 3785,
  23948. bottom: 371.3 / 4691
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Macro",
  23955. height: math.unit(21, "meters"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(23, "meters"),
  23965. weight: math.unit(12.2, "tonnes"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/rakka/front.svg",
  23969. extra: 4670 / 4169,
  23970. bottom: 301 / 4968.7
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(23, "meters"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(6, "feet"),
  23987. weight: math.unit(150, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/rhys-feline/front.svg",
  23991. extra: 2488 / 2308,
  23992. bottom: 35.67 / 2519.19
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Really Small",
  23999. height: math.unit(1, "nm")
  24000. },
  24001. {
  24002. name: "Micro",
  24003. height: math.unit(4, "inches")
  24004. },
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(4 + 10 / 12, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(100, "feet")
  24013. },
  24014. {
  24015. name: "Megamacto",
  24016. height: math.unit(50, "miles")
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24022. {
  24023. side: {
  24024. height: math.unit(30, "feet"),
  24025. weight: math.unit(35000, "kg"),
  24026. name: "Side",
  24027. image: {
  24028. source: "./media/characters/alydar/side.svg",
  24029. extra: 234 / 222,
  24030. bottom: 6.5 / 241
  24031. }
  24032. },
  24033. front: {
  24034. height: math.unit(30, "feet"),
  24035. weight: math.unit(35000, "kg"),
  24036. name: "Front",
  24037. image: {
  24038. source: "./media/characters/alydar/front.svg",
  24039. extra: 223.37 / 210.2,
  24040. bottom: 22.3 / 246.76
  24041. }
  24042. },
  24043. top: {
  24044. height: math.unit(64.54, "feet"),
  24045. weight: math.unit(35000, "kg"),
  24046. name: "Top",
  24047. image: {
  24048. source: "./media/characters/alydar/top.svg"
  24049. }
  24050. },
  24051. anthro: {
  24052. height: math.unit(30, "feet"),
  24053. weight: math.unit(9000, "kg"),
  24054. name: "Anthro",
  24055. image: {
  24056. source: "./media/characters/alydar/anthro.svg",
  24057. extra: 432 / 421,
  24058. bottom: 7.18 / 440
  24059. }
  24060. },
  24061. maw: {
  24062. height: math.unit(11.693, "feet"),
  24063. name: "Maw",
  24064. image: {
  24065. source: "./media/characters/alydar/maw.svg"
  24066. }
  24067. },
  24068. head: {
  24069. height: math.unit(11.693, "feet"),
  24070. name: "Head",
  24071. image: {
  24072. source: "./media/characters/alydar/head.svg"
  24073. }
  24074. },
  24075. headAlt: {
  24076. height: math.unit(12.861, "feet"),
  24077. name: "Head (Alt)",
  24078. image: {
  24079. source: "./media/characters/alydar/head-alt.svg"
  24080. }
  24081. },
  24082. wing: {
  24083. height: math.unit(20.712, "feet"),
  24084. name: "Wing",
  24085. image: {
  24086. source: "./media/characters/alydar/wing.svg"
  24087. }
  24088. },
  24089. wingFeather: {
  24090. height: math.unit(9.662, "feet"),
  24091. name: "Wing Feather",
  24092. image: {
  24093. source: "./media/characters/alydar/wing-feather.svg"
  24094. }
  24095. },
  24096. countourFeather: {
  24097. height: math.unit(4.154, "feet"),
  24098. name: "Contour Feather",
  24099. image: {
  24100. source: "./media/characters/alydar/contour-feather.svg"
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Diplomatic",
  24107. height: math.unit(13, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Small",
  24112. height: math.unit(30, "feet")
  24113. },
  24114. {
  24115. name: "Normal",
  24116. height: math.unit(95, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Large",
  24121. height: math.unit(285, "feet")
  24122. },
  24123. {
  24124. name: "Incomprehensible",
  24125. height: math.unit(450, "megameters")
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24131. {
  24132. side: {
  24133. height: math.unit(11, "feet"),
  24134. weight: math.unit(1750, "kg"),
  24135. name: "Side",
  24136. image: {
  24137. source: "./media/characters/selicia/side.svg",
  24138. extra: 440 / 396,
  24139. bottom: 24.8 / 465.979
  24140. }
  24141. },
  24142. maw: {
  24143. height: math.unit(4.665, "feet"),
  24144. name: "Maw",
  24145. image: {
  24146. source: "./media/characters/selicia/maw.svg"
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(11, "feet"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24160. {
  24161. side: {
  24162. height: math.unit(2 + 6 / 12, "feet"),
  24163. weight: math.unit(30, "lb"),
  24164. name: "Side",
  24165. image: {
  24166. source: "./media/characters/layla/side.svg",
  24167. extra: 244 / 188,
  24168. bottom: 18.2 / 262.1
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(2 + 6 / 12, "feet"),
  24173. weight: math.unit(30, "lb"),
  24174. name: "Back",
  24175. image: {
  24176. source: "./media/characters/layla/back.svg",
  24177. extra: 308 / 241.5,
  24178. bottom: 8.9 / 316.8
  24179. }
  24180. },
  24181. cumming: {
  24182. height: math.unit(2 + 6 / 12, "feet"),
  24183. weight: math.unit(30, "lb"),
  24184. name: "Cumming",
  24185. image: {
  24186. source: "./media/characters/layla/cumming.svg",
  24187. extra: 342 / 279,
  24188. bottom: 595 / 938
  24189. }
  24190. },
  24191. dickFlaccid: {
  24192. height: math.unit(2.595, "feet"),
  24193. name: "Flaccid Genitals",
  24194. image: {
  24195. source: "./media/characters/layla/dick-flaccid.svg"
  24196. }
  24197. },
  24198. dickErect: {
  24199. height: math.unit(2.359, "feet"),
  24200. name: "Erect Genitals",
  24201. image: {
  24202. source: "./media/characters/layla/dick-erect.svg"
  24203. }
  24204. },
  24205. dragon: {
  24206. height: math.unit(40, "feet"),
  24207. name: "Dragon",
  24208. image: {
  24209. source: "./media/characters/layla/dragon.svg",
  24210. extra: 610/535,
  24211. bottom: 367/977
  24212. }
  24213. },
  24214. taur: {
  24215. height: math.unit(30, "feet"),
  24216. name: "Taur",
  24217. image: {
  24218. source: "./media/characters/layla/taur.svg",
  24219. extra: 1268/1199,
  24220. bottom: 112/1380
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(1, "inch")
  24228. },
  24229. {
  24230. name: "Small",
  24231. height: math.unit(1, "foot")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(2 + 6 / 12, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(200, "feet")
  24241. },
  24242. {
  24243. name: "Megamacro",
  24244. height: math.unit(1000, "miles")
  24245. },
  24246. {
  24247. name: "Planetary",
  24248. height: math.unit(8000, "miles")
  24249. },
  24250. {
  24251. name: "True Layla",
  24252. height: math.unit(200000 * 7, "multiverses")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24258. {
  24259. back: {
  24260. height: math.unit(10.5, "feet"),
  24261. weight: math.unit(800, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/knox/back.svg",
  24265. extra: 1486 / 1089,
  24266. bottom: 107 / 1601.4
  24267. }
  24268. },
  24269. side: {
  24270. height: math.unit(10.5, "feet"),
  24271. weight: math.unit(800, "lb"),
  24272. name: "Side",
  24273. image: {
  24274. source: "./media/characters/knox/side.svg",
  24275. extra: 244 / 218,
  24276. bottom: 14 / 260
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Compact",
  24283. height: math.unit(10.5, "feet"),
  24284. default: true
  24285. },
  24286. {
  24287. name: "Dynamax",
  24288. height: math.unit(210, "feet")
  24289. },
  24290. {
  24291. name: "Full Macro",
  24292. height: math.unit(850, "feet")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(28, "feet"),
  24301. weight: math.unit(10500, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/kayda/front.svg",
  24305. extra: 1536 / 1428,
  24306. bottom: 68.7 / 1603
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(28, "feet"),
  24311. weight: math.unit(10500, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/kayda/back.svg",
  24315. extra: 1557 / 1464,
  24316. bottom: 39.5 / 1597.49
  24317. }
  24318. },
  24319. dick: {
  24320. height: math.unit(3.858, "feet"),
  24321. name: "Dick",
  24322. image: {
  24323. source: "./media/characters/kayda/dick.svg"
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Macro",
  24330. height: math.unit(28, "feet"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(10 + 11 / 12, "feet"),
  24340. weight: math.unit(1400, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/brian/front.svg",
  24344. extra: 737 / 692,
  24345. bottom: 55.4 / 785
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(10 + 11 / 12, "feet"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24359. {
  24360. front: {
  24361. height: math.unit(5 + 8 / 12, "feet"),
  24362. weight: math.unit(140, "lb"),
  24363. name: "Front",
  24364. image: {
  24365. source: "./media/characters/khemri/front.svg",
  24366. extra: 4780 / 4059,
  24367. bottom: 80.1 / 4859.25
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Micro",
  24374. height: math.unit(6, "inches")
  24375. },
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(5 + 8 / 12, "feet"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24385. {
  24386. front: {
  24387. height: math.unit(13, "feet"),
  24388. weight: math.unit(1700, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/felix-braveheart/front.svg",
  24392. extra: 1222 / 1157,
  24393. bottom: 53.2 / 1280
  24394. }
  24395. },
  24396. back: {
  24397. height: math.unit(13, "feet"),
  24398. weight: math.unit(1700, "lb"),
  24399. name: "Back",
  24400. image: {
  24401. source: "./media/characters/felix-braveheart/back.svg",
  24402. extra: 1277 / 1203,
  24403. bottom: 50.2 / 1327
  24404. }
  24405. },
  24406. feral: {
  24407. height: math.unit(6, "feet"),
  24408. weight: math.unit(400, "lb"),
  24409. name: "Feral",
  24410. image: {
  24411. source: "./media/characters/felix-braveheart/feral.svg",
  24412. extra: 682 / 625,
  24413. bottom: 6.9 / 688
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(13, "feet"),
  24421. default: true
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24427. {
  24428. side: {
  24429. height: math.unit(5 + 11 / 12, "feet"),
  24430. weight: math.unit(1400, "lb"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/shadow-blade/side.svg",
  24434. extra: 1726 / 1267,
  24435. bottom: 58.4 / 1785
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(5 + 11 / 12, "feet"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(1 + 6 / 12, "feet"),
  24452. weight: math.unit(25, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/karla-halldor/front.svg",
  24456. extra: 1459 / 1383,
  24457. bottom: 12 / 1472
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(1 + 6 / 12, "feet"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(6 + 2 / 12, "feet"),
  24474. weight: math.unit(160, "lb"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/ariam/front.svg",
  24478. extra: 1073/976,
  24479. bottom: 52/1125
  24480. }
  24481. },
  24482. back: {
  24483. height: math.unit(6 + 2/12, "feet"),
  24484. weight: math.unit(160, "lb"),
  24485. name: "Back",
  24486. image: {
  24487. source: "./media/characters/ariam/back.svg",
  24488. extra: 1103/1023,
  24489. bottom: 9/1112
  24490. }
  24491. },
  24492. dressed: {
  24493. height: math.unit(6 + 2/12, "feet"),
  24494. weight: math.unit(160, "lb"),
  24495. name: "Dressed",
  24496. image: {
  24497. source: "./media/characters/ariam/dressed.svg",
  24498. extra: 1099/1009,
  24499. bottom: 25/1124
  24500. }
  24501. },
  24502. squatting: {
  24503. height: math.unit(4.1, "feet"),
  24504. weight: math.unit(160, "lb"),
  24505. name: "Squatting",
  24506. image: {
  24507. source: "./media/characters/ariam/squatting.svg",
  24508. extra: 2617 / 2112,
  24509. bottom: 61.2 / 2681,
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Normal",
  24516. height: math.unit(6 + 2 / 12, "feet"),
  24517. default: true
  24518. },
  24519. {
  24520. name: "Normal+",
  24521. height: math.unit(4, "meters")
  24522. },
  24523. {
  24524. name: "Macro",
  24525. height: math.unit(50, "meters")
  24526. },
  24527. {
  24528. name: "Macro+",
  24529. height: math.unit(100, "meters")
  24530. },
  24531. {
  24532. name: "Megamacro",
  24533. height: math.unit(20, "km")
  24534. },
  24535. {
  24536. name: "Caretaker",
  24537. height: math.unit(444, "megameters")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(1.67, "meters"),
  24546. weight: math.unit(140, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24550. extra: 438 / 410,
  24551. bottom: 0.75 / 439
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Shrunken",
  24558. height: math.unit(7.6, "cm")
  24559. },
  24560. {
  24561. name: "Human Scale",
  24562. height: math.unit(1.67, "meters")
  24563. },
  24564. {
  24565. name: "Wolxi Scale",
  24566. height: math.unit(36.7, "meters"),
  24567. default: true
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(1.73, "meters"),
  24576. weight: math.unit(240, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/izue-two-mothers/front.svg",
  24580. extra: 469 / 437,
  24581. bottom: 1.24 / 470.6
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Shrunken",
  24588. height: math.unit(7.86, "cm")
  24589. },
  24590. {
  24591. name: "Human Scale",
  24592. height: math.unit(1.73, "meters")
  24593. },
  24594. {
  24595. name: "Wolxi Scale",
  24596. height: math.unit(38, "meters"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(1.55, "meters"),
  24606. weight: math.unit(120, "lb"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/teeku-love-shack/front.svg",
  24610. extra: 387 / 362,
  24611. bottom: 1.51 / 388
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Shrunken",
  24618. height: math.unit(7, "cm")
  24619. },
  24620. {
  24621. name: "Human Scale",
  24622. height: math.unit(1.55, "meters")
  24623. },
  24624. {
  24625. name: "Wolxi Scale",
  24626. height: math.unit(34.1, "meters"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(1.83, "meters"),
  24636. weight: math.unit(135, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/dejma-the-red/front.svg",
  24640. extra: 480 / 458,
  24641. bottom: 1.8 / 482
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Shrunken",
  24648. height: math.unit(8.3, "cm")
  24649. },
  24650. {
  24651. name: "Human Scale",
  24652. height: math.unit(1.83, "meters")
  24653. },
  24654. {
  24655. name: "Wolxi Scale",
  24656. height: math.unit(40, "meters"),
  24657. default: true
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24663. {
  24664. front: {
  24665. height: math.unit(1.78, "meters"),
  24666. weight: math.unit(65, "kg"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/aki/front.svg",
  24670. extra: 452 / 415
  24671. }
  24672. },
  24673. frontNsfw: {
  24674. height: math.unit(1.78, "meters"),
  24675. weight: math.unit(65, "kg"),
  24676. name: "Front (NSFW)",
  24677. image: {
  24678. source: "./media/characters/aki/front-nsfw.svg",
  24679. extra: 452 / 415
  24680. }
  24681. },
  24682. back: {
  24683. height: math.unit(1.78, "meters"),
  24684. weight: math.unit(65, "kg"),
  24685. name: "Back",
  24686. image: {
  24687. source: "./media/characters/aki/back.svg",
  24688. extra: 452 / 415
  24689. }
  24690. },
  24691. rump: {
  24692. height: math.unit(2.05, "feet"),
  24693. name: "Rump",
  24694. image: {
  24695. source: "./media/characters/aki/rump.svg"
  24696. }
  24697. },
  24698. dick: {
  24699. height: math.unit(0.95, "feet"),
  24700. name: "Dick",
  24701. image: {
  24702. source: "./media/characters/aki/dick.svg"
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Micro",
  24709. height: math.unit(15, "cm")
  24710. },
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(178, "cm"),
  24714. default: true
  24715. },
  24716. {
  24717. name: "Macro",
  24718. height: math.unit(214, "m")
  24719. },
  24720. {
  24721. name: "Macro+",
  24722. height: math.unit(534, "m")
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 5 / 12, "feet"),
  24731. weight: math.unit(120, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/ari/front.svg",
  24735. extra: 714.5 / 682,
  24736. bottom: 8 / 722.5
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(5 + 5 / 12, "feet")
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(100, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Megamacro",
  24752. height: math.unit(100, "miles")
  24753. },
  24754. {
  24755. name: "Gigamacro",
  24756. height: math.unit(80000, "miles")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24762. {
  24763. side: {
  24764. height: math.unit(9, "feet"),
  24765. weight: math.unit(400, "kg"),
  24766. name: "Side",
  24767. image: {
  24768. source: "./media/characters/bolt/side.svg",
  24769. extra: 1126 / 896,
  24770. bottom: 60 / 1187.3,
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Micro",
  24777. height: math.unit(5, "inches")
  24778. },
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(9, "feet"),
  24782. default: true
  24783. },
  24784. {
  24785. name: "Macro",
  24786. height: math.unit(700, "feet")
  24787. },
  24788. {
  24789. name: "Max Size",
  24790. height: math.unit(1.52e22, "yottameters")
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(4.53, "meters"),
  24799. weight: math.unit(3, "tons"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/draekon-sylviar/front.svg",
  24803. extra: 1228 / 1068,
  24804. bottom: 41 / 1270
  24805. }
  24806. },
  24807. tail: {
  24808. height: math.unit(1.772, "meter"),
  24809. name: "Tail",
  24810. image: {
  24811. source: "./media/characters/draekon-sylviar/tail.svg"
  24812. }
  24813. },
  24814. head: {
  24815. height: math.unit(1.331, "meter"),
  24816. name: "Head",
  24817. image: {
  24818. source: "./media/characters/draekon-sylviar/head.svg"
  24819. }
  24820. },
  24821. hand: {
  24822. height: math.unit(0.564, "meter"),
  24823. name: "Hand",
  24824. image: {
  24825. source: "./media/characters/draekon-sylviar/hand.svg"
  24826. }
  24827. },
  24828. foot: {
  24829. height: math.unit(0.621, "meter"),
  24830. name: "Foot",
  24831. image: {
  24832. source: "./media/characters/draekon-sylviar/foot.svg",
  24833. bottom: 32 / 324
  24834. }
  24835. },
  24836. dick: {
  24837. height: math.unit(61, "cm"),
  24838. name: "Dick",
  24839. image: {
  24840. source: "./media/characters/draekon-sylviar/dick.svg"
  24841. }
  24842. },
  24843. dickseparated: {
  24844. height: math.unit(61, "cm"),
  24845. name: "Dick-separated",
  24846. image: {
  24847. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Small",
  24854. height: math.unit(4.53 / 2, "meters"),
  24855. default: true
  24856. },
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(4.53, "meters"),
  24860. default: true
  24861. },
  24862. {
  24863. name: "Large",
  24864. height: math.unit(4.53 * 2, "meters"),
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24870. {
  24871. front: {
  24872. height: math.unit(6 + 2 / 12, "feet"),
  24873. weight: math.unit(180, "lb"),
  24874. name: "Front",
  24875. image: {
  24876. source: "./media/characters/brawler/front.svg",
  24877. extra: 3301 / 3027,
  24878. bottom: 138 / 3439
  24879. }
  24880. },
  24881. },
  24882. [
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(6 + 2 / 12, "feet"),
  24886. default: true
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24892. {
  24893. front: {
  24894. height: math.unit(11, "feet"),
  24895. weight: math.unit(1000, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/alex/front.svg",
  24899. bottom: 44.5 / 620
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Micro",
  24906. height: math.unit(5, "inches")
  24907. },
  24908. {
  24909. name: "Normal",
  24910. height: math.unit(11, "feet"),
  24911. default: true
  24912. },
  24913. {
  24914. name: "Macro",
  24915. height: math.unit(9.5e9, "feet")
  24916. },
  24917. {
  24918. name: "Max Size",
  24919. height: math.unit(1.4e283, "yottameters")
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24925. {
  24926. female: {
  24927. height: math.unit(29.9, "m"),
  24928. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24929. name: "Female",
  24930. image: {
  24931. source: "./media/characters/zenari/female.svg",
  24932. extra: 3281.6 / 3217,
  24933. bottom: 72.2 / 3353
  24934. }
  24935. },
  24936. male: {
  24937. height: math.unit(27.7, "m"),
  24938. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24939. name: "Male",
  24940. image: {
  24941. source: "./media/characters/zenari/male.svg",
  24942. extra: 3008 / 2991,
  24943. bottom: 54.6 / 3069
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Macro",
  24950. height: math.unit(29.7, "meters"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24957. {
  24958. female: {
  24959. height: math.unit(23.8, "m"),
  24960. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24961. name: "Female",
  24962. image: {
  24963. source: "./media/characters/mactarian/female.svg",
  24964. extra: 2662 / 2569,
  24965. bottom: 73 / 2736
  24966. }
  24967. },
  24968. male: {
  24969. height: math.unit(23.8, "m"),
  24970. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24971. name: "Male",
  24972. image: {
  24973. source: "./media/characters/mactarian/male.svg",
  24974. extra: 2673 / 2600,
  24975. bottom: 76 / 2750
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Macro",
  24982. height: math.unit(23.8, "meters"),
  24983. default: true
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24989. {
  24990. female: {
  24991. height: math.unit(19.3, "m"),
  24992. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24993. name: "Female",
  24994. image: {
  24995. source: "./media/characters/umok/female.svg",
  24996. extra: 2186 / 2078,
  24997. bottom: 87 / 2277
  24998. }
  24999. },
  25000. male: {
  25001. height: math.unit(19.5, "m"),
  25002. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25003. name: "Male",
  25004. image: {
  25005. source: "./media/characters/umok/male.svg",
  25006. extra: 2233 / 2140,
  25007. bottom: 24.4 / 2258
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Macro",
  25014. height: math.unit(19.3, "meters"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25021. {
  25022. female: {
  25023. height: math.unit(26.15, "m"),
  25024. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25025. name: "Female",
  25026. image: {
  25027. source: "./media/characters/joraxian/female.svg",
  25028. extra: 2912 / 2824,
  25029. bottom: 36 / 2956
  25030. }
  25031. },
  25032. male: {
  25033. height: math.unit(25.4, "m"),
  25034. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25035. name: "Male",
  25036. image: {
  25037. source: "./media/characters/joraxian/male.svg",
  25038. extra: 2877 / 2721,
  25039. bottom: 82 / 2967
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Macro",
  25046. height: math.unit(26.15, "meters"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25053. {
  25054. female: {
  25055. height: math.unit(21.6, "m"),
  25056. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25057. name: "Female",
  25058. image: {
  25059. source: "./media/characters/sthara/female.svg",
  25060. extra: 2516 / 2347,
  25061. bottom: 21.5 / 2537
  25062. }
  25063. },
  25064. male: {
  25065. height: math.unit(24, "m"),
  25066. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25067. name: "Male",
  25068. image: {
  25069. source: "./media/characters/sthara/male.svg",
  25070. extra: 2732 / 2607,
  25071. bottom: 23 / 2732
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Macro",
  25078. height: math.unit(21.6, "meters"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(6 + 4 / 12, "feet"),
  25088. weight: math.unit(175, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/luka-bryzant/front.svg",
  25092. extra: 311 / 289,
  25093. bottom: 4 / 315
  25094. }
  25095. },
  25096. back: {
  25097. height: math.unit(6 + 4 / 12, "feet"),
  25098. weight: math.unit(175, "lb"),
  25099. name: "Back",
  25100. image: {
  25101. source: "./media/characters/luka-bryzant/back.svg",
  25102. extra: 311 / 289,
  25103. bottom: 3.8 / 313.7
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Micro",
  25110. height: math.unit(10, "inches")
  25111. },
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(6 + 4 / 12, "feet"),
  25115. default: true
  25116. },
  25117. {
  25118. name: "Large",
  25119. height: math.unit(12, "feet")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(5 + 7 / 12, "feet"),
  25128. weight: math.unit(185, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/aman-aquila/front.svg",
  25132. extra: 1013 / 976,
  25133. bottom: 45.6 / 1057
  25134. }
  25135. },
  25136. side: {
  25137. height: math.unit(5 + 7 / 12, "feet"),
  25138. weight: math.unit(185, "lb"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/aman-aquila/side.svg",
  25142. extra: 1054 / 1011,
  25143. bottom: 15 / 1070
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(5 + 7 / 12, "feet"),
  25148. weight: math.unit(185, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/aman-aquila/back.svg",
  25152. extra: 1026 / 970,
  25153. bottom: 12 / 1039
  25154. }
  25155. },
  25156. head: {
  25157. height: math.unit(1.211, "feet"),
  25158. name: "Head",
  25159. image: {
  25160. source: "./media/characters/aman-aquila/head.svg",
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Minimicro",
  25167. height: math.unit(0.057, "inches")
  25168. },
  25169. {
  25170. name: "Micro",
  25171. height: math.unit(7, "inches")
  25172. },
  25173. {
  25174. name: "Mini",
  25175. height: math.unit(3 + 7 / 12, "feet")
  25176. },
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(5 + 7 / 12, "feet"),
  25180. default: true
  25181. },
  25182. {
  25183. name: "Macro",
  25184. height: math.unit(157 + 7 / 12, "feet")
  25185. },
  25186. {
  25187. name: "Megamacro",
  25188. height: math.unit(1557 + 7 / 12, "feet")
  25189. },
  25190. {
  25191. name: "Gigamacro",
  25192. height: math.unit(15557 + 7 / 12, "feet")
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25198. {
  25199. front: {
  25200. height: math.unit(3 + 2 / 12, "inches"),
  25201. weight: math.unit(0.3, "ounces"),
  25202. name: "Front",
  25203. image: {
  25204. source: "./media/characters/hiphae/front.svg",
  25205. extra: 1931 / 1683,
  25206. bottom: 24 / 1955
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(3 + 1 / 2, "inches"),
  25214. default: true
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(5 + 10 / 12, "feet"),
  25223. weight: math.unit(165, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/nicky/front.svg",
  25227. extra: 3144 / 2886,
  25228. bottom: 45.6 / 3192
  25229. }
  25230. },
  25231. back: {
  25232. height: math.unit(5 + 10 / 12, "feet"),
  25233. weight: math.unit(165, "lb"),
  25234. name: "Back",
  25235. image: {
  25236. source: "./media/characters/nicky/back.svg",
  25237. extra: 3055 / 2804,
  25238. bottom: 28.4 / 3087
  25239. }
  25240. },
  25241. frontclothed: {
  25242. height: math.unit(5 + 10 / 12, "feet"),
  25243. weight: math.unit(165, "lb"),
  25244. name: "Front-clothed",
  25245. image: {
  25246. source: "./media/characters/nicky/front-clothed.svg",
  25247. extra: 3184.9 / 2926.9,
  25248. bottom: 86.5 / 3239.9
  25249. }
  25250. },
  25251. foot: {
  25252. height: math.unit(1.16, "feet"),
  25253. name: "Foot",
  25254. image: {
  25255. source: "./media/characters/nicky/foot.svg"
  25256. }
  25257. },
  25258. feet: {
  25259. height: math.unit(1.34, "feet"),
  25260. name: "Feet",
  25261. image: {
  25262. source: "./media/characters/nicky/feet.svg"
  25263. }
  25264. },
  25265. maw: {
  25266. height: math.unit(0.9, "feet"),
  25267. name: "Maw",
  25268. image: {
  25269. source: "./media/characters/nicky/maw.svg"
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Normal",
  25276. height: math.unit(5 + 10 / 12, "feet"),
  25277. default: true
  25278. },
  25279. {
  25280. name: "Macro",
  25281. height: math.unit(60, "feet")
  25282. },
  25283. {
  25284. name: "Megamacro",
  25285. height: math.unit(1, "mile")
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25291. {
  25292. side: {
  25293. height: math.unit(10, "feet"),
  25294. weight: math.unit(600, "lb"),
  25295. name: "Side",
  25296. image: {
  25297. source: "./media/characters/blair/side.svg",
  25298. bottom: 16.6 / 475,
  25299. extra: 458 / 431
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Micro",
  25306. height: math.unit(8, "inches")
  25307. },
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(10, "feet"),
  25311. default: true
  25312. },
  25313. {
  25314. name: "Macro",
  25315. height: math.unit(180, "feet")
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(5 + 4 / 12, "feet"),
  25324. weight: math.unit(125, "lb"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/fisher/front.svg",
  25328. extra: 444 / 390,
  25329. bottom: 2 / 444.8
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Micro",
  25336. height: math.unit(4, "inches")
  25337. },
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(5 + 4 / 12, "feet"),
  25341. default: true
  25342. },
  25343. {
  25344. name: "Macro",
  25345. height: math.unit(100, "feet")
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(6.71, "feet"),
  25354. weight: math.unit(200, "lb"),
  25355. capacity: math.unit(1000000, "people"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/gliss/front.svg",
  25359. extra: 2347 / 2231,
  25360. bottom: 113 / 2462
  25361. }
  25362. },
  25363. hammerspaceSize: {
  25364. height: math.unit(6.71 * 717, "feet"),
  25365. weight: math.unit(200, "lb"),
  25366. capacity: math.unit(1000000, "people"),
  25367. name: "Hammerspace Size",
  25368. image: {
  25369. source: "./media/characters/gliss/front.svg",
  25370. extra: 2347 / 2231,
  25371. bottom: 113 / 2462
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(6.71, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25385. {
  25386. side: {
  25387. height: math.unit(1.44, "m"),
  25388. weight: math.unit(80, "kg"),
  25389. name: "Side",
  25390. image: {
  25391. source: "./media/characters/dune-anderson/side.svg",
  25392. bottom: 49 / 1426
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Wolf-sized",
  25399. height: math.unit(1.44, "meters")
  25400. },
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(5.05, "meters"),
  25404. default: true
  25405. },
  25406. {
  25407. name: "Big",
  25408. height: math.unit(14.4, "meters")
  25409. },
  25410. {
  25411. name: "Huge",
  25412. height: math.unit(144, "meters")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(7, "feet"),
  25421. weight: math.unit(425, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/hind/front.svg",
  25425. extra: 2091 / 1860,
  25426. bottom: 129 / 2220
  25427. }
  25428. },
  25429. back: {
  25430. height: math.unit(7, "feet"),
  25431. weight: math.unit(425, "lb"),
  25432. name: "Back",
  25433. image: {
  25434. source: "./media/characters/hind/back.svg",
  25435. extra: 2091 / 1860,
  25436. bottom: 24.6 / 2309
  25437. }
  25438. },
  25439. tail: {
  25440. height: math.unit(2.8, "feet"),
  25441. name: "Tail",
  25442. image: {
  25443. source: "./media/characters/hind/tail.svg"
  25444. }
  25445. },
  25446. head: {
  25447. height: math.unit(2.55, "feet"),
  25448. name: "Head",
  25449. image: {
  25450. source: "./media/characters/hind/head.svg"
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "XS",
  25457. height: math.unit(0.7, "feet")
  25458. },
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(7, "feet"),
  25462. default: true
  25463. },
  25464. {
  25465. name: "XL",
  25466. height: math.unit(70, "feet")
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25472. {
  25473. front: {
  25474. height: math.unit(2.1, "meters"),
  25475. weight: math.unit(150, "lb"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/tharquench-sizestealer/front.svg",
  25479. extra: 1605/1470,
  25480. bottom: 36/1641
  25481. }
  25482. },
  25483. frontAlt: {
  25484. height: math.unit(2.1, "meters"),
  25485. weight: math.unit(150, "lb"),
  25486. name: "Front (Alt)",
  25487. image: {
  25488. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25489. extra: 2318 / 2063,
  25490. bottom: 93.4 / 2410
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Nano",
  25497. height: math.unit(1, "mm")
  25498. },
  25499. {
  25500. name: "Micro",
  25501. height: math.unit(1, "cm")
  25502. },
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(2.1, "meters"),
  25506. default: true
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(7 + 5 / 12, "feet"),
  25515. weight: math.unit(357, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/solex-draconov/front.svg",
  25519. extra: 1993 / 1865,
  25520. bottom: 117 / 2111
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Natural Height",
  25527. height: math.unit(7 + 5 / 12, "feet"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(350, "feet")
  25533. },
  25534. {
  25535. name: "Macro+",
  25536. height: math.unit(1000, "feet")
  25537. },
  25538. {
  25539. name: "Megamacro",
  25540. height: math.unit(20, "km")
  25541. },
  25542. {
  25543. name: "Megamacro+",
  25544. height: math.unit(1000, "km")
  25545. },
  25546. {
  25547. name: "Gigamacro",
  25548. height: math.unit(2.5, "Gm")
  25549. },
  25550. {
  25551. name: "Teramacro",
  25552. height: math.unit(15, "Tm")
  25553. },
  25554. {
  25555. name: "Galactic",
  25556. height: math.unit(30, "Zm")
  25557. },
  25558. {
  25559. name: "Universal",
  25560. height: math.unit(21000, "Ym")
  25561. },
  25562. {
  25563. name: "Omniversal",
  25564. height: math.unit(9.861e50, "Ym")
  25565. },
  25566. {
  25567. name: "Existential",
  25568. height: math.unit(1e300, "meters")
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25574. {
  25575. side: {
  25576. height: math.unit(25, "feet"),
  25577. weight: math.unit(90000, "lb"),
  25578. name: "Side",
  25579. image: {
  25580. source: "./media/characters/mandarax/side.svg",
  25581. extra: 614 / 332,
  25582. bottom: 55 / 630
  25583. }
  25584. },
  25585. head: {
  25586. height: math.unit(11.4, "feet"),
  25587. name: "Head",
  25588. image: {
  25589. source: "./media/characters/mandarax/head.svg"
  25590. }
  25591. },
  25592. belly: {
  25593. height: math.unit(33, "feet"),
  25594. name: "Belly",
  25595. capacity: math.unit(500, "people"),
  25596. image: {
  25597. source: "./media/characters/mandarax/belly.svg"
  25598. }
  25599. },
  25600. dick: {
  25601. height: math.unit(8.46, "feet"),
  25602. name: "Dick",
  25603. image: {
  25604. source: "./media/characters/mandarax/dick.svg"
  25605. }
  25606. },
  25607. top: {
  25608. height: math.unit(28, "meters"),
  25609. name: "Top",
  25610. image: {
  25611. source: "./media/characters/mandarax/top.svg"
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(25, "feet"),
  25619. default: true
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(5, "feet"),
  25628. weight: math.unit(90, "lb"),
  25629. name: "Front",
  25630. image: {
  25631. source: "./media/characters/pixil/front.svg",
  25632. extra: 2000 / 1618,
  25633. bottom: 12.3 / 2011
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(5, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Megamacro",
  25645. height: math.unit(10, "miles"),
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(7 + 2 / 12, "feet"),
  25654. weight: math.unit(200, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/angel/front.svg",
  25658. extra: 1830 / 1737,
  25659. bottom: 22.6 / 1854,
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(7 + 2 / 12, "feet"),
  25667. default: true
  25668. },
  25669. {
  25670. name: "Macro",
  25671. height: math.unit(1000, "feet")
  25672. },
  25673. {
  25674. name: "Megamacro",
  25675. height: math.unit(2, "miles")
  25676. },
  25677. {
  25678. name: "Gigamacro",
  25679. height: math.unit(20, "earths")
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(5, "feet"),
  25688. weight: math.unit(180, "lb"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/mekana/front.svg",
  25692. extra: 1671 / 1605,
  25693. bottom: 3.5 / 1691
  25694. }
  25695. },
  25696. side: {
  25697. height: math.unit(5, "feet"),
  25698. weight: math.unit(180, "lb"),
  25699. name: "Side",
  25700. image: {
  25701. source: "./media/characters/mekana/side.svg",
  25702. extra: 1671 / 1605,
  25703. bottom: 3.5 / 1691
  25704. }
  25705. },
  25706. back: {
  25707. height: math.unit(5, "feet"),
  25708. weight: math.unit(180, "lb"),
  25709. name: "Back",
  25710. image: {
  25711. source: "./media/characters/mekana/back.svg",
  25712. extra: 1671 / 1605,
  25713. bottom: 3.5 / 1691
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(5, "feet"),
  25721. default: true
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25727. {
  25728. front: {
  25729. height: math.unit(4 + 6 / 12, "feet"),
  25730. weight: math.unit(80, "lb"),
  25731. name: "Front",
  25732. image: {
  25733. source: "./media/characters/pixie/front.svg",
  25734. extra: 1924 / 1825,
  25735. bottom: 22.4 / 1946
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Normal",
  25742. height: math.unit(4 + 6 / 12, "feet"),
  25743. default: true
  25744. },
  25745. {
  25746. name: "Macro",
  25747. height: math.unit(40, "feet")
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25753. {
  25754. front: {
  25755. height: math.unit(2.1, "meters"),
  25756. weight: math.unit(200, "lb"),
  25757. name: "Front",
  25758. image: {
  25759. source: "./media/characters/the-lascivious/front.svg",
  25760. extra: 1 / 0.893,
  25761. bottom: 3.5 / 573.7
  25762. }
  25763. },
  25764. },
  25765. [
  25766. {
  25767. name: "Human Scale",
  25768. height: math.unit(2.1, "meters")
  25769. },
  25770. {
  25771. name: "Wolxi Scale",
  25772. height: math.unit(46.2, "m"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Boinker of Buildings",
  25777. height: math.unit(10, "km")
  25778. },
  25779. {
  25780. name: "Shagger of Skyscrapers",
  25781. height: math.unit(40, "km")
  25782. },
  25783. {
  25784. name: "Banger of Boroughs",
  25785. height: math.unit(4000, "km")
  25786. },
  25787. {
  25788. name: "Screwer of States",
  25789. height: math.unit(100000, "km")
  25790. },
  25791. {
  25792. name: "Pounder of Planets",
  25793. height: math.unit(2000000, "km")
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(6, "feet"),
  25802. weight: math.unit(150, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/aj/front.svg",
  25806. extra: 2039 / 1562,
  25807. bottom: 40 / 2079
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(11 + 6 / 12, "feet"),
  25815. default: true
  25816. },
  25817. {
  25818. name: "Megamacro",
  25819. height: math.unit(60, "megameters")
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25825. {
  25826. side: {
  25827. height: math.unit(31 + 8 / 12, "feet"),
  25828. weight: math.unit(75000, "kg"),
  25829. name: "Side",
  25830. image: {
  25831. source: "./media/characters/koros/side.svg",
  25832. extra: 1442 / 1297,
  25833. bottom: 122.7 / 1562
  25834. }
  25835. },
  25836. dicksKingsCrown: {
  25837. height: math.unit(6, "feet"),
  25838. name: "Dicks (King's Crown)",
  25839. image: {
  25840. source: "./media/characters/koros/dicks-kings-crown.svg"
  25841. }
  25842. },
  25843. dicksTailSet: {
  25844. height: math.unit(3, "feet"),
  25845. name: "Dicks (Tail Set)",
  25846. image: {
  25847. source: "./media/characters/koros/dicks-tail-set.svg"
  25848. }
  25849. },
  25850. dickCumming: {
  25851. height: math.unit(7.98, "feet"),
  25852. name: "Dick (Cumming)",
  25853. image: {
  25854. source: "./media/characters/koros/dick-cumming.svg"
  25855. }
  25856. },
  25857. dicksBack: {
  25858. height: math.unit(5.9, "feet"),
  25859. name: "Dicks (Back)",
  25860. image: {
  25861. source: "./media/characters/koros/dicks-back.svg"
  25862. }
  25863. },
  25864. dicksFront: {
  25865. height: math.unit(3.72, "feet"),
  25866. name: "Dicks (Front)",
  25867. image: {
  25868. source: "./media/characters/koros/dicks-front.svg"
  25869. }
  25870. },
  25871. dicksPeeking: {
  25872. height: math.unit(3.0, "feet"),
  25873. name: "Dicks (Peeking)",
  25874. image: {
  25875. source: "./media/characters/koros/dicks-peeking.svg"
  25876. }
  25877. },
  25878. eye: {
  25879. height: math.unit(1.7, "feet"),
  25880. name: "Eye",
  25881. image: {
  25882. source: "./media/characters/koros/eye.svg"
  25883. }
  25884. },
  25885. headFront: {
  25886. height: math.unit(11.69, "feet"),
  25887. name: "Head (Front)",
  25888. image: {
  25889. source: "./media/characters/koros/head-front.svg"
  25890. }
  25891. },
  25892. headSide: {
  25893. height: math.unit(14, "feet"),
  25894. name: "Head (Side)",
  25895. image: {
  25896. source: "./media/characters/koros/head-side.svg"
  25897. }
  25898. },
  25899. leg: {
  25900. height: math.unit(17, "feet"),
  25901. name: "Leg",
  25902. image: {
  25903. source: "./media/characters/koros/leg.svg"
  25904. }
  25905. },
  25906. mawSide: {
  25907. height: math.unit(12.8, "feet"),
  25908. name: "Maw (Side)",
  25909. image: {
  25910. source: "./media/characters/koros/maw-side.svg"
  25911. }
  25912. },
  25913. mawSpitting: {
  25914. height: math.unit(17, "feet"),
  25915. name: "Maw (Spitting)",
  25916. image: {
  25917. source: "./media/characters/koros/maw-spitting.svg"
  25918. }
  25919. },
  25920. slit: {
  25921. height: math.unit(2.8, "feet"),
  25922. name: "Slit",
  25923. image: {
  25924. source: "./media/characters/koros/slit.svg"
  25925. }
  25926. },
  25927. stomach: {
  25928. height: math.unit(6.8, "feet"),
  25929. capacity: math.unit(20, "people"),
  25930. name: "Stomach",
  25931. image: {
  25932. source: "./media/characters/koros/stomach.svg"
  25933. }
  25934. },
  25935. wingspanBottom: {
  25936. height: math.unit(114, "feet"),
  25937. name: "Wingspan (Bottom)",
  25938. image: {
  25939. source: "./media/characters/koros/wingspan-bottom.svg"
  25940. }
  25941. },
  25942. wingspanTop: {
  25943. height: math.unit(104, "feet"),
  25944. name: "Wingspan (Top)",
  25945. image: {
  25946. source: "./media/characters/koros/wingspan-top.svg"
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(31 + 8 / 12, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(18 + 5 / 12, "feet"),
  25963. weight: math.unit(3750, "kg"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/vexx/front.svg",
  25967. extra: 426 / 396,
  25968. bottom: 31.5 / 458
  25969. }
  25970. },
  25971. maw: {
  25972. height: math.unit(6, "feet"),
  25973. name: "Maw",
  25974. image: {
  25975. source: "./media/characters/vexx/maw.svg"
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(18 + 5 / 12, "feet"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(17 + 6 / 12, "feet"),
  25992. weight: math.unit(150, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/baadra/front.svg",
  25996. extra: 3137 / 2890,
  25997. bottom: 168.4 / 3305
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(17 + 6 / 12, "feet"),
  26002. weight: math.unit(150, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/baadra/back.svg",
  26006. extra: 3142 / 2890,
  26007. bottom: 220 / 3371
  26008. }
  26009. },
  26010. head: {
  26011. height: math.unit(5.45, "feet"),
  26012. name: "Head",
  26013. image: {
  26014. source: "./media/characters/baadra/head.svg"
  26015. }
  26016. },
  26017. headAngry: {
  26018. height: math.unit(4.95, "feet"),
  26019. name: "Head (Angry)",
  26020. image: {
  26021. source: "./media/characters/baadra/head-angry.svg"
  26022. }
  26023. },
  26024. headOpen: {
  26025. height: math.unit(6, "feet"),
  26026. name: "Head (Open)",
  26027. image: {
  26028. source: "./media/characters/baadra/head-open.svg"
  26029. }
  26030. },
  26031. },
  26032. [
  26033. {
  26034. name: "Normal",
  26035. height: math.unit(17 + 6 / 12, "feet"),
  26036. default: true
  26037. },
  26038. ]
  26039. ))
  26040. characterMakers.push(() => makeCharacter(
  26041. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26042. {
  26043. front: {
  26044. height: math.unit(7 + 3 / 12, "feet"),
  26045. weight: math.unit(180, "lb"),
  26046. name: "Front",
  26047. image: {
  26048. source: "./media/characters/juri/front.svg",
  26049. extra: 1401 / 1237,
  26050. bottom: 18.5 / 1418
  26051. }
  26052. },
  26053. side: {
  26054. height: math.unit(7 + 3 / 12, "feet"),
  26055. weight: math.unit(180, "lb"),
  26056. name: "Side",
  26057. image: {
  26058. source: "./media/characters/juri/side.svg",
  26059. extra: 1424 / 1242,
  26060. bottom: 18.5 / 1447
  26061. }
  26062. },
  26063. sitting: {
  26064. height: math.unit(6, "feet"),
  26065. weight: math.unit(180, "lb"),
  26066. name: "Sitting",
  26067. image: {
  26068. source: "./media/characters/juri/sitting.svg",
  26069. extra: 1270 / 1143,
  26070. bottom: 100 / 1343
  26071. }
  26072. },
  26073. back: {
  26074. height: math.unit(7 + 3 / 12, "feet"),
  26075. weight: math.unit(180, "lb"),
  26076. name: "Back",
  26077. image: {
  26078. source: "./media/characters/juri/back.svg",
  26079. extra: 1377 / 1240,
  26080. bottom: 23.7 / 1405
  26081. }
  26082. },
  26083. maw: {
  26084. height: math.unit(2.8, "feet"),
  26085. name: "Maw",
  26086. image: {
  26087. source: "./media/characters/juri/maw.svg"
  26088. }
  26089. },
  26090. stomach: {
  26091. height: math.unit(0.89, "feet"),
  26092. capacity: math.unit(4, "liters"),
  26093. name: "Stomach",
  26094. image: {
  26095. source: "./media/characters/juri/stomach.svg"
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Normal",
  26102. height: math.unit(7 + 3 / 12, "feet"),
  26103. default: true
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26109. {
  26110. fox: {
  26111. height: math.unit(5 + 6 / 12, "feet"),
  26112. weight: math.unit(140, "lb"),
  26113. name: "Fox",
  26114. image: {
  26115. source: "./media/characters/maxene-sita/fox.svg",
  26116. extra: 146 / 138,
  26117. bottom: 2.1 / 148.19
  26118. }
  26119. },
  26120. foxLaying: {
  26121. height: math.unit(1.70, "feet"),
  26122. weight: math.unit(140, "lb"),
  26123. name: "Fox (Laying)",
  26124. image: {
  26125. source: "./media/characters/maxene-sita/fox-laying.svg",
  26126. extra: 910 / 572,
  26127. bottom: 71 / 981
  26128. }
  26129. },
  26130. kitsune: {
  26131. height: math.unit(10, "feet"),
  26132. weight: math.unit(800, "lb"),
  26133. name: "Kitsune",
  26134. image: {
  26135. source: "./media/characters/maxene-sita/kitsune.svg",
  26136. extra: 185 / 176,
  26137. bottom: 4.7 / 189.9
  26138. }
  26139. },
  26140. hellhound: {
  26141. height: math.unit(10, "feet"),
  26142. weight: math.unit(700, "lb"),
  26143. name: "Hellhound",
  26144. image: {
  26145. source: "./media/characters/maxene-sita/hellhound.svg",
  26146. extra: 1600 / 1545,
  26147. bottom: 81 / 1681
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(5 + 6 / 12, "feet"),
  26155. default: true
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26161. {
  26162. front: {
  26163. height: math.unit(3 + 4 / 12, "feet"),
  26164. weight: math.unit(70, "lb"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/maia/front.svg",
  26168. extra: 227 / 219.5,
  26169. bottom: 40 / 267
  26170. }
  26171. },
  26172. back: {
  26173. height: math.unit(3 + 4 / 12, "feet"),
  26174. weight: math.unit(70, "lb"),
  26175. name: "Back",
  26176. image: {
  26177. source: "./media/characters/maia/back.svg",
  26178. extra: 237 / 225
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(3 + 4 / 12, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(5 + 10 / 12, "feet"),
  26195. weight: math.unit(197, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/jabaro/front.svg",
  26199. extra: 225 / 216,
  26200. bottom: 5.06 / 230
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(5 + 10 / 12, "feet"),
  26205. weight: math.unit(197, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/jabaro/back.svg",
  26209. extra: 225 / 219,
  26210. bottom: 1.9 / 227
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(5 + 10 / 12, "feet"),
  26218. default: true
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(5 + 8 / 12, "feet"),
  26227. weight: math.unit(139, "lb"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/risa/front.svg",
  26231. extra: 270 / 260,
  26232. bottom: 11.2 / 282
  26233. }
  26234. },
  26235. back: {
  26236. height: math.unit(5 + 8 / 12, "feet"),
  26237. weight: math.unit(139, "lb"),
  26238. name: "Back",
  26239. image: {
  26240. source: "./media/characters/risa/back.svg",
  26241. extra: 264 / 255,
  26242. bottom: 4 / 268
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(5 + 8 / 12, "feet"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(2 + 11 / 12, "feet"),
  26259. weight: math.unit(30, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/weatley/front.svg",
  26263. bottom: 10.7 / 414,
  26264. extra: 403.5 / 362
  26265. }
  26266. },
  26267. back: {
  26268. height: math.unit(2 + 11 / 12, "feet"),
  26269. weight: math.unit(30, "lb"),
  26270. name: "Back",
  26271. image: {
  26272. source: "./media/characters/weatley/back.svg",
  26273. bottom: 10.7 / 414,
  26274. extra: 403.5 / 362
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(2 + 11 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(5 + 2 / 12, "feet"),
  26291. weight: math.unit(50, "kg"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/mercury-crescent/front.svg",
  26295. extra: 1088 / 1033,
  26296. bottom: 18.9 / 1109
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(5 + 2 / 12, "feet"),
  26304. default: true
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(2, "feet"),
  26313. weight: math.unit(15, "kg"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/diamond-jones/front.svg",
  26317. extra: 727/723,
  26318. bottom: 46/773
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(2, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(3, "feet"),
  26335. weight: math.unit(30, "kg"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/sweet-bit/front.svg",
  26339. extra: 675 / 567,
  26340. bottom: 27.7 / 703
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(3, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26354. {
  26355. side: {
  26356. height: math.unit(9.178, "feet"),
  26357. weight: math.unit(500, "lb"),
  26358. name: "Side",
  26359. image: {
  26360. source: "./media/characters/umbrazen/side.svg",
  26361. extra: 1730 / 1473,
  26362. bottom: 34.6 / 1765
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(9.178, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(10, "feet"),
  26379. weight: math.unit(750, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/arlist/front.svg",
  26383. extra: 961 / 778,
  26384. bottom: 6.2 / 986
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(10, "feet"),
  26392. default: true
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(5 + 1 / 12, "feet"),
  26401. weight: math.unit(110, "lb"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/aradel/front.svg",
  26405. extra: 324 / 303,
  26406. bottom: 3.6 / 329.4
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(5 + 1 / 12, "feet"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(3 + 8 / 12, "feet"),
  26423. weight: math.unit(50, "lb"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/serryn/front.svg",
  26427. extra: 1792 / 1656,
  26428. bottom: 43.5 / 1840
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(3 + 8 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(7 + 10 / 12, "feet"),
  26445. weight: math.unit(255, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/xavier-thyme/front.svg",
  26449. extra: 3733 / 3642,
  26450. bottom: 131 / 3869
  26451. }
  26452. },
  26453. frontRaven: {
  26454. height: math.unit(7 + 10 / 12, "feet"),
  26455. weight: math.unit(255, "lb"),
  26456. name: "Front (Raven)",
  26457. image: {
  26458. source: "./media/characters/xavier-thyme/front-raven.svg",
  26459. extra: 4385 / 3642,
  26460. bottom: 131 / 4517
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(7 + 10 / 12, "feet"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(1.6, "m"),
  26477. weight: math.unit(50, "kg"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/kiki/front.svg",
  26481. extra: 4682 / 3610,
  26482. bottom: 115 / 4777
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(1.6, "meters"),
  26490. default: true
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(50, "m"),
  26499. weight: math.unit(500, "tonnes"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/ryoko/front.svg",
  26503. extra: 4632 / 3926,
  26504. bottom: 193 / 4823
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(50, "meters"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(30, "m"),
  26521. weight: math.unit(22, "tonnes"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/elio/front.svg",
  26525. extra: 4582 / 3720,
  26526. bottom: 236 / 4828
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(30, "meters"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(6 + 3 / 12, "feet"),
  26543. weight: math.unit(120, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/azura/front.svg",
  26547. extra: 1149 / 1135,
  26548. bottom: 45 / 1194
  26549. }
  26550. },
  26551. frontClothed: {
  26552. height: math.unit(6 + 3 / 12, "feet"),
  26553. weight: math.unit(120, "lb"),
  26554. name: "Front (Clothed)",
  26555. image: {
  26556. source: "./media/characters/azura/front-clothed.svg",
  26557. extra: 1149 / 1135,
  26558. bottom: 45 / 1194
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(6 + 3 / 12, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Macro",
  26570. height: math.unit(20 + 6 / 12, "feet")
  26571. },
  26572. {
  26573. name: "Megamacro",
  26574. height: math.unit(12, "miles")
  26575. },
  26576. {
  26577. name: "Gigamacro",
  26578. height: math.unit(10000, "miles")
  26579. },
  26580. {
  26581. name: "Teramacro",
  26582. height: math.unit(900000, "miles")
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26588. {
  26589. front: {
  26590. height: math.unit(12, "feet"),
  26591. weight: math.unit(1, "ton"),
  26592. capacity: math.unit(660000, "gallons"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/zeus/front.svg",
  26596. extra: 5005 / 4717,
  26597. bottom: 363 / 5388
  26598. }
  26599. },
  26600. },
  26601. [
  26602. {
  26603. name: "Normal",
  26604. height: math.unit(12, "feet")
  26605. },
  26606. {
  26607. name: "Preferred Size",
  26608. height: math.unit(0.5, "miles"),
  26609. default: true
  26610. },
  26611. {
  26612. name: "Giga Horse",
  26613. height: math.unit(300, "miles")
  26614. },
  26615. {
  26616. name: "Riding Planets",
  26617. height: math.unit(30, "megameters")
  26618. },
  26619. {
  26620. name: "Cosmic Giant",
  26621. height: math.unit(3, "zettameters")
  26622. },
  26623. {
  26624. name: "Breeding God",
  26625. height: math.unit(9.92e22, "yottameters")
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26631. {
  26632. side: {
  26633. height: math.unit(9, "feet"),
  26634. weight: math.unit(1500, "kg"),
  26635. name: "Side",
  26636. image: {
  26637. source: "./media/characters/fang/side.svg",
  26638. extra: 924 / 866,
  26639. bottom: 47.5 / 972.3
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(9, "feet"),
  26647. default: true
  26648. },
  26649. {
  26650. name: "Macro",
  26651. height: math.unit(75 + 6 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Teramacro",
  26655. height: math.unit(50000, "miles")
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(10, "feet"),
  26664. weight: math.unit(2, "tons"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/rekhit/front.svg",
  26668. extra: 2796 / 2590,
  26669. bottom: 225 / 3022
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(10, "feet"),
  26677. default: true
  26678. },
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(500, "feet")
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26687. {
  26688. front: {
  26689. height: math.unit(7 + 6.451 / 12, "feet"),
  26690. weight: math.unit(310, "lb"),
  26691. name: "Front",
  26692. image: {
  26693. source: "./media/characters/dahlia-verrick/front.svg",
  26694. extra: 1488 / 1365,
  26695. bottom: 6.2 / 1495
  26696. }
  26697. },
  26698. back: {
  26699. height: math.unit(7 + 6.451 / 12, "feet"),
  26700. weight: math.unit(310, "lb"),
  26701. name: "Back",
  26702. image: {
  26703. source: "./media/characters/dahlia-verrick/back.svg",
  26704. extra: 1472 / 1351,
  26705. bottom: 5.28 / 1477
  26706. }
  26707. },
  26708. frontBusiness: {
  26709. height: math.unit(7 + 6.451 / 12, "feet"),
  26710. weight: math.unit(200, "lb"),
  26711. name: "Front (Business)",
  26712. image: {
  26713. source: "./media/characters/dahlia-verrick/front-business.svg",
  26714. extra: 1478 / 1381,
  26715. bottom: 5.5 / 1484
  26716. }
  26717. },
  26718. frontCasual: {
  26719. height: math.unit(7 + 6.451 / 12, "feet"),
  26720. weight: math.unit(200, "lb"),
  26721. name: "Front (Casual)",
  26722. image: {
  26723. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26724. extra: 1478 / 1381,
  26725. bottom: 5.5 / 1484
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Travel-Sized",
  26732. height: math.unit(7.45, "inches")
  26733. },
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(7 + 6.451 / 12, "feet"),
  26737. default: true
  26738. },
  26739. {
  26740. name: "Hitting the Town",
  26741. height: math.unit(37 + 8 / 12, "feet")
  26742. },
  26743. {
  26744. name: "Stomp in the Suburbs",
  26745. height: math.unit(964 + 9.728 / 12, "feet")
  26746. },
  26747. {
  26748. name: "Sit on the City",
  26749. height: math.unit(61747 + 10.592 / 12, "feet")
  26750. },
  26751. {
  26752. name: "Glomp the Globe",
  26753. height: math.unit(252919327 + 4.832 / 12, "feet")
  26754. },
  26755. ]
  26756. ))
  26757. characterMakers.push(() => makeCharacter(
  26758. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26759. {
  26760. front: {
  26761. height: math.unit(6 + 4 / 12, "feet"),
  26762. weight: math.unit(320, "lb"),
  26763. name: "Front",
  26764. image: {
  26765. source: "./media/characters/balina-mahigan/front.svg",
  26766. extra: 447 / 428,
  26767. bottom: 18 / 466
  26768. }
  26769. },
  26770. back: {
  26771. height: math.unit(6 + 4 / 12, "feet"),
  26772. weight: math.unit(320, "lb"),
  26773. name: "Back",
  26774. image: {
  26775. source: "./media/characters/balina-mahigan/back.svg",
  26776. extra: 445 / 428,
  26777. bottom: 4.07 / 448
  26778. }
  26779. },
  26780. arm: {
  26781. height: math.unit(1.88, "feet"),
  26782. name: "Arm",
  26783. image: {
  26784. source: "./media/characters/balina-mahigan/arm.svg"
  26785. }
  26786. },
  26787. backPort: {
  26788. height: math.unit(0.685, "feet"),
  26789. name: "Back Port",
  26790. image: {
  26791. source: "./media/characters/balina-mahigan/back-port.svg"
  26792. }
  26793. },
  26794. hoofpaw: {
  26795. height: math.unit(1.41, "feet"),
  26796. name: "Hoofpaw",
  26797. image: {
  26798. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26799. }
  26800. },
  26801. leftHandBack: {
  26802. height: math.unit(0.938, "feet"),
  26803. name: "Left Hand (Back)",
  26804. image: {
  26805. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26806. }
  26807. },
  26808. leftHandFront: {
  26809. height: math.unit(0.938, "feet"),
  26810. name: "Left Hand (Front)",
  26811. image: {
  26812. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26813. }
  26814. },
  26815. rightHandBack: {
  26816. height: math.unit(0.95, "feet"),
  26817. name: "Right Hand (Back)",
  26818. image: {
  26819. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26820. }
  26821. },
  26822. rightHandFront: {
  26823. height: math.unit(0.95, "feet"),
  26824. name: "Right Hand (Front)",
  26825. image: {
  26826. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Normal",
  26833. height: math.unit(6 + 4 / 12, "feet"),
  26834. default: true
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26840. {
  26841. front: {
  26842. height: math.unit(6, "feet"),
  26843. weight: math.unit(320, "lb"),
  26844. name: "Front",
  26845. image: {
  26846. source: "./media/characters/balina-mejeri/front.svg",
  26847. extra: 517 / 488,
  26848. bottom: 44.2 / 561
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(6 + 4 / 12, "feet")
  26856. },
  26857. {
  26858. name: "Business",
  26859. height: math.unit(155, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26866. {
  26867. kneeling: {
  26868. height: math.unit(6 + 4 / 12, "feet"),
  26869. weight: math.unit(300 * 20, "lb"),
  26870. name: "Kneeling",
  26871. image: {
  26872. source: "./media/characters/balbarian/kneeling.svg",
  26873. extra: 922 / 862,
  26874. bottom: 42.4 / 965
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(6 + 4 / 12, "feet")
  26882. },
  26883. {
  26884. name: "Treasured",
  26885. height: math.unit(18 + 9 / 12, "feet"),
  26886. default: true
  26887. },
  26888. {
  26889. name: "Macro",
  26890. height: math.unit(900, "feet")
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(6 + 4 / 12, "feet"),
  26899. weight: math.unit(325, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/balina-amarini/front.svg",
  26903. extra: 415 / 403,
  26904. bottom: 19 / 433.4
  26905. }
  26906. },
  26907. back: {
  26908. height: math.unit(6 + 4 / 12, "feet"),
  26909. weight: math.unit(325, "lb"),
  26910. name: "Back",
  26911. image: {
  26912. source: "./media/characters/balina-amarini/back.svg",
  26913. extra: 415 / 403,
  26914. bottom: 13.5 / 432
  26915. }
  26916. },
  26917. overdrive: {
  26918. height: math.unit(6 + 4 / 12, "feet"),
  26919. weight: math.unit(400, "lb"),
  26920. name: "Overdrive",
  26921. image: {
  26922. source: "./media/characters/balina-amarini/overdrive.svg",
  26923. extra: 269 / 259,
  26924. bottom: 12 / 282
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Boom",
  26931. height: math.unit(9 + 10 / 12, "feet"),
  26932. default: true
  26933. },
  26934. {
  26935. name: "Macro",
  26936. height: math.unit(280, "feet")
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26942. {
  26943. goddess: {
  26944. height: math.unit(600, "feet"),
  26945. weight: math.unit(2000000, "tons"),
  26946. name: "Goddess",
  26947. image: {
  26948. source: "./media/characters/lady-kubwa/goddess.svg",
  26949. extra: 1240.5 / 1223,
  26950. bottom: 22 / 1263
  26951. }
  26952. },
  26953. goddesser: {
  26954. height: math.unit(900, "feet"),
  26955. weight: math.unit(20000000, "lb"),
  26956. name: "Goddess-er",
  26957. image: {
  26958. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26959. extra: 899 / 888,
  26960. bottom: 12.6 / 912
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Macro",
  26967. height: math.unit(600, "feet"),
  26968. default: true
  26969. },
  26970. {
  26971. name: "Megamacro",
  26972. height: math.unit(250, "miles")
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(7 + 7 / 12, "feet"),
  26981. weight: math.unit(250, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/tala-grovehorn/front.svg",
  26985. extra: 2636 / 2525,
  26986. bottom: 147 / 2781
  26987. }
  26988. },
  26989. back: {
  26990. height: math.unit(7 + 7 / 12, "feet"),
  26991. weight: math.unit(250, "lb"),
  26992. name: "Back",
  26993. image: {
  26994. source: "./media/characters/tala-grovehorn/back.svg",
  26995. extra: 2635 / 2539,
  26996. bottom: 100 / 2732.8
  26997. }
  26998. },
  26999. mouth: {
  27000. height: math.unit(1.15, "feet"),
  27001. name: "Mouth",
  27002. image: {
  27003. source: "./media/characters/tala-grovehorn/mouth.svg"
  27004. }
  27005. },
  27006. dick: {
  27007. height: math.unit(2.36, "feet"),
  27008. name: "Dick",
  27009. image: {
  27010. source: "./media/characters/tala-grovehorn/dick.svg"
  27011. }
  27012. },
  27013. slit: {
  27014. height: math.unit(0.61, "feet"),
  27015. name: "Slit",
  27016. image: {
  27017. source: "./media/characters/tala-grovehorn/slit.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(7 + 7 / 12, "feet"),
  27029. weight: math.unit(225, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/epona/front.svg",
  27033. extra: 2445 / 2290,
  27034. bottom: 251 / 2696
  27035. }
  27036. },
  27037. back: {
  27038. height: math.unit(7 + 7 / 12, "feet"),
  27039. weight: math.unit(225, "lb"),
  27040. name: "Back",
  27041. image: {
  27042. source: "./media/characters/epona/back.svg",
  27043. extra: 2546 / 2408,
  27044. bottom: 44 / 2589
  27045. }
  27046. },
  27047. genitals: {
  27048. height: math.unit(1.5, "feet"),
  27049. name: "Genitals",
  27050. image: {
  27051. source: "./media/characters/epona/genitals.svg"
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(7 + 7 / 12, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(7, "feet"),
  27068. weight: math.unit(518, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/avia-bloodbourn/front.svg",
  27072. extra: 1466 / 1350,
  27073. bottom: 65 / 1527
  27074. }
  27075. },
  27076. },
  27077. [
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(9.35, "feet"),
  27085. weight: math.unit(600, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/amera/front.svg",
  27089. extra: 891 / 818,
  27090. bottom: 30 / 922.7
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(9.35, "feet"),
  27095. weight: math.unit(600, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/amera/back.svg",
  27099. extra: 876 / 824,
  27100. bottom: 6.8 / 884
  27101. }
  27102. },
  27103. dick: {
  27104. height: math.unit(2.14, "feet"),
  27105. name: "Dick",
  27106. image: {
  27107. source: "./media/characters/amera/dick.svg"
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(9.35, "feet"),
  27115. default: true
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27121. {
  27122. kneeling: {
  27123. height: math.unit(3 + 4 / 12, "feet"),
  27124. weight: math.unit(90, "lb"),
  27125. name: "Kneeling",
  27126. image: {
  27127. source: "./media/characters/rosewen/kneeling.svg",
  27128. extra: 1835 / 1571,
  27129. bottom: 27.7 / 1862
  27130. }
  27131. },
  27132. },
  27133. [
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(3 + 4 / 12, "feet"),
  27137. default: true
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(5 + 10 / 12, "feet"),
  27146. weight: math.unit(200, "lb"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/sabah/front.svg",
  27150. extra: 849 / 763,
  27151. bottom: 33.9 / 881
  27152. }
  27153. },
  27154. },
  27155. [
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(5 + 10 / 12, "feet"),
  27159. default: true
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27165. {
  27166. front: {
  27167. height: math.unit(3 + 5 / 12, "feet"),
  27168. weight: math.unit(40, "kg"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/purple-flame/front.svg",
  27172. extra: 1577 / 1412,
  27173. bottom: 97 / 1694
  27174. }
  27175. },
  27176. frontDressed: {
  27177. height: math.unit(3 + 5 / 12, "feet"),
  27178. weight: math.unit(40, "kg"),
  27179. name: "Front (Dressed)",
  27180. image: {
  27181. source: "./media/characters/purple-flame/front-dressed.svg",
  27182. extra: 1577 / 1412,
  27183. bottom: 97 / 1694
  27184. }
  27185. },
  27186. headphones: {
  27187. height: math.unit(0.85, "feet"),
  27188. name: "Headphones",
  27189. image: {
  27190. source: "./media/characters/purple-flame/headphones.svg"
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Really Small",
  27197. height: math.unit(5, "cm")
  27198. },
  27199. {
  27200. name: "Micro",
  27201. height: math.unit(1 + 5 / 12, "feet")
  27202. },
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(3 + 5 / 12, "feet"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Minimacro",
  27210. height: math.unit(125, "feet")
  27211. },
  27212. {
  27213. name: "Macro",
  27214. height: math.unit(0.5, "miles")
  27215. },
  27216. {
  27217. name: "Megamacro",
  27218. height: math.unit(50, "miles")
  27219. },
  27220. {
  27221. name: "Gigantic",
  27222. height: math.unit(750, "miles")
  27223. },
  27224. {
  27225. name: "Planetary",
  27226. height: math.unit(15000, "miles")
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(14, "feet"),
  27235. weight: math.unit(959, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/arsenal/front.svg",
  27239. extra: 2357 / 2157,
  27240. bottom: 93 / 2458
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(14, "feet"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(6, "feet"),
  27257. weight: math.unit(150, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/adira/front.svg",
  27261. extra: 1078 / 1029,
  27262. bottom: 87 / 1166
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Micro",
  27269. height: math.unit(4, "inches"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Macro",
  27274. height: math.unit(50, "feet")
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(16, "feet"),
  27283. weight: math.unit(1000, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/grim/front.svg",
  27287. extra: 622 / 614,
  27288. bottom: 18.1 / 642
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(16, "feet"),
  27293. weight: math.unit(1000, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/grim/back.svg",
  27297. extra: 610.6 / 602,
  27298. bottom: 40.8 / 652
  27299. }
  27300. },
  27301. hunched: {
  27302. height: math.unit(9.75, "feet"),
  27303. weight: math.unit(1000, "lb"),
  27304. name: "Hunched",
  27305. image: {
  27306. source: "./media/characters/grim/hunched.svg",
  27307. extra: 304 / 297,
  27308. bottom: 35.4 / 394
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(16, "feet"),
  27316. default: true
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(2.3, "meters"),
  27325. weight: math.unit(300, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/sinja/front-sfw.svg",
  27329. extra: 1393 / 1294,
  27330. bottom: 70 / 1463
  27331. }
  27332. },
  27333. frontNsfw: {
  27334. height: math.unit(2.3, "meters"),
  27335. weight: math.unit(300, "lb"),
  27336. name: "Front (NSFW)",
  27337. image: {
  27338. source: "./media/characters/sinja/front-nsfw.svg",
  27339. extra: 1393 / 1294,
  27340. bottom: 70 / 1463
  27341. }
  27342. },
  27343. back: {
  27344. height: math.unit(2.3, "meters"),
  27345. weight: math.unit(300, "lb"),
  27346. name: "Back",
  27347. image: {
  27348. source: "./media/characters/sinja/back.svg",
  27349. extra: 1393 / 1294,
  27350. bottom: 70 / 1463
  27351. }
  27352. },
  27353. head: {
  27354. height: math.unit(1.771, "feet"),
  27355. name: "Head",
  27356. image: {
  27357. source: "./media/characters/sinja/head.svg"
  27358. }
  27359. },
  27360. slit: {
  27361. height: math.unit(0.8, "feet"),
  27362. name: "Slit",
  27363. image: {
  27364. source: "./media/characters/sinja/slit.svg"
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(2.3, "meters")
  27372. },
  27373. {
  27374. name: "Macro",
  27375. height: math.unit(91, "meters"),
  27376. default: true
  27377. },
  27378. {
  27379. name: "Megamacro",
  27380. height: math.unit(91440, "meters")
  27381. },
  27382. {
  27383. name: "Gigamacro",
  27384. height: math.unit(60960000, "meters")
  27385. },
  27386. {
  27387. name: "Teramacro",
  27388. height: math.unit(9144000000, "meters")
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(1.7, "meters"),
  27397. weight: math.unit(130, "lb"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/kyu/front.svg",
  27401. extra: 415 / 395,
  27402. bottom: 5 / 420
  27403. }
  27404. },
  27405. head: {
  27406. height: math.unit(1.75, "feet"),
  27407. name: "Head",
  27408. image: {
  27409. source: "./media/characters/kyu/head.svg"
  27410. }
  27411. },
  27412. foot: {
  27413. height: math.unit(0.81, "feet"),
  27414. name: "Foot",
  27415. image: {
  27416. source: "./media/characters/kyu/foot.svg"
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(1.7, "meters")
  27424. },
  27425. {
  27426. name: "Macro",
  27427. height: math.unit(131, "feet"),
  27428. default: true
  27429. },
  27430. {
  27431. name: "Megamacro",
  27432. height: math.unit(91440, "meters")
  27433. },
  27434. {
  27435. name: "Gigamacro",
  27436. height: math.unit(60960000, "meters")
  27437. },
  27438. {
  27439. name: "Teramacro",
  27440. height: math.unit(9144000000, "meters")
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(7 + 1 / 12, "feet"),
  27449. weight: math.unit(250, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/joey/front.svg",
  27453. extra: 1791 / 1537,
  27454. bottom: 28 / 1816
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Micro",
  27461. height: math.unit(3, "inches")
  27462. },
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(7 + 1 / 12, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(165, "cm"),
  27475. weight: math.unit(140, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/sam-evans/front.svg",
  27479. extra: 3417 / 3230,
  27480. bottom: 41.3 / 3417
  27481. }
  27482. },
  27483. frontSixTails: {
  27484. height: math.unit(165, "cm"),
  27485. weight: math.unit(140, "lb"),
  27486. name: "Front-six-tails",
  27487. image: {
  27488. source: "./media/characters/sam-evans/front-six-tails.svg",
  27489. extra: 3417 / 3230,
  27490. bottom: 41.3 / 3417
  27491. }
  27492. },
  27493. back: {
  27494. height: math.unit(165, "cm"),
  27495. weight: math.unit(140, "lb"),
  27496. name: "Back",
  27497. image: {
  27498. source: "./media/characters/sam-evans/back.svg",
  27499. extra: 3227 / 3032,
  27500. bottom: 6.8 / 3234
  27501. }
  27502. },
  27503. face: {
  27504. height: math.unit(0.68, "feet"),
  27505. name: "Face",
  27506. image: {
  27507. source: "./media/characters/sam-evans/face.svg"
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(165, "cm"),
  27515. default: true
  27516. },
  27517. {
  27518. name: "Macro",
  27519. height: math.unit(100, "meters")
  27520. },
  27521. {
  27522. name: "Macro+",
  27523. height: math.unit(800, "meters")
  27524. },
  27525. {
  27526. name: "Macro++",
  27527. height: math.unit(3, "km")
  27528. },
  27529. {
  27530. name: "Macro+++",
  27531. height: math.unit(30, "km")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(10, "feet"),
  27540. weight: math.unit(750, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/juliet-a/front.svg",
  27544. extra: 1766 / 1720,
  27545. bottom: 43 / 1809
  27546. }
  27547. },
  27548. back: {
  27549. height: math.unit(10, "feet"),
  27550. weight: math.unit(750, "lb"),
  27551. name: "Back",
  27552. image: {
  27553. source: "./media/characters/juliet-a/back.svg",
  27554. extra: 1781 / 1734,
  27555. bottom: 35 / 1810,
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Normal",
  27562. height: math.unit(10, "feet"),
  27563. default: true
  27564. },
  27565. {
  27566. name: "Dragon Form",
  27567. height: math.unit(250, "feet")
  27568. },
  27569. {
  27570. name: "Macro",
  27571. height: math.unit(1000, "feet")
  27572. },
  27573. {
  27574. name: "Megamacro",
  27575. height: math.unit(10000, "feet")
  27576. }
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27581. {
  27582. regular: {
  27583. height: math.unit(7 + 3 / 12, "feet"),
  27584. weight: math.unit(260, "lb"),
  27585. name: "Regular",
  27586. image: {
  27587. source: "./media/characters/wild/regular.svg",
  27588. extra: 97.45 / 92,
  27589. bottom: 6.8 / 104.3
  27590. }
  27591. },
  27592. biggums: {
  27593. height: math.unit(8 + 6 / 12, "feet"),
  27594. weight: math.unit(425, "lb"),
  27595. name: "Biggums",
  27596. image: {
  27597. source: "./media/characters/wild/biggums.svg",
  27598. extra: 97.45 / 92,
  27599. bottom: 7.5 / 132.34
  27600. }
  27601. },
  27602. mawRegular: {
  27603. height: math.unit(1.24, "feet"),
  27604. name: "Maw (Regular)",
  27605. image: {
  27606. source: "./media/characters/wild/maw.svg"
  27607. }
  27608. },
  27609. mawBiggums: {
  27610. height: math.unit(1.47, "feet"),
  27611. name: "Maw (Biggums)",
  27612. image: {
  27613. source: "./media/characters/wild/maw.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(7 + 3 / 12, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27627. {
  27628. front: {
  27629. height: math.unit(2.5, "meters"),
  27630. weight: math.unit(200, "kg"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/vidar/front.svg",
  27634. extra: 2994 / 2795,
  27635. bottom: 56 / 3061
  27636. }
  27637. },
  27638. back: {
  27639. height: math.unit(2.5, "meters"),
  27640. weight: math.unit(200, "kg"),
  27641. name: "Back",
  27642. image: {
  27643. source: "./media/characters/vidar/back.svg",
  27644. extra: 3131 / 2928,
  27645. bottom: 13.5 / 3141.5
  27646. }
  27647. },
  27648. feral: {
  27649. height: math.unit(2.5, "meters"),
  27650. weight: math.unit(2000, "kg"),
  27651. name: "Feral",
  27652. image: {
  27653. source: "./media/characters/vidar/feral.svg",
  27654. extra: 2790 / 1765,
  27655. bottom: 6 / 2796
  27656. }
  27657. },
  27658. },
  27659. [
  27660. {
  27661. name: "Normal",
  27662. height: math.unit(2.5, "meters"),
  27663. default: true
  27664. },
  27665. {
  27666. name: "Macro",
  27667. height: math.unit(100, "meters")
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(5 + 9 / 12, "feet"),
  27676. weight: math.unit(120, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/ash/front.svg",
  27680. extra: 2189 / 1961,
  27681. bottom: 5.2 / 2194
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(5 + 9 / 12, "feet"),
  27689. default: true
  27690. },
  27691. ]
  27692. ))
  27693. characterMakers.push(() => makeCharacter(
  27694. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27695. {
  27696. front: {
  27697. height: math.unit(9, "feet"),
  27698. weight: math.unit(10000, "lb"),
  27699. name: "Front",
  27700. image: {
  27701. source: "./media/characters/gygabite/front.svg",
  27702. bottom: 31.7 / 537.8,
  27703. extra: 505 / 370
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(9, "feet"),
  27711. default: true
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27717. {
  27718. front: {
  27719. height: math.unit(12, "feet"),
  27720. weight: math.unit(35000, "lb"),
  27721. name: "Front",
  27722. image: {
  27723. source: "./media/characters/p0tat0/front.svg",
  27724. extra: 1065 / 921,
  27725. bottom: 55.7 / 1121.25
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(12, "feet"),
  27733. default: true
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27739. {
  27740. side: {
  27741. height: math.unit(6.5, "feet"),
  27742. weight: math.unit(800, "lb"),
  27743. name: "Side",
  27744. image: {
  27745. source: "./media/characters/dusk/side.svg",
  27746. extra: 615 / 373,
  27747. bottom: 53 / 664
  27748. }
  27749. },
  27750. sitting: {
  27751. height: math.unit(7, "feet"),
  27752. weight: math.unit(800, "lb"),
  27753. name: "Sitting",
  27754. image: {
  27755. source: "./media/characters/dusk/sitting.svg",
  27756. extra: 753 / 425,
  27757. bottom: 33 / 774
  27758. }
  27759. },
  27760. head: {
  27761. height: math.unit(6.1, "feet"),
  27762. name: "Head",
  27763. image: {
  27764. source: "./media/characters/dusk/head.svg"
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(7, "feet"),
  27772. default: true
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(15, "feet"),
  27781. weight: math.unit(7000, "lb"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/jay-direwolf/front.svg",
  27785. extra: 1810 / 1732,
  27786. bottom: 66 / 1892
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(15, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27800. {
  27801. front: {
  27802. height: math.unit(4 + 9 / 12, "feet"),
  27803. weight: math.unit(130, "lb"),
  27804. name: "Front",
  27805. image: {
  27806. source: "./media/characters/anchovie/front.svg",
  27807. extra: 382 / 350,
  27808. bottom: 25 / 409
  27809. }
  27810. },
  27811. back: {
  27812. height: math.unit(4 + 9 / 12, "feet"),
  27813. weight: math.unit(130, "lb"),
  27814. name: "Back",
  27815. image: {
  27816. source: "./media/characters/anchovie/back.svg",
  27817. extra: 385 / 352,
  27818. bottom: 16.6 / 402
  27819. }
  27820. },
  27821. frontDressed: {
  27822. height: math.unit(4 + 9 / 12, "feet"),
  27823. weight: math.unit(130, "lb"),
  27824. name: "Front (Dressed)",
  27825. image: {
  27826. source: "./media/characters/anchovie/front-dressed.svg",
  27827. extra: 382 / 350,
  27828. bottom: 25 / 409
  27829. }
  27830. },
  27831. backDressed: {
  27832. height: math.unit(4 + 9 / 12, "feet"),
  27833. weight: math.unit(130, "lb"),
  27834. name: "Back (Dressed)",
  27835. image: {
  27836. source: "./media/characters/anchovie/back-dressed.svg",
  27837. extra: 385 / 352,
  27838. bottom: 16.6 / 402
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Micro",
  27845. height: math.unit(6.4, "inches")
  27846. },
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(4 + 9 / 12, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(2, "meters"),
  27859. weight: math.unit(180, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/acidrenamon/front.svg",
  27863. extra: 987 / 890,
  27864. bottom: 22.8 / 1009
  27865. }
  27866. },
  27867. back: {
  27868. height: math.unit(2, "meters"),
  27869. weight: math.unit(180, "lb"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/acidrenamon/back.svg",
  27873. extra: 983 / 891,
  27874. bottom: 8.4 / 992
  27875. }
  27876. },
  27877. head: {
  27878. height: math.unit(1.92, "feet"),
  27879. name: "Head",
  27880. image: {
  27881. source: "./media/characters/acidrenamon/head.svg"
  27882. }
  27883. },
  27884. rump: {
  27885. height: math.unit(1.72, "feet"),
  27886. name: "Rump",
  27887. image: {
  27888. source: "./media/characters/acidrenamon/rump.svg"
  27889. }
  27890. },
  27891. tail: {
  27892. height: math.unit(4.2, "feet"),
  27893. name: "Tail",
  27894. image: {
  27895. source: "./media/characters/acidrenamon/tail.svg"
  27896. }
  27897. },
  27898. },
  27899. [
  27900. {
  27901. name: "Normal",
  27902. height: math.unit(2, "meters"),
  27903. default: true
  27904. },
  27905. {
  27906. name: "Minimacro",
  27907. height: math.unit(7, "meters")
  27908. },
  27909. {
  27910. name: "Macro",
  27911. height: math.unit(200, "meters")
  27912. },
  27913. {
  27914. name: "Gigamacro",
  27915. height: math.unit(0.2, "earths")
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(152, "feet"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/kenzie-lee/front.svg",
  27927. extra: 1869/1774,
  27928. bottom: 128/1997
  27929. }
  27930. },
  27931. side: {
  27932. height: math.unit(86, "feet"),
  27933. name: "Side",
  27934. image: {
  27935. source: "./media/characters/kenzie-lee/side.svg",
  27936. extra: 930/815,
  27937. bottom: 177/1107
  27938. }
  27939. },
  27940. paw: {
  27941. height: math.unit(15, "feet"),
  27942. name: "Paw",
  27943. image: {
  27944. source: "./media/characters/kenzie-lee/paw.svg"
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Micro",
  27951. height: math.unit(1.5, "inches")
  27952. },
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(152, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Megamacro",
  27960. height: math.unit(7, "miles")
  27961. },
  27962. {
  27963. name: "Gigamacro",
  27964. height: math.unit(8000, "miles")
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27970. {
  27971. side: {
  27972. height: math.unit(6, "feet"),
  27973. weight: math.unit(150, "lb"),
  27974. name: "Side",
  27975. image: {
  27976. source: "./media/characters/withers/side.svg",
  27977. extra: 1830 / 1728,
  27978. bottom: 96 / 1927
  27979. }
  27980. },
  27981. front: {
  27982. height: math.unit(6, "feet"),
  27983. weight: math.unit(150, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/withers/front.svg",
  27987. extra: 1514 / 1438,
  27988. bottom: 118 / 1632
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Macro",
  27995. height: math.unit(168, "feet"),
  27996. default: true
  27997. },
  27998. {
  27999. name: "Megamacro",
  28000. height: math.unit(15, "miles")
  28001. }
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28006. {
  28007. front: {
  28008. height: math.unit(6 + 7 / 12, "feet"),
  28009. weight: math.unit(250, "lb"),
  28010. name: "Front",
  28011. image: {
  28012. source: "./media/characters/nemoskii/front.svg",
  28013. extra: 2270 / 1734,
  28014. bottom: 86 / 2354
  28015. }
  28016. },
  28017. back: {
  28018. height: math.unit(6 + 7 / 12, "feet"),
  28019. weight: math.unit(250, "lb"),
  28020. name: "Back",
  28021. image: {
  28022. source: "./media/characters/nemoskii/back.svg",
  28023. extra: 1845 / 1788,
  28024. bottom: 10.5 / 1852
  28025. }
  28026. },
  28027. head: {
  28028. height: math.unit(1.31, "feet"),
  28029. name: "Head",
  28030. image: {
  28031. source: "./media/characters/nemoskii/head.svg"
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Micro",
  28038. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28039. },
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(6 + 7 / 12, "feet"),
  28043. default: true
  28044. },
  28045. {
  28046. name: "Macro",
  28047. height: math.unit((6 + 7 / 12) * 150, "feet")
  28048. },
  28049. {
  28050. name: "Macro+",
  28051. height: math.unit((6 + 7 / 12) * 500, "feet")
  28052. },
  28053. {
  28054. name: "Megamacro",
  28055. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(1, "mile"),
  28064. weight: math.unit(265261.9, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/shui/front.svg",
  28068. extra: 1633 / 1564,
  28069. bottom: 91.5 / 1726
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Macro",
  28076. height: math.unit(1, "mile"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28083. {
  28084. front: {
  28085. height: math.unit(12 + 6 / 12, "feet"),
  28086. weight: math.unit(1342, "lb"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/arokh-takakura/front.svg",
  28090. extra: 1089 / 1043,
  28091. bottom: 77.4 / 1176.7
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(12 + 6 / 12, "feet"),
  28096. weight: math.unit(1342, "lb"),
  28097. name: "Back",
  28098. image: {
  28099. source: "./media/characters/arokh-takakura/back.svg",
  28100. extra: 1046 / 1019,
  28101. bottom: 102 / 1150
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Big",
  28108. height: math.unit(12 + 6 / 12, "feet"),
  28109. default: true
  28110. },
  28111. ]
  28112. ))
  28113. characterMakers.push(() => makeCharacter(
  28114. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28115. {
  28116. front: {
  28117. height: math.unit(5 + 6 / 12, "feet"),
  28118. weight: math.unit(150, "lb"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/theo/front.svg",
  28122. extra: 1184 / 1131,
  28123. bottom: 7.4 / 1191
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Micro",
  28130. height: math.unit(5, "inches")
  28131. },
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(5 + 6 / 12, "feet"),
  28135. default: true
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(5 + 9 / 12, "feet"),
  28144. weight: math.unit(130, "lb"),
  28145. name: "Front",
  28146. image: {
  28147. source: "./media/characters/cecelia-swift/front.svg",
  28148. extra: 502 / 484,
  28149. bottom: 23 / 523
  28150. }
  28151. },
  28152. back: {
  28153. height: math.unit(5 + 9 / 12, "feet"),
  28154. weight: math.unit(130, "lb"),
  28155. name: "Back",
  28156. image: {
  28157. source: "./media/characters/cecelia-swift/back.svg",
  28158. extra: 499 / 485,
  28159. bottom: 12 / 511
  28160. }
  28161. },
  28162. head: {
  28163. height: math.unit(0.90, "feet"),
  28164. name: "Head",
  28165. image: {
  28166. source: "./media/characters/cecelia-swift/head.svg"
  28167. }
  28168. },
  28169. rump: {
  28170. height: math.unit(1.75, "feet"),
  28171. name: "Rump",
  28172. image: {
  28173. source: "./media/characters/cecelia-swift/rump.svg"
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(5 + 9 / 12, "feet"),
  28181. default: true
  28182. },
  28183. {
  28184. name: "Big",
  28185. height: math.unit(50, "feet")
  28186. },
  28187. {
  28188. name: "Macro",
  28189. height: math.unit(100, "feet")
  28190. },
  28191. {
  28192. name: "Macro+",
  28193. height: math.unit(500, "feet")
  28194. },
  28195. {
  28196. name: "Macro++",
  28197. height: math.unit(1000, "feet")
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(6, "feet"),
  28206. weight: math.unit(150, "lb"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/kaunan/front.svg",
  28210. extra: 2890 / 2523,
  28211. bottom: 49 / 2939
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Macro",
  28218. height: math.unit(150, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(175, "cm"),
  28228. weight: math.unit(60, "kg"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/fei/front.svg",
  28232. extra: 1873/1723,
  28233. bottom: 53/1926
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Mortal",
  28240. height: math.unit(175, "cm")
  28241. },
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(3500, "m"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Stroll",
  28249. height: math.unit(17.5, "km")
  28250. },
  28251. {
  28252. name: "Showoff",
  28253. height: math.unit(175, "km")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(7, "feet"),
  28262. weight: math.unit(1000, "kg"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/edrax/front.svg",
  28266. extra: 2838 / 2550,
  28267. bottom: 130 / 2968
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Small",
  28274. height: math.unit(7, "feet")
  28275. },
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(1500, "meters")
  28279. },
  28280. {
  28281. name: "Mega",
  28282. height: math.unit(12000000, "km"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Megamacro",
  28287. height: math.unit(10600000, "lightyears")
  28288. },
  28289. {
  28290. name: "Hypermacro",
  28291. height: math.unit(256, "yottameters")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(10, "feet"),
  28300. weight: math.unit(750, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/clove/front.svg",
  28304. extra: 1918/1751,
  28305. bottom: 52/1970
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(10, "feet"),
  28310. weight: math.unit(750, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/clove/back.svg",
  28314. extra: 1912/1747,
  28315. bottom: 50/1962
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(10, "feet"),
  28323. default: true
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28329. {
  28330. front: {
  28331. height: math.unit(4, "feet"),
  28332. weight: math.unit(50, "lb"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/alex-rabbit/front.svg",
  28336. extra: 507 / 458,
  28337. bottom: 18.5 / 527
  28338. }
  28339. },
  28340. back: {
  28341. height: math.unit(4, "feet"),
  28342. weight: math.unit(50, "lb"),
  28343. name: "Back",
  28344. image: {
  28345. source: "./media/characters/alex-rabbit/back.svg",
  28346. extra: 502 / 460,
  28347. bottom: 18.9 / 521
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(4, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(1 + 3 / 12, "feet"),
  28364. weight: math.unit(80, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/zander-rose/front.svg",
  28368. extra: 916 / 797,
  28369. bottom: 17 / 933
  28370. }
  28371. },
  28372. back: {
  28373. height: math.unit(1 + 3 / 12, "feet"),
  28374. weight: math.unit(80, "lb"),
  28375. name: "Back",
  28376. image: {
  28377. source: "./media/characters/zander-rose/back.svg",
  28378. extra: 903 / 779,
  28379. bottom: 31 / 934
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(1 + 3 / 12, "feet"),
  28387. default: true
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28393. {
  28394. anthro: {
  28395. height: math.unit(6, "feet"),
  28396. weight: math.unit(150, "lb"),
  28397. name: "Anthro",
  28398. image: {
  28399. source: "./media/characters/razz/anthro.svg",
  28400. extra: 1437 / 1343,
  28401. bottom: 48 / 1485
  28402. }
  28403. },
  28404. feral: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(150, "lb"),
  28407. name: "Feral",
  28408. image: {
  28409. source: "./media/characters/razz/feral.svg",
  28410. extra: 2569 / 1385,
  28411. bottom: 95 / 2664
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28425. {
  28426. front: {
  28427. height: math.unit(9 + 4 / 12, "feet"),
  28428. weight: math.unit(500, "lb"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/morrigan/front.svg",
  28432. extra: 2707 / 2579,
  28433. bottom: 156 / 2863
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(9 + 4 / 12, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(5, "stories"),
  28450. weight: math.unit(4000, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/jenene/front.svg",
  28454. extra: 1780 / 1710,
  28455. bottom: 57 / 1837
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(5, "stories"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28469. {
  28470. taurSfw: {
  28471. height: math.unit(10, "meters"),
  28472. weight: math.unit(17500, "kg"),
  28473. name: "Taur",
  28474. image: {
  28475. source: "./media/characters/faey/taur-sfw.svg",
  28476. extra: 1200 / 968,
  28477. bottom: 41 / 1241
  28478. }
  28479. },
  28480. chestmaw: {
  28481. height: math.unit(2.01, "meters"),
  28482. name: "Chestmaw",
  28483. image: {
  28484. source: "./media/characters/faey/chestmaw.svg"
  28485. }
  28486. },
  28487. foot: {
  28488. height: math.unit(2.43, "meters"),
  28489. name: "Foot",
  28490. image: {
  28491. source: "./media/characters/faey/foot.svg"
  28492. }
  28493. },
  28494. jaws: {
  28495. height: math.unit(1.66, "meters"),
  28496. name: "Jaws",
  28497. image: {
  28498. source: "./media/characters/faey/jaws.svg"
  28499. }
  28500. },
  28501. tongues: {
  28502. height: math.unit(2.01, "meters"),
  28503. name: "Tongues",
  28504. image: {
  28505. source: "./media/characters/faey/tongues.svg"
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Small",
  28512. height: math.unit(10, "meters"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Big",
  28517. height: math.unit(500000, "km")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(7, "feet"),
  28526. weight: math.unit(275, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/roku/front.svg",
  28530. extra: 903 / 878,
  28531. bottom: 37 / 940
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(7, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Macro",
  28543. height: math.unit(500, "feet")
  28544. },
  28545. {
  28546. name: "Megamacro",
  28547. height: math.unit(200, "miles")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(6 + 2 / 12, "feet"),
  28556. weight: math.unit(150, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/lira/front.svg",
  28560. extra: 1727 / 1605,
  28561. bottom: 26 / 1753
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(6 + 2 / 12, "feet"),
  28566. weight: math.unit(150, "lb"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/lira/back.svg",
  28570. extra: 1713/1621,
  28571. bottom: 20/1733
  28572. }
  28573. },
  28574. hand: {
  28575. height: math.unit(0.75, "feet"),
  28576. name: "Hand",
  28577. image: {
  28578. source: "./media/characters/lira/hand.svg"
  28579. }
  28580. },
  28581. maw: {
  28582. height: math.unit(0.65, "feet"),
  28583. name: "Maw",
  28584. image: {
  28585. source: "./media/characters/lira/maw.svg"
  28586. }
  28587. },
  28588. pawDigi: {
  28589. height: math.unit(1.6, "feet"),
  28590. name: "Paw Digi",
  28591. image: {
  28592. source: "./media/characters/lira/paw-digi.svg"
  28593. }
  28594. },
  28595. pawPlanti: {
  28596. height: math.unit(1.4, "feet"),
  28597. name: "Paw Planti",
  28598. image: {
  28599. source: "./media/characters/lira/paw-planti.svg"
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(6 + 2 / 12, "feet"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(100, "feet")
  28612. },
  28613. {
  28614. name: "Macro²",
  28615. height: math.unit(1600, "feet")
  28616. },
  28617. {
  28618. name: "Planetary",
  28619. height: math.unit(20, "earths")
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(6, "feet"),
  28628. weight: math.unit(150, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/hadjet/front.svg",
  28632. extra: 1480 / 1346,
  28633. bottom: 26 / 1506
  28634. }
  28635. },
  28636. frontNsfw: {
  28637. height: math.unit(6, "feet"),
  28638. weight: math.unit(150, "lb"),
  28639. name: "Front (NSFW)",
  28640. image: {
  28641. source: "./media/characters/hadjet/front-nsfw.svg",
  28642. extra: 1440 / 1358,
  28643. bottom: 52 / 1492
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Macro",
  28650. height: math.unit(10, "stories"),
  28651. default: true
  28652. },
  28653. {
  28654. name: "Megamacro",
  28655. height: math.unit(1.5, "miles")
  28656. },
  28657. {
  28658. name: "Megamacro+",
  28659. height: math.unit(5, "miles")
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28665. {
  28666. side: {
  28667. height: math.unit(106, "feet"),
  28668. weight: math.unit(500, "tonnes"),
  28669. name: "Side",
  28670. image: {
  28671. source: "./media/characters/kodran/side.svg",
  28672. extra: 553 / 480,
  28673. bottom: 33 / 586
  28674. }
  28675. },
  28676. front: {
  28677. height: math.unit(132, "feet"),
  28678. weight: math.unit(500, "tonnes"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/kodran/front.svg",
  28682. extra: 667 / 643,
  28683. bottom: 42 / 709
  28684. }
  28685. },
  28686. flying: {
  28687. height: math.unit(350, "feet"),
  28688. weight: math.unit(500, "tonnes"),
  28689. name: "Flying",
  28690. image: {
  28691. source: "./media/characters/kodran/flying.svg"
  28692. }
  28693. },
  28694. foot: {
  28695. height: math.unit(33, "feet"),
  28696. name: "Foot",
  28697. image: {
  28698. source: "./media/characters/kodran/foot.svg"
  28699. }
  28700. },
  28701. footFront: {
  28702. height: math.unit(19, "feet"),
  28703. name: "Foot (Front)",
  28704. image: {
  28705. source: "./media/characters/kodran/foot-front.svg",
  28706. extra: 261 / 261,
  28707. bottom: 91 / 352
  28708. }
  28709. },
  28710. headFront: {
  28711. height: math.unit(53, "feet"),
  28712. name: "Head (Front)",
  28713. image: {
  28714. source: "./media/characters/kodran/head-front.svg"
  28715. }
  28716. },
  28717. headSide: {
  28718. height: math.unit(65, "feet"),
  28719. name: "Head (Side)",
  28720. image: {
  28721. source: "./media/characters/kodran/head-side.svg"
  28722. }
  28723. },
  28724. throat: {
  28725. height: math.unit(79, "feet"),
  28726. name: "Throat",
  28727. image: {
  28728. source: "./media/characters/kodran/throat.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Large",
  28735. height: math.unit(106, "feet"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28742. {
  28743. side: {
  28744. height: math.unit(11, "feet"),
  28745. weight: math.unit(150, "lb"),
  28746. name: "Side",
  28747. image: {
  28748. source: "./media/characters/pyxaron/side.svg",
  28749. extra: 305 / 195,
  28750. bottom: 17 / 322
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(11, "feet"),
  28758. default: true
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(6, "feet"),
  28767. weight: math.unit(150, "lb"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/meep/front.svg",
  28771. extra: 88 / 80,
  28772. bottom: 6 / 94
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Fun Sized",
  28779. height: math.unit(2, "inches"),
  28780. default: true
  28781. },
  28782. {
  28783. name: "Friend Sized",
  28784. height: math.unit(8, "inches")
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(15, "feet"),
  28793. weight: math.unit(2500, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/holly-rabbit/front.svg",
  28797. extra: 1433 / 1233,
  28798. bottom: 125 / 1558
  28799. }
  28800. },
  28801. dick: {
  28802. height: math.unit(4.6, "feet"),
  28803. name: "Dick",
  28804. image: {
  28805. source: "./media/characters/holly-rabbit/dick.svg"
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(15, "feet"),
  28813. default: true
  28814. },
  28815. {
  28816. name: "Macro",
  28817. height: math.unit(250, "feet")
  28818. },
  28819. {
  28820. name: "Macro+",
  28821. height: math.unit(2500, "feet")
  28822. },
  28823. ]
  28824. ))
  28825. characterMakers.push(() => makeCharacter(
  28826. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28827. {
  28828. front: {
  28829. height: math.unit(3.02, "meters"),
  28830. weight: math.unit(500, "kg"),
  28831. name: "Front",
  28832. image: {
  28833. source: "./media/characters/drena/front.svg",
  28834. extra: 282 / 243,
  28835. bottom: 8 / 290
  28836. }
  28837. },
  28838. side: {
  28839. height: math.unit(3.02, "meters"),
  28840. weight: math.unit(500, "kg"),
  28841. name: "Side",
  28842. image: {
  28843. source: "./media/characters/drena/side.svg",
  28844. extra: 280 / 245,
  28845. bottom: 10 / 290
  28846. }
  28847. },
  28848. back: {
  28849. height: math.unit(3.02, "meters"),
  28850. weight: math.unit(500, "kg"),
  28851. name: "Back",
  28852. image: {
  28853. source: "./media/characters/drena/back.svg",
  28854. extra: 278 / 243,
  28855. bottom: 2 / 280
  28856. }
  28857. },
  28858. foot: {
  28859. height: math.unit(0.75, "meters"),
  28860. name: "Foot",
  28861. image: {
  28862. source: "./media/characters/drena/foot.svg"
  28863. }
  28864. },
  28865. maw: {
  28866. height: math.unit(0.82, "meters"),
  28867. name: "Maw",
  28868. image: {
  28869. source: "./media/characters/drena/maw.svg"
  28870. }
  28871. },
  28872. rump: {
  28873. height: math.unit(0.93, "meters"),
  28874. name: "Rump",
  28875. image: {
  28876. source: "./media/characters/drena/rump.svg"
  28877. }
  28878. },
  28879. },
  28880. [
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(3.02, "meters"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28890. {
  28891. front: {
  28892. height: math.unit(6 + 4 / 12, "feet"),
  28893. weight: math.unit(250, "lb"),
  28894. name: "Front",
  28895. image: {
  28896. source: "./media/characters/remmyzilla/front.svg",
  28897. extra: 4033 / 3588,
  28898. bottom: 123 / 4156
  28899. }
  28900. },
  28901. back: {
  28902. height: math.unit(6 + 4 / 12, "feet"),
  28903. weight: math.unit(250, "lb"),
  28904. name: "Back",
  28905. image: {
  28906. source: "./media/characters/remmyzilla/back.svg",
  28907. extra: 2687 / 2555,
  28908. bottom: 48 / 2735
  28909. }
  28910. },
  28911. paw: {
  28912. height: math.unit(1.73, "feet"),
  28913. name: "Paw",
  28914. image: {
  28915. source: "./media/characters/remmyzilla/paw.svg"
  28916. }
  28917. },
  28918. maw: {
  28919. height: math.unit(1.73, "feet"),
  28920. name: "Maw",
  28921. image: {
  28922. source: "./media/characters/remmyzilla/maw.svg"
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Normal",
  28929. height: math.unit(6 + 4 / 12, "feet")
  28930. },
  28931. {
  28932. name: "Minimacro",
  28933. height: math.unit(12 + 8 / 12, "feet")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(640, "feet"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Megamacro",
  28942. height: math.unit(6400, "feet")
  28943. },
  28944. {
  28945. name: "Gigamacro",
  28946. height: math.unit(64000, "miles")
  28947. },
  28948. ]
  28949. ))
  28950. characterMakers.push(() => makeCharacter(
  28951. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28952. {
  28953. front: {
  28954. height: math.unit(2.5, "meters"),
  28955. weight: math.unit(300, "lb"),
  28956. name: "Front",
  28957. image: {
  28958. source: "./media/characters/lawrence/front.svg",
  28959. extra: 357 / 335,
  28960. bottom: 30 / 387
  28961. }
  28962. },
  28963. back: {
  28964. height: math.unit(2.5, "meters"),
  28965. weight: math.unit(300, "lb"),
  28966. name: "Back",
  28967. image: {
  28968. source: "./media/characters/lawrence/back.svg",
  28969. extra: 357 / 338,
  28970. bottom: 16 / 373
  28971. }
  28972. },
  28973. head: {
  28974. height: math.unit(0.9, "meter"),
  28975. name: "Head",
  28976. image: {
  28977. source: "./media/characters/lawrence/head.svg"
  28978. }
  28979. },
  28980. maw: {
  28981. height: math.unit(0.7, "meter"),
  28982. name: "Maw",
  28983. image: {
  28984. source: "./media/characters/lawrence/maw.svg"
  28985. }
  28986. },
  28987. footBottom: {
  28988. height: math.unit(0.5, "meter"),
  28989. name: "Foot (Bottom)",
  28990. image: {
  28991. source: "./media/characters/lawrence/foot-bottom.svg"
  28992. }
  28993. },
  28994. footTop: {
  28995. height: math.unit(0.5, "meter"),
  28996. name: "Foot (Top)",
  28997. image: {
  28998. source: "./media/characters/lawrence/foot-top.svg"
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(2.5, "meters"),
  29006. default: true
  29007. },
  29008. {
  29009. name: "Macro",
  29010. height: math.unit(95, "meters")
  29011. },
  29012. {
  29013. name: "Megamacro",
  29014. height: math.unit(150, "km")
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29020. {
  29021. front: {
  29022. height: math.unit(4.2, "meters"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/sydney/front.svg",
  29026. extra: 1323 / 1277,
  29027. bottom: 111 / 1434
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(4.2, "meters"),
  29035. default: true
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29041. {
  29042. back: {
  29043. height: math.unit(201, "feet"),
  29044. name: "Back",
  29045. image: {
  29046. source: "./media/characters/jessica/back.svg",
  29047. extra: 273 / 259,
  29048. bottom: 7 / 280
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Normal",
  29055. height: math.unit(201, "feet"),
  29056. default: true
  29057. },
  29058. {
  29059. name: "Megamacro",
  29060. height: math.unit(8, "miles")
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29066. {
  29067. side: {
  29068. height: math.unit(5.6, "m"),
  29069. weight: math.unit(8000, "kg"),
  29070. name: "Side",
  29071. image: {
  29072. source: "./media/characters/victoria/side.svg",
  29073. extra: 1542/1229,
  29074. bottom: 124/1666
  29075. }
  29076. },
  29077. maw: {
  29078. height: math.unit(7.14, "feet"),
  29079. name: "Maw",
  29080. image: {
  29081. source: "./media/characters/victoria/maw.svg"
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(5.6, "m"),
  29089. default: true
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29095. {
  29096. front: {
  29097. height: math.unit(5 + 6 / 12, "feet"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/cat/front.svg",
  29101. extra: 1449/1295,
  29102. bottom: 34/1483
  29103. },
  29104. form: "cat",
  29105. default: true
  29106. },
  29107. back: {
  29108. height: math.unit(5 + 6 / 12, "feet"),
  29109. name: "Back",
  29110. image: {
  29111. source: "./media/characters/cat/back.svg",
  29112. extra: 1466/1301,
  29113. bottom: 19/1485
  29114. },
  29115. form: "cat"
  29116. },
  29117. taur: {
  29118. height: math.unit(7, "feet"),
  29119. name: "Taur",
  29120. image: {
  29121. source: "./media/characters/cat/taur.svg",
  29122. extra: 1389/1233,
  29123. bottom: 83/1472
  29124. },
  29125. form: "taur",
  29126. default: true
  29127. },
  29128. lucarioFront: {
  29129. height: math.unit(4, "feet"),
  29130. name: "Lucario (Front)",
  29131. image: {
  29132. source: "./media/characters/cat/lucario-front.svg",
  29133. extra: 1149/1019,
  29134. bottom: 84/1233
  29135. },
  29136. form: "lucario",
  29137. default: true
  29138. },
  29139. lucarioBack: {
  29140. height: math.unit(4, "feet"),
  29141. name: "Lucario (Back)",
  29142. image: {
  29143. source: "./media/characters/cat/lucario-back.svg",
  29144. extra: 1190/1059,
  29145. bottom: 33/1223
  29146. },
  29147. form: "lucario"
  29148. },
  29149. megaLucario: {
  29150. height: math.unit(4, "feet"),
  29151. name: "Mega Lucario",
  29152. image: {
  29153. source: "./media/characters/cat/mega-lucario.svg",
  29154. extra: 1515 / 1319,
  29155. bottom: 63 / 1578
  29156. },
  29157. form: "lucario"
  29158. },
  29159. nickit: {
  29160. height: math.unit(2, "feet"),
  29161. name: "Nickit",
  29162. image: {
  29163. source: "./media/characters/cat/nickit.svg",
  29164. extra: 1980 / 1585,
  29165. bottom: 102 / 2082
  29166. },
  29167. form: "nickit",
  29168. default: true
  29169. },
  29170. lopunnyFront: {
  29171. height: math.unit(5, "feet"),
  29172. name: "Lopunny (Front)",
  29173. image: {
  29174. source: "./media/characters/cat/lopunny-front.svg",
  29175. extra: 1782 / 1469,
  29176. bottom: 38 / 1820
  29177. },
  29178. form: "lopunny",
  29179. default: true
  29180. },
  29181. lopunnyBack: {
  29182. height: math.unit(5, "feet"),
  29183. name: "Lopunny (Back)",
  29184. image: {
  29185. source: "./media/characters/cat/lopunny-back.svg",
  29186. extra: 1660 / 1490,
  29187. bottom: 25 / 1685
  29188. },
  29189. form: "lopunny"
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Really small",
  29195. height: math.unit(1, "nm")
  29196. },
  29197. {
  29198. name: "Micro",
  29199. height: math.unit(5, "inches")
  29200. },
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(5 + 6 / 12, "feet"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(50, "feet")
  29209. },
  29210. {
  29211. name: "Macro+",
  29212. height: math.unit(150, "feet")
  29213. },
  29214. {
  29215. name: "Megamacro",
  29216. height: math.unit(100, "miles")
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(63.4, "meters"),
  29225. weight: math.unit(3.28349e+6, "kilograms"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/kirina-violet/front.svg",
  29229. extra: 2812 / 2725,
  29230. bottom: 0 / 2812
  29231. }
  29232. },
  29233. back: {
  29234. height: math.unit(63.4, "meters"),
  29235. weight: math.unit(3.28349e+6, "kilograms"),
  29236. name: "Back",
  29237. image: {
  29238. source: "./media/characters/kirina-violet/back.svg",
  29239. extra: 2812 / 2725,
  29240. bottom: 0 / 2812
  29241. }
  29242. },
  29243. mouth: {
  29244. height: math.unit(4.35, "meters"),
  29245. name: "Mouth",
  29246. image: {
  29247. source: "./media/characters/kirina-violet/mouth.svg"
  29248. }
  29249. },
  29250. paw: {
  29251. height: math.unit(5.6, "meters"),
  29252. name: "Paw",
  29253. image: {
  29254. source: "./media/characters/kirina-violet/paw.svg"
  29255. }
  29256. },
  29257. tail: {
  29258. height: math.unit(18, "meters"),
  29259. name: "Tail",
  29260. image: {
  29261. source: "./media/characters/kirina-violet/tail.svg"
  29262. }
  29263. },
  29264. },
  29265. [
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(63.4, "meters"),
  29269. default: true
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(75, "feet"),
  29278. name: "Front",
  29279. image: {
  29280. source: "./media/characters/cat-gigachu/front.svg",
  29281. extra: 1239/1027,
  29282. bottom: 32/1271
  29283. }
  29284. },
  29285. back: {
  29286. height: math.unit(75, "feet"),
  29287. name: "Back",
  29288. image: {
  29289. source: "./media/characters/cat-gigachu/back.svg",
  29290. extra: 1229/1030,
  29291. bottom: 9/1238
  29292. }
  29293. },
  29294. },
  29295. [
  29296. {
  29297. name: "Dynamax",
  29298. height: math.unit(75, "feet"),
  29299. default: true
  29300. },
  29301. ]
  29302. ))
  29303. characterMakers.push(() => makeCharacter(
  29304. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29305. {
  29306. front: {
  29307. height: math.unit(6, "feet"),
  29308. weight: math.unit(150, "lb"),
  29309. name: "Front",
  29310. image: {
  29311. source: "./media/characters/sfaiyan/front.svg",
  29312. extra: 999 / 978,
  29313. bottom: 5 / 1004
  29314. }
  29315. },
  29316. },
  29317. [
  29318. {
  29319. name: "Normal",
  29320. height: math.unit(1.82, "meters")
  29321. },
  29322. {
  29323. name: "Giant",
  29324. height: math.unit(2.27, "km"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(179, "cm"),
  29334. weight: math.unit(100, "kg"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/raunehkeli/front.svg",
  29338. extra: 1934 / 1926,
  29339. bottom: 0 / 1934
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(179, "cm")
  29347. },
  29348. {
  29349. name: "Maximum",
  29350. height: math.unit(575, "meters"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29357. {
  29358. front: {
  29359. height: math.unit(6, "feet"),
  29360. weight: math.unit(150, "lb"),
  29361. name: "Front",
  29362. image: {
  29363. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29364. extra: 2625 / 2518,
  29365. bottom: 60 / 2685
  29366. }
  29367. },
  29368. },
  29369. [
  29370. {
  29371. name: "Normal",
  29372. height: math.unit(6 + 2 / 12, "feet")
  29373. },
  29374. {
  29375. name: "Macro",
  29376. height: math.unit(1180, "feet"),
  29377. default: true
  29378. },
  29379. ]
  29380. ))
  29381. characterMakers.push(() => makeCharacter(
  29382. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29383. {
  29384. front: {
  29385. height: math.unit(5 + 6 / 12, "feet"),
  29386. weight: math.unit(108, "lb"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/lilith-zott/front.svg",
  29390. extra: 2510 / 2238,
  29391. bottom: 100 / 2610
  29392. }
  29393. },
  29394. frontDressed: {
  29395. height: math.unit(5 + 6 / 12, "feet"),
  29396. weight: math.unit(108, "lb"),
  29397. name: "Front (Dressed)",
  29398. image: {
  29399. source: "./media/characters/lilith-zott/front-dressed.svg",
  29400. extra: 2510 / 2238,
  29401. bottom: 100 / 2610
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(5 + 6 / 12, "feet")
  29409. },
  29410. {
  29411. name: "Macro",
  29412. height: math.unit(1030, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(6, "feet"),
  29422. weight: math.unit(150, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29426. extra: 2567 / 2435,
  29427. bottom: 39 / 2606
  29428. }
  29429. },
  29430. frontSuper: {
  29431. height: math.unit(6, "feet"),
  29432. name: "Front (Super)",
  29433. image: {
  29434. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29435. extra: 2567 / 2435,
  29436. bottom: 39 / 2606
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(5 + 10 / 12, "feet")
  29444. },
  29445. {
  29446. name: "Macro",
  29447. height: math.unit(1100, "feet"),
  29448. default: true
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29454. {
  29455. front: {
  29456. height: math.unit(100, "miles"),
  29457. name: "Front",
  29458. image: {
  29459. source: "./media/characters/sona/front.svg",
  29460. extra: 2433 / 2201,
  29461. bottom: 53 / 2486
  29462. }
  29463. },
  29464. foot: {
  29465. height: math.unit(16.1, "miles"),
  29466. name: "Foot",
  29467. image: {
  29468. source: "./media/characters/sona/foot.svg"
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Macro",
  29475. height: math.unit(100, "miles"),
  29476. default: true
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29482. {
  29483. front: {
  29484. height: math.unit(6, "feet"),
  29485. weight: math.unit(150, "lb"),
  29486. name: "Front",
  29487. image: {
  29488. source: "./media/characters/bailey/front.svg",
  29489. extra: 1778 / 1724,
  29490. bottom: 30 / 1808
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Micro",
  29497. height: math.unit(4, "inches")
  29498. },
  29499. {
  29500. name: "Normal",
  29501. height: math.unit(5 + 5 / 12, "feet"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Macro",
  29506. height: math.unit(250, "feet")
  29507. },
  29508. {
  29509. name: "Megamacro",
  29510. height: math.unit(100, "miles")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(5 + 2 / 12, "feet"),
  29519. weight: math.unit(120, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/snaps/front.svg",
  29523. extra: 2370 / 2177,
  29524. bottom: 48 / 2418
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(5 + 2 / 12, "feet"),
  29529. weight: math.unit(120, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/snaps/back.svg",
  29533. extra: 2408 / 2258,
  29534. bottom: 15 / 2423
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Micro",
  29541. height: math.unit(9, "inches")
  29542. },
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(5 + 2 / 12, "feet"),
  29546. default: true
  29547. },
  29548. {
  29549. name: "Mini Macro",
  29550. height: math.unit(10, "feet")
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(1.8, "meters"),
  29559. weight: math.unit(85, "kg"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/azteck/front.svg",
  29563. extra: 2815 / 2625,
  29564. bottom: 89 / 2904
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(1.8, "meters"),
  29569. weight: math.unit(85, "kg"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/azteck/back.svg",
  29573. extra: 2856 / 2648,
  29574. bottom: 85 / 2941
  29575. }
  29576. },
  29577. frontDressed: {
  29578. height: math.unit(1.8, "meters"),
  29579. weight: math.unit(85, "kg"),
  29580. name: "Front (Dressed)",
  29581. image: {
  29582. source: "./media/characters/azteck/front-dressed.svg",
  29583. extra: 2147 / 2003,
  29584. bottom: 68 / 2215
  29585. }
  29586. },
  29587. head: {
  29588. height: math.unit(0.47, "meters"),
  29589. weight: math.unit(85, "kg"),
  29590. name: "Head",
  29591. image: {
  29592. source: "./media/characters/azteck/head.svg"
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Bite sized",
  29599. height: math.unit(16, "cm")
  29600. },
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(1.8, "meters"),
  29604. default: true
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/pidge/front.svg",
  29617. extra: 620 / 588,
  29618. bottom: 9 / 629
  29619. }
  29620. },
  29621. back: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Back",
  29625. image: {
  29626. source: "./media/characters/pidge/back.svg",
  29627. extra: 620 / 588,
  29628. bottom: 9 / 629
  29629. }
  29630. },
  29631. },
  29632. [
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(1, "mile"),
  29636. default: true
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(6, "feet"),
  29645. weight: math.unit(150, "lb"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/en/front.svg",
  29649. extra: 1697 / 1563,
  29650. bottom: 103 / 1800
  29651. }
  29652. },
  29653. back: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(150, "lb"),
  29656. name: "Back",
  29657. image: {
  29658. source: "./media/characters/en/back.svg",
  29659. extra: 1700 / 1570,
  29660. bottom: 51 / 1751
  29661. }
  29662. },
  29663. frontDressed: {
  29664. height: math.unit(6, "feet"),
  29665. weight: math.unit(150, "lb"),
  29666. name: "Front (Dressed)",
  29667. image: {
  29668. source: "./media/characters/en/front-dressed.svg",
  29669. extra: 1697 / 1563,
  29670. bottom: 103 / 1800
  29671. }
  29672. },
  29673. backDressed: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(150, "lb"),
  29676. name: "Back (Dressed)",
  29677. image: {
  29678. source: "./media/characters/en/back-dressed.svg",
  29679. extra: 1700 / 1570,
  29680. bottom: 51 / 1751
  29681. }
  29682. },
  29683. },
  29684. [
  29685. {
  29686. name: "Macro",
  29687. height: math.unit(210, "feet"),
  29688. default: true
  29689. },
  29690. ]
  29691. ))
  29692. characterMakers.push(() => makeCharacter(
  29693. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29694. {
  29695. front: {
  29696. height: math.unit(6, "feet"),
  29697. weight: math.unit(150, "lb"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/haze-orris/front.svg",
  29701. extra: 3975 / 3525,
  29702. bottom: 137 / 4112
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Micro",
  29709. height: math.unit(150, "mm"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(6, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/casselene-yaro/front.svg",
  29723. extra: 4721 / 4541,
  29724. bottom: 82 / 4803
  29725. }
  29726. },
  29727. back: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(150, "lb"),
  29730. name: "Back",
  29731. image: {
  29732. source: "./media/characters/casselene-yaro/back.svg",
  29733. extra: 4569 / 4377,
  29734. bottom: 69 / 4638
  29735. }
  29736. },
  29737. frontDressed: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(150, "lb"),
  29740. name: "Front-dressed",
  29741. image: {
  29742. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29743. extra: 4721 / 4541,
  29744. bottom: 82 / 4803
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Macro",
  29751. height: math.unit(190, "feet"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(150, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/myra-rue-delore/front.svg",
  29765. extra: 1340 / 1308,
  29766. bottom: 67 / 1407
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(150, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/myra-rue-delore/back.svg",
  29775. extra: 1341 / 1310,
  29776. bottom: 40 / 1381
  29777. }
  29778. },
  29779. frontDressed: {
  29780. height: math.unit(6, "feet"),
  29781. weight: math.unit(150, "lb"),
  29782. name: "Front (Dressed)",
  29783. image: {
  29784. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29785. extra: 1340 / 1308,
  29786. bottom: 67 / 1407
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Macro",
  29793. height: math.unit(150, "feet"),
  29794. default: true
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(10, "feet"),
  29803. weight: math.unit(15015, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/fem!plat/front.svg",
  29807. extra: 2799 / 2604,
  29808. bottom: 149 / 2948
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(10, "feet"),
  29816. default: true
  29817. },
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(100, "feet")
  29821. },
  29822. {
  29823. name: "Megamacro",
  29824. height: math.unit(1000, "feet")
  29825. },
  29826. ]
  29827. ))
  29828. characterMakers.push(() => makeCharacter(
  29829. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29830. {
  29831. front: {
  29832. height: math.unit(15 + 5 / 12, "feet"),
  29833. weight: math.unit(4600, "lb"),
  29834. name: "Front",
  29835. image: {
  29836. source: "./media/characters/neapolitan-ananassa/front.svg",
  29837. extra: 2903 / 2736,
  29838. bottom: 0 / 2903
  29839. }
  29840. },
  29841. side: {
  29842. height: math.unit(15 + 5 / 12, "feet"),
  29843. weight: math.unit(4600, "lb"),
  29844. name: "Side",
  29845. image: {
  29846. source: "./media/characters/neapolitan-ananassa/side.svg",
  29847. extra: 2925 / 2719,
  29848. bottom: 0 / 2925
  29849. }
  29850. },
  29851. back: {
  29852. height: math.unit(15 + 5 / 12, "feet"),
  29853. weight: math.unit(4600, "lb"),
  29854. name: "Back",
  29855. image: {
  29856. source: "./media/characters/neapolitan-ananassa/back.svg",
  29857. extra: 2903 / 2736,
  29858. bottom: 0 / 2903
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(15 + 5 / 12, "feet"),
  29866. default: true
  29867. },
  29868. {
  29869. name: "Post-Millenium",
  29870. height: math.unit(35 + 5 / 12, "feet")
  29871. },
  29872. {
  29873. name: "Post-Era",
  29874. height: math.unit(450 + 5 / 12, "feet")
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(300, "meters"),
  29883. weight: math.unit(125000, "tonnes"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/pazuzu/front.svg",
  29887. extra: 877 / 794,
  29888. bottom: 47 / 924
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Macro",
  29895. height: math.unit(300, "meters"),
  29896. default: true
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29902. {
  29903. side: {
  29904. height: math.unit(10 + 7 / 12, "feet"),
  29905. weight: math.unit(2.5, "tons"),
  29906. name: "Side",
  29907. image: {
  29908. source: "./media/characters/aasha/side.svg",
  29909. extra: 1345 / 1245,
  29910. bottom: 111 / 1456
  29911. }
  29912. },
  29913. back: {
  29914. height: math.unit(10 + 7 / 12, "feet"),
  29915. weight: math.unit(2.5, "tons"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/aasha/back.svg",
  29919. extra: 1133 / 1057,
  29920. bottom: 257 / 1390
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Normal",
  29927. height: math.unit(10 + 7 / 12, "feet"),
  29928. default: true
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6 + 3 / 12, "feet"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/nevan/front.svg",
  29940. extra: 704 / 704,
  29941. bottom: 28 / 732
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(6 + 3 / 12, "feet"),
  29946. name: "Back",
  29947. image: {
  29948. source: "./media/characters/nevan/back.svg",
  29949. extra: 714 / 714,
  29950. bottom: 21 / 735
  29951. }
  29952. },
  29953. frontFlaccid: {
  29954. height: math.unit(6 + 3 / 12, "feet"),
  29955. name: "Front (Flaccid)",
  29956. image: {
  29957. source: "./media/characters/nevan/front-flaccid.svg",
  29958. extra: 704 / 704,
  29959. bottom: 28 / 732
  29960. }
  29961. },
  29962. frontErect: {
  29963. height: math.unit(6 + 3 / 12, "feet"),
  29964. name: "Front (Erect)",
  29965. image: {
  29966. source: "./media/characters/nevan/front-erect.svg",
  29967. extra: 704 / 704,
  29968. bottom: 28 / 732
  29969. }
  29970. },
  29971. backFlaccid: {
  29972. height: math.unit(6 + 3 / 12, "feet"),
  29973. name: "Back (Flaccid)",
  29974. image: {
  29975. source: "./media/characters/nevan/back-flaccid.svg",
  29976. extra: 714 / 714,
  29977. bottom: 21 / 735
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Normal",
  29984. height: math.unit(6 + 3 / 12, "feet"),
  29985. default: true
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(4, "feet"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/arhan/front.svg",
  29997. extra: 3368 / 3133,
  29998. bottom: 0 / 3368
  29999. }
  30000. },
  30001. side: {
  30002. height: math.unit(4, "feet"),
  30003. name: "Side",
  30004. image: {
  30005. source: "./media/characters/arhan/side.svg",
  30006. extra: 3347 / 3105,
  30007. bottom: 0 / 3347
  30008. }
  30009. },
  30010. tongue: {
  30011. height: math.unit(1.42, "feet"),
  30012. name: "Tongue",
  30013. image: {
  30014. source: "./media/characters/arhan/tongue.svg"
  30015. }
  30016. },
  30017. head: {
  30018. height: math.unit(0.85, "feet"),
  30019. name: "Head",
  30020. image: {
  30021. source: "./media/characters/arhan/head.svg"
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(4, "feet"),
  30029. default: true
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(5 + 7.5 / 12, "feet"),
  30038. weight: math.unit(120, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/digi-duncan/front.svg",
  30042. extra: 330 / 326,
  30043. bottom: 16 / 346
  30044. }
  30045. },
  30046. side: {
  30047. height: math.unit(5 + 7.5 / 12, "feet"),
  30048. weight: math.unit(120, "lb"),
  30049. name: "Side",
  30050. image: {
  30051. source: "./media/characters/digi-duncan/side.svg",
  30052. extra: 341 / 337,
  30053. bottom: 1 / 342
  30054. }
  30055. },
  30056. back: {
  30057. height: math.unit(5 + 7.5 / 12, "feet"),
  30058. weight: math.unit(120, "lb"),
  30059. name: "Back",
  30060. image: {
  30061. source: "./media/characters/digi-duncan/back.svg",
  30062. extra: 330 / 326,
  30063. bottom: 12 / 342
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Speck",
  30070. height: math.unit(0.25, "mm")
  30071. },
  30072. {
  30073. name: "Micro",
  30074. height: math.unit(5, "mm")
  30075. },
  30076. {
  30077. name: "Tiny",
  30078. height: math.unit(0.5, "inches"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Human",
  30083. height: math.unit(5 + 7.5 / 12, "feet")
  30084. },
  30085. {
  30086. name: "Minigiant",
  30087. height: math.unit(8 + 5.25, "feet")
  30088. },
  30089. {
  30090. name: "Giant",
  30091. height: math.unit(2000, "feet")
  30092. },
  30093. {
  30094. name: "Mega",
  30095. height: math.unit(371.1, "miles")
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30101. {
  30102. front: {
  30103. height: math.unit(2, "meters"),
  30104. weight: math.unit(350, "kg"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30108. extra: 898 / 838,
  30109. bottom: 9 / 907
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Micro",
  30116. height: math.unit(8, "meters")
  30117. },
  30118. {
  30119. name: "Normal",
  30120. height: math.unit(50, "meters"),
  30121. default: true
  30122. },
  30123. {
  30124. name: "Macro",
  30125. height: math.unit(500, "meters")
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(6 + 6 / 12, "feet"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/khardesh/front.svg",
  30137. extra: 1788/1596,
  30138. bottom: 66/1854
  30139. }
  30140. },
  30141. back: {
  30142. height: math.unit(6 + 6 / 12, "feet"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/khardesh/back.svg",
  30146. extra: 1781/1584,
  30147. bottom: 68/1849
  30148. }
  30149. },
  30150. },
  30151. [
  30152. {
  30153. name: "Normal",
  30154. height: math.unit(6 + 6 / 12, "feet"),
  30155. default: true
  30156. },
  30157. {
  30158. name: "Normal+",
  30159. height: math.unit(4, "meters")
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(50, "meters")
  30164. },
  30165. {
  30166. name: "Macro+",
  30167. height: math.unit(100, "meters")
  30168. },
  30169. {
  30170. name: "Megamacro",
  30171. height: math.unit(20, "km")
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30177. {
  30178. front: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(150, "lb"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/kosho/front.svg",
  30184. extra: 1847 / 1847,
  30185. bottom: 86 / 1933
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Second-stage micro",
  30192. height: math.unit(0.5, "inches")
  30193. },
  30194. {
  30195. name: "First-stage micro",
  30196. height: math.unit(6, "inches")
  30197. },
  30198. {
  30199. name: "Normal",
  30200. height: math.unit(6, "feet"),
  30201. default: true
  30202. },
  30203. {
  30204. name: "First-stage macro",
  30205. height: math.unit(72, "feet")
  30206. },
  30207. {
  30208. name: "Second-stage macro",
  30209. height: math.unit(864, "feet")
  30210. },
  30211. ]
  30212. ))
  30213. characterMakers.push(() => makeCharacter(
  30214. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30215. {
  30216. normal: {
  30217. height: math.unit(4 + 6 / 12, "feet"),
  30218. name: "Normal",
  30219. image: {
  30220. source: "./media/characters/hydra/normal.svg",
  30221. extra: 2833 / 2634,
  30222. bottom: 68 / 2901
  30223. }
  30224. },
  30225. smol: {
  30226. height: math.unit(0.705, "inches"),
  30227. name: "Smol",
  30228. image: {
  30229. source: "./media/characters/hydra/smol.svg",
  30230. extra: 2715 / 2540,
  30231. bottom: 0 / 2715
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(4 + 6 / 12, "feet"),
  30239. default: true
  30240. }
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(0.6, "cm"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/daz/front.svg",
  30251. extra: 1682 / 1164,
  30252. bottom: 42 / 1724
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Normal",
  30259. height: math.unit(0.6, "cm"),
  30260. default: true
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(6, "feet"),
  30269. weight: math.unit(235, "lb"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/theo-pangolin/front.svg",
  30273. extra: 1996 / 1969,
  30274. bottom: 115 / 2111
  30275. }
  30276. },
  30277. back: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(235, "lb"),
  30280. name: "Back",
  30281. image: {
  30282. source: "./media/characters/theo-pangolin/back.svg",
  30283. extra: 1979 / 1979,
  30284. bottom: 40 / 2019
  30285. }
  30286. },
  30287. feral: {
  30288. height: math.unit(2, "feet"),
  30289. weight: math.unit(30, "lb"),
  30290. name: "Feral",
  30291. image: {
  30292. source: "./media/characters/theo-pangolin/feral.svg",
  30293. extra: 803 / 791,
  30294. bottom: 181 / 984
  30295. }
  30296. },
  30297. footFive: {
  30298. height: math.unit(1.43, "feet"),
  30299. name: "Foot (Five Toes)",
  30300. image: {
  30301. source: "./media/characters/theo-pangolin/foot-five.svg"
  30302. }
  30303. },
  30304. footFour: {
  30305. height: math.unit(1.43, "feet"),
  30306. name: "Foot (Four Toes)",
  30307. image: {
  30308. source: "./media/characters/theo-pangolin/foot-four.svg"
  30309. }
  30310. },
  30311. handFour: {
  30312. height: math.unit(0.81, "feet"),
  30313. name: "Hand (Four Fingers)",
  30314. image: {
  30315. source: "./media/characters/theo-pangolin/hand-four.svg"
  30316. }
  30317. },
  30318. handThree: {
  30319. height: math.unit(0.81, "feet"),
  30320. name: "Hand (Three Fingers)",
  30321. image: {
  30322. source: "./media/characters/theo-pangolin/hand-three.svg"
  30323. }
  30324. },
  30325. headFront: {
  30326. height: math.unit(1.37, "feet"),
  30327. name: "Head (Front)",
  30328. image: {
  30329. source: "./media/characters/theo-pangolin/head-front.svg"
  30330. }
  30331. },
  30332. headSide: {
  30333. height: math.unit(1.43, "feet"),
  30334. name: "Head (Side)",
  30335. image: {
  30336. source: "./media/characters/theo-pangolin/head-side.svg"
  30337. }
  30338. },
  30339. tongue: {
  30340. height: math.unit(2.29, "feet"),
  30341. name: "Tongue",
  30342. image: {
  30343. source: "./media/characters/theo-pangolin/tongue.svg"
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Normal",
  30350. height: math.unit(6, "feet")
  30351. },
  30352. {
  30353. name: "Macro",
  30354. height: math.unit(400, "feet"),
  30355. default: true
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30361. {
  30362. front: {
  30363. height: math.unit(6, "inches"),
  30364. weight: math.unit(0.036, "kg"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/renée/front.svg",
  30368. extra: 900 / 886,
  30369. bottom: 8 / 908
  30370. }
  30371. },
  30372. },
  30373. [
  30374. {
  30375. name: "Nano",
  30376. height: math.unit(1, "nm")
  30377. },
  30378. {
  30379. name: "Micro",
  30380. height: math.unit(1, "mm")
  30381. },
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(6, "inches")
  30385. },
  30386. {
  30387. name: "Macro",
  30388. height: math.unit(2000, "feet"),
  30389. default: true
  30390. },
  30391. {
  30392. name: "Megamacro",
  30393. height: math.unit(2, "km")
  30394. },
  30395. {
  30396. name: "Gigamacro",
  30397. height: math.unit(2000, "km")
  30398. },
  30399. {
  30400. name: "Teramacro",
  30401. height: math.unit(250000, "km")
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(4, "meters"),
  30410. weight: math.unit(150, "kg"),
  30411. name: "Front",
  30412. image: {
  30413. source: "./media/characters/caledvwlch/front.svg",
  30414. extra: 1760 / 1551,
  30415. bottom: 28 / 1788
  30416. }
  30417. },
  30418. side: {
  30419. height: math.unit(4, "meters"),
  30420. weight: math.unit(150, "kg"),
  30421. name: "Side",
  30422. image: {
  30423. source: "./media/characters/caledvwlch/side.svg",
  30424. extra: 1605 / 1536,
  30425. bottom: 31 / 1636
  30426. }
  30427. },
  30428. back: {
  30429. height: math.unit(4, "meters"),
  30430. weight: math.unit(150, "kg"),
  30431. name: "Back",
  30432. image: {
  30433. source: "./media/characters/caledvwlch/back.svg",
  30434. extra: 1635 / 1565,
  30435. bottom: 27 / 1662
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "\"Incognito\"",
  30442. height: math.unit(4, "meters")
  30443. },
  30444. {
  30445. name: "Small rampage",
  30446. height: math.unit(600, "meters")
  30447. },
  30448. {
  30449. name: "Mega",
  30450. height: math.unit(30, "km")
  30451. },
  30452. {
  30453. name: "Home-size",
  30454. height: math.unit(50, "km"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Giga",
  30459. height: math.unit(300, "km")
  30460. },
  30461. {
  30462. name: "Lounging",
  30463. height: math.unit(11000, "km")
  30464. },
  30465. {
  30466. name: "Planet snacking",
  30467. height: math.unit(2000000, "km")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30473. {
  30474. front: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(215, "lb"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/sapphire-svell/front.svg",
  30480. extra: 495 / 455,
  30481. bottom: 20 / 515
  30482. }
  30483. },
  30484. back: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(216, "lb"),
  30487. name: "Back",
  30488. image: {
  30489. source: "./media/characters/sapphire-svell/back.svg",
  30490. extra: 497 / 477,
  30491. bottom: 7 / 504
  30492. }
  30493. },
  30494. maw: {
  30495. height: math.unit(1.57, "feet"),
  30496. name: "Maw",
  30497. image: {
  30498. source: "./media/characters/sapphire-svell/maw.svg"
  30499. }
  30500. },
  30501. foot: {
  30502. height: math.unit(1.07, "feet"),
  30503. name: "Foot",
  30504. image: {
  30505. source: "./media/characters/sapphire-svell/foot.svg"
  30506. }
  30507. },
  30508. toering: {
  30509. height: math.unit(1.7, "inch"),
  30510. name: "Toering",
  30511. image: {
  30512. source: "./media/characters/sapphire-svell/toering.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(300, "feet"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Augmented",
  30524. height: math.unit(1250, "feet")
  30525. },
  30526. {
  30527. name: "Unleashed",
  30528. height: math.unit(3000, "feet")
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30534. {
  30535. side: {
  30536. height: math.unit(2 + 3 / 12, "feet"),
  30537. weight: math.unit(110, "lb"),
  30538. name: "Side",
  30539. image: {
  30540. source: "./media/characters/glitch-flux/side.svg",
  30541. extra: 997 / 805,
  30542. bottom: 20 / 1017
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Normal",
  30549. height: math.unit(2 + 3 / 12, "feet"),
  30550. default: true
  30551. },
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(4, "meters"),
  30559. name: "Front",
  30560. image: {
  30561. source: "./media/characters/mid/front.svg",
  30562. extra: 507 / 476,
  30563. bottom: 17 / 524
  30564. }
  30565. },
  30566. back: {
  30567. height: math.unit(4, "meters"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/mid/back.svg",
  30571. extra: 519 / 487,
  30572. bottom: 7 / 526
  30573. }
  30574. },
  30575. stuck: {
  30576. height: math.unit(2.2, "meters"),
  30577. name: "Stuck",
  30578. image: {
  30579. source: "./media/characters/mid/stuck.svg",
  30580. extra: 1951 / 1869,
  30581. bottom: 88 / 2039
  30582. }
  30583. }
  30584. },
  30585. [
  30586. {
  30587. name: "Normal",
  30588. height: math.unit(4, "meters"),
  30589. default: true
  30590. },
  30591. {
  30592. name: "Big",
  30593. height: math.unit(10, "meters")
  30594. },
  30595. {
  30596. name: "Macro",
  30597. height: math.unit(800, "meters")
  30598. },
  30599. {
  30600. name: "Megamacro",
  30601. height: math.unit(100, "km")
  30602. },
  30603. {
  30604. name: "Overgrown",
  30605. height: math.unit(1, "parsec")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(2.5, "meters"),
  30614. weight: math.unit(225, "kg"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/iris/front.svg",
  30618. extra: 3348 / 3251,
  30619. bottom: 205 / 3553
  30620. }
  30621. },
  30622. maw: {
  30623. height: math.unit(0.56, "meter"),
  30624. name: "Maw",
  30625. image: {
  30626. source: "./media/characters/iris/maw.svg"
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Mewter cat",
  30633. height: math.unit(1.2, "meters")
  30634. },
  30635. {
  30636. name: "Minimacro",
  30637. height: math.unit(2.5, "meters"),
  30638. default: true
  30639. },
  30640. {
  30641. name: "Macro",
  30642. height: math.unit(180, "meters")
  30643. },
  30644. {
  30645. name: "Megamacro",
  30646. height: math.unit(2746, "meters")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(135, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/axel/front.svg",
  30659. extra: 908 / 908,
  30660. bottom: 58 / 966
  30661. }
  30662. },
  30663. side: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(135, "lb"),
  30666. name: "Side",
  30667. image: {
  30668. source: "./media/characters/axel/side.svg",
  30669. extra: 958 / 958,
  30670. bottom: 11 / 969
  30671. }
  30672. },
  30673. back: {
  30674. height: math.unit(6, "feet"),
  30675. weight: math.unit(135, "lb"),
  30676. name: "Back",
  30677. image: {
  30678. source: "./media/characters/axel/back.svg",
  30679. extra: 887 / 887,
  30680. bottom: 34 / 921
  30681. }
  30682. },
  30683. head: {
  30684. height: math.unit(1.07, "feet"),
  30685. name: "Head",
  30686. image: {
  30687. source: "./media/characters/axel/head.svg"
  30688. }
  30689. },
  30690. beak: {
  30691. height: math.unit(1.4, "feet"),
  30692. name: "Beak",
  30693. image: {
  30694. source: "./media/characters/axel/beak.svg"
  30695. }
  30696. },
  30697. beakSide: {
  30698. height: math.unit(1.4, "feet"),
  30699. name: "Beak Side",
  30700. image: {
  30701. source: "./media/characters/axel/beak-side.svg"
  30702. }
  30703. },
  30704. sheath: {
  30705. height: math.unit(0.5, "feet"),
  30706. name: "Sheath",
  30707. image: {
  30708. source: "./media/characters/axel/sheath.svg"
  30709. }
  30710. },
  30711. dick: {
  30712. height: math.unit(0.98, "feet"),
  30713. name: "Dick",
  30714. image: {
  30715. source: "./media/characters/axel/dick.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Macro",
  30722. height: math.unit(68, "meters"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30729. {
  30730. front: {
  30731. height: math.unit(3.5, "meters"),
  30732. weight: math.unit(1200, "kg"),
  30733. name: "Front",
  30734. image: {
  30735. source: "./media/characters/joanna/front.svg",
  30736. extra: 1596 / 1488,
  30737. bottom: 29 / 1625
  30738. }
  30739. },
  30740. back: {
  30741. height: math.unit(3.5, "meters"),
  30742. weight: math.unit(1200, "kg"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/joanna/back.svg",
  30746. extra: 1594 / 1495,
  30747. bottom: 26 / 1620
  30748. }
  30749. },
  30750. frontShorts: {
  30751. height: math.unit(3.5, "meters"),
  30752. weight: math.unit(1200, "kg"),
  30753. name: "Front (Shorts)",
  30754. image: {
  30755. source: "./media/characters/joanna/front-shorts.svg",
  30756. extra: 1596 / 1488,
  30757. bottom: 29 / 1625
  30758. }
  30759. },
  30760. frontBiker: {
  30761. height: math.unit(3.5, "meters"),
  30762. weight: math.unit(1200, "kg"),
  30763. name: "Front (Biker)",
  30764. image: {
  30765. source: "./media/characters/joanna/front-biker.svg",
  30766. extra: 1596 / 1488,
  30767. bottom: 29 / 1625
  30768. }
  30769. },
  30770. backBiker: {
  30771. height: math.unit(3.5, "meters"),
  30772. weight: math.unit(1200, "kg"),
  30773. name: "Back (Biker)",
  30774. image: {
  30775. source: "./media/characters/joanna/back-biker.svg",
  30776. extra: 1594 / 1495,
  30777. bottom: 88 / 1682
  30778. }
  30779. },
  30780. bikeLeft: {
  30781. height: math.unit(2.4, "meters"),
  30782. weight: math.unit(1600, "kg"),
  30783. name: "Bike (Left)",
  30784. image: {
  30785. source: "./media/characters/joanna/bike-left.svg",
  30786. extra: 720 / 720,
  30787. bottom: 8 / 728
  30788. }
  30789. },
  30790. bikeRight: {
  30791. height: math.unit(2.4, "meters"),
  30792. weight: math.unit(1600, "kg"),
  30793. name: "Bike (Right)",
  30794. image: {
  30795. source: "./media/characters/joanna/bike-right.svg",
  30796. extra: 720 / 720,
  30797. bottom: 8 / 728
  30798. }
  30799. },
  30800. },
  30801. [
  30802. {
  30803. name: "Incognito",
  30804. height: math.unit(3.5, "meters")
  30805. },
  30806. {
  30807. name: "Casual Big",
  30808. height: math.unit(200, "meters")
  30809. },
  30810. {
  30811. name: "Macro",
  30812. height: math.unit(600, "meters")
  30813. },
  30814. {
  30815. name: "Original",
  30816. height: math.unit(20, "km"),
  30817. default: true
  30818. },
  30819. {
  30820. name: "Giga",
  30821. height: math.unit(400, "km")
  30822. },
  30823. {
  30824. name: "Lounging",
  30825. height: math.unit(1500, "km")
  30826. },
  30827. {
  30828. name: "Planetary",
  30829. height: math.unit(200000, "km")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(6, "feet"),
  30838. weight: math.unit(150, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/hugo-sigil/front.svg",
  30842. extra: 522 / 500,
  30843. bottom: 2 / 524
  30844. }
  30845. },
  30846. back: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Back",
  30850. image: {
  30851. source: "./media/characters/hugo-sigil/back.svg",
  30852. extra: 519 / 495,
  30853. bottom: 5 / 524
  30854. }
  30855. },
  30856. maw: {
  30857. height: math.unit(1.4, "feet"),
  30858. weight: math.unit(150, "lb"),
  30859. name: "Maw",
  30860. image: {
  30861. source: "./media/characters/hugo-sigil/maw.svg"
  30862. }
  30863. },
  30864. feet: {
  30865. height: math.unit(1.56, "feet"),
  30866. weight: math.unit(150, "lb"),
  30867. name: "Feet",
  30868. image: {
  30869. source: "./media/characters/hugo-sigil/feet.svg",
  30870. extra: 177 / 177,
  30871. bottom: 12 / 189
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(6, "feet")
  30879. },
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(200, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(6, "feet"),
  30892. weight: math.unit(150, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/peri/front.svg",
  30896. extra: 2354 / 2233,
  30897. bottom: 49 / 2403
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Really Small",
  30904. height: math.unit(1, "nm")
  30905. },
  30906. {
  30907. name: "Micro",
  30908. height: math.unit(4, "inches")
  30909. },
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(7, "inches"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Macro",
  30917. height: math.unit(400, "feet")
  30918. },
  30919. {
  30920. name: "Megamacro",
  30921. height: math.unit(100, "miles")
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30927. {
  30928. frontSlim: {
  30929. height: math.unit(7, "feet"),
  30930. name: "Front (Slim)",
  30931. image: {
  30932. source: "./media/characters/issilora/front-slim.svg",
  30933. extra: 529 / 449,
  30934. bottom: 53 / 582
  30935. }
  30936. },
  30937. sideSlim: {
  30938. height: math.unit(7, "feet"),
  30939. name: "Side (Slim)",
  30940. image: {
  30941. source: "./media/characters/issilora/side-slim.svg",
  30942. extra: 570 / 480,
  30943. bottom: 30 / 600
  30944. }
  30945. },
  30946. backSlim: {
  30947. height: math.unit(7, "feet"),
  30948. name: "Back (Slim)",
  30949. image: {
  30950. source: "./media/characters/issilora/back-slim.svg",
  30951. extra: 537 / 455,
  30952. bottom: 46 / 583
  30953. }
  30954. },
  30955. frontBuff: {
  30956. height: math.unit(7, "feet"),
  30957. name: "Front (Buff)",
  30958. image: {
  30959. source: "./media/characters/issilora/front-buff.svg",
  30960. extra: 2310 / 2035,
  30961. bottom: 335 / 2645
  30962. }
  30963. },
  30964. head: {
  30965. height: math.unit(1.94, "feet"),
  30966. name: "Head",
  30967. image: {
  30968. source: "./media/characters/issilora/head.svg"
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Minimum",
  30975. height: math.unit(7, "feet")
  30976. },
  30977. {
  30978. name: "Comfortable",
  30979. height: math.unit(17, "feet")
  30980. },
  30981. {
  30982. name: "Fun Size",
  30983. height: math.unit(47, "feet")
  30984. },
  30985. {
  30986. name: "Natural Macro",
  30987. height: math.unit(137, "feet"),
  30988. default: true
  30989. },
  30990. {
  30991. name: "Maximum Kaiju",
  30992. height: math.unit(397, "feet")
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30998. {
  30999. front: {
  31000. height: math.unit(50 + 9/12, "feet"),
  31001. weight: math.unit(32.8, "tons"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/irb'iiritaahn/front.svg",
  31005. extra: 1878/1826,
  31006. bottom: 326/2204
  31007. }
  31008. },
  31009. back: {
  31010. height: math.unit(50 + 9/12, "feet"),
  31011. weight: math.unit(32.8, "tons"),
  31012. name: "Back",
  31013. image: {
  31014. source: "./media/characters/irb'iiritaahn/back.svg",
  31015. extra: 2052/2018,
  31016. bottom: 152/2204
  31017. }
  31018. },
  31019. head: {
  31020. height: math.unit(12.86, "feet"),
  31021. name: "Head",
  31022. image: {
  31023. source: "./media/characters/irb'iiritaahn/head.svg"
  31024. }
  31025. },
  31026. maw: {
  31027. height: math.unit(9.66, "feet"),
  31028. name: "Maw",
  31029. image: {
  31030. source: "./media/characters/irb'iiritaahn/maw.svg"
  31031. }
  31032. },
  31033. frontDick: {
  31034. height: math.unit(8.78461, "feet"),
  31035. name: "Front Dick",
  31036. image: {
  31037. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31038. }
  31039. },
  31040. rearDick: {
  31041. height: math.unit(8.78461, "feet"),
  31042. name: "Rear Dick",
  31043. image: {
  31044. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31045. }
  31046. },
  31047. rearDickUnfolded: {
  31048. height: math.unit(8.78, "feet"),
  31049. name: "Rear Dick (Unfolded)",
  31050. image: {
  31051. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31052. }
  31053. },
  31054. wings: {
  31055. height: math.unit(43, "feet"),
  31056. name: "Wings",
  31057. image: {
  31058. source: "./media/characters/irb'iiritaahn/wings.svg"
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Macro",
  31065. height: math.unit(50 + 9/12, "feet"),
  31066. default: true
  31067. },
  31068. ]
  31069. ))
  31070. characterMakers.push(() => makeCharacter(
  31071. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31072. {
  31073. front: {
  31074. height: math.unit(205, "cm"),
  31075. weight: math.unit(102, "kg"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/irbisgreif/front.svg",
  31079. extra: 785/706,
  31080. bottom: 13/798
  31081. }
  31082. },
  31083. back: {
  31084. height: math.unit(205, "cm"),
  31085. weight: math.unit(102, "kg"),
  31086. name: "Back",
  31087. image: {
  31088. source: "./media/characters/irbisgreif/back.svg",
  31089. extra: 713/701,
  31090. bottom: 26/739
  31091. }
  31092. },
  31093. frontDressed: {
  31094. height: math.unit(216, "cm"),
  31095. weight: math.unit(102, "kg"),
  31096. name: "Front-dressed",
  31097. image: {
  31098. source: "./media/characters/irbisgreif/front-dressed.svg",
  31099. extra: 902/776,
  31100. bottom: 14/916
  31101. }
  31102. },
  31103. sideDressed: {
  31104. height: math.unit(195, "cm"),
  31105. weight: math.unit(102, "kg"),
  31106. name: "Side-dressed",
  31107. image: {
  31108. source: "./media/characters/irbisgreif/side-dressed.svg",
  31109. extra: 788/688,
  31110. bottom: 21/809
  31111. }
  31112. },
  31113. backDressed: {
  31114. height: math.unit(216, "cm"),
  31115. weight: math.unit(102, "kg"),
  31116. name: "Back-dressed",
  31117. image: {
  31118. source: "./media/characters/irbisgreif/back-dressed.svg",
  31119. extra: 901/783,
  31120. bottom: 10/911
  31121. }
  31122. },
  31123. dick: {
  31124. height: math.unit(0.49, "feet"),
  31125. name: "Dick",
  31126. image: {
  31127. source: "./media/characters/irbisgreif/dick.svg"
  31128. }
  31129. },
  31130. wingTop: {
  31131. height: math.unit(1.93 , "feet"),
  31132. name: "Wing-top",
  31133. image: {
  31134. source: "./media/characters/irbisgreif/wing-top.svg"
  31135. }
  31136. },
  31137. wingBottom: {
  31138. height: math.unit(1.93 , "feet"),
  31139. name: "Wing-bottom",
  31140. image: {
  31141. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(216, "cm"),
  31149. default: true
  31150. },
  31151. ]
  31152. ))
  31153. characterMakers.push(() => makeCharacter(
  31154. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31155. {
  31156. front: {
  31157. height: math.unit(6, "feet"),
  31158. weight: math.unit(150, "lb"),
  31159. name: "Front",
  31160. image: {
  31161. source: "./media/characters/pride/front.svg",
  31162. extra: 1299/1230,
  31163. bottom: 18/1317
  31164. }
  31165. },
  31166. },
  31167. [
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(7, "feet")
  31171. },
  31172. {
  31173. name: "Mini-macro",
  31174. height: math.unit(11, "feet")
  31175. },
  31176. {
  31177. name: "Macro",
  31178. height: math.unit(15, "meters"),
  31179. default: true
  31180. },
  31181. {
  31182. name: "Macro+",
  31183. height: math.unit(40, "meters")
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31189. {
  31190. front: {
  31191. height: math.unit(4 + 2 / 12, "feet"),
  31192. weight: math.unit(95, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/vaelophis-nyx/front.svg",
  31196. extra: 2532/2330,
  31197. bottom: 0/2532
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(4 + 2 / 12, "feet"),
  31202. weight: math.unit(95, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/vaelophis-nyx/back.svg",
  31206. extra: 2484/2361,
  31207. bottom: 0/2484
  31208. }
  31209. },
  31210. feralSide: {
  31211. height: math.unit(2 + 1/12, "feet"),
  31212. weight: math.unit(20, "lb"),
  31213. name: "Feral (Side)",
  31214. image: {
  31215. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31216. extra: 1721/1581,
  31217. bottom: 70/1791
  31218. }
  31219. },
  31220. feralLazing: {
  31221. height: math.unit(1.08, "feet"),
  31222. weight: math.unit(20, "lb"),
  31223. name: "Feral (Lazing)",
  31224. image: {
  31225. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31226. extra: 822/822,
  31227. bottom: 248/1070
  31228. }
  31229. },
  31230. ear: {
  31231. height: math.unit(0.416, "feet"),
  31232. name: "Ear",
  31233. image: {
  31234. source: "./media/characters/vaelophis-nyx/ear.svg"
  31235. }
  31236. },
  31237. eye: {
  31238. height: math.unit(0.0748, "feet"),
  31239. name: "Eye",
  31240. image: {
  31241. source: "./media/characters/vaelophis-nyx/eye.svg"
  31242. }
  31243. },
  31244. mouth: {
  31245. height: math.unit(0.378, "feet"),
  31246. name: "Mouth",
  31247. image: {
  31248. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31249. }
  31250. },
  31251. spade: {
  31252. height: math.unit(0.55, "feet"),
  31253. name: "Spade",
  31254. image: {
  31255. source: "./media/characters/vaelophis-nyx/spade.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(4 + 2/12, "feet"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31269. {
  31270. front: {
  31271. height: math.unit(7, "feet"),
  31272. weight: math.unit(231, "lb"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/flux/front.svg",
  31276. extra: 919/871,
  31277. bottom: 0/919
  31278. }
  31279. },
  31280. back: {
  31281. height: math.unit(7, "feet"),
  31282. weight: math.unit(231, "lb"),
  31283. name: "Back",
  31284. image: {
  31285. source: "./media/characters/flux/back.svg",
  31286. extra: 1040/992,
  31287. bottom: 0/1040
  31288. }
  31289. },
  31290. frontDressed: {
  31291. height: math.unit(7, "feet"),
  31292. weight: math.unit(231, "lb"),
  31293. name: "Front (Dressed)",
  31294. image: {
  31295. source: "./media/characters/flux/front-dressed.svg",
  31296. extra: 919/871,
  31297. bottom: 0/919
  31298. }
  31299. },
  31300. feralSide: {
  31301. height: math.unit(5, "feet"),
  31302. weight: math.unit(150, "lb"),
  31303. name: "Feral (Side)",
  31304. image: {
  31305. source: "./media/characters/flux/feral-side.svg",
  31306. extra: 598/528,
  31307. bottom: 28/626
  31308. }
  31309. },
  31310. head: {
  31311. height: math.unit(1.585, "feet"),
  31312. name: "Head",
  31313. image: {
  31314. source: "./media/characters/flux/head.svg"
  31315. }
  31316. },
  31317. headSide: {
  31318. height: math.unit(1.74, "feet"),
  31319. name: "Head (Side)",
  31320. image: {
  31321. source: "./media/characters/flux/head-side.svg"
  31322. }
  31323. },
  31324. headSideFire: {
  31325. height: math.unit(1.76, "feet"),
  31326. name: "Head (Side, Fire)",
  31327. image: {
  31328. source: "./media/characters/flux/head-side-fire.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(7, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(9, "feet"),
  31345. weight: math.unit(1012, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/ulfra-lupae/front.svg",
  31349. extra: 1083/1011,
  31350. bottom: 67/1150
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Micro",
  31357. height: math.unit(6, "inches")
  31358. },
  31359. {
  31360. name: "Socializing",
  31361. height: math.unit(6 + 5/12, "feet")
  31362. },
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(9, "feet"),
  31366. default: true
  31367. },
  31368. {
  31369. name: "Macro",
  31370. height: math.unit(150, "feet")
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(5 + 2/12, "feet"),
  31379. weight: math.unit(120, "lb"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/timber/front.svg",
  31383. extra: 2814/2705,
  31384. bottom: 181/2995
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(5 + 2/12, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(5 + 7/12, "feet"),
  31401. weight: math.unit(220, "lb"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/nicki/front.svg",
  31405. extra: 453/419,
  31406. bottom: 7/460
  31407. }
  31408. },
  31409. frontAlt: {
  31410. height: math.unit(5 + 7/12, "feet"),
  31411. weight: math.unit(220, "lb"),
  31412. name: "Front-alt",
  31413. image: {
  31414. source: "./media/characters/nicki/front-alt.svg",
  31415. extra: 435/411,
  31416. bottom: 12/447
  31417. }
  31418. },
  31419. back: {
  31420. height: math.unit(5 + 7/12, "feet"),
  31421. weight: math.unit(220, "lb"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/nicki/back.svg",
  31425. extra: 440/413,
  31426. bottom: 19/459
  31427. }
  31428. },
  31429. taur: {
  31430. height: math.unit(7 + 6/12, "feet"),
  31431. weight: math.unit(700, "lb"),
  31432. name: "Taur",
  31433. image: {
  31434. source: "./media/characters/nicki/taur.svg",
  31435. extra: 975/773,
  31436. bottom: 0/975
  31437. }
  31438. },
  31439. frontNsfw: {
  31440. height: math.unit(5 + 7/12, "feet"),
  31441. weight: math.unit(220, "lb"),
  31442. name: "Front (NSFW)",
  31443. image: {
  31444. source: "./media/characters/nicki/front-nsfw.svg",
  31445. extra: 453/419,
  31446. bottom: 7/460
  31447. }
  31448. },
  31449. frontNsfwAlt: {
  31450. height: math.unit(5 + 7/12, "feet"),
  31451. weight: math.unit(220, "lb"),
  31452. name: "Front (Alt, NSFW)",
  31453. image: {
  31454. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31455. extra: 435/411,
  31456. bottom: 12/447
  31457. }
  31458. },
  31459. backNsfw: {
  31460. height: math.unit(5 + 7/12, "feet"),
  31461. weight: math.unit(220, "lb"),
  31462. name: "Back (NSFW)",
  31463. image: {
  31464. source: "./media/characters/nicki/back-nsfw.svg",
  31465. extra: 440/413,
  31466. bottom: 19/459
  31467. }
  31468. },
  31469. head: {
  31470. height: math.unit(2.1, "feet"),
  31471. name: "Head",
  31472. image: {
  31473. source: "./media/characters/nicki/head.svg"
  31474. }
  31475. },
  31476. paw: {
  31477. height: math.unit(1.88, "feet"),
  31478. name: "Paw",
  31479. image: {
  31480. source: "./media/characters/nicki/paw.svg"
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(5 + 7/12, "feet"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(7 + 10/12, "feet"),
  31497. weight: math.unit(3.5, "tons"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/lee/front.svg",
  31501. extra: 1773/1615,
  31502. bottom: 86/1859
  31503. }
  31504. },
  31505. hand: {
  31506. height: math.unit(1.78, "feet"),
  31507. name: "Hand",
  31508. image: {
  31509. source: "./media/characters/lee/hand.svg"
  31510. }
  31511. },
  31512. maw: {
  31513. height: math.unit(1.18, "feet"),
  31514. name: "Maw",
  31515. image: {
  31516. source: "./media/characters/lee/maw.svg"
  31517. }
  31518. },
  31519. },
  31520. [
  31521. {
  31522. name: "Normal",
  31523. height: math.unit(7 + 10/12, "feet"),
  31524. default: true
  31525. },
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31530. {
  31531. front: {
  31532. height: math.unit(9, "feet"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/guti/front.svg",
  31536. extra: 4551/4355,
  31537. bottom: 123/4674
  31538. }
  31539. },
  31540. tongue: {
  31541. height: math.unit(1, "feet"),
  31542. name: "Tongue",
  31543. image: {
  31544. source: "./media/characters/guti/tongue.svg"
  31545. }
  31546. },
  31547. paw: {
  31548. height: math.unit(1.18, "feet"),
  31549. name: "Paw",
  31550. image: {
  31551. source: "./media/characters/guti/paw.svg"
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(9, "feet"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31565. {
  31566. side: {
  31567. height: math.unit(5, "meters"),
  31568. name: "Side",
  31569. image: {
  31570. source: "./media/characters/vesper/side.svg",
  31571. extra: 1605/1518,
  31572. bottom: 0/1605
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Small",
  31579. height: math.unit(5, "meters")
  31580. },
  31581. {
  31582. name: "Sage",
  31583. height: math.unit(100, "meters"),
  31584. default: true
  31585. },
  31586. {
  31587. name: "Fun Size",
  31588. height: math.unit(600, "meters")
  31589. },
  31590. {
  31591. name: "Goddess",
  31592. height: math.unit(20000, "km")
  31593. },
  31594. {
  31595. name: "Maximum",
  31596. height: math.unit(5, "galaxies")
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31602. {
  31603. front: {
  31604. height: math.unit(6 + 3/12, "feet"),
  31605. weight: math.unit(190, "lb"),
  31606. name: "Front",
  31607. image: {
  31608. source: "./media/characters/gawain/front.svg",
  31609. extra: 2222/2139,
  31610. bottom: 90/2312
  31611. }
  31612. },
  31613. back: {
  31614. height: math.unit(6 + 3/12, "feet"),
  31615. weight: math.unit(190, "lb"),
  31616. name: "Back",
  31617. image: {
  31618. source: "./media/characters/gawain/back.svg",
  31619. extra: 2199/2111,
  31620. bottom: 73/2272
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(6 + 3/12, "feet"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31634. {
  31635. side: {
  31636. height: math.unit(3.5, "meters"),
  31637. weight: math.unit(16000, "lb"),
  31638. name: "Side",
  31639. image: {
  31640. source: "./media/characters/dascalti/side.svg",
  31641. extra: 392/273,
  31642. bottom: 47/439
  31643. }
  31644. },
  31645. breath: {
  31646. height: math.unit(7.4, "feet"),
  31647. name: "Breath",
  31648. image: {
  31649. source: "./media/characters/dascalti/breath.svg"
  31650. }
  31651. },
  31652. fed: {
  31653. height: math.unit(3.6, "meters"),
  31654. weight: math.unit(16000, "lb"),
  31655. name: "Fed",
  31656. image: {
  31657. source: "./media/characters/dascalti/fed.svg",
  31658. extra: 1419/820,
  31659. bottom: 95/1514
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(3.5, "meters"),
  31667. default: true
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31673. {
  31674. front: {
  31675. height: math.unit(3 + 5/12, "feet"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/mauve/front.svg",
  31679. extra: 1126/1033,
  31680. bottom: 65/1191
  31681. }
  31682. },
  31683. side: {
  31684. height: math.unit(3 + 5/12, "feet"),
  31685. name: "Side",
  31686. image: {
  31687. source: "./media/characters/mauve/side.svg",
  31688. extra: 1089/1001,
  31689. bottom: 29/1118
  31690. }
  31691. },
  31692. back: {
  31693. height: math.unit(3 + 5/12, "feet"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/mauve/back.svg",
  31697. extra: 1173/1053,
  31698. bottom: 109/1282
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Normal",
  31705. height: math.unit(3 + 5/12, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(6 + 3/12, "feet"),
  31715. weight: math.unit(430, "lb"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/carlos/front.svg",
  31719. extra: 1964/1913,
  31720. bottom: 70/2034
  31721. }
  31722. },
  31723. },
  31724. [
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(6 + 3/12, "feet"),
  31728. default: true
  31729. },
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31734. {
  31735. back: {
  31736. height: math.unit(5 + 10/12, "feet"),
  31737. weight: math.unit(200, "lb"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/jax/back.svg",
  31741. extra: 764/739,
  31742. bottom: 25/789
  31743. }
  31744. },
  31745. },
  31746. [
  31747. {
  31748. name: "Normal",
  31749. height: math.unit(5 + 10/12, "feet"),
  31750. default: true
  31751. },
  31752. ]
  31753. ))
  31754. characterMakers.push(() => makeCharacter(
  31755. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31756. {
  31757. front: {
  31758. height: math.unit(8, "feet"),
  31759. weight: math.unit(250, "lb"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/eikthynir/front.svg",
  31763. extra: 1332/1166,
  31764. bottom: 82/1414
  31765. }
  31766. },
  31767. back: {
  31768. height: math.unit(8, "feet"),
  31769. weight: math.unit(250, "lb"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/eikthynir/back.svg",
  31773. extra: 1342/1190,
  31774. bottom: 19/1361
  31775. }
  31776. },
  31777. dick: {
  31778. height: math.unit(2.35, "feet"),
  31779. name: "Dick",
  31780. image: {
  31781. source: "./media/characters/eikthynir/dick.svg"
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(8, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31795. {
  31796. front: {
  31797. height: math.unit(99, "meters"),
  31798. weight: math.unit(13000, "tons"),
  31799. name: "Front",
  31800. image: {
  31801. source: "./media/characters/zlmos/front.svg",
  31802. extra: 2202/1992,
  31803. bottom: 315/2517
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(99, "meters"),
  31811. default: true
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31817. {
  31818. front: {
  31819. height: math.unit(6 + 5/12, "feet"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/purri/front.svg",
  31823. extra: 1698/1610,
  31824. bottom: 32/1730
  31825. }
  31826. },
  31827. frontAlt: {
  31828. height: math.unit(6 + 5/12, "feet"),
  31829. name: "Front (Alt)",
  31830. image: {
  31831. source: "./media/characters/purri/front-alt.svg",
  31832. extra: 450/420,
  31833. bottom: 26/476
  31834. }
  31835. },
  31836. boots: {
  31837. height: math.unit(5.5, "feet"),
  31838. name: "Boots",
  31839. image: {
  31840. source: "./media/characters/purri/boots.svg",
  31841. extra: 905/853,
  31842. bottom: 18/923
  31843. }
  31844. },
  31845. lying: {
  31846. height: math.unit(2, "feet"),
  31847. name: "Lying",
  31848. image: {
  31849. source: "./media/characters/purri/lying.svg",
  31850. extra: 940/843,
  31851. bottom: 146/1086
  31852. }
  31853. },
  31854. devious: {
  31855. height: math.unit(1.77, "feet"),
  31856. name: "Devious",
  31857. image: {
  31858. source: "./media/characters/purri/devious.svg",
  31859. extra: 1440/1155,
  31860. bottom: 147/1587
  31861. }
  31862. },
  31863. bean: {
  31864. height: math.unit(1.94, "feet"),
  31865. name: "Bean",
  31866. image: {
  31867. source: "./media/characters/purri/bean.svg"
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Micro",
  31874. height: math.unit(1, "mm")
  31875. },
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(6 + 5/12, "feet"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "Macro :3c",
  31883. height: math.unit(2, "miles")
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(6 + 2/12, "feet"),
  31892. weight: math.unit(250, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/moonlight/front.svg",
  31896. extra: 1044/908,
  31897. bottom: 56/1100
  31898. }
  31899. },
  31900. feral: {
  31901. height: math.unit(3 + 1/12, "feet"),
  31902. weight: math.unit(50, "kg"),
  31903. name: "Feral",
  31904. image: {
  31905. source: "./media/characters/moonlight/feral.svg",
  31906. extra: 3705/2791,
  31907. bottom: 145/3850
  31908. }
  31909. },
  31910. paw: {
  31911. height: math.unit(1, "feet"),
  31912. name: "Paw",
  31913. image: {
  31914. source: "./media/characters/moonlight/paw.svg"
  31915. }
  31916. },
  31917. paws: {
  31918. height: math.unit(0.98, "feet"),
  31919. name: "Paws",
  31920. image: {
  31921. source: "./media/characters/moonlight/paws.svg",
  31922. extra: 939/939,
  31923. bottom: 50/989
  31924. }
  31925. },
  31926. mouth: {
  31927. height: math.unit(0.48, "feet"),
  31928. name: "Mouth",
  31929. image: {
  31930. source: "./media/characters/moonlight/mouth.svg"
  31931. }
  31932. },
  31933. dick: {
  31934. height: math.unit(1.46, "feet"),
  31935. name: "Dick",
  31936. image: {
  31937. source: "./media/characters/moonlight/dick.svg"
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Normal",
  31944. height: math.unit(6 + 2/12, "feet"),
  31945. default: true
  31946. },
  31947. {
  31948. name: "Macro",
  31949. height: math.unit(300, "feet")
  31950. },
  31951. {
  31952. name: "Macro+",
  31953. height: math.unit(1, "mile")
  31954. },
  31955. {
  31956. name: "Mt. Moon",
  31957. height: math.unit(5, "miles")
  31958. },
  31959. {
  31960. name: "Megamacro",
  31961. height: math.unit(15, "miles")
  31962. },
  31963. ]
  31964. ))
  31965. characterMakers.push(() => makeCharacter(
  31966. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31967. {
  31968. back: {
  31969. height: math.unit(6, "feet"),
  31970. weight: math.unit(150, "lb"),
  31971. name: "Back",
  31972. image: {
  31973. source: "./media/characters/sylen/back.svg",
  31974. extra: 1335/1273,
  31975. bottom: 107/1442
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(5 + 5/12, "feet")
  31983. },
  31984. {
  31985. name: "Megamacro",
  31986. height: math.unit(3, "miles"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(6, "feet"),
  31996. weight: math.unit(190, "lb"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/huttser/front.svg",
  32000. extra: 1152/1058,
  32001. bottom: 23/1175
  32002. }
  32003. },
  32004. side: {
  32005. height: math.unit(6, "feet"),
  32006. weight: math.unit(190, "lb"),
  32007. name: "Side",
  32008. image: {
  32009. source: "./media/characters/huttser/side.svg",
  32010. extra: 1174/1065,
  32011. bottom: 18/1192
  32012. }
  32013. },
  32014. back: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(190, "lb"),
  32017. name: "Back",
  32018. image: {
  32019. source: "./media/characters/huttser/back.svg",
  32020. extra: 1158/1056,
  32021. bottom: 12/1170
  32022. }
  32023. },
  32024. },
  32025. [
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32030. {
  32031. side: {
  32032. height: math.unit(12 + 9/12, "feet"),
  32033. weight: math.unit(15000, "lb"),
  32034. name: "Side",
  32035. image: {
  32036. source: "./media/characters/faan/side.svg",
  32037. extra: 2747/2697,
  32038. bottom: 0/2747
  32039. }
  32040. },
  32041. front: {
  32042. height: math.unit(12 + 9/12, "feet"),
  32043. weight: math.unit(15000, "lb"),
  32044. name: "Front",
  32045. image: {
  32046. source: "./media/characters/faan/front.svg",
  32047. extra: 607/571,
  32048. bottom: 24/631
  32049. }
  32050. },
  32051. head: {
  32052. height: math.unit(2.85, "feet"),
  32053. name: "Head",
  32054. image: {
  32055. source: "./media/characters/faan/head.svg"
  32056. }
  32057. },
  32058. headAlt: {
  32059. height: math.unit(3.13, "feet"),
  32060. name: "Head-alt",
  32061. image: {
  32062. source: "./media/characters/faan/head-alt.svg"
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(12 + 9/12, "feet"),
  32070. default: true
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32076. {
  32077. front: {
  32078. height: math.unit(6, "feet"),
  32079. weight: math.unit(300, "lb"),
  32080. name: "Front",
  32081. image: {
  32082. source: "./media/characters/tanio/front.svg",
  32083. extra: 711/673,
  32084. bottom: 25/736
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Normal",
  32091. height: math.unit(6, "feet"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(3, "inches"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/noboru/front.svg",
  32104. extra: 1039/932,
  32105. bottom: 18/1057
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Micro",
  32112. height: math.unit(3, "inches"),
  32113. default: true
  32114. },
  32115. ]
  32116. ))
  32117. characterMakers.push(() => makeCharacter(
  32118. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32119. {
  32120. front: {
  32121. height: math.unit(1.85, "meters"),
  32122. weight: math.unit(80, "kg"),
  32123. name: "Front",
  32124. image: {
  32125. source: "./media/characters/daniel-barrett/front.svg",
  32126. extra: 355/337,
  32127. bottom: 9/364
  32128. }
  32129. },
  32130. },
  32131. [
  32132. {
  32133. name: "Pico",
  32134. height: math.unit(0.0433, "mm")
  32135. },
  32136. {
  32137. name: "Nano",
  32138. height: math.unit(1.5, "mm")
  32139. },
  32140. {
  32141. name: "Micro",
  32142. height: math.unit(5.3, "cm"),
  32143. default: true
  32144. },
  32145. {
  32146. name: "Normal",
  32147. height: math.unit(1.85, "meters")
  32148. },
  32149. {
  32150. name: "Macro",
  32151. height: math.unit(64.7, "meters")
  32152. },
  32153. {
  32154. name: "Megamacro",
  32155. height: math.unit(2.26, "km")
  32156. },
  32157. {
  32158. name: "Gigamacro",
  32159. height: math.unit(79, "km")
  32160. },
  32161. {
  32162. name: "Teramacro",
  32163. height: math.unit(2765, "km")
  32164. },
  32165. {
  32166. name: "Petamacro",
  32167. height: math.unit(96678, "km")
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32173. {
  32174. front: {
  32175. height: math.unit(30, "meters"),
  32176. weight: math.unit(400, "tons"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/zeel/front.svg",
  32180. extra: 2599/2599,
  32181. bottom: 226/2825
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Macro",
  32188. height: math.unit(30, "meters"),
  32189. default: true
  32190. },
  32191. ]
  32192. ))
  32193. characterMakers.push(() => makeCharacter(
  32194. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32195. {
  32196. front: {
  32197. height: math.unit(6 + 7/12, "feet"),
  32198. weight: math.unit(210, "lb"),
  32199. name: "Front",
  32200. image: {
  32201. source: "./media/characters/tarn/front.svg",
  32202. extra: 3517/3220,
  32203. bottom: 91/3608
  32204. }
  32205. },
  32206. back: {
  32207. height: math.unit(6 + 7/12, "feet"),
  32208. weight: math.unit(210, "lb"),
  32209. name: "Back",
  32210. image: {
  32211. source: "./media/characters/tarn/back.svg",
  32212. extra: 3566/3241,
  32213. bottom: 34/3600
  32214. }
  32215. },
  32216. dick: {
  32217. height: math.unit(1.65, "feet"),
  32218. name: "Dick",
  32219. image: {
  32220. source: "./media/characters/tarn/dick.svg"
  32221. }
  32222. },
  32223. paw: {
  32224. height: math.unit(1.80, "feet"),
  32225. name: "Paw",
  32226. image: {
  32227. source: "./media/characters/tarn/paw.svg"
  32228. }
  32229. },
  32230. tongue: {
  32231. height: math.unit(0.97, "feet"),
  32232. name: "Tongue",
  32233. image: {
  32234. source: "./media/characters/tarn/tongue.svg"
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Micro",
  32241. height: math.unit(4, "inches")
  32242. },
  32243. {
  32244. name: "Normal",
  32245. height: math.unit(6 + 7/12, "feet"),
  32246. default: true
  32247. },
  32248. {
  32249. name: "Macro",
  32250. height: math.unit(300, "feet")
  32251. },
  32252. ]
  32253. ))
  32254. characterMakers.push(() => makeCharacter(
  32255. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32256. {
  32257. front: {
  32258. height: math.unit(5 + 7/12, "feet"),
  32259. weight: math.unit(80, "kg"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32263. extra: 3023/2865,
  32264. bottom: 33/3056
  32265. }
  32266. },
  32267. back: {
  32268. height: math.unit(5 + 7/12, "feet"),
  32269. weight: math.unit(80, "kg"),
  32270. name: "Back",
  32271. image: {
  32272. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32273. extra: 3020/2886,
  32274. bottom: 30/3050
  32275. }
  32276. },
  32277. dick: {
  32278. height: math.unit(0.98, "feet"),
  32279. name: "Dick",
  32280. image: {
  32281. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32282. }
  32283. },
  32284. anatomy: {
  32285. height: math.unit(2.86, "feet"),
  32286. name: "Anatomy",
  32287. image: {
  32288. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Really Small",
  32295. height: math.unit(2, "inches")
  32296. },
  32297. {
  32298. name: "Micro",
  32299. height: math.unit(5.583, "inches")
  32300. },
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(5 + 7/12, "feet"),
  32304. default: true
  32305. },
  32306. {
  32307. name: "Macro",
  32308. height: math.unit(67, "feet")
  32309. },
  32310. {
  32311. name: "Megamacro",
  32312. height: math.unit(134, "feet")
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(9, "feet"),
  32321. weight: math.unit(120, "lb"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/sally/front.svg",
  32325. extra: 1506/1349,
  32326. bottom: 66/1572
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(9, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32340. {
  32341. front: {
  32342. height: math.unit(8, "feet"),
  32343. weight: math.unit(900, "lb"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/owen/front.svg",
  32347. extra: 1761/1657,
  32348. bottom: 74/1835
  32349. }
  32350. },
  32351. side: {
  32352. height: math.unit(8, "feet"),
  32353. weight: math.unit(900, "lb"),
  32354. name: "Side",
  32355. image: {
  32356. source: "./media/characters/owen/side.svg",
  32357. extra: 1797/1734,
  32358. bottom: 30/1827
  32359. }
  32360. },
  32361. back: {
  32362. height: math.unit(8, "feet"),
  32363. weight: math.unit(900, "lb"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/owen/back.svg",
  32367. extra: 1796/1706,
  32368. bottom: 59/1855
  32369. }
  32370. },
  32371. maw: {
  32372. height: math.unit(1.76, "feet"),
  32373. name: "Maw",
  32374. image: {
  32375. source: "./media/characters/owen/maw.svg"
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Normal",
  32382. height: math.unit(8, "feet"),
  32383. default: true
  32384. },
  32385. ]
  32386. ))
  32387. characterMakers.push(() => makeCharacter(
  32388. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32389. {
  32390. front: {
  32391. height: math.unit(4, "feet"),
  32392. weight: math.unit(400, "lb"),
  32393. name: "Front",
  32394. image: {
  32395. source: "./media/characters/ryth/front.svg",
  32396. extra: 1920/1748,
  32397. bottom: 42/1962
  32398. }
  32399. },
  32400. back: {
  32401. height: math.unit(4, "feet"),
  32402. weight: math.unit(400, "lb"),
  32403. name: "Back",
  32404. image: {
  32405. source: "./media/characters/ryth/back.svg",
  32406. extra: 1897/1690,
  32407. bottom: 89/1986
  32408. }
  32409. },
  32410. mouth: {
  32411. height: math.unit(1.39, "feet"),
  32412. name: "Mouth",
  32413. image: {
  32414. source: "./media/characters/ryth/mouth.svg"
  32415. }
  32416. },
  32417. tailmaw: {
  32418. height: math.unit(1.23, "feet"),
  32419. name: "Tailmaw",
  32420. image: {
  32421. source: "./media/characters/ryth/tailmaw.svg"
  32422. }
  32423. },
  32424. goia: {
  32425. height: math.unit(4, "meters"),
  32426. weight: math.unit(10800, "lb"),
  32427. name: "Goia",
  32428. image: {
  32429. source: "./media/characters/ryth/goia.svg",
  32430. extra: 745/640,
  32431. bottom: 107/852
  32432. }
  32433. },
  32434. goiaFront: {
  32435. height: math.unit(4, "meters"),
  32436. weight: math.unit(10800, "lb"),
  32437. name: "Goia (Front)",
  32438. image: {
  32439. source: "./media/characters/ryth/goia-front.svg",
  32440. extra: 750/586,
  32441. bottom: 114/864
  32442. }
  32443. },
  32444. goiaMaw: {
  32445. height: math.unit(5.55, "feet"),
  32446. name: "Goia Maw",
  32447. image: {
  32448. source: "./media/characters/ryth/goia-maw.svg"
  32449. }
  32450. },
  32451. goiaForepaw: {
  32452. height: math.unit(3.5, "feet"),
  32453. name: "Goia Forepaw",
  32454. image: {
  32455. source: "./media/characters/ryth/goia-forepaw.svg"
  32456. }
  32457. },
  32458. goiaHindpaw: {
  32459. height: math.unit(5.55, "feet"),
  32460. name: "Goia Hindpaw",
  32461. image: {
  32462. source: "./media/characters/ryth/goia-hindpaw.svg"
  32463. }
  32464. },
  32465. },
  32466. [
  32467. {
  32468. name: "Normal",
  32469. height: math.unit(4, "feet"),
  32470. default: true
  32471. },
  32472. ]
  32473. ))
  32474. characterMakers.push(() => makeCharacter(
  32475. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32476. {
  32477. front: {
  32478. height: math.unit(7, "feet"),
  32479. weight: math.unit(180, "lb"),
  32480. name: "Front",
  32481. image: {
  32482. source: "./media/characters/necrolance/front.svg",
  32483. extra: 1062/947,
  32484. bottom: 41/1103
  32485. }
  32486. },
  32487. back: {
  32488. height: math.unit(7, "feet"),
  32489. weight: math.unit(180, "lb"),
  32490. name: "Back",
  32491. image: {
  32492. source: "./media/characters/necrolance/back.svg",
  32493. extra: 1045/984,
  32494. bottom: 14/1059
  32495. }
  32496. },
  32497. wing: {
  32498. height: math.unit(2.67, "feet"),
  32499. name: "Wing",
  32500. image: {
  32501. source: "./media/characters/necrolance/wing.svg"
  32502. }
  32503. },
  32504. },
  32505. [
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(7, "feet"),
  32509. default: true
  32510. },
  32511. ]
  32512. ))
  32513. characterMakers.push(() => makeCharacter(
  32514. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32515. {
  32516. front: {
  32517. height: math.unit(76, "meters"),
  32518. weight: math.unit(30000, "tons"),
  32519. name: "Front",
  32520. image: {
  32521. source: "./media/characters/tyler/front.svg",
  32522. extra: 1640/1640,
  32523. bottom: 114/1754
  32524. }
  32525. },
  32526. },
  32527. [
  32528. {
  32529. name: "Macro",
  32530. height: math.unit(76, "meters"),
  32531. default: true
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(4 + 11/12, "feet"),
  32540. weight: math.unit(132, "lb"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/icey/front.svg",
  32544. extra: 2750/2550,
  32545. bottom: 33/2783
  32546. }
  32547. },
  32548. back: {
  32549. height: math.unit(4 + 11/12, "feet"),
  32550. weight: math.unit(132, "lb"),
  32551. name: "Back",
  32552. image: {
  32553. source: "./media/characters/icey/back.svg",
  32554. extra: 2624/2481,
  32555. bottom: 35/2659
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Normal",
  32562. height: math.unit(4 + 11/12, "feet"),
  32563. default: true
  32564. },
  32565. ]
  32566. ))
  32567. characterMakers.push(() => makeCharacter(
  32568. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32569. {
  32570. front: {
  32571. height: math.unit(100, "feet"),
  32572. weight: math.unit(0, "lb"),
  32573. name: "Front",
  32574. image: {
  32575. source: "./media/characters/smile/front.svg",
  32576. extra: 2983/2912,
  32577. bottom: 162/3145
  32578. }
  32579. },
  32580. back: {
  32581. height: math.unit(100, "feet"),
  32582. weight: math.unit(0, "lb"),
  32583. name: "Back",
  32584. image: {
  32585. source: "./media/characters/smile/back.svg",
  32586. extra: 3143/3031,
  32587. bottom: 91/3234
  32588. }
  32589. },
  32590. head: {
  32591. height: math.unit(26.3, "feet"),
  32592. weight: math.unit(0, "lb"),
  32593. name: "Head",
  32594. image: {
  32595. source: "./media/characters/smile/head.svg"
  32596. }
  32597. },
  32598. collar: {
  32599. height: math.unit(5.3, "feet"),
  32600. weight: math.unit(0, "lb"),
  32601. name: "Collar",
  32602. image: {
  32603. source: "./media/characters/smile/collar.svg"
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Macro",
  32610. height: math.unit(100, "feet"),
  32611. default: true
  32612. },
  32613. ]
  32614. ))
  32615. characterMakers.push(() => makeCharacter(
  32616. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32617. {
  32618. dragon: {
  32619. height: math.unit(26, "feet"),
  32620. weight: math.unit(36, "tons"),
  32621. name: "Dragon",
  32622. image: {
  32623. source: "./media/characters/arimphae/dragon.svg",
  32624. extra: 1574/983,
  32625. bottom: 357/1931
  32626. }
  32627. },
  32628. drake: {
  32629. height: math.unit(9, "feet"),
  32630. weight: math.unit(1.5, "tons"),
  32631. name: "Drake",
  32632. image: {
  32633. source: "./media/characters/arimphae/drake.svg",
  32634. extra: 1120/925,
  32635. bottom: 435/1555
  32636. }
  32637. },
  32638. },
  32639. [
  32640. {
  32641. name: "Small",
  32642. height: math.unit(26*5/9, "feet")
  32643. },
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(26, "feet"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32653. {
  32654. front: {
  32655. height: math.unit(8 + 9/12, "feet"),
  32656. name: "Front",
  32657. image: {
  32658. source: "./media/characters/xander/front.svg",
  32659. extra: 1237/974,
  32660. bottom: 94/1331
  32661. }
  32662. },
  32663. },
  32664. [
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(8 + 9/12, "feet"),
  32668. default: true
  32669. },
  32670. {
  32671. name: "Gaze Grabber",
  32672. height: math.unit(13 + 8/12, "feet")
  32673. },
  32674. {
  32675. name: "Jaw Dropper",
  32676. height: math.unit(27, "feet")
  32677. },
  32678. {
  32679. name: "Show Stopper",
  32680. height: math.unit(136, "feet")
  32681. },
  32682. {
  32683. name: "Superstar",
  32684. height: math.unit(1.9e6, "miles")
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32690. {
  32691. side: {
  32692. height: math.unit(2100, "feet"),
  32693. name: "Side",
  32694. image: {
  32695. source: "./media/characters/osiris/side.svg",
  32696. extra: 1105/939,
  32697. bottom: 167/1272
  32698. }
  32699. },
  32700. },
  32701. [
  32702. {
  32703. name: "Macro",
  32704. height: math.unit(2100, "feet"),
  32705. default: true
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(6 + 8/12, "feet"),
  32714. weight: math.unit(225, "lb"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/rhys-londe/front.svg",
  32718. extra: 2258/2141,
  32719. bottom: 188/2446
  32720. }
  32721. },
  32722. back: {
  32723. height: math.unit(6 + 8/12, "feet"),
  32724. weight: math.unit(225, "lb"),
  32725. name: "Back",
  32726. image: {
  32727. source: "./media/characters/rhys-londe/back.svg",
  32728. extra: 2237/2137,
  32729. bottom: 63/2300
  32730. }
  32731. },
  32732. frontNsfw: {
  32733. height: math.unit(6 + 8/12, "feet"),
  32734. weight: math.unit(225, "lb"),
  32735. name: "Front (NSFW)",
  32736. image: {
  32737. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32738. extra: 2258/2141,
  32739. bottom: 188/2446
  32740. }
  32741. },
  32742. backNsfw: {
  32743. height: math.unit(6 + 8/12, "feet"),
  32744. weight: math.unit(225, "lb"),
  32745. name: "Back (NSFW)",
  32746. image: {
  32747. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32748. extra: 2237/2137,
  32749. bottom: 63/2300
  32750. }
  32751. },
  32752. dick: {
  32753. height: math.unit(30, "inches"),
  32754. name: "Dick",
  32755. image: {
  32756. source: "./media/characters/rhys-londe/dick.svg"
  32757. }
  32758. },
  32759. maw: {
  32760. height: math.unit(1.6, "feet"),
  32761. name: "Maw",
  32762. image: {
  32763. source: "./media/characters/rhys-londe/maw.svg"
  32764. }
  32765. },
  32766. },
  32767. [
  32768. {
  32769. name: "Normal",
  32770. height: math.unit(6 + 8/12, "feet"),
  32771. default: true
  32772. },
  32773. ]
  32774. ))
  32775. characterMakers.push(() => makeCharacter(
  32776. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32777. {
  32778. front: {
  32779. height: math.unit(3 + 10/12, "feet"),
  32780. weight: math.unit(90, "lb"),
  32781. name: "Front",
  32782. image: {
  32783. source: "./media/characters/taivas-ensim/front.svg",
  32784. extra: 1327/1216,
  32785. bottom: 96/1423
  32786. }
  32787. },
  32788. back: {
  32789. height: math.unit(3 + 10/12, "feet"),
  32790. weight: math.unit(90, "lb"),
  32791. name: "Back",
  32792. image: {
  32793. source: "./media/characters/taivas-ensim/back.svg",
  32794. extra: 1355/1247,
  32795. bottom: 11/1366
  32796. }
  32797. },
  32798. frontNsfw: {
  32799. height: math.unit(3 + 10/12, "feet"),
  32800. weight: math.unit(90, "lb"),
  32801. name: "Front (NSFW)",
  32802. image: {
  32803. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32804. extra: 1327/1216,
  32805. bottom: 96/1423
  32806. }
  32807. },
  32808. backNsfw: {
  32809. height: math.unit(3 + 10/12, "feet"),
  32810. weight: math.unit(90, "lb"),
  32811. name: "Back (NSFW)",
  32812. image: {
  32813. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32814. extra: 1355/1247,
  32815. bottom: 11/1366
  32816. }
  32817. },
  32818. },
  32819. [
  32820. {
  32821. name: "Normal",
  32822. height: math.unit(3 + 10/12, "feet"),
  32823. default: true
  32824. },
  32825. ]
  32826. ))
  32827. characterMakers.push(() => makeCharacter(
  32828. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32829. {
  32830. front: {
  32831. height: math.unit(9 + 6/12, "feet"),
  32832. weight: math.unit(940, "lb"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/byliss/front.svg",
  32836. extra: 1327/1290,
  32837. bottom: 82/1409
  32838. }
  32839. },
  32840. back: {
  32841. height: math.unit(9 + 6/12, "feet"),
  32842. weight: math.unit(940, "lb"),
  32843. name: "Back",
  32844. image: {
  32845. source: "./media/characters/byliss/back.svg",
  32846. extra: 1376/1349,
  32847. bottom: 9/1385
  32848. }
  32849. },
  32850. frontNsfw: {
  32851. height: math.unit(9 + 6/12, "feet"),
  32852. weight: math.unit(940, "lb"),
  32853. name: "Front (NSFW)",
  32854. image: {
  32855. source: "./media/characters/byliss/front-nsfw.svg",
  32856. extra: 1327/1290,
  32857. bottom: 82/1409
  32858. }
  32859. },
  32860. backNsfw: {
  32861. height: math.unit(9 + 6/12, "feet"),
  32862. weight: math.unit(940, "lb"),
  32863. name: "Back (NSFW)",
  32864. image: {
  32865. source: "./media/characters/byliss/back-nsfw.svg",
  32866. extra: 1376/1349,
  32867. bottom: 9/1385
  32868. }
  32869. },
  32870. },
  32871. [
  32872. {
  32873. name: "Normal",
  32874. height: math.unit(9 + 6/12, "feet"),
  32875. default: true
  32876. },
  32877. ]
  32878. ))
  32879. characterMakers.push(() => makeCharacter(
  32880. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32881. {
  32882. front: {
  32883. height: math.unit(5 + 2/12, "feet"),
  32884. weight: math.unit(200, "lb"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/noraly/front.svg",
  32888. extra: 4985/4773,
  32889. bottom: 150/5135
  32890. }
  32891. },
  32892. full: {
  32893. height: math.unit(5 + 2/12, "feet"),
  32894. weight: math.unit(164, "lb"),
  32895. name: "Full",
  32896. image: {
  32897. source: "./media/characters/noraly/full.svg",
  32898. extra: 1114/1059,
  32899. bottom: 35/1149
  32900. }
  32901. },
  32902. fuller: {
  32903. height: math.unit(5 + 2/12, "feet"),
  32904. weight: math.unit(230, "lb"),
  32905. name: "Fuller",
  32906. image: {
  32907. source: "./media/characters/noraly/fuller.svg",
  32908. extra: 1114/1059,
  32909. bottom: 35/1149
  32910. }
  32911. },
  32912. fullest: {
  32913. height: math.unit(5 + 2/12, "feet"),
  32914. weight: math.unit(300, "lb"),
  32915. name: "Fullest",
  32916. image: {
  32917. source: "./media/characters/noraly/fullest.svg",
  32918. extra: 1114/1059,
  32919. bottom: 35/1149
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(5 + 2/12, "feet"),
  32927. default: true
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32933. {
  32934. front: {
  32935. height: math.unit(5 + 2/12, "feet"),
  32936. weight: math.unit(210, "lb"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/pera/front.svg",
  32940. extra: 1560/1531,
  32941. bottom: 165/1725
  32942. }
  32943. },
  32944. back: {
  32945. height: math.unit(5 + 2/12, "feet"),
  32946. weight: math.unit(210, "lb"),
  32947. name: "Back",
  32948. image: {
  32949. source: "./media/characters/pera/back.svg",
  32950. extra: 1523/1493,
  32951. bottom: 152/1675
  32952. }
  32953. },
  32954. dick: {
  32955. height: math.unit(2.4, "feet"),
  32956. name: "Dick",
  32957. image: {
  32958. source: "./media/characters/pera/dick.svg"
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Normal",
  32965. height: math.unit(5 + 2/12, "feet"),
  32966. default: true
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32972. {
  32973. front: {
  32974. height: math.unit(12, "feet"),
  32975. weight: math.unit(3200, "lb"),
  32976. name: "Front",
  32977. image: {
  32978. source: "./media/characters/julian/front.svg",
  32979. extra: 2962/2701,
  32980. bottom: 184/3146
  32981. }
  32982. },
  32983. maw: {
  32984. height: math.unit(5.35, "feet"),
  32985. name: "Maw",
  32986. image: {
  32987. source: "./media/characters/julian/maw.svg"
  32988. }
  32989. },
  32990. paw: {
  32991. height: math.unit(3.07, "feet"),
  32992. name: "Paw",
  32993. image: {
  32994. source: "./media/characters/julian/paw.svg"
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Default",
  33001. height: math.unit(12, "feet"),
  33002. default: true
  33003. },
  33004. {
  33005. name: "Big",
  33006. height: math.unit(50, "feet")
  33007. },
  33008. {
  33009. name: "Really Big",
  33010. height: math.unit(1, "mile")
  33011. },
  33012. {
  33013. name: "Extremely Big",
  33014. height: math.unit(100, "miles")
  33015. },
  33016. {
  33017. name: "Planet Hugger",
  33018. height: math.unit(200, "megameters")
  33019. },
  33020. {
  33021. name: "Unreasonably Big",
  33022. height: math.unit(1e300, "meters")
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33028. {
  33029. solgooleo: {
  33030. height: math.unit(4, "meters"),
  33031. weight: math.unit(6000*1.5, "kg"),
  33032. volume: math.unit(6000, "liters"),
  33033. name: "Solgooleo",
  33034. image: {
  33035. source: "./media/characters/pi/solgooleo.svg",
  33036. extra: 388/331,
  33037. bottom: 29/417
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(4, "meters"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33051. {
  33052. front: {
  33053. height: math.unit(8, "feet"),
  33054. weight: math.unit(4, "tons"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/shaun/front.svg",
  33058. extra: 503/495,
  33059. bottom: 20/523
  33060. }
  33061. },
  33062. back: {
  33063. height: math.unit(8, "feet"),
  33064. weight: math.unit(4, "tons"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/shaun/back.svg",
  33068. extra: 487/480,
  33069. bottom: 20/507
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Lorg",
  33076. height: math.unit(8, "feet"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33083. {
  33084. frontAnthro: {
  33085. height: math.unit(7, "feet"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/sini/front-anthro.svg",
  33089. extra: 726/678,
  33090. bottom: 35/761
  33091. },
  33092. form: "anthro",
  33093. default: true
  33094. },
  33095. backAnthro: {
  33096. height: math.unit(7, "feet"),
  33097. name: "Back",
  33098. image: {
  33099. source: "./media/characters/sini/back-anthro.svg",
  33100. extra: 743/701,
  33101. bottom: 12/755
  33102. },
  33103. form: "anthro",
  33104. },
  33105. frontAnthroNsfw: {
  33106. height: math.unit(7, "feet"),
  33107. name: "Front (NSFW)",
  33108. image: {
  33109. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33110. extra: 726/678,
  33111. bottom: 35/761
  33112. },
  33113. form: "anthro"
  33114. },
  33115. backAnthroNsfw: {
  33116. height: math.unit(7, "feet"),
  33117. name: "Back (NSFW)",
  33118. image: {
  33119. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33120. extra: 743/701,
  33121. bottom: 12/755
  33122. },
  33123. form: "anthro",
  33124. },
  33125. mawAnthro: {
  33126. height: math.unit(2.14, "feet"),
  33127. name: "Maw",
  33128. image: {
  33129. source: "./media/characters/sini/maw-anthro.svg"
  33130. },
  33131. form: "anthro"
  33132. },
  33133. dick: {
  33134. height: math.unit(1.45, "feet"),
  33135. name: "Dick",
  33136. image: {
  33137. source: "./media/characters/sini/dick-anthro.svg"
  33138. },
  33139. form: "anthro"
  33140. },
  33141. feral: {
  33142. height: math.unit(16, "feet"),
  33143. name: "Feral",
  33144. image: {
  33145. source: "./media/characters/sini/feral.svg",
  33146. extra: 814/605,
  33147. bottom: 11/825
  33148. },
  33149. form: "feral",
  33150. default: true
  33151. },
  33152. feralNsfw: {
  33153. height: math.unit(16, "feet"),
  33154. name: "Feral (NSFW)",
  33155. image: {
  33156. source: "./media/characters/sini/feral-nsfw.svg",
  33157. extra: 814/605,
  33158. bottom: 11/825
  33159. },
  33160. form: "feral"
  33161. },
  33162. mawFeral: {
  33163. height: math.unit(5.66, "feet"),
  33164. name: "Maw",
  33165. image: {
  33166. source: "./media/characters/sini/maw-feral.svg"
  33167. },
  33168. form: "feral",
  33169. },
  33170. pawFeral: {
  33171. height: math.unit(5.17, "feet"),
  33172. name: "Paw",
  33173. image: {
  33174. source: "./media/characters/sini/paw-feral.svg"
  33175. },
  33176. form: "feral",
  33177. },
  33178. rumpFeral: {
  33179. height: math.unit(13.11, "feet"),
  33180. name: "Rump",
  33181. image: {
  33182. source: "./media/characters/sini/rump-feral.svg"
  33183. },
  33184. form: "feral",
  33185. },
  33186. dickFeral: {
  33187. height: math.unit(1, "feet"),
  33188. name: "Dick",
  33189. image: {
  33190. source: "./media/characters/sini/dick-feral.svg"
  33191. },
  33192. form: "feral",
  33193. },
  33194. eyeFeral: {
  33195. height: math.unit(1.23, "feet"),
  33196. name: "Eye",
  33197. image: {
  33198. source: "./media/characters/sini/eye-feral.svg"
  33199. },
  33200. form: "feral",
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Normal",
  33206. height: math.unit(7, "feet"),
  33207. default: true,
  33208. form: "anthro"
  33209. },
  33210. {
  33211. name: "Normal",
  33212. height: math.unit(16, "feet"),
  33213. default: true,
  33214. form: "feral"
  33215. },
  33216. ],
  33217. {
  33218. "anthro": {
  33219. name: "Anthro",
  33220. default: true
  33221. },
  33222. "feral": {
  33223. name: "Feral",
  33224. }
  33225. }
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33229. {
  33230. side: {
  33231. height: math.unit(13, "meters"),
  33232. weight: math.unit(9072, "kg"),
  33233. name: "Side",
  33234. image: {
  33235. source: "./media/characters/raylldo/side.svg",
  33236. extra: 403/344,
  33237. bottom: 42/445
  33238. }
  33239. },
  33240. leaping: {
  33241. height: math.unit(12.3, "meters"),
  33242. weight: math.unit(9072, "kg"),
  33243. name: "Leaping",
  33244. image: {
  33245. source: "./media/characters/raylldo/leaping.svg",
  33246. extra: 470/249,
  33247. bottom: 13/483
  33248. }
  33249. },
  33250. flying: {
  33251. height: math.unit(18, "meters"),
  33252. weight: math.unit(9072, "kg"),
  33253. name: "Flying",
  33254. image: {
  33255. source: "./media/characters/raylldo/flying.svg"
  33256. }
  33257. },
  33258. head: {
  33259. height: math.unit(5.85, "meters"),
  33260. name: "Head",
  33261. image: {
  33262. source: "./media/characters/raylldo/head.svg"
  33263. }
  33264. },
  33265. maw: {
  33266. height: math.unit(5.32, "meters"),
  33267. name: "Maw",
  33268. image: {
  33269. source: "./media/characters/raylldo/maw.svg"
  33270. }
  33271. },
  33272. eye: {
  33273. height: math.unit(0.54, "meters"),
  33274. name: "Eye",
  33275. image: {
  33276. source: "./media/characters/raylldo/eye.svg"
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(13, "meters"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33290. {
  33291. anthroFront: {
  33292. height: math.unit(9, "feet"),
  33293. weight: math.unit(600, "lb"),
  33294. name: "Anthro (Front)",
  33295. image: {
  33296. source: "./media/characters/glint/anthro-front.svg",
  33297. extra: 1097/1018,
  33298. bottom: 28/1125
  33299. }
  33300. },
  33301. anthroBack: {
  33302. height: math.unit(9, "feet"),
  33303. weight: math.unit(600, "lb"),
  33304. name: "Anthro (Back)",
  33305. image: {
  33306. source: "./media/characters/glint/anthro-back.svg",
  33307. extra: 1154/997,
  33308. bottom: 36/1190
  33309. }
  33310. },
  33311. feral: {
  33312. height: math.unit(11, "feet"),
  33313. weight: math.unit(50000, "lb"),
  33314. name: "Feral",
  33315. image: {
  33316. source: "./media/characters/glint/feral.svg",
  33317. extra: 3035/1585,
  33318. bottom: 1169/4204
  33319. }
  33320. },
  33321. dickAnthro: {
  33322. height: math.unit(0.7, "meters"),
  33323. name: "Dick (Anthro)",
  33324. image: {
  33325. source: "./media/characters/glint/dick-anthro.svg"
  33326. }
  33327. },
  33328. dickFeral: {
  33329. height: math.unit(2.65, "meters"),
  33330. name: "Dick (Feral)",
  33331. image: {
  33332. source: "./media/characters/glint/dick-feral.svg"
  33333. }
  33334. },
  33335. slitHidden: {
  33336. height: math.unit(5.85, "meters"),
  33337. name: "Slit (Hidden)",
  33338. image: {
  33339. source: "./media/characters/glint/slit-hidden.svg"
  33340. }
  33341. },
  33342. slitErect: {
  33343. height: math.unit(5.85, "meters"),
  33344. name: "Slit (Erect)",
  33345. image: {
  33346. source: "./media/characters/glint/slit-erect.svg"
  33347. }
  33348. },
  33349. mawAnthro: {
  33350. height: math.unit(0.63, "meters"),
  33351. name: "Maw (Anthro)",
  33352. image: {
  33353. source: "./media/characters/glint/maw.svg"
  33354. }
  33355. },
  33356. mawFeral: {
  33357. height: math.unit(2.89, "meters"),
  33358. name: "Maw (Feral)",
  33359. image: {
  33360. source: "./media/characters/glint/maw.svg"
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(9, "feet"),
  33368. default: true
  33369. },
  33370. ]
  33371. ))
  33372. characterMakers.push(() => makeCharacter(
  33373. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33374. {
  33375. side: {
  33376. height: math.unit(15, "feet"),
  33377. weight: math.unit(5000, "kg"),
  33378. name: "Side",
  33379. image: {
  33380. source: "./media/characters/kairne/side.svg",
  33381. extra: 979/811,
  33382. bottom: 13/992
  33383. }
  33384. },
  33385. front: {
  33386. height: math.unit(15, "feet"),
  33387. weight: math.unit(5000, "kg"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/kairne/front.svg",
  33391. extra: 908/814,
  33392. bottom: 26/934
  33393. }
  33394. },
  33395. sideNsfw: {
  33396. height: math.unit(15, "feet"),
  33397. weight: math.unit(5000, "kg"),
  33398. name: "Side (NSFW)",
  33399. image: {
  33400. source: "./media/characters/kairne/side-nsfw.svg",
  33401. extra: 979/811,
  33402. bottom: 13/992
  33403. }
  33404. },
  33405. frontNsfw: {
  33406. height: math.unit(15, "feet"),
  33407. weight: math.unit(5000, "kg"),
  33408. name: "Front (NSFW)",
  33409. image: {
  33410. source: "./media/characters/kairne/front-nsfw.svg",
  33411. extra: 908/814,
  33412. bottom: 26/934
  33413. }
  33414. },
  33415. dickCaged: {
  33416. height: math.unit(0.65, "meters"),
  33417. name: "Dick-caged",
  33418. image: {
  33419. source: "./media/characters/kairne/dick-caged.svg"
  33420. }
  33421. },
  33422. dick: {
  33423. height: math.unit(0.79, "meters"),
  33424. name: "Dick",
  33425. image: {
  33426. source: "./media/characters/kairne/dick.svg"
  33427. }
  33428. },
  33429. genitals: {
  33430. height: math.unit(1.29, "meters"),
  33431. name: "Genitals",
  33432. image: {
  33433. source: "./media/characters/kairne/genitals.svg"
  33434. }
  33435. },
  33436. maw: {
  33437. height: math.unit(1.73, "meters"),
  33438. name: "Maw",
  33439. image: {
  33440. source: "./media/characters/kairne/maw.svg"
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(15, "feet"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(5 + 8/12, "feet"),
  33457. weight: math.unit(139, "lb"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/biscuit-jackal/front.svg",
  33461. extra: 2106/1961,
  33462. bottom: 58/2164
  33463. }
  33464. },
  33465. back: {
  33466. height: math.unit(5 + 8/12, "feet"),
  33467. weight: math.unit(139, "lb"),
  33468. name: "Back",
  33469. image: {
  33470. source: "./media/characters/biscuit-jackal/back.svg",
  33471. extra: 2132/1976,
  33472. bottom: 57/2189
  33473. }
  33474. },
  33475. werejackal: {
  33476. height: math.unit(6 + 3/12, "feet"),
  33477. weight: math.unit(188, "lb"),
  33478. name: "Werejackal",
  33479. image: {
  33480. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33481. extra: 2373/2178,
  33482. bottom: 53/2426
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Normal",
  33489. height: math.unit(5 + 8/12, "feet"),
  33490. default: true
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33496. {
  33497. front: {
  33498. height: math.unit(140, "cm"),
  33499. weight: math.unit(45, "kg"),
  33500. name: "Front",
  33501. image: {
  33502. source: "./media/characters/tayra-white/front.svg",
  33503. extra: 2229/2192,
  33504. bottom: 75/2304
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(140, "cm"),
  33512. default: true
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(4 + 5/12, "feet"),
  33521. name: "Front",
  33522. image: {
  33523. source: "./media/characters/scoop/front.svg",
  33524. extra: 1257/1136,
  33525. bottom: 69/1326
  33526. }
  33527. },
  33528. back: {
  33529. height: math.unit(4 + 5/12, "feet"),
  33530. name: "Back",
  33531. image: {
  33532. source: "./media/characters/scoop/back.svg",
  33533. extra: 1321/1152,
  33534. bottom: 32/1353
  33535. }
  33536. },
  33537. maw: {
  33538. height: math.unit(0.68, "feet"),
  33539. name: "Maw",
  33540. image: {
  33541. source: "./media/characters/scoop/maw.svg"
  33542. }
  33543. },
  33544. },
  33545. [
  33546. {
  33547. name: "Really Small",
  33548. height: math.unit(1, "mm")
  33549. },
  33550. {
  33551. name: "Micro",
  33552. height: math.unit(1, "inch")
  33553. },
  33554. {
  33555. name: "Normal",
  33556. height: math.unit(4 + 5/12, "feet"),
  33557. default: true
  33558. },
  33559. {
  33560. name: "Macro",
  33561. height: math.unit(200, "feet")
  33562. },
  33563. {
  33564. name: "Megamacro",
  33565. height: math.unit(3240, "feet")
  33566. },
  33567. {
  33568. name: "Teramacro",
  33569. height: math.unit(2500, "miles")
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(15 + 7/12, "feet"),
  33578. name: "Front",
  33579. image: {
  33580. source: "./media/characters/saphinara/front.svg",
  33581. extra: 604/546,
  33582. bottom: 19/623
  33583. }
  33584. },
  33585. side: {
  33586. height: math.unit(15 + 7/12, "feet"),
  33587. name: "Side",
  33588. image: {
  33589. source: "./media/characters/saphinara/side.svg",
  33590. extra: 605/547,
  33591. bottom: 6/611
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(15 + 7/12, "feet"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/saphinara/back.svg",
  33599. extra: 591/531,
  33600. bottom: 13/604
  33601. }
  33602. },
  33603. frontTail: {
  33604. height: math.unit(15 + 7/12, "feet"),
  33605. name: "Front (Full Tail)",
  33606. image: {
  33607. source: "./media/characters/saphinara/front-tail.svg",
  33608. extra: 748/547,
  33609. bottom: 66/814
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(15 + 7/12, "feet"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Angry",
  33621. height: math.unit(30 + 6/12, "feet")
  33622. },
  33623. {
  33624. name: "Enraged",
  33625. height: math.unit(102 + 1/12, "feet")
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(6 + 8/12, "feet"),
  33634. weight: math.unit(300, "lb"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/jrain/front.svg",
  33638. extra: 3039/2865,
  33639. bottom: 399/3438
  33640. }
  33641. },
  33642. back: {
  33643. height: math.unit(6 + 8/12, "feet"),
  33644. weight: math.unit(300, "lb"),
  33645. name: "Back",
  33646. image: {
  33647. source: "./media/characters/jrain/back.svg",
  33648. extra: 3089/2938,
  33649. bottom: 172/3261
  33650. }
  33651. },
  33652. head: {
  33653. height: math.unit(2.14, "feet"),
  33654. name: "Head",
  33655. image: {
  33656. source: "./media/characters/jrain/head.svg"
  33657. }
  33658. },
  33659. maw: {
  33660. height: math.unit(1.77, "feet"),
  33661. name: "Maw",
  33662. image: {
  33663. source: "./media/characters/jrain/maw.svg"
  33664. }
  33665. },
  33666. leftHand: {
  33667. height: math.unit(1.1, "feet"),
  33668. name: "Left Hand",
  33669. image: {
  33670. source: "./media/characters/jrain/left-hand.svg"
  33671. }
  33672. },
  33673. rightHand: {
  33674. height: math.unit(1.1, "feet"),
  33675. name: "Right Hand",
  33676. image: {
  33677. source: "./media/characters/jrain/right-hand.svg"
  33678. }
  33679. },
  33680. eye: {
  33681. height: math.unit(0.35, "feet"),
  33682. name: "Eye",
  33683. image: {
  33684. source: "./media/characters/jrain/eye.svg"
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Normal",
  33691. height: math.unit(6 + 8/12, "feet"),
  33692. default: true
  33693. },
  33694. {
  33695. name: "Casually Large",
  33696. height: math.unit(25, "feet")
  33697. },
  33698. {
  33699. name: "Giant",
  33700. height: math.unit(100, "feet")
  33701. },
  33702. {
  33703. name: "Kaiju",
  33704. height: math.unit(300, "feet")
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33710. {
  33711. dragon: {
  33712. height: math.unit(5, "meters"),
  33713. name: "Dragon",
  33714. image: {
  33715. source: "./media/characters/sabrina/dragon.svg",
  33716. extra: 3670 / 2365,
  33717. bottom: 333 / 4003
  33718. }
  33719. },
  33720. gryphon: {
  33721. height: math.unit(3, "meters"),
  33722. name: "Gryphon",
  33723. image: {
  33724. source: "./media/characters/sabrina/gryphon.svg",
  33725. extra: 1576 / 945,
  33726. bottom: 71 / 1647
  33727. }
  33728. },
  33729. snake: {
  33730. height: math.unit(12, "meters"),
  33731. name: "Snake",
  33732. image: {
  33733. source: "./media/characters/sabrina/snake.svg",
  33734. extra: 1758 / 1320,
  33735. bottom: 186 / 1944
  33736. }
  33737. },
  33738. collar: {
  33739. height: math.unit(1.86, "meters"),
  33740. name: "Collar",
  33741. image: {
  33742. source: "./media/characters/sabrina/collar.svg"
  33743. }
  33744. },
  33745. eye: {
  33746. height: math.unit(0.53, "meters"),
  33747. name: "Eye",
  33748. image: {
  33749. source: "./media/characters/sabrina/eye.svg"
  33750. }
  33751. },
  33752. foot: {
  33753. height: math.unit(1.86, "meters"),
  33754. name: "Foot",
  33755. image: {
  33756. source: "./media/characters/sabrina/foot.svg"
  33757. }
  33758. },
  33759. hand: {
  33760. height: math.unit(1.32, "meters"),
  33761. name: "Hand",
  33762. image: {
  33763. source: "./media/characters/sabrina/hand.svg"
  33764. }
  33765. },
  33766. head: {
  33767. height: math.unit(2.44, "meters"),
  33768. name: "Head",
  33769. image: {
  33770. source: "./media/characters/sabrina/head.svg"
  33771. }
  33772. },
  33773. headAngry: {
  33774. height: math.unit(2.44, "meters"),
  33775. name: "Head (Angry))",
  33776. image: {
  33777. source: "./media/characters/sabrina/head-angry.svg"
  33778. }
  33779. },
  33780. maw: {
  33781. height: math.unit(1.65, "meters"),
  33782. name: "Maw",
  33783. image: {
  33784. source: "./media/characters/sabrina/maw.svg"
  33785. }
  33786. },
  33787. spikes: {
  33788. height: math.unit(1.69, "meters"),
  33789. name: "Spikes",
  33790. image: {
  33791. source: "./media/characters/sabrina/spikes.svg"
  33792. }
  33793. },
  33794. stomach: {
  33795. height: math.unit(1.15, "meters"),
  33796. name: "Stomach",
  33797. image: {
  33798. source: "./media/characters/sabrina/stomach.svg"
  33799. }
  33800. },
  33801. tongue: {
  33802. height: math.unit(1.27, "meters"),
  33803. name: "Tongue",
  33804. image: {
  33805. source: "./media/characters/sabrina/tongue.svg"
  33806. }
  33807. },
  33808. wingDorsal: {
  33809. height: math.unit(4.85, "meters"),
  33810. name: "Wing (Dorsal)",
  33811. image: {
  33812. source: "./media/characters/sabrina/wing-dorsal.svg"
  33813. }
  33814. },
  33815. wingVentral: {
  33816. height: math.unit(4.85, "meters"),
  33817. name: "Wing (Ventral)",
  33818. image: {
  33819. source: "./media/characters/sabrina/wing-ventral.svg"
  33820. }
  33821. },
  33822. },
  33823. [
  33824. {
  33825. name: "Normal",
  33826. height: math.unit(5, "meters"),
  33827. default: true
  33828. },
  33829. ]
  33830. ))
  33831. characterMakers.push(() => makeCharacter(
  33832. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33833. {
  33834. frontMaid: {
  33835. height: math.unit(5 + 5/12, "feet"),
  33836. weight: math.unit(130, "lb"),
  33837. name: "Front (Maid)",
  33838. image: {
  33839. source: "./media/characters/midnight-tales/front-maid.svg",
  33840. extra: 489/454,
  33841. bottom: 61/550
  33842. }
  33843. },
  33844. frontFormal: {
  33845. height: math.unit(5 + 5/12, "feet"),
  33846. weight: math.unit(130, "lb"),
  33847. name: "Front (Formal)",
  33848. image: {
  33849. source: "./media/characters/midnight-tales/front-formal.svg",
  33850. extra: 489/454,
  33851. bottom: 61/550
  33852. }
  33853. },
  33854. back: {
  33855. height: math.unit(5 + 5/12, "feet"),
  33856. weight: math.unit(130, "lb"),
  33857. name: "Back",
  33858. image: {
  33859. source: "./media/characters/midnight-tales/back.svg",
  33860. extra: 498/456,
  33861. bottom: 33/531
  33862. }
  33863. },
  33864. frontBeast: {
  33865. height: math.unit(40, "feet"),
  33866. weight: math.unit(64000, "lb"),
  33867. name: "Front (Beast)",
  33868. image: {
  33869. source: "./media/characters/midnight-tales/front-beast.svg",
  33870. extra: 927/860,
  33871. bottom: 53/980
  33872. }
  33873. },
  33874. backBeast: {
  33875. height: math.unit(40, "feet"),
  33876. weight: math.unit(64000, "lb"),
  33877. name: "Back (Beast)",
  33878. image: {
  33879. source: "./media/characters/midnight-tales/back-beast.svg",
  33880. extra: 929/855,
  33881. bottom: 16/945
  33882. }
  33883. },
  33884. footBeast: {
  33885. height: math.unit(6.7, "feet"),
  33886. name: "Foot (Beast)",
  33887. image: {
  33888. source: "./media/characters/midnight-tales/foot-beast.svg"
  33889. }
  33890. },
  33891. headBeast: {
  33892. height: math.unit(8, "feet"),
  33893. name: "Head (Beast)",
  33894. image: {
  33895. source: "./media/characters/midnight-tales/head-beast.svg"
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(5 + 5 / 12, "feet"),
  33903. default: true
  33904. },
  33905. {
  33906. name: "Macro",
  33907. height: math.unit(25, "feet")
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33913. {
  33914. front: {
  33915. height: math.unit(5 + 10/12, "feet"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/argon/front.svg",
  33919. extra: 2009/1935,
  33920. bottom: 118/2127
  33921. }
  33922. },
  33923. back: {
  33924. height: math.unit(5 + 10/12, "feet"),
  33925. name: "Back",
  33926. image: {
  33927. source: "./media/characters/argon/back.svg",
  33928. extra: 2047/1992,
  33929. bottom: 20/2067
  33930. }
  33931. },
  33932. frontDressed: {
  33933. height: math.unit(5 + 10/12, "feet"),
  33934. name: "Front (Dressed)",
  33935. image: {
  33936. source: "./media/characters/argon/front-dressed.svg",
  33937. extra: 2009/1935,
  33938. bottom: 118/2127
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 10/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(8 + 6/12, "feet"),
  33955. weight: math.unit(1150, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/kichi/front.svg",
  33959. extra: 1267/1164,
  33960. bottom: 61/1328
  33961. }
  33962. },
  33963. back: {
  33964. height: math.unit(8 + 6/12, "feet"),
  33965. weight: math.unit(1150, "lb"),
  33966. name: "Back",
  33967. image: {
  33968. source: "./media/characters/kichi/back.svg",
  33969. extra: 1273/1166,
  33970. bottom: 33/1306
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(8 + 6/12, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(6, "feet"),
  33987. weight: math.unit(210, "lb"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/manetel-greyscale/front.svg",
  33991. extra: 350/312,
  33992. bottom: 8/358
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Micro",
  33999. height: math.unit(2, "inches")
  34000. },
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(6, "feet"),
  34004. default: true
  34005. },
  34006. {
  34007. name: "Minimacro",
  34008. height: math.unit(17, "feet")
  34009. },
  34010. {
  34011. name: "Macro",
  34012. height: math.unit(117, "feet")
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34018. {
  34019. side: {
  34020. height: math.unit(5 + 1/12, "feet"),
  34021. weight: math.unit(418, "lb"),
  34022. name: "Side",
  34023. image: {
  34024. source: "./media/characters/softpurr/side.svg",
  34025. extra: 1993/1945,
  34026. bottom: 134/2127
  34027. }
  34028. },
  34029. front: {
  34030. height: math.unit(5 + 1/12, "feet"),
  34031. weight: math.unit(418, "lb"),
  34032. name: "Front",
  34033. image: {
  34034. source: "./media/characters/softpurr/front.svg",
  34035. extra: 1950/1856,
  34036. bottom: 174/2124
  34037. }
  34038. },
  34039. paw: {
  34040. height: math.unit(1, "feet"),
  34041. name: "Paw",
  34042. image: {
  34043. source: "./media/characters/softpurr/paw.svg"
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Normal",
  34050. height: math.unit(5 + 1/12, "feet"),
  34051. default: true
  34052. },
  34053. ]
  34054. ))
  34055. characterMakers.push(() => makeCharacter(
  34056. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34057. {
  34058. front: {
  34059. height: math.unit(260, "meters"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/anahita/front.svg",
  34063. extra: 665/635,
  34064. bottom: 89/754
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Macro",
  34071. height: math.unit(260, "meters"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(4 + 10/12, "feet"),
  34081. weight: math.unit(160, "lb"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/chip-mouse/front.svg",
  34085. extra: 3528/3408,
  34086. bottom: 0/3528
  34087. }
  34088. },
  34089. frontNsfw: {
  34090. height: math.unit(4 + 10/12, "feet"),
  34091. weight: math.unit(160, "lb"),
  34092. name: "Front (NSFW)",
  34093. image: {
  34094. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34095. extra: 3528/3408,
  34096. bottom: 0/3528
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Normal",
  34103. height: math.unit(4 + 10/12, "feet"),
  34104. default: true
  34105. },
  34106. ]
  34107. ))
  34108. characterMakers.push(() => makeCharacter(
  34109. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34110. {
  34111. side: {
  34112. height: math.unit(10, "feet"),
  34113. weight: math.unit(14000, "lb"),
  34114. name: "Side",
  34115. image: {
  34116. source: "./media/characters/kremm/side.svg",
  34117. extra: 1390/1053,
  34118. bottom: 90/1480
  34119. }
  34120. },
  34121. gut: {
  34122. height: math.unit(5.8, "feet"),
  34123. name: "Gut",
  34124. image: {
  34125. source: "./media/characters/kremm/gut.svg"
  34126. }
  34127. },
  34128. ass: {
  34129. height: math.unit(6.1, "feet"),
  34130. name: "Ass",
  34131. image: {
  34132. source: "./media/characters/kremm/ass.svg"
  34133. }
  34134. },
  34135. jaws: {
  34136. height: math.unit(2.2, "feet"),
  34137. name: "Jaws",
  34138. image: {
  34139. source: "./media/characters/kremm/jaws.svg"
  34140. }
  34141. },
  34142. dick: {
  34143. height: math.unit(4.26, "feet"),
  34144. name: "Dick",
  34145. image: {
  34146. source: "./media/characters/kremm/dick.svg"
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(10, "feet"),
  34154. default: true
  34155. },
  34156. ]
  34157. ))
  34158. characterMakers.push(() => makeCharacter(
  34159. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34160. {
  34161. front: {
  34162. height: math.unit(30, "stories"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/kai/front.svg",
  34166. extra: 1892/1718,
  34167. bottom: 162/2054
  34168. }
  34169. },
  34170. },
  34171. [
  34172. {
  34173. name: "Macro",
  34174. height: math.unit(30, "stories"),
  34175. default: true
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34181. {
  34182. front: {
  34183. height: math.unit(6 + 4/12, "feet"),
  34184. weight: math.unit(145, "lb"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/sykes/front.svg",
  34188. extra: 1321 / 1187,
  34189. bottom: 66 / 1387
  34190. }
  34191. },
  34192. back: {
  34193. height: math.unit(6 + 4/12, "feet"),
  34194. weight: math.unit(145, "lb"),
  34195. name: "Back",
  34196. image: {
  34197. source: "./media/characters/sykes/back.svg",
  34198. extra: 1326/1181,
  34199. bottom: 31/1357
  34200. }
  34201. },
  34202. handBack: {
  34203. height: math.unit(0.9, "feet"),
  34204. name: "Hand (Back)",
  34205. image: {
  34206. source: "./media/characters/sykes/hand-back.svg"
  34207. }
  34208. },
  34209. handFront: {
  34210. height: math.unit(0.839, "feet"),
  34211. name: "Hand (Front)",
  34212. image: {
  34213. source: "./media/characters/sykes/hand-front.svg"
  34214. }
  34215. },
  34216. leftFoot: {
  34217. height: math.unit(1.2, "feet"),
  34218. name: "Foot (Left)",
  34219. image: {
  34220. source: "./media/characters/sykes/foot-left.svg"
  34221. }
  34222. },
  34223. rightFoot: {
  34224. height: math.unit(1.2, "feet"),
  34225. name: "Foot (Right)",
  34226. image: {
  34227. source: "./media/characters/sykes/foot-right.svg"
  34228. }
  34229. },
  34230. maw: {
  34231. height: math.unit(1.93, "feet"),
  34232. name: "Maw",
  34233. image: {
  34234. source: "./media/characters/sykes/maw.svg"
  34235. }
  34236. },
  34237. teeth: {
  34238. height: math.unit(0.51, "feet"),
  34239. name: "Teeth",
  34240. image: {
  34241. source: "./media/characters/sykes/teeth.svg"
  34242. }
  34243. },
  34244. tongue: {
  34245. height: math.unit(2.13, "feet"),
  34246. name: "Tongue",
  34247. image: {
  34248. source: "./media/characters/sykes/tongue.svg"
  34249. }
  34250. },
  34251. uvula: {
  34252. height: math.unit(0.16, "feet"),
  34253. name: "Uvula",
  34254. image: {
  34255. source: "./media/characters/sykes/uvula.svg"
  34256. }
  34257. },
  34258. collar: {
  34259. height: math.unit(0.287, "feet"),
  34260. name: "Collar",
  34261. image: {
  34262. source: "./media/characters/sykes/collar.svg"
  34263. }
  34264. },
  34265. },
  34266. [
  34267. {
  34268. name: "Shrunken",
  34269. height: math.unit(5, "inches")
  34270. },
  34271. {
  34272. name: "Normal",
  34273. height: math.unit(6 + 4 / 12, "feet"),
  34274. default: true
  34275. },
  34276. {
  34277. name: "Big",
  34278. height: math.unit(15, "feet")
  34279. },
  34280. ]
  34281. ))
  34282. characterMakers.push(() => makeCharacter(
  34283. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34284. {
  34285. front: {
  34286. height: math.unit(5 + 8/12, "feet"),
  34287. weight: math.unit(190, "lb"),
  34288. name: "Front",
  34289. image: {
  34290. source: "./media/characters/oven-otter/front.svg",
  34291. extra: 1809/1740,
  34292. bottom: 181/1990
  34293. }
  34294. },
  34295. back: {
  34296. height: math.unit(5 + 8/12, "feet"),
  34297. weight: math.unit(190, "lb"),
  34298. name: "Back",
  34299. image: {
  34300. source: "./media/characters/oven-otter/back.svg",
  34301. extra: 1709/1635,
  34302. bottom: 118/1827
  34303. }
  34304. },
  34305. hand: {
  34306. height: math.unit(1.07, "feet"),
  34307. name: "Hand",
  34308. image: {
  34309. source: "./media/characters/oven-otter/hand.svg"
  34310. }
  34311. },
  34312. beans: {
  34313. height: math.unit(1.74, "feet"),
  34314. name: "Beans",
  34315. image: {
  34316. source: "./media/characters/oven-otter/beans.svg"
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Micro",
  34323. height: math.unit(0.5, "inches")
  34324. },
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(5 + 8/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Macro",
  34332. height: math.unit(250, "feet")
  34333. },
  34334. {
  34335. name: "Really High",
  34336. height: math.unit(420, "feet")
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(5, "meters"),
  34345. weight: math.unit(292000000000000, "kg"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/devourer/front.svg",
  34349. extra: 1800/1733,
  34350. bottom: 211/2011
  34351. }
  34352. },
  34353. maw: {
  34354. height: math.unit(1.1, "meter"),
  34355. name: "Maw",
  34356. image: {
  34357. source: "./media/characters/devourer/maw.svg"
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Small",
  34364. height: math.unit(3, "meters")
  34365. },
  34366. {
  34367. name: "Large",
  34368. height: math.unit(5, "meters"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34375. {
  34376. front: {
  34377. height: math.unit(6, "feet"),
  34378. weight: math.unit(400, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/ellarby/front.svg",
  34382. extra: 1909/1763,
  34383. bottom: 80/1989
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(6, "feet"),
  34388. weight: math.unit(400, "lb"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/ellarby/back.svg",
  34392. extra: 1914/1784,
  34393. bottom: 172/2086
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Mischief",
  34400. height: math.unit(18, "inches")
  34401. },
  34402. {
  34403. name: "Trouble",
  34404. height: math.unit(12, "feet")
  34405. },
  34406. {
  34407. name: "Havoc",
  34408. height: math.unit(200, "feet"),
  34409. default: true
  34410. },
  34411. {
  34412. name: "Pandemonium",
  34413. height: math.unit(1, "mile")
  34414. },
  34415. {
  34416. name: "Catastrophe",
  34417. height: math.unit(100, "miles")
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34423. {
  34424. front: {
  34425. height: math.unit(4.7, "meters"),
  34426. weight: math.unit(6500, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/vex/front.svg",
  34430. extra: 1288/1140,
  34431. bottom: 100/1388
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(4.7, "meters"),
  34439. default: true
  34440. },
  34441. ]
  34442. ))
  34443. characterMakers.push(() => makeCharacter(
  34444. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34445. {
  34446. normal: {
  34447. height: math.unit(6, "feet"),
  34448. weight: math.unit(350, "lb"),
  34449. name: "Normal",
  34450. image: {
  34451. source: "./media/characters/teshy/normal.svg",
  34452. extra: 1795/1735,
  34453. bottom: 16/1811
  34454. }
  34455. },
  34456. monsterFront: {
  34457. height: math.unit(12, "feet"),
  34458. weight: math.unit(4700, "lb"),
  34459. name: "Monster (Front)",
  34460. image: {
  34461. source: "./media/characters/teshy/monster-front.svg",
  34462. extra: 2042/2034,
  34463. bottom: 128/2170
  34464. }
  34465. },
  34466. monsterSide: {
  34467. height: math.unit(12, "feet"),
  34468. weight: math.unit(4700, "lb"),
  34469. name: "Monster (Side)",
  34470. image: {
  34471. source: "./media/characters/teshy/monster-side.svg",
  34472. extra: 2067/2056,
  34473. bottom: 70/2137
  34474. }
  34475. },
  34476. monsterBack: {
  34477. height: math.unit(12, "feet"),
  34478. weight: math.unit(4700, "lb"),
  34479. name: "Monster (Back)",
  34480. image: {
  34481. source: "./media/characters/teshy/monster-back.svg",
  34482. extra: 1921/1914,
  34483. bottom: 171/2092
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(6, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(6, "feet"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/ramey/front.svg",
  34503. extra: 790/787,
  34504. bottom: 27/817
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Normal",
  34511. height: math.unit(6, "feet"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(5 + 5/12, "feet"),
  34521. weight: math.unit(120, "lb"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/phirae/front.svg",
  34525. extra: 2491/2436,
  34526. bottom: 38/2529
  34527. }
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(5 + 5/12, "feet"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34540. {
  34541. front: {
  34542. height: math.unit(5 + 3/12, "feet"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/stagglas/front.svg",
  34546. extra: 962/882,
  34547. bottom: 53/1015
  34548. }
  34549. },
  34550. feral: {
  34551. height: math.unit(335, "cm"),
  34552. name: "Feral",
  34553. image: {
  34554. source: "./media/characters/stagglas/feral.svg",
  34555. extra: 1732/1090,
  34556. bottom: 48/1780
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(5 + 3/12, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(5 + 4/12, "feet"),
  34573. weight: math.unit(145, "lb"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/starra/front.svg",
  34577. extra: 1790/1691,
  34578. bottom: 91/1881
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(5 + 4/12, "feet"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(2.2, "meters"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34598. extra: 1194/1005,
  34599. bottom: 25/1219
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(2.2, "meters"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34613. {
  34614. side: {
  34615. height: math.unit(8 + 2/12, "feet"),
  34616. weight: math.unit(1240, "lb"),
  34617. name: "Side",
  34618. image: {
  34619. source: "./media/characters/mika-valentine/side.svg",
  34620. extra: 2670/2501,
  34621. bottom: 250/2920
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(8 + 2/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(7 + 2/12, "feet"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/xoltol/front.svg",
  34641. extra: 2212/2124,
  34642. bottom: 84/2296
  34643. }
  34644. },
  34645. side: {
  34646. height: math.unit(7 + 2/12, "feet"),
  34647. name: "Side",
  34648. image: {
  34649. source: "./media/characters/xoltol/side.svg",
  34650. extra: 2273/2197,
  34651. bottom: 26/2299
  34652. }
  34653. },
  34654. hand: {
  34655. height: math.unit(2.5, "feet"),
  34656. name: "Hand",
  34657. image: {
  34658. source: "./media/characters/xoltol/hand.svg"
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Small-ish",
  34665. height: math.unit(5 + 11/12, "feet")
  34666. },
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(7 + 2/12, "feet")
  34670. },
  34671. {
  34672. name: "\"Macro\"",
  34673. height: math.unit(14 + 9/12, "feet"),
  34674. default: true
  34675. },
  34676. {
  34677. name: "Alternate Height",
  34678. height: math.unit(20, "feet")
  34679. },
  34680. {
  34681. name: "Actually Macro",
  34682. height: math.unit(100, "feet")
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34688. {
  34689. front: {
  34690. height: math.unit(5 + 2/12, "feet"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/kotetsu-redwood/front.svg",
  34694. extra: 1053/942,
  34695. bottom: 60/1113
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Normal",
  34702. height: math.unit(5 + 2/12, "feet"),
  34703. default: true
  34704. },
  34705. ]
  34706. ))
  34707. characterMakers.push(() => makeCharacter(
  34708. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34709. {
  34710. front: {
  34711. height: math.unit(2.4, "meters"),
  34712. weight: math.unit(125, "kg"),
  34713. name: "Front",
  34714. image: {
  34715. source: "./media/characters/lilith/front.svg",
  34716. extra: 1590/1513,
  34717. bottom: 203/1793
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Humanoid",
  34724. height: math.unit(2.4, "meters")
  34725. },
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(6, "meters"),
  34729. default: true
  34730. },
  34731. {
  34732. name: "Largest",
  34733. height: math.unit(55, "meters")
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34739. {
  34740. front: {
  34741. height: math.unit(8 + 4/12, "feet"),
  34742. weight: math.unit(535, "lb"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/beh'kah-bolger/front.svg",
  34746. extra: 1660/1603,
  34747. bottom: 37/1697
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(8 + 4/12, "feet"),
  34755. default: true
  34756. },
  34757. {
  34758. name: "Kaiju",
  34759. height: math.unit(250, "feet")
  34760. },
  34761. {
  34762. name: "Still Growing",
  34763. height: math.unit(10, "miles")
  34764. },
  34765. {
  34766. name: "Continental",
  34767. height: math.unit(5000, "miles")
  34768. },
  34769. {
  34770. name: "Final Form",
  34771. height: math.unit(2500000, "miles")
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(7 + 2/12, "feet"),
  34780. weight: math.unit(230, "kg"),
  34781. name: "Front",
  34782. image: {
  34783. source: "./media/characters/tatyana-milewska/front.svg",
  34784. extra: 1199/1150,
  34785. bottom: 86/1285
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(7 + 2/12, "feet"),
  34793. default: true
  34794. },
  34795. {
  34796. name: "Big",
  34797. height: math.unit(12, "feet")
  34798. },
  34799. {
  34800. name: "Minimacro",
  34801. height: math.unit(20, "feet")
  34802. },
  34803. {
  34804. name: "Macro",
  34805. height: math.unit(120, "feet")
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(7 + 8/12, "feet"),
  34814. weight: math.unit(152, "kg"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/helen-arri/front.svg",
  34818. extra: 440/423,
  34819. bottom: 14/454
  34820. }
  34821. },
  34822. back: {
  34823. height: math.unit(7 + 8/12, "feet"),
  34824. weight: math.unit(152, "kg"),
  34825. name: "Back",
  34826. image: {
  34827. source: "./media/characters/helen-arri/back.svg",
  34828. extra: 443/426,
  34829. bottom: 8/451
  34830. }
  34831. },
  34832. },
  34833. [
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(7 + 8/12, "feet"),
  34837. default: true
  34838. },
  34839. {
  34840. name: "Big",
  34841. height: math.unit(14, "feet")
  34842. },
  34843. {
  34844. name: "Minimacro",
  34845. height: math.unit(24, "feet")
  34846. },
  34847. {
  34848. name: "Macro",
  34849. height: math.unit(140, "feet")
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34855. {
  34856. front: {
  34857. height: math.unit(6, "meters"),
  34858. name: "Front",
  34859. image: {
  34860. source: "./media/characters/ehanu-rehu/front.svg",
  34861. extra: 1800/1800,
  34862. bottom: 59/1859
  34863. }
  34864. },
  34865. },
  34866. [
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(6, "meters"),
  34870. default: true
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(7 + 3/12, "feet"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/renholder/front.svg",
  34882. extra: 3096/2960,
  34883. bottom: 250/3346
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "Normal Bat",
  34890. height: math.unit(7 + 3/12, "feet"),
  34891. default: true
  34892. },
  34893. {
  34894. name: "Slightly Tall Bat",
  34895. height: math.unit(100, "feet")
  34896. },
  34897. {
  34898. name: "Big Bat",
  34899. height: math.unit(1000, "feet")
  34900. },
  34901. {
  34902. name: "City-Sized Bat",
  34903. height: math.unit(200000, "feet")
  34904. },
  34905. {
  34906. name: "Bigger Bat",
  34907. height: math.unit(10000, "miles")
  34908. },
  34909. {
  34910. name: "Solar Sized Bat",
  34911. height: math.unit(100, "AU")
  34912. },
  34913. {
  34914. name: "Galactic Bat",
  34915. height: math.unit(200000, "lightyears")
  34916. },
  34917. {
  34918. name: "Universally Known Bat",
  34919. height: math.unit(1, "universe")
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34925. {
  34926. front: {
  34927. height: math.unit(6 + 11/12, "feet"),
  34928. weight: math.unit(250, "lb"),
  34929. name: "Front",
  34930. image: {
  34931. source: "./media/characters/cookiecat/front.svg",
  34932. extra: 893/827,
  34933. bottom: 14/907
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Micro",
  34940. height: math.unit(3, "inches")
  34941. },
  34942. {
  34943. name: "Normal",
  34944. height: math.unit(6 + 11/12, "feet"),
  34945. default: true
  34946. },
  34947. {
  34948. name: "Macro",
  34949. height: math.unit(100, "feet")
  34950. },
  34951. {
  34952. name: "Macro+",
  34953. height: math.unit(404, "feet")
  34954. },
  34955. {
  34956. name: "Megamacro",
  34957. height: math.unit(165, "miles")
  34958. },
  34959. {
  34960. name: "Planetary",
  34961. height: math.unit(4600, "miles")
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(10 + 3/12, "feet"),
  34970. weight: math.unit(1500, "lb"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/tux-kusanagi/front.svg",
  34974. extra: 944/840,
  34975. bottom: 39/983
  34976. }
  34977. },
  34978. back: {
  34979. height: math.unit(10 + 3/12, "feet"),
  34980. weight: math.unit(1500, "lb"),
  34981. name: "Back",
  34982. image: {
  34983. source: "./media/characters/tux-kusanagi/back.svg",
  34984. extra: 941/842,
  34985. bottom: 28/969
  34986. }
  34987. },
  34988. rump: {
  34989. height: math.unit(5.25, "feet"),
  34990. name: "Rump",
  34991. image: {
  34992. source: "./media/characters/tux-kusanagi/rump.svg"
  34993. }
  34994. },
  34995. beak: {
  34996. height: math.unit(1.54, "feet"),
  34997. name: "Beak",
  34998. image: {
  34999. source: "./media/characters/tux-kusanagi/beak.svg"
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(10 + 3/12, "feet"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35013. {
  35014. front: {
  35015. height: math.unit(58, "feet"),
  35016. weight: math.unit(200, "tons"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/uzarmazari/front.svg",
  35020. extra: 1575/1455,
  35021. bottom: 152/1727
  35022. }
  35023. },
  35024. back: {
  35025. height: math.unit(58, "feet"),
  35026. weight: math.unit(200, "tons"),
  35027. name: "Back",
  35028. image: {
  35029. source: "./media/characters/uzarmazari/back.svg",
  35030. extra: 1585/1510,
  35031. bottom: 157/1742
  35032. }
  35033. },
  35034. head: {
  35035. height: math.unit(26, "feet"),
  35036. name: "Head",
  35037. image: {
  35038. source: "./media/characters/uzarmazari/head.svg"
  35039. }
  35040. },
  35041. },
  35042. [
  35043. {
  35044. name: "Normal",
  35045. height: math.unit(58, "feet"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35052. {
  35053. side: {
  35054. height: math.unit(15, "feet"),
  35055. name: "Side",
  35056. image: {
  35057. source: "./media/characters/akitu/side.svg",
  35058. extra: 1421/1321,
  35059. bottom: 157/1578
  35060. }
  35061. },
  35062. front: {
  35063. height: math.unit(15, "feet"),
  35064. name: "Front",
  35065. image: {
  35066. source: "./media/characters/akitu/front.svg",
  35067. extra: 1435/1326,
  35068. bottom: 232/1667
  35069. }
  35070. },
  35071. },
  35072. [
  35073. {
  35074. name: "Normal",
  35075. height: math.unit(15, "feet"),
  35076. default: true
  35077. },
  35078. ]
  35079. ))
  35080. characterMakers.push(() => makeCharacter(
  35081. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35082. {
  35083. front: {
  35084. height: math.unit(10 + 8/12, "feet"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/azalie-croixland/front.svg",
  35088. extra: 1972/1856,
  35089. bottom: 31/2003
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Original Height",
  35096. height: math.unit(5 + 4/12, "feet")
  35097. },
  35098. {
  35099. name: "Normal Height",
  35100. height: math.unit(10 + 8/12, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35107. {
  35108. side: {
  35109. height: math.unit(7 + 1/12, "feet"),
  35110. weight: math.unit(245, "lb"),
  35111. name: "Side",
  35112. image: {
  35113. source: "./media/characters/kavus-kazian/side.svg",
  35114. extra: 349/342,
  35115. bottom: 15/364
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(7 + 1/12, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35129. {
  35130. normalFront: {
  35131. height: math.unit(5 + 11/12, "feet"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/moonlight-rose/normal-front.svg",
  35135. extra: 1980/1825,
  35136. bottom: 18/1998
  35137. },
  35138. form: "normal",
  35139. default: true
  35140. },
  35141. normalBack: {
  35142. height: math.unit(5 + 11/12, "feet"),
  35143. name: "Back",
  35144. image: {
  35145. source: "./media/characters/moonlight-rose/normal-back.svg",
  35146. extra: 2010/1839,
  35147. bottom: 10/2020
  35148. },
  35149. form: "normal"
  35150. },
  35151. demonFront: {
  35152. height: math.unit(1.5, "earths"),
  35153. name: "Front",
  35154. image: {
  35155. source: "./media/characters/moonlight-rose/demon.svg",
  35156. extra: 1400/1294,
  35157. bottom: 45/1445
  35158. },
  35159. form: "demon",
  35160. default: true
  35161. },
  35162. terraFront: {
  35163. height: math.unit(1.5, "earths"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/moonlight-rose/terra.svg"
  35167. },
  35168. form: "terra",
  35169. default: true
  35170. },
  35171. jupiterFront: {
  35172. height: math.unit(69911*2, "km"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35176. extra: 1367/1286,
  35177. bottom: 55/1422
  35178. },
  35179. form: "jupiter",
  35180. default: true
  35181. },
  35182. neptuneFront: {
  35183. height: math.unit(24622*2, "feet"),
  35184. name: "Front",
  35185. image: {
  35186. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35187. extra: 1851/1712,
  35188. bottom: 0/1851
  35189. },
  35190. form: "neptune",
  35191. default: true
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "\"Natural\" Height",
  35197. height: math.unit(5 + 11/12, "feet"),
  35198. form: "normal"
  35199. },
  35200. {
  35201. name: "Smallest comfortable size",
  35202. height: math.unit(40, "meters"),
  35203. form: "normal"
  35204. },
  35205. {
  35206. name: "Common size",
  35207. height: math.unit(50, "km"),
  35208. form: "normal",
  35209. default: true
  35210. },
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(1.5, "earths"),
  35214. form: "demon",
  35215. default: true
  35216. },
  35217. {
  35218. name: "Universal",
  35219. height: math.unit(15, "universes"),
  35220. form: "demon"
  35221. },
  35222. {
  35223. name: "Earth",
  35224. height: math.unit(1.5, "earths"),
  35225. form: "terra",
  35226. default: true
  35227. },
  35228. {
  35229. name: "Super Earth",
  35230. height: math.unit(67.5, "earths"),
  35231. form: "terra"
  35232. },
  35233. {
  35234. name: "Doesn't fit in a solar system...",
  35235. height: math.unit(1, "galaxy"),
  35236. form: "terra"
  35237. },
  35238. {
  35239. name: "Saturn",
  35240. height: math.unit(58232*2, "km"),
  35241. form: "jupiter"
  35242. },
  35243. {
  35244. name: "Jupiter",
  35245. height: math.unit(69911*2, "km"),
  35246. form: "jupiter",
  35247. default: true
  35248. },
  35249. {
  35250. name: "HD 100546 b",
  35251. height: math.unit(482938, "km"),
  35252. form: "jupiter"
  35253. },
  35254. {
  35255. name: "Enceladus",
  35256. height: math.unit(513*2, "km"),
  35257. form: "neptune"
  35258. },
  35259. {
  35260. name: "Europe",
  35261. height: math.unit(1560*2, "km"),
  35262. form: "neptune"
  35263. },
  35264. {
  35265. name: "Neptune",
  35266. height: math.unit(24622*2, "km"),
  35267. form: "neptune",
  35268. default: true
  35269. },
  35270. {
  35271. name: "CoRoT-9b",
  35272. height: math.unit(75067*2, "km"),
  35273. form: "neptune"
  35274. },
  35275. ],
  35276. {
  35277. "normal": {
  35278. name: "Normal",
  35279. default: true
  35280. },
  35281. "demon": {
  35282. name: "Demon"
  35283. },
  35284. "terra": {
  35285. name: "Terra"
  35286. },
  35287. "jupiter": {
  35288. name: "Jupiter"
  35289. },
  35290. "neptune": {
  35291. name: "Neptune"
  35292. }
  35293. }
  35294. ))
  35295. characterMakers.push(() => makeCharacter(
  35296. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35297. {
  35298. front: {
  35299. height: math.unit(16, "feet"),
  35300. weight: math.unit(610, "kg"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/huckle/front.svg",
  35304. extra: 1731/1625,
  35305. bottom: 33/1764
  35306. }
  35307. },
  35308. back: {
  35309. height: math.unit(16, "feet"),
  35310. weight: math.unit(610, "kg"),
  35311. name: "Back",
  35312. image: {
  35313. source: "./media/characters/huckle/back.svg",
  35314. extra: 1738/1651,
  35315. bottom: 37/1775
  35316. }
  35317. },
  35318. laughing: {
  35319. height: math.unit(3.75, "feet"),
  35320. name: "Laughing",
  35321. image: {
  35322. source: "./media/characters/huckle/laughing.svg"
  35323. }
  35324. },
  35325. angry: {
  35326. height: math.unit(4.15, "feet"),
  35327. name: "Angry",
  35328. image: {
  35329. source: "./media/characters/huckle/angry.svg"
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(16, "feet"),
  35337. default: true
  35338. },
  35339. {
  35340. name: "Mini Macro",
  35341. height: math.unit(463, "feet")
  35342. },
  35343. {
  35344. name: "Macro",
  35345. height: math.unit(1680, "meters")
  35346. },
  35347. {
  35348. name: "Mega Macro",
  35349. height: math.unit(175, "km")
  35350. },
  35351. {
  35352. name: "Terra Macro",
  35353. height: math.unit(32, "gigameters")
  35354. },
  35355. {
  35356. name: "Multiverse+",
  35357. height: math.unit(2.56e23, "yottameters")
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(6 + 9/12, "feet"),
  35366. weight: math.unit(280, "lb"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/candy/front.svg",
  35370. extra: 234/217,
  35371. bottom: 11/245
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Really Small",
  35378. height: math.unit(0.1, "nm")
  35379. },
  35380. {
  35381. name: "Micro",
  35382. height: math.unit(2, "inches")
  35383. },
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(6 + 9/12, "feet"),
  35387. default: true
  35388. },
  35389. {
  35390. name: "Small Macro",
  35391. height: math.unit(69, "feet")
  35392. },
  35393. {
  35394. name: "Macro",
  35395. height: math.unit(160, "feet")
  35396. },
  35397. {
  35398. name: "Megamacro",
  35399. height: math.unit(22000, "miles")
  35400. },
  35401. {
  35402. name: "Gigamacro",
  35403. height: math.unit(50000, "miles")
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(4, "feet"),
  35412. weight: math.unit(90, "lb"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/joey-mcdonald/front.svg",
  35416. extra: 1059/852,
  35417. bottom: 33/1092
  35418. }
  35419. },
  35420. back: {
  35421. height: math.unit(4, "feet"),
  35422. weight: math.unit(90, "lb"),
  35423. name: "Back",
  35424. image: {
  35425. source: "./media/characters/joey-mcdonald/back.svg",
  35426. extra: 1077/879,
  35427. bottom: 5/1082
  35428. }
  35429. },
  35430. frontKobold: {
  35431. height: math.unit(4, "feet"),
  35432. weight: math.unit(100, "lb"),
  35433. name: "Front-kobold",
  35434. image: {
  35435. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35436. extra: 1480/1367,
  35437. bottom: 0/1480
  35438. }
  35439. },
  35440. backKobold: {
  35441. height: math.unit(4, "feet"),
  35442. weight: math.unit(100, "lb"),
  35443. name: "Back-kobold",
  35444. image: {
  35445. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35446. extra: 1449/1361,
  35447. bottom: 0/1449
  35448. }
  35449. },
  35450. },
  35451. [
  35452. {
  35453. name: "Normal",
  35454. height: math.unit(4, "feet"),
  35455. default: true
  35456. },
  35457. ]
  35458. ))
  35459. characterMakers.push(() => makeCharacter(
  35460. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35461. {
  35462. front: {
  35463. height: math.unit(12 + 6/12, "feet"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/kass-lockheed/front.svg",
  35467. extra: 354/343,
  35468. bottom: 9/363
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(12 + 6/12, "feet"),
  35473. name: "Back",
  35474. image: {
  35475. source: "./media/characters/kass-lockheed/back.svg",
  35476. extra: 364/352,
  35477. bottom: 3/367
  35478. }
  35479. },
  35480. dick: {
  35481. height: math.unit(3.12, "feet"),
  35482. name: "Dick",
  35483. image: {
  35484. source: "./media/characters/kass-lockheed/dick.svg"
  35485. }
  35486. },
  35487. head: {
  35488. height: math.unit(2.6, "feet"),
  35489. name: "Head",
  35490. image: {
  35491. source: "./media/characters/kass-lockheed/head.svg"
  35492. }
  35493. },
  35494. bleh: {
  35495. height: math.unit(2.85, "feet"),
  35496. name: "Bleh",
  35497. image: {
  35498. source: "./media/characters/kass-lockheed/bleh.svg"
  35499. }
  35500. },
  35501. smug: {
  35502. height: math.unit(2.85, "feet"),
  35503. name: "Smug",
  35504. image: {
  35505. source: "./media/characters/kass-lockheed/smug.svg"
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(12 + 6/12, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(6 + 2/12, "feet"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/taylor/front.svg",
  35525. extra: 639/495,
  35526. bottom: 12/651
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(6 + 2/12, "feet"),
  35534. default: true
  35535. },
  35536. {
  35537. name: "Big",
  35538. height: math.unit(15, "feet")
  35539. },
  35540. {
  35541. name: "Lorg",
  35542. height: math.unit(80, "feet")
  35543. },
  35544. {
  35545. name: "Too Lorg",
  35546. height: math.unit(120, "feet")
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35552. {
  35553. front: {
  35554. height: math.unit(15, "feet"),
  35555. name: "Front",
  35556. image: {
  35557. source: "./media/characters/kaizer/front.svg",
  35558. extra: 1612/1436,
  35559. bottom: 43/1655
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(15, "feet"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(2, "feet"),
  35576. weight: math.unit(30, "lb"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/sandy/front.svg",
  35580. extra: 1439/1307,
  35581. bottom: 194/1633
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(2, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(3, "feet"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/mellvi/front.svg",
  35601. extra: 1831/1630,
  35602. bottom: 58/1889
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(3, "feet"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(5 + 11/12, "feet"),
  35619. weight: math.unit(200, "lb"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/shirou/front.svg",
  35623. extra: 2491/2383,
  35624. bottom: 189/2680
  35625. }
  35626. },
  35627. back: {
  35628. height: math.unit(5 + 11/12, "feet"),
  35629. weight: math.unit(200, "lb"),
  35630. name: "Back",
  35631. image: {
  35632. source: "./media/characters/shirou/back.svg",
  35633. extra: 2554/2450,
  35634. bottom: 76/2630
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(5 + 11/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(6 + 3/12, "feet"),
  35651. weight: math.unit(177, "lb"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/noryu/front.svg",
  35655. extra: 973/885,
  35656. bottom: 10/983
  35657. }
  35658. },
  35659. },
  35660. [
  35661. {
  35662. name: "Normal",
  35663. height: math.unit(6 + 3/12, "feet"),
  35664. default: true
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35670. {
  35671. front: {
  35672. height: math.unit(5 + 6/12, "feet"),
  35673. weight: math.unit(170, "lb"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/mevolas-rubenido/front.svg",
  35677. extra: 2109/1901,
  35678. bottom: 96/2205
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Normal",
  35685. height: math.unit(5 + 6/12, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(100, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/dee/front.svg",
  35698. extra: 2153/2036,
  35699. bottom: 59/2212
  35700. }
  35701. },
  35702. back: {
  35703. height: math.unit(100, "feet"),
  35704. name: "Back",
  35705. image: {
  35706. source: "./media/characters/dee/back.svg",
  35707. extra: 2183/2058,
  35708. bottom: 75/2258
  35709. }
  35710. },
  35711. foot: {
  35712. height: math.unit(19.43, "feet"),
  35713. name: "Foot",
  35714. image: {
  35715. source: "./media/characters/dee/foot.svg"
  35716. }
  35717. },
  35718. hoof: {
  35719. height: math.unit(20.6, "feet"),
  35720. name: "Hoof",
  35721. image: {
  35722. source: "./media/characters/dee/hoof.svg"
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Macro",
  35729. height: math.unit(100, "feet"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(5 + 6/12, "feet"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/teh/front.svg",
  35742. extra: 1002/847,
  35743. bottom: 62/1064
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(5 + 6/12, "feet"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35757. {
  35758. side: {
  35759. height: math.unit(6 + 1/12, "feet"),
  35760. weight: math.unit(204, "lb"),
  35761. name: "Side",
  35762. image: {
  35763. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35764. extra: 974/775,
  35765. bottom: 169/1143
  35766. }
  35767. },
  35768. sitting: {
  35769. height: math.unit(6 + 2/12, "feet"),
  35770. weight: math.unit(204, "lb"),
  35771. name: "Sitting",
  35772. image: {
  35773. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35774. extra: 1175/964,
  35775. bottom: 378/1553
  35776. }
  35777. },
  35778. },
  35779. [
  35780. {
  35781. name: "Normal",
  35782. height: math.unit(6 + 1/12, "feet"),
  35783. default: true
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35789. {
  35790. front: {
  35791. height: math.unit(6, "inches"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/tululi/front.svg",
  35795. extra: 1997/1876,
  35796. bottom: 20/2017
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Normal",
  35803. height: math.unit(6, "inches"),
  35804. default: true
  35805. },
  35806. ]
  35807. ))
  35808. characterMakers.push(() => makeCharacter(
  35809. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35810. {
  35811. front: {
  35812. height: math.unit(4 + 1/12, "feet"),
  35813. name: "Front",
  35814. image: {
  35815. source: "./media/characters/star/front.svg",
  35816. extra: 1493/1189,
  35817. bottom: 48/1541
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(4 + 1/12, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(6 + 3/12, "feet"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/comet/front.svg",
  35837. extra: 1681/1462,
  35838. bottom: 26/1707
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(6 + 3/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(950, "feet"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/vortex/front.svg",
  35858. extra: 1497/1434,
  35859. bottom: 56/1553
  35860. }
  35861. },
  35862. maw: {
  35863. height: math.unit(285, "feet"),
  35864. name: "Maw",
  35865. image: {
  35866. source: "./media/characters/vortex/maw.svg"
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Macro",
  35873. height: math.unit(950, "feet"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35880. {
  35881. front: {
  35882. height: math.unit(600, "feet"),
  35883. weight: math.unit(0.02, "grams"),
  35884. name: "Front",
  35885. image: {
  35886. source: "./media/characters/doodle/front.svg",
  35887. extra: 1578/1413,
  35888. bottom: 37/1615
  35889. }
  35890. },
  35891. },
  35892. [
  35893. {
  35894. name: "Macro",
  35895. height: math.unit(600, "feet"),
  35896. default: true
  35897. },
  35898. ]
  35899. ))
  35900. characterMakers.push(() => makeCharacter(
  35901. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35902. {
  35903. front: {
  35904. height: math.unit(6 + 6/12, "feet"),
  35905. name: "Front",
  35906. image: {
  35907. source: "./media/characters/jai/front.svg",
  35908. extra: 1645/1534,
  35909. bottom: 115/1760
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Normal",
  35916. height: math.unit(6 + 6/12, "feet"),
  35917. default: true
  35918. },
  35919. ]
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35923. {
  35924. front: {
  35925. height: math.unit(6 + 8/12, "feet"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/pixel/front.svg",
  35929. extra: 1900/1735,
  35930. bottom: 63/1963
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(6 + 8/12, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35944. {
  35945. back: {
  35946. height: math.unit(4 + 1/12, "feet"),
  35947. weight: math.unit(75, "lb"),
  35948. name: "Back",
  35949. image: {
  35950. source: "./media/characters/rhett/back.svg",
  35951. extra: 930/878,
  35952. bottom: 25/955
  35953. }
  35954. },
  35955. front: {
  35956. height: math.unit(4 + 1/12, "feet"),
  35957. weight: math.unit(75, "lb"),
  35958. name: "Front",
  35959. image: {
  35960. source: "./media/characters/rhett/front.svg",
  35961. extra: 1682/1586,
  35962. bottom: 92/1774
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Micro",
  35969. height: math.unit(8, "inches")
  35970. },
  35971. {
  35972. name: "Tiny",
  35973. height: math.unit(2, "feet")
  35974. },
  35975. {
  35976. name: "Normal",
  35977. height: math.unit(4 + 1/12, "feet"),
  35978. default: true
  35979. },
  35980. ]
  35981. ))
  35982. characterMakers.push(() => makeCharacter(
  35983. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35984. {
  35985. front: {
  35986. height: math.unit(3 + 3/12, "feet"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/penny/front.svg",
  35990. extra: 1406/1311,
  35991. bottom: 26/1432
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Normal",
  35998. height: math.unit(3 + 3/12, "feet"),
  35999. default: true
  36000. },
  36001. ]
  36002. ))
  36003. characterMakers.push(() => makeCharacter(
  36004. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36005. {
  36006. front: {
  36007. height: math.unit(4 + 11/12, "feet"),
  36008. name: "Front",
  36009. image: {
  36010. source: "./media/characters/monty/front.svg",
  36011. extra: 1479/1209,
  36012. bottom: 0/1479
  36013. }
  36014. },
  36015. },
  36016. [
  36017. {
  36018. name: "Normal",
  36019. height: math.unit(4 + 11/12, "feet"),
  36020. default: true
  36021. },
  36022. ]
  36023. ))
  36024. characterMakers.push(() => makeCharacter(
  36025. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36026. {
  36027. front: {
  36028. height: math.unit(8 + 4/12, "feet"),
  36029. name: "Front",
  36030. image: {
  36031. source: "./media/characters/sterling/front.svg",
  36032. extra: 1420/1236,
  36033. bottom: 27/1447
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(8 + 4/12, "feet"),
  36041. default: true
  36042. },
  36043. ]
  36044. ))
  36045. characterMakers.push(() => makeCharacter(
  36046. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36047. {
  36048. front: {
  36049. height: math.unit(15, "feet"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/marble/front.svg",
  36053. extra: 973/937,
  36054. bottom: 32/1005
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(15, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36068. {
  36069. front: {
  36070. height: math.unit(3, "inches"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/powder/front.svg",
  36074. extra: 1504/1334,
  36075. bottom: 518/2022
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(3, "inches"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(4 + 5/12, "feet"),
  36092. name: "Front",
  36093. image: {
  36094. source: "./media/characters/joey-raccoon/front.svg",
  36095. extra: 1273/1197,
  36096. bottom: 0/1273
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(4 + 5/12, "feet"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36110. {
  36111. front: {
  36112. height: math.unit(8 + 4/12, "feet"),
  36113. name: "Front",
  36114. image: {
  36115. source: "./media/characters/vick/front.svg",
  36116. extra: 2187/2118,
  36117. bottom: 47/2234
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(8 + 4/12, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36131. {
  36132. front: {
  36133. height: math.unit(5 + 5/12, "feet"),
  36134. name: "Front",
  36135. image: {
  36136. source: "./media/characters/mitsy/front.svg",
  36137. extra: 1842/1695,
  36138. bottom: 0/1842
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(5 + 5/12, "feet"),
  36146. default: true
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36152. {
  36153. front: {
  36154. height: math.unit(6 + 3/12, "feet"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/silvy/front.svg",
  36158. extra: 1995/1836,
  36159. bottom: 225/2220
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(6 + 3/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(3 + 8/12, "feet"),
  36176. name: "Front",
  36177. image: {
  36178. source: "./media/characters/rodney/front.svg",
  36179. extra: 1956/1747,
  36180. bottom: 31/1987
  36181. }
  36182. },
  36183. frontDressed: {
  36184. height: math.unit(2.9, "feet"),
  36185. name: "Front (Dressed)",
  36186. image: {
  36187. source: "./media/characters/rodney/front-dressed.svg",
  36188. extra: 1382/1241,
  36189. bottom: 385/1767
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(3 + 8/12, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(5 + 9/12, "feet"),
  36206. weight: math.unit(194, "lbs"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/zakail-sudekai/front.svg",
  36210. extra: 2696/2533,
  36211. bottom: 248/2944
  36212. }
  36213. },
  36214. maw: {
  36215. height: math.unit(1.35, "feet"),
  36216. name: "Maw",
  36217. image: {
  36218. source: "./media/characters/zakail-sudekai/maw.svg"
  36219. }
  36220. },
  36221. },
  36222. [
  36223. {
  36224. name: "Normal",
  36225. height: math.unit(5 + 9/12, "feet"),
  36226. default: true
  36227. },
  36228. ]
  36229. ))
  36230. characterMakers.push(() => makeCharacter(
  36231. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36232. {
  36233. front: {
  36234. height: math.unit(8 + 4/12, "feet"),
  36235. weight: math.unit(1200, "lb"),
  36236. name: "Front",
  36237. image: {
  36238. source: "./media/characters/eleanor/front.svg",
  36239. extra: 1226/1192,
  36240. bottom: 52/1278
  36241. }
  36242. },
  36243. back: {
  36244. height: math.unit(8 + 4/12, "feet"),
  36245. weight: math.unit(1200, "lb"),
  36246. name: "Back",
  36247. image: {
  36248. source: "./media/characters/eleanor/back.svg",
  36249. extra: 1242/1184,
  36250. bottom: 60/1302
  36251. }
  36252. },
  36253. head: {
  36254. height: math.unit(2.62, "feet"),
  36255. name: "Head",
  36256. image: {
  36257. source: "./media/characters/eleanor/head.svg"
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(8 + 4/12, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36271. {
  36272. front: {
  36273. height: math.unit(8 + 4/12, "feet"),
  36274. weight: math.unit(750, "lb"),
  36275. name: "Front",
  36276. image: {
  36277. source: "./media/characters/tanya/front.svg",
  36278. extra: 1749/1615,
  36279. bottom: 33/1782
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Normal",
  36286. height: math.unit(8 + 4/12, "feet"),
  36287. default: true
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(5, "feet"),
  36296. weight: math.unit(225, "lb"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/cindy/front.svg",
  36300. extra: 1320/1250,
  36301. bottom: 42/1362
  36302. }
  36303. },
  36304. frontDressed: {
  36305. height: math.unit(5, "feet"),
  36306. weight: math.unit(225, "lb"),
  36307. name: "Front (Dressed)",
  36308. image: {
  36309. source: "./media/characters/cindy/front-dressed.svg",
  36310. extra: 1320/1250,
  36311. bottom: 42/1362
  36312. }
  36313. },
  36314. back: {
  36315. height: math.unit(5, "feet"),
  36316. weight: math.unit(225, "lb"),
  36317. name: "Back",
  36318. image: {
  36319. source: "./media/characters/cindy/back.svg",
  36320. extra: 1384/1346,
  36321. bottom: 14/1398
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(5, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(6 + 9/12, "feet"),
  36338. weight: math.unit(440, "lb"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/wilbur-owen/front.svg",
  36342. extra: 1575/1448,
  36343. bottom: 72/1647
  36344. }
  36345. },
  36346. back: {
  36347. height: math.unit(6 + 9/12, "feet"),
  36348. weight: math.unit(440, "lb"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/wilbur-owen/back.svg",
  36352. extra: 1578/1445,
  36353. bottom: 36/1614
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(6 + 9/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(6 + 5/12, "feet"),
  36370. weight: math.unit(650, "lb"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/keegan/front.svg",
  36374. extra: 2387/2198,
  36375. bottom: 33/2420
  36376. }
  36377. },
  36378. side: {
  36379. height: math.unit(6 + 5/12, "feet"),
  36380. weight: math.unit(650, "lb"),
  36381. name: "Side",
  36382. image: {
  36383. source: "./media/characters/keegan/side.svg",
  36384. extra: 2390/2202,
  36385. bottom: 47/2437
  36386. }
  36387. },
  36388. back: {
  36389. height: math.unit(6 + 5/12, "feet"),
  36390. weight: math.unit(650, "lb"),
  36391. name: "Back",
  36392. image: {
  36393. source: "./media/characters/keegan/back.svg",
  36394. extra: 2418/2268,
  36395. bottom: 15/2433
  36396. }
  36397. },
  36398. frontSfw: {
  36399. height: math.unit(6 + 5/12, "feet"),
  36400. weight: math.unit(650, "lb"),
  36401. name: "Front (SFW)",
  36402. image: {
  36403. source: "./media/characters/keegan/front-sfw.svg",
  36404. extra: 2387/2198,
  36405. bottom: 33/2420
  36406. }
  36407. },
  36408. beans: {
  36409. height: math.unit(1.85, "feet"),
  36410. name: "Beans",
  36411. image: {
  36412. source: "./media/characters/keegan/beans.svg"
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(6 + 5/12, "feet"),
  36420. default: true
  36421. },
  36422. ]
  36423. ))
  36424. characterMakers.push(() => makeCharacter(
  36425. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36426. {
  36427. front: {
  36428. height: math.unit(9, "feet"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/colton/front.svg",
  36432. extra: 1589/1326,
  36433. bottom: 139/1728
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(9, "feet"),
  36441. default: true
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36447. {
  36448. front: {
  36449. height: math.unit(2 + 9/12, "feet"),
  36450. name: "Front",
  36451. image: {
  36452. source: "./media/characters/bora/front.svg",
  36453. extra: 1265/1250,
  36454. bottom: 24/1289
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(2 + 9/12, "feet"),
  36462. default: true
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(8, "feet"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/myu-myu/front.svg",
  36474. extra: 1949/1857,
  36475. bottom: 90/2039
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(8, "feet"),
  36483. default: true
  36484. },
  36485. {
  36486. name: "Big",
  36487. height: math.unit(15, "feet")
  36488. },
  36489. {
  36490. name: "BIG",
  36491. height: math.unit(25, "feet")
  36492. },
  36493. ]
  36494. ))
  36495. characterMakers.push(() => makeCharacter(
  36496. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36497. {
  36498. side: {
  36499. height: math.unit(7 + 5/12, "feet"),
  36500. weight: math.unit(2800, "lb"),
  36501. name: "Side",
  36502. image: {
  36503. source: "./media/characters/haloren/side.svg",
  36504. extra: 1793/409,
  36505. bottom: 59/1852
  36506. }
  36507. },
  36508. frontPaw: {
  36509. height: math.unit(2.36, "feet"),
  36510. name: "Front paw",
  36511. image: {
  36512. source: "./media/characters/haloren/front-paw.svg"
  36513. }
  36514. },
  36515. hindPaw: {
  36516. height: math.unit(3.18, "feet"),
  36517. name: "Hind paw",
  36518. image: {
  36519. source: "./media/characters/haloren/hind-paw.svg"
  36520. }
  36521. },
  36522. maw: {
  36523. height: math.unit(5.05, "feet"),
  36524. name: "Maw",
  36525. image: {
  36526. source: "./media/characters/haloren/maw.svg"
  36527. }
  36528. },
  36529. dick: {
  36530. height: math.unit(2.90, "feet"),
  36531. name: "Dick",
  36532. image: {
  36533. source: "./media/characters/haloren/dick.svg"
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(7 + 5/12, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Enhanced",
  36545. height: math.unit(14 + 3/12, "feet")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(171, "cm"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/kimmy/front.svg",
  36557. extra: 1491/1435,
  36558. bottom: 53/1544
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Small",
  36565. height: math.unit(9, "cm")
  36566. },
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(171, "cm"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(8, "feet"),
  36579. weight: math.unit(300, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/galeboomer/front.svg",
  36583. extra: 4651/4415,
  36584. bottom: 162/4813
  36585. }
  36586. },
  36587. back: {
  36588. height: math.unit(8, "feet"),
  36589. weight: math.unit(300, "lb"),
  36590. name: "Back",
  36591. image: {
  36592. source: "./media/characters/galeboomer/back.svg",
  36593. extra: 4544/4314,
  36594. bottom: 16/4560
  36595. }
  36596. },
  36597. frontAlt: {
  36598. height: math.unit(8, "feet"),
  36599. weight: math.unit(300, "lb"),
  36600. name: "Front (Alt)",
  36601. image: {
  36602. source: "./media/characters/galeboomer/front-alt.svg",
  36603. extra: 4458/4228,
  36604. bottom: 68/4526
  36605. }
  36606. },
  36607. maw: {
  36608. height: math.unit(1.2, "feet"),
  36609. name: "Maw",
  36610. image: {
  36611. source: "./media/characters/galeboomer/maw.svg"
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(8, "feet"),
  36619. default: true
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(5 + 9/12, "feet"),
  36628. weight: math.unit(120, "lb"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/chyr/front.svg",
  36632. extra: 1323/1254,
  36633. bottom: 63/1386
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(5 + 9/12, "feet"),
  36638. weight: math.unit(120, "lb"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/chyr/back.svg",
  36642. extra: 1323/1252,
  36643. bottom: 48/1371
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(5 + 9/12, "feet"),
  36651. default: true
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(7, "feet"),
  36660. weight: math.unit(310, "lb"),
  36661. name: "Front",
  36662. image: {
  36663. source: "./media/characters/solarus/front.svg",
  36664. extra: 2415/2021,
  36665. bottom: 103/2518
  36666. }
  36667. },
  36668. back: {
  36669. height: math.unit(7, "feet"),
  36670. weight: math.unit(310, "lb"),
  36671. name: "Back",
  36672. image: {
  36673. source: "./media/characters/solarus/back.svg",
  36674. extra: 2463/2089,
  36675. bottom: 79/2542
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(7, "feet"),
  36683. default: true
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36689. {
  36690. front: {
  36691. height: math.unit(16, "feet"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36695. extra: 1844/1780,
  36696. bottom: 58/1902
  36697. }
  36698. },
  36699. winterCoat: {
  36700. height: math.unit(16, "feet"),
  36701. name: "Winter Coat",
  36702. image: {
  36703. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36704. extra: 1807/1775,
  36705. bottom: 69/1876
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(16, "feet"),
  36713. default: true
  36714. },
  36715. {
  36716. name: "Chicago Size",
  36717. height: math.unit(560, "feet")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(11 + 6/12, "feet"),
  36726. weight: math.unit(1366, "lb"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/lexor/front.svg",
  36730. extra: 1560/1481,
  36731. bottom: 211/1771
  36732. }
  36733. },
  36734. back: {
  36735. height: math.unit(11 + 6/12, "feet"),
  36736. weight: math.unit(1366, "lb"),
  36737. name: "Back",
  36738. image: {
  36739. source: "./media/characters/lexor/back.svg",
  36740. extra: 1614/1533,
  36741. bottom: 76/1690
  36742. }
  36743. },
  36744. maw: {
  36745. height: math.unit(3, "feet"),
  36746. name: "Maw",
  36747. image: {
  36748. source: "./media/characters/lexor/maw.svg"
  36749. }
  36750. },
  36751. dick: {
  36752. height: math.unit(2.59, "feet"),
  36753. name: "Dick",
  36754. image: {
  36755. source: "./media/characters/lexor/dick.svg"
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Normal",
  36762. height: math.unit(11 + 6/12, "feet"),
  36763. default: true
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(5 + 8/12, "feet"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/magnum/front.svg",
  36775. extra: 942/855,
  36776. bottom: 26/968
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(5 + 8/12, "feet"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(18 + 4/12, "feet"),
  36793. weight: math.unit(1500, "kg"),
  36794. name: "Front",
  36795. image: {
  36796. source: "./media/characters/solas-sharpsman/front.svg",
  36797. extra: 1698/1589,
  36798. bottom: 0/1698
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(18 + 4/12, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(5 + 5/12, "feet"),
  36815. weight: math.unit(180, "lb"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/october/front.svg",
  36819. extra: 1800/1650,
  36820. bottom: 0/1800
  36821. }
  36822. },
  36823. frontNsfw: {
  36824. height: math.unit(5 + 5/12, "feet"),
  36825. weight: math.unit(180, "lb"),
  36826. name: "Front (NSFW)",
  36827. image: {
  36828. source: "./media/characters/october/front-nsfw.svg",
  36829. extra: 1392/1307,
  36830. bottom: 42/1434
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(5 + 5/12, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(8 + 6/12, "feet"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/essynkardi/front.svg",
  36850. extra: 1914/1846,
  36851. bottom: 22/1936
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(8 + 6/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(6 + 6/12, "feet"),
  36868. weight: math.unit(7, "lb"),
  36869. name: "Front",
  36870. image: {
  36871. source: "./media/characters/icky/front.svg",
  36872. extra: 813/782,
  36873. bottom: 66/879
  36874. }
  36875. },
  36876. back: {
  36877. height: math.unit(6 + 6/12, "feet"),
  36878. weight: math.unit(7, "lb"),
  36879. name: "Back",
  36880. image: {
  36881. source: "./media/characters/icky/back.svg",
  36882. extra: 754/735,
  36883. bottom: 56/810
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(6 + 6/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(15, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/rojas/front.svg",
  36903. extra: 1462/1408,
  36904. bottom: 95/1557
  36905. }
  36906. },
  36907. back: {
  36908. height: math.unit(15, "feet"),
  36909. name: "Back",
  36910. image: {
  36911. source: "./media/characters/rojas/back.svg",
  36912. extra: 1023/954,
  36913. bottom: 28/1051
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(15, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36927. {
  36928. frontHuman: {
  36929. height: math.unit(5 + 7/12, "feet"),
  36930. name: "Front (Human)",
  36931. image: {
  36932. source: "./media/characters/alek-dryagan/front-human.svg",
  36933. extra: 1687/1667,
  36934. bottom: 69/1756
  36935. }
  36936. },
  36937. backHuman: {
  36938. height: math.unit(5 + 7/12, "feet"),
  36939. name: "Back (Human)",
  36940. image: {
  36941. source: "./media/characters/alek-dryagan/back-human.svg",
  36942. extra: 1670/1649,
  36943. bottom: 65/1735
  36944. }
  36945. },
  36946. frontDemi: {
  36947. height: math.unit(65, "feet"),
  36948. name: "Front (Demi)",
  36949. image: {
  36950. source: "./media/characters/alek-dryagan/front-demi.svg",
  36951. extra: 1669/1642,
  36952. bottom: 49/1718
  36953. }
  36954. },
  36955. backDemi: {
  36956. height: math.unit(65, "feet"),
  36957. name: "Back (Demi)",
  36958. image: {
  36959. source: "./media/characters/alek-dryagan/back-demi.svg",
  36960. extra: 1658/1637,
  36961. bottom: 40/1698
  36962. }
  36963. },
  36964. mawHuman: {
  36965. height: math.unit(0.3, "feet"),
  36966. name: "Maw (Human)",
  36967. image: {
  36968. source: "./media/characters/alek-dryagan/maw-human.svg"
  36969. }
  36970. },
  36971. mawDemi: {
  36972. height: math.unit(3.8, "feet"),
  36973. name: "Maw (Demi)",
  36974. image: {
  36975. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(5 + 7/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36989. {
  36990. frontHuman: {
  36991. height: math.unit(5 + 2/12, "feet"),
  36992. name: "Front (Human)",
  36993. image: {
  36994. source: "./media/characters/gen/front-human.svg",
  36995. extra: 1627/1538,
  36996. bottom: 71/1698
  36997. }
  36998. },
  36999. backHuman: {
  37000. height: math.unit(5 + 2/12, "feet"),
  37001. name: "Back (Human)",
  37002. image: {
  37003. source: "./media/characters/gen/back-human.svg",
  37004. extra: 1638/1548,
  37005. bottom: 69/1707
  37006. }
  37007. },
  37008. frontDemi: {
  37009. height: math.unit(5 + 2/12, "feet"),
  37010. name: "Front (Demi)",
  37011. image: {
  37012. source: "./media/characters/gen/front-demi.svg",
  37013. extra: 1627/1538,
  37014. bottom: 71/1698
  37015. }
  37016. },
  37017. backDemi: {
  37018. height: math.unit(5 + 2/12, "feet"),
  37019. name: "Back (Demi)",
  37020. image: {
  37021. source: "./media/characters/gen/back-demi.svg",
  37022. extra: 1638/1548,
  37023. bottom: 69/1707
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(5 + 2/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37037. {
  37038. frontImp: {
  37039. height: math.unit(1 + 11/12, "feet"),
  37040. name: "Front (Imp)",
  37041. image: {
  37042. source: "./media/characters/max-kobold/front-imp.svg",
  37043. extra: 1238/1134,
  37044. bottom: 81/1319
  37045. }
  37046. },
  37047. backImp: {
  37048. height: math.unit(1 + 11/12, "feet"),
  37049. name: "Back (Imp)",
  37050. image: {
  37051. source: "./media/characters/max-kobold/back-imp.svg",
  37052. extra: 1334/1175,
  37053. bottom: 34/1368
  37054. }
  37055. },
  37056. frontDemi: {
  37057. height: math.unit(5 + 9/12, "feet"),
  37058. name: "Front (Demi)",
  37059. image: {
  37060. source: "./media/characters/max-kobold/front-demi.svg",
  37061. extra: 1715/1685,
  37062. bottom: 54/1769
  37063. }
  37064. },
  37065. backDemi: {
  37066. height: math.unit(5 + 9/12, "feet"),
  37067. name: "Back (Demi)",
  37068. image: {
  37069. source: "./media/characters/max-kobold/back-demi.svg",
  37070. extra: 1752/1729,
  37071. bottom: 41/1793
  37072. }
  37073. },
  37074. handImp: {
  37075. height: math.unit(0.45, "feet"),
  37076. name: "Hand (Imp)",
  37077. image: {
  37078. source: "./media/characters/max-kobold/hand.svg"
  37079. }
  37080. },
  37081. pawImp: {
  37082. height: math.unit(0.46, "feet"),
  37083. name: "Paw (Imp)",
  37084. image: {
  37085. source: "./media/characters/max-kobold/paw.svg"
  37086. }
  37087. },
  37088. handDemi: {
  37089. height: math.unit(0.80, "feet"),
  37090. name: "Hand (Demi)",
  37091. image: {
  37092. source: "./media/characters/max-kobold/hand.svg"
  37093. }
  37094. },
  37095. pawDemi: {
  37096. height: math.unit(1.1, "feet"),
  37097. name: "Paw (Demi)",
  37098. image: {
  37099. source: "./media/characters/max-kobold/paw.svg"
  37100. }
  37101. },
  37102. headImp: {
  37103. height: math.unit(1.33, "feet"),
  37104. name: "Head (Imp)",
  37105. image: {
  37106. source: "./media/characters/max-kobold/head-imp.svg"
  37107. }
  37108. },
  37109. mawImp: {
  37110. height: math.unit(0.75, "feet"),
  37111. name: "Maw (Imp)",
  37112. image: {
  37113. source: "./media/characters/max-kobold/maw-imp.svg"
  37114. }
  37115. },
  37116. mawDemi: {
  37117. height: math.unit(0.42, "feet"),
  37118. name: "Maw (Demi)",
  37119. image: {
  37120. source: "./media/characters/max-kobold/maw-demi.svg"
  37121. }
  37122. },
  37123. },
  37124. [
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(1 + 11/12, "feet"),
  37128. default: true
  37129. },
  37130. ]
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37134. {
  37135. front: {
  37136. height: math.unit(7 + 5/12, "feet"),
  37137. name: "Front",
  37138. image: {
  37139. source: "./media/characters/carbon/front.svg",
  37140. extra: 1754/1689,
  37141. bottom: 65/1819
  37142. }
  37143. },
  37144. back: {
  37145. height: math.unit(7 + 5/12, "feet"),
  37146. name: "Back",
  37147. image: {
  37148. source: "./media/characters/carbon/back.svg",
  37149. extra: 1762/1695,
  37150. bottom: 24/1786
  37151. }
  37152. },
  37153. frontGigantamax: {
  37154. height: math.unit(150, "feet"),
  37155. name: "Front (Gigantamax)",
  37156. image: {
  37157. source: "./media/characters/carbon/front-gigantamax.svg",
  37158. extra: 1826/1669,
  37159. bottom: 59/1885
  37160. }
  37161. },
  37162. backGigantamax: {
  37163. height: math.unit(150, "feet"),
  37164. name: "Back (Gigantamax)",
  37165. image: {
  37166. source: "./media/characters/carbon/back-gigantamax.svg",
  37167. extra: 1796/1653,
  37168. bottom: 53/1849
  37169. }
  37170. },
  37171. maw: {
  37172. height: math.unit(0.48, "feet"),
  37173. name: "Maw",
  37174. image: {
  37175. source: "./media/characters/carbon/maw.svg"
  37176. }
  37177. },
  37178. mawGigantamax: {
  37179. height: math.unit(7.5, "feet"),
  37180. name: "Maw (Gigantamax)",
  37181. image: {
  37182. source: "./media/characters/carbon/maw-gigantamax.svg"
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(7 + 5/12, "feet"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(6, "feet"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/maverick/front.svg",
  37202. extra: 1672/1661,
  37203. bottom: 85/1757
  37204. }
  37205. },
  37206. back: {
  37207. height: math.unit(6, "feet"),
  37208. name: "Back",
  37209. image: {
  37210. source: "./media/characters/maverick/back.svg",
  37211. extra: 1642/1631,
  37212. bottom: 38/1680
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(6, "feet"),
  37220. default: true
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(15, "feet"),
  37229. weight: math.unit(615, "lb"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/grockle/front.svg",
  37233. extra: 1535/1427,
  37234. bottom: 56/1591
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(15, "feet"),
  37242. default: true
  37243. },
  37244. {
  37245. name: "Large",
  37246. height: math.unit(150, "feet")
  37247. },
  37248. {
  37249. name: "Macro",
  37250. height: math.unit(1876, "feet")
  37251. },
  37252. {
  37253. name: "Mega Macro",
  37254. height: math.unit(121940, "feet")
  37255. },
  37256. {
  37257. name: "Giga Macro",
  37258. height: math.unit(750, "km")
  37259. },
  37260. {
  37261. name: "Tera Macro",
  37262. height: math.unit(750000, "km")
  37263. },
  37264. {
  37265. name: "Galactic",
  37266. height: math.unit(1.4e5, "km")
  37267. },
  37268. {
  37269. name: "Godlike",
  37270. height: math.unit(9.8e280, "galaxies")
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(11, "meters"),
  37279. weight: math.unit(20, "tonnes"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/alistair/front.svg",
  37283. extra: 1265/1009,
  37284. bottom: 93/1358
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(11, "meters"),
  37292. default: true
  37293. },
  37294. ]
  37295. ))
  37296. characterMakers.push(() => makeCharacter(
  37297. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37298. {
  37299. front: {
  37300. height: math.unit(5 + 8/12, "feet"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/haruka/front.svg",
  37304. extra: 2012/1952,
  37305. bottom: 0/2012
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(5 + 8/12, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37319. {
  37320. back: {
  37321. height: math.unit(9, "feet"),
  37322. name: "Back",
  37323. image: {
  37324. source: "./media/characters/vivian-sylveon/back.svg",
  37325. extra: 1853/1714,
  37326. bottom: 0/1853
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(9, "feet"),
  37334. default: true
  37335. },
  37336. {
  37337. name: "Macro",
  37338. height: math.unit(500, "feet")
  37339. },
  37340. {
  37341. name: "Megamacro",
  37342. height: math.unit(600, "miles")
  37343. },
  37344. {
  37345. name: "Gigamacro",
  37346. height: math.unit(30000, "miles")
  37347. },
  37348. ]
  37349. ))
  37350. characterMakers.push(() => makeCharacter(
  37351. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37352. {
  37353. anthro: {
  37354. height: math.unit(5 + 10/12, "feet"),
  37355. weight: math.unit(100, "lb"),
  37356. name: "Anthro",
  37357. image: {
  37358. source: "./media/characters/daiki/anthro.svg",
  37359. extra: 1115/1027,
  37360. bottom: 69/1184
  37361. }
  37362. },
  37363. feral: {
  37364. height: math.unit(200, "feet"),
  37365. name: "Feral",
  37366. image: {
  37367. source: "./media/characters/daiki/feral.svg",
  37368. extra: 1256/313,
  37369. bottom: 39/1295
  37370. }
  37371. },
  37372. feralHead: {
  37373. height: math.unit(171, "feet"),
  37374. name: "Feral Head",
  37375. image: {
  37376. source: "./media/characters/daiki/feral-head.svg"
  37377. }
  37378. },
  37379. manaDragon: {
  37380. height: math.unit(170, "meters"),
  37381. name: "Mana-dragon",
  37382. image: {
  37383. source: "./media/characters/daiki/mana-dragon.svg",
  37384. extra: 763/420,
  37385. bottom: 97/860
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(5 + 10/12, "feet"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37399. {
  37400. fullyEquippedFront: {
  37401. height: math.unit(3 + 1/12, "feet"),
  37402. weight: math.unit(24, "lb"),
  37403. name: "Fully Equipped (Front)",
  37404. image: {
  37405. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37406. extra: 687/605,
  37407. bottom: 18/705
  37408. }
  37409. },
  37410. fullyEquippedBack: {
  37411. height: math.unit(3 + 1/12, "feet"),
  37412. weight: math.unit(24, "lb"),
  37413. name: "Fully Equipped (Back)",
  37414. image: {
  37415. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37416. extra: 689/590,
  37417. bottom: 18/707
  37418. }
  37419. },
  37420. dailyWear: {
  37421. height: math.unit(3 + 1/12, "feet"),
  37422. weight: math.unit(24, "lb"),
  37423. name: "Daily Wear",
  37424. image: {
  37425. source: "./media/characters/tea-spot/daily-wear.svg",
  37426. extra: 701/620,
  37427. bottom: 21/722
  37428. }
  37429. },
  37430. maidWork: {
  37431. height: math.unit(3 + 1/12, "feet"),
  37432. weight: math.unit(24, "lb"),
  37433. name: "Maid Work",
  37434. image: {
  37435. source: "./media/characters/tea-spot/maid-work.svg",
  37436. extra: 693/609,
  37437. bottom: 15/708
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Normal",
  37444. height: math.unit(3 + 1/12, "feet"),
  37445. default: true
  37446. },
  37447. ]
  37448. ))
  37449. characterMakers.push(() => makeCharacter(
  37450. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37451. {
  37452. front: {
  37453. height: math.unit(175, "cm"),
  37454. weight: math.unit(75, "kg"),
  37455. name: "Front",
  37456. image: {
  37457. source: "./media/characters/chee/front.svg",
  37458. extra: 1796/1740,
  37459. bottom: 40/1836
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Micro-Micro",
  37466. height: math.unit(1, "nm")
  37467. },
  37468. {
  37469. name: "Micro-erst",
  37470. height: math.unit(1, "micrometer")
  37471. },
  37472. {
  37473. name: "Micro-er",
  37474. height: math.unit(1, "cm")
  37475. },
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(175, "cm"),
  37479. default: true
  37480. },
  37481. {
  37482. name: "Macro",
  37483. height: math.unit(100, "m")
  37484. },
  37485. {
  37486. name: "Macro-er",
  37487. height: math.unit(1, "km")
  37488. },
  37489. {
  37490. name: "Macro-erst",
  37491. height: math.unit(10, "km")
  37492. },
  37493. {
  37494. name: "Macro-Macro",
  37495. height: math.unit(100, "km")
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37501. {
  37502. front: {
  37503. height: math.unit(11 + 9/12, "feet"),
  37504. weight: math.unit(935, "lb"),
  37505. name: "Front",
  37506. image: {
  37507. source: "./media/characters/kingsley/front.svg",
  37508. extra: 1803/1674,
  37509. bottom: 127/1930
  37510. }
  37511. },
  37512. frontNude: {
  37513. height: math.unit(11 + 9/12, "feet"),
  37514. weight: math.unit(935, "lb"),
  37515. name: "Front (Nude)",
  37516. image: {
  37517. source: "./media/characters/kingsley/front-nude.svg",
  37518. extra: 1803/1674,
  37519. bottom: 127/1930
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(11 + 9/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37533. {
  37534. side: {
  37535. height: math.unit(9, "feet"),
  37536. name: "Side",
  37537. image: {
  37538. source: "./media/characters/rymel/side.svg",
  37539. extra: 792/469,
  37540. bottom: 121/913
  37541. }
  37542. },
  37543. maw: {
  37544. height: math.unit(2.4, "meters"),
  37545. name: "Maw",
  37546. image: {
  37547. source: "./media/characters/rymel/maw.svg"
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "House Drake",
  37554. height: math.unit(2, "feet")
  37555. },
  37556. {
  37557. name: "Reduced",
  37558. height: math.unit(4.5, "feet")
  37559. },
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(9, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(1.74, "meters"),
  37572. weight: math.unit(55, "kg"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/rubus/front.svg",
  37576. extra: 1894/1742,
  37577. bottom: 44/1938
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(1.74, "meters"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(5 + 2/12, "feet"),
  37594. weight: math.unit(112, "lb"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/cassie-kingston/front.svg",
  37598. extra: 1438/1390,
  37599. bottom: 47/1485
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(5 + 2/12, "feet"),
  37607. default: true
  37608. },
  37609. {
  37610. name: "Macro",
  37611. height: math.unit(128, "feet")
  37612. },
  37613. {
  37614. name: "Megamacro",
  37615. height: math.unit(2.56, "miles")
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37621. {
  37622. front: {
  37623. height: math.unit(7, "feet"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/fox/front.svg",
  37627. extra: 1798/1703,
  37628. bottom: 55/1853
  37629. }
  37630. },
  37631. back: {
  37632. height: math.unit(7, "feet"),
  37633. name: "Back",
  37634. image: {
  37635. source: "./media/characters/fox/back.svg",
  37636. extra: 1748/1649,
  37637. bottom: 32/1780
  37638. }
  37639. },
  37640. head: {
  37641. height: math.unit(1.95, "feet"),
  37642. name: "Head",
  37643. image: {
  37644. source: "./media/characters/fox/head.svg"
  37645. }
  37646. },
  37647. dick: {
  37648. height: math.unit(1.33, "feet"),
  37649. name: "Dick",
  37650. image: {
  37651. source: "./media/characters/fox/dick.svg"
  37652. }
  37653. },
  37654. foot: {
  37655. height: math.unit(1, "feet"),
  37656. name: "Foot",
  37657. image: {
  37658. source: "./media/characters/fox/foot.svg"
  37659. }
  37660. },
  37661. paw: {
  37662. height: math.unit(0.92, "feet"),
  37663. name: "Paw",
  37664. image: {
  37665. source: "./media/characters/fox/paw.svg"
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Small",
  37672. height: math.unit(3, "inches")
  37673. },
  37674. {
  37675. name: "\"Realistic\"",
  37676. height: math.unit(7, "feet")
  37677. },
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(150, "feet"),
  37681. default: true
  37682. },
  37683. {
  37684. name: "BIG",
  37685. height: math.unit(1200, "feet")
  37686. },
  37687. {
  37688. name: "👀",
  37689. height: math.unit(5, "miles")
  37690. },
  37691. {
  37692. name: "👀👀👀",
  37693. height: math.unit(64, "miles")
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(625, "feet"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/asonja-rossa/front.svg",
  37705. extra: 1833/1686,
  37706. bottom: 24/1857
  37707. }
  37708. },
  37709. back: {
  37710. height: math.unit(625, "feet"),
  37711. name: "Back",
  37712. image: {
  37713. source: "./media/characters/asonja-rossa/back.svg",
  37714. extra: 1852/1753,
  37715. bottom: 26/1878
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(625, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37729. {
  37730. side: {
  37731. height: math.unit(8, "feet"),
  37732. name: "Side",
  37733. image: {
  37734. source: "./media/characters/rezukii/side.svg",
  37735. extra: 979/542,
  37736. bottom: 87/1066
  37737. }
  37738. },
  37739. sitting: {
  37740. height: math.unit(14.6, "feet"),
  37741. name: "Sitting",
  37742. image: {
  37743. source: "./media/characters/rezukii/sitting.svg",
  37744. extra: 1023/813,
  37745. bottom: 45/1068
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Tiny",
  37752. height: math.unit(2, "feet")
  37753. },
  37754. {
  37755. name: "Smol",
  37756. height: math.unit(4, "feet")
  37757. },
  37758. {
  37759. name: "Normal",
  37760. height: math.unit(8, "feet"),
  37761. default: true
  37762. },
  37763. {
  37764. name: "Big",
  37765. height: math.unit(12, "feet")
  37766. },
  37767. {
  37768. name: "Macro",
  37769. height: math.unit(30, "feet")
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(14, "feet"),
  37778. weight: math.unit(9.5, "tonnes"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/dawnheart/front.svg",
  37782. extra: 2792/2675,
  37783. bottom: 64/2856
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(14, "feet"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37797. {
  37798. front: {
  37799. height: math.unit(1.7, "m"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/gladi/front.svg",
  37803. extra: 1460/1362,
  37804. bottom: 19/1479
  37805. }
  37806. },
  37807. back: {
  37808. height: math.unit(1.7, "m"),
  37809. name: "Back",
  37810. image: {
  37811. source: "./media/characters/gladi/back.svg",
  37812. extra: 1459/1357,
  37813. bottom: 12/1471
  37814. }
  37815. },
  37816. feral: {
  37817. height: math.unit(2.05, "m"),
  37818. name: "Feral",
  37819. image: {
  37820. source: "./media/characters/gladi/feral.svg",
  37821. extra: 821/557,
  37822. bottom: 91/912
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Shortest",
  37829. height: math.unit(70, "cm")
  37830. },
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(1.7, "m")
  37834. },
  37835. {
  37836. name: "Macro",
  37837. height: math.unit(10, "m"),
  37838. default: true
  37839. },
  37840. {
  37841. name: "Tallest",
  37842. height: math.unit(200, "m")
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(5 + 7/12, "feet"),
  37851. weight: math.unit(2, "tons"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/erdno/front.svg",
  37855. extra: 1234/1129,
  37856. bottom: 35/1269
  37857. }
  37858. },
  37859. angled: {
  37860. height: math.unit(5 + 7/12, "feet"),
  37861. weight: math.unit(2, "tons"),
  37862. name: "Angled",
  37863. image: {
  37864. source: "./media/characters/erdno/angled.svg",
  37865. extra: 1185/1139,
  37866. bottom: 36/1221
  37867. }
  37868. },
  37869. side: {
  37870. height: math.unit(5 + 7/12, "feet"),
  37871. weight: math.unit(2, "tons"),
  37872. name: "Side",
  37873. image: {
  37874. source: "./media/characters/erdno/side.svg",
  37875. extra: 1191/1144,
  37876. bottom: 40/1231
  37877. }
  37878. },
  37879. back: {
  37880. height: math.unit(5 + 7/12, "feet"),
  37881. weight: math.unit(2, "tons"),
  37882. name: "Back",
  37883. image: {
  37884. source: "./media/characters/erdno/back.svg",
  37885. extra: 1202/1146,
  37886. bottom: 17/1219
  37887. }
  37888. },
  37889. frontNsfw: {
  37890. height: math.unit(5 + 7/12, "feet"),
  37891. weight: math.unit(2, "tons"),
  37892. name: "Front (NSFW)",
  37893. image: {
  37894. source: "./media/characters/erdno/front-nsfw.svg",
  37895. extra: 1234/1129,
  37896. bottom: 35/1269
  37897. }
  37898. },
  37899. angledNsfw: {
  37900. height: math.unit(5 + 7/12, "feet"),
  37901. weight: math.unit(2, "tons"),
  37902. name: "Angled (NSFW)",
  37903. image: {
  37904. source: "./media/characters/erdno/angled-nsfw.svg",
  37905. extra: 1185/1139,
  37906. bottom: 36/1221
  37907. }
  37908. },
  37909. sideNsfw: {
  37910. height: math.unit(5 + 7/12, "feet"),
  37911. weight: math.unit(2, "tons"),
  37912. name: "Side (NSFW)",
  37913. image: {
  37914. source: "./media/characters/erdno/side-nsfw.svg",
  37915. extra: 1191/1144,
  37916. bottom: 40/1231
  37917. }
  37918. },
  37919. backNsfw: {
  37920. height: math.unit(5 + 7/12, "feet"),
  37921. weight: math.unit(2, "tons"),
  37922. name: "Back (NSFW)",
  37923. image: {
  37924. source: "./media/characters/erdno/back-nsfw.svg",
  37925. extra: 1202/1146,
  37926. bottom: 17/1219
  37927. }
  37928. },
  37929. frontHyper: {
  37930. height: math.unit(5 + 7/12, "feet"),
  37931. weight: math.unit(2, "tons"),
  37932. name: "Front (Hyper)",
  37933. image: {
  37934. source: "./media/characters/erdno/front-hyper.svg",
  37935. extra: 1298/1136,
  37936. bottom: 35/1333
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(5 + 7/12, "feet"),
  37944. default: true
  37945. },
  37946. {
  37947. name: "Big",
  37948. height: math.unit(5.7, "meters")
  37949. },
  37950. {
  37951. name: "Macro",
  37952. height: math.unit(5.7, "kilometers")
  37953. },
  37954. {
  37955. name: "Megamacro",
  37956. height: math.unit(5.7, "earths")
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37962. {
  37963. front: {
  37964. height: math.unit(5 + 10/12, "feet"),
  37965. weight: math.unit(150, "lb"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/jamie/front.svg",
  37969. extra: 1908/1768,
  37970. bottom: 19/1927
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Minimum",
  37977. height: math.unit(2, "cm")
  37978. },
  37979. {
  37980. name: "Micro",
  37981. height: math.unit(3, "inches")
  37982. },
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(5 + 10/12, "feet"),
  37986. default: true
  37987. },
  37988. {
  37989. name: "Macro",
  37990. height: math.unit(150, "feet")
  37991. },
  37992. {
  37993. name: "Megamacro",
  37994. height: math.unit(10000, "m")
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(2, "meters"),
  38003. weight: math.unit(100, "kg"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/shiron/front.svg",
  38007. extra: 2103/1985,
  38008. bottom: 98/2201
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(2, "meters"),
  38013. weight: math.unit(100, "kg"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/shiron/back.svg",
  38017. extra: 2110/2015,
  38018. bottom: 89/2199
  38019. }
  38020. },
  38021. hand: {
  38022. height: math.unit(0.96, "feet"),
  38023. name: "Hand",
  38024. image: {
  38025. source: "./media/characters/shiron/hand.svg"
  38026. }
  38027. },
  38028. foot: {
  38029. height: math.unit(1.464, "feet"),
  38030. name: "Foot",
  38031. image: {
  38032. source: "./media/characters/shiron/foot.svg"
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(2, "meters")
  38040. },
  38041. {
  38042. name: "Macro",
  38043. height: math.unit(500, "meters"),
  38044. default: true
  38045. },
  38046. {
  38047. name: "Megamacro",
  38048. height: math.unit(20, "km")
  38049. },
  38050. ]
  38051. ))
  38052. characterMakers.push(() => makeCharacter(
  38053. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38054. {
  38055. front: {
  38056. height: math.unit(6, "feet"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/sam/front.svg",
  38060. extra: 849/826,
  38061. bottom: 19/868
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(6, "feet"),
  38069. default: true
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(8 + 4/12, "feet"),
  38078. weight: math.unit(122, "kg"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/namori-kurogawa/front.svg",
  38082. extra: 1894/1576,
  38083. bottom: 34/1928
  38084. }
  38085. },
  38086. },
  38087. [
  38088. {
  38089. name: "Normal",
  38090. height: math.unit(8 + 4/12, "feet"),
  38091. default: true
  38092. },
  38093. ]
  38094. ))
  38095. characterMakers.push(() => makeCharacter(
  38096. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38097. {
  38098. front: {
  38099. height: math.unit(9, "feet"),
  38100. weight: math.unit(621, "lb"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/unmru/front.svg",
  38104. extra: 1853/1747,
  38105. bottom: 73/1926
  38106. }
  38107. },
  38108. side: {
  38109. height: math.unit(9, "feet"),
  38110. weight: math.unit(621, "lb"),
  38111. name: "Side",
  38112. image: {
  38113. source: "./media/characters/unmru/side.svg",
  38114. extra: 1781/1671,
  38115. bottom: 127/1908
  38116. }
  38117. },
  38118. back: {
  38119. height: math.unit(9, "feet"),
  38120. weight: math.unit(621, "lb"),
  38121. name: "Back",
  38122. image: {
  38123. source: "./media/characters/unmru/back.svg",
  38124. extra: 1894/1765,
  38125. bottom: 75/1969
  38126. }
  38127. },
  38128. dick: {
  38129. height: math.unit(3, "feet"),
  38130. weight: math.unit(35, "lb"),
  38131. name: "Dick",
  38132. image: {
  38133. source: "./media/characters/unmru/dick.svg"
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(9, "feet")
  38141. },
  38142. {
  38143. name: "Natural",
  38144. height: math.unit(27, "feet"),
  38145. default: true
  38146. },
  38147. {
  38148. name: "Giant",
  38149. height: math.unit(90, "feet")
  38150. },
  38151. {
  38152. name: "Kaiju",
  38153. height: math.unit(270, "feet")
  38154. },
  38155. {
  38156. name: "Macro",
  38157. height: math.unit(900, "feet")
  38158. },
  38159. {
  38160. name: "Macro+",
  38161. height: math.unit(2700, "feet")
  38162. },
  38163. {
  38164. name: "Megamacro",
  38165. height: math.unit(9000, "feet")
  38166. },
  38167. {
  38168. name: "City-Crushing",
  38169. height: math.unit(27000, "feet")
  38170. },
  38171. {
  38172. name: "Mountain-Mashing",
  38173. height: math.unit(90000, "feet")
  38174. },
  38175. {
  38176. name: "Earth-Eclipsing",
  38177. height: math.unit(2.7e8, "feet")
  38178. },
  38179. {
  38180. name: "Sol-Swallowing",
  38181. height: math.unit(9e10, "feet")
  38182. },
  38183. {
  38184. name: "Majoris-Munching",
  38185. height: math.unit(2.7e13, "feet")
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38191. {
  38192. front: {
  38193. height: math.unit(1, "inch"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/squeaks-mouse/front.svg",
  38197. extra: 352/308,
  38198. bottom: 25/377
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Micro",
  38205. height: math.unit(1, "inch"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38212. {
  38213. side: {
  38214. height: math.unit(35, "feet"),
  38215. name: "Side",
  38216. image: {
  38217. source: "./media/characters/sayko/side.svg",
  38218. extra: 1697/1021,
  38219. bottom: 82/1779
  38220. }
  38221. },
  38222. head: {
  38223. height: math.unit(16, "feet"),
  38224. name: "Head",
  38225. image: {
  38226. source: "./media/characters/sayko/head.svg"
  38227. }
  38228. },
  38229. forepaw: {
  38230. height: math.unit(7.85, "feet"),
  38231. name: "Forepaw",
  38232. image: {
  38233. source: "./media/characters/sayko/forepaw.svg"
  38234. }
  38235. },
  38236. hindpaw: {
  38237. height: math.unit(8.8, "feet"),
  38238. name: "Hindpaw",
  38239. image: {
  38240. source: "./media/characters/sayko/hindpaw.svg"
  38241. }
  38242. },
  38243. },
  38244. [
  38245. {
  38246. name: "Normal",
  38247. height: math.unit(35, "feet"),
  38248. default: true
  38249. },
  38250. {
  38251. name: "Colossus",
  38252. height: math.unit(100, "meters")
  38253. },
  38254. {
  38255. name: "\"Small\" Deity",
  38256. height: math.unit(1, "km")
  38257. },
  38258. {
  38259. name: "\"Large\" Deity",
  38260. height: math.unit(15, "km")
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(6, "feet"),
  38269. weight: math.unit(250, "lb"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/mukiro/front.svg",
  38273. extra: 1368/1310,
  38274. bottom: 34/1402
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(6, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(12 + 4/12, "feet"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38294. extra: 1346/1311,
  38295. bottom: 65/1411
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Base",
  38302. height: math.unit(12 + 4/12, "feet"),
  38303. default: true
  38304. },
  38305. {
  38306. name: "Macro",
  38307. height: math.unit(150, "feet")
  38308. },
  38309. {
  38310. name: "Mega",
  38311. height: math.unit(2, "miles")
  38312. },
  38313. {
  38314. name: "Demi God",
  38315. height: math.unit(4, "AU")
  38316. },
  38317. {
  38318. name: "God Size",
  38319. height: math.unit(1, "universe")
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38325. {
  38326. front: {
  38327. height: math.unit(3 + 3/12, "feet"),
  38328. weight: math.unit(88, "lb"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/trey/front.svg",
  38332. extra: 1815/1509,
  38333. bottom: 60/1875
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(3 + 3/12, "feet"),
  38341. default: true
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38347. {
  38348. front: {
  38349. height: math.unit(4, "meters"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/adelonda/front.svg",
  38353. extra: 1077/982,
  38354. bottom: 39/1116
  38355. }
  38356. },
  38357. back: {
  38358. height: math.unit(4, "meters"),
  38359. name: "Back",
  38360. image: {
  38361. source: "./media/characters/adelonda/back.svg",
  38362. extra: 1105/1003,
  38363. bottom: 25/1130
  38364. }
  38365. },
  38366. feral: {
  38367. height: math.unit(40/1.5, "meters"),
  38368. name: "Feral",
  38369. image: {
  38370. source: "./media/characters/adelonda/feral.svg",
  38371. extra: 597/271,
  38372. bottom: 387/984
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Normal",
  38379. height: math.unit(4, "meters"),
  38380. default: true
  38381. },
  38382. ]
  38383. ))
  38384. characterMakers.push(() => makeCharacter(
  38385. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38386. {
  38387. front: {
  38388. height: math.unit(8 + 4/12, "feet"),
  38389. weight: math.unit(670, "lb"),
  38390. name: "Front",
  38391. image: {
  38392. source: "./media/characters/acadiel/front.svg",
  38393. extra: 1901/1595,
  38394. bottom: 142/2043
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Normal",
  38401. height: math.unit(8 + 4/12, "feet"),
  38402. default: true
  38403. },
  38404. {
  38405. name: "Macro",
  38406. height: math.unit(200, "feet")
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(6 + 2/12, "feet"),
  38415. weight: math.unit(185, "lb"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/kayne-ein/front.svg",
  38419. extra: 1780/1560,
  38420. bottom: 81/1861
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(6 + 2/12, "feet"),
  38428. default: true
  38429. },
  38430. {
  38431. name: "Transformation Stage",
  38432. height: math.unit(15, "feet")
  38433. },
  38434. {
  38435. name: "Macro",
  38436. height: math.unit(150, "feet")
  38437. },
  38438. {
  38439. name: "Earth's Shadow",
  38440. height: math.unit(6200, "miles")
  38441. },
  38442. {
  38443. name: "Universal Demon",
  38444. height: math.unit(28e9, "parsecs")
  38445. },
  38446. {
  38447. name: "Multiverse God",
  38448. height: math.unit(3, "multiverses")
  38449. },
  38450. ]
  38451. ))
  38452. characterMakers.push(() => makeCharacter(
  38453. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38454. {
  38455. front: {
  38456. height: math.unit(5 + 5/12, "feet"),
  38457. name: "Front",
  38458. image: {
  38459. source: "./media/characters/fawn/front.svg",
  38460. extra: 1873/1731,
  38461. bottom: 95/1968
  38462. }
  38463. },
  38464. back: {
  38465. height: math.unit(5 + 5/12, "feet"),
  38466. name: "Back",
  38467. image: {
  38468. source: "./media/characters/fawn/back.svg",
  38469. extra: 1813/1700,
  38470. bottom: 14/1827
  38471. }
  38472. },
  38473. hoof: {
  38474. height: math.unit(1.45, "feet"),
  38475. name: "Hoof",
  38476. image: {
  38477. source: "./media/characters/fawn/hoof.svg"
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(5 + 5/12, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(2 + 5/12, "feet"),
  38494. name: "Front",
  38495. image: {
  38496. source: "./media/characters/orion/front.svg",
  38497. extra: 1366/1304,
  38498. bottom: 43/1409
  38499. }
  38500. },
  38501. paw: {
  38502. height: math.unit(0.52, "feet"),
  38503. name: "Paw",
  38504. image: {
  38505. source: "./media/characters/orion/paw.svg"
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(2 + 5/12, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(5 + 10/12, "feet"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/vera/front.svg",
  38525. extra: 1680/1575,
  38526. bottom: 49/1729
  38527. }
  38528. },
  38529. back: {
  38530. height: math.unit(5 + 10/12, "feet"),
  38531. name: "Back",
  38532. image: {
  38533. source: "./media/characters/vera/back.svg",
  38534. extra: 1700/1588,
  38535. bottom: 18/1718
  38536. }
  38537. },
  38538. arcanine: {
  38539. height: math.unit(6 + 8/12, "feet"),
  38540. name: "Arcanine",
  38541. image: {
  38542. source: "./media/characters/vera/arcanine.svg",
  38543. extra: 1590/1511,
  38544. bottom: 71/1661
  38545. }
  38546. },
  38547. maw: {
  38548. height: math.unit(0.82, "feet"),
  38549. name: "Maw",
  38550. image: {
  38551. source: "./media/characters/vera/maw.svg"
  38552. }
  38553. },
  38554. mawArcanine: {
  38555. height: math.unit(0.97, "feet"),
  38556. name: "Maw (Arcanine)",
  38557. image: {
  38558. source: "./media/characters/vera/maw-arcanine.svg"
  38559. }
  38560. },
  38561. paw: {
  38562. height: math.unit(0.75, "feet"),
  38563. name: "Paw",
  38564. image: {
  38565. source: "./media/characters/vera/paw.svg"
  38566. }
  38567. },
  38568. pawprint: {
  38569. height: math.unit(0.52, "feet"),
  38570. name: "Pawprint",
  38571. image: {
  38572. source: "./media/characters/vera/pawprint.svg"
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Normal",
  38579. height: math.unit(5 + 10/12, "feet"),
  38580. default: true
  38581. },
  38582. {
  38583. name: "Macro",
  38584. height: math.unit(75, "feet")
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(4, "feet"),
  38593. weight: math.unit(40, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/orvan-rabbit/front.svg",
  38597. extra: 1896/1642,
  38598. bottom: 29/1925
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(4, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(6, "feet"),
  38615. weight: math.unit(168, "lb"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/lisa/front.svg",
  38619. extra: 2065/1867,
  38620. bottom: 46/2111
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(6, "feet"),
  38625. weight: math.unit(168, "lb"),
  38626. name: "Back",
  38627. image: {
  38628. source: "./media/characters/lisa/back.svg",
  38629. extra: 1982/1838,
  38630. bottom: 29/2011
  38631. }
  38632. },
  38633. maw: {
  38634. height: math.unit(0.81, "feet"),
  38635. name: "Maw",
  38636. image: {
  38637. source: "./media/characters/lisa/maw.svg"
  38638. }
  38639. },
  38640. paw: {
  38641. height: math.unit(0.9, "feet"),
  38642. name: "Paw",
  38643. image: {
  38644. source: "./media/characters/lisa/paw.svg"
  38645. }
  38646. },
  38647. caribousune: {
  38648. height: math.unit(7 + 2/12, "feet"),
  38649. weight: math.unit(268, "lb"),
  38650. name: "Caribousune",
  38651. image: {
  38652. source: "./media/characters/lisa/caribousune.svg",
  38653. extra: 1843/1633,
  38654. bottom: 29/1872
  38655. }
  38656. },
  38657. frontCaribousune: {
  38658. height: math.unit(7 + 2/12, "feet"),
  38659. weight: math.unit(268, "lb"),
  38660. name: "Front (Caribousune)",
  38661. image: {
  38662. source: "./media/characters/lisa/front-caribousune.svg",
  38663. extra: 1818/1638,
  38664. bottom: 52/1870
  38665. }
  38666. },
  38667. sideCaribousune: {
  38668. height: math.unit(7 + 2/12, "feet"),
  38669. weight: math.unit(268, "lb"),
  38670. name: "Side (Caribousune)",
  38671. image: {
  38672. source: "./media/characters/lisa/side-caribousune.svg",
  38673. extra: 1851/1635,
  38674. bottom: 16/1867
  38675. }
  38676. },
  38677. backCaribousune: {
  38678. height: math.unit(7 + 2/12, "feet"),
  38679. weight: math.unit(268, "lb"),
  38680. name: "Back (Caribousune)",
  38681. image: {
  38682. source: "./media/characters/lisa/back-caribousune.svg",
  38683. extra: 1801/1604,
  38684. bottom: 44/1845
  38685. }
  38686. },
  38687. caribou: {
  38688. height: math.unit(7 + 2/12, "feet"),
  38689. weight: math.unit(268, "lb"),
  38690. name: "Caribou",
  38691. image: {
  38692. source: "./media/characters/lisa/caribou.svg",
  38693. extra: 1843/1633,
  38694. bottom: 29/1872
  38695. }
  38696. },
  38697. frontCaribou: {
  38698. height: math.unit(7 + 2/12, "feet"),
  38699. weight: math.unit(268, "lb"),
  38700. name: "Front (Caribou)",
  38701. image: {
  38702. source: "./media/characters/lisa/front-caribou.svg",
  38703. extra: 1818/1638,
  38704. bottom: 52/1870
  38705. }
  38706. },
  38707. sideCaribou: {
  38708. height: math.unit(7 + 2/12, "feet"),
  38709. weight: math.unit(268, "lb"),
  38710. name: "Side (Caribou)",
  38711. image: {
  38712. source: "./media/characters/lisa/side-caribou.svg",
  38713. extra: 1851/1635,
  38714. bottom: 16/1867
  38715. }
  38716. },
  38717. backCaribou: {
  38718. height: math.unit(7 + 2/12, "feet"),
  38719. weight: math.unit(268, "lb"),
  38720. name: "Back (Caribou)",
  38721. image: {
  38722. source: "./media/characters/lisa/back-caribou.svg",
  38723. extra: 1801/1604,
  38724. bottom: 44/1845
  38725. }
  38726. },
  38727. mawCaribou: {
  38728. height: math.unit(1.45, "feet"),
  38729. name: "Maw (Caribou)",
  38730. image: {
  38731. source: "./media/characters/lisa/maw-caribou.svg"
  38732. }
  38733. },
  38734. mawCaribousune: {
  38735. height: math.unit(1.45, "feet"),
  38736. name: "Maw (Caribousune)",
  38737. image: {
  38738. source: "./media/characters/lisa/maw-caribousune.svg"
  38739. }
  38740. },
  38741. pawCaribousune: {
  38742. height: math.unit(1.61, "feet"),
  38743. name: "Paw (Caribou)",
  38744. image: {
  38745. source: "./media/characters/lisa/paw-caribousune.svg"
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(6, "feet")
  38753. },
  38754. {
  38755. name: "God Size",
  38756. height: math.unit(72, "feet"),
  38757. default: true
  38758. },
  38759. {
  38760. name: "Towering",
  38761. height: math.unit(288, "feet")
  38762. },
  38763. {
  38764. name: "City Size",
  38765. height: math.unit(48384, "feet")
  38766. },
  38767. {
  38768. name: "Continental",
  38769. height: math.unit(4200, "miles")
  38770. },
  38771. {
  38772. name: "Planet Eater",
  38773. height: math.unit(42, "earths")
  38774. },
  38775. {
  38776. name: "Star Swallower",
  38777. height: math.unit(42, "solarradii")
  38778. },
  38779. {
  38780. name: "System Swallower",
  38781. height: math.unit(84000, "AU")
  38782. },
  38783. {
  38784. name: "Galaxy Gobbler",
  38785. height: math.unit(42, "galaxies")
  38786. },
  38787. {
  38788. name: "Universe Devourer",
  38789. height: math.unit(42, "universes")
  38790. },
  38791. {
  38792. name: "Multiverse Muncher",
  38793. height: math.unit(42, "multiverses")
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(36, "feet"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/shadow-rat/front.svg",
  38805. extra: 1845/1758,
  38806. bottom: 83/1928
  38807. }
  38808. },
  38809. },
  38810. [
  38811. {
  38812. name: "Macro",
  38813. height: math.unit(36, "feet"),
  38814. default: true
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38820. {
  38821. side: {
  38822. height: math.unit(8, "feet"),
  38823. weight: math.unit(2630, "lb"),
  38824. name: "Side",
  38825. image: {
  38826. source: "./media/characters/torallia/side.svg",
  38827. extra: 2164/2021,
  38828. bottom: 371/2535
  38829. }
  38830. },
  38831. },
  38832. [
  38833. {
  38834. name: "Mortal Interaction",
  38835. height: math.unit(8, "feet")
  38836. },
  38837. {
  38838. name: "Natural",
  38839. height: math.unit(24, "feet"),
  38840. default: true
  38841. },
  38842. {
  38843. name: "Giant",
  38844. height: math.unit(80, "feet")
  38845. },
  38846. {
  38847. name: "Kaiju",
  38848. height: math.unit(240, "feet")
  38849. },
  38850. {
  38851. name: "Macro",
  38852. height: math.unit(800, "feet")
  38853. },
  38854. {
  38855. name: "Macro+",
  38856. height: math.unit(2400, "feet")
  38857. },
  38858. {
  38859. name: "Macro++",
  38860. height: math.unit(8000, "feet")
  38861. },
  38862. {
  38863. name: "City-Crushing",
  38864. height: math.unit(24000, "feet")
  38865. },
  38866. {
  38867. name: "Mountain-Mashing",
  38868. height: math.unit(80000, "feet")
  38869. },
  38870. {
  38871. name: "District Demolisher",
  38872. height: math.unit(240000, "feet")
  38873. },
  38874. {
  38875. name: "Tri-County Terror",
  38876. height: math.unit(800000, "feet")
  38877. },
  38878. {
  38879. name: "State Smasher",
  38880. height: math.unit(2.4e6, "feet")
  38881. },
  38882. {
  38883. name: "Nation Nemesis",
  38884. height: math.unit(8e6, "feet")
  38885. },
  38886. {
  38887. name: "Continent Cracker",
  38888. height: math.unit(2.4e7, "feet")
  38889. },
  38890. {
  38891. name: "Planet-Pillaging",
  38892. height: math.unit(8e7, "feet")
  38893. },
  38894. {
  38895. name: "Earth-Eclipsing",
  38896. height: math.unit(2.4e8, "feet")
  38897. },
  38898. {
  38899. name: "Jovian-Jostling",
  38900. height: math.unit(8e8, "feet")
  38901. },
  38902. {
  38903. name: "Gas Giant Gulper",
  38904. height: math.unit(2.4e9, "feet")
  38905. },
  38906. {
  38907. name: "Astral Annihilator",
  38908. height: math.unit(8e9, "feet")
  38909. },
  38910. {
  38911. name: "Celestial Conqueror",
  38912. height: math.unit(2.4e10, "feet")
  38913. },
  38914. {
  38915. name: "Sol-Swallowing",
  38916. height: math.unit(8e10, "feet")
  38917. },
  38918. {
  38919. name: "Hunter of the Heavens",
  38920. height: math.unit(2.4e13, "feet")
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(6 + 8/12, "feet"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/rebecca-pawlson/front.svg",
  38932. extra: 1737/1596,
  38933. bottom: 107/1844
  38934. }
  38935. },
  38936. back: {
  38937. height: math.unit(6 + 8/12, "feet"),
  38938. name: "Back",
  38939. image: {
  38940. source: "./media/characters/rebecca-pawlson/back.svg",
  38941. extra: 1702/1523,
  38942. bottom: 86/1788
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(6 + 8/12, "feet")
  38950. },
  38951. {
  38952. name: "Mini Macro",
  38953. height: math.unit(10, "feet"),
  38954. default: true
  38955. },
  38956. {
  38957. name: "Macro",
  38958. height: math.unit(100, "feet")
  38959. },
  38960. {
  38961. name: "Mega Macro",
  38962. height: math.unit(2500, "feet")
  38963. },
  38964. {
  38965. name: "Giga Macro",
  38966. height: math.unit(50, "miles")
  38967. },
  38968. ]
  38969. ))
  38970. characterMakers.push(() => makeCharacter(
  38971. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38972. {
  38973. front: {
  38974. height: math.unit(7 + 6/12, "feet"),
  38975. weight: math.unit(600, "lb"),
  38976. name: "Front",
  38977. image: {
  38978. source: "./media/characters/moxie-nova/front.svg",
  38979. extra: 1734/1652,
  38980. bottom: 41/1775
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(7 + 6/12, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38994. {
  38995. goat: {
  38996. height: math.unit(4, "feet"),
  38997. weight: math.unit(180, "lb"),
  38998. name: "Goat",
  38999. image: {
  39000. source: "./media/characters/tiffany/goat.svg",
  39001. extra: 1845/1595,
  39002. bottom: 106/1951
  39003. }
  39004. },
  39005. front: {
  39006. height: math.unit(5, "feet"),
  39007. weight: math.unit(150, "lb"),
  39008. name: "Foxcoon",
  39009. image: {
  39010. source: "./media/characters/tiffany/foxcoon.svg",
  39011. extra: 1941/1845,
  39012. bottom: 58/1999
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(5, "feet"),
  39020. default: true
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(8, "feet"),
  39029. weight: math.unit(300, "lb"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/raxinath/front.svg",
  39033. extra: 1407/1309,
  39034. bottom: 39/1446
  39035. }
  39036. },
  39037. back: {
  39038. height: math.unit(8, "feet"),
  39039. weight: math.unit(300, "lb"),
  39040. name: "Back",
  39041. image: {
  39042. source: "./media/characters/raxinath/back.svg",
  39043. extra: 1405/1315,
  39044. bottom: 9/1414
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Speck",
  39051. height: math.unit(0.5, "nm")
  39052. },
  39053. {
  39054. name: "Micro",
  39055. height: math.unit(3, "inches")
  39056. },
  39057. {
  39058. name: "Kobold",
  39059. height: math.unit(3, "feet")
  39060. },
  39061. {
  39062. name: "Normal",
  39063. height: math.unit(8, "feet"),
  39064. default: true
  39065. },
  39066. {
  39067. name: "Giant",
  39068. height: math.unit(50, "feet")
  39069. },
  39070. {
  39071. name: "Macro",
  39072. height: math.unit(1000, "feet")
  39073. },
  39074. {
  39075. name: "Megamacro",
  39076. height: math.unit(1, "mile")
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(10, "feet"),
  39085. weight: math.unit(1442, "lb"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/mal-dragon/front.svg",
  39089. extra: 1515/1444,
  39090. bottom: 113/1628
  39091. }
  39092. },
  39093. back: {
  39094. height: math.unit(10, "feet"),
  39095. weight: math.unit(1442, "lb"),
  39096. name: "Back",
  39097. image: {
  39098. source: "./media/characters/mal-dragon/back.svg",
  39099. extra: 1527/1434,
  39100. bottom: 25/1552
  39101. }
  39102. },
  39103. },
  39104. [
  39105. {
  39106. name: "Mortal Interaction",
  39107. height: math.unit(10, "feet"),
  39108. default: true
  39109. },
  39110. {
  39111. name: "Large",
  39112. height: math.unit(30, "feet")
  39113. },
  39114. {
  39115. name: "Kaiju",
  39116. height: math.unit(300, "feet")
  39117. },
  39118. {
  39119. name: "Megamacro",
  39120. height: math.unit(10000, "feet")
  39121. },
  39122. {
  39123. name: "Continent Cracker",
  39124. height: math.unit(30000000, "feet")
  39125. },
  39126. {
  39127. name: "Sol-Swallowing",
  39128. height: math.unit(1e11, "feet")
  39129. },
  39130. {
  39131. name: "Light Universal",
  39132. height: math.unit(5, "universes")
  39133. },
  39134. {
  39135. name: "Universe Atoms",
  39136. height: math.unit(1.829e9, "universes")
  39137. },
  39138. {
  39139. name: "Light Multiversal",
  39140. height: math.unit(5, "multiverses")
  39141. },
  39142. {
  39143. name: "Multiverse Atoms",
  39144. height: math.unit(1.829e9, "multiverses")
  39145. },
  39146. {
  39147. name: "Fabric of Time",
  39148. height: math.unit(1e262, "multiverses")
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(9, "feet"),
  39157. weight: math.unit(1050, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/tabitha/front.svg",
  39161. extra: 2083/1994,
  39162. bottom: 68/2151
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Baseline",
  39169. height: math.unit(9, "feet"),
  39170. default: true
  39171. },
  39172. {
  39173. name: "Giant",
  39174. height: math.unit(90, "feet")
  39175. },
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(900, "feet")
  39179. },
  39180. {
  39181. name: "Megamacro",
  39182. height: math.unit(9000, "feet")
  39183. },
  39184. {
  39185. name: "City-Crushing",
  39186. height: math.unit(27000, "feet")
  39187. },
  39188. {
  39189. name: "Mountain-Mashing",
  39190. height: math.unit(90000, "feet")
  39191. },
  39192. {
  39193. name: "Nation Nemesis",
  39194. height: math.unit(9e6, "feet")
  39195. },
  39196. {
  39197. name: "Continent Cracker",
  39198. height: math.unit(27e6, "feet")
  39199. },
  39200. {
  39201. name: "Earth-Eclipsing",
  39202. height: math.unit(2.7e8, "feet")
  39203. },
  39204. {
  39205. name: "Gas Giant Gulper",
  39206. height: math.unit(2.7e9, "feet")
  39207. },
  39208. {
  39209. name: "Sol-Swallowing",
  39210. height: math.unit(9e10, "feet")
  39211. },
  39212. {
  39213. name: "Galaxy Gulper",
  39214. height: math.unit(9, "galaxies")
  39215. },
  39216. {
  39217. name: "Cosmos Churner",
  39218. height: math.unit(9, "universes")
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(160, "cm"),
  39227. weight: math.unit(55, "kg"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/tow/front.svg",
  39231. extra: 1751/1722,
  39232. bottom: 74/1825
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Norm",
  39239. height: math.unit(160, "cm")
  39240. },
  39241. {
  39242. name: "Casual",
  39243. height: math.unit(3200, "m"),
  39244. default: true
  39245. },
  39246. {
  39247. name: "Show-Off",
  39248. height: math.unit(160, "km")
  39249. },
  39250. ]
  39251. ))
  39252. characterMakers.push(() => makeCharacter(
  39253. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39254. {
  39255. front: {
  39256. height: math.unit(7 + 11/12, "feet"),
  39257. weight: math.unit(342.8, "lb"),
  39258. name: "Front",
  39259. image: {
  39260. source: "./media/characters/vivian-orca-dragon/front.svg",
  39261. extra: 1890/1865,
  39262. bottom: 28/1918
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Micro",
  39269. height: math.unit(5, "inches")
  39270. },
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(7 + 11/12, "feet"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Macro",
  39278. height: math.unit(395 + 7/12, "feet")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39284. {
  39285. side: {
  39286. height: math.unit(10, "feet"),
  39287. weight: math.unit(1442, "lb"),
  39288. name: "Side",
  39289. image: {
  39290. source: "./media/characters/lotherakon/side.svg",
  39291. extra: 1604/1497,
  39292. bottom: 89/1693
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Mortal Interaction",
  39299. height: math.unit(10, "feet")
  39300. },
  39301. {
  39302. name: "Large",
  39303. height: math.unit(30, "feet"),
  39304. default: true
  39305. },
  39306. {
  39307. name: "Giant",
  39308. height: math.unit(100, "feet")
  39309. },
  39310. {
  39311. name: "Kaiju",
  39312. height: math.unit(300, "feet")
  39313. },
  39314. {
  39315. name: "Macro",
  39316. height: math.unit(1000, "feet")
  39317. },
  39318. {
  39319. name: "Macro+",
  39320. height: math.unit(3000, "feet")
  39321. },
  39322. {
  39323. name: "Megamacro",
  39324. height: math.unit(10000, "feet")
  39325. },
  39326. {
  39327. name: "City-Crushing",
  39328. height: math.unit(30000, "feet")
  39329. },
  39330. {
  39331. name: "Continent Cracker",
  39332. height: math.unit(30e6, "feet")
  39333. },
  39334. {
  39335. name: "Earth Eclipsing",
  39336. height: math.unit(3e8, "feet")
  39337. },
  39338. {
  39339. name: "Gas Giant Gulper",
  39340. height: math.unit(3e9, "feet")
  39341. },
  39342. {
  39343. name: "Sol-Swallowing",
  39344. height: math.unit(1e11, "feet")
  39345. },
  39346. {
  39347. name: "System Swallower",
  39348. height: math.unit(3e14, "feet")
  39349. },
  39350. {
  39351. name: "Galaxy Gulper",
  39352. height: math.unit(10, "galaxies")
  39353. },
  39354. {
  39355. name: "Light Universal",
  39356. height: math.unit(5, "universes")
  39357. },
  39358. {
  39359. name: "Universe Palm",
  39360. height: math.unit(20, "universes")
  39361. },
  39362. {
  39363. name: "Light Multiversal",
  39364. height: math.unit(5, "multiverses")
  39365. },
  39366. {
  39367. name: "Multiverse Palm",
  39368. height: math.unit(20, "multiverses")
  39369. },
  39370. {
  39371. name: "Inferno Incarnate",
  39372. height: math.unit(1e7, "multiverses")
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(8, "feet"),
  39381. weight: math.unit(1200, "lb"),
  39382. name: "Front",
  39383. image: {
  39384. source: "./media/characters/malithee/front.svg",
  39385. extra: 1675/1640,
  39386. bottom: 162/1837
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Mortal Interaction",
  39393. height: math.unit(8, "feet"),
  39394. default: true
  39395. },
  39396. {
  39397. name: "Large",
  39398. height: math.unit(24, "feet")
  39399. },
  39400. {
  39401. name: "Kaiju",
  39402. height: math.unit(240, "feet")
  39403. },
  39404. {
  39405. name: "Megamacro",
  39406. height: math.unit(8000, "feet")
  39407. },
  39408. {
  39409. name: "Continent Cracker",
  39410. height: math.unit(24e6, "feet")
  39411. },
  39412. {
  39413. name: "Earth-Eclipsing",
  39414. height: math.unit(2.4e8, "feet")
  39415. },
  39416. {
  39417. name: "Sol-Swallowing",
  39418. height: math.unit(8e10, "feet")
  39419. },
  39420. {
  39421. name: "Galaxy Gulper",
  39422. height: math.unit(8, "galaxies")
  39423. },
  39424. {
  39425. name: "Light Universal",
  39426. height: math.unit(4, "universes")
  39427. },
  39428. {
  39429. name: "Universe Atoms",
  39430. height: math.unit(1.829e9, "universes")
  39431. },
  39432. {
  39433. name: "Light Multiversal",
  39434. height: math.unit(4, "multiverses")
  39435. },
  39436. {
  39437. name: "Multiverse Atoms",
  39438. height: math.unit(1.829e9, "multiverses")
  39439. },
  39440. {
  39441. name: "Nigh-Omnipresence",
  39442. height: math.unit(8e261, "multiverses")
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(10, "feet"),
  39451. weight: math.unit(1500, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/miles-thestia/front.svg",
  39455. extra: 1812/1727,
  39456. bottom: 86/1898
  39457. }
  39458. },
  39459. back: {
  39460. height: math.unit(10, "feet"),
  39461. weight: math.unit(1500, "lb"),
  39462. name: "Back",
  39463. image: {
  39464. source: "./media/characters/miles-thestia/back.svg",
  39465. extra: 1799/1690,
  39466. bottom: 47/1846
  39467. }
  39468. },
  39469. frontNsfw: {
  39470. height: math.unit(10, "feet"),
  39471. weight: math.unit(1500, "lb"),
  39472. name: "Front (NSFW)",
  39473. image: {
  39474. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39475. extra: 1812/1727,
  39476. bottom: 86/1898
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Mini-Macro",
  39483. height: math.unit(10, "feet"),
  39484. default: true
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(25, "feet"),
  39493. name: "Front",
  39494. image: {
  39495. source: "./media/characters/titan-s-wulf/front.svg",
  39496. extra: 1560/1484,
  39497. bottom: 76/1636
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Smallest",
  39504. height: math.unit(25, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(200, "feet")
  39510. },
  39511. {
  39512. name: "Macro",
  39513. height: math.unit(200000, "feet")
  39514. },
  39515. {
  39516. name: "Multiversal Original",
  39517. height: math.unit(10000, "multiverses")
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(8, "feet"),
  39526. weight: math.unit(553, "lb"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/tawendeh/front.svg",
  39530. extra: 2365/2268,
  39531. bottom: 83/2448
  39532. }
  39533. },
  39534. frontClothed: {
  39535. height: math.unit(8, "feet"),
  39536. weight: math.unit(553, "lb"),
  39537. name: "Front (Clothed)",
  39538. image: {
  39539. source: "./media/characters/tawendeh/front-clothed.svg",
  39540. extra: 2365/2268,
  39541. bottom: 83/2448
  39542. }
  39543. },
  39544. back: {
  39545. height: math.unit(8, "feet"),
  39546. weight: math.unit(553, "lb"),
  39547. name: "Back",
  39548. image: {
  39549. source: "./media/characters/tawendeh/back.svg",
  39550. extra: 2397/2294,
  39551. bottom: 42/2439
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Mortal Interaction",
  39558. height: math.unit(8, "feet"),
  39559. default: true
  39560. },
  39561. {
  39562. name: "Giant",
  39563. height: math.unit(80, "feet")
  39564. },
  39565. {
  39566. name: "Macro",
  39567. height: math.unit(800, "feet")
  39568. },
  39569. {
  39570. name: "Megamacro",
  39571. height: math.unit(8000, "feet")
  39572. },
  39573. {
  39574. name: "City-Crushing",
  39575. height: math.unit(24000, "feet")
  39576. },
  39577. {
  39578. name: "Mountain-Mashing",
  39579. height: math.unit(80000, "feet")
  39580. },
  39581. {
  39582. name: "Nation Nemesis",
  39583. height: math.unit(8e6, "feet")
  39584. },
  39585. {
  39586. name: "Continent Cracker",
  39587. height: math.unit(24e6, "feet")
  39588. },
  39589. {
  39590. name: "Earth-Eclipsing",
  39591. height: math.unit(2.4e8, "feet")
  39592. },
  39593. {
  39594. name: "Gas Giant Gulper",
  39595. height: math.unit(2.4e9, "feet")
  39596. },
  39597. {
  39598. name: "Sol-Swallowing",
  39599. height: math.unit(8e10, "feet")
  39600. },
  39601. {
  39602. name: "Galaxy Gulper",
  39603. height: math.unit(8, "galaxies")
  39604. },
  39605. {
  39606. name: "Cosmos Churner",
  39607. height: math.unit(8, "universes")
  39608. },
  39609. {
  39610. name: "Omnipotent Otter",
  39611. height: math.unit(80, "universes")
  39612. },
  39613. ]
  39614. ))
  39615. characterMakers.push(() => makeCharacter(
  39616. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39617. {
  39618. front: {
  39619. height: math.unit(2.6, "meters"),
  39620. weight: math.unit(900, "kg"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/neesha/front.svg",
  39624. extra: 1803/1653,
  39625. bottom: 128/1931
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(2.6, "meters"),
  39633. default: true
  39634. },
  39635. {
  39636. name: "Macro",
  39637. height: math.unit(50, "meters")
  39638. },
  39639. ]
  39640. ))
  39641. characterMakers.push(() => makeCharacter(
  39642. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39643. {
  39644. front: {
  39645. height: math.unit(5, "feet"),
  39646. weight: math.unit(185, "lb"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/kyera/front.svg",
  39650. extra: 1875/1790,
  39651. bottom: 96/1971
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(5, "feet"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(7 + 6/12, "feet"),
  39668. weight: math.unit(540, "lb"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/yuko/front.svg",
  39672. extra: 1282/1222,
  39673. bottom: 101/1383
  39674. }
  39675. },
  39676. frontClothed: {
  39677. height: math.unit(7 + 6/12, "feet"),
  39678. weight: math.unit(540, "lb"),
  39679. name: "Front (Clothed)",
  39680. image: {
  39681. source: "./media/characters/yuko/front-clothed.svg",
  39682. extra: 1282/1222,
  39683. bottom: 101/1383
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Normal",
  39690. height: math.unit(7 + 6/12, "feet"),
  39691. default: true
  39692. },
  39693. {
  39694. name: "Macro",
  39695. height: math.unit(26 + 9/12, "feet")
  39696. },
  39697. {
  39698. name: "Megamacro",
  39699. height: math.unit(300, "feet")
  39700. },
  39701. {
  39702. name: "Gigamacro",
  39703. height: math.unit(5000, "feet")
  39704. },
  39705. {
  39706. name: "Planetary",
  39707. height: math.unit(10000, "miles")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(8 + 2/12, "feet"),
  39716. weight: math.unit(600, "lb"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/deam-nitrel/front.svg",
  39720. extra: 1308/1234,
  39721. bottom: 125/1433
  39722. }
  39723. },
  39724. },
  39725. [
  39726. {
  39727. name: "Normal",
  39728. height: math.unit(8 + 2/12, "feet"),
  39729. default: true
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(6.1, "feet"),
  39738. weight: math.unit(180, "lb"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/skyress/front.svg",
  39742. extra: 1045/915,
  39743. bottom: 28/1073
  39744. }
  39745. },
  39746. maw: {
  39747. height: math.unit(1, "feet"),
  39748. name: "Maw",
  39749. image: {
  39750. source: "./media/characters/skyress/maw.svg"
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(6.1, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(200, "feet")
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(4 + 2/12, "feet"),
  39771. weight: math.unit(40, "kg"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/amethyst-jones/front.svg",
  39775. extra: 1220/1150,
  39776. bottom: 101/1321
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(4 + 2/12, "feet"),
  39784. default: true
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(1.7, "m"),
  39793. weight: math.unit(135, "lb"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/jade/front.svg",
  39797. extra: 1818/1767,
  39798. bottom: 32/1850
  39799. }
  39800. },
  39801. back: {
  39802. height: math.unit(1.7, "m"),
  39803. weight: math.unit(135, "lb"),
  39804. name: "Back",
  39805. image: {
  39806. source: "./media/characters/jade/back.svg",
  39807. extra: 1869/1809,
  39808. bottom: 35/1904
  39809. }
  39810. },
  39811. hand: {
  39812. height: math.unit(0.24, "m"),
  39813. name: "Hand",
  39814. image: {
  39815. source: "./media/characters/jade/hand.svg"
  39816. }
  39817. },
  39818. foot: {
  39819. height: math.unit(0.263, "m"),
  39820. name: "Foot",
  39821. image: {
  39822. source: "./media/characters/jade/foot.svg"
  39823. }
  39824. },
  39825. dick: {
  39826. height: math.unit(0.47, "m"),
  39827. name: "Dick",
  39828. image: {
  39829. source: "./media/characters/jade/dick.svg"
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Micro",
  39836. height: math.unit(22, "cm")
  39837. },
  39838. {
  39839. name: "Normal",
  39840. height: math.unit(1.7, "m"),
  39841. default: true
  39842. },
  39843. {
  39844. name: "Macro",
  39845. height: math.unit(152, "m")
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(100, "miles"),
  39854. weight: math.unit(20000, "tons"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/cookie/front.svg",
  39858. extra: 1125/1070,
  39859. bottom: 30/1155
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Big",
  39866. height: math.unit(50, "feet")
  39867. },
  39868. {
  39869. name: "Macro",
  39870. height: math.unit(100, "miles"),
  39871. default: true
  39872. },
  39873. {
  39874. name: "Megamacro",
  39875. height: math.unit(90000, "miles")
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(6, "feet"),
  39884. weight: math.unit(145, "lb"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/farzian/front.svg",
  39888. extra: 1902/1693,
  39889. bottom: 108/2010
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Macro",
  39896. height: math.unit(500, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(3 + 6/12, "feet"),
  39906. weight: math.unit(50, "lb"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/kimberly-tilson/front.svg",
  39910. extra: 1400/1322,
  39911. bottom: 36/1436
  39912. }
  39913. },
  39914. back: {
  39915. height: math.unit(3 + 6/12, "feet"),
  39916. weight: math.unit(50, "lb"),
  39917. name: "Back",
  39918. image: {
  39919. source: "./media/characters/kimberly-tilson/back.svg",
  39920. extra: 1370/1307,
  39921. bottom: 20/1390
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(3 + 6/12, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(1148, "feet"),
  39938. weight: math.unit(34057, "lb"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/harthos/front.svg",
  39942. extra: 1391/1339,
  39943. bottom: 13/1404
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Macro",
  39950. height: math.unit(1148, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(15, "feet"),
  39960. name: "Front",
  39961. image: {
  39962. source: "./media/characters/hypatia/front.svg",
  39963. extra: 1653/1591,
  39964. bottom: 79/1732
  39965. }
  39966. },
  39967. },
  39968. [
  39969. {
  39970. name: "Normal",
  39971. height: math.unit(15, "feet")
  39972. },
  39973. {
  39974. name: "Small",
  39975. height: math.unit(300, "feet")
  39976. },
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(2500, "feet"),
  39980. default: true
  39981. },
  39982. {
  39983. name: "Mega Macro",
  39984. height: math.unit(1500, "miles")
  39985. },
  39986. {
  39987. name: "Giga Macro",
  39988. height: math.unit(1.5e6, "miles")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(6, "feet"),
  39997. weight: math.unit(200, "lb"),
  39998. name: "Front",
  39999. image: {
  40000. source: "./media/characters/wulver/front.svg",
  40001. extra: 1724/1632,
  40002. bottom: 130/1854
  40003. }
  40004. },
  40005. frontNsfw: {
  40006. height: math.unit(6, "feet"),
  40007. weight: math.unit(200, "lb"),
  40008. name: "Front (NSFW)",
  40009. image: {
  40010. source: "./media/characters/wulver/front-nsfw.svg",
  40011. extra: 1724/1632,
  40012. bottom: 130/1854
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Human-Sized",
  40019. height: math.unit(6, "feet")
  40020. },
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(4, "meters"),
  40024. default: true
  40025. },
  40026. {
  40027. name: "Large",
  40028. height: math.unit(6, "m")
  40029. },
  40030. ]
  40031. ))
  40032. characterMakers.push(() => makeCharacter(
  40033. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40034. {
  40035. front: {
  40036. height: math.unit(7, "feet"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/maru/front.svg",
  40040. extra: 1595/1570,
  40041. bottom: 0/1595
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Normal",
  40048. height: math.unit(7, "feet"),
  40049. default: true
  40050. },
  40051. {
  40052. name: "Macro",
  40053. height: math.unit(700, "feet")
  40054. },
  40055. {
  40056. name: "Mega Macro",
  40057. height: math.unit(25, "miles")
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40063. {
  40064. front: {
  40065. height: math.unit(6, "feet"),
  40066. weight: math.unit(170, "lb"),
  40067. name: "Front",
  40068. image: {
  40069. source: "./media/characters/xenon/front.svg",
  40070. extra: 1376/1305,
  40071. bottom: 56/1432
  40072. }
  40073. },
  40074. back: {
  40075. height: math.unit(6, "feet"),
  40076. weight: math.unit(170, "lb"),
  40077. name: "Back",
  40078. image: {
  40079. source: "./media/characters/xenon/back.svg",
  40080. extra: 1328/1259,
  40081. bottom: 95/1423
  40082. }
  40083. },
  40084. maw: {
  40085. height: math.unit(0.52, "feet"),
  40086. name: "Maw",
  40087. image: {
  40088. source: "./media/characters/xenon/maw.svg"
  40089. }
  40090. },
  40091. hand: {
  40092. height: math.unit(0.82, "feet"),
  40093. name: "Hand",
  40094. image: {
  40095. source: "./media/characters/xenon/hand.svg"
  40096. }
  40097. },
  40098. foot: {
  40099. height: math.unit(1.13, "feet"),
  40100. name: "Foot",
  40101. image: {
  40102. source: "./media/characters/xenon/foot.svg"
  40103. }
  40104. },
  40105. },
  40106. [
  40107. {
  40108. name: "Micro",
  40109. height: math.unit(0.8, "inches")
  40110. },
  40111. {
  40112. name: "Normal",
  40113. height: math.unit(6, "feet")
  40114. },
  40115. {
  40116. name: "Macro",
  40117. height: math.unit(50, "feet"),
  40118. default: true
  40119. },
  40120. {
  40121. name: "Macro+",
  40122. height: math.unit(250, "feet")
  40123. },
  40124. {
  40125. name: "Megamacro",
  40126. height: math.unit(1500, "feet")
  40127. },
  40128. ]
  40129. ))
  40130. characterMakers.push(() => makeCharacter(
  40131. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40132. {
  40133. front: {
  40134. height: math.unit(7 + 5/12, "feet"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/zane/front.svg",
  40138. extra: 1260/1203,
  40139. bottom: 94/1354
  40140. }
  40141. },
  40142. back: {
  40143. height: math.unit(5.05, "feet"),
  40144. name: "Back",
  40145. image: {
  40146. source: "./media/characters/zane/back.svg",
  40147. extra: 893/829,
  40148. bottom: 30/923
  40149. }
  40150. },
  40151. werewolf: {
  40152. height: math.unit(11, "feet"),
  40153. name: "Werewolf",
  40154. image: {
  40155. source: "./media/characters/zane/werewolf.svg",
  40156. extra: 1383/1323,
  40157. bottom: 89/1472
  40158. }
  40159. },
  40160. foot: {
  40161. height: math.unit(1.46, "feet"),
  40162. name: "Foot",
  40163. image: {
  40164. source: "./media/characters/zane/foot.svg"
  40165. }
  40166. },
  40167. footFront: {
  40168. height: math.unit(0.784, "feet"),
  40169. name: "Foot (Front)",
  40170. image: {
  40171. source: "./media/characters/zane/foot-front.svg"
  40172. }
  40173. },
  40174. dick: {
  40175. height: math.unit(1.95, "feet"),
  40176. name: "Dick",
  40177. image: {
  40178. source: "./media/characters/zane/dick.svg"
  40179. }
  40180. },
  40181. dickWerewolf: {
  40182. height: math.unit(3.77, "feet"),
  40183. name: "Dick (Werewolf)",
  40184. image: {
  40185. source: "./media/characters/zane/dick.svg"
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Normal",
  40192. height: math.unit(7 + 5/12, "feet"),
  40193. default: true
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(6 + 2/12, "feet"),
  40202. weight: math.unit(284, "lb"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/benni-desparque/front.svg",
  40206. extra: 1353/1126,
  40207. bottom: 69/1422
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Civilian",
  40214. height: math.unit(6 + 2/12, "feet")
  40215. },
  40216. {
  40217. name: "Normal",
  40218. height: math.unit(98, "feet"),
  40219. default: true
  40220. },
  40221. {
  40222. name: "Kaiju Fighter",
  40223. height: math.unit(268, "feet")
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40229. {
  40230. front: {
  40231. height: math.unit(5, "feet"),
  40232. weight: math.unit(105, "lb"),
  40233. name: "Front",
  40234. image: {
  40235. source: "./media/characters/maxine/front.svg",
  40236. extra: 1386/1250,
  40237. bottom: 71/1457
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(5, "feet"),
  40245. default: true
  40246. },
  40247. ]
  40248. ))
  40249. characterMakers.push(() => makeCharacter(
  40250. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40251. {
  40252. front: {
  40253. height: math.unit(11 + 7/12, "feet"),
  40254. weight: math.unit(9576, "lb"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/scaly/front.svg",
  40258. extra: 888/867,
  40259. bottom: 36/924
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Normal",
  40266. height: math.unit(11 + 7/12, "feet"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40273. {
  40274. front: {
  40275. height: math.unit(6 + 3/12, "feet"),
  40276. name: "Front",
  40277. image: {
  40278. source: "./media/characters/saelria/front.svg",
  40279. extra: 1243/1138,
  40280. bottom: 46/1289
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Micro",
  40287. height: math.unit(6, "inches"),
  40288. },
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(6 + 3/12, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Macro",
  40296. height: math.unit(25, "feet")
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(80, "meters"),
  40305. weight: math.unit(7000, "tonnes"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/tef/front.svg",
  40309. extra: 2036/1991,
  40310. bottom: 54/2090
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(80, "meters"),
  40315. weight: math.unit(7000, "tonnes"),
  40316. name: "Back",
  40317. image: {
  40318. source: "./media/characters/tef/back.svg",
  40319. extra: 2036/1991,
  40320. bottom: 54/2090
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Macro",
  40327. height: math.unit(80, "meters"),
  40328. default: true
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(13, "feet"),
  40337. weight: math.unit(6, "tons"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/rover/front.svg",
  40341. extra: 1233/1156,
  40342. bottom: 50/1283
  40343. }
  40344. },
  40345. back: {
  40346. height: math.unit(13, "feet"),
  40347. weight: math.unit(6, "tons"),
  40348. name: "Back",
  40349. image: {
  40350. source: "./media/characters/rover/back.svg",
  40351. extra: 1327/1258,
  40352. bottom: 39/1366
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(13, "feet"),
  40360. default: true
  40361. },
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(1300, "feet")
  40365. },
  40366. {
  40367. name: "Megamacro",
  40368. height: math.unit(1300, "miles")
  40369. },
  40370. {
  40371. name: "Gigamacro",
  40372. height: math.unit(1300000, "miles")
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(6, "feet"),
  40381. weight: math.unit(150, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/ariz/front.svg",
  40385. extra: 1401/1346,
  40386. bottom: 5/1406
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Normal",
  40393. height: math.unit(10, "feet"),
  40394. default: true
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6, "feet"),
  40403. weight: math.unit(140, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/sigrun/front.svg",
  40407. extra: 1418/1359,
  40408. bottom: 27/1445
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Macro",
  40415. height: math.unit(35, "feet"),
  40416. default: true
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(6, "feet"),
  40425. weight: math.unit(150, "lb"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/numin/front.svg",
  40429. extra: 1433/1388,
  40430. bottom: 12/1445
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Macro",
  40437. height: math.unit(21.5, "km"),
  40438. default: true
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(6, "feet"),
  40447. weight: math.unit(463, "lb"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/melwa/front.svg",
  40451. extra: 1307/1248,
  40452. bottom: 93/1400
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Macro",
  40459. height: math.unit(50, "meters"),
  40460. default: true
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(325, "feet"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/zorkaiju/front.svg",
  40472. extra: 1955/1814,
  40473. bottom: 40/1995
  40474. }
  40475. },
  40476. frontExtended: {
  40477. height: math.unit(325, "feet"),
  40478. name: "Front (Extended)",
  40479. image: {
  40480. source: "./media/characters/zorkaiju/front-extended.svg",
  40481. extra: 1955/1814,
  40482. bottom: 40/1995
  40483. }
  40484. },
  40485. side: {
  40486. height: math.unit(325, "feet"),
  40487. name: "Side",
  40488. image: {
  40489. source: "./media/characters/zorkaiju/side.svg",
  40490. extra: 1495/1396,
  40491. bottom: 17/1512
  40492. }
  40493. },
  40494. sideExtended: {
  40495. height: math.unit(325, "feet"),
  40496. name: "Side (Extended)",
  40497. image: {
  40498. source: "./media/characters/zorkaiju/side-extended.svg",
  40499. extra: 1495/1396,
  40500. bottom: 17/1512
  40501. }
  40502. },
  40503. back: {
  40504. height: math.unit(325, "feet"),
  40505. name: "Back",
  40506. image: {
  40507. source: "./media/characters/zorkaiju/back.svg",
  40508. extra: 1959/1821,
  40509. bottom: 31/1990
  40510. }
  40511. },
  40512. backExtended: {
  40513. height: math.unit(325, "feet"),
  40514. name: "Back (Extended)",
  40515. image: {
  40516. source: "./media/characters/zorkaiju/back-extended.svg",
  40517. extra: 1959/1821,
  40518. bottom: 31/1990
  40519. }
  40520. },
  40521. hand: {
  40522. height: math.unit(58.4, "feet"),
  40523. name: "Hand",
  40524. image: {
  40525. source: "./media/characters/zorkaiju/hand.svg"
  40526. }
  40527. },
  40528. handExtended: {
  40529. height: math.unit(61.4, "feet"),
  40530. name: "Hand (Extended)",
  40531. image: {
  40532. source: "./media/characters/zorkaiju/hand-extended.svg"
  40533. }
  40534. },
  40535. foot: {
  40536. height: math.unit(95, "feet"),
  40537. name: "Foot",
  40538. image: {
  40539. source: "./media/characters/zorkaiju/foot.svg"
  40540. }
  40541. },
  40542. leftArm: {
  40543. height: math.unit(59, "feet"),
  40544. name: "Left Arm",
  40545. image: {
  40546. source: "./media/characters/zorkaiju/left-arm.svg"
  40547. }
  40548. },
  40549. rightArm: {
  40550. height: math.unit(59, "feet"),
  40551. name: "Right Arm",
  40552. image: {
  40553. source: "./media/characters/zorkaiju/right-arm.svg"
  40554. }
  40555. },
  40556. tail: {
  40557. height: math.unit(104, "feet"),
  40558. name: "Tail",
  40559. image: {
  40560. source: "./media/characters/zorkaiju/tail.svg"
  40561. }
  40562. },
  40563. tailExtended: {
  40564. height: math.unit(104, "feet"),
  40565. name: "Tail (Extended)",
  40566. image: {
  40567. source: "./media/characters/zorkaiju/tail-extended.svg"
  40568. }
  40569. },
  40570. tailBottom: {
  40571. height: math.unit(104, "feet"),
  40572. name: "Tail Bottom",
  40573. image: {
  40574. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40575. }
  40576. },
  40577. crystal: {
  40578. height: math.unit(27.54, "feet"),
  40579. name: "Crystal",
  40580. image: {
  40581. source: "./media/characters/zorkaiju/crystal.svg"
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Kaiju",
  40588. height: math.unit(325, "feet"),
  40589. default: true
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(6 + 1/12, "feet"),
  40598. weight: math.unit(115, "lb"),
  40599. name: "Front",
  40600. image: {
  40601. source: "./media/characters/bailey-belfry/front.svg",
  40602. extra: 1240/1121,
  40603. bottom: 101/1341
  40604. }
  40605. },
  40606. },
  40607. [
  40608. {
  40609. name: "Normal",
  40610. height: math.unit(6 + 1/12, "feet"),
  40611. default: true
  40612. },
  40613. ]
  40614. ))
  40615. characterMakers.push(() => makeCharacter(
  40616. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40617. {
  40618. side: {
  40619. height: math.unit(4, "meters"),
  40620. weight: math.unit(250, "kg"),
  40621. name: "Side",
  40622. image: {
  40623. source: "./media/characters/blacky/side.svg",
  40624. extra: 1027/919,
  40625. bottom: 43/1070
  40626. }
  40627. },
  40628. maw: {
  40629. height: math.unit(1, "meters"),
  40630. name: "Maw",
  40631. image: {
  40632. source: "./media/characters/blacky/maw.svg"
  40633. }
  40634. },
  40635. paw: {
  40636. height: math.unit(1, "meters"),
  40637. name: "Paw",
  40638. image: {
  40639. source: "./media/characters/blacky/paw.svg"
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(4, "meters"),
  40647. default: true
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40653. {
  40654. front: {
  40655. height: math.unit(170, "cm"),
  40656. weight: math.unit(66, "kg"),
  40657. name: "Front",
  40658. image: {
  40659. source: "./media/characters/thux-ei/front.svg",
  40660. extra: 1109/1011,
  40661. bottom: 8/1117
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Normal",
  40668. height: math.unit(170, "cm"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(5, "feet"),
  40678. weight: math.unit(120, "lb"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/roxanne-voltaire/front.svg",
  40682. extra: 1901/1779,
  40683. bottom: 53/1954
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(5, "feet"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Giant",
  40695. height: math.unit(50, "feet")
  40696. },
  40697. {
  40698. name: "Titan",
  40699. height: math.unit(500, "feet")
  40700. },
  40701. {
  40702. name: "Macro",
  40703. height: math.unit(5000, "feet")
  40704. },
  40705. {
  40706. name: "Megamacro",
  40707. height: math.unit(50000, "feet")
  40708. },
  40709. {
  40710. name: "Gigamacro",
  40711. height: math.unit(500000, "feet")
  40712. },
  40713. {
  40714. name: "Teramacro",
  40715. height: math.unit(5e6, "feet")
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(6 + 2/12, "feet"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/squeaks/front.svg",
  40727. extra: 1823/1768,
  40728. bottom: 138/1961
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Micro",
  40735. height: math.unit(0.5, "inches")
  40736. },
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(6 + 2/12, "feet"),
  40740. default: true
  40741. },
  40742. {
  40743. name: "Macro",
  40744. height: math.unit(600, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(1.72, "meters"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/archinger/front.svg",
  40756. extra: 1861/1675,
  40757. bottom: 125/1986
  40758. }
  40759. },
  40760. back: {
  40761. height: math.unit(1.72, "meters"),
  40762. name: "Back",
  40763. image: {
  40764. source: "./media/characters/archinger/back.svg",
  40765. extra: 1844/1701,
  40766. bottom: 104/1948
  40767. }
  40768. },
  40769. cock: {
  40770. height: math.unit(0.59, "feet"),
  40771. name: "Cock",
  40772. image: {
  40773. source: "./media/characters/archinger/cock.svg"
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(1.72, "meters"),
  40781. default: true
  40782. },
  40783. {
  40784. name: "Macro",
  40785. height: math.unit(84, "meters")
  40786. },
  40787. {
  40788. name: "Macro+",
  40789. height: math.unit(112, "meters")
  40790. },
  40791. {
  40792. name: "Macro++",
  40793. height: math.unit(960, "meters")
  40794. },
  40795. {
  40796. name: "Macro+++",
  40797. height: math.unit(4, "km")
  40798. },
  40799. {
  40800. name: "Macro++++",
  40801. height: math.unit(48, "km")
  40802. },
  40803. {
  40804. name: "Macro+++++",
  40805. height: math.unit(4500, "km")
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40811. {
  40812. front: {
  40813. height: math.unit(5 + 5/12, "feet"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/alsnapz/front.svg",
  40817. extra: 1157/1065,
  40818. bottom: 42/1199
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(5 + 5/12, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40832. {
  40833. side: {
  40834. height: math.unit(3.2, "earths"),
  40835. name: "Side",
  40836. image: {
  40837. source: "./media/characters/mag/side.svg",
  40838. extra: 1331/1008,
  40839. bottom: 52/1383
  40840. }
  40841. },
  40842. wing: {
  40843. height: math.unit(1.94, "earths"),
  40844. name: "Wing",
  40845. image: {
  40846. source: "./media/characters/mag/wing.svg"
  40847. }
  40848. },
  40849. dick: {
  40850. height: math.unit(1.8, "earths"),
  40851. name: "Dick",
  40852. image: {
  40853. source: "./media/characters/mag/dick.svg"
  40854. }
  40855. },
  40856. ass: {
  40857. height: math.unit(1.33, "earths"),
  40858. name: "Ass",
  40859. image: {
  40860. source: "./media/characters/mag/ass.svg"
  40861. }
  40862. },
  40863. head: {
  40864. height: math.unit(1.1, "earths"),
  40865. name: "Head",
  40866. image: {
  40867. source: "./media/characters/mag/head.svg"
  40868. }
  40869. },
  40870. maw: {
  40871. height: math.unit(1.62, "earths"),
  40872. name: "Maw",
  40873. image: {
  40874. source: "./media/characters/mag/maw.svg"
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Small",
  40881. height: math.unit(162, "feet")
  40882. },
  40883. {
  40884. name: "Normal",
  40885. height: math.unit(3.2, "earths"),
  40886. default: true
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40892. {
  40893. front: {
  40894. height: math.unit(512, "feet"),
  40895. weight: math.unit(63509, "tonnes"),
  40896. name: "Front",
  40897. image: {
  40898. source: "./media/characters/vorrel-harroc/front.svg",
  40899. extra: 1075/1063,
  40900. bottom: 62/1137
  40901. }
  40902. },
  40903. },
  40904. [
  40905. {
  40906. name: "Normal",
  40907. height: math.unit(10, "feet")
  40908. },
  40909. {
  40910. name: "Macro",
  40911. height: math.unit(512, "feet"),
  40912. default: true
  40913. },
  40914. {
  40915. name: "Megamacro",
  40916. height: math.unit(256, "miles")
  40917. },
  40918. {
  40919. name: "Gigamacro",
  40920. height: math.unit(4096, "miles")
  40921. },
  40922. ]
  40923. ))
  40924. characterMakers.push(() => makeCharacter(
  40925. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40926. {
  40927. side: {
  40928. height: math.unit(50, "feet"),
  40929. name: "Side",
  40930. image: {
  40931. source: "./media/characters/froimar/side.svg",
  40932. extra: 855/638,
  40933. bottom: 99/954
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Macro",
  40940. height: math.unit(50, "feet"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(210, "miles"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/timothy/front.svg",
  40953. extra: 1007/943,
  40954. bottom: 62/1069
  40955. }
  40956. },
  40957. frontSkirt: {
  40958. height: math.unit(210, "miles"),
  40959. name: "Front (Skirt)",
  40960. image: {
  40961. source: "./media/characters/timothy/front-skirt.svg",
  40962. extra: 1007/943,
  40963. bottom: 62/1069
  40964. }
  40965. },
  40966. frontCoat: {
  40967. height: math.unit(210, "miles"),
  40968. name: "Front (Coat)",
  40969. image: {
  40970. source: "./media/characters/timothy/front-coat.svg",
  40971. extra: 1007/943,
  40972. bottom: 62/1069
  40973. }
  40974. },
  40975. },
  40976. [
  40977. {
  40978. name: "Macro",
  40979. height: math.unit(210, "miles"),
  40980. default: true
  40981. },
  40982. {
  40983. name: "Megamacro",
  40984. height: math.unit(210000, "miles")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(188, "feet"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/pyotr/front.svg",
  40996. extra: 1912/1826,
  40997. bottom: 18/1930
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Macro",
  41004. height: math.unit(188, "feet"),
  41005. default: true
  41006. },
  41007. {
  41008. name: "Megamacro",
  41009. height: math.unit(8, "miles")
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41015. {
  41016. side: {
  41017. height: math.unit(10, "feet"),
  41018. weight: math.unit(4500, "lb"),
  41019. name: "Side",
  41020. image: {
  41021. source: "./media/characters/ackart/side.svg",
  41022. extra: 1776/1668,
  41023. bottom: 116/1892
  41024. }
  41025. },
  41026. },
  41027. [
  41028. {
  41029. name: "Normal",
  41030. height: math.unit(10, "feet"),
  41031. default: true
  41032. },
  41033. ]
  41034. ))
  41035. characterMakers.push(() => makeCharacter(
  41036. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41037. {
  41038. side: {
  41039. height: math.unit(21, "feet"),
  41040. name: "Side",
  41041. image: {
  41042. source: "./media/characters/nolow/side.svg",
  41043. extra: 1484/1434,
  41044. bottom: 85/1569
  41045. }
  41046. },
  41047. sideErect: {
  41048. height: math.unit(21, "feet"),
  41049. name: "Side-erect",
  41050. image: {
  41051. source: "./media/characters/nolow/side-erect.svg",
  41052. extra: 1484/1434,
  41053. bottom: 85/1569
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Regular",
  41060. height: math.unit(12, "feet")
  41061. },
  41062. {
  41063. name: "Big Chee",
  41064. height: math.unit(21, "feet"),
  41065. default: true
  41066. },
  41067. ]
  41068. ))
  41069. characterMakers.push(() => makeCharacter(
  41070. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41071. {
  41072. front: {
  41073. height: math.unit(7, "feet"),
  41074. weight: math.unit(250, "lb"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/nines/front.svg",
  41078. extra: 1741/1607,
  41079. bottom: 41/1782
  41080. }
  41081. },
  41082. side: {
  41083. height: math.unit(7, "feet"),
  41084. weight: math.unit(250, "lb"),
  41085. name: "Side",
  41086. image: {
  41087. source: "./media/characters/nines/side.svg",
  41088. extra: 1854/1735,
  41089. bottom: 93/1947
  41090. }
  41091. },
  41092. back: {
  41093. height: math.unit(7, "feet"),
  41094. weight: math.unit(250, "lb"),
  41095. name: "Back",
  41096. image: {
  41097. source: "./media/characters/nines/back.svg",
  41098. extra: 1748/1615,
  41099. bottom: 20/1768
  41100. }
  41101. },
  41102. },
  41103. [
  41104. {
  41105. name: "Megamacro",
  41106. height: math.unit(99, "km"),
  41107. default: true
  41108. },
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(5 + 10/12, "feet"),
  41116. weight: math.unit(210, "lb"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/zenith/front.svg",
  41120. extra: 1531/1452,
  41121. bottom: 198/1729
  41122. }
  41123. },
  41124. back: {
  41125. height: math.unit(5 + 10/12, "feet"),
  41126. weight: math.unit(210, "lb"),
  41127. name: "Back",
  41128. image: {
  41129. source: "./media/characters/zenith/back.svg",
  41130. extra: 1571/1487,
  41131. bottom: 75/1646
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(5 + 10/12, "feet"),
  41139. default: true
  41140. }
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(4, "feet"),
  41148. weight: math.unit(60, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/jasper/front.svg",
  41152. extra: 1450/1379,
  41153. bottom: 19/1469
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Normal",
  41160. height: math.unit(4, "feet"),
  41161. default: true
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(6 + 5/12, "feet"),
  41170. weight: math.unit(290, "lb"),
  41171. name: "Front",
  41172. image: {
  41173. source: "./media/characters/tiberius-thyben/front.svg",
  41174. extra: 757/739,
  41175. bottom: 39/796
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Micro",
  41182. height: math.unit(1.5, "inches")
  41183. },
  41184. {
  41185. name: "Normal",
  41186. height: math.unit(6 + 5/12, "feet"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(300, "feet")
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(5 + 6/12, "feet"),
  41200. weight: math.unit(60, "kg"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/sabre/front.svg",
  41204. extra: 738/671,
  41205. bottom: 27/765
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Teeny",
  41212. height: math.unit(2, "inches")
  41213. },
  41214. {
  41215. name: "Smol",
  41216. height: math.unit(8, "inches")
  41217. },
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(5 + 6/12, "feet"),
  41221. default: true
  41222. },
  41223. {
  41224. name: "Mini-Macro",
  41225. height: math.unit(15, "feet")
  41226. },
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(50, "feet")
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(6 + 4/12, "feet"),
  41238. weight: math.unit(170, "lb"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/charlie/front.svg",
  41242. extra: 1348/1228,
  41243. bottom: 15/1363
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Macro",
  41250. height: math.unit(1700, "meters"),
  41251. default: true
  41252. },
  41253. {
  41254. name: "MegaMacro",
  41255. height: math.unit(20400, "meters")
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41261. {
  41262. front: {
  41263. height: math.unit(6 + 3/12, "feet"),
  41264. weight: math.unit(185, "lb"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/susan-grant/front.svg",
  41268. extra: 1351/1327,
  41269. bottom: 26/1377
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Normal",
  41276. height: math.unit(6 + 3/12, "feet"),
  41277. default: true
  41278. },
  41279. {
  41280. name: "Macro",
  41281. height: math.unit(225, "feet")
  41282. },
  41283. {
  41284. name: "Macro+",
  41285. height: math.unit(900, "feet")
  41286. },
  41287. {
  41288. name: "MegaMacro",
  41289. height: math.unit(14400, "feet")
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41295. {
  41296. front: {
  41297. height: math.unit(5 + 4/12, "feet"),
  41298. weight: math.unit(110, "lb"),
  41299. name: "Front",
  41300. image: {
  41301. source: "./media/characters/axel-isanov/front.svg",
  41302. extra: 1096/1065,
  41303. bottom: 13/1109
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Normal",
  41310. height: math.unit(5 + 4/12, "feet"),
  41311. default: true
  41312. },
  41313. ]
  41314. ))
  41315. characterMakers.push(() => makeCharacter(
  41316. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41317. {
  41318. front: {
  41319. height: math.unit(9, "feet"),
  41320. weight: math.unit(467, "lb"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/necahual/front.svg",
  41324. extra: 920/873,
  41325. bottom: 26/946
  41326. }
  41327. },
  41328. back: {
  41329. height: math.unit(9, "feet"),
  41330. weight: math.unit(467, "lb"),
  41331. name: "Back",
  41332. image: {
  41333. source: "./media/characters/necahual/back.svg",
  41334. extra: 930/884,
  41335. bottom: 16/946
  41336. }
  41337. },
  41338. frontUnderwear: {
  41339. height: math.unit(9, "feet"),
  41340. weight: math.unit(467, "lb"),
  41341. name: "Front (Underwear)",
  41342. image: {
  41343. source: "./media/characters/necahual/front-underwear.svg",
  41344. extra: 920/873,
  41345. bottom: 26/946
  41346. }
  41347. },
  41348. frontDressed: {
  41349. height: math.unit(9, "feet"),
  41350. weight: math.unit(467, "lb"),
  41351. name: "Front (Dressed)",
  41352. image: {
  41353. source: "./media/characters/necahual/front-dressed.svg",
  41354. extra: 920/873,
  41355. bottom: 26/946
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Comprsesed",
  41362. height: math.unit(9, "feet")
  41363. },
  41364. {
  41365. name: "Natural",
  41366. height: math.unit(15, "feet"),
  41367. default: true
  41368. },
  41369. {
  41370. name: "Boosted",
  41371. height: math.unit(50, "feet")
  41372. },
  41373. {
  41374. name: "Boosted+",
  41375. height: math.unit(150, "feet")
  41376. },
  41377. {
  41378. name: "Max",
  41379. height: math.unit(500, "feet")
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(22 + 1/12, "feet"),
  41388. weight: math.unit(3200, "lb"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/theo-acacia/front.svg",
  41392. extra: 1796/1741,
  41393. bottom: 83/1879
  41394. }
  41395. },
  41396. frontUnderwear: {
  41397. height: math.unit(22 + 1/12, "feet"),
  41398. weight: math.unit(3200, "lb"),
  41399. name: "Front (Underwear)",
  41400. image: {
  41401. source: "./media/characters/theo-acacia/front-underwear.svg",
  41402. extra: 1796/1741,
  41403. bottom: 83/1879
  41404. }
  41405. },
  41406. frontNude: {
  41407. height: math.unit(22 + 1/12, "feet"),
  41408. weight: math.unit(3200, "lb"),
  41409. name: "Front (Nude)",
  41410. image: {
  41411. source: "./media/characters/theo-acacia/front-nude.svg",
  41412. extra: 1796/1741,
  41413. bottom: 83/1879
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Normal",
  41420. height: math.unit(22 + 1/12, "feet"),
  41421. default: true
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41427. {
  41428. front: {
  41429. height: math.unit(20, "feet"),
  41430. name: "Front",
  41431. image: {
  41432. source: "./media/characters/astra/front.svg",
  41433. extra: 1850/1714,
  41434. bottom: 106/1956
  41435. }
  41436. },
  41437. frontUndressed: {
  41438. height: math.unit(20, "feet"),
  41439. name: "Front (Undressed)",
  41440. image: {
  41441. source: "./media/characters/astra/front-undressed.svg",
  41442. extra: 1926/1749,
  41443. bottom: 0/1926
  41444. }
  41445. },
  41446. hand: {
  41447. height: math.unit(1.53, "feet"),
  41448. name: "Hand",
  41449. image: {
  41450. source: "./media/characters/astra/hand.svg"
  41451. }
  41452. },
  41453. paw: {
  41454. height: math.unit(1.53, "feet"),
  41455. name: "Paw",
  41456. image: {
  41457. source: "./media/characters/astra/paw.svg"
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Smallest",
  41464. height: math.unit(20, "feet")
  41465. },
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(1e9, "miles"),
  41469. default: true
  41470. },
  41471. {
  41472. name: "Larger",
  41473. height: math.unit(5, "multiverses")
  41474. },
  41475. {
  41476. name: "Largest",
  41477. height: math.unit(1e9, "multiverses")
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(8, "feet"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/breanna/front.svg",
  41489. extra: 1912/1632,
  41490. bottom: 33/1945
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Smallest",
  41497. height: math.unit(8, "feet")
  41498. },
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(1, "mile"),
  41502. default: true
  41503. },
  41504. {
  41505. name: "Maximum",
  41506. height: math.unit(1500000000000, "lightyears")
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(5 + 11/12, "feet"),
  41515. weight: math.unit(155, "lb"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/cai/front.svg",
  41519. extra: 1823/1702,
  41520. bottom: 32/1855
  41521. }
  41522. },
  41523. back: {
  41524. height: math.unit(5 + 11/12, "feet"),
  41525. weight: math.unit(155, "lb"),
  41526. name: "Back",
  41527. image: {
  41528. source: "./media/characters/cai/back.svg",
  41529. extra: 1809/1708,
  41530. bottom: 31/1840
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Normal",
  41537. height: math.unit(5 + 11/12, "feet"),
  41538. default: true
  41539. },
  41540. {
  41541. name: "Big",
  41542. height: math.unit(15, "feet")
  41543. },
  41544. {
  41545. name: "Macro",
  41546. height: math.unit(200, "feet")
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(5 + 6/12, "feet"),
  41555. weight: math.unit(160, "lb"),
  41556. name: "Front",
  41557. image: {
  41558. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41559. extra: 1227/1174,
  41560. bottom: 37/1264
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(444, "meters"),
  41568. default: true
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(18 + 7/12, "feet"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/rex/front.svg",
  41580. extra: 1941/1807,
  41581. bottom: 66/2007
  41582. }
  41583. },
  41584. back: {
  41585. height: math.unit(18 + 7/12, "feet"),
  41586. name: "Back",
  41587. image: {
  41588. source: "./media/characters/rex/back.svg",
  41589. extra: 1937/1822,
  41590. bottom: 42/1979
  41591. }
  41592. },
  41593. boot: {
  41594. height: math.unit(3.45, "feet"),
  41595. name: "Boot",
  41596. image: {
  41597. source: "./media/characters/rex/boot.svg"
  41598. }
  41599. },
  41600. paw: {
  41601. height: math.unit(4.17, "feet"),
  41602. name: "Paw",
  41603. image: {
  41604. source: "./media/characters/rex/paw.svg"
  41605. }
  41606. },
  41607. head: {
  41608. height: math.unit(6.728, "feet"),
  41609. name: "Head",
  41610. image: {
  41611. source: "./media/characters/rex/head.svg"
  41612. }
  41613. },
  41614. },
  41615. [
  41616. {
  41617. name: "Nano",
  41618. height: math.unit(18 + 7/12, "feet")
  41619. },
  41620. {
  41621. name: "Micro",
  41622. height: math.unit(1.5, "megameters")
  41623. },
  41624. {
  41625. name: "Normal",
  41626. height: math.unit(440, "megameters"),
  41627. default: true
  41628. },
  41629. {
  41630. name: "Macro",
  41631. height: math.unit(2.5, "gigameters")
  41632. },
  41633. {
  41634. name: "Gigamacro",
  41635. height: math.unit(2, "galaxies")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41641. {
  41642. side: {
  41643. height: math.unit(32, "feet"),
  41644. weight: math.unit(250000, "lb"),
  41645. name: "Side",
  41646. image: {
  41647. source: "./media/characters/silverwing/side.svg",
  41648. extra: 1100/1019,
  41649. bottom: 204/1304
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(32, "feet"),
  41657. default: true
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41663. {
  41664. front: {
  41665. height: math.unit(6 + 6/12, "feet"),
  41666. weight: math.unit(350, "lb"),
  41667. name: "Front",
  41668. image: {
  41669. source: "./media/characters/tristan-hawthorne/front.svg",
  41670. extra: 1159/1124,
  41671. bottom: 37/1196
  41672. }
  41673. },
  41674. },
  41675. [
  41676. {
  41677. name: "Normal",
  41678. height: math.unit(6 + 6/12, "feet"),
  41679. default: true
  41680. },
  41681. ]
  41682. ))
  41683. characterMakers.push(() => makeCharacter(
  41684. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41685. {
  41686. front: {
  41687. height: math.unit(5 + 11/12, "feet"),
  41688. weight: math.unit(190, "lb"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/mizu/front.svg",
  41692. extra: 1988/1788,
  41693. bottom: 14/2002
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Normal",
  41700. height: math.unit(5 + 11/12, "feet"),
  41701. default: true
  41702. },
  41703. ]
  41704. ))
  41705. characterMakers.push(() => makeCharacter(
  41706. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41707. {
  41708. front: {
  41709. height: math.unit(1.7, "feet"),
  41710. weight: math.unit(50, "lb"),
  41711. name: "Front",
  41712. image: {
  41713. source: "./media/characters/dechroma/front.svg",
  41714. extra: 1095/859,
  41715. bottom: 64/1159
  41716. }
  41717. },
  41718. },
  41719. [
  41720. {
  41721. name: "Normal",
  41722. height: math.unit(1.7, "feet"),
  41723. default: true
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41729. {
  41730. side: {
  41731. height: math.unit(30, "feet"),
  41732. name: "Side",
  41733. image: {
  41734. source: "./media/characters/veluren-thanazel/side.svg",
  41735. extra: 1611/633,
  41736. bottom: 118/1729
  41737. }
  41738. },
  41739. front: {
  41740. height: math.unit(30, "feet"),
  41741. name: "Front",
  41742. image: {
  41743. source: "./media/characters/veluren-thanazel/front.svg",
  41744. extra: 1486/636,
  41745. bottom: 238/1724
  41746. }
  41747. },
  41748. head: {
  41749. height: math.unit(21.4, "feet"),
  41750. name: "Head",
  41751. image: {
  41752. source: "./media/characters/veluren-thanazel/head.svg"
  41753. }
  41754. },
  41755. genitals: {
  41756. height: math.unit(19.4, "feet"),
  41757. name: "Genitals",
  41758. image: {
  41759. source: "./media/characters/veluren-thanazel/genitals.svg"
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Social",
  41766. height: math.unit(6, "feet")
  41767. },
  41768. {
  41769. name: "Play",
  41770. height: math.unit(12, "feet")
  41771. },
  41772. {
  41773. name: "True",
  41774. height: math.unit(30, "feet"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(7 + 6/12, "feet"),
  41784. weight: math.unit(500, "kg"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/arcturas/front.svg",
  41788. extra: 1700/1500,
  41789. bottom: 145/1845
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(7 + 6/12, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41803. {
  41804. side: {
  41805. height: math.unit(6, "feet"),
  41806. weight: math.unit(2, "tons"),
  41807. name: "Side",
  41808. image: {
  41809. source: "./media/characters/vitaen/side.svg",
  41810. extra: 1157/617,
  41811. bottom: 122/1279
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(6, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(19, "feet"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/fia-dreamweaver/front.svg",
  41831. extra: 1630/1504,
  41832. bottom: 25/1655
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(19, "feet"),
  41840. default: true
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(5 + 4/12, "feet"),
  41849. name: "Front",
  41850. image: {
  41851. source: "./media/characters/artan/front.svg",
  41852. extra: 1618/1535,
  41853. bottom: 46/1664
  41854. }
  41855. },
  41856. back: {
  41857. height: math.unit(5 + 4/12, "feet"),
  41858. name: "Back",
  41859. image: {
  41860. source: "./media/characters/artan/back.svg",
  41861. extra: 1618/1543,
  41862. bottom: 31/1649
  41863. }
  41864. },
  41865. },
  41866. [
  41867. {
  41868. name: "Normal",
  41869. height: math.unit(5 + 4/12, "feet"),
  41870. default: true
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41876. {
  41877. side: {
  41878. height: math.unit(182, "cm"),
  41879. weight: math.unit(1000, "lb"),
  41880. name: "Side",
  41881. image: {
  41882. source: "./media/characters/silver-dragon/side.svg",
  41883. extra: 710/287,
  41884. bottom: 88/798
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(182, "cm"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41898. {
  41899. side: {
  41900. height: math.unit(6 + 6/12, "feet"),
  41901. weight: math.unit(1.5, "tons"),
  41902. name: "Side",
  41903. image: {
  41904. source: "./media/characters/zephyr/side.svg",
  41905. extra: 1433/586,
  41906. bottom: 109/1542
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Normal",
  41913. height: math.unit(6 + 6/12, "feet"),
  41914. default: true
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41920. {
  41921. side: {
  41922. height: math.unit(1, "feet"),
  41923. name: "Side",
  41924. image: {
  41925. source: "./media/characters/vixye/side.svg",
  41926. extra: 632/541,
  41927. bottom: 0/632
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(1, "feet"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "True",
  41939. height: math.unit(1e15, "multiverses")
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(8 + 2/12, "feet"),
  41948. weight: math.unit(650, "lb"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41952. extra: 1174/1137,
  41953. bottom: 82/1256
  41954. }
  41955. },
  41956. back: {
  41957. height: math.unit(8 + 2/12, "feet"),
  41958. weight: math.unit(650, "lb"),
  41959. name: "Back",
  41960. image: {
  41961. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41962. extra: 1204/1157,
  41963. bottom: 46/1250
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Wildform",
  41970. height: math.unit(8 + 2/12, "feet"),
  41971. default: true
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41977. {
  41978. front: {
  41979. height: math.unit(18, "feet"),
  41980. name: "Front",
  41981. image: {
  41982. source: "./media/characters/cyphin/front.svg",
  41983. extra: 970/886,
  41984. bottom: 42/1012
  41985. }
  41986. },
  41987. back: {
  41988. height: math.unit(18, "feet"),
  41989. name: "Back",
  41990. image: {
  41991. source: "./media/characters/cyphin/back.svg",
  41992. extra: 1009/894,
  41993. bottom: 24/1033
  41994. }
  41995. },
  41996. head: {
  41997. height: math.unit(5.05, "feet"),
  41998. name: "Head",
  41999. image: {
  42000. source: "./media/characters/cyphin/head.svg"
  42001. }
  42002. },
  42003. tailbud: {
  42004. height: math.unit(5, "feet"),
  42005. name: "Tailbud",
  42006. image: {
  42007. source: "./media/characters/cyphin/tailbud.svg"
  42008. }
  42009. },
  42010. },
  42011. [
  42012. ]
  42013. ))
  42014. characterMakers.push(() => makeCharacter(
  42015. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42016. {
  42017. side: {
  42018. height: math.unit(10, "feet"),
  42019. weight: math.unit(6, "tons"),
  42020. name: "Side",
  42021. image: {
  42022. source: "./media/characters/raijin/side.svg",
  42023. extra: 1529/613,
  42024. bottom: 337/1866
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(10, "feet"),
  42032. default: true
  42033. },
  42034. ]
  42035. ))
  42036. characterMakers.push(() => makeCharacter(
  42037. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42038. {
  42039. side: {
  42040. height: math.unit(9, "feet"),
  42041. name: "Side",
  42042. image: {
  42043. source: "./media/characters/nilghais/side.svg",
  42044. extra: 1047/744,
  42045. bottom: 91/1138
  42046. }
  42047. },
  42048. head: {
  42049. height: math.unit(3.14, "feet"),
  42050. name: "Head",
  42051. image: {
  42052. source: "./media/characters/nilghais/head.svg"
  42053. }
  42054. },
  42055. mouth: {
  42056. height: math.unit(4.6, "feet"),
  42057. name: "Mouth",
  42058. image: {
  42059. source: "./media/characters/nilghais/mouth.svg"
  42060. }
  42061. },
  42062. wings: {
  42063. height: math.unit(24, "feet"),
  42064. name: "Wings",
  42065. image: {
  42066. source: "./media/characters/nilghais/wings.svg"
  42067. }
  42068. },
  42069. ass: {
  42070. height: math.unit(6.12, "feet"),
  42071. name: "Ass",
  42072. image: {
  42073. source: "./media/characters/nilghais/ass.svg"
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(9, "feet"),
  42081. default: true
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42087. {
  42088. regular: {
  42089. height: math.unit(16 + 2/12, "feet"),
  42090. weight: math.unit(2300, "lb"),
  42091. name: "Regular",
  42092. image: {
  42093. source: "./media/characters/zolgar/regular.svg",
  42094. extra: 1246/1004,
  42095. bottom: 124/1370
  42096. }
  42097. },
  42098. boxers: {
  42099. height: math.unit(16 + 2/12, "feet"),
  42100. weight: math.unit(2300, "lb"),
  42101. name: "Boxers",
  42102. image: {
  42103. source: "./media/characters/zolgar/boxers.svg",
  42104. extra: 1246/1004,
  42105. bottom: 124/1370
  42106. }
  42107. },
  42108. armored: {
  42109. height: math.unit(16 + 2/12, "feet"),
  42110. weight: math.unit(2300, "lb"),
  42111. name: "Armored",
  42112. image: {
  42113. source: "./media/characters/zolgar/armored.svg",
  42114. extra: 1246/1004,
  42115. bottom: 124/1370
  42116. }
  42117. },
  42118. goth: {
  42119. height: math.unit(16 + 2/12, "feet"),
  42120. weight: math.unit(2300, "lb"),
  42121. name: "Goth",
  42122. image: {
  42123. source: "./media/characters/zolgar/goth.svg",
  42124. extra: 1246/1004,
  42125. bottom: 124/1370
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Shrunken Down",
  42132. height: math.unit(9 + 2/12, "feet")
  42133. },
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(16 + 2/12, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(6, "feet"),
  42146. weight: math.unit(168, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/luca/front.svg",
  42150. extra: 841/667,
  42151. bottom: 102/943
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(6, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42165. {
  42166. side: {
  42167. height: math.unit(7 + 3/12, "feet"),
  42168. weight: math.unit(312, "lb"),
  42169. name: "Side",
  42170. image: {
  42171. source: "./media/characters/zezo/side.svg",
  42172. extra: 1192/1067,
  42173. bottom: 63/1255
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(7 + 3/12, "feet"),
  42181. default: true
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(5 + 5/12, "feet"),
  42190. weight: math.unit(170, "lb"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/mayso/front.svg",
  42194. extra: 1215/1108,
  42195. bottom: 16/1231
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(5 + 5/12, "feet"),
  42203. default: true
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(4 + 3/12, "feet"),
  42212. weight: math.unit(80, "lb"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/hess/front.svg",
  42216. extra: 1200/1123,
  42217. bottom: 16/1216
  42218. }
  42219. },
  42220. },
  42221. [
  42222. {
  42223. name: "Normal",
  42224. height: math.unit(4 + 3/12, "feet"),
  42225. default: true
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42231. {
  42232. front: {
  42233. height: math.unit(1.9, "meters"),
  42234. name: "Front",
  42235. image: {
  42236. source: "./media/characters/ashgar/front.svg",
  42237. extra: 1177/1146,
  42238. bottom: 99/1276
  42239. }
  42240. },
  42241. back: {
  42242. height: math.unit(1.9, "meters"),
  42243. name: "Back",
  42244. image: {
  42245. source: "./media/characters/ashgar/back.svg",
  42246. extra: 1201/1183,
  42247. bottom: 53/1254
  42248. }
  42249. },
  42250. feral: {
  42251. height: math.unit(1.4, "meters"),
  42252. name: "Feral",
  42253. image: {
  42254. source: "./media/characters/ashgar/feral.svg",
  42255. extra: 370/345,
  42256. bottom: 45/415
  42257. }
  42258. },
  42259. },
  42260. [
  42261. {
  42262. name: "Normal",
  42263. height: math.unit(1.9, "meters"),
  42264. default: true
  42265. },
  42266. ]
  42267. ))
  42268. characterMakers.push(() => makeCharacter(
  42269. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42270. {
  42271. regular: {
  42272. height: math.unit(6, "feet"),
  42273. weight: math.unit(220, "lb"),
  42274. name: "Regular",
  42275. image: {
  42276. source: "./media/characters/phillip/regular.svg",
  42277. extra: 1373/1277,
  42278. bottom: 75/1448
  42279. }
  42280. },
  42281. dressed: {
  42282. height: math.unit(6, "feet"),
  42283. weight: math.unit(220, "lb"),
  42284. name: "Dressed",
  42285. image: {
  42286. source: "./media/characters/phillip/dressed.svg",
  42287. extra: 1373/1277,
  42288. bottom: 75/1448
  42289. }
  42290. },
  42291. paw: {
  42292. height: math.unit(1.44, "feet"),
  42293. name: "Paw",
  42294. image: {
  42295. source: "./media/characters/phillip/paw.svg"
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(6, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42309. {
  42310. side: {
  42311. height: math.unit(42, "feet"),
  42312. name: "Side",
  42313. image: {
  42314. source: "./media/characters/uvula/side.svg",
  42315. extra: 683/586,
  42316. bottom: 60/743
  42317. }
  42318. },
  42319. front: {
  42320. height: math.unit(42, "feet"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/uvula/front.svg",
  42324. extra: 705/613,
  42325. bottom: 54/759
  42326. }
  42327. },
  42328. maw: {
  42329. height: math.unit(23.5, "feet"),
  42330. name: "Maw",
  42331. image: {
  42332. source: "./media/characters/uvula/maw.svg"
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Original Size",
  42339. height: math.unit(14, "inches")
  42340. },
  42341. {
  42342. name: "Human Size",
  42343. height: math.unit(6, "feet")
  42344. },
  42345. {
  42346. name: "Big",
  42347. height: math.unit(42, "feet"),
  42348. default: true
  42349. },
  42350. {
  42351. name: "Bigger",
  42352. height: math.unit(100, "feet")
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(5 + 11/12, "feet"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/lannah/front.svg",
  42364. extra: 1208/1113,
  42365. bottom: 97/1305
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(5 + 11/12, "feet"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42379. {
  42380. front: {
  42381. height: math.unit(6 + 3/12, "feet"),
  42382. weight: math.unit(3.5, "tons"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/emberflame/front.svg",
  42386. extra: 1198/672,
  42387. bottom: 82/1280
  42388. }
  42389. },
  42390. side: {
  42391. height: math.unit(6 + 3/12, "feet"),
  42392. weight: math.unit(3.5, "tons"),
  42393. name: "Side",
  42394. image: {
  42395. source: "./media/characters/emberflame/side.svg",
  42396. extra: 938/527,
  42397. bottom: 56/994
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Normal",
  42404. height: math.unit(6 + 3/12, "feet"),
  42405. default: true
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42411. {
  42412. side: {
  42413. height: math.unit(17.5, "feet"),
  42414. weight: math.unit(35, "tons"),
  42415. name: "Side",
  42416. image: {
  42417. source: "./media/characters/sophie-ambrose/side.svg",
  42418. extra: 1573/1242,
  42419. bottom: 71/1644
  42420. }
  42421. },
  42422. maw: {
  42423. height: math.unit(7.4, "feet"),
  42424. name: "Maw",
  42425. image: {
  42426. source: "./media/characters/sophie-ambrose/maw.svg"
  42427. }
  42428. },
  42429. },
  42430. [
  42431. {
  42432. name: "Normal",
  42433. height: math.unit(17.5, "feet"),
  42434. default: true
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42440. {
  42441. front: {
  42442. height: math.unit(280, "feet"),
  42443. weight: math.unit(550, "tons"),
  42444. name: "Front",
  42445. image: {
  42446. source: "./media/characters/king-mugi/front.svg",
  42447. extra: 1102/947,
  42448. bottom: 104/1206
  42449. }
  42450. },
  42451. },
  42452. [
  42453. {
  42454. name: "King Mugi",
  42455. height: math.unit(280, "feet"),
  42456. default: true
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(64, "meters"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/nova-fox/front.svg",
  42468. extra: 1310/1246,
  42469. bottom: 65/1375
  42470. }
  42471. },
  42472. },
  42473. [
  42474. {
  42475. name: "Macro",
  42476. height: math.unit(64, "meters"),
  42477. default: true
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(6 + 3/12, "feet"),
  42486. weight: math.unit(170, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/sam-bat/front.svg",
  42490. extra: 1601/1411,
  42491. bottom: 125/1726
  42492. }
  42493. },
  42494. back: {
  42495. height: math.unit(6 + 3/12, "feet"),
  42496. weight: math.unit(170, "lb"),
  42497. name: "Back",
  42498. image: {
  42499. source: "./media/characters/sam-bat/back.svg",
  42500. extra: 1577/1405,
  42501. bottom: 58/1635
  42502. }
  42503. },
  42504. },
  42505. [
  42506. {
  42507. name: "Normal",
  42508. height: math.unit(6 + 3/12, "feet"),
  42509. default: true
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42515. {
  42516. front: {
  42517. height: math.unit(59, "feet"),
  42518. weight: math.unit(40000, "lb"),
  42519. name: "Front",
  42520. image: {
  42521. source: "./media/characters/inari/front.svg",
  42522. extra: 1884/1350,
  42523. bottom: 95/1979
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Gigantamax",
  42530. height: math.unit(59, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(5 + 8/12, "feet"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/elizabeth/front.svg",
  42543. extra: 1395/1298,
  42544. bottom: 54/1449
  42545. }
  42546. },
  42547. mouth: {
  42548. height: math.unit(1.97, "feet"),
  42549. name: "Mouth",
  42550. image: {
  42551. source: "./media/characters/elizabeth/mouth.svg"
  42552. }
  42553. },
  42554. foot: {
  42555. height: math.unit(1.17, "feet"),
  42556. name: "Foot",
  42557. image: {
  42558. source: "./media/characters/elizabeth/foot.svg"
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Normal",
  42565. height: math.unit(5 + 8/12, "feet"),
  42566. default: true
  42567. },
  42568. {
  42569. name: "Minimacro",
  42570. height: math.unit(18, "feet")
  42571. },
  42572. {
  42573. name: "Macro",
  42574. height: math.unit(180, "feet")
  42575. },
  42576. ]
  42577. ))
  42578. characterMakers.push(() => makeCharacter(
  42579. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42580. {
  42581. front: {
  42582. height: math.unit(5 + 2/12, "feet"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/october-gossamer/front.svg",
  42586. extra: 505/454,
  42587. bottom: 7/512
  42588. }
  42589. },
  42590. back: {
  42591. height: math.unit(5 + 2/12, "feet"),
  42592. name: "Back",
  42593. image: {
  42594. source: "./media/characters/october-gossamer/back.svg",
  42595. extra: 501/454,
  42596. bottom: 11/512
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(5 + 2/12, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(5, "feet"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/epiglottis/front.svg",
  42616. extra: 923/849,
  42617. bottom: 17/940
  42618. }
  42619. },
  42620. },
  42621. [
  42622. {
  42623. name: "Original Size",
  42624. height: math.unit(10, "inches")
  42625. },
  42626. {
  42627. name: "Human Size",
  42628. height: math.unit(5, "feet"),
  42629. default: true
  42630. },
  42631. {
  42632. name: "Big",
  42633. height: math.unit(25, "feet")
  42634. },
  42635. {
  42636. name: "Bigger",
  42637. height: math.unit(50, "feet")
  42638. },
  42639. {
  42640. name: "oh lawd",
  42641. height: math.unit(75, "feet")
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(2 + 4/12, "feet"),
  42650. weight: math.unit(60, "lb"),
  42651. name: "Front",
  42652. image: {
  42653. source: "./media/characters/lerm/front.svg",
  42654. extra: 796/790,
  42655. bottom: 79/875
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(2 + 4/12, "feet"),
  42663. default: true
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42669. {
  42670. front: {
  42671. height: math.unit(5.5, "feet"),
  42672. weight: math.unit(130, "lb"),
  42673. name: "Front",
  42674. image: {
  42675. source: "./media/characters/xena-nebadon/front.svg",
  42676. extra: 1828/1730,
  42677. bottom: 79/1907
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Tiny Puppy",
  42684. height: math.unit(3, "inches")
  42685. },
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(5.5, "feet"),
  42689. default: true
  42690. },
  42691. {
  42692. name: "Lotta Lady",
  42693. height: math.unit(12, "feet")
  42694. },
  42695. {
  42696. name: "Pretty Big",
  42697. height: math.unit(100, "feet")
  42698. },
  42699. {
  42700. name: "Big",
  42701. height: math.unit(500, "feet")
  42702. },
  42703. {
  42704. name: "Skyscraper Toys",
  42705. height: math.unit(2500, "feet")
  42706. },
  42707. {
  42708. name: "Plane Catcher",
  42709. height: math.unit(8, "miles")
  42710. },
  42711. {
  42712. name: "Planet Toys",
  42713. height: math.unit(15, "earths")
  42714. },
  42715. {
  42716. name: "Stardust",
  42717. height: math.unit(0.25, "galaxies")
  42718. },
  42719. {
  42720. name: "Snacks",
  42721. height: math.unit(70, "universes")
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42727. {
  42728. front: {
  42729. height: math.unit(1.6, "meters"),
  42730. weight: math.unit(60, "kg"),
  42731. name: "Front",
  42732. image: {
  42733. source: "./media/characters/bounty/front.svg",
  42734. extra: 1426/1308,
  42735. bottom: 15/1441
  42736. }
  42737. },
  42738. back: {
  42739. height: math.unit(1.6, "meters"),
  42740. weight: math.unit(60, "kg"),
  42741. name: "Back",
  42742. image: {
  42743. source: "./media/characters/bounty/back.svg",
  42744. extra: 1417/1307,
  42745. bottom: 8/1425
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(1.6, "meters"),
  42753. default: true
  42754. },
  42755. {
  42756. name: "Macro",
  42757. height: math.unit(300, "meters")
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42763. {
  42764. front: {
  42765. height: math.unit(2 + 8/12, "feet"),
  42766. weight: math.unit(15, "lb"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/mochi/front.svg",
  42770. extra: 1022/852,
  42771. bottom: 435/1457
  42772. }
  42773. },
  42774. back: {
  42775. height: math.unit(2 + 8/12, "feet"),
  42776. weight: math.unit(15, "lb"),
  42777. name: "Back",
  42778. image: {
  42779. source: "./media/characters/mochi/back.svg",
  42780. extra: 1335/1119,
  42781. bottom: 39/1374
  42782. }
  42783. },
  42784. bird: {
  42785. height: math.unit(2 + 8/12, "feet"),
  42786. weight: math.unit(15, "lb"),
  42787. name: "Bird",
  42788. image: {
  42789. source: "./media/characters/mochi/bird.svg",
  42790. extra: 1251/1113,
  42791. bottom: 178/1429
  42792. }
  42793. },
  42794. kaiju: {
  42795. height: math.unit(154, "feet"),
  42796. weight: math.unit(1e7, "lb"),
  42797. name: "Kaiju",
  42798. image: {
  42799. source: "./media/characters/mochi/kaiju.svg",
  42800. extra: 460/324,
  42801. bottom: 40/500
  42802. }
  42803. },
  42804. head: {
  42805. height: math.unit(1.21, "feet"),
  42806. name: "Head",
  42807. image: {
  42808. source: "./media/characters/mochi/head.svg"
  42809. }
  42810. },
  42811. alternateTail: {
  42812. height: math.unit(2 + 8/12, "feet"),
  42813. weight: math.unit(45, "lb"),
  42814. name: "Alternate Tail",
  42815. image: {
  42816. source: "./media/characters/mochi/alternate-tail.svg",
  42817. extra: 139/76,
  42818. bottom: 45/184
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Micro",
  42825. height: math.unit(2, "inches")
  42826. },
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(2 + 8/12, "feet"),
  42830. default: true
  42831. },
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(106, "feet")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(5.67, "feet"),
  42843. weight: math.unit(135, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/sarel/front.svg",
  42847. extra: 865/788,
  42848. bottom: 97/962
  42849. }
  42850. },
  42851. back: {
  42852. height: math.unit(5.67, "feet"),
  42853. weight: math.unit(135, "lb"),
  42854. name: "Back",
  42855. image: {
  42856. source: "./media/characters/sarel/back.svg",
  42857. extra: 857/777,
  42858. bottom: 32/889
  42859. }
  42860. },
  42861. chozoan: {
  42862. height: math.unit(5.67, "feet"),
  42863. weight: math.unit(135, "lb"),
  42864. name: "Chozoan",
  42865. image: {
  42866. source: "./media/characters/sarel/chozoan.svg",
  42867. extra: 865/788,
  42868. bottom: 97/962
  42869. }
  42870. },
  42871. current: {
  42872. height: math.unit(5.67, "feet"),
  42873. weight: math.unit(135, "lb"),
  42874. name: "Current",
  42875. image: {
  42876. source: "./media/characters/sarel/current.svg",
  42877. extra: 865/788,
  42878. bottom: 97/962
  42879. }
  42880. },
  42881. head: {
  42882. height: math.unit(1.77, "feet"),
  42883. name: "Head",
  42884. image: {
  42885. source: "./media/characters/sarel/head.svg"
  42886. }
  42887. },
  42888. claws: {
  42889. height: math.unit(1.8, "feet"),
  42890. name: "Claws",
  42891. image: {
  42892. source: "./media/characters/sarel/claws.svg"
  42893. }
  42894. },
  42895. clawsAlt: {
  42896. height: math.unit(1.8, "feet"),
  42897. name: "Claws-alt",
  42898. image: {
  42899. source: "./media/characters/sarel/claws-alt.svg"
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(5.67, "feet"),
  42907. default: true
  42908. },
  42909. ]
  42910. ))
  42911. characterMakers.push(() => makeCharacter(
  42912. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42913. {
  42914. front: {
  42915. height: math.unit(5500, "feet"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/alyonia/front.svg",
  42919. extra: 1200/1135,
  42920. bottom: 29/1229
  42921. }
  42922. },
  42923. back: {
  42924. height: math.unit(5500, "feet"),
  42925. name: "Back",
  42926. image: {
  42927. source: "./media/characters/alyonia/back.svg",
  42928. extra: 1205/1138,
  42929. bottom: 10/1215
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Small",
  42936. height: math.unit(10, "feet")
  42937. },
  42938. {
  42939. name: "Macro",
  42940. height: math.unit(500, "feet")
  42941. },
  42942. {
  42943. name: "Mega Macro",
  42944. height: math.unit(5500, "feet"),
  42945. default: true
  42946. },
  42947. {
  42948. name: "Mega Macro+",
  42949. height: math.unit(500000, "feet")
  42950. },
  42951. {
  42952. name: "Giga Macro",
  42953. height: math.unit(3000, "miles")
  42954. },
  42955. {
  42956. name: "Tera Macro",
  42957. height: math.unit(2.8e6, "miles")
  42958. },
  42959. {
  42960. name: "Galactic",
  42961. height: math.unit(120000, "lightyears")
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42967. {
  42968. werewolf: {
  42969. height: math.unit(8, "feet"),
  42970. weight: math.unit(425, "lb"),
  42971. name: "Werewolf",
  42972. image: {
  42973. source: "./media/characters/autumn/werewolf.svg",
  42974. extra: 2154/2031,
  42975. bottom: 160/2314
  42976. }
  42977. },
  42978. human: {
  42979. height: math.unit(5 + 8/12, "feet"),
  42980. weight: math.unit(150, "lb"),
  42981. name: "Human",
  42982. image: {
  42983. source: "./media/characters/autumn/human.svg",
  42984. extra: 1200/1149,
  42985. bottom: 30/1230
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Normal",
  42992. height: math.unit(8, "feet"),
  42993. default: true
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42999. {
  43000. front: {
  43001. height: math.unit(8 + 5/12, "feet"),
  43002. weight: math.unit(825, "lb"),
  43003. name: "Front",
  43004. image: {
  43005. source: "./media/characters/cobalt-charizard/front.svg",
  43006. extra: 1268/1155,
  43007. bottom: 122/1390
  43008. }
  43009. },
  43010. side: {
  43011. height: math.unit(8 + 5/12, "feet"),
  43012. weight: math.unit(825, "lb"),
  43013. name: "Side",
  43014. image: {
  43015. source: "./media/characters/cobalt-charizard/side.svg",
  43016. extra: 1348/1257,
  43017. bottom: 58/1406
  43018. }
  43019. },
  43020. gMax: {
  43021. height: math.unit(134 + 11/12, "feet"),
  43022. name: "G-Max",
  43023. image: {
  43024. source: "./media/characters/cobalt-charizard/g-max.svg",
  43025. extra: 1835/1541,
  43026. bottom: 151/1986
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(8 + 5/12, "feet"),
  43034. default: true
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43040. {
  43041. front: {
  43042. height: math.unit(6 + 3/12, "feet"),
  43043. weight: math.unit(210, "lb"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/stella/front.svg",
  43047. extra: 3549/3335,
  43048. bottom: 51/3600
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(6 + 3/12, "feet"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43062. {
  43063. front: {
  43064. height: math.unit(5, "feet"),
  43065. weight: math.unit(90, "lb"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/riley-bishop/front.svg",
  43069. extra: 1450/1428,
  43070. bottom: 152/1602
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(5, "feet"),
  43078. default: true
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43084. {
  43085. side: {
  43086. height: math.unit(8 + 2/12, "feet"),
  43087. weight: math.unit(500, "kg"),
  43088. name: "Side",
  43089. image: {
  43090. source: "./media/characters/theo-arcanine/side.svg",
  43091. extra: 1342/1074,
  43092. bottom: 111/1453
  43093. }
  43094. },
  43095. },
  43096. [
  43097. {
  43098. name: "Normal",
  43099. height: math.unit(8 + 2/12, "feet"),
  43100. default: true
  43101. },
  43102. ]
  43103. ))
  43104. characterMakers.push(() => makeCharacter(
  43105. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43106. {
  43107. front: {
  43108. height: math.unit(4, "feet"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/kali/front.svg",
  43112. extra: 1921/1357,
  43113. bottom: 70/1991
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(4, "feet"),
  43121. default: true
  43122. },
  43123. {
  43124. name: "Macro",
  43125. height: math.unit(32, "meters")
  43126. },
  43127. {
  43128. name: "Macro+",
  43129. height: math.unit(150, "meters")
  43130. },
  43131. {
  43132. name: "Megamacro",
  43133. height: math.unit(7500, "meters")
  43134. },
  43135. {
  43136. name: "Megamacro+",
  43137. height: math.unit(80, "kilometers")
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43143. {
  43144. side: {
  43145. height: math.unit(5 + 11/12, "feet"),
  43146. weight: math.unit(236, "lb"),
  43147. name: "Side",
  43148. image: {
  43149. source: "./media/characters/gapp/side.svg",
  43150. extra: 775/340,
  43151. bottom: 58/833
  43152. }
  43153. },
  43154. mouth: {
  43155. height: math.unit(2.98, "feet"),
  43156. name: "Mouth",
  43157. image: {
  43158. source: "./media/characters/gapp/mouth.svg"
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(5 + 1/12, "feet"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(6, "feet"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/persephone/front.svg",
  43178. extra: 1895/1717,
  43179. bottom: 96/1991
  43180. }
  43181. },
  43182. back: {
  43183. height: math.unit(6, "feet"),
  43184. name: "Back",
  43185. image: {
  43186. source: "./media/characters/persephone/back.svg",
  43187. extra: 1868/1679,
  43188. bottom: 26/1894
  43189. }
  43190. },
  43191. casual: {
  43192. height: math.unit(6, "feet"),
  43193. name: "Casual",
  43194. image: {
  43195. source: "./media/characters/persephone/casual.svg",
  43196. extra: 1713/1541,
  43197. bottom: 76/1789
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Human Size",
  43204. height: math.unit(6, "feet")
  43205. },
  43206. {
  43207. name: "Big Steppy",
  43208. height: math.unit(600, "meters"),
  43209. default: true
  43210. },
  43211. {
  43212. name: "Galaxy Brain",
  43213. height: math.unit(1, "zettameter")
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(1.85, "meters"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/riley-foxthing/front.svg",
  43225. extra: 1495/1354,
  43226. bottom: 122/1617
  43227. }
  43228. },
  43229. frontAlt: {
  43230. height: math.unit(1.85, "meters"),
  43231. name: "Front (Alt)",
  43232. image: {
  43233. source: "./media/characters/riley-foxthing/front-alt.svg",
  43234. extra: 1572/1389,
  43235. bottom: 116/1688
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Normal Sized",
  43242. height: math.unit(1.85, "meters"),
  43243. default: true
  43244. },
  43245. {
  43246. name: "Quite Sizable",
  43247. height: math.unit(5, "meters")
  43248. },
  43249. {
  43250. name: "Rather Large",
  43251. height: math.unit(20, "meters")
  43252. },
  43253. {
  43254. name: "Macro",
  43255. height: math.unit(450, "meters")
  43256. },
  43257. {
  43258. name: "Giga",
  43259. height: math.unit(5, "km")
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(6, "feet"),
  43268. weight: math.unit(200, "lb"),
  43269. name: "Front",
  43270. image: {
  43271. source: "./media/characters/blizzard/front.svg",
  43272. extra: 1136/990,
  43273. bottom: 136/1272
  43274. }
  43275. },
  43276. back: {
  43277. height: math.unit(6, "feet"),
  43278. weight: math.unit(200, "lb"),
  43279. name: "Back",
  43280. image: {
  43281. source: "./media/characters/blizzard/back.svg",
  43282. extra: 1175/1034,
  43283. bottom: 97/1272
  43284. }
  43285. },
  43286. sitting: {
  43287. height: math.unit(3.725, "feet"),
  43288. weight: math.unit(200, "lb"),
  43289. name: "Sitting",
  43290. image: {
  43291. source: "./media/characters/blizzard/sitting.svg",
  43292. extra: 581/485,
  43293. bottom: 90/671
  43294. }
  43295. },
  43296. frontWizard: {
  43297. height: math.unit(7.9, "feet"),
  43298. weight: math.unit(200, "lb"),
  43299. name: "Front (Wizard)",
  43300. image: {
  43301. source: "./media/characters/blizzard/front-wizard.svg"
  43302. }
  43303. },
  43304. backWizard: {
  43305. height: math.unit(7.9, "feet"),
  43306. weight: math.unit(200, "lb"),
  43307. name: "Back (Wizard)",
  43308. image: {
  43309. source: "./media/characters/blizzard/back-wizard.svg"
  43310. }
  43311. },
  43312. frontNsfw: {
  43313. height: math.unit(6, "feet"),
  43314. weight: math.unit(200, "lb"),
  43315. name: "Front (NSFW)",
  43316. image: {
  43317. source: "./media/characters/blizzard/front-nsfw.svg",
  43318. extra: 1136/990,
  43319. bottom: 136/1272
  43320. }
  43321. },
  43322. backNsfw: {
  43323. height: math.unit(6, "feet"),
  43324. weight: math.unit(200, "lb"),
  43325. name: "Back (NSFW)",
  43326. image: {
  43327. source: "./media/characters/blizzard/back-nsfw.svg",
  43328. extra: 1175/1034,
  43329. bottom: 97/1272
  43330. }
  43331. },
  43332. sittingNsfw: {
  43333. height: math.unit(3.725, "feet"),
  43334. weight: math.unit(200, "lb"),
  43335. name: "Sitting (NSFW)",
  43336. image: {
  43337. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43338. extra: 581/485,
  43339. bottom: 90/671
  43340. }
  43341. },
  43342. wizardFrontNsfw: {
  43343. height: math.unit(7.9, "feet"),
  43344. weight: math.unit(200, "lb"),
  43345. name: "Wizard (Front, NSFW)",
  43346. image: {
  43347. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(6, "feet"),
  43355. default: true
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(5 + 2/12, "feet"),
  43364. name: "Front",
  43365. image: {
  43366. source: "./media/characters/lumi/front.svg",
  43367. extra: 1328/1268,
  43368. bottom: 103/1431
  43369. }
  43370. },
  43371. back: {
  43372. height: math.unit(5 + 2/12, "feet"),
  43373. name: "Back",
  43374. image: {
  43375. source: "./media/characters/lumi/back.svg",
  43376. extra: 1381/1327,
  43377. bottom: 43/1424
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Normal",
  43384. height: math.unit(5 + 2/12, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43391. {
  43392. front: {
  43393. height: math.unit(5 + 9/12, "feet"),
  43394. name: "Front",
  43395. image: {
  43396. source: "./media/characters/aliya-cotton/front.svg",
  43397. extra: 577/564,
  43398. bottom: 29/606
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(5 + 9/12, "feet"),
  43406. default: true
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43412. {
  43413. front: {
  43414. height: math.unit(2.7, "meters"),
  43415. weight: math.unit(25000, "lb"),
  43416. name: "Front",
  43417. image: {
  43418. source: "./media/characters/noah-luxray/front.svg",
  43419. extra: 1644/825,
  43420. bottom: 339/1983
  43421. }
  43422. },
  43423. side: {
  43424. height: math.unit(2.97, "meters"),
  43425. weight: math.unit(25000, "lb"),
  43426. name: "Side",
  43427. image: {
  43428. source: "./media/characters/noah-luxray/side.svg",
  43429. extra: 1319/650,
  43430. bottom: 163/1482
  43431. }
  43432. },
  43433. dick: {
  43434. height: math.unit(7.4, "feet"),
  43435. weight: math.unit(2500, "lb"),
  43436. name: "Dick",
  43437. image: {
  43438. source: "./media/characters/noah-luxray/dick.svg"
  43439. }
  43440. },
  43441. dickAlt: {
  43442. height: math.unit(10.83, "feet"),
  43443. weight: math.unit(2500, "lb"),
  43444. name: "Dick-alt",
  43445. image: {
  43446. source: "./media/characters/noah-luxray/dick-alt.svg"
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "BIG",
  43453. height: math.unit(2.7, "meters"),
  43454. default: true
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43460. {
  43461. standing: {
  43462. height: math.unit(183, "cm"),
  43463. weight: math.unit(68, "kg"),
  43464. name: "Standing",
  43465. image: {
  43466. source: "./media/characters/arion/standing.svg",
  43467. extra: 1869/1807,
  43468. bottom: 93/1962
  43469. }
  43470. },
  43471. reclining: {
  43472. height: math.unit(70.5, "cm"),
  43473. weight: math.unit(68, "lb"),
  43474. name: "Reclining",
  43475. image: {
  43476. source: "./media/characters/arion/reclining.svg",
  43477. extra: 937/870,
  43478. bottom: 63/1000
  43479. }
  43480. },
  43481. },
  43482. [
  43483. {
  43484. name: "Colossus Size, Low",
  43485. height: math.unit(33, "meters"),
  43486. default: true
  43487. },
  43488. {
  43489. name: "Colossus Size, Mid",
  43490. height: math.unit(52, "meters")
  43491. },
  43492. {
  43493. name: "Colossus Size, High",
  43494. height: math.unit(60, "meters")
  43495. },
  43496. {
  43497. name: "Titan Size, Low",
  43498. height: math.unit(91, "meters"),
  43499. },
  43500. {
  43501. name: "Titan Size, Mid",
  43502. height: math.unit(122, "meters")
  43503. },
  43504. {
  43505. name: "Titan Size, High",
  43506. height: math.unit(162, "meters")
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(53, "meters"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/stellar-marbey/front.svg",
  43518. extra: 1913/1805,
  43519. bottom: 92/2005
  43520. }
  43521. },
  43522. back: {
  43523. height: math.unit(53, "meters"),
  43524. name: "Back",
  43525. image: {
  43526. source: "./media/characters/stellar-marbey/back.svg",
  43527. extra: 1960/1851,
  43528. bottom: 28/1988
  43529. }
  43530. },
  43531. mouth: {
  43532. height: math.unit(3.5, "meters"),
  43533. name: "Mouth",
  43534. image: {
  43535. source: "./media/characters/stellar-marbey/mouth.svg"
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Macro",
  43542. height: math.unit(53, "meters"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(8 + 1/12, "feet"),
  43552. weight: math.unit(233, "lb"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/matsu/front.svg",
  43556. extra: 832/772,
  43557. bottom: 40/872
  43558. }
  43559. },
  43560. back: {
  43561. height: math.unit(8 + 1/12, "feet"),
  43562. weight: math.unit(233, "lb"),
  43563. name: "Back",
  43564. image: {
  43565. source: "./media/characters/matsu/back.svg",
  43566. extra: 839/780,
  43567. bottom: 47/886
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(8 + 1/12, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(4, "feet"),
  43584. weight: math.unit(148, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/thiz/front.svg",
  43588. extra: 1913/1748,
  43589. bottom: 62/1975
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Normal",
  43596. height: math.unit(4, "feet"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43603. {
  43604. front: {
  43605. height: math.unit(7 + 6/12, "feet"),
  43606. weight: math.unit(267, "lb"),
  43607. name: "Front",
  43608. image: {
  43609. source: "./media/characters/marcel/front.svg",
  43610. extra: 1221/1096,
  43611. bottom: 76/1297
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(7 + 6/12, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43625. {
  43626. side: {
  43627. height: math.unit(42, "meters"),
  43628. name: "Side",
  43629. image: {
  43630. source: "./media/characters/flake/side.svg",
  43631. extra: 1525/1306,
  43632. bottom: 209/1734
  43633. }
  43634. },
  43635. },
  43636. [
  43637. {
  43638. name: "Normal",
  43639. height: math.unit(42, "meters"),
  43640. default: true
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43646. {
  43647. dressed: {
  43648. height: math.unit(6 + 4/12, "feet"),
  43649. weight: math.unit(520, "lb"),
  43650. name: "Dressed",
  43651. image: {
  43652. source: "./media/characters/someonne/dressed.svg",
  43653. extra: 1020/1010,
  43654. bottom: 178/1198
  43655. }
  43656. },
  43657. undressed: {
  43658. height: math.unit(6 + 4/12, "feet"),
  43659. weight: math.unit(520, "lb"),
  43660. name: "Undressed",
  43661. image: {
  43662. source: "./media/characters/someonne/undressed.svg",
  43663. extra: 1019/1014,
  43664. bottom: 169/1188
  43665. }
  43666. },
  43667. },
  43668. [
  43669. {
  43670. name: "Normal",
  43671. height: math.unit(6 + 4/12, "feet"),
  43672. default: true
  43673. },
  43674. ]
  43675. ))
  43676. characterMakers.push(() => makeCharacter(
  43677. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43678. {
  43679. front: {
  43680. height: math.unit(3, "feet"),
  43681. weight: math.unit(30, "lb"),
  43682. name: "Front",
  43683. image: {
  43684. source: "./media/characters/till/front.svg",
  43685. extra: 892/823,
  43686. bottom: 55/947
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Normal",
  43693. height: math.unit(3, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(9 + 8/12, "feet"),
  43703. weight: math.unit(800, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/sydney-heki/front.svg",
  43707. extra: 1360/1300,
  43708. bottom: 22/1382
  43709. }
  43710. },
  43711. back: {
  43712. height: math.unit(9 + 8/12, "feet"),
  43713. weight: math.unit(800, "lb"),
  43714. name: "Back",
  43715. image: {
  43716. source: "./media/characters/sydney-heki/back.svg",
  43717. extra: 1356/1293,
  43718. bottom: 12/1368
  43719. }
  43720. },
  43721. frontDressed: {
  43722. height: math.unit(9 + 8/12, "feet"),
  43723. weight: math.unit(800, "lb"),
  43724. name: "Front-dressed",
  43725. image: {
  43726. source: "./media/characters/sydney-heki/front-dressed.svg",
  43727. extra: 1360/1300,
  43728. bottom: 22/1382
  43729. }
  43730. },
  43731. },
  43732. [
  43733. {
  43734. name: "Normal",
  43735. height: math.unit(9 + 8/12, "feet"),
  43736. default: true
  43737. },
  43738. {
  43739. name: "Macro",
  43740. height: math.unit(500, "feet")
  43741. },
  43742. {
  43743. name: "Megamacro",
  43744. height: math.unit(3.6, "miles")
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(200, "cm"),
  43753. weight: math.unit(250, "lb"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/fowler-karlsson/front.svg",
  43757. extra: 897/845,
  43758. bottom: 123/1020
  43759. }
  43760. },
  43761. back: {
  43762. height: math.unit(200, "cm"),
  43763. weight: math.unit(250, "lb"),
  43764. name: "Back",
  43765. image: {
  43766. source: "./media/characters/fowler-karlsson/back.svg",
  43767. extra: 999/944,
  43768. bottom: 26/1025
  43769. }
  43770. },
  43771. dick: {
  43772. height: math.unit(1.92, "feet"),
  43773. weight: math.unit(150, "lb"),
  43774. name: "Dick",
  43775. image: {
  43776. source: "./media/characters/fowler-karlsson/dick.svg"
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Normal",
  43783. height: math.unit(200, "cm"),
  43784. default: true
  43785. },
  43786. {
  43787. name: "Smaller Macro",
  43788. height: math.unit(90, "m")
  43789. },
  43790. {
  43791. name: "Macro",
  43792. height: math.unit(150, "m")
  43793. },
  43794. {
  43795. name: "Bigger Macro",
  43796. height: math.unit(300, "m")
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43802. {
  43803. side: {
  43804. height: math.unit(8 + 2/12, "feet"),
  43805. weight: math.unit(1, "tonne"),
  43806. name: "Side",
  43807. image: {
  43808. source: "./media/characters/rylide/side.svg",
  43809. extra: 1318/1034,
  43810. bottom: 106/1424
  43811. }
  43812. },
  43813. sitting: {
  43814. height: math.unit(303, "cm"),
  43815. weight: math.unit(1, "tonne"),
  43816. name: "Sitting",
  43817. image: {
  43818. source: "./media/characters/rylide/sitting.svg",
  43819. extra: 1303/1103,
  43820. bottom: 36/1339
  43821. }
  43822. },
  43823. },
  43824. [
  43825. {
  43826. name: "Normal",
  43827. height: math.unit(8 + 2/12, "feet"),
  43828. default: true
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(5 + 10/12, "feet"),
  43837. weight: math.unit(160, "lb"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/pudask/front.svg",
  43841. extra: 1616/1590,
  43842. bottom: 161/1777
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Ferret Height",
  43849. height: math.unit(2 + 5/12, "feet")
  43850. },
  43851. {
  43852. name: "Canon Height",
  43853. height: math.unit(5 + 10/12, "feet"),
  43854. default: true
  43855. },
  43856. ]
  43857. ))
  43858. characterMakers.push(() => makeCharacter(
  43859. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43860. {
  43861. front: {
  43862. height: math.unit(3 + 6/12, "feet"),
  43863. weight: math.unit(60, "lb"),
  43864. name: "Front",
  43865. image: {
  43866. source: "./media/characters/ramita/front.svg",
  43867. extra: 1402/1232,
  43868. bottom: 62/1464
  43869. }
  43870. },
  43871. dressed: {
  43872. height: math.unit(3 + 6/12, "feet"),
  43873. weight: math.unit(60, "lb"),
  43874. name: "Dressed",
  43875. image: {
  43876. source: "./media/characters/ramita/dressed.svg",
  43877. extra: 1534/1249,
  43878. bottom: 50/1584
  43879. }
  43880. },
  43881. },
  43882. [
  43883. {
  43884. name: "Normal",
  43885. height: math.unit(3 + 6/12, "feet"),
  43886. default: true
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(8, "feet"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/ark/front.svg",
  43898. extra: 772/693,
  43899. bottom: 45/817
  43900. }
  43901. },
  43902. },
  43903. [
  43904. {
  43905. name: "Normal",
  43906. height: math.unit(8, "feet"),
  43907. default: true
  43908. },
  43909. ]
  43910. ))
  43911. characterMakers.push(() => makeCharacter(
  43912. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43913. {
  43914. front: {
  43915. height: math.unit(6, "feet"),
  43916. weight: math.unit(250, "lb"),
  43917. volume: math.unit(5/8, "gallons"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/ludwig-horn/front.svg",
  43921. extra: 1782/1635,
  43922. bottom: 96/1878
  43923. }
  43924. },
  43925. back: {
  43926. height: math.unit(6, "feet"),
  43927. weight: math.unit(250, "lb"),
  43928. volume: math.unit(5/8, "gallons"),
  43929. name: "Back",
  43930. image: {
  43931. source: "./media/characters/ludwig-horn/back.svg",
  43932. extra: 1874/1729,
  43933. bottom: 27/1901
  43934. }
  43935. },
  43936. dick: {
  43937. height: math.unit(1.05, "feet"),
  43938. weight: math.unit(15, "lb"),
  43939. volume: math.unit(5/8, "gallons"),
  43940. name: "Dick",
  43941. image: {
  43942. source: "./media/characters/ludwig-horn/dick.svg"
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Small",
  43949. height: math.unit(6, "feet")
  43950. },
  43951. {
  43952. name: "Typical",
  43953. height: math.unit(12, "feet"),
  43954. default: true
  43955. },
  43956. {
  43957. name: "Building",
  43958. height: math.unit(80, "feet")
  43959. },
  43960. {
  43961. name: "Town",
  43962. height: math.unit(800, "feet")
  43963. },
  43964. {
  43965. name: "Kingdom",
  43966. height: math.unit(80000, "feet")
  43967. },
  43968. {
  43969. name: "Planet",
  43970. height: math.unit(8000000, "feet")
  43971. },
  43972. {
  43973. name: "Universe",
  43974. height: math.unit(8000000000, "feet")
  43975. },
  43976. {
  43977. name: "Transcended",
  43978. height: math.unit(8e27, "feet")
  43979. },
  43980. ]
  43981. ))
  43982. characterMakers.push(() => makeCharacter(
  43983. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43984. {
  43985. front: {
  43986. height: math.unit(5, "feet"),
  43987. weight: math.unit(50, "kg"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/biot-avery/front.svg",
  43991. extra: 1295/1232,
  43992. bottom: 86/1381
  43993. }
  43994. },
  43995. },
  43996. [
  43997. {
  43998. name: "Normal",
  43999. height: math.unit(5, "feet"),
  44000. default: true
  44001. },
  44002. ]
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44006. {
  44007. front: {
  44008. height: math.unit(6, "feet"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/kitsune-kiro/front.svg",
  44012. extra: 1270/1158,
  44013. bottom: 42/1312
  44014. }
  44015. },
  44016. frontAlt: {
  44017. height: math.unit(6, "feet"),
  44018. name: "Front-alt",
  44019. image: {
  44020. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44021. extra: 1130/1081,
  44022. bottom: 36/1166
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Smol",
  44029. height: math.unit(3, "feet")
  44030. },
  44031. {
  44032. name: "Normal",
  44033. height: math.unit(6, "feet"),
  44034. default: true
  44035. },
  44036. ]
  44037. ))
  44038. characterMakers.push(() => makeCharacter(
  44039. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44040. {
  44041. front: {
  44042. height: math.unit(6, "feet"),
  44043. weight: math.unit(125, "lb"),
  44044. name: "Front",
  44045. image: {
  44046. source: "./media/characters/jack-thatcher/front.svg",
  44047. extra: 1474/1370,
  44048. bottom: 26/1500
  44049. }
  44050. },
  44051. back: {
  44052. height: math.unit(6, "feet"),
  44053. weight: math.unit(125, "lb"),
  44054. name: "Back",
  44055. image: {
  44056. source: "./media/characters/jack-thatcher/back.svg",
  44057. extra: 1489/1384,
  44058. bottom: 18/1507
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(6, "feet"),
  44066. default: true
  44067. },
  44068. {
  44069. name: "Macro",
  44070. height: math.unit(75, "feet")
  44071. },
  44072. {
  44073. name: "Macro-er",
  44074. height: math.unit(250, "feet")
  44075. },
  44076. ]
  44077. ))
  44078. characterMakers.push(() => makeCharacter(
  44079. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44080. {
  44081. front: {
  44082. height: math.unit(7, "feet"),
  44083. weight: math.unit(110, "kg"),
  44084. name: "Front",
  44085. image: {
  44086. source: "./media/characters/max-hyper/front.svg",
  44087. extra: 1969/1881,
  44088. bottom: 49/2018
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(7, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(5 + 5/12, "feet"),
  44105. weight: math.unit(160, "lb"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/spook/front.svg",
  44109. extra: 794/791,
  44110. bottom: 54/848
  44111. }
  44112. },
  44113. back: {
  44114. height: math.unit(5 + 5/12, "feet"),
  44115. weight: math.unit(160, "lb"),
  44116. name: "Back",
  44117. image: {
  44118. source: "./media/characters/spook/back.svg",
  44119. extra: 812/798,
  44120. bottom: 32/844
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(5 + 5/12, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(18, "feet"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/xeaduulix/front.svg",
  44140. extra: 1380/1166,
  44141. bottom: 110/1490
  44142. }
  44143. },
  44144. back: {
  44145. height: math.unit(18, "feet"),
  44146. name: "Back",
  44147. image: {
  44148. source: "./media/characters/xeaduulix/back.svg",
  44149. extra: 1592/1170,
  44150. bottom: 128/1720
  44151. }
  44152. },
  44153. frontNsfw: {
  44154. height: math.unit(18, "feet"),
  44155. name: "Front (NSFW)",
  44156. image: {
  44157. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44158. extra: 1380/1166,
  44159. bottom: 110/1490
  44160. }
  44161. },
  44162. backNsfw: {
  44163. height: math.unit(18, "feet"),
  44164. name: "Back (NSFW)",
  44165. image: {
  44166. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44167. extra: 1592/1170,
  44168. bottom: 128/1720
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "Normal",
  44175. height: math.unit(18, "feet"),
  44176. default: true
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44182. {
  44183. spreadWings: {
  44184. height: math.unit(20, "feet"),
  44185. name: "Spread Wings",
  44186. image: {
  44187. source: "./media/characters/fledge/spread-wings.svg",
  44188. extra: 693/635,
  44189. bottom: 26/719
  44190. }
  44191. },
  44192. front: {
  44193. height: math.unit(20, "feet"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/fledge/front.svg",
  44197. extra: 684/637,
  44198. bottom: 18/702
  44199. }
  44200. },
  44201. frontAlt: {
  44202. height: math.unit(20, "feet"),
  44203. name: "Front (Alt)",
  44204. image: {
  44205. source: "./media/characters/fledge/front-alt.svg",
  44206. extra: 708/664,
  44207. bottom: 13/721
  44208. }
  44209. },
  44210. back: {
  44211. height: math.unit(20, "feet"),
  44212. name: "Back",
  44213. image: {
  44214. source: "./media/characters/fledge/back.svg",
  44215. extra: 718/634,
  44216. bottom: 22/740
  44217. }
  44218. },
  44219. head: {
  44220. height: math.unit(5.55, "feet"),
  44221. name: "Head",
  44222. image: {
  44223. source: "./media/characters/fledge/head.svg"
  44224. }
  44225. },
  44226. headAlt: {
  44227. height: math.unit(5.1, "feet"),
  44228. name: "Head (Alt)",
  44229. image: {
  44230. source: "./media/characters/fledge/head-alt.svg"
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Small",
  44237. height: math.unit(6 + 2/12, "feet")
  44238. },
  44239. {
  44240. name: "Big",
  44241. height: math.unit(20, "feet"),
  44242. default: true
  44243. },
  44244. {
  44245. name: "Giant",
  44246. height: math.unit(100, "feet")
  44247. },
  44248. {
  44249. name: "Macro",
  44250. height: math.unit(200, "feet")
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(1, "meter"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/atlas-morenai/front.svg",
  44262. extra: 1275/1043,
  44263. bottom: 19/1294
  44264. }
  44265. },
  44266. back: {
  44267. height: math.unit(1, "meter"),
  44268. name: "Back",
  44269. image: {
  44270. source: "./media/characters/atlas-morenai/back.svg",
  44271. extra: 1141/1001,
  44272. bottom: 25/1166
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(1, "meter"),
  44280. default: true
  44281. },
  44282. {
  44283. name: "Magic-Infused",
  44284. height: math.unit(5, "meters")
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44290. {
  44291. front: {
  44292. height: math.unit(5, "meters"),
  44293. name: "Front",
  44294. image: {
  44295. source: "./media/characters/cintia/front.svg",
  44296. extra: 1312/1228,
  44297. bottom: 38/1350
  44298. }
  44299. },
  44300. back: {
  44301. height: math.unit(5, "meters"),
  44302. name: "Back",
  44303. image: {
  44304. source: "./media/characters/cintia/back.svg",
  44305. extra: 1260/1166,
  44306. bottom: 98/1358
  44307. }
  44308. },
  44309. frontDick: {
  44310. height: math.unit(5, "meters"),
  44311. name: "Front (Dick)",
  44312. image: {
  44313. source: "./media/characters/cintia/front-dick.svg",
  44314. extra: 1312/1228,
  44315. bottom: 38/1350
  44316. }
  44317. },
  44318. backDick: {
  44319. height: math.unit(5, "meters"),
  44320. name: "Back (Dick)",
  44321. image: {
  44322. source: "./media/characters/cintia/back-dick.svg",
  44323. extra: 1260/1166,
  44324. bottom: 98/1358
  44325. }
  44326. },
  44327. bust: {
  44328. height: math.unit(1.97, "meters"),
  44329. name: "Bust",
  44330. image: {
  44331. source: "./media/characters/cintia/bust.svg",
  44332. extra: 617/565,
  44333. bottom: 0/617
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(5, "meters"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44347. {
  44348. side: {
  44349. height: math.unit(100, "feet"),
  44350. name: "Side",
  44351. image: {
  44352. source: "./media/characters/denora/side.svg",
  44353. extra: 875/803,
  44354. bottom: 9/884
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Standard",
  44361. height: math.unit(100, "feet"),
  44362. default: true
  44363. },
  44364. {
  44365. name: "Grand",
  44366. height: math.unit(1000, "feet")
  44367. },
  44368. {
  44369. name: "Conquering",
  44370. height: math.unit(10000, "feet")
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44376. {
  44377. dressed: {
  44378. height: math.unit(8 + 5/12, "feet"),
  44379. weight: math.unit(700, "lb"),
  44380. name: "Dressed",
  44381. image: {
  44382. source: "./media/characters/kiva/dressed.svg",
  44383. extra: 1102/1055,
  44384. bottom: 60/1162
  44385. }
  44386. },
  44387. nude: {
  44388. height: math.unit(8 + 5/12, "feet"),
  44389. weight: math.unit(700, "lb"),
  44390. name: "Nude",
  44391. image: {
  44392. source: "./media/characters/kiva/nude.svg",
  44393. extra: 1102/1055,
  44394. bottom: 60/1162
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "Base Height",
  44401. height: math.unit(8 + 5/12, "feet"),
  44402. default: true
  44403. },
  44404. {
  44405. name: "Macro",
  44406. height: math.unit(100, "feet")
  44407. },
  44408. {
  44409. name: "Max",
  44410. height: math.unit(3280, "feet")
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44416. {
  44417. front: {
  44418. height: math.unit(6 + 8/12, "feet"),
  44419. weight: math.unit(250, "lb"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/ztragon/front.svg",
  44423. extra: 1825/1684,
  44424. bottom: 98/1923
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(6 + 8/12, "feet"),
  44432. default: true
  44433. },
  44434. {
  44435. name: "Macro",
  44436. height: math.unit(80, "feet")
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44442. {
  44443. front: {
  44444. height: math.unit(10.4, "feet"),
  44445. weight: math.unit(2, "tons"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/yesenia/front.svg",
  44449. extra: 1479/1474,
  44450. bottom: 233/1712
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(10.4, "feet"),
  44458. default: true
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44464. {
  44465. normal: {
  44466. height: math.unit(6 + 1/12, "feet"),
  44467. weight: math.unit(180, "lb"),
  44468. name: "Normal",
  44469. image: {
  44470. source: "./media/characters/leanne-lycheborne/normal.svg",
  44471. extra: 1748/1660,
  44472. bottom: 98/1846
  44473. }
  44474. },
  44475. were: {
  44476. height: math.unit(12, "feet"),
  44477. weight: math.unit(1600, "lb"),
  44478. name: "Were",
  44479. image: {
  44480. source: "./media/characters/leanne-lycheborne/were.svg",
  44481. extra: 1485/1432,
  44482. bottom: 66/1551
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Normal",
  44489. height: math.unit(6 + 1/12, "feet"),
  44490. default: true
  44491. },
  44492. ]
  44493. ))
  44494. characterMakers.push(() => makeCharacter(
  44495. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44496. {
  44497. side: {
  44498. height: math.unit(13, "feet"),
  44499. name: "Side",
  44500. image: {
  44501. source: "./media/characters/kira-tyler/side.svg",
  44502. extra: 693/393,
  44503. bottom: 58/751
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(13, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(10.3, "feet"),
  44520. weight: math.unit(150, "lb"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/blaze/front.svg",
  44524. extra: 1378/1286,
  44525. bottom: 172/1550
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(10.3, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44539. {
  44540. side: {
  44541. height: math.unit(2, "meters"),
  44542. weight: math.unit(400, "kg"),
  44543. name: "Side",
  44544. image: {
  44545. source: "./media/characters/anu/side.svg",
  44546. extra: 506/394,
  44547. bottom: 18/524
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Humanoid",
  44554. height: math.unit(2, "meters")
  44555. },
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(5, "meters"),
  44559. default: true
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44565. {
  44566. front: {
  44567. height: math.unit(5 + 5/12, "feet"),
  44568. weight: math.unit(170, "lb"),
  44569. name: "Front",
  44570. image: {
  44571. source: "./media/characters/synx-the-lynx/front.svg",
  44572. extra: 1893/1745,
  44573. bottom: 17/1910
  44574. }
  44575. },
  44576. side: {
  44577. height: math.unit(5 + 5/12, "feet"),
  44578. weight: math.unit(170, "lb"),
  44579. name: "Side",
  44580. image: {
  44581. source: "./media/characters/synx-the-lynx/side.svg",
  44582. extra: 1884/1740,
  44583. bottom: 39/1923
  44584. }
  44585. },
  44586. back: {
  44587. height: math.unit(5 + 5/12, "feet"),
  44588. weight: math.unit(170, "lb"),
  44589. name: "Back",
  44590. image: {
  44591. source: "./media/characters/synx-the-lynx/back.svg",
  44592. extra: 1903/1755,
  44593. bottom: 14/1917
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(5 + 5/12, "feet"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44607. {
  44608. back: {
  44609. height: math.unit(15, "feet"),
  44610. name: "Back",
  44611. image: {
  44612. source: "./media/characters/nadezda-fex/back.svg",
  44613. extra: 1695/1481,
  44614. bottom: 25/1720
  44615. }
  44616. },
  44617. },
  44618. [
  44619. {
  44620. name: "Normal",
  44621. height: math.unit(15, "feet"),
  44622. default: true
  44623. },
  44624. {
  44625. name: "Macro",
  44626. height: math.unit(2.5, "miles")
  44627. },
  44628. {
  44629. name: "Goddess",
  44630. height: math.unit(2, "multiverses")
  44631. },
  44632. ]
  44633. ))
  44634. characterMakers.push(() => makeCharacter(
  44635. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44636. {
  44637. front: {
  44638. height: math.unit(216, "cm"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/lev/front.svg",
  44642. extra: 1728/1670,
  44643. bottom: 82/1810
  44644. }
  44645. },
  44646. back: {
  44647. height: math.unit(216, "cm"),
  44648. name: "Back",
  44649. image: {
  44650. source: "./media/characters/lev/back.svg",
  44651. extra: 1738/1675,
  44652. bottom: 24/1762
  44653. }
  44654. },
  44655. dressed: {
  44656. height: math.unit(216, "cm"),
  44657. name: "Dressed",
  44658. image: {
  44659. source: "./media/characters/lev/dressed.svg",
  44660. extra: 1397/1351,
  44661. bottom: 73/1470
  44662. }
  44663. },
  44664. head: {
  44665. height: math.unit(0.51, "meter"),
  44666. name: "Head",
  44667. image: {
  44668. source: "./media/characters/lev/head.svg"
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Normal",
  44675. height: math.unit(216, "cm"),
  44676. default: true
  44677. },
  44678. {
  44679. name: "Relatively Macro",
  44680. height: math.unit(80, "meters")
  44681. },
  44682. {
  44683. name: "Megamacro",
  44684. height: math.unit(21600, "meters")
  44685. },
  44686. {
  44687. name: "Megamacro+",
  44688. height: math.unit(64800, "meters")
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(2, "meters"),
  44697. weight: math.unit(80, "kg"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/moka/front.svg",
  44701. extra: 1337/1255,
  44702. bottom: 58/1395
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Micro",
  44709. height: math.unit(15, "cm")
  44710. },
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(2, "meters"),
  44714. default: true
  44715. },
  44716. {
  44717. name: "Macro",
  44718. height: math.unit(20, "meters"),
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(9, "feet"),
  44727. weight: math.unit(240, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/kuzco/front.svg",
  44731. extra: 1593/1487,
  44732. bottom: 32/1625
  44733. }
  44734. },
  44735. side: {
  44736. height: math.unit(9, "feet"),
  44737. weight: math.unit(240, "lb"),
  44738. name: "Side",
  44739. image: {
  44740. source: "./media/characters/kuzco/side.svg",
  44741. extra: 1575/1485,
  44742. bottom: 30/1605
  44743. }
  44744. },
  44745. back: {
  44746. height: math.unit(9, "feet"),
  44747. weight: math.unit(240, "lb"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/kuzco/back.svg",
  44751. extra: 1603/1514,
  44752. bottom: 14/1617
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(9, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44766. {
  44767. side: {
  44768. height: math.unit(2, "meters"),
  44769. weight: math.unit(300, "kg"),
  44770. name: "Side",
  44771. image: {
  44772. source: "./media/characters/ceruleus/side.svg",
  44773. extra: 1068/974,
  44774. bottom: 126/1194
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Normal",
  44781. height: math.unit(16, "meters"),
  44782. default: true
  44783. },
  44784. ]
  44785. ))
  44786. characterMakers.push(() => makeCharacter(
  44787. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44788. {
  44789. front: {
  44790. height: math.unit(9, "feet"),
  44791. weight: math.unit(500, "kg"),
  44792. name: "Front",
  44793. image: {
  44794. source: "./media/characters/acouya/front.svg",
  44795. extra: 1660/1473,
  44796. bottom: 28/1688
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(9, "feet"),
  44804. default: true
  44805. },
  44806. ]
  44807. ))
  44808. characterMakers.push(() => makeCharacter(
  44809. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44810. {
  44811. front: {
  44812. height: math.unit(5 + 6/12, "feet"),
  44813. weight: math.unit(195, "lb"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/vant/front.svg",
  44817. extra: 1396/1320,
  44818. bottom: 20/1416
  44819. }
  44820. },
  44821. back: {
  44822. height: math.unit(5 + 6/12, "feet"),
  44823. weight: math.unit(195, "lb"),
  44824. name: "Back",
  44825. image: {
  44826. source: "./media/characters/vant/back.svg",
  44827. extra: 1396/1320,
  44828. bottom: 20/1416
  44829. }
  44830. },
  44831. maw: {
  44832. height: math.unit(0.75, "feet"),
  44833. name: "Maw",
  44834. image: {
  44835. source: "./media/characters/vant/maw.svg"
  44836. }
  44837. },
  44838. paw: {
  44839. height: math.unit(1.07, "feet"),
  44840. name: "Paw",
  44841. image: {
  44842. source: "./media/characters/vant/paw.svg"
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Micro",
  44849. height: math.unit(0.25, "inches")
  44850. },
  44851. {
  44852. name: "Normal",
  44853. height: math.unit(5 + 6/12, "feet"),
  44854. default: true
  44855. },
  44856. {
  44857. name: "Macro",
  44858. height: math.unit(75, "feet")
  44859. },
  44860. ]
  44861. ))
  44862. characterMakers.push(() => makeCharacter(
  44863. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44864. {
  44865. front: {
  44866. height: math.unit(30, "meters"),
  44867. weight: math.unit(363, "tons"),
  44868. name: "Front",
  44869. image: {
  44870. source: "./media/characters/ahra/front.svg",
  44871. extra: 1914/1814,
  44872. bottom: 46/1960
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Macro",
  44879. height: math.unit(30, "meters"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44886. {
  44887. undressed: {
  44888. height: math.unit(2, "m"),
  44889. weight: math.unit(250, "kg"),
  44890. name: "Undressed",
  44891. image: {
  44892. source: "./media/characters/coriander/undressed.svg",
  44893. extra: 1757/1606,
  44894. bottom: 107/1864
  44895. }
  44896. },
  44897. dressed: {
  44898. height: math.unit(2, "m"),
  44899. weight: math.unit(250, "kg"),
  44900. name: "Dressed",
  44901. image: {
  44902. source: "./media/characters/coriander/dressed.svg",
  44903. extra: 1757/1606,
  44904. bottom: 107/1864
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(4, "meters"),
  44912. default: true
  44913. },
  44914. {
  44915. name: "XL",
  44916. height: math.unit(6, "meters")
  44917. },
  44918. {
  44919. name: "XXL",
  44920. height: math.unit(8, "meters")
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(6, "feet"),
  44929. name: "Front",
  44930. image: {
  44931. source: "./media/characters/syrinx/front.svg",
  44932. extra: 1557/1259,
  44933. bottom: 171/1728
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(6 + 3/12, "feet"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44947. {
  44948. front: {
  44949. height: math.unit(11 + 6/12, "feet"),
  44950. weight: math.unit(1.5, "tons"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/bor/front.svg",
  44954. extra: 1189/1109,
  44955. bottom: 170/1359
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(11 + 6/12, "feet"),
  44963. default: true
  44964. },
  44965. {
  44966. name: "Macro",
  44967. height: math.unit(32 + 9/12, "feet")
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44973. {
  44974. anthro: {
  44975. height: math.unit(9, "feet"),
  44976. weight: math.unit(2076, "lb"),
  44977. name: "Anthro",
  44978. image: {
  44979. source: "./media/characters/abacus/anthro.svg",
  44980. extra: 1540/1494,
  44981. bottom: 233/1773
  44982. }
  44983. },
  44984. pigeon: {
  44985. height: math.unit(1, "feet"),
  44986. name: "Pigeon",
  44987. image: {
  44988. source: "./media/characters/abacus/pigeon.svg",
  44989. extra: 528/525,
  44990. bottom: 46/574
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(9, "feet"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45004. {
  45005. side: {
  45006. height: math.unit(6, "feet"),
  45007. name: "Side",
  45008. image: {
  45009. source: "./media/characters/delkhan/side.svg",
  45010. extra: 1884/1786,
  45011. bottom: 308/2192
  45012. }
  45013. },
  45014. head: {
  45015. height: math.unit(3.38, "feet"),
  45016. name: "Head",
  45017. image: {
  45018. source: "./media/characters/delkhan/head.svg"
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(72, "feet"),
  45026. default: true
  45027. },
  45028. {
  45029. name: "Giant",
  45030. height: math.unit(172, "feet")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45036. {
  45037. standing: {
  45038. height: math.unit(6, "feet"),
  45039. name: "Standing",
  45040. image: {
  45041. source: "./media/characters/euchidat/standing.svg",
  45042. extra: 1612/1553,
  45043. bottom: 116/1728
  45044. }
  45045. },
  45046. leaning: {
  45047. height: math.unit(6, "feet"),
  45048. name: "Leaning",
  45049. image: {
  45050. source: "./media/characters/euchidat/leaning.svg",
  45051. extra: 1719/1674,
  45052. bottom: 27/1746
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(175, "feet"),
  45060. default: true
  45061. },
  45062. {
  45063. name: "Megamacro",
  45064. height: math.unit(190, "miles")
  45065. },
  45066. {
  45067. name: "Gigamacro",
  45068. height: math.unit(190000, "miles")
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45074. {
  45075. front: {
  45076. height: math.unit(6, "feet"),
  45077. weight: math.unit(150, "lb"),
  45078. name: "Front",
  45079. image: {
  45080. source: "./media/characters/rebecca-stack/front.svg",
  45081. extra: 1256/1201,
  45082. bottom: 18/1274
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(5 + 8/12, "feet"),
  45090. default: true
  45091. },
  45092. {
  45093. name: "Demolitionist",
  45094. height: math.unit(200, "feet")
  45095. },
  45096. {
  45097. name: "Out of Control",
  45098. height: math.unit(2, "miles")
  45099. },
  45100. {
  45101. name: "Giga",
  45102. height: math.unit(7200, "miles")
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45108. {
  45109. front: {
  45110. height: math.unit(6, "feet"),
  45111. weight: math.unit(150, "lb"),
  45112. name: "Front",
  45113. image: {
  45114. source: "./media/characters/jenny-cartwright/front.svg",
  45115. extra: 1384/1376,
  45116. bottom: 58/1442
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(6 + 7/12, "feet"),
  45124. default: true
  45125. },
  45126. {
  45127. name: "Librarian",
  45128. height: math.unit(55, "feet")
  45129. },
  45130. {
  45131. name: "Sightseer",
  45132. height: math.unit(50, "miles")
  45133. },
  45134. {
  45135. name: "Giga",
  45136. height: math.unit(30000, "miles")
  45137. },
  45138. ]
  45139. ))
  45140. characterMakers.push(() => makeCharacter(
  45141. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45142. {
  45143. nude: {
  45144. height: math.unit(8, "feet"),
  45145. weight: math.unit(225, "lb"),
  45146. name: "Nude",
  45147. image: {
  45148. source: "./media/characters/marvy/nude.svg",
  45149. extra: 1900/1683,
  45150. bottom: 89/1989
  45151. }
  45152. },
  45153. dressed: {
  45154. height: math.unit(8, "feet"),
  45155. weight: math.unit(225, "lb"),
  45156. name: "Dressed",
  45157. image: {
  45158. source: "./media/characters/marvy/dressed.svg",
  45159. extra: 1900/1683,
  45160. bottom: 89/1989
  45161. }
  45162. },
  45163. head: {
  45164. height: math.unit(2.85, "feet"),
  45165. name: "Head",
  45166. image: {
  45167. source: "./media/characters/marvy/head.svg"
  45168. }
  45169. },
  45170. },
  45171. [
  45172. {
  45173. name: "Normal",
  45174. height: math.unit(8, "feet"),
  45175. default: true
  45176. },
  45177. ]
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(8, "feet"),
  45184. weight: math.unit(250, "lb"),
  45185. name: "Front",
  45186. image: {
  45187. source: "./media/characters/leah/front.svg",
  45188. extra: 1257/1149,
  45189. bottom: 109/1366
  45190. }
  45191. },
  45192. },
  45193. [
  45194. {
  45195. name: "Normal",
  45196. height: math.unit(8, "feet"),
  45197. default: true
  45198. },
  45199. {
  45200. name: "Minimacro",
  45201. height: math.unit(40, "feet")
  45202. },
  45203. {
  45204. name: "Macro",
  45205. height: math.unit(124, "feet")
  45206. },
  45207. {
  45208. name: "Megamacro",
  45209. height: math.unit(850, "feet")
  45210. },
  45211. ]
  45212. ))
  45213. characterMakers.push(() => makeCharacter(
  45214. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45215. {
  45216. side: {
  45217. height: math.unit(13 + 6/12, "feet"),
  45218. weight: math.unit(3200, "lb"),
  45219. name: "Side",
  45220. image: {
  45221. source: "./media/characters/alvir/side.svg",
  45222. extra: 896/589,
  45223. bottom: 26/922
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(13 + 6/12, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45237. {
  45238. front: {
  45239. height: math.unit(5 + 4/12, "feet"),
  45240. weight: math.unit(236, "lb"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/zaina-khalil/front.svg",
  45244. extra: 1533/1485,
  45245. bottom: 94/1627
  45246. }
  45247. },
  45248. side: {
  45249. height: math.unit(5 + 4/12, "feet"),
  45250. weight: math.unit(236, "lb"),
  45251. name: "Side",
  45252. image: {
  45253. source: "./media/characters/zaina-khalil/side.svg",
  45254. extra: 1537/1498,
  45255. bottom: 66/1603
  45256. }
  45257. },
  45258. back: {
  45259. height: math.unit(5 + 4/12, "feet"),
  45260. weight: math.unit(236, "lb"),
  45261. name: "Back",
  45262. image: {
  45263. source: "./media/characters/zaina-khalil/back.svg",
  45264. extra: 1546/1494,
  45265. bottom: 89/1635
  45266. }
  45267. },
  45268. },
  45269. [
  45270. {
  45271. name: "Normal",
  45272. height: math.unit(5 + 4/12, "feet"),
  45273. default: true
  45274. },
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45279. {
  45280. side: {
  45281. height: math.unit(12, "feet"),
  45282. weight: math.unit(4000, "lb"),
  45283. name: "Side",
  45284. image: {
  45285. source: "./media/characters/terry/side.svg",
  45286. extra: 1518/1439,
  45287. bottom: 149/1667
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(12, "feet"),
  45295. default: true
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(12, "feet"),
  45304. weight: math.unit(1500, "lb"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/kahea/front.svg",
  45308. extra: 1722/1617,
  45309. bottom: 179/1901
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(12, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45323. {
  45324. demonFront: {
  45325. height: math.unit(36, "feet"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/alex-xuria/demon-front.svg",
  45329. extra: 1705/1673,
  45330. bottom: 198/1903
  45331. },
  45332. form: "demon",
  45333. default: true
  45334. },
  45335. demonBack: {
  45336. height: math.unit(36, "feet"),
  45337. name: "Back",
  45338. image: {
  45339. source: "./media/characters/alex-xuria/demon-back.svg",
  45340. extra: 1725/1693,
  45341. bottom: 70/1795
  45342. },
  45343. form: "demon"
  45344. },
  45345. demonHead: {
  45346. height: math.unit(2.14, "meters"),
  45347. name: "Head",
  45348. image: {
  45349. source: "./media/characters/alex-xuria/demon-head.svg"
  45350. },
  45351. form: "demon"
  45352. },
  45353. demonHand: {
  45354. height: math.unit(1.61, "meters"),
  45355. name: "Hand",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/demon-hand.svg"
  45358. },
  45359. form: "demon"
  45360. },
  45361. demonPaw: {
  45362. height: math.unit(1.35, "meters"),
  45363. name: "Paw",
  45364. image: {
  45365. source: "./media/characters/alex-xuria/demon-paw.svg"
  45366. },
  45367. form: "demon"
  45368. },
  45369. demonFoot: {
  45370. height: math.unit(2.2, "meters"),
  45371. name: "Foot",
  45372. image: {
  45373. source: "./media/characters/alex-xuria/demon-foot.svg"
  45374. },
  45375. form: "demon"
  45376. },
  45377. demonCock: {
  45378. height: math.unit(1.74, "meters"),
  45379. name: "Cock",
  45380. image: {
  45381. source: "./media/characters/alex-xuria/demon-cock.svg"
  45382. },
  45383. form: "demon"
  45384. },
  45385. demonTailClosed: {
  45386. height: math.unit(1.47, "meters"),
  45387. name: "Tail (Closed)",
  45388. image: {
  45389. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45390. },
  45391. form: "demon"
  45392. },
  45393. demonTailOpen: {
  45394. height: math.unit(2.85, "meters"),
  45395. name: "Tail (Open)",
  45396. image: {
  45397. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45398. },
  45399. form: "demon"
  45400. },
  45401. incubusFront: {
  45402. height: math.unit(12, "feet"),
  45403. name: "Front",
  45404. image: {
  45405. source: "./media/characters/alex-xuria/incubus-front.svg",
  45406. extra: 1754/1677,
  45407. bottom: 125/1879
  45408. },
  45409. form: "incubus",
  45410. default: true
  45411. },
  45412. incubusBack: {
  45413. height: math.unit(12, "feet"),
  45414. name: "Back",
  45415. image: {
  45416. source: "./media/characters/alex-xuria/incubus-back.svg",
  45417. extra: 1702/1647,
  45418. bottom: 30/1732
  45419. },
  45420. form: "incubus"
  45421. },
  45422. incubusHead: {
  45423. height: math.unit(3.45, "feet"),
  45424. name: "Head",
  45425. image: {
  45426. source: "./media/characters/alex-xuria/incubus-head.svg"
  45427. },
  45428. form: "incubus"
  45429. },
  45430. rabbitFront: {
  45431. height: math.unit(6, "feet"),
  45432. name: "Front",
  45433. image: {
  45434. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45435. extra: 1369/1349,
  45436. bottom: 45/1414
  45437. },
  45438. form: "rabbit",
  45439. default: true
  45440. },
  45441. rabbitSide: {
  45442. height: math.unit(6, "feet"),
  45443. name: "Side",
  45444. image: {
  45445. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45446. extra: 1370/1356,
  45447. bottom: 37/1407
  45448. },
  45449. form: "rabbit"
  45450. },
  45451. rabbitBack: {
  45452. height: math.unit(6, "feet"),
  45453. name: "Back",
  45454. image: {
  45455. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45456. extra: 1375/1358,
  45457. bottom: 43/1418
  45458. },
  45459. form: "rabbit"
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(6, "feet"),
  45466. default: true,
  45467. form: "rabbit"
  45468. },
  45469. {
  45470. name: "Incubus",
  45471. height: math.unit(12, "feet"),
  45472. default: true,
  45473. form: "incubus"
  45474. },
  45475. {
  45476. name: "Demon",
  45477. height: math.unit(36, "feet"),
  45478. default: true,
  45479. form: "demon"
  45480. }
  45481. ],
  45482. {
  45483. "demon": {
  45484. name: "Demon",
  45485. default: true
  45486. },
  45487. "incubus": {
  45488. name: "Incubus",
  45489. },
  45490. "rabbit": {
  45491. name: "Rabbit"
  45492. }
  45493. }
  45494. ))
  45495. characterMakers.push(() => makeCharacter(
  45496. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45497. {
  45498. front: {
  45499. height: math.unit(7 + 5/12, "feet"),
  45500. weight: math.unit(510, "lb"),
  45501. name: "Front",
  45502. image: {
  45503. source: "./media/characters/syrup/front.svg",
  45504. extra: 932/916,
  45505. bottom: 26/958
  45506. }
  45507. },
  45508. },
  45509. [
  45510. {
  45511. name: "Normal",
  45512. height: math.unit(7 + 5/12, "feet"),
  45513. default: true
  45514. },
  45515. {
  45516. name: "Big",
  45517. height: math.unit(50, "feet")
  45518. },
  45519. {
  45520. name: "Macro",
  45521. height: math.unit(300, "feet")
  45522. },
  45523. {
  45524. name: "Megamacro",
  45525. height: math.unit(1, "mile")
  45526. },
  45527. ]
  45528. ))
  45529. characterMakers.push(() => makeCharacter(
  45530. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45531. {
  45532. front: {
  45533. height: math.unit(6 + 9/12, "feet"),
  45534. name: "Front",
  45535. image: {
  45536. source: "./media/characters/zeimne/front.svg",
  45537. extra: 1969/1806,
  45538. bottom: 53/2022
  45539. }
  45540. },
  45541. },
  45542. [
  45543. {
  45544. name: "Normal",
  45545. height: math.unit(6 + 9/12, "feet"),
  45546. default: true
  45547. },
  45548. {
  45549. name: "Giant",
  45550. height: math.unit(550, "feet")
  45551. },
  45552. {
  45553. name: "Mega",
  45554. height: math.unit(3, "miles")
  45555. },
  45556. {
  45557. name: "Giga",
  45558. height: math.unit(250, "miles")
  45559. },
  45560. {
  45561. name: "Tera",
  45562. height: math.unit(1, "AU")
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(5 + 2/12, "feet"),
  45571. name: "Front",
  45572. image: {
  45573. source: "./media/characters/grar/front.svg",
  45574. extra: 1331/1119,
  45575. bottom: 60/1391
  45576. }
  45577. },
  45578. back: {
  45579. height: math.unit(5 + 2/12, "feet"),
  45580. name: "Back",
  45581. image: {
  45582. source: "./media/characters/grar/back.svg",
  45583. extra: 1385/1169,
  45584. bottom: 23/1408
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(5 + 2/12, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(13 + 7/12, "feet"),
  45601. weight: math.unit(2200, "lb"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/endraya/front.svg",
  45605. extra: 1289/1215,
  45606. bottom: 50/1339
  45607. }
  45608. },
  45609. nude: {
  45610. height: math.unit(13 + 7/12, "feet"),
  45611. weight: math.unit(2200, "lb"),
  45612. name: "Nude",
  45613. image: {
  45614. source: "./media/characters/endraya/nude.svg",
  45615. extra: 1247/1171,
  45616. bottom: 40/1287
  45617. }
  45618. },
  45619. head: {
  45620. height: math.unit(2.6, "feet"),
  45621. name: "Head",
  45622. image: {
  45623. source: "./media/characters/endraya/head.svg"
  45624. }
  45625. },
  45626. slit: {
  45627. height: math.unit(3.4, "feet"),
  45628. name: "Slit",
  45629. image: {
  45630. source: "./media/characters/endraya/slit.svg"
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(13 + 7/12, "feet"),
  45638. default: true
  45639. },
  45640. {
  45641. name: "Macro",
  45642. height: math.unit(200, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(412, "meters"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/rodryana/front.svg",
  45654. extra: 2002/1921,
  45655. bottom: 53/2055
  45656. }
  45657. },
  45658. back: {
  45659. height: math.unit(412, "meters"),
  45660. name: "Back",
  45661. image: {
  45662. source: "./media/characters/rodryana/back.svg",
  45663. extra: 1993/1926,
  45664. bottom: 48/2041
  45665. }
  45666. },
  45667. maw: {
  45668. height: math.unit(45, "meters"),
  45669. name: "Maw",
  45670. image: {
  45671. source: "./media/characters/rodryana/maw.svg"
  45672. }
  45673. },
  45674. slit: {
  45675. height: math.unit(72, "meters"),
  45676. name: "Slit",
  45677. image: {
  45678. source: "./media/characters/rodryana/slit.svg"
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Macro",
  45685. height: math.unit(412, "meters"),
  45686. default: true
  45687. },
  45688. ]
  45689. ))
  45690. characterMakers.push(() => makeCharacter(
  45691. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45692. {
  45693. front: {
  45694. height: math.unit(6, "feet"),
  45695. weight: math.unit(1000, "lb"),
  45696. name: "Front",
  45697. image: {
  45698. source: "./media/characters/asaya/front.svg",
  45699. extra: 1460/1200,
  45700. bottom: 71/1531
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(8, "km"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45714. {
  45715. front: {
  45716. height: math.unit(3.5, "meters"),
  45717. name: "Front",
  45718. image: {
  45719. source: "./media/characters/sarzu-and-israz/front.svg",
  45720. extra: 1570/1558,
  45721. bottom: 150/1720
  45722. },
  45723. },
  45724. back: {
  45725. height: math.unit(3.5, "meters"),
  45726. name: "Back",
  45727. image: {
  45728. source: "./media/characters/sarzu-and-israz/back.svg",
  45729. extra: 1523/1509,
  45730. bottom: 132/1655
  45731. },
  45732. },
  45733. frontFemale: {
  45734. height: math.unit(3.5, "meters"),
  45735. name: "Front (Female)",
  45736. image: {
  45737. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45738. extra: 1570/1558,
  45739. bottom: 150/1720
  45740. },
  45741. },
  45742. frontHerm: {
  45743. height: math.unit(3.5, "meters"),
  45744. name: "Front (Herm)",
  45745. image: {
  45746. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45747. extra: 1570/1558,
  45748. bottom: 150/1720
  45749. },
  45750. },
  45751. },
  45752. [
  45753. {
  45754. name: "Normal",
  45755. height: math.unit(3.5, "meters"),
  45756. default: true,
  45757. },
  45758. {
  45759. name: "Macro",
  45760. height: math.unit(65.5, "meters"),
  45761. },
  45762. ],
  45763. ))
  45764. characterMakers.push(() => makeCharacter(
  45765. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45766. {
  45767. front: {
  45768. height: math.unit(6, "feet"),
  45769. weight: math.unit(250, "lb"),
  45770. name: "Front",
  45771. image: {
  45772. source: "./media/characters/zenimma/front.svg",
  45773. extra: 1346/1320,
  45774. bottom: 58/1404
  45775. }
  45776. },
  45777. back: {
  45778. height: math.unit(6, "feet"),
  45779. weight: math.unit(250, "lb"),
  45780. name: "Back",
  45781. image: {
  45782. source: "./media/characters/zenimma/back.svg",
  45783. extra: 1324/1308,
  45784. bottom: 44/1368
  45785. }
  45786. },
  45787. dick: {
  45788. height: math.unit(1.44, "feet"),
  45789. name: "Dick",
  45790. image: {
  45791. source: "./media/characters/zenimma/dick.svg"
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Canon Height",
  45798. height: math.unit(66, "miles"),
  45799. default: true
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45805. {
  45806. nude: {
  45807. height: math.unit(6, "feet"),
  45808. weight: math.unit(150, "lb"),
  45809. name: "Nude",
  45810. image: {
  45811. source: "./media/characters/shavon/nude.svg",
  45812. extra: 1242/1096,
  45813. bottom: 98/1340
  45814. }
  45815. },
  45816. dressed: {
  45817. height: math.unit(6, "feet"),
  45818. weight: math.unit(150, "lb"),
  45819. name: "Dressed",
  45820. image: {
  45821. source: "./media/characters/shavon/dressed.svg",
  45822. extra: 1242/1096,
  45823. bottom: 98/1340
  45824. }
  45825. },
  45826. },
  45827. [
  45828. {
  45829. name: "Macro",
  45830. height: math.unit(255, "feet"),
  45831. default: true
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45837. {
  45838. front: {
  45839. height: math.unit(6, "feet"),
  45840. name: "Front",
  45841. image: {
  45842. source: "./media/characters/steph/front.svg",
  45843. extra: 1430/1330,
  45844. bottom: 54/1484
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(6, "feet"),
  45852. default: true
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(9, "feet"),
  45861. weight: math.unit(400, "lb"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/kil'aman/front.svg",
  45865. extra: 1210/1159,
  45866. bottom: 109/1319
  45867. }
  45868. },
  45869. head: {
  45870. height: math.unit(2.14, "feet"),
  45871. name: "Head",
  45872. image: {
  45873. source: "./media/characters/kil'aman/head.svg"
  45874. }
  45875. },
  45876. maw: {
  45877. height: math.unit(1.21, "feet"),
  45878. name: "Maw",
  45879. image: {
  45880. source: "./media/characters/kil'aman/maw.svg"
  45881. }
  45882. },
  45883. foot: {
  45884. height: math.unit(1.7, "feet"),
  45885. name: "Foot",
  45886. image: {
  45887. source: "./media/characters/kil'aman/foot.svg"
  45888. }
  45889. },
  45890. dick: {
  45891. height: math.unit(2.1, "feet"),
  45892. name: "Dick",
  45893. image: {
  45894. source: "./media/characters/kil'aman/dick.svg"
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(9, "feet")
  45902. },
  45903. {
  45904. name: "Canon Height",
  45905. height: math.unit(10, "miles"),
  45906. default: true
  45907. },
  45908. {
  45909. name: "Maximum",
  45910. height: math.unit(6e9, "miles")
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45916. {
  45917. front: {
  45918. height: math.unit(90, "feet"),
  45919. weight: math.unit(675000, "lb"),
  45920. name: "Front",
  45921. image: {
  45922. source: "./media/characters/qadan/front.svg",
  45923. extra: 1012/1004,
  45924. bottom: 78/1090
  45925. }
  45926. },
  45927. back: {
  45928. height: math.unit(90, "feet"),
  45929. weight: math.unit(675000, "lb"),
  45930. name: "Back",
  45931. image: {
  45932. source: "./media/characters/qadan/back.svg",
  45933. extra: 1042/1031,
  45934. bottom: 55/1097
  45935. }
  45936. },
  45937. armored: {
  45938. height: math.unit(90, "feet"),
  45939. weight: math.unit(675000, "lb"),
  45940. name: "Armored",
  45941. image: {
  45942. source: "./media/characters/qadan/armored.svg",
  45943. extra: 1047/1037,
  45944. bottom: 48/1095
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(90, "feet"),
  45952. default: true
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(6, "feet"),
  45961. weight: math.unit(225, "lb"),
  45962. name: "Front",
  45963. image: {
  45964. source: "./media/characters/brooke/front.svg",
  45965. extra: 1050/1010,
  45966. bottom: 66/1116
  45967. }
  45968. },
  45969. back: {
  45970. height: math.unit(6, "feet"),
  45971. weight: math.unit(225, "lb"),
  45972. name: "Back",
  45973. image: {
  45974. source: "./media/characters/brooke/back.svg",
  45975. extra: 1053/1013,
  45976. bottom: 41/1094
  45977. }
  45978. },
  45979. dressed: {
  45980. height: math.unit(6, "feet"),
  45981. weight: math.unit(225, "lb"),
  45982. name: "Dressed",
  45983. image: {
  45984. source: "./media/characters/brooke/dressed.svg",
  45985. extra: 1050/1010,
  45986. bottom: 66/1116
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Canon Height",
  45993. height: math.unit(500, "miles"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(6 + 2/12, "feet"),
  46003. weight: math.unit(210, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/wubs/front.svg",
  46007. extra: 1345/1325,
  46008. bottom: 70/1415
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(6 + 2/12, "feet"),
  46013. weight: math.unit(210, "lb"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/wubs/back.svg",
  46017. extra: 1296/1275,
  46018. bottom: 58/1354
  46019. }
  46020. },
  46021. },
  46022. [
  46023. {
  46024. name: "Normal",
  46025. height: math.unit(6 + 2/12, "feet"),
  46026. default: true
  46027. },
  46028. {
  46029. name: "Macro",
  46030. height: math.unit(1000, "feet")
  46031. },
  46032. {
  46033. name: "Megamacro",
  46034. height: math.unit(1, "mile")
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46040. {
  46041. front: {
  46042. height: math.unit(4, "feet"),
  46043. weight: math.unit(120, "lb"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/blue/front.svg",
  46047. extra: 1636/1525,
  46048. bottom: 43/1679
  46049. }
  46050. },
  46051. back: {
  46052. height: math.unit(4, "feet"),
  46053. weight: math.unit(120, "lb"),
  46054. name: "Back",
  46055. image: {
  46056. source: "./media/characters/blue/back.svg",
  46057. extra: 1660/1560,
  46058. bottom: 57/1717
  46059. }
  46060. },
  46061. paws: {
  46062. height: math.unit(0.826, "feet"),
  46063. name: "Paws",
  46064. image: {
  46065. source: "./media/characters/blue/paws.svg"
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Micro",
  46072. height: math.unit(3, "inches")
  46073. },
  46074. {
  46075. name: "Normal",
  46076. height: math.unit(4, "feet"),
  46077. default: true
  46078. },
  46079. {
  46080. name: "Femenine Form",
  46081. height: math.unit(14, "feet")
  46082. },
  46083. {
  46084. name: "Werebat Form",
  46085. height: math.unit(18, "feet")
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46091. {
  46092. female: {
  46093. height: math.unit(7 + 4/12, "feet"),
  46094. weight: math.unit(243, "lb"),
  46095. name: "Female",
  46096. image: {
  46097. source: "./media/characters/kaya/female.svg",
  46098. extra: 975/898,
  46099. bottom: 34/1009
  46100. }
  46101. },
  46102. herm: {
  46103. height: math.unit(7 + 4/12, "feet"),
  46104. weight: math.unit(243, "lb"),
  46105. name: "Herm",
  46106. image: {
  46107. source: "./media/characters/kaya/herm.svg",
  46108. extra: 975/898,
  46109. bottom: 34/1009
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(7 + 4/12, "feet"),
  46117. default: true
  46118. },
  46119. ]
  46120. ))
  46121. characterMakers.push(() => makeCharacter(
  46122. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46123. {
  46124. female: {
  46125. height: math.unit(9 + 4/12, "feet"),
  46126. weight: math.unit(398, "lb"),
  46127. name: "Female",
  46128. image: {
  46129. source: "./media/characters/kassandra/female.svg",
  46130. extra: 908/839,
  46131. bottom: 61/969
  46132. }
  46133. },
  46134. intersex: {
  46135. height: math.unit(9 + 4/12, "feet"),
  46136. weight: math.unit(398, "lb"),
  46137. name: "Intersex",
  46138. image: {
  46139. source: "./media/characters/kassandra/intersex.svg",
  46140. extra: 908/839,
  46141. bottom: 61/969
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Normal",
  46148. height: math.unit(9 + 4/12, "feet"),
  46149. default: true
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(3, "meters"),
  46158. name: "Front",
  46159. image: {
  46160. source: "./media/characters/amy/front.svg",
  46161. extra: 1380/1343,
  46162. bottom: 70/1450
  46163. }
  46164. },
  46165. back: {
  46166. height: math.unit(3, "meters"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/amy/back.svg",
  46170. extra: 1380/1347,
  46171. bottom: 66/1446
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(3, "meters"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46185. {
  46186. side: {
  46187. height: math.unit(47, "cm"),
  46188. weight: math.unit(10.8, "kg"),
  46189. name: "Side",
  46190. image: {
  46191. source: "./media/characters/alphaschakal/side.svg",
  46192. extra: 1058/568,
  46193. bottom: 62/1120
  46194. }
  46195. },
  46196. back: {
  46197. height: math.unit(78, "cm"),
  46198. weight: math.unit(10.8, "kg"),
  46199. name: "Back",
  46200. image: {
  46201. source: "./media/characters/alphaschakal/back.svg",
  46202. extra: 1102/942,
  46203. bottom: 185/1287
  46204. }
  46205. },
  46206. head: {
  46207. height: math.unit(28, "cm"),
  46208. name: "Head",
  46209. image: {
  46210. source: "./media/characters/alphaschakal/head.svg",
  46211. extra: 696/508,
  46212. bottom: 0/696
  46213. }
  46214. },
  46215. paw: {
  46216. height: math.unit(16, "cm"),
  46217. name: "Paw",
  46218. image: {
  46219. source: "./media/characters/alphaschakal/paw.svg"
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(47, "cm"),
  46227. default: true
  46228. },
  46229. {
  46230. name: "Macro",
  46231. height: math.unit(340, "cm")
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46237. {
  46238. front: {
  46239. height: math.unit(36, "earths"),
  46240. name: "Front",
  46241. image: {
  46242. source: "./media/characters/ecobyss/front.svg",
  46243. extra: 1282/1215,
  46244. bottom: 11/1293
  46245. }
  46246. },
  46247. back: {
  46248. height: math.unit(36, "earths"),
  46249. name: "Back",
  46250. image: {
  46251. source: "./media/characters/ecobyss/back.svg",
  46252. extra: 1291/1222,
  46253. bottom: 8/1299
  46254. }
  46255. },
  46256. },
  46257. [
  46258. {
  46259. name: "Normal",
  46260. height: math.unit(36, "earths"),
  46261. default: true
  46262. },
  46263. ]
  46264. ))
  46265. characterMakers.push(() => makeCharacter(
  46266. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46267. {
  46268. front: {
  46269. height: math.unit(12, "feet"),
  46270. name: "Front",
  46271. image: {
  46272. source: "./media/characters/vasuk/front.svg",
  46273. extra: 1326/1207,
  46274. bottom: 64/1390
  46275. }
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Normal",
  46281. height: math.unit(12, "feet"),
  46282. default: true
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46288. {
  46289. side: {
  46290. height: math.unit(100, "feet"),
  46291. name: "Side",
  46292. image: {
  46293. source: "./media/characters/linneaus/side.svg",
  46294. extra: 987/807,
  46295. bottom: 47/1034
  46296. }
  46297. },
  46298. },
  46299. [
  46300. {
  46301. name: "Macro",
  46302. height: math.unit(100, "feet"),
  46303. default: true
  46304. },
  46305. ]
  46306. ))
  46307. characterMakers.push(() => makeCharacter(
  46308. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46309. {
  46310. front: {
  46311. height: math.unit(8, "feet"),
  46312. weight: math.unit(1200, "lb"),
  46313. name: "Front",
  46314. image: {
  46315. source: "./media/characters/nyterious-daligdig/front.svg",
  46316. extra: 1284/1094,
  46317. bottom: 84/1368
  46318. }
  46319. },
  46320. back: {
  46321. height: math.unit(8, "feet"),
  46322. weight: math.unit(1200, "lb"),
  46323. name: "Back",
  46324. image: {
  46325. source: "./media/characters/nyterious-daligdig/back.svg",
  46326. extra: 1301/1121,
  46327. bottom: 129/1430
  46328. }
  46329. },
  46330. mouth: {
  46331. height: math.unit(1.464, "feet"),
  46332. name: "Mouth",
  46333. image: {
  46334. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Small",
  46341. height: math.unit(8, "feet"),
  46342. default: true
  46343. },
  46344. {
  46345. name: "Normal",
  46346. height: math.unit(15, "feet")
  46347. },
  46348. {
  46349. name: "Macro",
  46350. height: math.unit(90, "feet")
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(7 + 4/12, "feet"),
  46359. weight: math.unit(252, "lb"),
  46360. name: "Front",
  46361. image: {
  46362. source: "./media/characters/bandel/front.svg",
  46363. extra: 1946/1775,
  46364. bottom: 26/1972
  46365. }
  46366. },
  46367. back: {
  46368. height: math.unit(7 + 4/12, "feet"),
  46369. weight: math.unit(252, "lb"),
  46370. name: "Back",
  46371. image: {
  46372. source: "./media/characters/bandel/back.svg",
  46373. extra: 1940/1770,
  46374. bottom: 25/1965
  46375. }
  46376. },
  46377. maw: {
  46378. height: math.unit(2.15, "feet"),
  46379. name: "Maw",
  46380. image: {
  46381. source: "./media/characters/bandel/maw.svg"
  46382. }
  46383. },
  46384. stomach: {
  46385. height: math.unit(1.95, "feet"),
  46386. name: "Stomach",
  46387. image: {
  46388. source: "./media/characters/bandel/stomach.svg"
  46389. }
  46390. },
  46391. },
  46392. [
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(7 + 4/12, "feet"),
  46396. default: true
  46397. },
  46398. ]
  46399. ))
  46400. characterMakers.push(() => makeCharacter(
  46401. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46402. {
  46403. front: {
  46404. height: math.unit(10 + 5/12, "feet"),
  46405. weight: math.unit(773.5, "kg"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/zed/front.svg",
  46409. extra: 987/941,
  46410. bottom: 52/1039
  46411. }
  46412. },
  46413. },
  46414. [
  46415. {
  46416. name: "Short",
  46417. height: math.unit(5 + 4/12, "feet")
  46418. },
  46419. {
  46420. name: "Average",
  46421. height: math.unit(10 + 5/12, "feet"),
  46422. default: true
  46423. },
  46424. {
  46425. name: "Mini-Macro",
  46426. height: math.unit(24 + 9/12, "feet")
  46427. },
  46428. {
  46429. name: "Macro",
  46430. height: math.unit(249, "feet")
  46431. },
  46432. {
  46433. name: "Mega-Macro",
  46434. height: math.unit(12490, "feet")
  46435. },
  46436. {
  46437. name: "Giga-Macro",
  46438. height: math.unit(24.9, "miles")
  46439. },
  46440. {
  46441. name: "Tera-Macro",
  46442. height: math.unit(24900, "miles")
  46443. },
  46444. {
  46445. name: "Cosmic Scale",
  46446. height: math.unit(38.9, "lightyears")
  46447. },
  46448. {
  46449. name: "Universal Scale",
  46450. height: math.unit(138e12, "lightyears")
  46451. },
  46452. ]
  46453. ))
  46454. characterMakers.push(() => makeCharacter(
  46455. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46456. {
  46457. front: {
  46458. height: math.unit(1561, "inches"),
  46459. name: "Front",
  46460. image: {
  46461. source: "./media/characters/ivan/front.svg",
  46462. extra: 1126/1071,
  46463. bottom: 26/1152
  46464. }
  46465. },
  46466. back: {
  46467. height: math.unit(1561, "inches"),
  46468. name: "Back",
  46469. image: {
  46470. source: "./media/characters/ivan/back.svg",
  46471. extra: 1134/1079,
  46472. bottom: 30/1164
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(1561, "inches"),
  46480. default: true
  46481. },
  46482. ]
  46483. ))
  46484. characterMakers.push(() => makeCharacter(
  46485. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46486. {
  46487. front: {
  46488. height: math.unit(5 + 7/12, "feet"),
  46489. weight: math.unit(150, "lb"),
  46490. name: "Front",
  46491. image: {
  46492. source: "./media/characters/robin-arctic-hare/front.svg",
  46493. extra: 1148/974,
  46494. bottom: 20/1168
  46495. }
  46496. },
  46497. },
  46498. [
  46499. {
  46500. name: "Normal",
  46501. height: math.unit(5 + 7/12, "feet"),
  46502. default: true
  46503. },
  46504. ]
  46505. ))
  46506. characterMakers.push(() => makeCharacter(
  46507. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46508. {
  46509. side: {
  46510. height: math.unit(5, "feet"),
  46511. name: "Side",
  46512. image: {
  46513. source: "./media/characters/birch/side.svg",
  46514. extra: 985/796,
  46515. bottom: 111/1096
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(5, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46529. {
  46530. front: {
  46531. height: math.unit(4, "feet"),
  46532. name: "Front",
  46533. image: {
  46534. source: "./media/characters/rasp/front.svg",
  46535. extra: 561/478,
  46536. bottom: 74/635
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(4, "feet"),
  46544. default: true
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46550. {
  46551. front: {
  46552. height: math.unit(4 + 6/12, "feet"),
  46553. name: "Front",
  46554. image: {
  46555. source: "./media/characters/agatha/front.svg",
  46556. extra: 947/933,
  46557. bottom: 42/989
  46558. }
  46559. },
  46560. back: {
  46561. height: math.unit(4 + 6/12, "feet"),
  46562. name: "Back",
  46563. image: {
  46564. source: "./media/characters/agatha/back.svg",
  46565. extra: 935/922,
  46566. bottom: 48/983
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(4 + 6 /12, "feet"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Max Size",
  46578. height: math.unit(500, "feet")
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46584. {
  46585. side: {
  46586. height: math.unit(30, "feet"),
  46587. name: "Side",
  46588. image: {
  46589. source: "./media/characters/roggy/side.svg",
  46590. extra: 909/643,
  46591. bottom: 63/972
  46592. }
  46593. },
  46594. lounging: {
  46595. height: math.unit(20, "feet"),
  46596. name: "Lounging",
  46597. image: {
  46598. source: "./media/characters/roggy/lounging.svg",
  46599. extra: 643/479,
  46600. bottom: 145/788
  46601. }
  46602. },
  46603. handpaw: {
  46604. height: math.unit(13.1, "feet"),
  46605. name: "Handpaw",
  46606. image: {
  46607. source: "./media/characters/roggy/handpaw.svg"
  46608. }
  46609. },
  46610. footpaw: {
  46611. height: math.unit(15.8, "feet"),
  46612. name: "Footpaw",
  46613. image: {
  46614. source: "./media/characters/roggy/footpaw.svg"
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Menacing",
  46621. height: math.unit(30, "feet"),
  46622. default: true
  46623. },
  46624. ]
  46625. ))
  46626. characterMakers.push(() => makeCharacter(
  46627. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46628. {
  46629. front: {
  46630. height: math.unit(5 + 7/12, "feet"),
  46631. weight: math.unit(135, "lb"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/naomi/front.svg",
  46635. extra: 1209/1154,
  46636. bottom: 129/1338
  46637. }
  46638. },
  46639. back: {
  46640. height: math.unit(5 + 7/12, "feet"),
  46641. weight: math.unit(135, "lb"),
  46642. name: "Back",
  46643. image: {
  46644. source: "./media/characters/naomi/back.svg",
  46645. extra: 1252/1190,
  46646. bottom: 23/1275
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Normal",
  46653. height: math.unit(5 + 7 /12, "feet"),
  46654. default: true
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46660. {
  46661. side: {
  46662. height: math.unit(35, "meters"),
  46663. name: "Side",
  46664. image: {
  46665. source: "./media/characters/kimpi/side.svg",
  46666. extra: 419/382,
  46667. bottom: 63/482
  46668. }
  46669. },
  46670. hand: {
  46671. height: math.unit(8.96, "meters"),
  46672. name: "Hand",
  46673. image: {
  46674. source: "./media/characters/kimpi/hand.svg"
  46675. }
  46676. },
  46677. },
  46678. [
  46679. {
  46680. name: "Normal",
  46681. height: math.unit(35, "meters"),
  46682. default: true
  46683. },
  46684. ]
  46685. ))
  46686. //characters
  46687. function makeCharacters() {
  46688. const results = [];
  46689. characterMakers.forEach(character => {
  46690. results.push(character());
  46691. });
  46692. return results;
  46693. }