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

50480 строки
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. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. "cinderace": {
  1926. name: "Cinderace",
  1927. parents: ["pokemon", "rabbit"]
  1928. },
  1929. "caudin": {
  1930. name: "Caudin",
  1931. parents: ["dragon"]
  1932. },
  1933. }
  1934. //species
  1935. function getSpeciesInfo(speciesList) {
  1936. let result = new Set();
  1937. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1938. result.add(entry)
  1939. });
  1940. return Array.from(result);
  1941. };
  1942. function getSpeciesInfoHelper(species) {
  1943. if (!speciesData[species]) {
  1944. console.warn(species + " doesn't exist");
  1945. return [];
  1946. }
  1947. if (speciesData[species].parents) {
  1948. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1949. } else {
  1950. return [species];
  1951. }
  1952. }
  1953. characterMakers.push(() => makeCharacter(
  1954. {
  1955. name: "Fen",
  1956. species: ["crux"],
  1957. description: {
  1958. title: "Bio",
  1959. text: "Very furry. Sheds on everything."
  1960. },
  1961. tags: [
  1962. "anthro",
  1963. "goo"
  1964. ]
  1965. },
  1966. {
  1967. front: {
  1968. height: math.unit(12, "feet"),
  1969. weight: math.unit(2400, "lb"),
  1970. name: "Front",
  1971. image: {
  1972. source: "./media/characters/fen/front.svg",
  1973. extra: 1804/1562,
  1974. bottom: 205/2009
  1975. }
  1976. },
  1977. diving: {
  1978. height: math.unit(4.9, "meters"),
  1979. weight: math.unit(2400, "lb"),
  1980. name: "Diving",
  1981. image: {
  1982. source: "./media/characters/fen/diving.svg"
  1983. }
  1984. },
  1985. goo: {
  1986. height: math.unit(12, "feet"),
  1987. weight: math.unit(3600, "lb"),
  1988. volume: math.unit(1000, "liters"),
  1989. capacity: math.unit(6, "people"),
  1990. name: "Goo",
  1991. image: {
  1992. source: "./media/characters/fen/goo.svg",
  1993. extra: 1307/1071,
  1994. bottom: 134/1441
  1995. }
  1996. },
  1997. maw: {
  1998. height: math.unit(5.03, "feet"),
  1999. name: "Maw",
  2000. image: {
  2001. source: "./media/characters/fen/maw.svg"
  2002. }
  2003. },
  2004. gooCeiling: {
  2005. height: math.unit(6.6, "feet"),
  2006. weight: math.unit(3000, "lb"),
  2007. volume: math.unit(1000, "liters"),
  2008. capacity: math.unit(6, "people"),
  2009. name: "Goo (Ceiling)",
  2010. image: {
  2011. source: "./media/characters/fen/goo-ceiling.svg"
  2012. }
  2013. },
  2014. back: {
  2015. height: math.unit(12, "feet"),
  2016. weight: math.unit(2400, "lb"),
  2017. name: "Back",
  2018. image: {
  2019. source: "./media/characters/fen/back.svg",
  2020. },
  2021. info: {
  2022. description: {
  2023. mode: "append",
  2024. text: "\n\nHe is not currently looking at you."
  2025. }
  2026. }
  2027. },
  2028. full: {
  2029. height: math.unit(1.6, "meter"),
  2030. weight: math.unit(3200, "lb"),
  2031. name: "Full",
  2032. image: {
  2033. source: "./media/characters/fen/full.svg",
  2034. extra: 1133/859,
  2035. bottom: 145/1278
  2036. },
  2037. info: {
  2038. description: {
  2039. mode: "append",
  2040. text: "\n\nMunch."
  2041. }
  2042. }
  2043. },
  2044. gooLounging: {
  2045. height: math.unit(4.53, "feet"),
  2046. weight: math.unit(3000, "lb"),
  2047. capacity: math.unit(6, "people"),
  2048. name: "Goo (Lounging)",
  2049. image: {
  2050. source: "./media/characters/fen/goo-lounging.svg",
  2051. bottom: 116 / 613
  2052. }
  2053. },
  2054. lounging: {
  2055. height: math.unit(10.52, "feet"),
  2056. weight: math.unit(2400, "lb"),
  2057. name: "Lounging",
  2058. image: {
  2059. source: "./media/characters/fen/lounging.svg"
  2060. }
  2061. },
  2062. },
  2063. [
  2064. {
  2065. name: "Small",
  2066. height: math.unit(2.2428, "meter")
  2067. },
  2068. {
  2069. name: "Normal",
  2070. height: math.unit(12, "feet"),
  2071. default: true,
  2072. },
  2073. {
  2074. name: "Big",
  2075. height: math.unit(20, "feet")
  2076. },
  2077. {
  2078. name: "Minimacro",
  2079. height: math.unit(40, "feet"),
  2080. info: {
  2081. description: {
  2082. mode: "append",
  2083. text: "\n\nTOO DAMN BIG"
  2084. }
  2085. }
  2086. },
  2087. {
  2088. name: "Macro",
  2089. height: math.unit(100, "feet"),
  2090. info: {
  2091. description: {
  2092. mode: "append",
  2093. text: "\n\nTOO DAMN BIG"
  2094. }
  2095. }
  2096. },
  2097. {
  2098. name: "Megamacro",
  2099. height: math.unit(2, "miles")
  2100. },
  2101. {
  2102. name: "Gigamacro",
  2103. height: math.unit(10, "earths")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(183, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/front.svg",
  2116. bottom: 0.01,
  2117. extra: 2154 / 2081
  2118. }
  2119. },
  2120. frontAlt: {
  2121. height: math.unit(183, "cm"),
  2122. weight: math.unit(80, "kg"),
  2123. name: "Front (alt)",
  2124. image: {
  2125. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2126. }
  2127. },
  2128. back: {
  2129. height: math.unit(183, "cm"),
  2130. weight: math.unit(80, "kg"),
  2131. name: "Back",
  2132. image: {
  2133. source: "./media/characters/sofia-fluttertail/back.svg"
  2134. }
  2135. },
  2136. kneeling: {
  2137. height: math.unit(125, "cm"),
  2138. weight: math.unit(80, "kg"),
  2139. name: "Kneeling",
  2140. image: {
  2141. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2142. extra: 1033 / 977,
  2143. bottom: 23.7 / 1057
  2144. }
  2145. },
  2146. maw: {
  2147. height: math.unit(183 / 5, "cm"),
  2148. name: "Maw",
  2149. image: {
  2150. source: "./media/characters/sofia-fluttertail/maw.svg"
  2151. }
  2152. },
  2153. mawcloseup: {
  2154. height: math.unit(183 / 5 * 0.41, "cm"),
  2155. name: "Maw (Closeup)",
  2156. image: {
  2157. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2158. }
  2159. },
  2160. paws: {
  2161. height: math.unit(1.17, "feet"),
  2162. name: "Paws",
  2163. image: {
  2164. source: "./media/characters/sofia-fluttertail/paws.svg",
  2165. extra: 851 / 851,
  2166. bottom: 17 / 868
  2167. }
  2168. },
  2169. },
  2170. [
  2171. {
  2172. name: "Normal",
  2173. height: math.unit(1.83, "meter")
  2174. },
  2175. {
  2176. name: "Size Thief",
  2177. height: math.unit(18, "feet")
  2178. },
  2179. {
  2180. name: "50 Foot Collie",
  2181. height: math.unit(50, "feet")
  2182. },
  2183. {
  2184. name: "Macro",
  2185. height: math.unit(96, "feet"),
  2186. default: true
  2187. },
  2188. {
  2189. name: "Megamerger",
  2190. height: math.unit(650, "feet")
  2191. },
  2192. ]
  2193. ))
  2194. characterMakers.push(() => makeCharacter(
  2195. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2196. {
  2197. front: {
  2198. height: math.unit(7, "feet"),
  2199. weight: math.unit(100, "kg"),
  2200. name: "Front",
  2201. image: {
  2202. source: "./media/characters/march/front.svg",
  2203. extra: 1992/1851,
  2204. bottom: 39/2031
  2205. }
  2206. },
  2207. foot: {
  2208. height: math.unit(0.9, "feet"),
  2209. name: "Foot",
  2210. image: {
  2211. source: "./media/characters/march/foot.svg"
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(7.9, "feet")
  2219. },
  2220. {
  2221. name: "Macro",
  2222. height: math.unit(220, "meters")
  2223. },
  2224. {
  2225. name: "Megamacro",
  2226. height: math.unit(2.98, "km"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Gigamacro",
  2231. height: math.unit(15963, "km")
  2232. },
  2233. {
  2234. name: "Teramacro",
  2235. height: math.unit(2980000000, "km")
  2236. },
  2237. {
  2238. name: "Examacro",
  2239. height: math.unit(250, "parsecs")
  2240. },
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(6, "feet"),
  2248. weight: math.unit(60, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/noir/front.svg",
  2252. extra: 1,
  2253. bottom: 0.032
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(6.6, "feet")
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(500, "feet")
  2265. },
  2266. {
  2267. name: "Megamacro",
  2268. height: math.unit(2.5, "km"),
  2269. default: true
  2270. },
  2271. {
  2272. name: "Gigamacro",
  2273. height: math.unit(22500, "km")
  2274. },
  2275. {
  2276. name: "Teramacro",
  2277. height: math.unit(2500000000, "km")
  2278. },
  2279. {
  2280. name: "Examacro",
  2281. height: math.unit(200, "parsecs")
  2282. },
  2283. ]
  2284. ))
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(100, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/okuri/front.svg",
  2294. extra: 739/665,
  2295. bottom: 39/778
  2296. }
  2297. },
  2298. back: {
  2299. height: math.unit(7, "feet"),
  2300. weight: math.unit(100, "kg"),
  2301. name: "Back",
  2302. image: {
  2303. source: "./media/characters/okuri/back.svg",
  2304. extra: 734/653,
  2305. bottom: 13/747
  2306. }
  2307. },
  2308. sitting: {
  2309. height: math.unit(2.95, "feet"),
  2310. weight: math.unit(100, "kg"),
  2311. name: "Sitting",
  2312. image: {
  2313. source: "./media/characters/okuri/sitting.svg",
  2314. extra: 370/318,
  2315. bottom: 99/469
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Smallest",
  2322. height: math.unit(5 + 2/12, "feet")
  2323. },
  2324. {
  2325. name: "Smaller",
  2326. height: math.unit(300, "feet")
  2327. },
  2328. {
  2329. name: "Small",
  2330. height: math.unit(1000, "feet")
  2331. },
  2332. {
  2333. name: "Macro",
  2334. height: math.unit(1, "mile")
  2335. },
  2336. {
  2337. name: "Mega Macro (Small)",
  2338. height: math.unit(20, "km")
  2339. },
  2340. {
  2341. name: "Mega Macro (Large)",
  2342. height: math.unit(600, "km")
  2343. },
  2344. {
  2345. name: "Giga Macro",
  2346. height: math.unit(10000, "km")
  2347. },
  2348. {
  2349. name: "Normal",
  2350. height: math.unit(577560, "km"),
  2351. default: true
  2352. },
  2353. {
  2354. name: "Large",
  2355. height: math.unit(4, "galaxies")
  2356. },
  2357. {
  2358. name: "Largest",
  2359. height: math.unit(15, "multiverses")
  2360. },
  2361. ]
  2362. ))
  2363. characterMakers.push(() => makeCharacter(
  2364. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2365. {
  2366. front: {
  2367. height: math.unit(7, "feet"),
  2368. weight: math.unit(100, "kg"),
  2369. name: "Front",
  2370. image: {
  2371. source: "./media/characters/manny/front.svg",
  2372. extra: 1,
  2373. bottom: 0.06
  2374. }
  2375. },
  2376. back: {
  2377. height: math.unit(7, "feet"),
  2378. weight: math.unit(100, "kg"),
  2379. name: "Back",
  2380. image: {
  2381. source: "./media/characters/manny/back.svg",
  2382. extra: 1,
  2383. bottom: 0.014
  2384. }
  2385. },
  2386. },
  2387. [
  2388. {
  2389. name: "Normal",
  2390. height: math.unit(7, "feet"),
  2391. },
  2392. {
  2393. name: "Macro",
  2394. height: math.unit(78, "feet"),
  2395. default: true
  2396. },
  2397. {
  2398. name: "Macro+",
  2399. height: math.unit(300, "meters")
  2400. },
  2401. {
  2402. name: "Macro++",
  2403. height: math.unit(2400, "meters")
  2404. },
  2405. {
  2406. name: "Megamacro",
  2407. height: math.unit(5167, "meters")
  2408. },
  2409. {
  2410. name: "Gigamacro",
  2411. height: math.unit(41769, "miles")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/adake/front-1.svg"
  2424. }
  2425. },
  2426. frontAlt: {
  2427. height: math.unit(7, "feet"),
  2428. weight: math.unit(100, "kg"),
  2429. name: "Front (Alt)",
  2430. image: {
  2431. source: "./media/characters/adake/front-2.svg",
  2432. extra: 1,
  2433. bottom: 0.01
  2434. }
  2435. },
  2436. back: {
  2437. height: math.unit(7, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Back",
  2440. image: {
  2441. source: "./media/characters/adake/back.svg",
  2442. }
  2443. },
  2444. kneel: {
  2445. height: math.unit(5.385, "feet"),
  2446. weight: math.unit(100, "kg"),
  2447. name: "Kneeling",
  2448. image: {
  2449. source: "./media/characters/adake/kneel.svg",
  2450. bottom: 0.052
  2451. }
  2452. },
  2453. },
  2454. [
  2455. {
  2456. name: "Normal",
  2457. height: math.unit(7, "feet"),
  2458. },
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(78, "feet"),
  2462. default: true
  2463. },
  2464. {
  2465. name: "Macro+",
  2466. height: math.unit(300, "meters")
  2467. },
  2468. {
  2469. name: "Macro++",
  2470. height: math.unit(2400, "meters")
  2471. },
  2472. {
  2473. name: "Megamacro",
  2474. height: math.unit(5167, "meters")
  2475. },
  2476. {
  2477. name: "Gigamacro",
  2478. height: math.unit(41769, "miles")
  2479. },
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2484. {
  2485. front: {
  2486. height: math.unit(1.65, "meters"),
  2487. weight: math.unit(50, "kg"),
  2488. name: "Front",
  2489. image: {
  2490. source: "./media/characters/elijah/front.svg",
  2491. extra: 858 / 830,
  2492. bottom: 95.5 / 953.8559
  2493. }
  2494. },
  2495. back: {
  2496. height: math.unit(1.65, "meters"),
  2497. weight: math.unit(50, "kg"),
  2498. name: "Back",
  2499. image: {
  2500. source: "./media/characters/elijah/back.svg",
  2501. extra: 895 / 850,
  2502. bottom: 5.3 / 897.956
  2503. }
  2504. },
  2505. frontNsfw: {
  2506. height: math.unit(1.65, "meters"),
  2507. weight: math.unit(50, "kg"),
  2508. name: "Front (NSFW)",
  2509. image: {
  2510. source: "./media/characters/elijah/front-nsfw.svg",
  2511. extra: 858 / 830,
  2512. bottom: 95.5 / 953.8559
  2513. }
  2514. },
  2515. backNsfw: {
  2516. height: math.unit(1.65, "meters"),
  2517. weight: math.unit(50, "kg"),
  2518. name: "Back (NSFW)",
  2519. image: {
  2520. source: "./media/characters/elijah/back-nsfw.svg",
  2521. extra: 895 / 850,
  2522. bottom: 5.3 / 897.956
  2523. }
  2524. },
  2525. dick: {
  2526. height: math.unit(1, "feet"),
  2527. name: "Dick",
  2528. image: {
  2529. source: "./media/characters/elijah/dick.svg"
  2530. }
  2531. },
  2532. beakOpen: {
  2533. height: math.unit(1.25, "feet"),
  2534. name: "Beak (Open)",
  2535. image: {
  2536. source: "./media/characters/elijah/beak-open.svg"
  2537. }
  2538. },
  2539. beakShut: {
  2540. height: math.unit(1.25, "feet"),
  2541. name: "Beak (Shut)",
  2542. image: {
  2543. source: "./media/characters/elijah/beak-shut.svg"
  2544. }
  2545. },
  2546. footFlexing: {
  2547. height: math.unit(1.61, "feet"),
  2548. name: "Foot (Flexing)",
  2549. image: {
  2550. source: "./media/characters/elijah/foot-flexing.svg"
  2551. }
  2552. },
  2553. footStepping: {
  2554. height: math.unit(1.44, "feet"),
  2555. name: "Foot (Stepping)",
  2556. image: {
  2557. source: "./media/characters/elijah/foot-stepping.svg"
  2558. }
  2559. },
  2560. plantigradeLeg: {
  2561. height: math.unit(2.34, "feet"),
  2562. name: "Plantigrade Leg",
  2563. image: {
  2564. source: "./media/characters/elijah/plantigrade-leg.svg"
  2565. }
  2566. },
  2567. plantigradeFootLeft: {
  2568. height: math.unit(0.9, "feet"),
  2569. name: "Plantigrade Foot (Left)",
  2570. image: {
  2571. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2572. }
  2573. },
  2574. plantigradeFootRight: {
  2575. height: math.unit(0.9, "feet"),
  2576. name: "Plantigrade Foot (Right)",
  2577. image: {
  2578. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2579. }
  2580. },
  2581. },
  2582. [
  2583. {
  2584. name: "Normal",
  2585. height: math.unit(1.65, "meters")
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(55, "meters"),
  2590. default: true
  2591. },
  2592. {
  2593. name: "Macro+",
  2594. height: math.unit(105, "meters")
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(7 + 2/12, "feet"),
  2603. weight: math.unit(320, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/rai/front.svg",
  2607. extra: 1802/1696,
  2608. bottom: 68/1870
  2609. }
  2610. },
  2611. frontDressed: {
  2612. height: math.unit(7 + 2/12, "feet"),
  2613. weight: math.unit(320, "kg"),
  2614. name: "Front (Dressed)",
  2615. image: {
  2616. source: "./media/characters/rai/front-dressed.svg",
  2617. extra: 1802/1696,
  2618. bottom: 68/1870
  2619. }
  2620. },
  2621. side: {
  2622. height: math.unit(7 + 2/12, "feet"),
  2623. weight: math.unit(320, "kg"),
  2624. name: "Side",
  2625. image: {
  2626. source: "./media/characters/rai/side.svg",
  2627. extra: 1789/1710,
  2628. bottom: 115/1904
  2629. }
  2630. },
  2631. back: {
  2632. height: math.unit(7 + 2/12, "feet"),
  2633. weight: math.unit(320, "kg"),
  2634. name: "Back",
  2635. image: {
  2636. source: "./media/characters/rai/back.svg",
  2637. extra: 1770/1707,
  2638. bottom: 28/1798
  2639. }
  2640. },
  2641. feral: {
  2642. height: math.unit(9.5, "feet"),
  2643. weight: math.unit(640, "kg"),
  2644. name: "Feral",
  2645. image: {
  2646. source: "./media/characters/rai/feral.svg",
  2647. extra: 945/553,
  2648. bottom: 176/1121
  2649. }
  2650. },
  2651. dragon: {
  2652. height: math.unit(23, "feet"),
  2653. weight: math.unit(50000, "lb"),
  2654. name: "Dragon",
  2655. image: {
  2656. source: "./media/characters/rai/dragon.svg",
  2657. extra: 2498 / 2030,
  2658. bottom: 85.2 / 2584
  2659. }
  2660. },
  2661. maw: {
  2662. height: math.unit(1.69, "feet"),
  2663. name: "Maw",
  2664. image: {
  2665. source: "./media/characters/rai/maw.svg"
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(7 + 2/12, "feet")
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(11, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(302, "feet"),
  2681. default: true
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2687. {
  2688. frontDressed: {
  2689. height: math.unit(216, "feet"),
  2690. weight: math.unit(7000000, "lb"),
  2691. name: "Front (Dressed)",
  2692. image: {
  2693. source: "./media/characters/jazzy/front-dressed.svg",
  2694. extra: 2738 / 2651,
  2695. bottom: 41.8 / 2786
  2696. }
  2697. },
  2698. backDressed: {
  2699. height: math.unit(216, "feet"),
  2700. weight: math.unit(7000000, "lb"),
  2701. name: "Back (Dressed)",
  2702. image: {
  2703. source: "./media/characters/jazzy/back-dressed.svg",
  2704. extra: 2775 / 2673,
  2705. bottom: 36.8 / 2817
  2706. }
  2707. },
  2708. front: {
  2709. height: math.unit(216, "feet"),
  2710. weight: math.unit(7000000, "lb"),
  2711. name: "Front",
  2712. image: {
  2713. source: "./media/characters/jazzy/front.svg",
  2714. extra: 2738 / 2651,
  2715. bottom: 41.8 / 2786
  2716. }
  2717. },
  2718. back: {
  2719. height: math.unit(216, "feet"),
  2720. weight: math.unit(7000000, "lb"),
  2721. name: "Back",
  2722. image: {
  2723. source: "./media/characters/jazzy/back.svg",
  2724. extra: 2775 / 2673,
  2725. bottom: 36.8 / 2817
  2726. }
  2727. },
  2728. maw: {
  2729. height: math.unit(20, "feet"),
  2730. name: "Maw",
  2731. image: {
  2732. source: "./media/characters/jazzy/maw.svg"
  2733. }
  2734. },
  2735. paws: {
  2736. height: math.unit(27.5, "feet"),
  2737. name: "Paws",
  2738. image: {
  2739. source: "./media/characters/jazzy/paws.svg"
  2740. }
  2741. },
  2742. eye: {
  2743. height: math.unit(4.4, "feet"),
  2744. name: "Eye",
  2745. image: {
  2746. source: "./media/characters/jazzy/eye.svg"
  2747. }
  2748. },
  2749. droneOffense: {
  2750. height: math.unit(9.5, "inches"),
  2751. name: "Drone (Offense)",
  2752. image: {
  2753. source: "./media/characters/jazzy/drone-offense.svg"
  2754. }
  2755. },
  2756. droneRecon: {
  2757. height: math.unit(9.5, "inches"),
  2758. name: "Drone (Recon)",
  2759. image: {
  2760. source: "./media/characters/jazzy/drone-recon.svg"
  2761. }
  2762. },
  2763. droneDefense: {
  2764. height: math.unit(9.5, "inches"),
  2765. name: "Drone (Defense)",
  2766. image: {
  2767. source: "./media/characters/jazzy/drone-defense.svg"
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(216, "feet"),
  2775. default: true
  2776. },
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2781. {
  2782. front: {
  2783. height: math.unit(9 + 6/12, "feet"),
  2784. weight: math.unit(700, "lb"),
  2785. name: "Front",
  2786. image: {
  2787. source: "./media/characters/flamm/front.svg",
  2788. extra: 1751/1632,
  2789. bottom: 46/1797
  2790. }
  2791. },
  2792. buff: {
  2793. height: math.unit(9 + 6/12, "feet"),
  2794. weight: math.unit(950, "lb"),
  2795. name: "Buff",
  2796. image: {
  2797. source: "./media/characters/flamm/buff.svg",
  2798. extra: 3018/2874,
  2799. bottom: 221/3239
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(9.5, "feet")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(200, "feet"),
  2811. default: true
  2812. },
  2813. ]
  2814. ))
  2815. characterMakers.push(() => makeCharacter(
  2816. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2817. {
  2818. front: {
  2819. height: math.unit(5 + 3/12, "feet"),
  2820. weight: math.unit(60, "kg"),
  2821. name: "Front",
  2822. image: {
  2823. source: "./media/characters/zephiro/front.svg",
  2824. extra: 2309 / 2162,
  2825. bottom: 0.069
  2826. }
  2827. },
  2828. side: {
  2829. height: math.unit(5 + 3/12, "feet"),
  2830. weight: math.unit(60, "kg"),
  2831. name: "Side",
  2832. image: {
  2833. source: "./media/characters/zephiro/side.svg",
  2834. extra: 2403 / 2279,
  2835. bottom: 0.015
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(5 + 3/12, "feet"),
  2840. weight: math.unit(60, "kg"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/zephiro/back.svg",
  2844. extra: 2373 / 2244,
  2845. bottom: 0.013
  2846. }
  2847. },
  2848. hand: {
  2849. height: math.unit(0.68, "feet"),
  2850. name: "Hand",
  2851. image: {
  2852. source: "./media/characters/zephiro/hand.svg"
  2853. }
  2854. },
  2855. paw: {
  2856. height: math.unit(1, "feet"),
  2857. name: "Paw",
  2858. image: {
  2859. source: "./media/characters/zephiro/paw.svg"
  2860. }
  2861. },
  2862. beans: {
  2863. height: math.unit(0.93, "feet"),
  2864. name: "Beans",
  2865. image: {
  2866. source: "./media/characters/zephiro/beans.svg"
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Micro",
  2873. height: math.unit(3, "inches")
  2874. },
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(5 + 3 / 12, "feet"),
  2878. default: true
  2879. },
  2880. {
  2881. name: "Macro",
  2882. height: math.unit(118, "feet")
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2888. {
  2889. front: {
  2890. height: math.unit(5, "feet"),
  2891. weight: math.unit(90, "kg"),
  2892. name: "Front",
  2893. image: {
  2894. source: "./media/characters/fory/front.svg",
  2895. extra: 2862 / 2674,
  2896. bottom: 180 / 3043.8
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(5, "feet"),
  2901. weight: math.unit(90, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/fory/back.svg",
  2905. extra: 2962 / 2791,
  2906. bottom: 106 / 3071.8
  2907. }
  2908. },
  2909. foot: {
  2910. height: math.unit(2.14, "feet"),
  2911. name: "Foot",
  2912. image: {
  2913. source: "./media/characters/fory/foot.svg"
  2914. }
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(5, "feet")
  2921. },
  2922. {
  2923. name: "Macro",
  2924. height: math.unit(50, "feet"),
  2925. default: true
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(10, "miles")
  2930. },
  2931. {
  2932. name: "Gigamacro",
  2933. height: math.unit(5, "earths")
  2934. },
  2935. ]
  2936. ))
  2937. characterMakers.push(() => makeCharacter(
  2938. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2939. {
  2940. front: {
  2941. height: math.unit(7, "feet"),
  2942. weight: math.unit(90, "kg"),
  2943. name: "Front",
  2944. image: {
  2945. source: "./media/characters/kurrikage/front.svg",
  2946. extra: 1845/1733,
  2947. bottom: 119/1964
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(7, "feet"),
  2952. weight: math.unit(90, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/kurrikage/back.svg",
  2956. extra: 1790/1677,
  2957. bottom: 61/1851
  2958. }
  2959. },
  2960. dressed: {
  2961. height: math.unit(7, "feet"),
  2962. weight: math.unit(90, "kg"),
  2963. name: "Dressed",
  2964. image: {
  2965. source: "./media/characters/kurrikage/dressed.svg",
  2966. extra: 1845/1733,
  2967. bottom: 119/1964
  2968. }
  2969. },
  2970. foot: {
  2971. height: math.unit(1.5, "feet"),
  2972. name: "Foot",
  2973. image: {
  2974. source: "./media/characters/kurrikage/foot.svg"
  2975. }
  2976. },
  2977. staff: {
  2978. height: math.unit(6.7, "feet"),
  2979. name: "Staff",
  2980. image: {
  2981. source: "./media/characters/kurrikage/staff.svg"
  2982. }
  2983. },
  2984. peek: {
  2985. height: math.unit(1.05, "feet"),
  2986. name: "Peeking",
  2987. image: {
  2988. source: "./media/characters/kurrikage/peek.svg",
  2989. bottom: 0.08
  2990. }
  2991. },
  2992. },
  2993. [
  2994. {
  2995. name: "Normal",
  2996. height: math.unit(12, "feet"),
  2997. default: true
  2998. },
  2999. {
  3000. name: "Big",
  3001. height: math.unit(20, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(500, "feet")
  3006. },
  3007. {
  3008. name: "Megamacro",
  3009. height: math.unit(20, "miles")
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Front",
  3020. image: {
  3021. source: "./media/characters/shingo/front.svg",
  3022. extra: 1900/1825,
  3023. bottom: 82/1982
  3024. }
  3025. },
  3026. side: {
  3027. height: math.unit(6, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Side",
  3030. image: {
  3031. source: "./media/characters/shingo/side.svg",
  3032. extra: 1930/1865,
  3033. bottom: 16/1946
  3034. }
  3035. },
  3036. back: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Back",
  3040. image: {
  3041. source: "./media/characters/shingo/back.svg",
  3042. extra: 1922/1852,
  3043. bottom: 16/1938
  3044. }
  3045. },
  3046. frontDressed: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(150, "lb"),
  3049. name: "Front-dressed",
  3050. image: {
  3051. source: "./media/characters/shingo/front-dressed.svg",
  3052. extra: 1900/1825,
  3053. bottom: 82/1982
  3054. }
  3055. },
  3056. paw: {
  3057. height: math.unit(1.29, "feet"),
  3058. name: "Paw",
  3059. image: {
  3060. source: "./media/characters/shingo/paw.svg"
  3061. }
  3062. },
  3063. hand: {
  3064. height: math.unit(1.07, "feet"),
  3065. name: "Hand",
  3066. image: {
  3067. source: "./media/characters/shingo/hand.svg"
  3068. }
  3069. },
  3070. frontAlt: {
  3071. height: math.unit(6, "feet"),
  3072. weight: math.unit(75, "kg"),
  3073. name: "Front (Alt)",
  3074. image: {
  3075. source: "./media/characters/shingo/front-alt.svg",
  3076. extra: 3511 / 3338,
  3077. bottom: 0.005
  3078. }
  3079. },
  3080. frontAlt2: {
  3081. height: math.unit(6, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Front (Alt 2)",
  3084. image: {
  3085. source: "./media/characters/shingo/front-alt-2.svg",
  3086. extra: 706/681,
  3087. bottom: 11/717
  3088. }
  3089. },
  3090. pawAlt: {
  3091. height: math.unit(1, "feet"),
  3092. name: "Paw (Alt)",
  3093. image: {
  3094. source: "./media/characters/shingo/paw-alt.svg"
  3095. }
  3096. },
  3097. },
  3098. [
  3099. {
  3100. name: "Micro",
  3101. height: math.unit(4, "inches")
  3102. },
  3103. {
  3104. name: "Normal",
  3105. height: math.unit(6, "feet"),
  3106. default: true
  3107. },
  3108. {
  3109. name: "Macro",
  3110. height: math.unit(108, "feet")
  3111. },
  3112. {
  3113. name: "Macro+",
  3114. height: math.unit(1500, "feet")
  3115. },
  3116. ]
  3117. ))
  3118. characterMakers.push(() => makeCharacter(
  3119. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3120. {
  3121. side: {
  3122. height: math.unit(6, "feet"),
  3123. weight: math.unit(75, "kg"),
  3124. name: "Side",
  3125. image: {
  3126. source: "./media/characters/aigey/side.svg"
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(200, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Megamacro",
  3138. height: math.unit(100, "miles")
  3139. },
  3140. ]
  3141. )
  3142. )
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3145. {
  3146. front: {
  3147. height: math.unit(5 + 5 / 12, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Front",
  3150. image: {
  3151. source: "./media/characters/natasha/front.svg",
  3152. extra: 859 / 824,
  3153. bottom: 23 / 879.6
  3154. }
  3155. },
  3156. frontNsfw: {
  3157. height: math.unit(5 + 5 / 12, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Front (NSFW)",
  3160. image: {
  3161. source: "./media/characters/natasha/front-nsfw.svg",
  3162. extra: 859 / 824,
  3163. bottom: 23 / 879.6
  3164. }
  3165. },
  3166. frontErect: {
  3167. height: math.unit(5 + 5 / 12, "feet"),
  3168. weight: math.unit(75, "kg"),
  3169. name: "Front (Erect)",
  3170. image: {
  3171. source: "./media/characters/natasha/front-erect.svg",
  3172. extra: 859 / 824,
  3173. bottom: 23 / 879.6
  3174. }
  3175. },
  3176. back: {
  3177. height: math.unit(5 + 5 / 12, "feet"),
  3178. weight: math.unit(75, "kg"),
  3179. name: "Back",
  3180. image: {
  3181. source: "./media/characters/natasha/back.svg",
  3182. extra: 887.9 / 852.6,
  3183. bottom: 9.7 / 896.4
  3184. }
  3185. },
  3186. backAlt: {
  3187. height: math.unit(5 + 5 / 12, "feet"),
  3188. weight: math.unit(75, "kg"),
  3189. name: "Back (Alt)",
  3190. image: {
  3191. source: "./media/characters/natasha/back-alt.svg",
  3192. extra: 1236.7 / 1192,
  3193. bottom: 22.3 / 1258.2
  3194. }
  3195. },
  3196. dick: {
  3197. height: math.unit(1.772, "feet"),
  3198. name: "Dick",
  3199. image: {
  3200. source: "./media/characters/natasha/dick.svg"
  3201. }
  3202. },
  3203. paw: {
  3204. height: math.unit(0.250, "meters"),
  3205. name: "Paw",
  3206. image: {
  3207. source: "./media/characters/natasha/paw.svg"
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Normal",
  3214. height: math.unit(5 + 5 / 12, "feet")
  3215. },
  3216. {
  3217. name: "Large",
  3218. height: math.unit(12, "feet")
  3219. },
  3220. {
  3221. name: "Macro",
  3222. height: math.unit(100, "feet"),
  3223. default: true
  3224. },
  3225. {
  3226. name: "Macro+",
  3227. height: math.unit(260, "feet")
  3228. },
  3229. {
  3230. name: "Macro++",
  3231. height: math.unit(1, "mile")
  3232. },
  3233. ]
  3234. ))
  3235. characterMakers.push(() => makeCharacter(
  3236. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3237. {
  3238. front: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Front",
  3242. image: {
  3243. source: "./media/characters/malik/front.svg"
  3244. }
  3245. },
  3246. side: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(75, "kg"),
  3249. name: "Side",
  3250. image: {
  3251. source: "./media/characters/malik/side.svg",
  3252. extra: 1.1539
  3253. }
  3254. },
  3255. back: {
  3256. height: math.unit(6, "feet"),
  3257. weight: math.unit(75, "kg"),
  3258. name: "Back",
  3259. image: {
  3260. source: "./media/characters/malik/back.svg"
  3261. }
  3262. },
  3263. },
  3264. [
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(156, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Macro+",
  3272. height: math.unit(1188, "feet")
  3273. },
  3274. ]
  3275. ))
  3276. characterMakers.push(() => makeCharacter(
  3277. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3278. {
  3279. front: {
  3280. height: math.unit(6, "feet"),
  3281. weight: math.unit(75, "kg"),
  3282. name: "Front",
  3283. image: {
  3284. source: "./media/characters/sefer/front.svg",
  3285. extra: 848 / 659,
  3286. bottom: 28.3 / 876.442
  3287. }
  3288. },
  3289. back: {
  3290. height: math.unit(6, "feet"),
  3291. weight: math.unit(75, "kg"),
  3292. name: "Back",
  3293. image: {
  3294. source: "./media/characters/sefer/back.svg",
  3295. extra: 864 / 695,
  3296. bottom: 10 / 871
  3297. }
  3298. },
  3299. frontDressed: {
  3300. height: math.unit(6, "feet"),
  3301. weight: math.unit(75, "kg"),
  3302. name: "Front (Dressed)",
  3303. image: {
  3304. source: "./media/characters/sefer/front-dressed.svg",
  3305. extra: 839 / 653,
  3306. bottom: 37.6 / 878
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Normal",
  3313. height: math.unit(6, "feet"),
  3314. default: true
  3315. },
  3316. ]
  3317. ))
  3318. characterMakers.push(() => makeCharacter(
  3319. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3320. {
  3321. body: {
  3322. height: math.unit(2.2428, "meter"),
  3323. weight: math.unit(124.738, "kg"),
  3324. name: "Body",
  3325. image: {
  3326. extra: 1225 / 1050,
  3327. source: "./media/characters/north/front.svg"
  3328. }
  3329. }
  3330. },
  3331. [
  3332. {
  3333. name: "Micro",
  3334. height: math.unit(4, "inches")
  3335. },
  3336. {
  3337. name: "Macro",
  3338. height: math.unit(63, "meters")
  3339. },
  3340. {
  3341. name: "Megamacro",
  3342. height: math.unit(101, "miles"),
  3343. default: true
  3344. }
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3349. {
  3350. angled: {
  3351. height: math.unit(4, "meter"),
  3352. weight: math.unit(150, "kg"),
  3353. name: "Angled",
  3354. image: {
  3355. source: "./media/characters/talan/angled-sfw.svg",
  3356. bottom: 29 / 3734
  3357. }
  3358. },
  3359. angledNsfw: {
  3360. height: math.unit(4, "meter"),
  3361. weight: math.unit(150, "kg"),
  3362. name: "Angled (NSFW)",
  3363. image: {
  3364. source: "./media/characters/talan/angled-nsfw.svg",
  3365. bottom: 29 / 3734
  3366. }
  3367. },
  3368. frontNsfw: {
  3369. height: math.unit(4, "meter"),
  3370. weight: math.unit(150, "kg"),
  3371. name: "Front (NSFW)",
  3372. image: {
  3373. source: "./media/characters/talan/front-nsfw.svg",
  3374. bottom: 29 / 3734
  3375. }
  3376. },
  3377. sideNsfw: {
  3378. height: math.unit(4, "meter"),
  3379. weight: math.unit(150, "kg"),
  3380. name: "Side (NSFW)",
  3381. image: {
  3382. source: "./media/characters/talan/side-nsfw.svg",
  3383. bottom: 29 / 3734
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(4, "meter"),
  3388. weight: math.unit(150, "kg"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/talan/back.svg"
  3392. }
  3393. },
  3394. dickBottom: {
  3395. height: math.unit(0.621, "meter"),
  3396. name: "Dick (Bottom)",
  3397. image: {
  3398. source: "./media/characters/talan/dick-bottom.svg"
  3399. }
  3400. },
  3401. dickTop: {
  3402. height: math.unit(0.621, "meter"),
  3403. name: "Dick (Top)",
  3404. image: {
  3405. source: "./media/characters/talan/dick-top.svg"
  3406. }
  3407. },
  3408. dickSide: {
  3409. height: math.unit(0.305, "meter"),
  3410. name: "Dick (Side)",
  3411. image: {
  3412. source: "./media/characters/talan/dick-side.svg"
  3413. }
  3414. },
  3415. dickFront: {
  3416. height: math.unit(0.305, "meter"),
  3417. name: "Dick (Front)",
  3418. image: {
  3419. source: "./media/characters/talan/dick-front.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(4, "meters")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(100, "meters")
  3431. },
  3432. {
  3433. name: "Megamacro",
  3434. height: math.unit(2, "miles"),
  3435. default: true
  3436. },
  3437. {
  3438. name: "Gigamacro",
  3439. height: math.unit(5000, "miles")
  3440. },
  3441. {
  3442. name: "Teramacro",
  3443. height: math.unit(100, "parsecs")
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(90, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/gael'rathus/front.svg"
  3456. }
  3457. },
  3458. frontAlt: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(90, "kg"),
  3461. name: "Front (alt)",
  3462. image: {
  3463. source: "./media/characters/gael'rathus/front-alt.svg"
  3464. }
  3465. },
  3466. frontAlt2: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(90, "kg"),
  3469. name: "Front (alt 2)",
  3470. image: {
  3471. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3472. }
  3473. }
  3474. },
  3475. [
  3476. {
  3477. name: "Normal",
  3478. height: math.unit(9, "feet"),
  3479. default: true
  3480. },
  3481. {
  3482. name: "Large",
  3483. height: math.unit(25, "feet")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(0.25, "miles")
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(10, "miles")
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3497. {
  3498. side: {
  3499. height: math.unit(2, "meter"),
  3500. weight: math.unit(140, "kg"),
  3501. name: "Side",
  3502. image: {
  3503. source: "./media/characters/sosha/side.svg",
  3504. bottom: 0.042
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(12, "feet"),
  3512. default: true
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3518. {
  3519. side: {
  3520. height: math.unit(5 + 5 / 12, "feet"),
  3521. weight: math.unit(170, "kg"),
  3522. name: "Side",
  3523. image: {
  3524. source: "./media/characters/runnola/side.svg",
  3525. extra: 741 / 448,
  3526. bottom: 0.05
  3527. }
  3528. },
  3529. },
  3530. [
  3531. {
  3532. name: "Small",
  3533. height: math.unit(3, "feet")
  3534. },
  3535. {
  3536. name: "Normal",
  3537. height: math.unit(5 + 5 / 12, "feet"),
  3538. default: true
  3539. },
  3540. {
  3541. name: "Big",
  3542. height: math.unit(10, "feet")
  3543. },
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(50, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/kurribird/front.svg",
  3555. bottom: 0.015
  3556. }
  3557. },
  3558. frontAlt: {
  3559. height: math.unit(1.5, "meter"),
  3560. weight: math.unit(50, "kg"),
  3561. name: "Front (Alt)",
  3562. image: {
  3563. source: "./media/characters/kurribird/front-alt.svg",
  3564. extra: 1.45
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(7, "feet")
  3572. },
  3573. {
  3574. name: "Big",
  3575. height: math.unit(12, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(1500, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(2, "miles")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(80, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/elbial/front.svg",
  3597. extra: 1643 / 1556,
  3598. bottom: 60.2 / 1696
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(80, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/elbial/side.svg",
  3607. extra: 1601/1528,
  3608. bottom: 97/1698
  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/elbial/back.svg",
  3617. extra: 1653/1569,
  3618. bottom: 20/1673
  3619. }
  3620. },
  3621. frontDressed: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(80, "kg"),
  3624. name: "Front (Dressed)",
  3625. image: {
  3626. source: "./media/characters/elbial/front-dressed.svg",
  3627. extra: 1638/1569,
  3628. bottom: 70/1708
  3629. }
  3630. },
  3631. genitals: {
  3632. height: math.unit(2 / 3.367, "meter"),
  3633. name: "Genitals",
  3634. image: {
  3635. source: "./media/characters/elbial/genitals.svg"
  3636. }
  3637. },
  3638. },
  3639. [
  3640. {
  3641. name: "Large",
  3642. height: math.unit(100, "feet")
  3643. },
  3644. {
  3645. name: "Macro",
  3646. height: math.unit(500, "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Megamacro",
  3651. height: math.unit(10, "miles")
  3652. },
  3653. {
  3654. name: "Gigamacro",
  3655. height: math.unit(25000, "miles")
  3656. },
  3657. {
  3658. name: "Full-Size",
  3659. height: math.unit(8000000, "gigaparsecs")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(60, "kg"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/noah/front.svg"
  3672. }
  3673. },
  3674. talons: {
  3675. height: math.unit(0.315, "meter"),
  3676. name: "Talons",
  3677. image: {
  3678. source: "./media/characters/noah/talons.svg"
  3679. }
  3680. }
  3681. },
  3682. [
  3683. {
  3684. name: "Large",
  3685. height: math.unit(50, "feet")
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(750, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Megamacro",
  3694. height: math.unit(50, "miles")
  3695. },
  3696. {
  3697. name: "Gigamacro",
  3698. height: math.unit(100000, "miles")
  3699. },
  3700. {
  3701. name: "Full-Size",
  3702. height: math.unit(3000000000, "miles")
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/natalya/front.svg"
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(80, "kg"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/natalya/back.svg"
  3723. }
  3724. }
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(150, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Megamacro",
  3734. height: math.unit(5, "miles")
  3735. },
  3736. {
  3737. name: "Full-Size",
  3738. height: math.unit(600, "kiloparsecs")
  3739. }
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3744. {
  3745. front: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(50, "kg"),
  3748. name: "Front",
  3749. image: {
  3750. source: "./media/characters/erestrebah/front.svg",
  3751. extra: 1262/1162,
  3752. bottom: 96/1358
  3753. }
  3754. },
  3755. back: {
  3756. height: math.unit(2, "meter"),
  3757. weight: math.unit(50, "kg"),
  3758. name: "Back",
  3759. image: {
  3760. source: "./media/characters/erestrebah/back.svg",
  3761. extra: 1257/1139,
  3762. bottom: 13/1270
  3763. }
  3764. },
  3765. wing: {
  3766. height: math.unit(2, "meter"),
  3767. weight: math.unit(50, "kg"),
  3768. name: "Wing",
  3769. image: {
  3770. source: "./media/characters/erestrebah/wing.svg",
  3771. extra: 1262/1162,
  3772. bottom: 96/1358
  3773. }
  3774. },
  3775. mouth: {
  3776. height: math.unit(0.39, "feet"),
  3777. name: "Mouth",
  3778. image: {
  3779. source: "./media/characters/erestrebah/mouth.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Normal",
  3786. height: math.unit(10, "feet")
  3787. },
  3788. {
  3789. name: "Large",
  3790. height: math.unit(50, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Macro",
  3795. height: math.unit(300, "feet")
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(750, "feet")
  3800. },
  3801. {
  3802. name: "Megamacro",
  3803. height: math.unit(3, "miles")
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(80, "kg"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/jennifer/front.svg",
  3816. bottom: 0.11,
  3817. extra: 1.16
  3818. }
  3819. },
  3820. frontAlt: {
  3821. height: math.unit(2, "meter"),
  3822. weight: math.unit(80, "kg"),
  3823. name: "Front (Alt)",
  3824. image: {
  3825. source: "./media/characters/jennifer/front-alt.svg"
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Canon Height",
  3832. height: math.unit(120, "feet"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Macro+",
  3837. height: math.unit(300, "feet")
  3838. },
  3839. {
  3840. name: "Megamacro",
  3841. height: math.unit(20000, "feet")
  3842. }
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(2, "meter"),
  3850. weight: math.unit(50, "kg"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/kalista/front.svg",
  3854. extra: 1314/1145,
  3855. bottom: 101/1415
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(50, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/kalista/back.svg",
  3864. extra: 1366 / 1156,
  3865. bottom: 33.9 / 1362.78
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Uncomfortably Small",
  3872. height: math.unit(10, "feet")
  3873. },
  3874. {
  3875. name: "Small",
  3876. height: math.unit(30, "feet")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(100, "feet"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Macro+",
  3885. height: math.unit(2000, "feet")
  3886. },
  3887. {
  3888. name: "True Form",
  3889. height: math.unit(8924, "miles")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(2, "meter"),
  3898. weight: math.unit(120, "kg"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/ggv/front.svg"
  3902. }
  3903. },
  3904. side: {
  3905. height: math.unit(2, "meter"),
  3906. weight: math.unit(120, "kg"),
  3907. name: "Side",
  3908. image: {
  3909. source: "./media/characters/ggv/side.svg"
  3910. }
  3911. }
  3912. },
  3913. [
  3914. {
  3915. name: "Extremely Puny",
  3916. height: math.unit(9 + 5 / 12, "feet")
  3917. },
  3918. {
  3919. name: "Horribly Small",
  3920. height: math.unit(47.7, "miles"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Reasonably Sized",
  3925. height: math.unit(25000, "parsecs")
  3926. },
  3927. {
  3928. name: "Slightly Uncompressed",
  3929. height: math.unit(7.77e31, "parsecs")
  3930. },
  3931. {
  3932. name: "Omniversal",
  3933. height: math.unit(1e300, "meters")
  3934. },
  3935. ]
  3936. ))
  3937. characterMakers.push(() => makeCharacter(
  3938. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3939. {
  3940. front: {
  3941. height: math.unit(2, "meter"),
  3942. weight: math.unit(75, "lb"),
  3943. name: "Front",
  3944. image: {
  3945. source: "./media/characters/napalm/front.svg"
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(2, "meter"),
  3950. weight: math.unit(75, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/napalm/back.svg"
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Standard",
  3960. height: math.unit(55, "feet"),
  3961. default: true
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(7 + 5 / 6, "feet"),
  3970. weight: math.unit(325, "lb"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/asana/front.svg",
  3974. extra: 1133 / 1060,
  3975. bottom: 15.2 / 1148.6
  3976. }
  3977. },
  3978. back: {
  3979. height: math.unit(7 + 5 / 6, "feet"),
  3980. weight: math.unit(325, "lb"),
  3981. name: "Back",
  3982. image: {
  3983. source: "./media/characters/asana/back.svg",
  3984. extra: 1114 / 1043,
  3985. bottom: 5 / 1120
  3986. }
  3987. },
  3988. dressedDark: {
  3989. height: math.unit(7 + 5 / 6, "feet"),
  3990. weight: math.unit(325, "lb"),
  3991. name: "Dressed (Dark)",
  3992. image: {
  3993. source: "./media/characters/asana/dressed-dark.svg",
  3994. extra: 1133 / 1060,
  3995. bottom: 15.2 / 1148.6
  3996. }
  3997. },
  3998. dressedLight: {
  3999. height: math.unit(7 + 5 / 6, "feet"),
  4000. weight: math.unit(325, "lb"),
  4001. name: "Dressed (Light)",
  4002. image: {
  4003. source: "./media/characters/asana/dressed-light.svg",
  4004. extra: 1133 / 1060,
  4005. bottom: 15.2 / 1148.6
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Standard",
  4012. height: math.unit(7 + 5 / 6, "feet"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Large",
  4017. height: math.unit(10, "meters")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(2500, "meters")
  4022. },
  4023. {
  4024. name: "Megamacro",
  4025. height: math.unit(5e6, "meters")
  4026. },
  4027. {
  4028. name: "Examacro",
  4029. height: math.unit(5e12, "lightyears")
  4030. },
  4031. {
  4032. name: "Max Size",
  4033. height: math.unit(1e31, "lightyears")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(2, "meter"),
  4042. weight: math.unit(60, "kg"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/ebony/front.svg",
  4046. bottom: 0.03,
  4047. extra: 1045 / 810 + 0.03
  4048. }
  4049. },
  4050. side: {
  4051. height: math.unit(2, "meter"),
  4052. weight: math.unit(60, "kg"),
  4053. name: "Side",
  4054. image: {
  4055. source: "./media/characters/ebony/side.svg",
  4056. bottom: 0.03,
  4057. extra: 1045 / 810 + 0.03
  4058. }
  4059. },
  4060. back: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(60, "kg"),
  4063. name: "Back",
  4064. image: {
  4065. source: "./media/characters/ebony/back.svg",
  4066. bottom: 0.01,
  4067. extra: 1045 / 810 + 0.01
  4068. }
  4069. },
  4070. },
  4071. [
  4072. // TODO check why I did this lol
  4073. {
  4074. name: "Standard",
  4075. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(200, "feet")
  4081. },
  4082. {
  4083. name: "Gigamacro",
  4084. height: math.unit(13000, "km")
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(175, "lb"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/mountain/front.svg",
  4097. extra: 972 / 955,
  4098. bottom: 64 / 1036.6
  4099. }
  4100. },
  4101. back: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(175, "lb"),
  4104. name: "Back",
  4105. image: {
  4106. source: "./media/characters/mountain/back.svg",
  4107. extra: 970 / 950,
  4108. bottom: 28.25 / 999
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "Large",
  4115. height: math.unit(20, "meters")
  4116. },
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(300, "meters")
  4120. },
  4121. {
  4122. name: "Gigamacro",
  4123. height: math.unit(10000, "km"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Examacro",
  4128. height: math.unit(10e9, "lightyears")
  4129. }
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4134. {
  4135. front: {
  4136. height: math.unit(8, "feet"),
  4137. weight: math.unit(500, "lb"),
  4138. name: "Front",
  4139. image: {
  4140. source: "./media/characters/rick/front.svg"
  4141. }
  4142. }
  4143. },
  4144. [
  4145. {
  4146. name: "Normal",
  4147. height: math.unit(8, "feet"),
  4148. default: true
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(5, "km")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(8, "feet"),
  4161. weight: math.unit(120, "lb"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/ona/front.svg"
  4165. }
  4166. },
  4167. frontAlt: {
  4168. height: math.unit(8, "feet"),
  4169. weight: math.unit(120, "lb"),
  4170. name: "Front (Alt)",
  4171. image: {
  4172. source: "./media/characters/ona/front-alt.svg"
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(8, "feet"),
  4177. weight: math.unit(120, "lb"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/ona/back.svg"
  4181. }
  4182. },
  4183. foot: {
  4184. height: math.unit(1.1, "feet"),
  4185. name: "Foot",
  4186. image: {
  4187. source: "./media/characters/ona/foot.svg"
  4188. }
  4189. }
  4190. },
  4191. [
  4192. {
  4193. name: "Megamacro",
  4194. height: math.unit(70, "km"),
  4195. default: true
  4196. },
  4197. {
  4198. name: "Gigamacro",
  4199. height: math.unit(681818, "miles")
  4200. },
  4201. {
  4202. name: "Examacro",
  4203. height: math.unit(3800000, "lightyears")
  4204. },
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4209. {
  4210. front: {
  4211. height: math.unit(12, "feet"),
  4212. weight: math.unit(3000, "lb"),
  4213. name: "Front",
  4214. image: {
  4215. source: "./media/characters/mech/front.svg",
  4216. extra: 2900 / 2770,
  4217. bottom: 110 / 3010
  4218. }
  4219. },
  4220. back: {
  4221. height: math.unit(12, "feet"),
  4222. weight: math.unit(3000, "lb"),
  4223. name: "Back",
  4224. image: {
  4225. source: "./media/characters/mech/back.svg",
  4226. extra: 3011 / 2890,
  4227. bottom: 94 / 3105
  4228. }
  4229. },
  4230. maw: {
  4231. height: math.unit(3.07, "feet"),
  4232. name: "Maw",
  4233. image: {
  4234. source: "./media/characters/mech/maw.svg"
  4235. }
  4236. },
  4237. head: {
  4238. height: math.unit(2.82, "feet"),
  4239. name: "Head",
  4240. image: {
  4241. source: "./media/characters/mech/head.svg"
  4242. }
  4243. },
  4244. dick: {
  4245. height: math.unit(1.43, "feet"),
  4246. name: "Dick",
  4247. image: {
  4248. source: "./media/characters/mech/dick.svg"
  4249. }
  4250. },
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(12, "feet")
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(300, "feet"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Macro+",
  4264. height: math.unit(1500, "feet")
  4265. },
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(1.3, "meter"),
  4273. weight: math.unit(30, "kg"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/gregory/front.svg",
  4277. }
  4278. }
  4279. },
  4280. [
  4281. {
  4282. name: "Normal",
  4283. height: math.unit(1.3, "meter"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(20, "meter")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(2.8, "meter"),
  4297. weight: math.unit(200, "kg"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/elory/front.svg",
  4301. }
  4302. }
  4303. },
  4304. [
  4305. {
  4306. name: "Normal",
  4307. height: math.unit(2.8, "meter"),
  4308. default: true
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(38, "meter")
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4318. {
  4319. front: {
  4320. height: math.unit(470, "feet"),
  4321. weight: math.unit(924, "tons"),
  4322. name: "Front",
  4323. image: {
  4324. source: "./media/characters/angelpatamon/front.svg",
  4325. }
  4326. }
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(470, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Deity Size I",
  4336. height: math.unit(28651.2, "km")
  4337. },
  4338. {
  4339. name: "Deity Size II",
  4340. height: math.unit(171907.2, "km")
  4341. }
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4346. {
  4347. side: {
  4348. height: math.unit(7.2, "meter"),
  4349. weight: math.unit(8.2, "tons"),
  4350. name: "Side",
  4351. image: {
  4352. source: "./media/characters/cryae/side.svg",
  4353. extra: 3500 / 1500
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(7.2, "meter"),
  4361. default: true
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(175, "lb"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/xera/front.svg",
  4374. extra: 2377 / 1972,
  4375. bottom: 75.5 / 2452
  4376. }
  4377. },
  4378. side: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(175, "lb"),
  4381. name: "Side",
  4382. image: {
  4383. source: "./media/characters/xera/side.svg",
  4384. extra: 2345 / 2019,
  4385. bottom: 39.7 / 2384
  4386. }
  4387. },
  4388. back: {
  4389. height: math.unit(6, "feet"),
  4390. weight: math.unit(175, "lb"),
  4391. name: "Back",
  4392. image: {
  4393. source: "./media/characters/xera/back.svg",
  4394. extra: 2095 / 1984,
  4395. bottom: 67 / 2166
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Small",
  4402. height: math.unit(10, "feet")
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(500, "meters"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro+",
  4411. height: math.unit(10, "km")
  4412. },
  4413. {
  4414. name: "Gigamacro",
  4415. height: math.unit(25000, "km")
  4416. },
  4417. {
  4418. name: "Teramacro",
  4419. height: math.unit(3e6, "km")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(175, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/nebula/front.svg",
  4432. extra: 2566 / 2362,
  4433. bottom: 81 / 2644
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Small",
  4440. height: math.unit(4.5, "meters")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(1500, "meters"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Megamacro",
  4449. height: math.unit(150, "km")
  4450. },
  4451. {
  4452. name: "Gigamacro",
  4453. height: math.unit(27000, "km")
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4459. {
  4460. front: {
  4461. height: math.unit(6, "feet"),
  4462. weight: math.unit(225, "lb"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/abysgar/front.svg"
  4466. }
  4467. }
  4468. },
  4469. [
  4470. {
  4471. name: "Small",
  4472. height: math.unit(4.5, "meters")
  4473. },
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(1250, "meters"),
  4477. default: true
  4478. },
  4479. {
  4480. name: "Megamacro",
  4481. height: math.unit(125, "km")
  4482. },
  4483. {
  4484. name: "Gigamacro",
  4485. height: math.unit(26000, "km")
  4486. }
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4491. {
  4492. front: {
  4493. height: math.unit(6, "feet"),
  4494. weight: math.unit(180, "lb"),
  4495. name: "Front",
  4496. image: {
  4497. source: "./media/characters/yakuz/front.svg"
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Small",
  4504. height: math.unit(5, "meters")
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(1500, "meters"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Megamacro",
  4513. height: math.unit(200, "km")
  4514. },
  4515. {
  4516. name: "Gigamacro",
  4517. height: math.unit(100000, "km")
  4518. }
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4523. {
  4524. front: {
  4525. height: math.unit(6, "feet"),
  4526. weight: math.unit(175, "lb"),
  4527. name: "Front",
  4528. image: {
  4529. source: "./media/characters/mirova/front.svg",
  4530. extra: 3334 / 3071,
  4531. bottom: 42 / 3375.6
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Small",
  4538. height: math.unit(5, "meters")
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(900, "meters"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Megamacro",
  4547. height: math.unit(135, "km")
  4548. },
  4549. {
  4550. name: "Gigamacro",
  4551. height: math.unit(20000, "km")
  4552. }
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4557. {
  4558. side: {
  4559. height: math.unit(28.35, "feet"),
  4560. weight: math.unit(99.75, "tons"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/asana-mech/side.svg",
  4564. extra: 923 / 699,
  4565. bottom: 50 / 975
  4566. }
  4567. },
  4568. chaingun: {
  4569. height: math.unit(7, "feet"),
  4570. weight: math.unit(2400, "lb"),
  4571. name: "Chaingun",
  4572. image: {
  4573. source: "./media/characters/asana-mech/chaingun.svg"
  4574. }
  4575. },
  4576. laser: {
  4577. height: math.unit(7.12, "feet"),
  4578. weight: math.unit(2000, "lb"),
  4579. name: "Laser",
  4580. image: {
  4581. source: "./media/characters/asana-mech/laser.svg"
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(28.35, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(2500, "feet")
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(25, "miles")
  4598. },
  4599. {
  4600. name: "Examacro",
  4601. height: math.unit(6e8, "lightyears")
  4602. },
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(5, "meters"),
  4610. weight: math.unit(1000, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/asche/front.svg",
  4614. extra: 1258 / 1190,
  4615. bottom: 47 / 1305
  4616. }
  4617. },
  4618. frontUnderwear: {
  4619. height: math.unit(5, "meters"),
  4620. weight: math.unit(1000, "kg"),
  4621. name: "Front (Underwear)",
  4622. image: {
  4623. source: "./media/characters/asche/front-underwear.svg",
  4624. extra: 1258 / 1190,
  4625. bottom: 47 / 1305
  4626. }
  4627. },
  4628. frontDressed: {
  4629. height: math.unit(5, "meters"),
  4630. weight: math.unit(1000, "kg"),
  4631. name: "Front (Dressed)",
  4632. image: {
  4633. source: "./media/characters/asche/front-dressed.svg",
  4634. extra: 1258 / 1190,
  4635. bottom: 47 / 1305
  4636. }
  4637. },
  4638. frontArmor: {
  4639. height: math.unit(5, "meters"),
  4640. weight: math.unit(1000, "kg"),
  4641. name: "Front (Armored)",
  4642. image: {
  4643. source: "./media/characters/asche/front-armored.svg",
  4644. extra: 1374 / 1308,
  4645. bottom: 23 / 1397
  4646. }
  4647. },
  4648. mp724: {
  4649. height: math.unit(0.96, "meters"),
  4650. weight: math.unit(38, "kg"),
  4651. name: "H&K MP724",
  4652. image: {
  4653. source: "./media/characters/asche/h&k-mp724.svg"
  4654. }
  4655. },
  4656. side: {
  4657. height: math.unit(5, "meters"),
  4658. weight: math.unit(1000, "kg"),
  4659. name: "Side",
  4660. image: {
  4661. source: "./media/characters/asche/side.svg",
  4662. extra: 1717 / 1609,
  4663. bottom: 0.005
  4664. }
  4665. },
  4666. back: {
  4667. height: math.unit(5, "meters"),
  4668. weight: math.unit(1000, "kg"),
  4669. name: "Back",
  4670. image: {
  4671. source: "./media/characters/asche/back.svg",
  4672. extra: 1570 / 1501
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "DEFCON 5",
  4679. height: math.unit(5, "meters")
  4680. },
  4681. {
  4682. name: "DEFCON 4",
  4683. height: math.unit(500, "meters"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "DEFCON 3",
  4688. height: math.unit(5, "km")
  4689. },
  4690. {
  4691. name: "DEFCON 2",
  4692. height: math.unit(500, "km")
  4693. },
  4694. {
  4695. name: "DEFCON 1",
  4696. height: math.unit(500000, "km")
  4697. },
  4698. {
  4699. name: "DEFCON 0",
  4700. height: math.unit(3, "gigaparsecs")
  4701. },
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(76, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/gale/front.svg"
  4713. }
  4714. },
  4715. frontAlt1: {
  4716. height: math.unit(2, "meters"),
  4717. weight: math.unit(76, "kg"),
  4718. name: "Front (Alt 1)",
  4719. image: {
  4720. source: "./media/characters/gale/front-alt-1.svg"
  4721. }
  4722. },
  4723. frontAlt2: {
  4724. height: math.unit(2, "meters"),
  4725. weight: math.unit(76, "kg"),
  4726. name: "Front (Alt 2)",
  4727. image: {
  4728. source: "./media/characters/gale/front-alt-2.svg"
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(7, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(150, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Macro+",
  4744. height: math.unit(300, "feet")
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(5 + 10/12, "feet"),
  4753. weight: math.unit(67, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/draylen/front.svg",
  4757. extra: 832/777,
  4758. bottom: 85/917
  4759. }
  4760. }
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(5 + 10/12, "feet")
  4766. },
  4767. {
  4768. name: "Macro",
  4769. height: math.unit(150, "feet"),
  4770. default: true
  4771. }
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(7 + 9 / 12, "feet"),
  4779. weight: math.unit(379, "lbs"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/chez/front.svg"
  4783. }
  4784. },
  4785. side: {
  4786. height: math.unit(7 + 9 / 12, "feet"),
  4787. weight: math.unit(379, "lbs"),
  4788. name: "Side",
  4789. image: {
  4790. source: "./media/characters/chez/side.svg"
  4791. }
  4792. }
  4793. },
  4794. [
  4795. {
  4796. name: "Normal",
  4797. height: math.unit(7 + 9 / 12, "feet"),
  4798. default: true
  4799. },
  4800. {
  4801. name: "God King",
  4802. height: math.unit(9750000, "meters")
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4808. {
  4809. front: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(275, "lbs"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/kaylum/front.svg",
  4815. bottom: 0.01,
  4816. extra: 1166 / 1031
  4817. }
  4818. },
  4819. frontWingless: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(275, "lbs"),
  4822. name: "Front (Wingless)",
  4823. image: {
  4824. source: "./media/characters/kaylum/front-wingless.svg",
  4825. bottom: 0.01,
  4826. extra: 1117 / 1031
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(3.05, "meters")
  4834. },
  4835. {
  4836. name: "Master",
  4837. height: math.unit(5.5, "meters")
  4838. },
  4839. {
  4840. name: "Rampage",
  4841. height: math.unit(19, "meters")
  4842. },
  4843. {
  4844. name: "Macro Lite",
  4845. height: math.unit(37, "meters")
  4846. },
  4847. {
  4848. name: "Hyper Predator",
  4849. height: math.unit(61, "meters")
  4850. },
  4851. {
  4852. name: "Macro",
  4853. height: math.unit(138, "meters"),
  4854. default: true
  4855. }
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4860. {
  4861. front: {
  4862. height: math.unit(5 + 5 / 12, "feet"),
  4863. weight: math.unit(120, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/geta/front.svg",
  4867. extra: 1003/933,
  4868. bottom: 21/1024
  4869. }
  4870. },
  4871. paw: {
  4872. height: math.unit(0.35, "feet"),
  4873. name: "Paw",
  4874. image: {
  4875. source: "./media/characters/geta/paw.svg"
  4876. }
  4877. },
  4878. },
  4879. [
  4880. {
  4881. name: "Micro",
  4882. height: math.unit(3, "inches"),
  4883. default: true
  4884. },
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(5 + 5 / 12, "feet")
  4888. }
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(6, "feet"),
  4896. weight: math.unit(300, "lbs"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/tyrnn/front.svg"
  4900. }
  4901. }
  4902. },
  4903. [
  4904. {
  4905. name: "Main Height",
  4906. height: math.unit(355, "feet"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Fave. Height",
  4911. height: math.unit(2400, "feet")
  4912. }
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(300, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/appledectomy/front.svg"
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Macro",
  4930. height: math.unit(2500, "feet")
  4931. },
  4932. {
  4933. name: "Megamacro",
  4934. height: math.unit(50, "miles"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(5000, "miles")
  4940. },
  4941. {
  4942. name: "Teramacro",
  4943. height: math.unit(250000, "miles")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(200, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/vulpes/front.svg",
  4956. extra: 573 / 543,
  4957. bottom: 0.033
  4958. }
  4959. },
  4960. side: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(200, "lbs"),
  4963. name: "Side",
  4964. image: {
  4965. source: "./media/characters/vulpes/side.svg",
  4966. extra: 577 / 549,
  4967. bottom: 11 / 588
  4968. }
  4969. },
  4970. back: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(200, "lbs"),
  4973. name: "Back",
  4974. image: {
  4975. source: "./media/characters/vulpes/back.svg",
  4976. extra: 573 / 549,
  4977. bottom: 20 / 593
  4978. }
  4979. },
  4980. feet: {
  4981. height: math.unit(1.276, "feet"),
  4982. name: "Feet",
  4983. image: {
  4984. source: "./media/characters/vulpes/feet.svg"
  4985. }
  4986. },
  4987. maw: {
  4988. height: math.unit(1.18, "feet"),
  4989. name: "Maw",
  4990. image: {
  4991. source: "./media/characters/vulpes/maw.svg"
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Micro",
  4998. height: math.unit(2, "inches")
  4999. },
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(6.3, "feet")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(850, "feet")
  5007. },
  5008. {
  5009. name: "Megamacro",
  5010. height: math.unit(7500, "feet"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Gigamacro",
  5015. height: math.unit(570000, "miles")
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5021. {
  5022. front: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(210, "lbs"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/rain-fallen/front.svg"
  5028. }
  5029. },
  5030. side: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(210, "lbs"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/rain-fallen/side.svg"
  5036. }
  5037. },
  5038. back: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(210, "lbs"),
  5041. name: "Back",
  5042. image: {
  5043. source: "./media/characters/rain-fallen/back.svg"
  5044. }
  5045. },
  5046. feral: {
  5047. height: math.unit(9, "feet"),
  5048. weight: math.unit(700, "lbs"),
  5049. name: "Feral",
  5050. image: {
  5051. source: "./media/characters/rain-fallen/feral.svg"
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Meddling with Mortals",
  5058. height: math.unit(8 + 8/12, "feet")
  5059. },
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(5, "meter")
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(150, "meter"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Megamacro",
  5071. height: math.unit(278e6, "meter")
  5072. },
  5073. {
  5074. name: "Gigamacro",
  5075. height: math.unit(2e9, "meter")
  5076. },
  5077. {
  5078. name: "Teramacro",
  5079. height: math.unit(8e12, "meter")
  5080. },
  5081. {
  5082. name: "Devourer",
  5083. height: math.unit(14, "zettameters")
  5084. },
  5085. {
  5086. name: "Scarlet King",
  5087. height: math.unit(18, "yottameters")
  5088. },
  5089. {
  5090. name: "Void",
  5091. height: math.unit(1e88, "yottameters")
  5092. }
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5097. {
  5098. standing: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(180, "lbs"),
  5101. name: "Standing",
  5102. image: {
  5103. source: "./media/characters/zaakira/standing.svg",
  5104. extra: 1599/1504,
  5105. bottom: 39/1638
  5106. }
  5107. },
  5108. laying: {
  5109. height: math.unit(3, "feet"),
  5110. weight: math.unit(180, "lbs"),
  5111. name: "Laying",
  5112. image: {
  5113. source: "./media/characters/zaakira/laying.svg"
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(12, "feet")
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(279, "feet"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5131. {
  5132. femSfw: {
  5133. height: math.unit(8, "feet"),
  5134. weight: math.unit(350, "lb"),
  5135. name: "Fem",
  5136. image: {
  5137. source: "./media/characters/sigvald/fem-sfw.svg",
  5138. extra: 182 / 164,
  5139. bottom: 8.7 / 190.5
  5140. }
  5141. },
  5142. femNsfw: {
  5143. height: math.unit(8, "feet"),
  5144. weight: math.unit(350, "lb"),
  5145. name: "Fem (NSFW)",
  5146. image: {
  5147. source: "./media/characters/sigvald/fem-nsfw.svg",
  5148. extra: 182 / 164,
  5149. bottom: 8.7 / 190.5
  5150. }
  5151. },
  5152. maleNsfw: {
  5153. height: math.unit(8, "feet"),
  5154. weight: math.unit(350, "lb"),
  5155. name: "Male (NSFW)",
  5156. image: {
  5157. source: "./media/characters/sigvald/male-nsfw.svg",
  5158. extra: 182 / 164,
  5159. bottom: 8.7 / 190.5
  5160. }
  5161. },
  5162. hermNsfw: {
  5163. height: math.unit(8, "feet"),
  5164. weight: math.unit(350, "lb"),
  5165. name: "Herm (NSFW)",
  5166. image: {
  5167. source: "./media/characters/sigvald/herm-nsfw.svg",
  5168. extra: 182 / 164,
  5169. bottom: 8.7 / 190.5
  5170. }
  5171. },
  5172. dick: {
  5173. height: math.unit(2.36, "feet"),
  5174. name: "Dick",
  5175. image: {
  5176. source: "./media/characters/sigvald/dick.svg"
  5177. }
  5178. },
  5179. eye: {
  5180. height: math.unit(0.31, "feet"),
  5181. name: "Eye",
  5182. image: {
  5183. source: "./media/characters/sigvald/eye.svg"
  5184. }
  5185. },
  5186. mouth: {
  5187. height: math.unit(0.92, "feet"),
  5188. name: "Mouth",
  5189. image: {
  5190. source: "./media/characters/sigvald/mouth.svg"
  5191. }
  5192. },
  5193. paws: {
  5194. height: math.unit(2.2, "feet"),
  5195. name: "Paws",
  5196. image: {
  5197. source: "./media/characters/sigvald/paws.svg"
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(8, "feet")
  5205. },
  5206. {
  5207. name: "Large",
  5208. height: math.unit(12, "feet")
  5209. },
  5210. {
  5211. name: "Larger",
  5212. height: math.unit(20, "feet")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(150, "feet")
  5217. },
  5218. {
  5219. name: "Macro+",
  5220. height: math.unit(200, "feet"),
  5221. default: true
  5222. },
  5223. ]
  5224. ))
  5225. characterMakers.push(() => makeCharacter(
  5226. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5227. {
  5228. side: {
  5229. height: math.unit(12, "feet"),
  5230. weight: math.unit(2000, "kg"),
  5231. name: "Side",
  5232. image: {
  5233. source: "./media/characters/scott/side.svg",
  5234. extra: 754 / 724,
  5235. bottom: 0.069
  5236. }
  5237. },
  5238. upright: {
  5239. height: math.unit(12, "feet"),
  5240. weight: math.unit(2000, "kg"),
  5241. name: "Upright",
  5242. image: {
  5243. source: "./media/characters/scott/upright.svg",
  5244. extra: 3881 / 3722,
  5245. bottom: 0.05
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(12, "feet"),
  5253. default: true
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5259. {
  5260. side: {
  5261. height: math.unit(8, "meters"),
  5262. weight: math.unit(84755, "lbs"),
  5263. name: "Side",
  5264. image: {
  5265. source: "./media/characters/tobias/side.svg",
  5266. extra: 1474 / 1096,
  5267. bottom: 38.9 / 1513.1235
  5268. }
  5269. },
  5270. },
  5271. [
  5272. {
  5273. name: "Normal",
  5274. height: math.unit(8, "meters"),
  5275. default: true
  5276. },
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5281. {
  5282. front: {
  5283. height: math.unit(5.5, "feet"),
  5284. weight: math.unit(400, "lbs"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/kieran/front.svg",
  5288. extra: 2694 / 2364,
  5289. bottom: 217 / 2908
  5290. }
  5291. },
  5292. side: {
  5293. height: math.unit(5.5, "feet"),
  5294. weight: math.unit(400, "lbs"),
  5295. name: "Side",
  5296. image: {
  5297. source: "./media/characters/kieran/side.svg",
  5298. extra: 875 / 777,
  5299. bottom: 84.6 / 959
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(5.5, "feet"),
  5307. default: true
  5308. },
  5309. ]
  5310. ))
  5311. characterMakers.push(() => makeCharacter(
  5312. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5313. {
  5314. side: {
  5315. height: math.unit(2, "meters"),
  5316. weight: math.unit(70, "kg"),
  5317. name: "Side",
  5318. image: {
  5319. source: "./media/characters/sanya/side.svg",
  5320. bottom: 0.02,
  5321. extra: 1.02
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Small",
  5328. height: math.unit(2, "meters")
  5329. },
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(3, "meters")
  5333. },
  5334. {
  5335. name: "Macro",
  5336. height: math.unit(16, "meters"),
  5337. default: true
  5338. },
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5343. {
  5344. front: {
  5345. height: math.unit(2, "meters"),
  5346. weight: math.unit(120, "kg"),
  5347. name: "Front",
  5348. image: {
  5349. source: "./media/characters/miranda/front.svg",
  5350. extra: 195 / 185,
  5351. bottom: 10.9 / 206.5
  5352. }
  5353. },
  5354. back: {
  5355. height: math.unit(2, "meters"),
  5356. weight: math.unit(120, "kg"),
  5357. name: "Back",
  5358. image: {
  5359. source: "./media/characters/miranda/back.svg",
  5360. extra: 201 / 193,
  5361. bottom: 2.3 / 203.7
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Normal",
  5368. height: math.unit(10, "feet"),
  5369. default: true
  5370. }
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "James", species: ["deer"], tags: ["anthro"] },
  5375. {
  5376. side: {
  5377. height: math.unit(2, "meters"),
  5378. weight: math.unit(100, "kg"),
  5379. name: "Front",
  5380. image: {
  5381. source: "./media/characters/james/front.svg",
  5382. extra: 10 / 8.5
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(8.5, "feet"),
  5390. default: true
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5396. {
  5397. side: {
  5398. height: math.unit(9.5, "feet"),
  5399. weight: math.unit(2500, "lbs"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/heather/side.svg"
  5403. }
  5404. },
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(9.5, "feet"),
  5410. default: true
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5416. {
  5417. side: {
  5418. height: math.unit(6.5, "feet"),
  5419. weight: math.unit(400, "lbs"),
  5420. name: "Side",
  5421. image: {
  5422. source: "./media/characters/lukas/side.svg",
  5423. extra: 7.25 / 6.5
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(6.5, "feet"),
  5431. default: true
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5437. {
  5438. side: {
  5439. height: math.unit(5, "feet"),
  5440. weight: math.unit(3000, "lbs"),
  5441. name: "Side",
  5442. image: {
  5443. source: "./media/characters/louise/side.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(5, "feet"),
  5451. default: true
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5457. {
  5458. side: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(150, "lbs"),
  5461. name: "Side",
  5462. image: {
  5463. source: "./media/characters/ramona/side.svg",
  5464. extra: 871/854,
  5465. bottom: 41/912
  5466. }
  5467. },
  5468. },
  5469. [
  5470. {
  5471. name: "Normal",
  5472. height: math.unit(5.3, "meters"),
  5473. default: true
  5474. },
  5475. {
  5476. name: "Macro",
  5477. height: math.unit(20, "stories")
  5478. },
  5479. {
  5480. name: "Macro+",
  5481. height: math.unit(50, "stories")
  5482. },
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5487. {
  5488. standing: {
  5489. height: math.unit(5.75, "feet"),
  5490. weight: math.unit(160, "lbs"),
  5491. name: "Standing",
  5492. image: {
  5493. source: "./media/characters/deerpuff/standing.svg",
  5494. extra: 682 / 624
  5495. }
  5496. },
  5497. sitting: {
  5498. height: math.unit(5.75 / 1.79, "feet"),
  5499. weight: math.unit(160, "lbs"),
  5500. name: "Sitting",
  5501. image: {
  5502. source: "./media/characters/deerpuff/sitting.svg",
  5503. bottom: 44 / 400,
  5504. extra: 1
  5505. }
  5506. },
  5507. taurLaying: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(400, "lbs"),
  5510. name: "Taur (Laying)",
  5511. image: {
  5512. source: "./media/characters/deerpuff/taur-laying.svg"
  5513. }
  5514. },
  5515. },
  5516. [
  5517. {
  5518. name: "Puffball",
  5519. height: math.unit(6, "inches")
  5520. },
  5521. {
  5522. name: "Normalpuff",
  5523. height: math.unit(5.75, "feet")
  5524. },
  5525. {
  5526. name: "Macropuff",
  5527. height: math.unit(1500, "feet"),
  5528. default: true
  5529. },
  5530. {
  5531. name: "Megapuff",
  5532. height: math.unit(500, "miles")
  5533. },
  5534. {
  5535. name: "Gigapuff",
  5536. height: math.unit(250000, "miles")
  5537. },
  5538. {
  5539. name: "Omegapuff",
  5540. height: math.unit(1000, "lightyears")
  5541. },
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5546. {
  5547. stomping: {
  5548. height: math.unit(6, "feet"),
  5549. weight: math.unit(170, "lbs"),
  5550. name: "Stomping",
  5551. image: {
  5552. source: "./media/characters/vivian/stomping.svg"
  5553. }
  5554. },
  5555. sitting: {
  5556. height: math.unit(6 / 1.75, "feet"),
  5557. weight: math.unit(170, "lbs"),
  5558. name: "Sitting",
  5559. image: {
  5560. source: "./media/characters/vivian/sitting.svg",
  5561. bottom: 1 / 6.4,
  5562. extra: 1,
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Normal",
  5569. height: math.unit(7, "feet"),
  5570. default: true
  5571. },
  5572. {
  5573. name: "Macro",
  5574. height: math.unit(10, "stories")
  5575. },
  5576. {
  5577. name: "Macro+",
  5578. height: math.unit(30, "stories")
  5579. },
  5580. {
  5581. name: "Megamacro",
  5582. height: math.unit(10, "miles")
  5583. },
  5584. {
  5585. name: "Megamacro+",
  5586. height: math.unit(2750000, "meters")
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5592. {
  5593. front: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(160, "lbs"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/prince/front.svg",
  5599. extra: 3400 / 3000
  5600. }
  5601. },
  5602. jumping: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(160, "lbs"),
  5605. name: "Jumping",
  5606. image: {
  5607. source: "./media/characters/prince/jump.svg",
  5608. extra: 2555 / 2134
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(7.75, "feet"),
  5616. default: true
  5617. },
  5618. {
  5619. name: "Not cute",
  5620. height: math.unit(17, "feet")
  5621. },
  5622. {
  5623. name: "I said NOT",
  5624. height: math.unit(91, "feet")
  5625. },
  5626. {
  5627. name: "Please stop",
  5628. height: math.unit(560, "feet")
  5629. },
  5630. {
  5631. name: "What have you done",
  5632. height: math.unit(2200, "feet")
  5633. },
  5634. {
  5635. name: "Deer God",
  5636. height: math.unit(3.6, "miles")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5642. {
  5643. standing: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(300, "lbs"),
  5646. name: "Standing",
  5647. image: {
  5648. source: "./media/characters/psymon/standing.svg",
  5649. extra: 1888 / 1810,
  5650. bottom: 0.05
  5651. }
  5652. },
  5653. slithering: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(300, "lbs"),
  5656. name: "Slithering",
  5657. image: {
  5658. source: "./media/characters/psymon/slithering.svg",
  5659. extra: 1330 / 1224
  5660. }
  5661. },
  5662. slitheringAlt: {
  5663. height: math.unit(6, "feet"),
  5664. weight: math.unit(300, "lbs"),
  5665. name: "Slithering (Alt)",
  5666. image: {
  5667. source: "./media/characters/psymon/slithering-alt.svg",
  5668. extra: 1330 / 1224
  5669. }
  5670. },
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(11.25, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Large",
  5680. height: math.unit(27, "feet")
  5681. },
  5682. {
  5683. name: "Giant",
  5684. height: math.unit(87, "feet")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(365, "feet")
  5689. },
  5690. {
  5691. name: "Megamacro",
  5692. height: math.unit(3, "miles")
  5693. },
  5694. {
  5695. name: "World Serpent",
  5696. height: math.unit(8000, "miles")
  5697. },
  5698. ]
  5699. ))
  5700. characterMakers.push(() => makeCharacter(
  5701. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5702. {
  5703. front: {
  5704. height: math.unit(6, "feet"),
  5705. weight: math.unit(180, "lbs"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/daimos/front.svg",
  5709. extra: 4160 / 3897,
  5710. bottom: 0.021
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(8, "feet"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Big Dog",
  5722. height: math.unit(22, "feet")
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(127, "feet")
  5727. },
  5728. {
  5729. name: "Megamacro",
  5730. height: math.unit(3600, "feet")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5736. {
  5737. side: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(180, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/blake/side.svg",
  5743. extra: 1212 / 1120,
  5744. bottom: 0.05
  5745. }
  5746. },
  5747. crouched: {
  5748. height: math.unit(6 * 0.57, "feet"),
  5749. weight: math.unit(180, "lbs"),
  5750. name: "Crouched",
  5751. image: {
  5752. source: "./media/characters/blake/crouched.svg",
  5753. extra: 840 / 587,
  5754. bottom: 0.04
  5755. }
  5756. },
  5757. bent: {
  5758. height: math.unit(6 * 0.75, "feet"),
  5759. weight: math.unit(180, "lbs"),
  5760. name: "Bent",
  5761. image: {
  5762. source: "./media/characters/blake/bent.svg",
  5763. extra: 592 / 544,
  5764. bottom: 0.035
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(8 + 1 / 6, "feet"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Big Backside",
  5776. height: math.unit(37, "feet")
  5777. },
  5778. {
  5779. name: "Subway Shredder",
  5780. height: math.unit(72, "feet")
  5781. },
  5782. {
  5783. name: "City Carver",
  5784. height: math.unit(1675, "feet")
  5785. },
  5786. {
  5787. name: "Tectonic Tweaker",
  5788. height: math.unit(2300, "miles")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/guisetto/front.svg",
  5801. extra: 856 / 817,
  5802. bottom: 0.06
  5803. }
  5804. },
  5805. airborne: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(180, "lbs"),
  5808. name: "Airborne",
  5809. image: {
  5810. source: "./media/characters/guisetto/airborne.svg",
  5811. extra: 584 / 525
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(10 + 11 / 12, "feet"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Large",
  5823. height: math.unit(35, "feet")
  5824. },
  5825. {
  5826. name: "Macro",
  5827. height: math.unit(475, "feet")
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(180, "lbs"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/luxor/front.svg",
  5840. extra: 2940 / 2152
  5841. }
  5842. },
  5843. back: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(180, "lbs"),
  5846. name: "Back",
  5847. image: {
  5848. source: "./media/characters/luxor/back.svg",
  5849. extra: 1083 / 960
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(5 + 5 / 6, "feet"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Lamp",
  5861. height: math.unit(50, "feet")
  5862. },
  5863. {
  5864. name: "Lämp",
  5865. height: math.unit(300, "feet")
  5866. },
  5867. {
  5868. name: "The sun is a lamp",
  5869. height: math.unit(250000, "miles")
  5870. },
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5875. {
  5876. front: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(50, "lbs"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/huoyan/front.svg"
  5882. }
  5883. },
  5884. side: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(180, "lbs"),
  5887. name: "Side",
  5888. image: {
  5889. source: "./media/characters/huoyan/side.svg"
  5890. }
  5891. },
  5892. },
  5893. [
  5894. {
  5895. name: "Chef",
  5896. height: math.unit(9, "feet")
  5897. },
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(65, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Macro",
  5905. height: math.unit(780, "feet")
  5906. },
  5907. {
  5908. name: "Flaming Mountain",
  5909. height: math.unit(4.8, "miles")
  5910. },
  5911. {
  5912. name: "Celestial",
  5913. height: math.unit(765000, "miles")
  5914. },
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(5 + 3 / 4, "feet"),
  5922. weight: math.unit(120, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/tails/front.svg"
  5926. }
  5927. }
  5928. },
  5929. [
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(5 + 3 / 4, "feet"),
  5933. default: true
  5934. }
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5939. {
  5940. front: {
  5941. height: math.unit(4, "feet"),
  5942. weight: math.unit(50, "lbs"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/rainy/front.svg"
  5946. }
  5947. }
  5948. },
  5949. [
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(800, "feet"),
  5953. default: true
  5954. }
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(150, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/rainier/front.svg"
  5966. }
  5967. }
  5968. },
  5969. [
  5970. {
  5971. name: "Micro",
  5972. height: math.unit(2, "mm"),
  5973. default: true
  5974. }
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5979. {
  5980. front: {
  5981. height: math.unit(8 + 4/12, "feet"),
  5982. weight: math.unit(450, "kilograms"),
  5983. volume: math.unit(5, "cups"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/andy-renard/front.svg",
  5987. extra: 1839/1726,
  5988. bottom: 134/1973
  5989. }
  5990. },
  5991. back: {
  5992. height: math.unit(8 + 4/12, "feet"),
  5993. weight: math.unit(450, "kilograms"),
  5994. volume: math.unit(5, "cups"),
  5995. name: "Back",
  5996. image: {
  5997. source: "./media/characters/andy-renard/back.svg",
  5998. extra: 1838/1710,
  5999. bottom: 105/1943
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Tall",
  6006. height: math.unit(8 + 4/12, "feet")
  6007. },
  6008. {
  6009. name: "Mini Macro",
  6010. height: math.unit(15, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Macro",
  6015. height: math.unit(100, "feet")
  6016. },
  6017. {
  6018. name: "Mega Macro",
  6019. height: math.unit(1000, "feet")
  6020. },
  6021. {
  6022. name: "Giga Macro",
  6023. height: math.unit(10, "miles")
  6024. },
  6025. {
  6026. name: "God Macro",
  6027. height: math.unit(1, "multiverse")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(210, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/cimmaron/front-sfw.svg",
  6040. extra: 701 / 676,
  6041. bottom: 0.046
  6042. }
  6043. },
  6044. back: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(210, "lbs"),
  6047. name: "Back",
  6048. image: {
  6049. source: "./media/characters/cimmaron/back-sfw.svg",
  6050. extra: 701 / 676,
  6051. bottom: 0.046
  6052. }
  6053. },
  6054. frontNsfw: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(210, "lbs"),
  6057. name: "Front (NSFW)",
  6058. image: {
  6059. source: "./media/characters/cimmaron/front-nsfw.svg",
  6060. extra: 701 / 676,
  6061. bottom: 0.046
  6062. }
  6063. },
  6064. backNsfw: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(210, "lbs"),
  6067. name: "Back (NSFW)",
  6068. image: {
  6069. source: "./media/characters/cimmaron/back-nsfw.svg",
  6070. extra: 701 / 676,
  6071. bottom: 0.046
  6072. }
  6073. },
  6074. dick: {
  6075. height: math.unit(1.714, "feet"),
  6076. name: "Dick",
  6077. image: {
  6078. source: "./media/characters/cimmaron/dick.svg"
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(6, "feet"),
  6086. default: true
  6087. },
  6088. {
  6089. name: "Macro Mayor",
  6090. height: math.unit(350, "meters")
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(200, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/akari/front.svg",
  6103. extra: 962 / 901,
  6104. bottom: 0.04
  6105. }
  6106. }
  6107. },
  6108. [
  6109. {
  6110. name: "Micro",
  6111. height: math.unit(5, "inches"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(7, "feet")
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6122. {
  6123. front: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(140, "lbs"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/cynosura/front.svg",
  6129. extra: 896 / 847
  6130. }
  6131. },
  6132. back: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(140, "lbs"),
  6135. name: "Back",
  6136. image: {
  6137. source: "./media/characters/cynosura/back.svg",
  6138. extra: 1365 / 1250
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(4, "inches")
  6146. },
  6147. {
  6148. name: "Normal",
  6149. height: math.unit(5.75, "feet"),
  6150. default: true
  6151. },
  6152. {
  6153. name: "Tall",
  6154. height: math.unit(10, "feet")
  6155. },
  6156. {
  6157. name: "Big",
  6158. height: math.unit(20, "feet")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(50, "feet")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(13 + 2/12, "feet"),
  6171. weight: math.unit(800, "kg"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/gin/front.svg",
  6175. extra: 1312/1191,
  6176. bottom: 45/1357
  6177. }
  6178. },
  6179. mouth: {
  6180. height: math.unit(2.39 * 1.8, "feet"),
  6181. name: "Mouth",
  6182. image: {
  6183. source: "./media/characters/gin/mouth.svg"
  6184. }
  6185. },
  6186. hand: {
  6187. height: math.unit(1.57 * 2.19, "feet"),
  6188. name: "Hand",
  6189. image: {
  6190. source: "./media/characters/gin/hand.svg"
  6191. }
  6192. },
  6193. foot: {
  6194. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6195. name: "Foot",
  6196. image: {
  6197. source: "./media/characters/gin/foot.svg"
  6198. }
  6199. },
  6200. sole: {
  6201. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6202. name: "Sole",
  6203. image: {
  6204. source: "./media/characters/gin/sole.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Very Small",
  6211. height: math.unit(13 + 2 / 12, "feet")
  6212. },
  6213. {
  6214. name: "Micro",
  6215. height: math.unit(600, "miles")
  6216. },
  6217. {
  6218. name: "Regular",
  6219. height: math.unit(20, "earths"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(2.2, "solarradii")
  6225. },
  6226. {
  6227. name: "Teramacro",
  6228. height: math.unit(1.2, "galaxies")
  6229. },
  6230. {
  6231. name: "Omegamacro",
  6232. height: math.unit(200, "universes")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6 + 1 / 6, "feet"),
  6241. weight: math.unit(178, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/guy/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(6 + 1 / 6, "feet"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Large",
  6256. height: math.unit(25 + 7 / 12, "feet")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(60 + 9 / 12, "feet")
  6261. },
  6262. {
  6263. name: "Macro+",
  6264. height: math.unit(246, "feet")
  6265. },
  6266. {
  6267. name: "Macro++",
  6268. height: math.unit(878, "feet")
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(9, "feet"),
  6277. weight: math.unit(800, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/tiberius/front.svg",
  6281. extra: 2295 / 2071
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(9, "feet"),
  6286. weight: math.unit(800, "lbs"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/tiberius/back.svg",
  6290. extra: 2373 / 2160
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(9, "feet"),
  6298. default: true
  6299. }
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6304. {
  6305. front: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(600, "lbs"),
  6308. name: "Front",
  6309. image: {
  6310. source: "./media/characters/surgo/front.svg",
  6311. extra: 3591 / 2227
  6312. }
  6313. },
  6314. back: {
  6315. height: math.unit(6, "feet"),
  6316. weight: math.unit(600, "lbs"),
  6317. name: "Back",
  6318. image: {
  6319. source: "./media/characters/surgo/back.svg",
  6320. extra: 3557 / 2228
  6321. }
  6322. },
  6323. laying: {
  6324. height: math.unit(6 * 0.85, "feet"),
  6325. weight: math.unit(600, "lbs"),
  6326. name: "Laying",
  6327. image: {
  6328. source: "./media/characters/surgo/laying.svg"
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(6, "feet"),
  6336. default: true
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6342. {
  6343. side: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(150, "lbs"),
  6346. name: "Side",
  6347. image: {
  6348. source: "./media/characters/cibus/side.svg",
  6349. extra: 800 / 400
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(6, "feet"),
  6357. default: true
  6358. }
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(240, "lbs"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/nibbles/front.svg"
  6370. }
  6371. },
  6372. side: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(240, "lbs"),
  6375. name: "Side",
  6376. image: {
  6377. source: "./media/characters/nibbles/side.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(9, "feet"),
  6385. default: true
  6386. }
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6391. {
  6392. side: {
  6393. height: math.unit(5 + 1 / 6, "feet"),
  6394. weight: math.unit(130, "lbs"),
  6395. name: "Side",
  6396. image: {
  6397. source: "./media/characters/rikky/side.svg",
  6398. extra: 851 / 801
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(5 + 1 / 6, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(152, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Megamacro",
  6414. height: math.unit(7, "miles")
  6415. }
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6420. {
  6421. side: {
  6422. height: math.unit(370, "cm"),
  6423. weight: math.unit(350, "lbs"),
  6424. name: "Side",
  6425. image: {
  6426. source: "./media/characters/malfressa/side.svg"
  6427. }
  6428. },
  6429. walking: {
  6430. height: math.unit(370, "cm"),
  6431. weight: math.unit(350, "lbs"),
  6432. name: "Walking",
  6433. image: {
  6434. source: "./media/characters/malfressa/walking.svg"
  6435. }
  6436. },
  6437. feral: {
  6438. height: math.unit(2500, "cm"),
  6439. weight: math.unit(100000, "lbs"),
  6440. name: "Feral",
  6441. image: {
  6442. source: "./media/characters/malfressa/feral.svg",
  6443. extra: 2108 / 837,
  6444. bottom: 0.02
  6445. }
  6446. },
  6447. },
  6448. [
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(370, "cm")
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(300, "meters"),
  6456. default: true
  6457. }
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(60, "kg"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/jaro/front.svg",
  6469. extra: 845/817,
  6470. bottom: 45/890
  6471. }
  6472. },
  6473. back: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(60, "kg"),
  6476. name: "Back",
  6477. image: {
  6478. source: "./media/characters/jaro/back.svg",
  6479. extra: 847/817,
  6480. bottom: 34/881
  6481. }
  6482. },
  6483. },
  6484. [
  6485. {
  6486. name: "Micro",
  6487. height: math.unit(7, "inches")
  6488. },
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(5.5, "feet"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Minimacro",
  6496. height: math.unit(20, "feet")
  6497. },
  6498. {
  6499. name: "Macro",
  6500. height: math.unit(200, "meters")
  6501. }
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(195, "lb"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/rogue/front.svg"
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(90, "feet"),
  6520. default: true
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6526. {
  6527. standing: {
  6528. height: math.unit(5 + 8 / 12, "feet"),
  6529. weight: math.unit(140, "lb"),
  6530. name: "Standing",
  6531. image: {
  6532. source: "./media/characters/piper/standing.svg",
  6533. extra: 1440/1284,
  6534. bottom: 66/1506
  6535. }
  6536. },
  6537. running: {
  6538. height: math.unit(5 + 8 / 12, "feet"),
  6539. weight: math.unit(140, "lb"),
  6540. name: "Running",
  6541. image: {
  6542. source: "./media/characters/piper/running.svg",
  6543. extra: 3948/3655,
  6544. bottom: 0/3948
  6545. }
  6546. },
  6547. sole: {
  6548. height: math.unit(0.81, "feet"),
  6549. weight: math.unit(2, "kg"),
  6550. name: "Sole",
  6551. image: {
  6552. source: "./media/characters/piper/sole.svg"
  6553. }
  6554. },
  6555. nipple: {
  6556. height: math.unit(0.25, "feet"),
  6557. weight: math.unit(1.5, "lb"),
  6558. name: "Nipple",
  6559. image: {
  6560. source: "./media/characters/piper/nipple.svg"
  6561. }
  6562. },
  6563. head: {
  6564. height: math.unit(1.1, "feet"),
  6565. name: "Head",
  6566. image: {
  6567. source: "./media/characters/piper/head.svg"
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Micro",
  6574. height: math.unit(2, "inches")
  6575. },
  6576. {
  6577. name: "Normal",
  6578. height: math.unit(5 + 8 / 12, "feet")
  6579. },
  6580. {
  6581. name: "Macro",
  6582. height: math.unit(250, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Megamacro",
  6587. height: math.unit(7, "miles")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(220, "lb"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/gemini/front.svg"
  6600. }
  6601. },
  6602. back: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(220, "lb"),
  6605. name: "Back",
  6606. image: {
  6607. source: "./media/characters/gemini/back.svg"
  6608. }
  6609. },
  6610. kneeling: {
  6611. height: math.unit(6 / 1.5, "feet"),
  6612. weight: math.unit(220, "lb"),
  6613. name: "Kneeling",
  6614. image: {
  6615. source: "./media/characters/gemini/kneeling.svg",
  6616. bottom: 0.02
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Macro",
  6623. height: math.unit(300, "meters"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Megamacro",
  6628. height: math.unit(6900, "meters")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6634. {
  6635. anthro: {
  6636. height: math.unit(2.35, "meters"),
  6637. weight: math.unit(73, "kg"),
  6638. name: "Anthro",
  6639. image: {
  6640. source: "./media/characters/alicia/anthro.svg",
  6641. extra: 2571 / 2385,
  6642. bottom: 75 / 2648
  6643. }
  6644. },
  6645. paw: {
  6646. height: math.unit(1.32, "feet"),
  6647. name: "Paw",
  6648. image: {
  6649. source: "./media/characters/alicia/paw.svg"
  6650. }
  6651. },
  6652. feral: {
  6653. height: math.unit(1.69, "meters"),
  6654. weight: math.unit(73, "kg"),
  6655. name: "Feral",
  6656. image: {
  6657. source: "./media/characters/alicia/feral.svg",
  6658. extra: 2123 / 1715,
  6659. bottom: 222 / 2349
  6660. }
  6661. },
  6662. },
  6663. [
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(2.35, "meters")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(60, "meters"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Megamacro",
  6675. height: math.unit(10000, "kilometers")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(7, "feet"),
  6684. weight: math.unit(250, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/archy/front.svg"
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(1, "inch")
  6695. },
  6696. {
  6697. name: "Shorty",
  6698. height: math.unit(5, "feet")
  6699. },
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(7, "feet")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(600, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(1, "mile")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.65, "meters"),
  6720. weight: math.unit(74, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/berri/front.svg",
  6724. extra: 857 / 837,
  6725. bottom: 18 / 877
  6726. }
  6727. },
  6728. bum: {
  6729. height: math.unit(1.46, "feet"),
  6730. name: "Bum",
  6731. image: {
  6732. source: "./media/characters/berri/bum.svg"
  6733. }
  6734. },
  6735. mouth: {
  6736. height: math.unit(0.44, "feet"),
  6737. name: "Mouth",
  6738. image: {
  6739. source: "./media/characters/berri/mouth.svg"
  6740. }
  6741. },
  6742. paw: {
  6743. height: math.unit(0.826, "feet"),
  6744. name: "Paw",
  6745. image: {
  6746. source: "./media/characters/berri/paw.svg"
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(1.65, "meters")
  6754. },
  6755. {
  6756. name: "Macro",
  6757. height: math.unit(60, "m"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Megamacro",
  6762. height: math.unit(9.213, "km")
  6763. },
  6764. {
  6765. name: "Planet Eater",
  6766. height: math.unit(489, "megameters")
  6767. },
  6768. {
  6769. name: "Teramacro",
  6770. height: math.unit(2471635000000, "meters")
  6771. },
  6772. {
  6773. name: "Examacro",
  6774. height: math.unit(8.0624e+26, "meters")
  6775. }
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(1.72, "meters"),
  6783. weight: math.unit(68, "kg"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/lexi/front.svg"
  6787. }
  6788. }
  6789. },
  6790. [
  6791. {
  6792. name: "Very Smol",
  6793. height: math.unit(10, "mm")
  6794. },
  6795. {
  6796. name: "Micro",
  6797. height: math.unit(6.8, "cm"),
  6798. default: true
  6799. },
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(1.72, "m")
  6803. }
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(1.69, "meters"),
  6811. weight: math.unit(68, "kg"),
  6812. name: "Front",
  6813. image: {
  6814. source: "./media/characters/martin/front.svg",
  6815. extra: 596 / 581
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Micro",
  6822. height: math.unit(6.85, "cm"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.69, "m")
  6828. }
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(1.69, "meters"),
  6836. weight: math.unit(68, "kg"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/juno/front.svg"
  6840. }
  6841. }
  6842. },
  6843. [
  6844. {
  6845. name: "Micro",
  6846. height: math.unit(7, "cm")
  6847. },
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(1.89, "m")
  6851. },
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(353, "meters"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(1.93, "meters"),
  6864. weight: math.unit(83, "kg"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/samantha/front.svg"
  6868. }
  6869. },
  6870. frontClothed: {
  6871. height: math.unit(1.93, "meters"),
  6872. weight: math.unit(83, "kg"),
  6873. name: "Front (Clothed)",
  6874. image: {
  6875. source: "./media/characters/samantha/front-clothed.svg"
  6876. }
  6877. },
  6878. back: {
  6879. height: math.unit(1.93, "meters"),
  6880. weight: math.unit(83, "kg"),
  6881. name: "Back",
  6882. image: {
  6883. source: "./media/characters/samantha/back.svg"
  6884. }
  6885. },
  6886. },
  6887. [
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(1.93, "m")
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(74, "meters"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro+",
  6899. height: math.unit(223, "meters"),
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(8381, "meters"),
  6904. },
  6905. {
  6906. name: "Megamacro+",
  6907. height: math.unit(12000, "kilometers")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(1.92, "meters"),
  6916. weight: math.unit(80, "kg"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/dr-clay/front.svg"
  6920. }
  6921. },
  6922. frontClothed: {
  6923. height: math.unit(1.92, "meters"),
  6924. weight: math.unit(80, "kg"),
  6925. name: "Front (Clothed)",
  6926. image: {
  6927. source: "./media/characters/dr-clay/front-clothed.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(1.92, "m")
  6935. },
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(214, "meters"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(12.237, "meters"),
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(557, "megameters"),
  6948. },
  6949. {
  6950. name: "Unimaginable",
  6951. height: math.unit(120e9, "lightyears")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(2, "meters"),
  6960. weight: math.unit(80, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Teramacro",
  6970. height: math.unit(500000, "lightyears"),
  6971. default: true
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6977. {
  6978. crux: {
  6979. height: math.unit(2, "meters"),
  6980. weight: math.unit(150, "kg"),
  6981. name: "Crux",
  6982. image: {
  6983. source: "./media/characters/vemus/crux.svg",
  6984. extra: 1074/936,
  6985. bottom: 23/1097
  6986. }
  6987. },
  6988. skunkTanuki: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(150, "kg"),
  6991. name: "Skunk-Tanuki",
  6992. image: {
  6993. source: "./media/characters/vemus/skunk-tanuki.svg",
  6994. extra: 926/893,
  6995. bottom: 20/946
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(3.75, "meters"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Big",
  7007. height: math.unit(8, "meters")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(100, "meters")
  7012. },
  7013. {
  7014. name: "Macro+",
  7015. height: math.unit(1500, "meters")
  7016. },
  7017. {
  7018. name: "Stellar",
  7019. height: math.unit(14e8, "meters")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(70, "kg"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/beherit/front.svg",
  7032. extra: 1234/1109,
  7033. bottom: 55/1289
  7034. }
  7035. }
  7036. },
  7037. [
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(6, "feet")
  7041. },
  7042. {
  7043. name: "Lorg",
  7044. height: math.unit(25, "feet"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Lorger",
  7049. height: math.unit(75, "feet")
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(200, "meters")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(150, "kg"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/everett/front.svg",
  7066. extra: 1017/866,
  7067. bottom: 86/1103
  7068. }
  7069. },
  7070. paw: {
  7071. height: math.unit(2 / 3.6, "meters"),
  7072. name: "Paw",
  7073. image: {
  7074. source: "./media/characters/everett/paw.svg"
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(15, "feet"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Lorg",
  7086. height: math.unit(70, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Lorger",
  7091. height: math.unit(250, "feet")
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(500, "meters")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(86, "kg"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/rose/front.svg",
  7108. extra: 1785/1636,
  7109. bottom: 30/1815
  7110. },
  7111. form: "liom",
  7112. default: true
  7113. },
  7114. frontSporty: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(86, "kg"),
  7117. name: "Front (Sporty)",
  7118. image: {
  7119. source: "./media/characters/rose/front-sporty.svg",
  7120. extra: 350/335,
  7121. bottom: 10/360
  7122. },
  7123. form: "liom"
  7124. },
  7125. frontAlt: {
  7126. height: math.unit(1.6, "meters"),
  7127. weight: math.unit(86, "kg"),
  7128. name: "Front (Alt)",
  7129. image: {
  7130. source: "./media/characters/rose/front-alt.svg",
  7131. extra: 299/283,
  7132. bottom: 3/302
  7133. },
  7134. form: "liom"
  7135. },
  7136. plush: {
  7137. height: math.unit(2, "meters"),
  7138. weight: math.unit(86/3, "kg"),
  7139. name: "Plush",
  7140. image: {
  7141. source: "./media/characters/rose/plush.svg",
  7142. extra: 361/337,
  7143. bottom: 11/372
  7144. },
  7145. form: "plush",
  7146. default: true
  7147. },
  7148. faeStanding: {
  7149. height: math.unit(10, "cm"),
  7150. weight: math.unit(10, "grams"),
  7151. name: "Standing",
  7152. image: {
  7153. source: "./media/characters/rose/fae-standing.svg",
  7154. extra: 1189/1060,
  7155. bottom: 27/1216
  7156. },
  7157. form: "fae",
  7158. default: true
  7159. },
  7160. faeSitting: {
  7161. height: math.unit(5, "cm"),
  7162. weight: math.unit(10, "grams"),
  7163. name: "Sitting",
  7164. image: {
  7165. source: "./media/characters/rose/fae-sitting.svg",
  7166. extra: 737/577,
  7167. bottom: 356/1093
  7168. },
  7169. form: "fae"
  7170. },
  7171. faePaw: {
  7172. height: math.unit(1.35, "cm"),
  7173. name: "Paw",
  7174. image: {
  7175. source: "./media/characters/rose/fae-paw.svg"
  7176. },
  7177. form: "fae"
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "True Micro",
  7183. height: math.unit(9, "cm"),
  7184. form: "liom"
  7185. },
  7186. {
  7187. name: "Micro",
  7188. height: math.unit(16, "cm"),
  7189. form: "liom"
  7190. },
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(1.85, "meters"),
  7194. default: true,
  7195. form: "liom"
  7196. },
  7197. {
  7198. name: "Mini-Macro",
  7199. height: math.unit(5, "meters"),
  7200. form: "liom"
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(15, "meters"),
  7205. form: "liom"
  7206. },
  7207. {
  7208. name: "True Macro",
  7209. height: math.unit(40, "meters"),
  7210. form: "liom"
  7211. },
  7212. {
  7213. name: "City Scale",
  7214. height: math.unit(1, "km"),
  7215. form: "liom"
  7216. },
  7217. {
  7218. name: "Plushie",
  7219. height: math.unit(9, "cm"),
  7220. form: "plush",
  7221. default: true
  7222. },
  7223. {
  7224. name: "Fae",
  7225. height: math.unit(10, "cm"),
  7226. form: "fae",
  7227. default: true
  7228. },
  7229. ],
  7230. {
  7231. "liom": {
  7232. name: "Liom"
  7233. },
  7234. "plush": {
  7235. name: "Plush"
  7236. },
  7237. "fae": {
  7238. name: "Fae Fox",
  7239. default: true
  7240. }
  7241. }
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(2, "meters"),
  7248. weight: math.unit(350, "lbs"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/regal/front.svg"
  7252. }
  7253. },
  7254. back: {
  7255. height: math.unit(2, "meters"),
  7256. weight: math.unit(350, "lbs"),
  7257. name: "Back",
  7258. image: {
  7259. source: "./media/characters/regal/back.svg"
  7260. }
  7261. },
  7262. },
  7263. [
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(350, "feet"),
  7267. default: true
  7268. }
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(4 + 11 / 12, "feet"),
  7276. weight: math.unit(100, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/opal/front.svg"
  7280. }
  7281. },
  7282. frontAlt: {
  7283. height: math.unit(4 + 11 / 12, "feet"),
  7284. weight: math.unit(100, "lbs"),
  7285. name: "Front (Alt)",
  7286. image: {
  7287. source: "./media/characters/opal/front-alt.svg"
  7288. }
  7289. },
  7290. },
  7291. [
  7292. {
  7293. name: "Small",
  7294. height: math.unit(4 + 11 / 12, "feet")
  7295. },
  7296. {
  7297. name: "Normal",
  7298. height: math.unit(20, "feet"),
  7299. default: true
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(120, "feet")
  7304. },
  7305. {
  7306. name: "Megamacro",
  7307. height: math.unit(80, "miles")
  7308. },
  7309. {
  7310. name: "True Size",
  7311. height: math.unit(100000, "lightyears")
  7312. },
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(200, "lbs"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/vector-wuff/front.svg"
  7324. }
  7325. }
  7326. },
  7327. [
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(2.8, "meters")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(450, "meters"),
  7335. default: true
  7336. },
  7337. {
  7338. name: "Megamacro",
  7339. height: math.unit(15, "kilometers")
  7340. }
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(256, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/dannik/front.svg"
  7352. }
  7353. }
  7354. },
  7355. [
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(69.57, "meters"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(120, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/azura-saharah/front.svg"
  7372. }
  7373. },
  7374. back: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(120, "lbs"),
  7377. name: "Back",
  7378. image: {
  7379. source: "./media/characters/azura-saharah/back.svg"
  7380. }
  7381. },
  7382. },
  7383. [
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(100, "feet"),
  7387. default: true
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7393. {
  7394. side: {
  7395. height: math.unit(5 + 4 / 12, "feet"),
  7396. weight: math.unit(163, "lbs"),
  7397. name: "Side",
  7398. image: {
  7399. source: "./media/characters/kennedy/side.svg"
  7400. }
  7401. }
  7402. },
  7403. [
  7404. {
  7405. name: "Standard Doggo",
  7406. height: math.unit(5 + 4 / 12, "feet")
  7407. },
  7408. {
  7409. name: "Big Doggo",
  7410. height: math.unit(25 + 3 / 12, "feet"),
  7411. default: true
  7412. },
  7413. ]
  7414. ))
  7415. characterMakers.push(() => makeCharacter(
  7416. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7417. {
  7418. front: {
  7419. height: math.unit(5 + 5/12, "feet"),
  7420. weight: math.unit(100, "lbs"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/odios-de-lunar/front.svg",
  7424. extra: 1468/1323,
  7425. bottom: 22/1490
  7426. }
  7427. }
  7428. },
  7429. [
  7430. {
  7431. name: "Micro",
  7432. height: math.unit(3, "inches")
  7433. },
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(5.5, "feet"),
  7437. default: true
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(100, "feet")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7447. {
  7448. back: {
  7449. height: math.unit(6, "feet"),
  7450. weight: math.unit(220, "lbs"),
  7451. name: "Back",
  7452. image: {
  7453. source: "./media/characters/mandake/back.svg"
  7454. }
  7455. }
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(7, "feet"),
  7461. default: true
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(78, "feet")
  7466. },
  7467. {
  7468. name: "Macro+",
  7469. height: math.unit(300, "meters")
  7470. },
  7471. {
  7472. name: "Macro++",
  7473. height: math.unit(2400, "feet")
  7474. },
  7475. {
  7476. name: "Megamacro",
  7477. height: math.unit(5167, "meters")
  7478. },
  7479. {
  7480. name: "Gigamacro",
  7481. height: math.unit(41769, "miles")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7487. {
  7488. front: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(120, "lbs"),
  7491. name: "Front",
  7492. image: {
  7493. source: "./media/characters/yozey/front.svg"
  7494. }
  7495. },
  7496. frontAlt: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(120, "lbs"),
  7499. name: "Front (Alt)",
  7500. image: {
  7501. source: "./media/characters/yozey/front-alt.svg"
  7502. }
  7503. },
  7504. side: {
  7505. height: math.unit(6, "feet"),
  7506. weight: math.unit(120, "lbs"),
  7507. name: "Side",
  7508. image: {
  7509. source: "./media/characters/yozey/side.svg"
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(3, "inches"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(6, "feet")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(103, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/valeska-voss/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Mini-Sized Sub",
  7540. height: math.unit(3.1, "inches")
  7541. },
  7542. {
  7543. name: "Mid-Sized Sub",
  7544. height: math.unit(6.2, "inches")
  7545. },
  7546. {
  7547. name: "Full-Sized Sub",
  7548. height: math.unit(9.3, "inches")
  7549. },
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(5 + 2 / 12, "foot"),
  7553. default: true
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(160, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/gene-zeta/front.svg",
  7566. extra: 3006 / 2826,
  7567. bottom: 182 / 3188
  7568. }
  7569. }
  7570. },
  7571. [
  7572. {
  7573. name: "Micro",
  7574. height: math.unit(6, "inches")
  7575. },
  7576. {
  7577. name: "Normal",
  7578. height: math.unit(5 + 11 / 12, "foot"),
  7579. default: true
  7580. },
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(140, "feet")
  7584. },
  7585. {
  7586. name: "Supercharged",
  7587. height: math.unit(2500, "feet")
  7588. },
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7593. {
  7594. front: {
  7595. height: math.unit(6, "feet"),
  7596. weight: math.unit(350, "lbs"),
  7597. name: "Front",
  7598. image: {
  7599. source: "./media/characters/razinox/front.svg",
  7600. extra: 1686 / 1548,
  7601. bottom: 28.2 / 1868
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(350, "lbs"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/razinox/back.svg",
  7610. extra: 1660 / 1590,
  7611. bottom: 15 / 1665
  7612. }
  7613. },
  7614. },
  7615. [
  7616. {
  7617. name: "Normal",
  7618. height: math.unit(10 + 8 / 12, "foot")
  7619. },
  7620. {
  7621. name: "Minimacro",
  7622. height: math.unit(15, "foot")
  7623. },
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(60, "foot"),
  7627. default: true
  7628. },
  7629. {
  7630. name: "Megamacro",
  7631. height: math.unit(5, "miles")
  7632. },
  7633. {
  7634. name: "Gigamacro",
  7635. height: math.unit(6000, "miles")
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7641. {
  7642. front: {
  7643. height: math.unit(6, "feet"),
  7644. weight: math.unit(150, "lbs"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/cobalt/front.svg"
  7648. }
  7649. }
  7650. },
  7651. [
  7652. {
  7653. name: "Normal",
  7654. height: math.unit(8 + 1 / 12, "foot")
  7655. },
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(111, "foot"),
  7659. default: true
  7660. },
  7661. {
  7662. name: "Supracosmic",
  7663. height: math.unit(1e42, "feet")
  7664. },
  7665. ]
  7666. ))
  7667. characterMakers.push(() => makeCharacter(
  7668. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7669. {
  7670. front: {
  7671. height: math.unit(5, "inches"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/amanda/front.svg",
  7675. extra: 926/791,
  7676. bottom: 38/964
  7677. }
  7678. },
  7679. back: {
  7680. height: math.unit(5, "inches"),
  7681. name: "Back",
  7682. image: {
  7683. source: "./media/characters/amanda/back.svg",
  7684. extra: 909/805,
  7685. bottom: 43/952
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Micro",
  7692. height: math.unit(5, "inches"),
  7693. default: true
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(2.75, "meters"),
  7702. weight: math.unit(1200, "lb"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/teal/front.svg",
  7706. extra: 2463 / 2320,
  7707. bottom: 166 / 2629
  7708. }
  7709. },
  7710. back: {
  7711. height: math.unit(2.75, "meters"),
  7712. weight: math.unit(1200, "lb"),
  7713. name: "Back",
  7714. image: {
  7715. source: "./media/characters/teal/back.svg",
  7716. extra: 2580 / 2489,
  7717. bottom: 151 / 2731
  7718. }
  7719. },
  7720. sitting: {
  7721. height: math.unit(1.9, "meters"),
  7722. weight: math.unit(1200, "lb"),
  7723. name: "Sitting",
  7724. image: {
  7725. source: "./media/characters/teal/sitting.svg",
  7726. extra: 623 / 590,
  7727. bottom: 121 / 744
  7728. }
  7729. },
  7730. standing: {
  7731. height: math.unit(2.75, "meters"),
  7732. weight: math.unit(1200, "lb"),
  7733. name: "Standing",
  7734. image: {
  7735. source: "./media/characters/teal/standing.svg",
  7736. extra: 923 / 893,
  7737. bottom: 60 / 983
  7738. }
  7739. },
  7740. stretching: {
  7741. height: math.unit(3.65, "meters"),
  7742. weight: math.unit(1200, "lb"),
  7743. name: "Stretching",
  7744. image: {
  7745. source: "./media/characters/teal/stretching.svg",
  7746. extra: 1276 / 1244,
  7747. bottom: 0 / 1276
  7748. }
  7749. },
  7750. legged: {
  7751. height: math.unit(1.3, "meters"),
  7752. weight: math.unit(100, "lb"),
  7753. name: "Legged",
  7754. image: {
  7755. source: "./media/characters/teal/legged.svg",
  7756. extra: 462 / 437,
  7757. bottom: 24 / 486
  7758. }
  7759. },
  7760. naga: {
  7761. height: math.unit(5.4, "meters"),
  7762. weight: math.unit(4000, "lb"),
  7763. name: "Naga",
  7764. image: {
  7765. source: "./media/characters/teal/naga.svg",
  7766. extra: 1902 / 1858,
  7767. bottom: 0 / 1902
  7768. }
  7769. },
  7770. hand: {
  7771. height: math.unit(0.52, "meters"),
  7772. name: "Hand",
  7773. image: {
  7774. source: "./media/characters/teal/hand.svg"
  7775. }
  7776. },
  7777. maw: {
  7778. height: math.unit(0.43, "meters"),
  7779. name: "Maw",
  7780. image: {
  7781. source: "./media/characters/teal/maw.svg"
  7782. }
  7783. },
  7784. slit: {
  7785. height: math.unit(0.25, "meters"),
  7786. name: "Slit",
  7787. image: {
  7788. source: "./media/characters/teal/slit.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(2.75, "meters"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(300, "feet")
  7801. },
  7802. {
  7803. name: "Macro+",
  7804. height: math.unit(2000, "feet")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7810. {
  7811. frontCat: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(180, "lbs"),
  7814. name: "Front (Cat)",
  7815. image: {
  7816. source: "./media/characters/ravin-amulet/front-cat.svg"
  7817. }
  7818. },
  7819. frontCatAlt: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(180, "lbs"),
  7822. name: "Front (Alt, Cat)",
  7823. image: {
  7824. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7825. }
  7826. },
  7827. frontWerewolf: {
  7828. height: math.unit(6 * 1.2, "feet"),
  7829. weight: math.unit(225, "lbs"),
  7830. name: "Front (Werewolf)",
  7831. image: {
  7832. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7833. }
  7834. },
  7835. backWerewolf: {
  7836. height: math.unit(6 * 1.2, "feet"),
  7837. weight: math.unit(225, "lbs"),
  7838. name: "Back (Werewolf)",
  7839. image: {
  7840. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Nano",
  7847. height: math.unit(1, "micrometer")
  7848. },
  7849. {
  7850. name: "Micro",
  7851. height: math.unit(1, "inch")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(6, "feet"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Macro",
  7860. height: math.unit(60, "feet")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(165, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/fluoresce/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Micro",
  7879. height: math.unit(6, "cm")
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(5 + 7 / 12, "feet"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(56, "feet")
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(1.9, "miles")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(9 + 6 / 12, "feet"),
  7901. weight: math.unit(523, "lbs"),
  7902. name: "Side",
  7903. image: {
  7904. source: "./media/characters/aurora/side.svg"
  7905. }
  7906. }
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(9 + 6 / 12, "feet")
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(96, "feet"),
  7916. default: true
  7917. },
  7918. {
  7919. name: "Macro+",
  7920. height: math.unit(243, "feet")
  7921. },
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7926. {
  7927. front: {
  7928. height: math.unit(194, "cm"),
  7929. weight: math.unit(90, "kg"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/ranek/front.svg",
  7933. extra: 1862/1791,
  7934. bottom: 80/1942
  7935. }
  7936. },
  7937. back: {
  7938. height: math.unit(194, "cm"),
  7939. weight: math.unit(90, "kg"),
  7940. name: "Back",
  7941. image: {
  7942. source: "./media/characters/ranek/back.svg",
  7943. extra: 1853/1787,
  7944. bottom: 74/1927
  7945. }
  7946. },
  7947. feral: {
  7948. height: math.unit(30, "cm"),
  7949. weight: math.unit(1.6, "lbs"),
  7950. name: "Feral",
  7951. image: {
  7952. source: "./media/characters/ranek/feral.svg",
  7953. extra: 990/631,
  7954. bottom: 29/1019
  7955. }
  7956. },
  7957. },
  7958. [
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(194, "cm"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(100, "meters")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(5 + 6 / 12, "feet"),
  7975. weight: math.unit(153, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/andrew-cooper/front.svg"
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Nano",
  7985. height: math.unit(1, "mm")
  7986. },
  7987. {
  7988. name: "Micro",
  7989. height: math.unit(2, "inches")
  7990. },
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(5 + 6 / 12, "feet"),
  7994. default: true
  7995. }
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(180, "lbs"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/akane-sato/front.svg",
  8007. extra: 1219 / 1140
  8008. }
  8009. },
  8010. back: {
  8011. height: math.unit(6, "feet"),
  8012. weight: math.unit(180, "lbs"),
  8013. name: "Back",
  8014. image: {
  8015. source: "./media/characters/akane-sato/back.svg",
  8016. extra: 1219 / 1170
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(2.5, "meters")
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(250, "meters"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(25, "km")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(6, "feet"),
  8041. weight: math.unit(65, "kg"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/rook/front.svg",
  8045. extra: 960 / 950
  8046. }
  8047. }
  8048. },
  8049. [
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(8.8, "feet")
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(88, "feet"),
  8057. default: true
  8058. },
  8059. {
  8060. name: "Megamacro",
  8061. height: math.unit(8, "miles")
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(12 + 2 / 12, "feet"),
  8070. weight: math.unit(808, "lbs"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/prodigy/front.svg"
  8074. }
  8075. }
  8076. },
  8077. [
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(12 + 2 / 12, "feet"),
  8081. default: true
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(143, "feet")
  8086. },
  8087. {
  8088. name: "Macro+",
  8089. height: math.unit(400, "feet")
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(6, "feet"),
  8098. weight: math.unit(225, "lbs"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/daniel/front.svg"
  8102. }
  8103. },
  8104. leaning: {
  8105. height: math.unit(6, "feet"),
  8106. weight: math.unit(225, "lbs"),
  8107. name: "Leaning",
  8108. image: {
  8109. source: "./media/characters/daniel/leaning.svg"
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(1000, "feet"),
  8117. default: true
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(6, "feet"),
  8126. weight: math.unit(88, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/chiros/front.svg",
  8130. extra: 306 / 226
  8131. }
  8132. },
  8133. side: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(88, "lbs"),
  8136. name: "Side",
  8137. image: {
  8138. source: "./media/characters/chiros/side.svg",
  8139. extra: 306 / 226
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6, "cm"),
  8147. default: true
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8153. {
  8154. front: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(100, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/selka/front.svg",
  8160. extra: 947 / 887
  8161. }
  8162. }
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(5, "cm"),
  8168. default: true
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(8 + 3 / 12, "feet"),
  8177. weight: math.unit(424, "lbs"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/verin/front.svg",
  8181. extra: 1845 / 1550
  8182. }
  8183. },
  8184. frontArmored: {
  8185. height: math.unit(8 + 3 / 12, "feet"),
  8186. weight: math.unit(424, "lbs"),
  8187. name: "Front (Armored)",
  8188. image: {
  8189. source: "./media/characters/verin/front-armor.svg",
  8190. extra: 1845 / 1550,
  8191. bottom: 0.01
  8192. }
  8193. },
  8194. back: {
  8195. height: math.unit(8 + 3 / 12, "feet"),
  8196. weight: math.unit(424, "lbs"),
  8197. name: "Back",
  8198. image: {
  8199. source: "./media/characters/verin/back.svg",
  8200. bottom: 0.1,
  8201. extra: 1
  8202. }
  8203. },
  8204. foot: {
  8205. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8206. name: "Foot",
  8207. image: {
  8208. source: "./media/characters/verin/foot.svg"
  8209. }
  8210. },
  8211. },
  8212. [
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(8 + 3 / 12, "feet")
  8216. },
  8217. {
  8218. name: "Minimacro",
  8219. height: math.unit(21, "feet"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(626, "feet")
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(2.718, "meters"),
  8233. weight: math.unit(150, "lbs"),
  8234. name: "Front",
  8235. image: {
  8236. source: "./media/characters/sovrim-terraquian/front.svg",
  8237. extra: 1752/1689,
  8238. bottom: 36/1788
  8239. }
  8240. },
  8241. back: {
  8242. height: math.unit(2.718, "meters"),
  8243. weight: math.unit(150, "lbs"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/sovrim-terraquian/back.svg",
  8247. extra: 1698/1657,
  8248. bottom: 58/1756
  8249. }
  8250. },
  8251. tongue: {
  8252. height: math.unit(2.865, "feet"),
  8253. name: "Tongue",
  8254. image: {
  8255. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8256. }
  8257. },
  8258. hand: {
  8259. height: math.unit(1.61, "feet"),
  8260. name: "Hand",
  8261. image: {
  8262. source: "./media/characters/sovrim-terraquian/hand.svg"
  8263. }
  8264. },
  8265. foot: {
  8266. height: math.unit(1.05, "feet"),
  8267. name: "Foot",
  8268. image: {
  8269. source: "./media/characters/sovrim-terraquian/foot.svg"
  8270. }
  8271. },
  8272. footAlt: {
  8273. height: math.unit(0.88, "feet"),
  8274. name: "Foot (Alt)",
  8275. image: {
  8276. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(2, "inches")
  8284. },
  8285. {
  8286. name: "Small",
  8287. height: math.unit(1, "meter")
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(Math.E, "meters"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(20, "meters")
  8297. },
  8298. {
  8299. name: "Macro+",
  8300. height: math.unit(400, "meters")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(7, "feet"),
  8309. weight: math.unit(489, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/reece-silvermane/front.svg",
  8313. bottom: 0.02,
  8314. extra: 1
  8315. }
  8316. },
  8317. },
  8318. [
  8319. {
  8320. name: "Macro",
  8321. height: math.unit(1.5, "miles"),
  8322. default: true
  8323. },
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(78, "kg"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/kane/front.svg",
  8335. extra: 978 / 899
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(2.1, "m"),
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(1, "km"),
  8347. default: true
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(200, "kg"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/tegon/front.svg",
  8360. bottom: 0.01,
  8361. extra: 1
  8362. }
  8363. },
  8364. },
  8365. [
  8366. {
  8367. name: "Micro",
  8368. height: math.unit(1, "inch")
  8369. },
  8370. {
  8371. name: "Normal",
  8372. height: math.unit(6 + 3 / 12, "feet"),
  8373. default: true
  8374. },
  8375. {
  8376. name: "Macro",
  8377. height: math.unit(300, "feet")
  8378. },
  8379. {
  8380. name: "Megamacro",
  8381. height: math.unit(69, "miles")
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8387. {
  8388. side: {
  8389. height: math.unit(6, "feet"),
  8390. weight: math.unit(2304, "lbs"),
  8391. name: "Side",
  8392. image: {
  8393. source: "./media/characters/arcturax/side.svg",
  8394. extra: 790 / 376,
  8395. bottom: 0.01
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(2, "inch")
  8403. },
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(6, "feet")
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(39, "feet"),
  8411. default: true
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(7, "miles")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(50, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/sentri/front.svg",
  8428. extra: 1750 / 1570,
  8429. bottom: 0.025
  8430. }
  8431. },
  8432. frontAlt: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(50, "lbs"),
  8435. name: "Front (Alt)",
  8436. image: {
  8437. source: "./media/characters/sentri/front-alt.svg",
  8438. extra: 1750 / 1570,
  8439. bottom: 0.025
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(15, "feet"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(2500, "feet")
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(5 + 8 / 12, "feet"),
  8460. weight: math.unit(130, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/corvin/front.svg",
  8464. extra: 1803 / 1629
  8465. }
  8466. },
  8467. frontShirt: {
  8468. height: math.unit(5 + 8 / 12, "feet"),
  8469. weight: math.unit(130, "lbs"),
  8470. name: "Front (Shirt)",
  8471. image: {
  8472. source: "./media/characters/corvin/front-shirt.svg",
  8473. extra: 1803 / 1629
  8474. }
  8475. },
  8476. frontPoncho: {
  8477. height: math.unit(5 + 8 / 12, "feet"),
  8478. weight: math.unit(130, "lbs"),
  8479. name: "Front (Poncho)",
  8480. image: {
  8481. source: "./media/characters/corvin/front-poncho.svg",
  8482. extra: 1803 / 1629
  8483. }
  8484. },
  8485. side: {
  8486. height: math.unit(5 + 8 / 12, "feet"),
  8487. weight: math.unit(130, "lbs"),
  8488. name: "Side",
  8489. image: {
  8490. source: "./media/characters/corvin/side.svg",
  8491. extra: 1012 / 945
  8492. }
  8493. },
  8494. back: {
  8495. height: math.unit(5 + 8 / 12, "feet"),
  8496. weight: math.unit(130, "lbs"),
  8497. name: "Back",
  8498. image: {
  8499. source: "./media/characters/corvin/back.svg",
  8500. extra: 1803 / 1629
  8501. }
  8502. },
  8503. },
  8504. [
  8505. {
  8506. name: "Micro",
  8507. height: math.unit(3, "inches")
  8508. },
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(5 + 8 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(300, "feet"),
  8516. default: true
  8517. },
  8518. {
  8519. name: "Megamacro",
  8520. height: math.unit(500, "miles")
  8521. }
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(6, "feet"),
  8529. weight: math.unit(135, "lbs"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/q/front.svg",
  8533. extra: 854 / 752,
  8534. bottom: 0.005
  8535. }
  8536. },
  8537. back: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(130, "lbs"),
  8540. name: "Back",
  8541. image: {
  8542. source: "./media/characters/q/back.svg",
  8543. extra: 854 / 752
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(90, "feet"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Extra Macro",
  8555. height: math.unit(300, "feet"),
  8556. },
  8557. {
  8558. name: "BIG WALF",
  8559. height: math.unit(750, "feet"),
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(6, "feet"),
  8568. weight: math.unit(150, "lbs"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/carley/front.svg",
  8572. extra: 3927 / 3540,
  8573. bottom: 29.2 / 735
  8574. }
  8575. }
  8576. },
  8577. [
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(6 + 3 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(185, "feet"),
  8585. default: true
  8586. },
  8587. {
  8588. name: "Megamacro",
  8589. height: math.unit(8, "miles"),
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(3, "feet"),
  8598. weight: math.unit(28, "lbs"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/citrine/front.svg"
  8602. }
  8603. }
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(3, "feet"),
  8609. default: true
  8610. }
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8615. {
  8616. front: {
  8617. height: math.unit(14, "feet"),
  8618. weight: math.unit(1450, "kg"),
  8619. capacity: math.unit(15, "people"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/aura-starwind/front.svg",
  8623. extra: 1440/1327,
  8624. bottom: 11/1451
  8625. }
  8626. },
  8627. side: {
  8628. height: math.unit(14, "feet"),
  8629. weight: math.unit(1450, "kg"),
  8630. capacity: math.unit(15, "people"),
  8631. name: "Side",
  8632. image: {
  8633. source: "./media/characters/aura-starwind/side.svg",
  8634. extra: 1654 / 1497
  8635. }
  8636. },
  8637. taur: {
  8638. height: math.unit(18, "feet"),
  8639. weight: math.unit(5500, "kg"),
  8640. capacity: math.unit(50, "people"),
  8641. name: "Taur",
  8642. image: {
  8643. source: "./media/characters/aura-starwind/taur.svg",
  8644. extra: 1760 / 1650
  8645. }
  8646. },
  8647. feral: {
  8648. height: math.unit(46, "feet"),
  8649. weight: math.unit(25000, "kg"),
  8650. capacity: math.unit(120, "people"),
  8651. name: "Feral",
  8652. image: {
  8653. source: "./media/characters/aura-starwind/feral.svg"
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(14, "feet"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(50, "meters")
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(5000, "meters")
  8670. },
  8671. {
  8672. name: "Gigamacro",
  8673. height: math.unit(100000, "kilometers")
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(2 + 7 / 12, "feet"),
  8682. weight: math.unit(32, "lbs"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/rivet/front.svg",
  8686. extra: 1716 / 1658,
  8687. bottom: 0.03
  8688. }
  8689. },
  8690. foot: {
  8691. height: math.unit(0.551, "feet"),
  8692. name: "Rivet's Foot",
  8693. image: {
  8694. source: "./media/characters/rivet/foot.svg"
  8695. },
  8696. rename: true
  8697. }
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(1.5, "inches"),
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(2 + 7 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(85, "feet")
  8712. },
  8713. {
  8714. name: "Megamacro",
  8715. height: math.unit(2.2, "km")
  8716. }
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(5 + 9 / 12, "feet"),
  8724. weight: math.unit(150, "lbs"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/coffee/front.svg",
  8728. extra: 3666 / 3032,
  8729. bottom: 0.04
  8730. }
  8731. },
  8732. foot: {
  8733. height: math.unit(1.29, "feet"),
  8734. name: "Foot",
  8735. image: {
  8736. source: "./media/characters/coffee/foot.svg"
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Micro",
  8743. height: math.unit(2, "inches"),
  8744. },
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(5 + 9 / 12, "feet"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Macro",
  8752. height: math.unit(800, "feet")
  8753. },
  8754. {
  8755. name: "Megamacro",
  8756. height: math.unit(25, "miles")
  8757. }
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(200, "lbs"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/chari-gal/front.svg",
  8769. extra: 1568 / 1385,
  8770. bottom: 0.047
  8771. }
  8772. },
  8773. gigantamax: {
  8774. height: math.unit(6 * 16, "feet"),
  8775. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8776. name: "Gigantamax",
  8777. image: {
  8778. source: "./media/characters/chari-gal/gigantamax.svg",
  8779. extra: 1124 / 888,
  8780. bottom: 0.03
  8781. }
  8782. },
  8783. },
  8784. [
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(5 + 7 / 12, "feet")
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(200, "feet"),
  8792. default: true
  8793. }
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(150, "lbs"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/nova/front.svg",
  8805. extra: 5000 / 4722,
  8806. bottom: 0.02
  8807. }
  8808. }
  8809. },
  8810. [
  8811. {
  8812. name: "Micro-",
  8813. height: math.unit(0.8, "inches")
  8814. },
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(2, "inches"),
  8818. default: true
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(3 + 1 / 12, "feet"),
  8827. weight: math.unit(21.7, "lbs"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/argent/front.svg",
  8831. extra: 1471 / 1331,
  8832. bottom: 100.8 / 1575.5
  8833. }
  8834. }
  8835. },
  8836. [
  8837. {
  8838. name: "Micro",
  8839. height: math.unit(2, "inches")
  8840. },
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(3 + 1 / 12, "feet"),
  8844. default: true
  8845. },
  8846. {
  8847. name: "Macro",
  8848. height: math.unit(120, "feet")
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8854. {
  8855. lamp: {
  8856. height: math.unit(7 * 1559 / 989, "feet"),
  8857. name: "Magic Lamp",
  8858. image: {
  8859. source: "./media/characters/mira-al-cul/lamp.svg",
  8860. extra: 1617 / 1559
  8861. }
  8862. },
  8863. front: {
  8864. height: math.unit(7, "feet"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/mira-al-cul/front.svg",
  8868. extra: 1044 / 990
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Heavily Restricted",
  8875. height: math.unit(7 * 1559 / 989, "feet")
  8876. },
  8877. {
  8878. name: "Freshly Freed",
  8879. height: math.unit(50 * 1559 / 989, "feet")
  8880. },
  8881. {
  8882. name: "World Encompassing",
  8883. height: math.unit(10000 * 1559 / 989, "miles")
  8884. },
  8885. {
  8886. name: "Galactic",
  8887. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8888. },
  8889. {
  8890. name: "Palmed Universe",
  8891. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Multiversal Matriarch",
  8896. height: math.unit(8.87e10, "yottameters")
  8897. },
  8898. {
  8899. name: "Void Mother",
  8900. height: math.unit(3.14e110, "yottaparsecs")
  8901. },
  8902. {
  8903. name: "Toying with Transcendence",
  8904. height: math.unit(1e307, "meters")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8910. {
  8911. front: {
  8912. height: math.unit(17 + 1 / 12, "feet"),
  8913. weight: math.unit(476.2 * 5, "lbs"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/kuro-shi-uchū/front.svg",
  8917. extra: 2329 / 1835,
  8918. bottom: 0.02
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Micro",
  8925. height: math.unit(2, "inches")
  8926. },
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(12, "meters")
  8930. },
  8931. {
  8932. name: "Planetary",
  8933. height: math.unit(0.00929, "AU"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Universal",
  8938. height: math.unit(20, "gigaparsecs")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(5 + 2 / 12, "feet"),
  8947. weight: math.unit(120, "lbs"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/katherine/front.svg",
  8951. extra: 2075 / 1969
  8952. }
  8953. },
  8954. dress: {
  8955. height: math.unit(5 + 2 / 12, "feet"),
  8956. weight: math.unit(120, "lbs"),
  8957. name: "Dress",
  8958. image: {
  8959. source: "./media/characters/katherine/dress.svg",
  8960. extra: 2258 / 2064
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(1, "inches"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(5 + 2 / 12, "feet")
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(100, "meters")
  8977. },
  8978. {
  8979. name: "Megamacro",
  8980. height: math.unit(80, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(7 + 8 / 12, "feet"),
  8989. weight: math.unit(250, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/yevis/front.svg",
  8993. extra: 1938 / 1755
  8994. }
  8995. }
  8996. },
  8997. [
  8998. {
  8999. name: "Mortal",
  9000. height: math.unit(7 + 8 / 12, "feet")
  9001. },
  9002. {
  9003. name: "Battle",
  9004. height: math.unit(25 + 11 / 12, "feet")
  9005. },
  9006. {
  9007. name: "Wrath",
  9008. height: math.unit(1654 + 11 / 12, "feet")
  9009. },
  9010. {
  9011. name: "Planet Destroyer",
  9012. height: math.unit(12000, "miles")
  9013. },
  9014. {
  9015. name: "Galaxy Conqueror",
  9016. height: math.unit(1.45, "zettameters"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Universal War",
  9021. height: math.unit(184, "gigaparsecs")
  9022. },
  9023. {
  9024. name: "Eternity War",
  9025. height: math.unit(1.98e55, "yottaparsecs")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(5 + 8 / 12, "feet"),
  9034. weight: math.unit(63, "kg"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/xavier/front.svg",
  9038. extra: 944 / 883
  9039. }
  9040. },
  9041. frontStretch: {
  9042. height: math.unit(5 + 8 / 12, "feet"),
  9043. weight: math.unit(63, "kg"),
  9044. name: "Stretching",
  9045. image: {
  9046. source: "./media/characters/xavier/front-stretch.svg",
  9047. extra: 962 / 820
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(5 + 8 / 12, "feet")
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(100, "meters"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "McLargeHuge",
  9063. height: math.unit(10, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(5 + 5 / 12, "feet"),
  9072. weight: math.unit(150, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/joshii/front.svg",
  9076. extra: 765 / 653,
  9077. bottom: 51 / 816
  9078. }
  9079. },
  9080. foot: {
  9081. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9082. name: "Foot",
  9083. image: {
  9084. source: "./media/characters/joshii/foot.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Micro",
  9091. height: math.unit(2, "inches"),
  9092. default: true
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5 + 5 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(785, "feet")
  9101. },
  9102. {
  9103. name: "Megamacro",
  9104. height: math.unit(24.5, "miles")
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(150, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/goddess-elizabeth/front.svg",
  9117. extra: 1800 / 1525,
  9118. bottom: 0.005
  9119. }
  9120. },
  9121. foot: {
  9122. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9123. name: "Foot",
  9124. image: {
  9125. source: "./media/characters/goddess-elizabeth/foot.svg"
  9126. }
  9127. },
  9128. mouth: {
  9129. height: math.unit(6, "feet"),
  9130. name: "Mouth",
  9131. image: {
  9132. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Micro",
  9139. height: math.unit(12, "feet")
  9140. },
  9141. {
  9142. name: "Normal",
  9143. height: math.unit(80, "miles"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Macro",
  9148. height: math.unit(15000, "parsecs")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(5 + 9 / 12, "feet"),
  9157. weight: math.unit(144, "lb"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/kara/front.svg"
  9161. }
  9162. },
  9163. feet: {
  9164. height: math.unit(6 / 6.765, "feet"),
  9165. name: "Kara's Feet",
  9166. rename: true,
  9167. image: {
  9168. source: "./media/characters/kara/feet.svg"
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(5 + 9 / 12, "feet")
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(174, "feet"),
  9180. default: true
  9181. },
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(18, "feet"),
  9189. weight: math.unit(4050, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/tyrone/front.svg",
  9193. extra: 2405 / 2270,
  9194. bottom: 182 / 2587
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(18, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(300, "feet")
  9207. },
  9208. {
  9209. name: "Megamacro",
  9210. height: math.unit(15, "km")
  9211. },
  9212. {
  9213. name: "Gigamacro",
  9214. height: math.unit(500, "km")
  9215. },
  9216. {
  9217. name: "Teramacro",
  9218. height: math.unit(0.5, "gigameters")
  9219. },
  9220. {
  9221. name: "Omnimacro",
  9222. height: math.unit(1e252, "yottauniverse")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(7 + 8 / 12, "feet"),
  9231. weight: math.unit(120, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/danny/front.svg",
  9235. extra: 1490 / 1350
  9236. }
  9237. },
  9238. back: {
  9239. height: math.unit(7 + 8 / 12, "feet"),
  9240. weight: math.unit(120, "lb"),
  9241. name: "Back",
  9242. image: {
  9243. source: "./media/characters/danny/back.svg",
  9244. extra: 1490 / 1350
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(7 + 8 / 12, "feet"),
  9252. default: true
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(3.5, "inches"),
  9261. weight: math.unit(19, "grams"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/mallow/front.svg",
  9265. extra: 471 / 431
  9266. }
  9267. },
  9268. back: {
  9269. height: math.unit(3.5, "inches"),
  9270. weight: math.unit(19, "grams"),
  9271. name: "Back",
  9272. image: {
  9273. source: "./media/characters/mallow/back.svg",
  9274. extra: 471 / 431
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(3.5, "inches"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(9, "feet"),
  9291. weight: math.unit(230, "kg"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/starry-aqua/front.svg"
  9295. }
  9296. },
  9297. back: {
  9298. height: math.unit(9, "feet"),
  9299. weight: math.unit(230, "kg"),
  9300. name: "Back",
  9301. image: {
  9302. source: "./media/characters/starry-aqua/back.svg"
  9303. }
  9304. },
  9305. hand: {
  9306. height: math.unit(9 * 0.1168, "feet"),
  9307. name: "Hand",
  9308. image: {
  9309. source: "./media/characters/starry-aqua/hand.svg"
  9310. }
  9311. },
  9312. foot: {
  9313. height: math.unit(9 * 0.18, "feet"),
  9314. name: "Foot",
  9315. image: {
  9316. source: "./media/characters/starry-aqua/foot.svg"
  9317. }
  9318. }
  9319. },
  9320. [
  9321. {
  9322. name: "Micro",
  9323. height: math.unit(3, "inches")
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(9, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(300, "feet"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Megamacro",
  9336. height: math.unit(3200, "feet")
  9337. }
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(15, "feet"),
  9345. weight: math.unit(5026, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/luka-towers/front.svg",
  9349. extra: 1269/1133,
  9350. bottom: 51/1320
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(15, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Minimacro",
  9362. height: math.unit(25, "feet")
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(320, "feet")
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(35000, "feet")
  9371. },
  9372. {
  9373. name: "Gigamacro",
  9374. height: math.unit(4000, "miles")
  9375. },
  9376. {
  9377. name: "Teramacro",
  9378. height: math.unit(15000, "miles")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(150, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/natalie-nightring/front.svg",
  9391. extra: 1,
  9392. bottom: 0.06
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Uh Oh",
  9399. height: math.unit(0.1, "mm")
  9400. },
  9401. {
  9402. name: "Small",
  9403. height: math.unit(3, "inches")
  9404. },
  9405. {
  9406. name: "Human Scale",
  9407. height: math.unit(6, "feet")
  9408. },
  9409. {
  9410. name: "Librarian",
  9411. height: math.unit(50, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Immense",
  9416. height: math.unit(200, "miles")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(180, "lbs"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/danni-rosie/front.svg",
  9429. extra: 1260 / 1128,
  9430. bottom: 0.022
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(2, "inches"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(5 + 9 / 12, "feet"),
  9447. weight: math.unit(220, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/samantha-kruse/front.svg",
  9451. extra: (985 / 935),
  9452. bottom: 0.03
  9453. }
  9454. },
  9455. frontUndressed: {
  9456. height: math.unit(5 + 9 / 12, "feet"),
  9457. weight: math.unit(220, "lb"),
  9458. name: "Front (Undressed)",
  9459. image: {
  9460. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9461. extra: (973 / 923),
  9462. bottom: 0.025
  9463. }
  9464. },
  9465. fat: {
  9466. height: math.unit(5 + 9 / 12, "feet"),
  9467. weight: math.unit(900, "lb"),
  9468. name: "Front (Fat)",
  9469. image: {
  9470. source: "./media/characters/samantha-kruse/fat.svg",
  9471. extra: 2688 / 2561
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Normal",
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. default: true
  9480. }
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9485. {
  9486. back: {
  9487. height: math.unit(5 + 4 / 12, "feet"),
  9488. weight: math.unit(4963, "lb"),
  9489. name: "Back",
  9490. image: {
  9491. source: "./media/characters/amelia-rosie/back.svg",
  9492. extra: 1113 / 963,
  9493. bottom: 0.01
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Level 0",
  9500. height: math.unit(5 + 4 / 12, "feet")
  9501. },
  9502. {
  9503. name: "Level 1",
  9504. height: math.unit(164597, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Level 2",
  9509. height: math.unit(956243, "miles")
  9510. },
  9511. {
  9512. name: "Level 3",
  9513. height: math.unit(29421709423, "miles")
  9514. },
  9515. {
  9516. name: "Level 4",
  9517. height: math.unit(154, "lightyears")
  9518. },
  9519. {
  9520. name: "Level 5",
  9521. height: math.unit(4738272, "lightyears")
  9522. },
  9523. {
  9524. name: "Level 6",
  9525. height: math.unit(145787152896, "lightyears")
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(5 + 11 / 12, "feet"),
  9534. weight: math.unit(65, "kg"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/rook-kitara/front.svg",
  9538. extra: 1347 / 1274,
  9539. bottom: 0.005
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Totally Unfair",
  9546. height: math.unit(1.8, "mm")
  9547. },
  9548. {
  9549. name: "Lap Rookie",
  9550. height: math.unit(1.4, "feet")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(5 + 11 / 12, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "How Did This Happen",
  9559. height: math.unit(80, "miles")
  9560. }
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(7, "feet"),
  9568. weight: math.unit(300, "lb"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/pisces/front.svg",
  9572. extra: 2255 / 2115,
  9573. bottom: 0.03
  9574. }
  9575. },
  9576. back: {
  9577. height: math.unit(7, "feet"),
  9578. weight: math.unit(300, "lb"),
  9579. name: "Back",
  9580. image: {
  9581. source: "./media/characters/pisces/back.svg",
  9582. extra: 2146 / 2055,
  9583. bottom: 0.04
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Normal",
  9590. height: math.unit(7, "feet"),
  9591. default: true
  9592. },
  9593. {
  9594. name: "Swimming Pool",
  9595. height: math.unit(12.2, "meters")
  9596. },
  9597. {
  9598. name: "Olympic Swimming Pool",
  9599. height: math.unit(56.3, "meters")
  9600. },
  9601. {
  9602. name: "Lake Superior",
  9603. height: math.unit(93900, "meters")
  9604. },
  9605. {
  9606. name: "Mediterranean Sea",
  9607. height: math.unit(644457, "meters")
  9608. },
  9609. {
  9610. name: "World's Oceans",
  9611. height: math.unit(4567491, "meters")
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(2.3, "meters"),
  9620. weight: math.unit(120, "kg"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/zelas/front.svg"
  9624. }
  9625. },
  9626. side: {
  9627. height: math.unit(2.3, "meters"),
  9628. weight: math.unit(120, "kg"),
  9629. name: "Side",
  9630. image: {
  9631. source: "./media/characters/zelas/side.svg"
  9632. }
  9633. },
  9634. back: {
  9635. height: math.unit(2.3, "meters"),
  9636. weight: math.unit(120, "kg"),
  9637. name: "Back",
  9638. image: {
  9639. source: "./media/characters/zelas/back.svg"
  9640. }
  9641. },
  9642. foot: {
  9643. height: math.unit(1.116, "feet"),
  9644. name: "Foot",
  9645. image: {
  9646. source: "./media/characters/zelas/foot.svg"
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(2.3, "meters")
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(30, "meters"),
  9658. default: true
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(1, "inch"),
  9667. weight: math.unit(0.21, "grams"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/talbot/front.svg",
  9671. extra: 594 / 544
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(1, "inch"),
  9679. default: true
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9685. {
  9686. front: {
  9687. height: math.unit(3 + 3 / 12, "feet"),
  9688. weight: math.unit(51.8, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/fliss/front.svg",
  9692. extra: 840 / 640
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Teeny Tiny",
  9699. height: math.unit(1, "mm")
  9700. },
  9701. {
  9702. name: "Small",
  9703. height: math.unit(1, "inch"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "Standard Sylveon",
  9708. height: math.unit(3 + 3 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Large Nuisance",
  9712. height: math.unit(33, "feet")
  9713. },
  9714. {
  9715. name: "City Filler",
  9716. height: math.unit(3000, "feet")
  9717. },
  9718. {
  9719. name: "New Horizon",
  9720. height: math.unit(6000, "miles")
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(5, "cm"),
  9729. weight: math.unit(1.94, "g"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/fleta/front.svg",
  9733. extra: 835 / 803
  9734. }
  9735. },
  9736. back: {
  9737. height: math.unit(5, "cm"),
  9738. weight: math.unit(1.94, "g"),
  9739. name: "Back",
  9740. image: {
  9741. source: "./media/characters/fleta/back.svg",
  9742. extra: 835 / 803
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Micro",
  9749. height: math.unit(5, "cm"),
  9750. default: true
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(225, "lb"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/dominic/front.svg",
  9763. extra: 1770 / 1620,
  9764. bottom: 0.025
  9765. }
  9766. },
  9767. back: {
  9768. height: math.unit(6, "feet"),
  9769. weight: math.unit(225, "lb"),
  9770. name: "Back",
  9771. image: {
  9772. source: "./media/characters/dominic/back.svg",
  9773. extra: 1745 / 1620,
  9774. bottom: 0.065
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Nano",
  9781. height: math.unit(0.1, "mm")
  9782. },
  9783. {
  9784. name: "Micro-",
  9785. height: math.unit(1, "mm")
  9786. },
  9787. {
  9788. name: "Micro",
  9789. height: math.unit(4, "inches")
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(6 + 4 / 12, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Macro",
  9798. height: math.unit(115, "feet")
  9799. },
  9800. {
  9801. name: "Macro+",
  9802. height: math.unit(955, "feet")
  9803. },
  9804. {
  9805. name: "Megamacro",
  9806. height: math.unit(8990, "feet")
  9807. },
  9808. {
  9809. name: "Gigmacro",
  9810. height: math.unit(9310, "miles")
  9811. },
  9812. {
  9813. name: "Teramacro",
  9814. height: math.unit(1567005010, "miles")
  9815. },
  9816. {
  9817. name: "Examacro",
  9818. height: math.unit(1425, "parsecs")
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(400, "feet"),
  9827. weight: math.unit(44444444, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/major-colonel/front.svg"
  9831. }
  9832. },
  9833. back: {
  9834. height: math.unit(400, "feet"),
  9835. weight: math.unit(44444444, "lb"),
  9836. name: "Back",
  9837. image: {
  9838. source: "./media/characters/major-colonel/back.svg"
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(400, "feet"),
  9846. default: true
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9852. {
  9853. catFront: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(120, "lb"),
  9856. name: "Front (Cat Side)",
  9857. image: {
  9858. source: "./media/characters/axel-lycan/cat-front.svg",
  9859. extra: 430 / 402,
  9860. bottom: 43 / 472.35
  9861. }
  9862. },
  9863. catBack: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(120, "lb"),
  9866. name: "Back (Cat Side)",
  9867. image: {
  9868. source: "./media/characters/axel-lycan/cat-back.svg",
  9869. extra: 447 / 419,
  9870. bottom: 23.3 / 469
  9871. }
  9872. },
  9873. wolfFront: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(120, "lb"),
  9876. name: "Front (Wolf Side)",
  9877. image: {
  9878. source: "./media/characters/axel-lycan/wolf-front.svg",
  9879. extra: 485 / 456,
  9880. bottom: 19 / 504
  9881. }
  9882. },
  9883. wolfBack: {
  9884. height: math.unit(6, "feet"),
  9885. weight: math.unit(120, "lb"),
  9886. name: "Back (Wolf Side)",
  9887. image: {
  9888. source: "./media/characters/axel-lycan/wolf-back.svg",
  9889. extra: 475 / 438,
  9890. bottom: 39.2 / 514
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Macro",
  9897. height: math.unit(1, "km"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(5 + 9 / 12, "feet"),
  9907. weight: math.unit(175, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/vanrel-hyena/front.svg",
  9911. extra: 1086 / 1010,
  9912. bottom: 0.04
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(5 + 9 / 12, "feet"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(103, "lb"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/abbott-absol/front.svg",
  9933. extra: 2010 / 1842
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Megamicro",
  9940. height: math.unit(0.1, "mm")
  9941. },
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(1, "inch")
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(6, "feet"),
  9949. default: true
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(264, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/hector/front.svg",
  9962. extra: 2280 / 2130,
  9963. bottom: 0.07
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(12.25, "foot"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(160, "feet")
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9981. {
  9982. front: {
  9983. height: math.unit(6, "feet"),
  9984. weight: math.unit(150, "lb"),
  9985. name: "Front",
  9986. image: {
  9987. source: "./media/characters/sal/front.svg",
  9988. extra: 1846 / 1699,
  9989. bottom: 0.04
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(10, "miles"),
  9997. default: true
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10003. {
  10004. front: {
  10005. height: math.unit(3, "meters"),
  10006. weight: math.unit(450, "kg"),
  10007. name: "front",
  10008. image: {
  10009. source: "./media/characters/ranger/front.svg",
  10010. extra: 2401 / 2243,
  10011. bottom: 0.05
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(3, "meters"),
  10019. default: true
  10020. },
  10021. ]
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10025. {
  10026. front: {
  10027. height: math.unit(14, "feet"),
  10028. weight: math.unit(800, "kg"),
  10029. name: "Front",
  10030. image: {
  10031. source: "./media/characters/theresa/front.svg",
  10032. extra: 3575 / 3346,
  10033. bottom: 0.03
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(14, "feet"),
  10041. default: true
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10047. {
  10048. front: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(3, "kg"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/ine/front.svg",
  10054. extra: 678 / 539,
  10055. bottom: 0.023
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(2.265, "feet"),
  10063. default: true
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(5, "feet"),
  10072. weight: math.unit(30, "kg"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/vial/front.svg",
  10076. extra: 1365 / 1277,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(5, "feet"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10091. {
  10092. side: {
  10093. height: math.unit(3.4, "meters"),
  10094. weight: math.unit(1000, "lb"),
  10095. name: "Side",
  10096. image: {
  10097. source: "./media/characters/rovoska/side.svg",
  10098. extra: 4403 / 1515
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(3.4, "meters"),
  10106. default: true
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(8, "feet"),
  10115. weight: math.unit(315, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/gunner-rotthbauer/front.svg"
  10119. }
  10120. },
  10121. back: {
  10122. height: math.unit(8, "feet"),
  10123. weight: math.unit(315, "lb"),
  10124. name: "Back",
  10125. image: {
  10126. source: "./media/characters/gunner-rotthbauer/back.svg"
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Micro",
  10133. height: math.unit(3.5, "inches")
  10134. },
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(8, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(250, "feet")
  10143. },
  10144. {
  10145. name: "Megamacro",
  10146. height: math.unit(1, "AU")
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(5 + 5 / 12, "feet"),
  10155. weight: math.unit(140, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/allatia/front.svg",
  10159. extra: 1227 / 1180,
  10160. bottom: 0.027
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 5 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(250, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(8, "miles")
  10177. }
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(120, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/tene/front.svg",
  10189. extra: 814/750,
  10190. bottom: 36/850
  10191. }
  10192. },
  10193. stomping: {
  10194. height: math.unit(2.025, "meters"),
  10195. weight: math.unit(120, "lb"),
  10196. name: "Stomping",
  10197. image: {
  10198. source: "./media/characters/tene/stomping.svg",
  10199. extra: 885/821,
  10200. bottom: 15/900
  10201. }
  10202. },
  10203. sitting: {
  10204. height: math.unit(1, "meter"),
  10205. weight: math.unit(120, "lb"),
  10206. name: "Sitting",
  10207. image: {
  10208. source: "./media/characters/tene/sitting.svg",
  10209. extra: 396/366,
  10210. bottom: 79/475
  10211. }
  10212. },
  10213. smiling: {
  10214. height: math.unit(1.2, "feet"),
  10215. name: "Smiling",
  10216. image: {
  10217. source: "./media/characters/tene/smiling.svg",
  10218. extra: 1364/1071,
  10219. bottom: 0/1364
  10220. }
  10221. },
  10222. smug: {
  10223. height: math.unit(1.3, "feet"),
  10224. name: "Smug",
  10225. image: {
  10226. source: "./media/characters/tene/smug.svg",
  10227. extra: 1323/1082,
  10228. bottom: 0/1323
  10229. }
  10230. },
  10231. feral: {
  10232. height: math.unit(3.9, "feet"),
  10233. weight: math.unit(250, "lb"),
  10234. name: "Feral",
  10235. image: {
  10236. source: "./media/characters/tene/feral.svg",
  10237. extra: 717 / 458,
  10238. bottom: 0.179
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(6, "feet")
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(300, "feet"),
  10250. default: true
  10251. },
  10252. {
  10253. name: "Megamacro",
  10254. height: math.unit(5, "miles")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10260. {
  10261. side: {
  10262. height: math.unit(6, "feet"),
  10263. name: "Side",
  10264. image: {
  10265. source: "./media/characters/evander/side.svg",
  10266. extra: 877 / 477
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(0.83, "meters"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(12, "feet"),
  10283. weight: math.unit(1000, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10287. extra: 1762 / 1611
  10288. }
  10289. },
  10290. back: {
  10291. height: math.unit(12, "feet"),
  10292. weight: math.unit(1000, "lb"),
  10293. name: "Back",
  10294. image: {
  10295. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10296. extra: 1762 / 1611
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(12, "feet"),
  10304. default: true
  10305. },
  10306. {
  10307. name: "Kaiju",
  10308. height: math.unit(150, "feet")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(150, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/zero-alurus/front.svg"
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(150, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/zero-alurus/back.svg"
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(5 + 10 / 12, "feet")
  10336. },
  10337. {
  10338. name: "Macro",
  10339. height: math.unit(60, "feet"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Macro+",
  10344. height: math.unit(450, "feet")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(200, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/mega-shi/front.svg",
  10357. extra: 1279 / 1250,
  10358. bottom: 0.02
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(200, "lb"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/mega-shi/back.svg",
  10367. extra: 1279 / 1250,
  10368. bottom: 0.02
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Micro",
  10375. height: math.unit(16 + 6 / 12, "feet")
  10376. },
  10377. {
  10378. name: "Third Dimension",
  10379. height: math.unit(40, "meters")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(660, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Megamacro",
  10388. height: math.unit(10, "miles")
  10389. },
  10390. {
  10391. name: "Planetary Launch",
  10392. height: math.unit(500, "miles")
  10393. },
  10394. {
  10395. name: "Interstellar",
  10396. height: math.unit(1e9, "miles")
  10397. },
  10398. {
  10399. name: "Leaving the Universe",
  10400. height: math.unit(1, "gigaparsec")
  10401. },
  10402. {
  10403. name: "Travelling Universes",
  10404. height: math.unit(30e15, "parsecs")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(5 + 4/12, "feet"),
  10413. weight: math.unit(120, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/odyssey/front.svg",
  10417. extra: 1747/1571,
  10418. bottom: 47/1794
  10419. }
  10420. },
  10421. side: {
  10422. height: math.unit(5.1, "feet"),
  10423. weight: math.unit(120, "lb"),
  10424. name: "Side",
  10425. image: {
  10426. source: "./media/characters/odyssey/side.svg",
  10427. extra: 1847/1619,
  10428. bottom: 47/1894
  10429. }
  10430. },
  10431. lounging: {
  10432. height: math.unit(1.464, "feet"),
  10433. weight: math.unit(120, "lb"),
  10434. name: "Lounging",
  10435. image: {
  10436. source: "./media/characters/odyssey/lounging.svg",
  10437. extra: 1235/837,
  10438. bottom: 551/1786
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(5 + 4 / 12, "feet")
  10446. },
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(1, "km")
  10450. },
  10451. {
  10452. name: "Megamacro",
  10453. height: math.unit(3000, "km")
  10454. },
  10455. {
  10456. name: "Gigamacro",
  10457. height: math.unit(1, "AU"),
  10458. default: true
  10459. },
  10460. {
  10461. name: "Omniversal",
  10462. height: math.unit(100e14, "lightyears")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(300, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/mekuto/front.svg",
  10475. extra: 921 / 832,
  10476. bottom: 0.03
  10477. }
  10478. },
  10479. hand: {
  10480. height: math.unit(6 / 10.24, "feet"),
  10481. name: "Hand",
  10482. image: {
  10483. source: "./media/characters/mekuto/hand.svg"
  10484. }
  10485. },
  10486. foot: {
  10487. height: math.unit(6 / 5.05, "feet"),
  10488. name: "Foot",
  10489. image: {
  10490. source: "./media/characters/mekuto/foot.svg"
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Minimicro",
  10497. height: math.unit(0.2, "inches")
  10498. },
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(1.5, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(5 + 11 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Minimacro",
  10510. height: math.unit(17 + 9 / 12, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(177.5, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(152, "miles")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6.5, "inches"),
  10527. weight: math.unit(13, "oz"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/dafydd-tomos/front.svg",
  10531. extra: 2990 / 2603,
  10532. bottom: 0.03
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Micro",
  10539. height: math.unit(6.5, "inches"),
  10540. default: true
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(150, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/splinter/front.svg",
  10553. extra: 2990 / 2882,
  10554. bottom: 0.04
  10555. }
  10556. },
  10557. back: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(150, "lb"),
  10560. name: "Back",
  10561. image: {
  10562. source: "./media/characters/splinter/back.svg",
  10563. extra: 2990 / 2882,
  10564. bottom: 0.04
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Normal",
  10571. height: math.unit(6, "feet")
  10572. },
  10573. {
  10574. name: "Macro",
  10575. height: math.unit(230, "meters"),
  10576. default: true
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(4 + 10 / 12, "feet"),
  10585. weight: math.unit(480, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/snow-gabumon/front.svg",
  10589. extra: 1140 / 963,
  10590. bottom: 0.058
  10591. }
  10592. },
  10593. back: {
  10594. height: math.unit(4 + 10 / 12, "feet"),
  10595. weight: math.unit(480, "lb"),
  10596. name: "Back",
  10597. image: {
  10598. source: "./media/characters/snow-gabumon/back.svg",
  10599. extra: 1115 / 962,
  10600. bottom: 0.041
  10601. }
  10602. },
  10603. frontUndresed: {
  10604. height: math.unit(4 + 10 / 12, "feet"),
  10605. weight: math.unit(480, "lb"),
  10606. name: "Front (Undressed)",
  10607. image: {
  10608. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10609. extra: 1061 / 960,
  10610. bottom: 0.045
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Micro",
  10617. height: math.unit(1, "inch")
  10618. },
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(4 + 10 / 12, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Macro",
  10626. height: math.unit(200, "feet")
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(120, "miles")
  10631. },
  10632. {
  10633. name: "Gigamacro",
  10634. height: math.unit(9800, "miles")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(1.7, "meters"),
  10643. weight: math.unit(140, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/moody/front.svg",
  10647. extra: 3226 / 3007,
  10648. bottom: 0.087
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Micro",
  10655. height: math.unit(1, "mm")
  10656. },
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(1.7, "meters"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Macro",
  10664. height: math.unit(80, "meters")
  10665. },
  10666. {
  10667. name: "Macro+",
  10668. height: math.unit(500, "meters")
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10674. {
  10675. front: {
  10676. height: math.unit(6, "feet"),
  10677. weight: math.unit(150, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/zyas/front.svg",
  10681. extra: 1180 / 1120,
  10682. bottom: 0.045
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(10, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Macro",
  10694. height: math.unit(500, "feet")
  10695. },
  10696. {
  10697. name: "Megamacro",
  10698. height: math.unit(5, "miles")
  10699. },
  10700. {
  10701. name: "Teramacro",
  10702. height: math.unit(150000, "miles")
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10708. {
  10709. front: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(150, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/cuon/front.svg",
  10715. extra: 1390 / 1320,
  10716. bottom: 0.008
  10717. }
  10718. },
  10719. },
  10720. [
  10721. {
  10722. name: "Micro",
  10723. height: math.unit(3, "inches")
  10724. },
  10725. {
  10726. name: "Normal",
  10727. height: math.unit(18 + 9 / 12, "feet"),
  10728. default: true
  10729. },
  10730. {
  10731. name: "Macro",
  10732. height: math.unit(360, "feet")
  10733. },
  10734. {
  10735. name: "Megamacro",
  10736. height: math.unit(360, "miles")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(2.4, "meters"),
  10745. weight: math.unit(70, "kg"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/nyanuxk/front.svg",
  10749. extra: 1172 / 1084,
  10750. bottom: 0.065
  10751. }
  10752. },
  10753. side: {
  10754. height: math.unit(2.4, "meters"),
  10755. weight: math.unit(70, "kg"),
  10756. name: "Side",
  10757. image: {
  10758. source: "./media/characters/nyanuxk/side.svg",
  10759. extra: 1190 / 1132,
  10760. bottom: 0.007
  10761. }
  10762. },
  10763. back: {
  10764. height: math.unit(2.4, "meters"),
  10765. weight: math.unit(70, "kg"),
  10766. name: "Back",
  10767. image: {
  10768. source: "./media/characters/nyanuxk/back.svg",
  10769. extra: 1200 / 1141,
  10770. bottom: 0.015
  10771. }
  10772. },
  10773. foot: {
  10774. height: math.unit(0.52, "meters"),
  10775. name: "Foot",
  10776. image: {
  10777. source: "./media/characters/nyanuxk/foot.svg"
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Micro",
  10784. height: math.unit(2, "cm")
  10785. },
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(2.4, "meters"),
  10789. default: true
  10790. },
  10791. {
  10792. name: "Smaller Macro",
  10793. height: math.unit(120, "meters")
  10794. },
  10795. {
  10796. name: "Bigger Macro",
  10797. height: math.unit(1.2, "km")
  10798. },
  10799. {
  10800. name: "Megamacro",
  10801. height: math.unit(15, "kilometers")
  10802. },
  10803. {
  10804. name: "Gigamacro",
  10805. height: math.unit(2000, "km")
  10806. },
  10807. {
  10808. name: "Teramacro",
  10809. height: math.unit(500000, "km")
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10815. {
  10816. side: {
  10817. height: math.unit(6, "feet"),
  10818. name: "Side",
  10819. image: {
  10820. source: "./media/characters/ailbhe/side.svg",
  10821. extra: 757 / 464,
  10822. bottom: 0.041
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(1.07, "meters"),
  10830. default: true
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(120, "kg"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/zevulfius/front.svg",
  10843. extra: 965 / 903
  10844. }
  10845. },
  10846. side: {
  10847. height: math.unit(6, "feet"),
  10848. weight: math.unit(120, "kg"),
  10849. name: "Side",
  10850. image: {
  10851. source: "./media/characters/zevulfius/side.svg",
  10852. extra: 939 / 900
  10853. }
  10854. },
  10855. back: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(120, "kg"),
  10858. name: "Back",
  10859. image: {
  10860. source: "./media/characters/zevulfius/back.svg",
  10861. extra: 918 / 854,
  10862. bottom: 0.005
  10863. }
  10864. },
  10865. foot: {
  10866. height: math.unit(6 / 3.72, "feet"),
  10867. name: "Foot",
  10868. image: {
  10869. source: "./media/characters/zevulfius/foot.svg"
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(750, "meters")
  10877. },
  10878. {
  10879. name: "Megamacro",
  10880. height: math.unit(20, "km"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Gigamacro",
  10885. height: math.unit(2000, "km")
  10886. },
  10887. {
  10888. name: "Teramacro",
  10889. height: math.unit(250000, "km")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(100, "feet"),
  10898. weight: math.unit(350, "kg"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/rikes/front.svg",
  10902. extra: 1565 / 1483,
  10903. bottom: 0.017
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(100, "feet"),
  10911. default: true
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(8, "feet"),
  10920. weight: math.unit(356, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/adam-silver-mane/front.svg",
  10924. extra: 1036/937,
  10925. bottom: 63/1099
  10926. }
  10927. },
  10928. side: {
  10929. height: math.unit(8, "feet"),
  10930. weight: math.unit(356, "lb"),
  10931. name: "Side",
  10932. image: {
  10933. source: "./media/characters/adam-silver-mane/side.svg",
  10934. extra: 997/901,
  10935. bottom: 59/1056
  10936. }
  10937. },
  10938. frontNsfw: {
  10939. height: math.unit(8, "feet"),
  10940. weight: math.unit(356, "lb"),
  10941. name: "Front (NSFW)",
  10942. image: {
  10943. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10944. extra: 1036/937,
  10945. bottom: 63/1099
  10946. }
  10947. },
  10948. sideNsfw: {
  10949. height: math.unit(8, "feet"),
  10950. weight: math.unit(356, "lb"),
  10951. name: "Side (NSFW)",
  10952. image: {
  10953. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10954. extra: 997/901,
  10955. bottom: 59/1056
  10956. }
  10957. },
  10958. dick: {
  10959. height: math.unit(2.1, "feet"),
  10960. name: "Dick",
  10961. image: {
  10962. source: "./media/characters/adam-silver-mane/dick.svg"
  10963. }
  10964. },
  10965. taur: {
  10966. height: math.unit(16, "feet"),
  10967. weight: math.unit(1500, "kg"),
  10968. name: "Taur",
  10969. image: {
  10970. source: "./media/characters/adam-silver-mane/taur.svg",
  10971. extra: 1713 / 1571,
  10972. bottom: 0.01
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Normal",
  10979. height: math.unit(8, "feet")
  10980. },
  10981. {
  10982. name: "Minimacro",
  10983. height: math.unit(80, "feet")
  10984. },
  10985. {
  10986. name: "MDA",
  10987. height: math.unit(80, "meters")
  10988. },
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(800, "feet"),
  10992. default: true
  10993. },
  10994. {
  10995. name: "Megamacro",
  10996. height: math.unit(8000, "feet")
  10997. },
  10998. {
  10999. name: "Gigamacro",
  11000. height: math.unit(800, "miles")
  11001. },
  11002. {
  11003. name: "Teramacro",
  11004. height: math.unit(80000, "miles")
  11005. },
  11006. {
  11007. name: "Celestial",
  11008. height: math.unit(8e6, "miles")
  11009. },
  11010. {
  11011. name: "Star Dragon",
  11012. height: math.unit(800000, "parsecs")
  11013. },
  11014. {
  11015. name: "Godly",
  11016. height: math.unit(800, "teraparsecs")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(150, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/ky'owin/front.svg",
  11029. extra: 3888 / 3068,
  11030. bottom: 0.015
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(6 + 8 / 12, "feet")
  11038. },
  11039. {
  11040. name: "Large",
  11041. height: math.unit(68, "feet")
  11042. },
  11043. {
  11044. name: "Macro",
  11045. height: math.unit(132, "feet")
  11046. },
  11047. {
  11048. name: "Macro+",
  11049. height: math.unit(340, "feet")
  11050. },
  11051. {
  11052. name: "Macro++",
  11053. height: math.unit(680, "feet"),
  11054. default: true
  11055. },
  11056. {
  11057. name: "Megamacro",
  11058. height: math.unit(1, "mile")
  11059. },
  11060. {
  11061. name: "Megamacro+",
  11062. height: math.unit(10, "miles")
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11068. {
  11069. front: {
  11070. height: math.unit(4, "feet"),
  11071. weight: math.unit(50, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/mal/front.svg",
  11075. extra: 785 / 724,
  11076. bottom: 0.07
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(4, "inches")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(4, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(200, "feet")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/jordan-deware/front.svg",
  11105. extra: 1191 / 1012
  11106. }
  11107. },
  11108. },
  11109. [
  11110. {
  11111. name: "Nano",
  11112. height: math.unit(0.01, "mm")
  11113. },
  11114. {
  11115. name: "Minimicro",
  11116. height: math.unit(1, "mm")
  11117. },
  11118. {
  11119. name: "Micro",
  11120. height: math.unit(0.5, "inches")
  11121. },
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(4, "feet"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Minimacro",
  11129. height: math.unit(40, "meters")
  11130. },
  11131. {
  11132. name: "Small Macro",
  11133. height: math.unit(400, "meters")
  11134. },
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(4, "miles")
  11138. },
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(40, "miles")
  11142. },
  11143. {
  11144. name: "Megamacro+",
  11145. height: math.unit(400, "miles")
  11146. },
  11147. {
  11148. name: "Gigamacro",
  11149. height: math.unit(400000, "miles")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11155. {
  11156. side: {
  11157. height: math.unit(6, "feet"),
  11158. weight: math.unit(150, "lb"),
  11159. name: "Side",
  11160. image: {
  11161. source: "./media/characters/kimiko/side.svg",
  11162. extra: 600 / 358
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(15, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(220, "feet")
  11175. },
  11176. {
  11177. name: "Macro+",
  11178. height: math.unit(1450, "feet")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(11500, "feet")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(9500, "miles")
  11187. },
  11188. {
  11189. name: "Teramacro",
  11190. height: math.unit(2208005005, "miles")
  11191. },
  11192. {
  11193. name: "Examacro",
  11194. height: math.unit(2750, "parsecs")
  11195. },
  11196. {
  11197. name: "Zettamacro",
  11198. height: math.unit(101500, "parsecs")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11204. {
  11205. front: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(70, "kg"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/andrew-sleepy/front.svg"
  11211. }
  11212. },
  11213. side: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(70, "kg"),
  11216. name: "Side",
  11217. image: {
  11218. source: "./media/characters/andrew-sleepy/side.svg"
  11219. }
  11220. },
  11221. },
  11222. [
  11223. {
  11224. name: "Micro",
  11225. height: math.unit(1, "mm"),
  11226. default: true
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/judio/front.svg",
  11239. extra: 1258 / 1110
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(5 + 6 / 12, "feet")
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(1000, "feet"),
  11251. default: true
  11252. },
  11253. {
  11254. name: "Megamacro",
  11255. height: math.unit(10, "miles")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11261. {
  11262. frontDressed: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(68, "kg"),
  11265. name: "Front (Dressed)",
  11266. image: {
  11267. source: "./media/characters/nomaxice/front-dressed.svg",
  11268. extra: 1137/824,
  11269. bottom: 74/1211
  11270. }
  11271. },
  11272. frontShorts: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(68, "kg"),
  11275. name: "Front (Shorts)",
  11276. image: {
  11277. source: "./media/characters/nomaxice/front-shorts.svg",
  11278. extra: 1137/824,
  11279. bottom: 74/1211
  11280. }
  11281. },
  11282. back: {
  11283. height: math.unit(6, "feet"),
  11284. weight: math.unit(68, "kg"),
  11285. name: "Back",
  11286. image: {
  11287. source: "./media/characters/nomaxice/back.svg",
  11288. extra: 822/786,
  11289. bottom: 39/861
  11290. }
  11291. },
  11292. hand: {
  11293. height: math.unit(0.565, "feet"),
  11294. name: "Hand",
  11295. image: {
  11296. source: "./media/characters/nomaxice/hand.svg"
  11297. }
  11298. },
  11299. foot: {
  11300. height: math.unit(1, "feet"),
  11301. name: "Foot",
  11302. image: {
  11303. source: "./media/characters/nomaxice/foot.svg"
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Micro",
  11310. height: math.unit(8, "cm")
  11311. },
  11312. {
  11313. name: "Norm",
  11314. height: math.unit(1.82, "m")
  11315. },
  11316. {
  11317. name: "Norm+",
  11318. height: math.unit(8.8, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Big",
  11323. height: math.unit(8, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(18, "meters")
  11328. },
  11329. {
  11330. name: "Macro+",
  11331. height: math.unit(88, "meters")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(12, "feet"),
  11340. weight: math.unit(1.5, "tons"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/dydros/front.svg",
  11344. extra: 863 / 800,
  11345. bottom: 0.015
  11346. }
  11347. },
  11348. back: {
  11349. height: math.unit(12, "feet"),
  11350. weight: math.unit(1.5, "tons"),
  11351. name: "Back",
  11352. image: {
  11353. source: "./media/characters/dydros/back.svg",
  11354. extra: 900 / 843,
  11355. bottom: 0.005
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(12, "feet"),
  11363. default: true
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(100, "kg"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/riggi/front.svg",
  11376. extra: 5787 / 5303
  11377. }
  11378. },
  11379. hyper: {
  11380. height: math.unit(6 * 5 / 3, "feet"),
  11381. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11382. name: "Hyper",
  11383. image: {
  11384. source: "./media/characters/riggi/hyper.svg",
  11385. extra: 3595 / 3485
  11386. }
  11387. },
  11388. },
  11389. [
  11390. {
  11391. name: "Small Macro",
  11392. height: math.unit(50, "feet")
  11393. },
  11394. {
  11395. name: "Default",
  11396. height: math.unit(200, "feet"),
  11397. default: true
  11398. },
  11399. {
  11400. name: "Loom",
  11401. height: math.unit(10000, "feet")
  11402. },
  11403. {
  11404. name: "Cruising Altitude",
  11405. height: math.unit(30000, "feet")
  11406. },
  11407. {
  11408. name: "Megamacro",
  11409. height: math.unit(100, "miles")
  11410. },
  11411. {
  11412. name: "Continent Sized",
  11413. height: math.unit(2800, "miles")
  11414. },
  11415. {
  11416. name: "Earth Sized",
  11417. height: math.unit(8000, "miles")
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11423. {
  11424. front: {
  11425. height: math.unit(6, "feet"),
  11426. weight: math.unit(250, "lb"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/alexi/front.svg",
  11430. extra: 3483 / 3291,
  11431. bottom: 0.04
  11432. }
  11433. },
  11434. back: {
  11435. height: math.unit(6, "feet"),
  11436. weight: math.unit(250, "lb"),
  11437. name: "Back",
  11438. image: {
  11439. source: "./media/characters/alexi/back.svg",
  11440. extra: 3533 / 3356,
  11441. bottom: 0.021
  11442. }
  11443. },
  11444. frontTransforming: {
  11445. height: math.unit(8.58, "feet"),
  11446. weight: math.unit(1300, "lb"),
  11447. name: "Transforming",
  11448. image: {
  11449. source: "./media/characters/alexi/front-transforming.svg",
  11450. extra: 437 / 409,
  11451. bottom: 19 / 458.66
  11452. }
  11453. },
  11454. frontTransformed: {
  11455. height: math.unit(12.5, "feet"),
  11456. weight: math.unit(4000, "lb"),
  11457. name: "Transformed",
  11458. image: {
  11459. source: "./media/characters/alexi/front-transformed.svg",
  11460. extra: 639 / 614,
  11461. bottom: 30.55 / 671
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Normal",
  11468. height: math.unit(14, "feet"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Minimacro",
  11473. height: math.unit(30, "meters")
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(500, "meters")
  11478. },
  11479. {
  11480. name: "Megamacro",
  11481. height: math.unit(9000, "km")
  11482. },
  11483. {
  11484. name: "Teramacro",
  11485. height: math.unit(384000, "km")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(150, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/kayroo/front.svg",
  11498. extra: 1153 / 1038,
  11499. bottom: 0.06
  11500. }
  11501. },
  11502. foot: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(150, "lb"),
  11505. name: "Foot",
  11506. image: {
  11507. source: "./media/characters/kayroo/foot.svg"
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(8, "feet"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Minimacro",
  11519. height: math.unit(250, "feet")
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(2800, "feet")
  11524. },
  11525. {
  11526. name: "Megamacro",
  11527. height: math.unit(5200, "feet")
  11528. },
  11529. {
  11530. name: "Gigamacro",
  11531. height: math.unit(27000, "feet")
  11532. },
  11533. {
  11534. name: "Omega",
  11535. height: math.unit(45000, "feet")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(18, "feet"),
  11544. weight: math.unit(5800, "lb"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/rhys/front.svg",
  11548. extra: 3386 / 3090,
  11549. bottom: 0.07
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(18, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Working Size",
  11561. height: math.unit(200, "feet")
  11562. },
  11563. {
  11564. name: "Demolition Size",
  11565. height: math.unit(2000, "feet")
  11566. },
  11567. {
  11568. name: "Maximum Licensed Size",
  11569. height: math.unit(5, "miles")
  11570. },
  11571. {
  11572. name: "Maximum Observed Size",
  11573. height: math.unit(10, "yottameters")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(250, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/toto/front.svg",
  11586. extra: 527 / 479,
  11587. bottom: 0.05
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Micro",
  11594. height: math.unit(3, "feet")
  11595. },
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(10, "feet")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(150, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Megamacro",
  11607. height: math.unit(1200, "feet")
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "King", species: ["lion"], tags: ["anthro"] },
  11613. {
  11614. back: {
  11615. height: math.unit(6, "feet"),
  11616. weight: math.unit(150, "lb"),
  11617. name: "Back",
  11618. image: {
  11619. source: "./media/characters/king/back.svg"
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Micro",
  11626. height: math.unit(2, "inches")
  11627. },
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(8, "feet")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(200, "feet"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Megamacro",
  11639. height: math.unit(50, "miles")
  11640. },
  11641. ]
  11642. ))
  11643. characterMakers.push(() => makeCharacter(
  11644. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11645. {
  11646. front: {
  11647. height: math.unit(11, "feet"),
  11648. weight: math.unit(1400, "lb"),
  11649. name: "Front",
  11650. image: {
  11651. source: "./media/characters/cordite/front.svg",
  11652. extra: 1919/1827,
  11653. bottom: 40/1959
  11654. }
  11655. },
  11656. side: {
  11657. height: math.unit(11, "feet"),
  11658. weight: math.unit(1400, "lb"),
  11659. name: "Side",
  11660. image: {
  11661. source: "./media/characters/cordite/side.svg",
  11662. extra: 1908/1793,
  11663. bottom: 38/1946
  11664. }
  11665. },
  11666. back: {
  11667. height: math.unit(11, "feet"),
  11668. weight: math.unit(1400, "lb"),
  11669. name: "Back",
  11670. image: {
  11671. source: "./media/characters/cordite/back.svg",
  11672. extra: 1938/1837,
  11673. bottom: 10/1948
  11674. }
  11675. },
  11676. feral: {
  11677. height: math.unit(2, "feet"),
  11678. weight: math.unit(90, "lb"),
  11679. name: "Feral",
  11680. image: {
  11681. source: "./media/characters/cordite/feral.svg",
  11682. extra: 1260 / 755,
  11683. bottom: 0.05
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(11, "feet"),
  11691. default: true
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(6, "feet"),
  11700. weight: math.unit(150, "lb"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/pianostrong/front.svg",
  11704. extra: 6577 / 6254,
  11705. bottom: 0.02
  11706. }
  11707. },
  11708. side: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(150, "lb"),
  11711. name: "Side",
  11712. image: {
  11713. source: "./media/characters/pianostrong/side.svg",
  11714. extra: 6106 / 5730
  11715. }
  11716. },
  11717. back: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Back",
  11721. image: {
  11722. source: "./media/characters/pianostrong/back.svg",
  11723. extra: 6085 / 5733,
  11724. bottom: 0.01
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(100, "feet")
  11732. },
  11733. {
  11734. name: "Macro+",
  11735. height: math.unit(300, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro++",
  11740. height: math.unit(1000, "feet")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/kona/front.svg",
  11753. extra: 2960 / 2629,
  11754. bottom: 0.005
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Normal",
  11761. height: math.unit(11 + 8 / 12, "feet")
  11762. },
  11763. {
  11764. name: "Macro",
  11765. height: math.unit(850, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Macro+",
  11770. height: math.unit(1.5, "km"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(80, "miles")
  11776. },
  11777. {
  11778. name: "Gigamacro",
  11779. height: math.unit(3500, "miles")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11785. {
  11786. side: {
  11787. height: math.unit(1.9, "meters"),
  11788. weight: math.unit(326, "kg"),
  11789. name: "Side",
  11790. image: {
  11791. source: "./media/characters/levi/side.svg",
  11792. extra: 1704 / 1334,
  11793. bottom: 0.02
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(1.9, "meters"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(20, "meters")
  11806. },
  11807. {
  11808. name: "Macro+",
  11809. height: math.unit(200, "meters")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(2, "km")
  11814. },
  11815. {
  11816. name: "Megamacro+",
  11817. height: math.unit(20, "km")
  11818. },
  11819. {
  11820. name: "Gigamacro",
  11821. height: math.unit(2500, "km")
  11822. },
  11823. {
  11824. name: "Gigamacro+",
  11825. height: math.unit(120000, "km")
  11826. },
  11827. {
  11828. name: "Teramacro",
  11829. height: math.unit(7.77e6, "km")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6 + 4/12, "feet"),
  11838. weight: math.unit(190, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/bmc/front.svg",
  11842. extra: 1626/1472,
  11843. bottom: 79/1705
  11844. }
  11845. },
  11846. back: {
  11847. height: math.unit(6 + 4/12, "feet"),
  11848. weight: math.unit(190, "lb"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/bmc/back.svg",
  11852. extra: 1640/1479,
  11853. bottom: 45/1685
  11854. }
  11855. },
  11856. frontArmor: {
  11857. height: math.unit(6 + 4/12, "feet"),
  11858. weight: math.unit(190, "lb"),
  11859. name: "Front-armor",
  11860. image: {
  11861. source: "./media/characters/bmc/front-armor.svg",
  11862. extra: 1538/1468,
  11863. bottom: 79/1617
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Human-sized",
  11870. height: math.unit(6 + 4 / 12, "feet")
  11871. },
  11872. {
  11873. name: "Interactive Size",
  11874. height: math.unit(25, "feet")
  11875. },
  11876. {
  11877. name: "Small",
  11878. height: math.unit(250, "feet")
  11879. },
  11880. {
  11881. name: "Normal",
  11882. height: math.unit(1250, "feet"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Good Day",
  11887. height: math.unit(88, "miles")
  11888. },
  11889. {
  11890. name: "Largest Measured Size",
  11891. height: math.unit(105.960, "galaxies")
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11897. {
  11898. front: {
  11899. height: math.unit(20, "feet"),
  11900. weight: math.unit(2016, "kg"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/sven-the-kaiju/front.svg",
  11904. extra: 1277/1250,
  11905. bottom: 35/1312
  11906. }
  11907. },
  11908. mouth: {
  11909. height: math.unit(1.85, "feet"),
  11910. name: "Mouth",
  11911. image: {
  11912. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Fairy",
  11919. height: math.unit(6, "inches")
  11920. },
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(20, "feet"),
  11924. default: true
  11925. },
  11926. {
  11927. name: "Rampage",
  11928. height: math.unit(200, "feet")
  11929. },
  11930. {
  11931. name: "Archfey Forest Guardian",
  11932. height: math.unit(1, "mile")
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11938. {
  11939. front: {
  11940. height: math.unit(4, "meters"),
  11941. weight: math.unit(2, "tons"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/marik/front.svg",
  11945. extra: 1057 / 1003,
  11946. bottom: 0.08
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Normal",
  11953. height: math.unit(4, "meters"),
  11954. default: true
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(20, "meters")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(50, "km")
  11963. },
  11964. {
  11965. name: "Gigamacro",
  11966. height: math.unit(100, "km")
  11967. },
  11968. {
  11969. name: "Alpha Macro",
  11970. height: math.unit(7.88e7, "yottameters")
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11976. {
  11977. front: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(110, "lb"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/mel/front.svg",
  11983. extra: 736 / 617,
  11984. bottom: 0.017
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Pico",
  11991. height: math.unit(3, "pm")
  11992. },
  11993. {
  11994. name: "Nano",
  11995. height: math.unit(3, "nm")
  11996. },
  11997. {
  11998. name: "Micro",
  11999. height: math.unit(0.3, "mm"),
  12000. default: true
  12001. },
  12002. {
  12003. name: "Micro+",
  12004. height: math.unit(3, "mm")
  12005. },
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(5 + 10.5 / 12, "feet")
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12014. {
  12015. kaiju: {
  12016. height: math.unit(1.75, "meters"),
  12017. weight: math.unit(55, "kg"),
  12018. name: "Kaiju",
  12019. image: {
  12020. source: "./media/characters/lykonous/kaiju.svg",
  12021. extra: 1055 / 946,
  12022. bottom: 0.135
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(2.5, "meters"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Kaiju Dragon",
  12034. height: math.unit(60, "meters")
  12035. },
  12036. {
  12037. name: "Mega Kaiju",
  12038. height: math.unit(120, "km")
  12039. },
  12040. {
  12041. name: "Giga Kaiju",
  12042. height: math.unit(200, "megameters")
  12043. },
  12044. {
  12045. name: "Terra Kaiju",
  12046. height: math.unit(400, "gigameters")
  12047. },
  12048. {
  12049. name: "Kaiju Dragon God",
  12050. height: math.unit(13000, "exaparsecs")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(6, "feet"),
  12059. weight: math.unit(150, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/blü/front.svg",
  12063. extra: 1883 / 1564,
  12064. bottom: 0.031
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(13, "feet"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Big Boi",
  12076. height: math.unit(150, "meters")
  12077. },
  12078. {
  12079. name: "Mini Stomper",
  12080. height: math.unit(300, "meters")
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(1000, "meters")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(11000, "meters")
  12089. },
  12090. {
  12091. name: "Gigamacro",
  12092. height: math.unit(11000, "km")
  12093. },
  12094. {
  12095. name: "Teramacro",
  12096. height: math.unit(420000, "km")
  12097. },
  12098. {
  12099. name: "Examacro",
  12100. height: math.unit(120, "parsecs")
  12101. },
  12102. {
  12103. name: "God Tho",
  12104. height: math.unit(98000000000, "parsecs")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12110. {
  12111. taurFront: {
  12112. height: math.unit(6, "feet"),
  12113. weight: math.unit(200, "lb"),
  12114. name: "Taur (Front)",
  12115. image: {
  12116. source: "./media/characters/scales/taur-front.svg",
  12117. extra: 1,
  12118. bottom: 0.05
  12119. }
  12120. },
  12121. taurBack: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(200, "lb"),
  12124. name: "Taur (Back)",
  12125. image: {
  12126. source: "./media/characters/scales/taur-back.svg",
  12127. extra: 1,
  12128. bottom: 0.08
  12129. }
  12130. },
  12131. anthro: {
  12132. height: math.unit(6 * 7 / 12, "feet"),
  12133. weight: math.unit(100, "lb"),
  12134. name: "Anthro",
  12135. image: {
  12136. source: "./media/characters/scales/anthro.svg",
  12137. extra: 1,
  12138. bottom: 0.06
  12139. }
  12140. },
  12141. },
  12142. [
  12143. {
  12144. name: "Normal",
  12145. height: math.unit(12, "feet"),
  12146. default: true
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/koragos/front.svg",
  12159. extra: 841 / 794,
  12160. bottom: 0.035
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(6, "feet"),
  12165. weight: math.unit(150, "lb"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/koragos/back.svg",
  12169. extra: 841 / 810,
  12170. bottom: 0.022
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Normal",
  12177. height: math.unit(6 + 11 / 12, "feet"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(490, "feet")
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(10, "miles")
  12187. },
  12188. {
  12189. name: "Gigamacro",
  12190. height: math.unit(50, "miles")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(250, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/xylrem/front.svg",
  12203. extra: 3323 / 3050,
  12204. bottom: 0.065
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Micro",
  12211. height: math.unit(4, "feet")
  12212. },
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(16, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(2720, "feet")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(25000, "miles")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(8, "feet"),
  12233. weight: math.unit(250, "kg"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/ikideru/front.svg",
  12237. extra: 930 / 870,
  12238. bottom: 0.087
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(8, "feet"),
  12243. weight: math.unit(250, "kg"),
  12244. name: "Back",
  12245. image: {
  12246. source: "./media/characters/ikideru/back.svg",
  12247. extra: 919 / 852,
  12248. bottom: 0.055
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Rare",
  12255. height: math.unit(8, "feet"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Playful Loom",
  12260. height: math.unit(80, "feet")
  12261. },
  12262. {
  12263. name: "City Leaner",
  12264. height: math.unit(230, "feet")
  12265. },
  12266. {
  12267. name: "Megamacro",
  12268. height: math.unit(2500, "feet")
  12269. },
  12270. {
  12271. name: "Gigamacro",
  12272. height: math.unit(26400, "feet")
  12273. },
  12274. {
  12275. name: "Tectonic Shifter",
  12276. height: math.unit(1.7, "megameters")
  12277. },
  12278. {
  12279. name: "Planet Carer",
  12280. height: math.unit(21, "megameters")
  12281. },
  12282. {
  12283. name: "God",
  12284. height: math.unit(11157.22, "parsecs")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(120, "lb"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/neo/front.svg"
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Micro",
  12303. height: math.unit(2, "inches"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Human Size",
  12308. height: math.unit(5 + 8 / 12, "feet")
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(13 + 10 / 12, "feet"),
  12317. weight: math.unit(5320, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/chauncey-chantz/front.svg",
  12321. extra: 1587 / 1435,
  12322. bottom: 0.02
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Normal",
  12329. height: math.unit(13 + 10 / 12, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(45, "feet")
  12335. },
  12336. {
  12337. name: "Megamacro",
  12338. height: math.unit(250, "miles")
  12339. },
  12340. {
  12341. name: "Planetary",
  12342. height: math.unit(10000, "miles")
  12343. },
  12344. {
  12345. name: "Galactic",
  12346. height: math.unit(40000, "parsecs")
  12347. },
  12348. {
  12349. name: "Universal",
  12350. height: math.unit(1, "yottameter")
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12356. {
  12357. front: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/epifox/front.svg",
  12363. extra: 1,
  12364. bottom: 0.075
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Micro",
  12371. height: math.unit(6, "inches")
  12372. },
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(12, "feet"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(3810, "feet")
  12381. },
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(500, "miles")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(1.8796, "m"),
  12393. weight: math.unit(230, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/colin-t/front.svg",
  12397. extra: 1272 / 1193,
  12398. bottom: 0.07
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Micro",
  12405. height: math.unit(0.571, "meters")
  12406. },
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(1.8796, "meters"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Tall",
  12414. height: math.unit(4, "meters")
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(67.241, "meters")
  12419. },
  12420. {
  12421. name: "Megamacro",
  12422. height: math.unit(371.856, "meters")
  12423. },
  12424. {
  12425. name: "Planetary",
  12426. height: math.unit(12631.5689, "km")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(1.85, "meters"),
  12435. weight: math.unit(80, "kg"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/matvei/front.svg",
  12439. extra: 614 / 594,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(1.85, "meters"),
  12448. default: true
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(5 + 9 / 12, "feet"),
  12457. weight: math.unit(70, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/quincy/front.svg",
  12461. extra: 3041 / 2751
  12462. }
  12463. },
  12464. back: {
  12465. height: math.unit(5 + 9 / 12, "feet"),
  12466. weight: math.unit(70, "lb"),
  12467. name: "Back",
  12468. image: {
  12469. source: "./media/characters/quincy/back.svg",
  12470. extra: 3041 / 2751
  12471. }
  12472. },
  12473. flying: {
  12474. height: math.unit(5 + 4 / 12, "feet"),
  12475. weight: math.unit(70, "lb"),
  12476. name: "Flying",
  12477. image: {
  12478. source: "./media/characters/quincy/flying.svg",
  12479. extra: 1044 / 930
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Micro",
  12486. height: math.unit(3, "cm")
  12487. },
  12488. {
  12489. name: "Normal",
  12490. height: math.unit(5 + 9 / 12, "feet")
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(200, "meters"),
  12495. default: true
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(1000, "meters")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(3 + 11/12, "feet"),
  12508. weight: math.unit(50, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/vanrel/front.svg",
  12512. extra: 1104/949,
  12513. bottom: 52/1156
  12514. }
  12515. },
  12516. back: {
  12517. height: math.unit(3 + 11/12, "feet"),
  12518. weight: math.unit(50, "lb"),
  12519. name: "Back",
  12520. image: {
  12521. source: "./media/characters/vanrel/back.svg",
  12522. extra: 1119/976,
  12523. bottom: 37/1156
  12524. }
  12525. },
  12526. tome: {
  12527. height: math.unit(1.35, "feet"),
  12528. weight: math.unit(10, "lb"),
  12529. name: "Vanrel's Tome",
  12530. rename: true,
  12531. image: {
  12532. source: "./media/characters/vanrel/tome.svg"
  12533. }
  12534. },
  12535. beans: {
  12536. height: math.unit(0.89, "feet"),
  12537. name: "Beans",
  12538. image: {
  12539. source: "./media/characters/vanrel/beans.svg"
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Normal",
  12546. height: math.unit(3 + 11/12, "feet"),
  12547. default: true
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(7 + 5 / 12, "feet"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/kuiper-vanrel/front.svg",
  12559. extra: 1219/1169,
  12560. bottom: 69/1288
  12561. }
  12562. },
  12563. back: {
  12564. height: math.unit(7 + 5 / 12, "feet"),
  12565. name: "Back",
  12566. image: {
  12567. source: "./media/characters/kuiper-vanrel/back.svg",
  12568. extra: 1236/1193,
  12569. bottom: 27/1263
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(0.55, "meters"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/kuiper-vanrel/foot.svg",
  12577. }
  12578. },
  12579. battle: {
  12580. height: math.unit(6.824, "feet"),
  12581. name: "Battle",
  12582. image: {
  12583. source: "./media/characters/kuiper-vanrel/battle.svg",
  12584. extra: 1466 / 1327,
  12585. bottom: 29 / 1492.5
  12586. }
  12587. },
  12588. meerkui: {
  12589. height: math.unit(18, "inches"),
  12590. name: "Meerkui",
  12591. image: {
  12592. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12593. extra: 1354/1289,
  12594. bottom: 69/1423
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(7 + 5 / 12, "feet"),
  12602. default: true
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12608. {
  12609. front: {
  12610. height: math.unit(8 + 5 / 12, "feet"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/keset-vanrel/front.svg",
  12614. extra: 1231/1148,
  12615. bottom: 82/1313
  12616. }
  12617. },
  12618. back: {
  12619. height: math.unit(8 + 5 / 12, "feet"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/keset-vanrel/back.svg",
  12623. extra: 1240/1174,
  12624. bottom: 33/1273
  12625. }
  12626. },
  12627. hand: {
  12628. height: math.unit(0.6, "meters"),
  12629. name: "Hand",
  12630. image: {
  12631. source: "./media/characters/keset-vanrel/hand.svg"
  12632. }
  12633. },
  12634. foot: {
  12635. height: math.unit(0.94978, "meters"),
  12636. name: "Foot",
  12637. image: {
  12638. source: "./media/characters/keset-vanrel/foot.svg"
  12639. }
  12640. },
  12641. battle: {
  12642. height: math.unit(7.408, "feet"),
  12643. name: "Battle",
  12644. image: {
  12645. source: "./media/characters/keset-vanrel/battle.svg",
  12646. extra: 1890 / 1386,
  12647. bottom: 73.28 / 1970
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(8 + 5 / 12, "feet"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/neos/front.svg",
  12668. extra: 1696 / 992,
  12669. bottom: 0.14
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(54, "cm"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(100, "m")
  12682. },
  12683. {
  12684. name: "Megamacro",
  12685. height: math.unit(10, "km")
  12686. },
  12687. {
  12688. name: "Megamacro+",
  12689. height: math.unit(100, "km")
  12690. },
  12691. {
  12692. name: "Gigamacro",
  12693. height: math.unit(100, "Mm")
  12694. },
  12695. {
  12696. name: "Teramacro",
  12697. height: math.unit(100, "Gm")
  12698. },
  12699. {
  12700. name: "Examacro",
  12701. height: math.unit(100, "Em")
  12702. },
  12703. {
  12704. name: "Godly",
  12705. height: math.unit(10000, "Ym")
  12706. },
  12707. {
  12708. name: "Beyond Godly",
  12709. height: math.unit(25, "multiverses")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12715. {
  12716. feminine: {
  12717. height: math.unit(5, "feet"),
  12718. weight: math.unit(100, "lb"),
  12719. name: "Feminine",
  12720. image: {
  12721. source: "./media/characters/sammy-mouse/feminine.svg",
  12722. extra: 2526 / 2425,
  12723. bottom: 0.123
  12724. }
  12725. },
  12726. masculine: {
  12727. height: math.unit(5, "feet"),
  12728. weight: math.unit(100, "lb"),
  12729. name: "Masculine",
  12730. image: {
  12731. source: "./media/characters/sammy-mouse/masculine.svg",
  12732. extra: 2526 / 2425,
  12733. bottom: 0.123
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Micro",
  12740. height: math.unit(5, "inches")
  12741. },
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(5, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(60, "feet")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(4, "feet"),
  12758. weight: math.unit(50, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/kole/front.svg",
  12762. extra: 1423 / 1303,
  12763. bottom: 0.025
  12764. }
  12765. },
  12766. back: {
  12767. height: math.unit(4, "feet"),
  12768. weight: math.unit(50, "lb"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/kole/back.svg",
  12772. extra: 1426 / 1280,
  12773. bottom: 0.02
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Normal",
  12780. height: math.unit(4, "feet"),
  12781. default: true
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(2.5, "feet"),
  12790. weight: math.unit(32, "lb"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/rufran/front.svg",
  12794. extra: 1313/885,
  12795. bottom: 94/1407
  12796. }
  12797. },
  12798. side: {
  12799. height: math.unit(2.5, "feet"),
  12800. weight: math.unit(32, "lb"),
  12801. name: "Side",
  12802. image: {
  12803. source: "./media/characters/rufran/side.svg",
  12804. extra: 1109/852,
  12805. bottom: 118/1227
  12806. }
  12807. },
  12808. back: {
  12809. height: math.unit(2.5, "feet"),
  12810. weight: math.unit(32, "lb"),
  12811. name: "Back",
  12812. image: {
  12813. source: "./media/characters/rufran/back.svg",
  12814. extra: 1280/878,
  12815. bottom: 131/1411
  12816. }
  12817. },
  12818. mouth: {
  12819. height: math.unit(1.13, "feet"),
  12820. name: "Mouth",
  12821. image: {
  12822. source: "./media/characters/rufran/mouth.svg"
  12823. }
  12824. },
  12825. foot: {
  12826. height: math.unit(1.33, "feet"),
  12827. name: "Foot",
  12828. image: {
  12829. source: "./media/characters/rufran/foot.svg"
  12830. }
  12831. },
  12832. koboldFront: {
  12833. height: math.unit(2 + 6 / 12, "feet"),
  12834. weight: math.unit(20, "lb"),
  12835. name: "Front (Kobold)",
  12836. image: {
  12837. source: "./media/characters/rufran/kobold-front.svg",
  12838. extra: 2041 / 1839,
  12839. bottom: 0.055
  12840. }
  12841. },
  12842. koboldBack: {
  12843. height: math.unit(2 + 6 / 12, "feet"),
  12844. weight: math.unit(20, "lb"),
  12845. name: "Back (Kobold)",
  12846. image: {
  12847. source: "./media/characters/rufran/kobold-back.svg",
  12848. extra: 2054 / 1839,
  12849. bottom: 0.01
  12850. }
  12851. },
  12852. koboldHand: {
  12853. height: math.unit(0.2166, "meters"),
  12854. name: "Hand (Kobold)",
  12855. image: {
  12856. source: "./media/characters/rufran/kobold-hand.svg"
  12857. }
  12858. },
  12859. koboldFoot: {
  12860. height: math.unit(0.185, "meters"),
  12861. name: "Foot (Kobold)",
  12862. image: {
  12863. source: "./media/characters/rufran/kobold-foot.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Micro",
  12870. height: math.unit(1, "inch")
  12871. },
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(2 + 6 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Big",
  12879. height: math.unit(60, "feet")
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(325, "feet")
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(0.3, "meters"),
  12892. weight: math.unit(3.5, "kg"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/chip/front.svg",
  12896. extra: 748 / 674
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Micro",
  12903. height: math.unit(1, "inch"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12910. {
  12911. side: {
  12912. height: math.unit(2.3, "meters"),
  12913. weight: math.unit(3500, "lb"),
  12914. name: "Side",
  12915. image: {
  12916. source: "./media/characters/torvid/side.svg",
  12917. extra: 1972 / 722,
  12918. bottom: 0.035
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(2.3, "meters"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(2, "meters"),
  12935. weight: math.unit(150.5, "kg"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/susan/front.svg",
  12939. extra: 693 / 635,
  12940. bottom: 0.05
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(505, "miles"),
  12948. default: true
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12954. {
  12955. front: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/raindrops/front.svg",
  12961. extra: 2655 / 2461,
  12962. bottom: 49 / 2705
  12963. }
  12964. },
  12965. back: {
  12966. height: math.unit(6, "feet"),
  12967. weight: math.unit(150, "lb"),
  12968. name: "Back",
  12969. image: {
  12970. source: "./media/characters/raindrops/back.svg",
  12971. extra: 2574 / 2400,
  12972. bottom: 65 / 2634
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Micro",
  12979. height: math.unit(6, "inches")
  12980. },
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(6 + 2 / 12, "feet")
  12984. },
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(131, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Megamacro",
  12992. height: math.unit(15, "miles")
  12993. },
  12994. {
  12995. name: "Gigamacro",
  12996. height: math.unit(4000, "miles")
  12997. },
  12998. {
  12999. name: "Teramacro",
  13000. height: math.unit(315000, "miles")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(2.794, "meters"),
  13009. weight: math.unit(325, "kg"),
  13010. name: "Front",
  13011. image: {
  13012. source: "./media/characters/tezwa/front.svg",
  13013. extra: 2083 / 1906,
  13014. bottom: 0.031
  13015. }
  13016. },
  13017. foot: {
  13018. height: math.unit(0.687, "meters"),
  13019. name: "Foot",
  13020. image: {
  13021. source: "./media/characters/tezwa/foot.svg"
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(9 + 2 / 12, "feet"),
  13029. default: true
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(58, "feet"),
  13038. weight: math.unit(89000, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/typhus/front.svg",
  13042. extra: 816 / 800,
  13043. bottom: 0.065
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(58, "feet"),
  13051. default: true
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13057. {
  13058. front: {
  13059. height: math.unit(12, "feet"),
  13060. weight: math.unit(6, "tonnes"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/lyra-von-wulf/front.svg",
  13064. extra: 1,
  13065. bottom: 0.10
  13066. }
  13067. },
  13068. frontMecha: {
  13069. height: math.unit(12, "feet"),
  13070. weight: math.unit(12, "tonnes"),
  13071. name: "Front (Mecha)",
  13072. image: {
  13073. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13074. extra: 1,
  13075. bottom: 0.042
  13076. }
  13077. },
  13078. maw: {
  13079. height: math.unit(2.2, "feet"),
  13080. name: "Maw",
  13081. image: {
  13082. source: "./media/characters/lyra-von-wulf/maw.svg"
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(12, "feet"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Classic",
  13094. height: math.unit(50, "feet")
  13095. },
  13096. {
  13097. name: "Macro",
  13098. height: math.unit(500, "feet")
  13099. },
  13100. {
  13101. name: "Megamacro",
  13102. height: math.unit(1, "mile")
  13103. },
  13104. {
  13105. name: "Gigamacro",
  13106. height: math.unit(400, "miles")
  13107. },
  13108. {
  13109. name: "Teramacro",
  13110. height: math.unit(22000, "miles")
  13111. },
  13112. {
  13113. name: "Solarmacro",
  13114. height: math.unit(8600000, "miles")
  13115. },
  13116. {
  13117. name: "Galactic",
  13118. height: math.unit(1057000, "lightyears")
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(6 + 10 / 12, "feet"),
  13127. weight: math.unit(150, "lb"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/dixon/front.svg",
  13131. extra: 3361 / 3209,
  13132. bottom: 0.01
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(6 + 10 / 12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Big",
  13144. height: math.unit(12, "meters")
  13145. },
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(500, "meters")
  13149. },
  13150. {
  13151. name: "Megamacro",
  13152. height: math.unit(2, "km")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(185, "cm"),
  13161. weight: math.unit(68, "kg"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/kauko/front.svg",
  13165. extra: 1455 / 1421,
  13166. bottom: 0.03
  13167. }
  13168. },
  13169. back: {
  13170. height: math.unit(185, "cm"),
  13171. weight: math.unit(68, "kg"),
  13172. name: "Back",
  13173. image: {
  13174. source: "./media/characters/kauko/back.svg",
  13175. extra: 1455 / 1421,
  13176. bottom: 0.004
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(185, "cm"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "kg"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/varg/front.svg",
  13197. extra: 1108 / 1018,
  13198. bottom: 0.0375
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(5, "meters")
  13206. },
  13207. {
  13208. name: "Macro",
  13209. height: math.unit(200, "meters")
  13210. },
  13211. {
  13212. name: "Megamacro",
  13213. height: math.unit(20, "kilometers")
  13214. },
  13215. {
  13216. name: "True Size",
  13217. height: math.unit(211, "km"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(1000, "km")
  13223. },
  13224. {
  13225. name: "Gigamacro+",
  13226. height: math.unit(8000, "km")
  13227. },
  13228. {
  13229. name: "Teramacro",
  13230. height: math.unit(1000000, "km")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13236. {
  13237. front: {
  13238. height: math.unit(7 + 7 / 12, "feet"),
  13239. weight: math.unit(267, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/dayza/front.svg",
  13243. extra: 1262 / 1200,
  13244. bottom: 0.035
  13245. }
  13246. },
  13247. side: {
  13248. height: math.unit(7 + 7 / 12, "feet"),
  13249. weight: math.unit(267, "lb"),
  13250. name: "Side",
  13251. image: {
  13252. source: "./media/characters/dayza/side.svg",
  13253. extra: 1295 / 1245,
  13254. bottom: 0.05
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(7 + 7 / 12, "feet"),
  13259. weight: math.unit(267, "lb"),
  13260. name: "Back",
  13261. image: {
  13262. source: "./media/characters/dayza/back.svg",
  13263. extra: 1241 / 1170
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(7 + 7 / 12, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(155, "feet")
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(6 + 5 / 12, "feet"),
  13284. weight: math.unit(160, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/xanthos/front.svg",
  13288. extra: 1,
  13289. bottom: 0.04
  13290. }
  13291. },
  13292. back: {
  13293. height: math.unit(6 + 5 / 12, "feet"),
  13294. weight: math.unit(160, "lb"),
  13295. name: "Back",
  13296. image: {
  13297. source: "./media/characters/xanthos/back.svg",
  13298. extra: 1,
  13299. bottom: 0.03
  13300. }
  13301. },
  13302. hand: {
  13303. height: math.unit(0.928, "feet"),
  13304. name: "Hand",
  13305. image: {
  13306. source: "./media/characters/xanthos/hand.svg"
  13307. }
  13308. },
  13309. foot: {
  13310. height: math.unit(1.286, "feet"),
  13311. name: "Foot",
  13312. image: {
  13313. source: "./media/characters/xanthos/foot.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(6 + 5 / 12, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Normal+",
  13325. height: math.unit(6, "meters")
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(40, "feet")
  13330. },
  13331. {
  13332. name: "Macro+",
  13333. height: math.unit(200, "meters")
  13334. },
  13335. {
  13336. name: "Megamacro",
  13337. height: math.unit(20, "km")
  13338. },
  13339. {
  13340. name: "Megamacro+",
  13341. height: math.unit(100, "km")
  13342. },
  13343. {
  13344. name: "Gigamacro",
  13345. height: math.unit(200, "megameters")
  13346. },
  13347. {
  13348. name: "Gigamacro+",
  13349. height: math.unit(1.5, "gigameters")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6 + 3 / 12, "feet"),
  13358. weight: math.unit(215, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/grynn/front.svg",
  13362. extra: 4627 / 4209,
  13363. bottom: 0.047
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Micro",
  13370. height: math.unit(6, "inches")
  13371. },
  13372. {
  13373. name: "Normal",
  13374. height: math.unit(6 + 3 / 12, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Big",
  13379. height: math.unit(104, "feet")
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(944, "feet")
  13384. },
  13385. {
  13386. name: "Macro+",
  13387. height: math.unit(9480, "feet")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(78752, "feet")
  13392. },
  13393. {
  13394. name: "Megamacro+",
  13395. height: math.unit(630128, "feet")
  13396. },
  13397. {
  13398. name: "Megamacro++",
  13399. height: math.unit(3150695, "feet")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(7 + 5 / 12, "feet"),
  13408. weight: math.unit(450, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/mocha-aura/front.svg",
  13412. extra: 1907 / 1817,
  13413. bottom: 0.04
  13414. }
  13415. },
  13416. back: {
  13417. height: math.unit(7 + 5 / 12, "feet"),
  13418. weight: math.unit(450, "lb"),
  13419. name: "Back",
  13420. image: {
  13421. source: "./media/characters/mocha-aura/back.svg",
  13422. extra: 1900 / 1825,
  13423. bottom: 0.045
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Nano",
  13430. height: math.unit(1, "nm")
  13431. },
  13432. {
  13433. name: "Megamicro",
  13434. height: math.unit(1, "mm")
  13435. },
  13436. {
  13437. name: "Micro",
  13438. height: math.unit(3, "inches")
  13439. },
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(7 + 5 / 12, "feet"),
  13443. default: true
  13444. },
  13445. {
  13446. name: "Macro",
  13447. height: math.unit(30, "feet")
  13448. },
  13449. {
  13450. name: "Megamacro",
  13451. height: math.unit(3500, "feet")
  13452. },
  13453. {
  13454. name: "Teramacro",
  13455. height: math.unit(500000, "miles")
  13456. },
  13457. {
  13458. name: "Petamacro",
  13459. height: math.unit(50000000000000000, "parsecs")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(150, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/ilisha-devya/front.svg",
  13472. extra: 1053/1049,
  13473. bottom: 270/1323
  13474. }
  13475. },
  13476. back: {
  13477. height: math.unit(6, "feet"),
  13478. weight: math.unit(150, "lb"),
  13479. name: "Back",
  13480. image: {
  13481. source: "./media/characters/ilisha-devya/back.svg",
  13482. extra: 1131/1128,
  13483. bottom: 39/1170
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Macro",
  13490. height: math.unit(500, "feet"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Megamacro",
  13495. height: math.unit(10, "miles")
  13496. },
  13497. {
  13498. name: "Gigamacro",
  13499. height: math.unit(100000, "miles")
  13500. },
  13501. {
  13502. name: "Examacro",
  13503. height: math.unit(1e9, "lightyears")
  13504. },
  13505. {
  13506. name: "Omniversal",
  13507. height: math.unit(1e33, "lightyears")
  13508. },
  13509. {
  13510. name: "Beyond Infinite",
  13511. height: math.unit(1e100, "lightyears")
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13517. {
  13518. Side: {
  13519. height: math.unit(6, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Side",
  13522. image: {
  13523. source: "./media/characters/mira/side.svg",
  13524. extra: 900 / 799,
  13525. bottom: 0.02
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Human Size",
  13532. height: math.unit(6, "feet")
  13533. },
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(100, "feet"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(10, "miles")
  13542. },
  13543. {
  13544. name: "Gigamacro",
  13545. height: math.unit(25000, "miles")
  13546. },
  13547. {
  13548. name: "Teramacro",
  13549. height: math.unit(300, "AU")
  13550. },
  13551. {
  13552. name: "Full Size",
  13553. height: math.unit(4.5e10, "lightyears")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(150, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/holly/front.svg",
  13566. extra: 639 / 606
  13567. }
  13568. },
  13569. back: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Back",
  13573. image: {
  13574. source: "./media/characters/holly/back.svg",
  13575. extra: 623 / 598
  13576. }
  13577. },
  13578. frontWorking: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Front (Working)",
  13582. image: {
  13583. source: "./media/characters/holly/front-working.svg",
  13584. extra: 607 / 577,
  13585. bottom: 0.048
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(12 + 3 / 12, "feet"),
  13593. default: true
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(150, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/porter/front.svg",
  13606. extra: 1,
  13607. bottom: 0.01
  13608. }
  13609. },
  13610. frontRobes: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Front (Robes)",
  13614. image: {
  13615. source: "./media/characters/porter/front-robes.svg",
  13616. extra: 1.01,
  13617. bottom: 0.01
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(11 + 9 / 12, "feet"),
  13625. default: true
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13631. {
  13632. legendary: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(150, "lb"),
  13635. name: "Legendary",
  13636. image: {
  13637. source: "./media/characters/lucy/legendary.svg",
  13638. extra: 1355 / 1100,
  13639. bottom: 0.045
  13640. }
  13641. },
  13642. },
  13643. [
  13644. {
  13645. name: "Legendary",
  13646. height: math.unit(86882 * 2, "miles"),
  13647. default: true
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(150, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/drusilla/front.svg",
  13660. extra: 678 / 635,
  13661. bottom: 0.03
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/drusilla/back.svg",
  13670. extra: 678 / 635,
  13671. bottom: 0.005
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(100, "feet")
  13679. },
  13680. {
  13681. name: "Canon Height",
  13682. height: math.unit(2000, "feet"),
  13683. default: true
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(180, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/renard-thatch/front.svg",
  13696. extra: 2411 / 2275,
  13697. bottom: 0.01
  13698. }
  13699. },
  13700. frontPosing: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(180, "lb"),
  13703. name: "Front (Posing)",
  13704. image: {
  13705. source: "./media/characters/renard-thatch/front-posing.svg",
  13706. extra: 2381 / 2261,
  13707. bottom: 0.01
  13708. }
  13709. },
  13710. back: {
  13711. height: math.unit(6, "feet"),
  13712. weight: math.unit(180, "lb"),
  13713. name: "Back",
  13714. image: {
  13715. source: "./media/characters/renard-thatch/back.svg",
  13716. extra: 2428 / 2288
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Micro",
  13723. height: math.unit(3, "inches")
  13724. },
  13725. {
  13726. name: "Default",
  13727. height: math.unit(6, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(75, "feet")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(1450, "feet"),
  13741. weight: math.unit(1.21e6, "tons"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/sekvra/front.svg",
  13745. extra: 1193/1190,
  13746. bottom: 78/1271
  13747. }
  13748. },
  13749. side: {
  13750. height: math.unit(1450, "feet"),
  13751. weight: math.unit(1.21e6, "tons"),
  13752. name: "Side",
  13753. image: {
  13754. source: "./media/characters/sekvra/side.svg",
  13755. extra: 1193/1190,
  13756. bottom: 52/1245
  13757. }
  13758. },
  13759. back: {
  13760. height: math.unit(1450, "feet"),
  13761. weight: math.unit(1.21e6, "tons"),
  13762. name: "Back",
  13763. image: {
  13764. source: "./media/characters/sekvra/back.svg",
  13765. extra: 1219/1216,
  13766. bottom: 21/1240
  13767. }
  13768. },
  13769. frontClothed: {
  13770. height: math.unit(1450, "feet"),
  13771. weight: math.unit(1.21e6, "tons"),
  13772. name: "Front (Clothed)",
  13773. image: {
  13774. source: "./media/characters/sekvra/front-clothed.svg",
  13775. extra: 1192/1189,
  13776. bottom: 79/1271
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(1450, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Megamacro",
  13788. height: math.unit(15000, "feet")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/carmine/front.svg",
  13801. extra: 1,
  13802. bottom: 0.035
  13803. }
  13804. },
  13805. frontArmor: {
  13806. height: math.unit(6, "feet"),
  13807. weight: math.unit(150, "lb"),
  13808. name: "Front (Armor)",
  13809. image: {
  13810. source: "./media/characters/carmine/front-armor.svg",
  13811. extra: 1,
  13812. bottom: 0.035
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Large",
  13819. height: math.unit(1, "mile")
  13820. },
  13821. {
  13822. name: "Huge",
  13823. height: math.unit(40, "miles"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Colossal",
  13828. height: math.unit(2500, "miles")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/elyssia/front.svg",
  13841. extra: 2201 / 2035,
  13842. bottom: 0.05
  13843. }
  13844. },
  13845. frontClothed: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front (Clothed)",
  13849. image: {
  13850. source: "./media/characters/elyssia/front-clothed.svg",
  13851. extra: 2201 / 2035,
  13852. bottom: 0.05
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/elyssia/back.svg",
  13861. extra: 2201 / 2035,
  13862. bottom: 0.013
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Smaller",
  13869. height: math.unit(150, "feet")
  13870. },
  13871. {
  13872. name: "Standard",
  13873. height: math.unit(1400, "feet"),
  13874. default: true
  13875. },
  13876. {
  13877. name: "Distracted",
  13878. height: math.unit(15000, "feet")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(7 + 4/12, "feet"),
  13887. weight: math.unit(690, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/geno-maxwell/front.svg",
  13891. extra: 984/856,
  13892. bottom: 87/1071
  13893. }
  13894. },
  13895. back: {
  13896. height: math.unit(7 + 4/12, "feet"),
  13897. weight: math.unit(690, "lb"),
  13898. name: "Back",
  13899. image: {
  13900. source: "./media/characters/geno-maxwell/back.svg",
  13901. extra: 981/854,
  13902. bottom: 57/1038
  13903. }
  13904. },
  13905. frontCostume: {
  13906. height: math.unit(7 + 4/12, "feet"),
  13907. weight: math.unit(690, "lb"),
  13908. name: "Front (Costume)",
  13909. image: {
  13910. source: "./media/characters/geno-maxwell/front-costume.svg",
  13911. extra: 984/856,
  13912. bottom: 87/1071
  13913. }
  13914. },
  13915. backcostume: {
  13916. height: math.unit(7 + 4/12, "feet"),
  13917. weight: math.unit(690, "lb"),
  13918. name: "Back (Costume)",
  13919. image: {
  13920. source: "./media/characters/geno-maxwell/back-costume.svg",
  13921. extra: 981/854,
  13922. bottom: 57/1038
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Micro",
  13929. height: math.unit(3, "inches")
  13930. },
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(7 + 4 / 12, "feet"),
  13934. default: true
  13935. },
  13936. {
  13937. name: "Macro",
  13938. height: math.unit(220, "feet")
  13939. },
  13940. {
  13941. name: "Megamacro",
  13942. height: math.unit(11, "miles")
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(7 + 4/12, "feet"),
  13951. weight: math.unit(750, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/regena-maxwell/front.svg",
  13955. extra: 984/856,
  13956. bottom: 87/1071
  13957. }
  13958. },
  13959. back: {
  13960. height: math.unit(7 + 4/12, "feet"),
  13961. weight: math.unit(750, "lb"),
  13962. name: "Back",
  13963. image: {
  13964. source: "./media/characters/regena-maxwell/back.svg",
  13965. extra: 981/854,
  13966. bottom: 57/1038
  13967. }
  13968. },
  13969. frontCostume: {
  13970. height: math.unit(7 + 4/12, "feet"),
  13971. weight: math.unit(750, "lb"),
  13972. name: "Front (Costume)",
  13973. image: {
  13974. source: "./media/characters/regena-maxwell/front-costume.svg",
  13975. extra: 984/856,
  13976. bottom: 87/1071
  13977. }
  13978. },
  13979. backcostume: {
  13980. height: math.unit(7 + 4/12, "feet"),
  13981. weight: math.unit(750, "lb"),
  13982. name: "Back (Costume)",
  13983. image: {
  13984. source: "./media/characters/regena-maxwell/back-costume.svg",
  13985. extra: 981/854,
  13986. bottom: 57/1038
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(7 + 4 / 12, "feet"),
  13994. default: true
  13995. },
  13996. {
  13997. name: "Macro",
  13998. height: math.unit(220, "feet")
  13999. },
  14000. {
  14001. name: "Megamacro",
  14002. height: math.unit(11, "miles")
  14003. },
  14004. ]
  14005. ))
  14006. characterMakers.push(() => makeCharacter(
  14007. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14008. {
  14009. front: {
  14010. height: math.unit(6, "feet"),
  14011. weight: math.unit(150, "lb"),
  14012. name: "Front",
  14013. image: {
  14014. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14015. extra: 860 / 690,
  14016. bottom: 0.03
  14017. }
  14018. },
  14019. },
  14020. [
  14021. {
  14022. name: "Normal",
  14023. height: math.unit(1.7, "meters"),
  14024. default: true
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(150, "lb"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/quilly/front.svg",
  14037. extra: 890 / 776
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Gigamacro",
  14044. height: math.unit(404090, "miles"),
  14045. default: true
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14051. {
  14052. front: {
  14053. height: math.unit(7 + 8 / 12, "feet"),
  14054. weight: math.unit(350, "lb"),
  14055. name: "Front",
  14056. image: {
  14057. source: "./media/characters/tempest/front.svg",
  14058. extra: 1175 / 1086,
  14059. bottom: 0.02
  14060. }
  14061. },
  14062. },
  14063. [
  14064. {
  14065. name: "Normal",
  14066. height: math.unit(7 + 8 / 12, "feet"),
  14067. default: true
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14073. {
  14074. side: {
  14075. height: math.unit(4 + 5 / 12, "feet"),
  14076. weight: math.unit(80, "lb"),
  14077. name: "Side",
  14078. image: {
  14079. source: "./media/characters/rodger/side.svg",
  14080. extra: 1235 / 1118
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Micro",
  14087. height: math.unit(1, "inch")
  14088. },
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(4 + 5 / 12, "feet"),
  14092. default: true
  14093. },
  14094. {
  14095. name: "Macro",
  14096. height: math.unit(120, "feet")
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/danyel/front.svg",
  14109. extra: 1185 / 1123,
  14110. bottom: 0.05
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Shrunken",
  14117. height: math.unit(0.5, "mm")
  14118. },
  14119. {
  14120. name: "Micro",
  14121. height: math.unit(1, "mm"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Upsized",
  14126. height: math.unit(5 + 5 / 12, "feet")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(5 + 6 / 12, "feet"),
  14135. weight: math.unit(200, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/vivian-bijoux/front.svg",
  14139. extra: 1217/1209,
  14140. bottom: 76/1293
  14141. }
  14142. },
  14143. back: {
  14144. height: math.unit(5 + 6 / 12, "feet"),
  14145. weight: math.unit(200, "lb"),
  14146. name: "Back",
  14147. image: {
  14148. source: "./media/characters/vivian-bijoux/back.svg",
  14149. extra: 1214/1208,
  14150. bottom: 51/1265
  14151. }
  14152. },
  14153. dressed: {
  14154. height: math.unit(5 + 6 / 12, "feet"),
  14155. weight: math.unit(200, "lb"),
  14156. name: "Dressed",
  14157. image: {
  14158. source: "./media/characters/vivian-bijoux/dressed.svg",
  14159. extra: 1217/1209,
  14160. bottom: 76/1293
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(5 + 6 / 12, "feet"),
  14168. default: true
  14169. },
  14170. {
  14171. name: "Bad Dream",
  14172. height: math.unit(500, "feet")
  14173. },
  14174. {
  14175. name: "Nightmare",
  14176. height: math.unit(500, "miles")
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6 + 1 / 12, "feet"),
  14185. weight: math.unit(260, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/zeta/front.svg",
  14189. extra: 1968 / 1889,
  14190. bottom: 0.06
  14191. }
  14192. },
  14193. back: {
  14194. height: math.unit(6 + 1 / 12, "feet"),
  14195. weight: math.unit(260, "lb"),
  14196. name: "Back",
  14197. image: {
  14198. source: "./media/characters/zeta/back.svg",
  14199. extra: 1944 / 1858,
  14200. bottom: 0.03
  14201. }
  14202. },
  14203. hand: {
  14204. height: math.unit(1.112, "feet"),
  14205. name: "Hand",
  14206. image: {
  14207. source: "./media/characters/zeta/hand.svg"
  14208. }
  14209. },
  14210. foot: {
  14211. height: math.unit(1.48, "feet"),
  14212. name: "Foot",
  14213. image: {
  14214. source: "./media/characters/zeta/foot.svg"
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(6, "inches")
  14222. },
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(6 + 1 / 12, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(20, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(150, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/jamie-larsen/front.svg",
  14243. extra: 962 / 933,
  14244. bottom: 0.02
  14245. }
  14246. },
  14247. back: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(150, "lb"),
  14250. name: "Back",
  14251. image: {
  14252. source: "./media/characters/jamie-larsen/back.svg",
  14253. extra: 997 / 946
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Macro",
  14260. height: math.unit(28 + 7 / 12, "feet"),
  14261. default: true
  14262. },
  14263. {
  14264. name: "Macro+",
  14265. height: math.unit(180, "feet")
  14266. },
  14267. {
  14268. name: "Megamacro",
  14269. height: math.unit(10, "miles")
  14270. },
  14271. {
  14272. name: "Gigamacro",
  14273. height: math.unit(200000, "miles")
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(120, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/vance/front.svg",
  14286. extra: 1980 / 1890,
  14287. bottom: 0.09
  14288. }
  14289. },
  14290. back: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(120, "lb"),
  14293. name: "Back",
  14294. image: {
  14295. source: "./media/characters/vance/back.svg",
  14296. extra: 2081 / 1994,
  14297. bottom: 0.014
  14298. }
  14299. },
  14300. hand: {
  14301. height: math.unit(0.88, "feet"),
  14302. name: "Hand",
  14303. image: {
  14304. source: "./media/characters/vance/hand.svg"
  14305. }
  14306. },
  14307. foot: {
  14308. height: math.unit(0.64, "feet"),
  14309. name: "Foot",
  14310. image: {
  14311. source: "./media/characters/vance/foot.svg"
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Small",
  14318. height: math.unit(90, "feet"),
  14319. default: true
  14320. },
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(100, "meters")
  14324. },
  14325. {
  14326. name: "Megamacro",
  14327. height: math.unit(15, "miles")
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(180, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/xochitl/front.svg",
  14340. extra: 2297 / 2261,
  14341. bottom: 0.065
  14342. }
  14343. },
  14344. back: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(180, "lb"),
  14347. name: "Back",
  14348. image: {
  14349. source: "./media/characters/xochitl/back.svg",
  14350. extra: 2386 / 2354,
  14351. bottom: 0.01
  14352. }
  14353. },
  14354. foot: {
  14355. height: math.unit(6 / 5 * 1.15, "feet"),
  14356. weight: math.unit(150, "lb"),
  14357. name: "Foot",
  14358. image: {
  14359. source: "./media/characters/xochitl/foot.svg"
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(80, "feet")
  14367. },
  14368. {
  14369. name: "Macro+",
  14370. height: math.unit(400, "feet"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Gigamacro",
  14375. height: math.unit(80000, "miles")
  14376. },
  14377. {
  14378. name: "Gigamacro+",
  14379. height: math.unit(400000, "miles")
  14380. },
  14381. {
  14382. name: "Teramacro",
  14383. height: math.unit(300, "AU")
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/vincent/front.svg",
  14396. extra: 1130 / 1080,
  14397. bottom: 0.055
  14398. }
  14399. },
  14400. beak: {
  14401. height: math.unit(6 * 0.1, "feet"),
  14402. name: "Beak",
  14403. image: {
  14404. source: "./media/characters/vincent/beak.svg"
  14405. }
  14406. },
  14407. hand: {
  14408. height: math.unit(6 * 0.85, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Hand",
  14411. image: {
  14412. source: "./media/characters/vincent/hand.svg"
  14413. }
  14414. },
  14415. foot: {
  14416. height: math.unit(6 * 0.19, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Foot",
  14419. image: {
  14420. source: "./media/characters/vincent/foot.svg"
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Base",
  14427. height: math.unit(6 + 5 / 12, "feet"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Macro",
  14432. height: math.unit(300, "feet")
  14433. },
  14434. {
  14435. name: "Megamacro",
  14436. height: math.unit(2, "miles")
  14437. },
  14438. {
  14439. name: "Gigamacro",
  14440. height: math.unit(1000, "miles")
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(2, "meters"),
  14449. weight: math.unit(500, "kg"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/coatl/front.svg",
  14453. extra: 3948 / 3500,
  14454. bottom: 0.082
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(4, "meters")
  14462. },
  14463. {
  14464. name: "Macro",
  14465. height: math.unit(100, "meters"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Macro+",
  14470. height: math.unit(300, "meters")
  14471. },
  14472. {
  14473. name: "Megamacro",
  14474. height: math.unit(3, "gigameters")
  14475. },
  14476. {
  14477. name: "Megamacro+",
  14478. height: math.unit(300, "terameters")
  14479. },
  14480. {
  14481. name: "Megamacro++",
  14482. height: math.unit(3, "lightyears")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(50, "kg"),
  14492. name: "front",
  14493. image: {
  14494. source: "./media/characters/shiroryu/front.svg",
  14495. extra: 1990 / 1935
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Mortal Mingling",
  14502. height: math.unit(3, "meters")
  14503. },
  14504. {
  14505. name: "Kaiju-ish",
  14506. height: math.unit(250, "meters")
  14507. },
  14508. {
  14509. name: "Somewhat Godly",
  14510. height: math.unit(400, "km"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Planetary",
  14515. height: math.unit(300, "megameters")
  14516. },
  14517. {
  14518. name: "Galaxy-dwarfing",
  14519. height: math.unit(450, "kiloparsecs")
  14520. },
  14521. {
  14522. name: "Universe Eater",
  14523. height: math.unit(150, "gigaparsecs")
  14524. },
  14525. {
  14526. name: "Almost Immeasurable",
  14527. height: math.unit(1.3e266, "yottaparsecs")
  14528. },
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14533. {
  14534. front: {
  14535. height: math.unit(6, "feet"),
  14536. weight: math.unit(150, "lb"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/umeko/front.svg",
  14540. extra: 1,
  14541. bottom: 0.019
  14542. }
  14543. },
  14544. frontArmored: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(150, "lb"),
  14547. name: "Front (Armored)",
  14548. image: {
  14549. source: "./media/characters/umeko/front-armored.svg",
  14550. extra: 1,
  14551. bottom: 0.021
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Macro",
  14558. height: math.unit(220, "feet"),
  14559. default: true
  14560. },
  14561. {
  14562. name: "Guardian Dragon",
  14563. height: math.unit(50, "miles")
  14564. },
  14565. {
  14566. name: "Cosmic",
  14567. height: math.unit(800000, "miles")
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(6, "feet"),
  14576. weight: math.unit(150, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/cassidy/front.svg",
  14580. extra: 810/808,
  14581. bottom: 41/851
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Canon Height",
  14588. height: math.unit(120, "feet"),
  14589. default: true
  14590. },
  14591. {
  14592. name: "Macro+",
  14593. height: math.unit(400, "feet")
  14594. },
  14595. {
  14596. name: "Macro++",
  14597. height: math.unit(4000, "feet")
  14598. },
  14599. {
  14600. name: "Megamacro",
  14601. height: math.unit(3, "miles")
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(6, "feet"),
  14610. weight: math.unit(150, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/isaac/front.svg",
  14614. extra: 896 / 815,
  14615. bottom: 0.11
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Human Size",
  14622. height: math.unit(8, "feet"),
  14623. default: true
  14624. },
  14625. {
  14626. name: "Macro",
  14627. height: math.unit(400, "feet")
  14628. },
  14629. {
  14630. name: "Megamacro",
  14631. height: math.unit(50, "miles")
  14632. },
  14633. {
  14634. name: "Canon Height",
  14635. height: math.unit(200, "AU")
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(6, "feet"),
  14644. weight: math.unit(72, "kg"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/sleekit/front.svg",
  14648. extra: 4693 / 4487,
  14649. bottom: 0.012
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Minimum Height",
  14656. height: math.unit(10, "meters")
  14657. },
  14658. {
  14659. name: "Smaller",
  14660. height: math.unit(25, "meters")
  14661. },
  14662. {
  14663. name: "Larger",
  14664. height: math.unit(38, "meters"),
  14665. default: true
  14666. },
  14667. {
  14668. name: "Maximum height",
  14669. height: math.unit(100, "meters")
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/nillia/front.svg",
  14682. extra: 2195 / 2037,
  14683. bottom: 0.005
  14684. }
  14685. },
  14686. back: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Back",
  14690. image: {
  14691. source: "./media/characters/nillia/back.svg",
  14692. extra: 2195 / 2037,
  14693. bottom: 0.005
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Canon Height",
  14700. height: math.unit(489, "feet"),
  14701. default: true
  14702. }
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/mesmyriza/front.svg",
  14714. extra: 2067 / 1784,
  14715. bottom: 0.035
  14716. }
  14717. },
  14718. foot: {
  14719. height: math.unit(6 / (250 / 35), "feet"),
  14720. name: "Foot",
  14721. image: {
  14722. source: "./media/characters/mesmyriza/foot.svg"
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Macro",
  14729. height: math.unit(457, "meters"),
  14730. default: true
  14731. },
  14732. {
  14733. name: "Megamacro",
  14734. height: math.unit(8, "megameters")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(250, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/saudade/front.svg",
  14747. extra: 1172 / 1139,
  14748. bottom: 0.035
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Micro",
  14755. height: math.unit(3, "inches")
  14756. },
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6, "feet"),
  14760. default: true
  14761. },
  14762. {
  14763. name: "Macro",
  14764. height: math.unit(50, "feet")
  14765. },
  14766. {
  14767. name: "Megamacro",
  14768. height: math.unit(2800, "feet")
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(5 + 4 / 12, "feet"),
  14777. weight: math.unit(100, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/keireer/front.svg",
  14781. extra: 716 / 666,
  14782. bottom: 0.05
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(5 + 4 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(6, "feet"),
  14799. weight: math.unit(90, "kg"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/mirja/front.svg",
  14803. extra: 1789 / 1683,
  14804. bottom: 0.05
  14805. }
  14806. },
  14807. frontDressed: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(90, "lb"),
  14810. name: "Front (Dressed)",
  14811. image: {
  14812. source: "./media/characters/mirja/front-dressed.svg",
  14813. extra: 1789 / 1683,
  14814. bottom: 0.05
  14815. }
  14816. },
  14817. back: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(90, "lb"),
  14820. name: "Back",
  14821. image: {
  14822. source: "./media/characters/mirja/back.svg",
  14823. extra: 953 / 917,
  14824. bottom: 0.017
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "\"Incognito\"",
  14831. height: math.unit(3, "meters")
  14832. },
  14833. {
  14834. name: "Strolling Size",
  14835. height: math.unit(15, "km")
  14836. },
  14837. {
  14838. name: "Larger Strolling Size",
  14839. height: math.unit(400, "km")
  14840. },
  14841. {
  14842. name: "Preferred Size",
  14843. height: math.unit(5000, "km")
  14844. },
  14845. {
  14846. name: "True Size",
  14847. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(15, "feet"),
  14857. weight: math.unit(880, "kg"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/nightraver/front.svg",
  14861. extra: 2444 / 2160,
  14862. bottom: 0.027
  14863. }
  14864. },
  14865. back: {
  14866. height: math.unit(15, "feet"),
  14867. weight: math.unit(880, "kg"),
  14868. name: "Back",
  14869. image: {
  14870. source: "./media/characters/nightraver/back.svg",
  14871. extra: 2309 / 2180,
  14872. bottom: 0.005
  14873. }
  14874. },
  14875. sole: {
  14876. height: math.unit(2.878, "feet"),
  14877. name: "Sole",
  14878. image: {
  14879. source: "./media/characters/nightraver/sole.svg"
  14880. }
  14881. },
  14882. foot: {
  14883. height: math.unit(2.285, "feet"),
  14884. name: "Foot",
  14885. image: {
  14886. source: "./media/characters/nightraver/foot.svg"
  14887. }
  14888. },
  14889. maw: {
  14890. height: math.unit(2.67, "feet"),
  14891. name: "Maw",
  14892. image: {
  14893. source: "./media/characters/nightraver/maw.svg"
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Micro",
  14900. height: math.unit(1, "cm")
  14901. },
  14902. {
  14903. name: "Normal",
  14904. height: math.unit(15, "feet"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Macro",
  14909. height: math.unit(300, "feet")
  14910. },
  14911. {
  14912. name: "Megamacro",
  14913. height: math.unit(300, "miles")
  14914. },
  14915. {
  14916. name: "Gigamacro",
  14917. height: math.unit(10000, "miles")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14923. {
  14924. side: {
  14925. height: math.unit(2, "inches"),
  14926. weight: math.unit(5, "grams"),
  14927. name: "Side",
  14928. image: {
  14929. source: "./media/characters/arc/side.svg"
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Micro",
  14936. height: math.unit(2, "inches"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(1.1938, "meters"),
  14946. weight: math.unit(54, "kg"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/nebula-shahar/front.svg",
  14950. extra: 1642 / 1436,
  14951. bottom: 0.06
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Megamicro",
  14958. height: math.unit(0.3, "mm")
  14959. },
  14960. {
  14961. name: "Micro",
  14962. height: math.unit(3, "cm")
  14963. },
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(138, "cm"),
  14967. default: true
  14968. },
  14969. {
  14970. name: "Macro",
  14971. height: math.unit(30, "m")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(5.24, "feet"),
  14980. weight: math.unit(150, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/shayla/front.svg",
  14984. extra: 1512 / 1414,
  14985. bottom: 0.01
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(5.24, "feet"),
  14990. weight: math.unit(150, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/shayla/back.svg",
  14994. extra: 1512 / 1414
  14995. }
  14996. },
  14997. hand: {
  14998. height: math.unit(0.7781496062992126, "feet"),
  14999. name: "Hand",
  15000. image: {
  15001. source: "./media/characters/shayla/hand.svg"
  15002. }
  15003. },
  15004. foot: {
  15005. height: math.unit(1.4206036745406823, "feet"),
  15006. name: "Foot",
  15007. image: {
  15008. source: "./media/characters/shayla/foot.svg"
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Micro",
  15015. height: math.unit(0.32, "feet")
  15016. },
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(5.24, "feet"),
  15020. default: true
  15021. },
  15022. {
  15023. name: "Macro",
  15024. height: math.unit(492.12, "feet")
  15025. },
  15026. {
  15027. name: "Megamacro",
  15028. height: math.unit(186.41, "miles")
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(2.2, "m"),
  15037. weight: math.unit(120, "kg"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/pia-jr/front.svg",
  15041. extra: 1000 / 970,
  15042. bottom: 0.035
  15043. }
  15044. },
  15045. hand: {
  15046. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15047. name: "Hand",
  15048. image: {
  15049. source: "./media/characters/pia-jr/hand.svg"
  15050. }
  15051. },
  15052. paw: {
  15053. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15054. name: "Paw",
  15055. image: {
  15056. source: "./media/characters/pia-jr/paw.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Micro",
  15063. height: math.unit(1.2, "cm")
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(2.2, "m"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(180, "m")
  15073. },
  15074. {
  15075. name: "Megamacro",
  15076. height: math.unit(420, "km")
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(2, "m"),
  15085. weight: math.unit(115, "kg"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/pia-sr/front.svg",
  15089. extra: 760 / 730,
  15090. bottom: 0.015
  15091. }
  15092. },
  15093. back: {
  15094. height: math.unit(2, "m"),
  15095. weight: math.unit(115, "kg"),
  15096. name: "Back",
  15097. image: {
  15098. source: "./media/characters/pia-sr/back.svg",
  15099. extra: 760 / 730,
  15100. bottom: 0.01
  15101. }
  15102. },
  15103. hand: {
  15104. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15105. name: "Hand",
  15106. image: {
  15107. source: "./media/characters/pia-sr/hand.svg"
  15108. }
  15109. },
  15110. foot: {
  15111. height: math.unit(1.83, "feet"),
  15112. name: "Foot",
  15113. image: {
  15114. source: "./media/characters/pia-sr/foot.svg"
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Micro",
  15121. height: math.unit(88, "mm")
  15122. },
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(2, "m"),
  15126. default: true
  15127. },
  15128. {
  15129. name: "Macro",
  15130. height: math.unit(200, "m")
  15131. },
  15132. {
  15133. name: "Megamacro",
  15134. height: math.unit(420, "km")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(8 + 2 / 12, "feet"),
  15143. weight: math.unit(300, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/kibibyte/front.svg",
  15147. extra: 2221 / 2098,
  15148. bottom: 0.04
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(8 + 2 / 12, "feet"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Socialable Macro",
  15160. height: math.unit(50, "feet")
  15161. },
  15162. {
  15163. name: "Macro",
  15164. height: math.unit(300, "feet")
  15165. },
  15166. {
  15167. name: "Megamacro",
  15168. height: math.unit(500, "miles")
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/felix/front.svg",
  15181. extra: 762 / 722,
  15182. bottom: 0.02
  15183. }
  15184. },
  15185. frontClothed: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Front (Clothed)",
  15189. image: {
  15190. source: "./media/characters/felix/front-clothed.svg",
  15191. extra: 762 / 722,
  15192. bottom: 0.02
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(6 + 8 / 12, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(2600, "feet")
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(450, "miles")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6 + 1 / 12, "feet"),
  15217. weight: math.unit(250, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/tobo/front.svg",
  15221. extra: 608 / 586,
  15222. bottom: 0.023
  15223. }
  15224. },
  15225. back: {
  15226. height: math.unit(6 + 1 / 12, "feet"),
  15227. weight: math.unit(250, "lb"),
  15228. name: "Back",
  15229. image: {
  15230. source: "./media/characters/tobo/back.svg",
  15231. extra: 608 / 586
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Nano",
  15238. height: math.unit(2, "nm")
  15239. },
  15240. {
  15241. name: "Megamicro",
  15242. height: math.unit(0.1, "mm")
  15243. },
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(1, "inch"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Human-sized",
  15251. height: math.unit(6 + 1 / 12, "feet")
  15252. },
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(250, "feet")
  15256. },
  15257. {
  15258. name: "Megamacro",
  15259. height: math.unit(75, "miles")
  15260. },
  15261. {
  15262. name: "Texas-sized",
  15263. height: math.unit(750, "miles")
  15264. },
  15265. {
  15266. name: "Teramacro",
  15267. height: math.unit(50000, "miles")
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(6, "feet"),
  15276. weight: math.unit(269, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/danny-kapowsky/front.svg",
  15280. extra: 766 / 736,
  15281. bottom: 0.044
  15282. }
  15283. },
  15284. back: {
  15285. height: math.unit(6, "feet"),
  15286. weight: math.unit(269, "lb"),
  15287. name: "Back",
  15288. image: {
  15289. source: "./media/characters/danny-kapowsky/back.svg",
  15290. extra: 797 / 760,
  15291. bottom: 0.025
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(150, "feet"),
  15299. default: true
  15300. },
  15301. {
  15302. name: "Macro+",
  15303. height: math.unit(200, "feet")
  15304. },
  15305. {
  15306. name: "Macro++",
  15307. height: math.unit(300, "feet")
  15308. },
  15309. {
  15310. name: "Macro+++",
  15311. height: math.unit(400, "feet")
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15317. {
  15318. side: {
  15319. height: math.unit(6, "feet"),
  15320. weight: math.unit(170, "lb"),
  15321. name: "Side",
  15322. image: {
  15323. source: "./media/characters/finn/side.svg",
  15324. extra: 1953 / 1807,
  15325. bottom: 0.057
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Megamacro",
  15332. height: math.unit(14445, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(5 + 6 / 12, "feet"),
  15342. weight: math.unit(125, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/roy/front.svg",
  15346. extra: 1,
  15347. bottom: 0.11
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Micro",
  15354. height: math.unit(3, "inches"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(5 + 6 / 12, "feet")
  15360. },
  15361. {
  15362. name: "Lesser Macro",
  15363. height: math.unit(60, "feet")
  15364. },
  15365. {
  15366. name: "Greater Macro",
  15367. height: math.unit(120, "feet")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(100, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/aevsivs/front.svg",
  15380. extra: 1,
  15381. bottom: 0.03
  15382. }
  15383. },
  15384. back: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(100, "lb"),
  15387. name: "Back",
  15388. image: {
  15389. source: "./media/characters/aevsivs/back.svg"
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Micro",
  15396. height: math.unit(2, "inches"),
  15397. default: true
  15398. },
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(5, "feet")
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(5 + 7 / 12, "feet"),
  15410. weight: math.unit(159, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/hildegard/front.svg",
  15414. extra: 289 / 269,
  15415. bottom: 7.63 / 297.8
  15416. }
  15417. },
  15418. back: {
  15419. height: math.unit(5 + 7 / 12, "feet"),
  15420. weight: math.unit(159, "lb"),
  15421. name: "Back",
  15422. image: {
  15423. source: "./media/characters/hildegard/back.svg",
  15424. extra: 280 / 260,
  15425. bottom: 2.3 / 282
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(5 + 7 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15439. {
  15440. bernard: {
  15441. height: math.unit(2 + 7 / 12, "feet"),
  15442. weight: math.unit(66, "lb"),
  15443. name: "Bernard",
  15444. rename: true,
  15445. image: {
  15446. source: "./media/characters/bernard-wilder/bernard.svg",
  15447. extra: 192 / 128,
  15448. bottom: 0.05
  15449. }
  15450. },
  15451. wilder: {
  15452. height: math.unit(5 + 8 / 12, "feet"),
  15453. weight: math.unit(143, "lb"),
  15454. name: "Wilder",
  15455. rename: true,
  15456. image: {
  15457. source: "./media/characters/bernard-wilder/wilder.svg",
  15458. extra: 361 / 312,
  15459. bottom: 0.02
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(2 + 7 / 12, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15473. {
  15474. anthro: {
  15475. height: math.unit(6 + 1 / 12, "feet"),
  15476. weight: math.unit(155, "lb"),
  15477. name: "Anthro",
  15478. image: {
  15479. source: "./media/characters/hearth/anthro.svg",
  15480. extra: 1178/1136,
  15481. bottom: 28/1206
  15482. }
  15483. },
  15484. feral: {
  15485. height: math.unit(3.78, "feet"),
  15486. weight: math.unit(35, "kg"),
  15487. name: "Feral",
  15488. image: {
  15489. source: "./media/characters/hearth/feral.svg",
  15490. extra: 153 / 135,
  15491. bottom: 0.03
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(6 + 1 / 12, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15505. {
  15506. front: {
  15507. height: math.unit(6, "feet"),
  15508. weight: math.unit(182, "lb"),
  15509. name: "Front",
  15510. image: {
  15511. source: "./media/characters/ingrid/front.svg",
  15512. extra: 294 / 268,
  15513. bottom: 0.027
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(6, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15527. {
  15528. eevee: {
  15529. height: math.unit(2 + 10 / 12, "feet"),
  15530. weight: math.unit(86, "lb"),
  15531. name: "Malgam",
  15532. image: {
  15533. source: "./media/characters/malgam/eevee.svg",
  15534. extra: 952/784,
  15535. bottom: 38/990
  15536. }
  15537. },
  15538. sylveon: {
  15539. height: math.unit(4, "feet"),
  15540. weight: math.unit(101, "lb"),
  15541. name: "Future Malgam",
  15542. rename: true,
  15543. image: {
  15544. source: "./media/characters/malgam/sylveon.svg",
  15545. extra: 371 / 325,
  15546. bottom: 0.015
  15547. }
  15548. },
  15549. gigantamax: {
  15550. height: math.unit(50, "feet"),
  15551. name: "Gigantamax Malgam",
  15552. rename: true,
  15553. image: {
  15554. source: "./media/characters/malgam/gigantamax.svg"
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(2 + 10 / 12, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(5 + 11 / 12, "feet"),
  15571. weight: math.unit(188, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/fleur/front.svg",
  15575. extra: 309 / 283,
  15576. bottom: 0.007
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(5 + 11 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(5 + 4 / 12, "feet"),
  15593. weight: math.unit(122, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/jude/front.svg",
  15597. extra: 288 / 273,
  15598. bottom: 0.03
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(5 + 4 / 12, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(5 + 11 / 12, "feet"),
  15615. weight: math.unit(190, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/seara/front.svg",
  15619. extra: 1,
  15620. bottom: 0.05
  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: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(16 + 5 / 12, "feet"),
  15637. weight: math.unit(524, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/caspian-lugia/front.svg",
  15641. extra: 1,
  15642. bottom: 0.04
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(16 + 5 / 12, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(5 + 7 / 12, "feet"),
  15659. weight: math.unit(170, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/mika/front.svg",
  15663. extra: 1,
  15664. bottom: 0.016
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(5 + 7 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(6 + 2 / 12, "feet"),
  15681. weight: math.unit(268, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/sol/front.svg",
  15685. extra: 247 / 231,
  15686. bottom: 0.05
  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: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15700. {
  15701. buizel: {
  15702. height: math.unit(2 + 5 / 12, "feet"),
  15703. weight: math.unit(87, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/umiko/buizel.svg",
  15707. extra: 172 / 157,
  15708. bottom: 0.01
  15709. },
  15710. form: "buizel",
  15711. default: true
  15712. },
  15713. floatzel: {
  15714. height: math.unit(5 + 9 / 12, "feet"),
  15715. weight: math.unit(250, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/umiko/floatzel.svg",
  15719. extra: 1076/1006,
  15720. bottom: 15/1091
  15721. },
  15722. form: "floatzel",
  15723. default: true
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(2 + 5 / 12, "feet"),
  15730. form: "buizel",
  15731. default: true
  15732. },
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(5 + 9 / 12, "feet"),
  15736. form: "floatzel",
  15737. default: true
  15738. },
  15739. ],
  15740. {
  15741. "buizel": {
  15742. name: "Buizel"
  15743. },
  15744. "floatzel": {
  15745. name: "Floatzel",
  15746. default: true
  15747. }
  15748. }
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6 + 2 / 12, "feet"),
  15755. weight: math.unit(146, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/iliac/front.svg",
  15759. extra: 389 / 365,
  15760. bottom: 0.035
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6 + 2 / 12, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(170, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/topaz/front.svg",
  15781. extra: 317 / 303,
  15782. bottom: 0.055
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(5 + 11 / 12, "feet"),
  15799. weight: math.unit(144, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/gabriel/front.svg",
  15803. extra: 285 / 262,
  15804. bottom: 0.004
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(5 + 11 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15818. {
  15819. side: {
  15820. height: math.unit(6 + 5 / 12, "feet"),
  15821. weight: math.unit(300, "lb"),
  15822. name: "Side",
  15823. image: {
  15824. source: "./media/characters/tempest-suicune/side.svg",
  15825. extra: 195 / 154,
  15826. bottom: 0.04
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(6 + 5 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(7 + 2 / 12, "feet"),
  15843. weight: math.unit(322, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/vulcan/front.svg",
  15847. extra: 154 / 147,
  15848. bottom: 0.04
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(7 + 2 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(5 + 10 / 12, "feet"),
  15865. weight: math.unit(264, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/gault/front.svg",
  15869. extra: 161 / 140,
  15870. bottom: 0.028
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(5 + 10 / 12, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/shard/front.svg",
  15891. extra: 273 / 238,
  15892. bottom: 0.02
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(3 + 6 / 12, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15906. {
  15907. front: {
  15908. height: math.unit(5 + 11 / 12, "feet"),
  15909. weight: math.unit(146, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/ashe/front.svg",
  15913. extra: 400 / 373,
  15914. bottom: 0.01
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(5 + 11 / 12, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(5 + 5 / 12, "feet"),
  15931. weight: math.unit(135, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/beatrix/front.svg",
  15935. extra: 392 / 379,
  15936. bottom: 0.01
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(6, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(6 + 2/12, "feet"),
  15953. weight: math.unit(135, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/ignatius/front.svg",
  15957. extra: 1380/1259,
  15958. bottom: 27/1407
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(6 + 2/12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6 + 2 / 12, "feet"),
  15975. weight: math.unit(138, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/mei-li/front.svg",
  15979. extra: 237 / 229,
  15980. bottom: 0.03
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(6 + 2 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(2 + 4 / 12, "feet"),
  15997. weight: math.unit(62, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/puru/front.svg",
  16001. extra: 206 / 149,
  16002. bottom: 0.06
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(2 + 4 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16016. {
  16017. anthro: {
  16018. height: math.unit(5 + 8/12, "feet"),
  16019. weight: math.unit(200, "lb"),
  16020. energyNeed: math.unit(2000, "kcal"),
  16021. name: "Anthro",
  16022. image: {
  16023. source: "./media/characters/kee/anthro.svg",
  16024. extra: 3251/3184,
  16025. bottom: 250/3501
  16026. }
  16027. },
  16028. taur: {
  16029. height: math.unit(11, "feet"),
  16030. weight: math.unit(500, "lb"),
  16031. energyNeed: math.unit(5000, "kcal"),
  16032. name: "Taur",
  16033. image: {
  16034. source: "./media/characters/kee/taur.svg",
  16035. extra: 1362/1320,
  16036. bottom: 83/1445
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(5 + 8/12, "feet"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Macro",
  16048. height: math.unit(35, "feet")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16054. {
  16055. anthro: {
  16056. height: math.unit(7, "feet"),
  16057. weight: math.unit(190, "lb"),
  16058. name: "Anthro",
  16059. image: {
  16060. source: "./media/characters/cobalt-dracha/anthro.svg",
  16061. extra: 231 / 225,
  16062. bottom: 0.04
  16063. }
  16064. },
  16065. feral: {
  16066. height: math.unit(9 + 7 / 12, "feet"),
  16067. weight: math.unit(294, "lb"),
  16068. name: "Feral",
  16069. image: {
  16070. source: "./media/characters/cobalt-dracha/feral.svg",
  16071. extra: 692 / 633,
  16072. bottom: 0.05
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(7, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16086. {
  16087. fallen: {
  16088. height: math.unit(11 + 8 / 12, "feet"),
  16089. weight: math.unit(485, "lb"),
  16090. name: "Java (Fallen)",
  16091. rename: true,
  16092. image: {
  16093. source: "./media/characters/java/fallen.svg",
  16094. extra: 226 / 208,
  16095. bottom: 0.005
  16096. }
  16097. },
  16098. godkin: {
  16099. height: math.unit(10 + 6 / 12, "feet"),
  16100. weight: math.unit(328, "lb"),
  16101. name: "Java (Godkin)",
  16102. rename: true,
  16103. image: {
  16104. source: "./media/characters/java/godkin.svg",
  16105. extra: 1104/1068,
  16106. bottom: 36/1140
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(11 + 8 / 12, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(5 + 9 / 12, "feet"),
  16123. weight: math.unit(170, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/purna/front.svg",
  16127. extra: 239 / 229,
  16128. bottom: 0.01
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(5 + 9 / 12, "feet"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(5 + 9 / 12, "feet"),
  16145. weight: math.unit(142, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/kuva/front.svg",
  16149. extra: 281 / 271,
  16150. bottom: 0.006
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(5 + 9 / 12, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16164. {
  16165. anthro: {
  16166. height: math.unit(9 + 2 / 12, "feet"),
  16167. weight: math.unit(270, "lb"),
  16168. name: "Anthro",
  16169. image: {
  16170. source: "./media/characters/embra/anthro.svg",
  16171. extra: 200 / 187,
  16172. bottom: 0.02
  16173. }
  16174. },
  16175. feral: {
  16176. height: math.unit(18 + 8 / 12, "feet"),
  16177. weight: math.unit(576, "lb"),
  16178. name: "Feral",
  16179. image: {
  16180. source: "./media/characters/embra/feral.svg",
  16181. extra: 152 / 137,
  16182. bottom: 0.037
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(9 + 2 / 12, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16196. {
  16197. anthro: {
  16198. height: math.unit(10 + 9 / 12, "feet"),
  16199. weight: math.unit(224, "lb"),
  16200. name: "Anthro",
  16201. image: {
  16202. source: "./media/characters/grottos/anthro.svg",
  16203. extra: 350 / 332,
  16204. bottom: 0.045
  16205. }
  16206. },
  16207. feral: {
  16208. height: math.unit(20 + 7 / 12, "feet"),
  16209. weight: math.unit(629, "lb"),
  16210. name: "Feral",
  16211. image: {
  16212. source: "./media/characters/grottos/feral.svg",
  16213. extra: 207 / 190,
  16214. bottom: 0.05
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(10 + 9 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16228. {
  16229. anthro: {
  16230. height: math.unit(9 + 6 / 12, "feet"),
  16231. weight: math.unit(298, "lb"),
  16232. name: "Anthro",
  16233. image: {
  16234. source: "./media/characters/frifna/anthro.svg",
  16235. extra: 282 / 269,
  16236. bottom: 0.015
  16237. }
  16238. },
  16239. feral: {
  16240. height: math.unit(16 + 2 / 12, "feet"),
  16241. weight: math.unit(624, "lb"),
  16242. name: "Feral",
  16243. image: {
  16244. source: "./media/characters/frifna/feral.svg"
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(9 + 6 / 12, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6 + 2 / 12, "feet"),
  16261. weight: math.unit(168, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/elise/front.svg",
  16265. extra: 276 / 271
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(6 + 2 / 12, "feet"),
  16273. default: true
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16279. {
  16280. front: {
  16281. height: math.unit(5 + 10 / 12, "feet"),
  16282. weight: math.unit(210, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/glade/front.svg",
  16286. extra: 258 / 247,
  16287. bottom: 0.008
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(5 + 10 / 12, "feet"),
  16295. default: true
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(5 + 10 / 12, "feet"),
  16304. weight: math.unit(129, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/rina/front.svg",
  16308. extra: 266 / 255,
  16309. bottom: 0.005
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(5 + 10 / 12, "feet"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16323. {
  16324. front: {
  16325. height: math.unit(6 + 1 / 12, "feet"),
  16326. weight: math.unit(192, "lb"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/veronica/front.svg",
  16330. extra: 319 / 309,
  16331. bottom: 0.005
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(6 + 1 / 12, "feet"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(9 + 3 / 12, "feet"),
  16348. weight: math.unit(1100, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/braxton/front.svg",
  16352. extra: 1057 / 984,
  16353. bottom: 0.05
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(9 + 3 / 12, "feet")
  16361. },
  16362. {
  16363. name: "Giant",
  16364. height: math.unit(300, "feet"),
  16365. default: true
  16366. },
  16367. {
  16368. name: "Macro",
  16369. height: math.unit(700, "feet")
  16370. },
  16371. {
  16372. name: "Megamacro",
  16373. height: math.unit(6000, "feet")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(6 + 7 / 12, "feet"),
  16382. weight: math.unit(150, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/blue-feyonics/front.svg",
  16386. extra: 1403 / 1306,
  16387. bottom: 0.047
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(6 + 7 / 12, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(1.8, "meters"),
  16404. weight: math.unit(60, "kg"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/maxwell/front.svg",
  16408. extra: 2060 / 1873
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(1, "mm")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(1.8, "meter"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Macro",
  16424. height: math.unit(30, "meters")
  16425. },
  16426. {
  16427. name: "Megamacro",
  16428. height: math.unit(10, "km")
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(6, "feet"),
  16437. weight: math.unit(150, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/jack/front.svg",
  16441. extra: 1754 / 1640,
  16442. bottom: 0.01
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(80000, "feet"),
  16450. default: true
  16451. },
  16452. {
  16453. name: "Max size",
  16454. height: math.unit(10, "lightyears")
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16460. {
  16461. urban: {
  16462. height: math.unit(5, "feet"),
  16463. weight: math.unit(240, "lb"),
  16464. name: "Urban",
  16465. image: {
  16466. source: "./media/characters/cafat/urban.svg",
  16467. extra: 1223/1126,
  16468. bottom: 205/1428
  16469. }
  16470. },
  16471. summer: {
  16472. height: math.unit(5, "feet"),
  16473. weight: math.unit(240, "lb"),
  16474. name: "Summer",
  16475. image: {
  16476. source: "./media/characters/cafat/summer.svg",
  16477. extra: 1223/1126,
  16478. bottom: 205/1428
  16479. }
  16480. },
  16481. winter: {
  16482. height: math.unit(5, "feet"),
  16483. weight: math.unit(240, "lb"),
  16484. name: "Winter",
  16485. image: {
  16486. source: "./media/characters/cafat/winter.svg",
  16487. extra: 1223/1126,
  16488. bottom: 205/1428
  16489. }
  16490. },
  16491. lingerie: {
  16492. height: math.unit(5, "feet"),
  16493. weight: math.unit(240, "lb"),
  16494. name: "Lingerie",
  16495. image: {
  16496. source: "./media/characters/cafat/lingerie.svg",
  16497. extra: 1223/1126,
  16498. bottom: 205/1428
  16499. }
  16500. },
  16501. upright: {
  16502. height: math.unit(6.3, "feet"),
  16503. weight: math.unit(240, "lb"),
  16504. name: "Upright",
  16505. image: {
  16506. source: "./media/characters/cafat/upright.svg",
  16507. bottom: 0.01
  16508. }
  16509. },
  16510. uprightFull: {
  16511. height: math.unit(6.3, "feet"),
  16512. weight: math.unit(240, "lb"),
  16513. name: "Upright (Full)",
  16514. image: {
  16515. source: "./media/characters/cafat/upright-full.svg",
  16516. bottom: 0.01
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Small",
  16523. height: math.unit(5, "feet"),
  16524. default: true
  16525. },
  16526. {
  16527. name: "Large",
  16528. height: math.unit(13, "feet")
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6, "feet"),
  16537. weight: math.unit(150, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/verin-raharra/front.svg",
  16541. extra: 5019 / 4835,
  16542. bottom: 0.023
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(7 + 5 / 12, "feet"),
  16550. default: true
  16551. },
  16552. {
  16553. name: "Upsized",
  16554. height: math.unit(20, "feet")
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(7, "feet"),
  16563. weight: math.unit(230, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/nakata/front.svg",
  16567. extra: 1.005,
  16568. bottom: 0.01
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(7, "feet"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Big",
  16580. height: math.unit(14, "feet")
  16581. },
  16582. {
  16583. name: "Macro",
  16584. height: math.unit(400, "feet")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(4.91, "feet"),
  16593. weight: math.unit(100, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/lily/front.svg",
  16597. extra: 1585 / 1415,
  16598. bottom: 0.02
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(4.91, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16612. {
  16613. laying: {
  16614. height: math.unit(4 + 4 / 12, "feet"),
  16615. weight: math.unit(600, "lb"),
  16616. name: "Laying",
  16617. image: {
  16618. source: "./media/characters/sheila/laying.svg",
  16619. extra: 1333 / 1265,
  16620. bottom: 0.16
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(4 + 4 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(190, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/sax/front.svg",
  16641. extra: 1187 / 973,
  16642. bottom: 0.042
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Micro",
  16649. height: math.unit(4, "inches"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(6, "feet"),
  16659. weight: math.unit(150, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/pandora/front.svg",
  16663. extra: 2720 / 2556,
  16664. bottom: 0.015
  16665. }
  16666. },
  16667. back: {
  16668. height: math.unit(6, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Back",
  16671. image: {
  16672. source: "./media/characters/pandora/back.svg",
  16673. extra: 2720 / 2556,
  16674. bottom: 0.01
  16675. }
  16676. },
  16677. beans: {
  16678. height: math.unit(6 / 8, "feet"),
  16679. name: "Beans",
  16680. image: {
  16681. source: "./media/characters/pandora/beans.svg"
  16682. }
  16683. },
  16684. collar: {
  16685. height: math.unit(0.31, "feet"),
  16686. name: "Collar",
  16687. image: {
  16688. source: "./media/characters/pandora/collar.svg"
  16689. }
  16690. },
  16691. skirt: {
  16692. height: math.unit(6, "feet"),
  16693. weight: math.unit(150, "lb"),
  16694. name: "Skirt",
  16695. image: {
  16696. source: "./media/characters/pandora/skirt.svg",
  16697. extra: 1622 / 1525,
  16698. bottom: 0.015
  16699. }
  16700. },
  16701. hoodie: {
  16702. height: math.unit(6, "feet"),
  16703. weight: math.unit(150, "lb"),
  16704. name: "Hoodie",
  16705. image: {
  16706. source: "./media/characters/pandora/hoodie.svg",
  16707. extra: 1622 / 1525,
  16708. bottom: 0.015
  16709. }
  16710. },
  16711. casual: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(150, "lb"),
  16714. name: "Casual",
  16715. image: {
  16716. source: "./media/characters/pandora/casual.svg",
  16717. extra: 1622 / 1525,
  16718. bottom: 0.015
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(6, "feet")
  16726. },
  16727. {
  16728. name: "Big Steppy",
  16729. height: math.unit(1, "km"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Galactic Steppy",
  16734. height: math.unit(2, "gigameters")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16740. {
  16741. side: {
  16742. height: math.unit(10, "feet"),
  16743. weight: math.unit(800, "kg"),
  16744. name: "Side",
  16745. image: {
  16746. source: "./media/characters/venio-darcony/side.svg",
  16747. extra: 1373 / 1003,
  16748. bottom: 0.037
  16749. }
  16750. },
  16751. front: {
  16752. height: math.unit(19, "feet"),
  16753. weight: math.unit(800, "kg"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/venio-darcony/front.svg"
  16757. }
  16758. },
  16759. back: {
  16760. height: math.unit(19, "feet"),
  16761. weight: math.unit(800, "kg"),
  16762. name: "Back",
  16763. image: {
  16764. source: "./media/characters/venio-darcony/back.svg"
  16765. }
  16766. },
  16767. sideNsfw: {
  16768. height: math.unit(10, "feet"),
  16769. weight: math.unit(800, "kg"),
  16770. name: "Side (NSFW)",
  16771. image: {
  16772. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16773. extra: 1373 / 1003,
  16774. bottom: 0.037
  16775. }
  16776. },
  16777. frontNsfw: {
  16778. height: math.unit(19, "feet"),
  16779. weight: math.unit(800, "kg"),
  16780. name: "Front (NSFW)",
  16781. image: {
  16782. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16783. }
  16784. },
  16785. backNsfw: {
  16786. height: math.unit(19, "feet"),
  16787. weight: math.unit(800, "kg"),
  16788. name: "Back (NSFW)",
  16789. image: {
  16790. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16791. }
  16792. },
  16793. sideArmored: {
  16794. height: math.unit(10, "feet"),
  16795. weight: math.unit(800, "kg"),
  16796. name: "Side (Armored)",
  16797. image: {
  16798. source: "./media/characters/venio-darcony/side-armored.svg",
  16799. extra: 1373 / 1003,
  16800. bottom: 0.037
  16801. }
  16802. },
  16803. frontArmored: {
  16804. height: math.unit(19, "feet"),
  16805. weight: math.unit(900, "kg"),
  16806. name: "Front (Armored)",
  16807. image: {
  16808. source: "./media/characters/venio-darcony/front-armored.svg"
  16809. }
  16810. },
  16811. backArmored: {
  16812. height: math.unit(19, "feet"),
  16813. weight: math.unit(900, "kg"),
  16814. name: "Back (Armored)",
  16815. image: {
  16816. source: "./media/characters/venio-darcony/back-armored.svg"
  16817. }
  16818. },
  16819. sword: {
  16820. height: math.unit(10, "feet"),
  16821. weight: math.unit(50, "lb"),
  16822. name: "Sword",
  16823. image: {
  16824. source: "./media/characters/venio-darcony/sword.svg"
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(10, "feet")
  16832. },
  16833. {
  16834. name: "Macro",
  16835. height: math.unit(130, "feet"),
  16836. default: true
  16837. },
  16838. {
  16839. name: "Macro+",
  16840. height: math.unit(240, "feet")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(150, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/veski/front.svg",
  16853. extra: 1299 / 1225,
  16854. bottom: 0.04
  16855. }
  16856. },
  16857. back: {
  16858. height: math.unit(6, "feet"),
  16859. weight: math.unit(150, "lb"),
  16860. name: "Back",
  16861. image: {
  16862. source: "./media/characters/veski/back.svg",
  16863. extra: 1299 / 1225,
  16864. bottom: 0.008
  16865. }
  16866. },
  16867. maw: {
  16868. height: math.unit(1.5 * 1.21, "feet"),
  16869. name: "Maw",
  16870. image: {
  16871. source: "./media/characters/veski/maw.svg"
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(2, "km"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(5 + 7 / 12, "feet"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/isabelle/front.svg",
  16891. extra: 2130 / 1976,
  16892. bottom: 0.05
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Supermicro",
  16899. height: math.unit(10, "micrometers")
  16900. },
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(1, "inch")
  16904. },
  16905. {
  16906. name: "Tiny",
  16907. height: math.unit(5, "inches")
  16908. },
  16909. {
  16910. name: "Standard",
  16911. height: math.unit(5 + 7 / 12, "inches")
  16912. },
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(80, "meters"),
  16916. default: true
  16917. },
  16918. {
  16919. name: "Megamacro",
  16920. height: math.unit(250, "meters")
  16921. },
  16922. {
  16923. name: "Gigamacro",
  16924. height: math.unit(5, "km")
  16925. },
  16926. {
  16927. name: "Cosmic",
  16928. height: math.unit(2.5e6, "miles")
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(150, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/hanzo/front.svg",
  16941. extra: 374 / 344,
  16942. bottom: 0.02
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(8, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(7, "feet"),
  16959. weight: math.unit(130, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/anna/front.svg",
  16963. extra: 169 / 145,
  16964. bottom: 0.06
  16965. }
  16966. },
  16967. full: {
  16968. height: math.unit(4.96, "feet"),
  16969. weight: math.unit(220, "lb"),
  16970. name: "Full",
  16971. image: {
  16972. source: "./media/characters/anna/full.svg",
  16973. extra: 138 / 114,
  16974. bottom: 0.15
  16975. }
  16976. },
  16977. tongue: {
  16978. height: math.unit(2.53, "feet"),
  16979. name: "Tongue",
  16980. image: {
  16981. source: "./media/characters/anna/tongue.svg"
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(7, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(7, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/ian-corvid/front.svg",
  17002. extra: 150 / 142,
  17003. bottom: 0.02
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(7, "feet"),
  17008. weight: math.unit(150, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/ian-corvid/back.svg",
  17012. extra: 150 / 143,
  17013. bottom: 0.01
  17014. }
  17015. },
  17016. stomping: {
  17017. height: math.unit(7, "feet"),
  17018. weight: math.unit(150, "lb"),
  17019. name: "Stomping",
  17020. image: {
  17021. source: "./media/characters/ian-corvid/stomping.svg",
  17022. extra: 76 / 72
  17023. }
  17024. },
  17025. sitting: {
  17026. height: math.unit(7 / 1.8, "feet"),
  17027. weight: math.unit(150, "lb"),
  17028. name: "Sitting",
  17029. image: {
  17030. source: "./media/characters/ian-corvid/sitting.svg",
  17031. extra: 1400 / 1269,
  17032. bottom: 0.15
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Tiny Microw",
  17039. height: math.unit(1, "inch")
  17040. },
  17041. {
  17042. name: "Microw",
  17043. height: math.unit(6, "inches")
  17044. },
  17045. {
  17046. name: "Crow",
  17047. height: math.unit(7 + 1 / 12, "feet"),
  17048. default: true
  17049. },
  17050. {
  17051. name: "Macrow",
  17052. height: math.unit(176, "feet")
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(5 + 7 / 12, "feet"),
  17061. weight: math.unit(147, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/natalie-kellon/front.svg",
  17065. extra: 1214 / 1141,
  17066. bottom: 0.02
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Micro",
  17073. height: math.unit(1 / 16, "inch")
  17074. },
  17075. {
  17076. name: "Tiny",
  17077. height: math.unit(4, "inches")
  17078. },
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(5 + 7 / 12, "feet"),
  17082. default: true
  17083. },
  17084. {
  17085. name: "Amazon",
  17086. height: math.unit(12, "feet")
  17087. },
  17088. {
  17089. name: "Giantess",
  17090. height: math.unit(160, "meters")
  17091. },
  17092. {
  17093. name: "Titaness",
  17094. height: math.unit(800, "meters")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(150, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/alluria/front.svg",
  17107. extra: 806 / 738,
  17108. bottom: 0.01
  17109. }
  17110. },
  17111. side: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(150, "lb"),
  17114. name: "Side",
  17115. image: {
  17116. source: "./media/characters/alluria/side.svg",
  17117. extra: 800 / 750,
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(6, "feet"),
  17122. weight: math.unit(150, "lb"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/alluria/back.svg",
  17126. extra: 806 / 738,
  17127. }
  17128. },
  17129. frontMaid: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Front (Maid)",
  17133. image: {
  17134. source: "./media/characters/alluria/front-maid.svg",
  17135. extra: 806 / 738,
  17136. bottom: 0.01
  17137. }
  17138. },
  17139. sideMaid: {
  17140. height: math.unit(6, "feet"),
  17141. weight: math.unit(150, "lb"),
  17142. name: "Side (Maid)",
  17143. image: {
  17144. source: "./media/characters/alluria/side-maid.svg",
  17145. extra: 800 / 750,
  17146. bottom: 0.005
  17147. }
  17148. },
  17149. backMaid: {
  17150. height: math.unit(6, "feet"),
  17151. weight: math.unit(150, "lb"),
  17152. name: "Back (Maid)",
  17153. image: {
  17154. source: "./media/characters/alluria/back-maid.svg",
  17155. extra: 806 / 738,
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Micro",
  17162. height: math.unit(6, "inches"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(6, "feet"),
  17172. weight: math.unit(150, "lb"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/kyle/front.svg",
  17176. extra: 1069 / 962,
  17177. bottom: 77.228 / 1727.45
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(150, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(6, "feet"),
  17194. weight: math.unit(300, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/duncan/front.svg",
  17198. extra: 1650 / 1482,
  17199. bottom: 0.05
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(100, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(5 + 4 / 12, "feet"),
  17216. weight: math.unit(220, "lb"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/memory/front.svg",
  17220. extra: 3641 / 3545,
  17221. bottom: 0.03
  17222. }
  17223. },
  17224. back: {
  17225. height: math.unit(5 + 4 / 12, "feet"),
  17226. weight: math.unit(220, "lb"),
  17227. name: "Back",
  17228. image: {
  17229. source: "./media/characters/memory/back.svg",
  17230. extra: 3641 / 3545,
  17231. bottom: 0.025
  17232. }
  17233. },
  17234. frontSkirt: {
  17235. height: math.unit(5 + 4 / 12, "feet"),
  17236. weight: math.unit(220, "lb"),
  17237. name: "Front (Skirt)",
  17238. image: {
  17239. source: "./media/characters/memory/front-skirt.svg",
  17240. extra: 3641 / 3545,
  17241. bottom: 0.03
  17242. }
  17243. },
  17244. frontDress: {
  17245. height: math.unit(5 + 4 / 12, "feet"),
  17246. weight: math.unit(220, "lb"),
  17247. name: "Front (Dress)",
  17248. image: {
  17249. source: "./media/characters/memory/front-dress.svg",
  17250. extra: 3641 / 3545,
  17251. bottom: 0.03
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Micro",
  17258. height: math.unit(6, "inches"),
  17259. default: true
  17260. },
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(5 + 4 / 12, "feet")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(4 + 11 / 12, "feet"),
  17272. weight: math.unit(100, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/luno/front.svg",
  17276. extra: 1535 / 1487,
  17277. bottom: 0.03
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Micro",
  17284. height: math.unit(3, "inches")
  17285. },
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(4 + 11 / 12, "feet"),
  17289. default: true
  17290. },
  17291. {
  17292. name: "Macro",
  17293. height: math.unit(300, "feet")
  17294. },
  17295. {
  17296. name: "Megamacro",
  17297. height: math.unit(700, "miles")
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(6 + 2 / 12, "feet"),
  17306. weight: math.unit(170, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/jamesy/front.svg",
  17310. extra: 440 / 382,
  17311. bottom: 0.005
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Micro",
  17318. height: math.unit(3, "inches")
  17319. },
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(6 + 2 / 12, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(300, "feet")
  17328. },
  17329. {
  17330. name: "Megamacro",
  17331. height: math.unit(700, "miles")
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17337. {
  17338. front: {
  17339. height: math.unit(6, "feet"),
  17340. weight: math.unit(160, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/mark/front.svg",
  17344. extra: 3300 / 3100,
  17345. bottom: 136.42 / 3440.47
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(120, "meters")
  17353. },
  17354. {
  17355. name: "Bigger Macro",
  17356. height: math.unit(350, "meters")
  17357. },
  17358. {
  17359. name: "Megamacro",
  17360. height: math.unit(8, "km"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Continental",
  17365. height: math.unit(4550, "km")
  17366. },
  17367. {
  17368. name: "Planetary",
  17369. height: math.unit(65000, "km")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6, "feet"),
  17378. weight: math.unit(400, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/mac/front.svg",
  17382. extra: 1048 / 987.7,
  17383. bottom: 60 / 1107.6,
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Macro",
  17390. height: math.unit(500, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(5 + 2 / 12, "feet"),
  17400. weight: math.unit(190, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/bari/front.svg",
  17404. extra: 3156 / 2880,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. back: {
  17409. height: math.unit(5 + 2 / 12, "feet"),
  17410. weight: math.unit(190, "lb"),
  17411. name: "Back",
  17412. image: {
  17413. source: "./media/characters/bari/back.svg",
  17414. extra: 3260 / 2834,
  17415. bottom: 0.025
  17416. }
  17417. },
  17418. frontPlush: {
  17419. height: math.unit(5 + 2 / 12, "feet"),
  17420. weight: math.unit(190, "lb"),
  17421. name: "Front (Plush)",
  17422. image: {
  17423. source: "./media/characters/bari/front-plush.svg",
  17424. extra: 1112 / 1061,
  17425. bottom: 0.002
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Micro",
  17432. height: math.unit(3, "inches")
  17433. },
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(5 + 2 / 12, "feet"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(20, "feet")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(6 + 1 / 12, "feet"),
  17450. weight: math.unit(275, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/hunter-misha-raven/front.svg"
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Mortal",
  17460. height: math.unit(6 + 1 / 12, "feet")
  17461. },
  17462. {
  17463. name: "Divine",
  17464. height: math.unit(1.12134e34, "parsecs"),
  17465. default: true
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(6 + 3 / 12, "feet"),
  17474. weight: math.unit(220, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/max-calore/front.svg",
  17478. extra: 1700 / 1648,
  17479. bottom: 0.01
  17480. }
  17481. },
  17482. back: {
  17483. height: math.unit(6 + 3 / 12, "feet"),
  17484. weight: math.unit(220, "lb"),
  17485. name: "Back",
  17486. image: {
  17487. source: "./media/characters/max-calore/back.svg",
  17488. extra: 1700 / 1648,
  17489. bottom: 0.01
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(6 + 3 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(2 + 8 / 12, "feet"),
  17506. weight: math.unit(99, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/aspen/side.svg",
  17510. extra: 152 / 138,
  17511. bottom: 0.032
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(2 + 8 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17525. {
  17526. side: {
  17527. height: math.unit(3 + 2 / 12, "feet"),
  17528. weight: math.unit(224, "lb"),
  17529. name: "Side",
  17530. image: {
  17531. source: "./media/characters/sheila-feral-wolf/side.svg",
  17532. extra: 179 / 166,
  17533. bottom: 0.03
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(3 + 2 / 12, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17547. {
  17548. side: {
  17549. height: math.unit(1 + 9 / 12, "feet"),
  17550. weight: math.unit(38, "lb"),
  17551. name: "Side",
  17552. image: {
  17553. source: "./media/characters/michelle/side.svg",
  17554. extra: 147 / 136.7,
  17555. bottom: 0.03
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(1 + 9 / 12, "feet"),
  17563. default: true
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(1.54, "feet"),
  17572. weight: math.unit(50, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/nino/front.svg"
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(1.54, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(1.49, "feet"),
  17592. weight: math.unit(45, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/viola/front.svg"
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(1.49, "feet"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17609. {
  17610. front: {
  17611. height: math.unit(6 + 5 / 12, "feet"),
  17612. weight: math.unit(580, "lb"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/atlas/front.svg",
  17616. extra: 298.5 / 290,
  17617. bottom: 0.015
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(6 + 5 / 12, "feet"),
  17625. default: true
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17631. {
  17632. side: {
  17633. height: math.unit(15.6, "inches"),
  17634. weight: math.unit(10, "lb"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/davy/side.svg",
  17638. extra: 200 / 170,
  17639. bottom: 0.01
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(15.6, "inches"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17653. {
  17654. side: {
  17655. height: math.unit(4 + 8 / 12, "feet"),
  17656. weight: math.unit(166, "lb"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/fiona/side.svg",
  17660. extra: 232 / 220,
  17661. bottom: 0.03
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(4 + 8 / 12, "feet"),
  17669. default: true
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17675. {
  17676. front: {
  17677. height: math.unit(26, "inches"),
  17678. weight: math.unit(35, "lb"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/lyla/front.svg",
  17682. bottom: 0.1
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(3, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17696. {
  17697. side: {
  17698. height: math.unit(1.8, "feet"),
  17699. weight: math.unit(44, "lb"),
  17700. name: "Side",
  17701. image: {
  17702. source: "./media/characters/perseus/side.svg",
  17703. bottom: 0.21
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(1.8, "feet"),
  17711. default: true
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17717. {
  17718. side: {
  17719. height: math.unit(4 + 2 / 12, "feet"),
  17720. weight: math.unit(20, "lb"),
  17721. name: "Side",
  17722. image: {
  17723. source: "./media/characters/remus/side.svg"
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(4 + 2 / 12, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(4 + 11 / 12, "feet"),
  17740. weight: math.unit(114, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/raf/front.svg",
  17744. extra: 1504/1339,
  17745. bottom: 26/1530
  17746. }
  17747. },
  17748. side: {
  17749. height: math.unit(4 + 11 / 12, "feet"),
  17750. weight: math.unit(114, "lb"),
  17751. name: "Side",
  17752. image: {
  17753. source: "./media/characters/raf/side.svg",
  17754. extra: 1466/1316,
  17755. bottom: 29/1495
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Micro",
  17762. height: math.unit(2, "inches")
  17763. },
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(4 + 11 / 12, "feet"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(70, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(1.5, "meters"),
  17780. weight: math.unit(68, "kg"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/liam-einarr/front.svg",
  17784. extra: 2822 / 2666
  17785. }
  17786. },
  17787. back: {
  17788. height: math.unit(1.5, "meters"),
  17789. weight: math.unit(68, "kg"),
  17790. name: "Back",
  17791. image: {
  17792. source: "./media/characters/liam-einarr/back.svg",
  17793. extra: 2822 / 2666,
  17794. bottom: 0.015
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(1.5, "meters"),
  17802. default: true
  17803. },
  17804. {
  17805. name: "Macro",
  17806. height: math.unit(150, "meters")
  17807. },
  17808. {
  17809. name: "Megamacro",
  17810. height: math.unit(35, "km")
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(6, "feet"),
  17819. weight: math.unit(75, "kg"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/linda/front.svg",
  17823. extra: 930 / 874,
  17824. bottom: 0.004
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(6, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(6 + 8 / 12, "feet"),
  17841. weight: math.unit(220, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/caylex/front.svg",
  17845. extra: 821 / 772,
  17846. bottom: 0.07
  17847. }
  17848. },
  17849. back: {
  17850. height: math.unit(6 + 8 / 12, "feet"),
  17851. weight: math.unit(220, "lb"),
  17852. name: "Back",
  17853. image: {
  17854. source: "./media/characters/caylex/back.svg",
  17855. extra: 821 / 772,
  17856. bottom: 0.022
  17857. }
  17858. },
  17859. hand: {
  17860. height: math.unit(1.25, "feet"),
  17861. name: "Hand",
  17862. image: {
  17863. source: "./media/characters/caylex/hand.svg"
  17864. }
  17865. },
  17866. foot: {
  17867. height: math.unit(1.6, "feet"),
  17868. name: "Foot",
  17869. image: {
  17870. source: "./media/characters/caylex/foot.svg"
  17871. }
  17872. },
  17873. armored: {
  17874. height: math.unit(6 + 8 / 12, "feet"),
  17875. weight: math.unit(250, "lb"),
  17876. name: "Armored",
  17877. image: {
  17878. source: "./media/characters/caylex/armored.svg",
  17879. extra: 1420 / 1310,
  17880. bottom: 0.045
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(6 + 8 / 12, "feet"),
  17888. default: true
  17889. },
  17890. {
  17891. name: "Normal+",
  17892. height: math.unit(12, "feet")
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(7 + 6 / 12, "feet"),
  17901. weight: math.unit(288, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/alana/front.svg",
  17905. extra: 679 / 653,
  17906. bottom: 22.5 / 701
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(7 + 6 / 12, "feet")
  17914. },
  17915. {
  17916. name: "Large",
  17917. height: math.unit(50, "feet")
  17918. },
  17919. {
  17920. name: "Macro",
  17921. height: math.unit(100, "feet"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Macro+",
  17926. height: math.unit(200, "feet")
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17932. {
  17933. front: {
  17934. height: math.unit(6 + 1 / 12, "feet"),
  17935. weight: math.unit(210, "lb"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/hasani/front.svg",
  17939. extra: 244 / 232,
  17940. bottom: 0.01
  17941. }
  17942. },
  17943. back: {
  17944. height: math.unit(6 + 1 / 12, "feet"),
  17945. weight: math.unit(210, "lb"),
  17946. name: "Back",
  17947. image: {
  17948. source: "./media/characters/hasani/back.svg",
  17949. extra: 244 / 232,
  17950. bottom: 0.01
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(6 + 1 / 12, "feet")
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(175, "feet"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(1.82, "meters"),
  17971. weight: math.unit(140, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/nita/front.svg",
  17975. extra: 2473 / 2363,
  17976. bottom: 0.01
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(1.82, "m")
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(300, "m")
  17988. },
  17989. {
  17990. name: "Mistake Canon",
  17991. height: math.unit(0.5, "miles"),
  17992. default: true
  17993. },
  17994. {
  17995. name: "Big Mistake",
  17996. height: math.unit(13, "miles")
  17997. },
  17998. {
  17999. name: "Playing God",
  18000. height: math.unit(2450, "miles")
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(4, "feet"),
  18009. weight: math.unit(120, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/shiriko/front.svg",
  18013. extra: 970/934,
  18014. bottom: 5/975
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(4, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(6, "feet"),
  18031. name: "front",
  18032. image: {
  18033. source: "./media/characters/deja/front.svg",
  18034. extra: 926 / 840,
  18035. bottom: 0.07
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Planck Length",
  18042. height: math.unit(1.6e-35, "meters")
  18043. },
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(30.48, "meters"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Universal",
  18051. height: math.unit(8.8e26, "meters")
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18057. {
  18058. side: {
  18059. height: math.unit(8, "feet"),
  18060. weight: math.unit(6300, "lb"),
  18061. name: "Side",
  18062. image: {
  18063. source: "./media/characters/anima/side.svg",
  18064. bottom: 0.035
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(8, "feet"),
  18072. default: true
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(8, "feet"),
  18081. weight: math.unit(350, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/bianca/front.svg",
  18085. extra: 234 / 225,
  18086. bottom: 0.03
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(8, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/adinia/front.svg",
  18107. extra: 1845 / 1672,
  18108. bottom: 0.02
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/adinia/back.svg",
  18117. extra: 1845 / 1672,
  18118. bottom: 0.002
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(11 + 5 / 12, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(3, "meters"),
  18135. weight: math.unit(200, "kg"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/lykasa/front.svg",
  18139. extra: 1076 / 976,
  18140. bottom: 0.06
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(3, "meters")
  18148. },
  18149. {
  18150. name: "Kaiju",
  18151. height: math.unit(120, "meters"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Mega Kaiju",
  18156. height: math.unit(240, "km")
  18157. },
  18158. {
  18159. name: "Giga Kaiju",
  18160. height: math.unit(400, "megameters")
  18161. },
  18162. {
  18163. name: "Tera Kaiju",
  18164. height: math.unit(800, "gigameters")
  18165. },
  18166. {
  18167. name: "Kaiju Dragon Goddess",
  18168. height: math.unit(26, "zettaparsecs")
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18174. {
  18175. side: {
  18176. height: math.unit(283 / 124 * 6, "feet"),
  18177. weight: math.unit(35000, "lb"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/malfaren/side.svg",
  18181. extra: 1310/529,
  18182. bottom: 24/1334
  18183. }
  18184. },
  18185. front: {
  18186. height: math.unit(22.36, "feet"),
  18187. weight: math.unit(35000, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/malfaren/front.svg",
  18191. extra: 1237/1115,
  18192. bottom: 32/1269
  18193. }
  18194. },
  18195. maw: {
  18196. height: math.unit(6.9, "feet"),
  18197. name: "Maw",
  18198. image: {
  18199. source: "./media/characters/malfaren/maw.svg"
  18200. }
  18201. },
  18202. dick: {
  18203. height: math.unit(6.19, "feet"),
  18204. name: "Dick",
  18205. image: {
  18206. source: "./media/characters/malfaren/dick.svg"
  18207. }
  18208. },
  18209. eye: {
  18210. height: math.unit(0.69, "feet"),
  18211. name: "Eye",
  18212. image: {
  18213. source: "./media/characters/malfaren/eye.svg"
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Big",
  18220. height: math.unit(283 / 162 * 6, "feet"),
  18221. },
  18222. {
  18223. name: "Bigger",
  18224. height: math.unit(283 / 124 * 6, "feet")
  18225. },
  18226. {
  18227. name: "Massive",
  18228. height: math.unit(283 / 92 * 6, "feet"),
  18229. default: true
  18230. },
  18231. {
  18232. name: "👀💦",
  18233. height: math.unit(283 / 73 * 6, "feet"),
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18239. {
  18240. front: {
  18241. height: math.unit(1.7, "m"),
  18242. weight: math.unit(70, "kg"),
  18243. name: "Front",
  18244. image: {
  18245. source: "./media/characters/kernel/front.svg",
  18246. extra: 222 / 210,
  18247. bottom: 0.007
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Nano",
  18254. height: math.unit(17, "micrometers")
  18255. },
  18256. {
  18257. name: "Micro",
  18258. height: math.unit(1.7, "mm")
  18259. },
  18260. {
  18261. name: "Small",
  18262. height: math.unit(1.7, "cm")
  18263. },
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(1.7, "m"),
  18267. default: true
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18273. {
  18274. front: {
  18275. height: math.unit(1.75, "meters"),
  18276. weight: math.unit(65, "kg"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/jayne-folest/front.svg",
  18280. extra: 2115 / 2007,
  18281. bottom: 0.02
  18282. }
  18283. },
  18284. back: {
  18285. height: math.unit(1.75, "meters"),
  18286. weight: math.unit(65, "kg"),
  18287. name: "Back",
  18288. image: {
  18289. source: "./media/characters/jayne-folest/back.svg",
  18290. extra: 2115 / 2007,
  18291. bottom: 0.005
  18292. }
  18293. },
  18294. frontClothed: {
  18295. height: math.unit(1.75, "meters"),
  18296. weight: math.unit(65, "kg"),
  18297. name: "Front (Clothed)",
  18298. image: {
  18299. source: "./media/characters/jayne-folest/front-clothed.svg",
  18300. extra: 2115 / 2007,
  18301. bottom: 0.035
  18302. }
  18303. },
  18304. hand: {
  18305. height: math.unit(1 / 1.260, "feet"),
  18306. name: "Hand",
  18307. image: {
  18308. source: "./media/characters/jayne-folest/hand.svg"
  18309. }
  18310. },
  18311. foot: {
  18312. height: math.unit(1 / 0.918, "feet"),
  18313. name: "Foot",
  18314. image: {
  18315. source: "./media/characters/jayne-folest/foot.svg"
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Micro",
  18322. height: math.unit(4, "cm")
  18323. },
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(1.75, "meters")
  18327. },
  18328. {
  18329. name: "Macro",
  18330. height: math.unit(47.5, "meters"),
  18331. default: true
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(180, "cm"),
  18340. weight: math.unit(70, "kg"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/algier/front.svg",
  18344. extra: 596 / 572,
  18345. bottom: 0.04
  18346. }
  18347. },
  18348. back: {
  18349. height: math.unit(180, "cm"),
  18350. weight: math.unit(70, "kg"),
  18351. name: "Back",
  18352. image: {
  18353. source: "./media/characters/algier/back.svg",
  18354. extra: 596 / 572,
  18355. bottom: 0.025
  18356. }
  18357. },
  18358. frontdressed: {
  18359. height: math.unit(180, "cm"),
  18360. weight: math.unit(150, "kg"),
  18361. name: "Front-dressed",
  18362. image: {
  18363. source: "./media/characters/algier/front-dressed.svg",
  18364. extra: 596 / 572,
  18365. bottom: 0.038
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Micro",
  18372. height: math.unit(5, "cm")
  18373. },
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(180, "cm"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(64, "m")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18387. {
  18388. upright: {
  18389. height: math.unit(7, "feet"),
  18390. weight: math.unit(300, "lb"),
  18391. name: "Upright",
  18392. image: {
  18393. source: "./media/characters/pretzel/upright.svg",
  18394. extra: 534 / 522,
  18395. bottom: 0.065
  18396. }
  18397. },
  18398. sprawling: {
  18399. height: math.unit(3.75, "feet"),
  18400. weight: math.unit(300, "lb"),
  18401. name: "Sprawling",
  18402. image: {
  18403. source: "./media/characters/pretzel/sprawling.svg",
  18404. extra: 314 / 281,
  18405. bottom: 0.1
  18406. }
  18407. },
  18408. tongue: {
  18409. height: math.unit(2, "feet"),
  18410. name: "Tongue",
  18411. image: {
  18412. source: "./media/characters/pretzel/tongue.svg"
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(7, "feet"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Oversized",
  18424. height: math.unit(15, "feet")
  18425. },
  18426. {
  18427. name: "Huge",
  18428. height: math.unit(30, "feet")
  18429. },
  18430. {
  18431. name: "Macro",
  18432. height: math.unit(250, "feet")
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18438. {
  18439. sideFront: {
  18440. height: math.unit(5 + 2 / 12, "feet"),
  18441. weight: math.unit(120, "lb"),
  18442. name: "Front Side",
  18443. image: {
  18444. source: "./media/characters/roxi/side-front.svg",
  18445. extra: 2924 / 2717,
  18446. bottom: 0.08
  18447. }
  18448. },
  18449. sideBack: {
  18450. height: math.unit(5 + 2 / 12, "feet"),
  18451. weight: math.unit(120, "lb"),
  18452. name: "Back Side",
  18453. image: {
  18454. source: "./media/characters/roxi/side-back.svg",
  18455. extra: 2904 / 2693,
  18456. bottom: 0.06
  18457. }
  18458. },
  18459. front: {
  18460. height: math.unit(5 + 2 / 12, "feet"),
  18461. weight: math.unit(120, "lb"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/roxi/front.svg",
  18465. extra: 2028 / 1907,
  18466. bottom: 0.01
  18467. }
  18468. },
  18469. frontAlt: {
  18470. height: math.unit(5 + 2 / 12, "feet"),
  18471. weight: math.unit(120, "lb"),
  18472. name: "Front (Alt)",
  18473. image: {
  18474. source: "./media/characters/roxi/front-alt.svg",
  18475. extra: 1828 / 1798,
  18476. bottom: 0.01
  18477. }
  18478. },
  18479. sitting: {
  18480. height: math.unit(2.8, "feet"),
  18481. weight: math.unit(120, "lb"),
  18482. name: "Sitting",
  18483. image: {
  18484. source: "./media/characters/roxi/sitting.svg",
  18485. extra: 2660 / 2462,
  18486. bottom: 0.1
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(5 + 2 / 12, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18500. {
  18501. side: {
  18502. height: math.unit(55, "feet"),
  18503. weight: math.unit(153, "tons"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/shadow/side.svg",
  18507. extra: 701 / 628,
  18508. bottom: 0.02
  18509. }
  18510. },
  18511. flying: {
  18512. height: math.unit(145, "feet"),
  18513. weight: math.unit(153, "tons"),
  18514. name: "Flying",
  18515. image: {
  18516. source: "./media/characters/shadow/flying.svg"
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Normal",
  18523. height: math.unit(55, "feet"),
  18524. default: true
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18530. {
  18531. front: {
  18532. height: math.unit(6, "feet"),
  18533. weight: math.unit(200, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/marcie/front.svg",
  18537. extra: 960 / 876,
  18538. bottom: 58 / 1017.87
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Macro",
  18545. height: math.unit(1, "mile"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18552. {
  18553. front: {
  18554. height: math.unit(7, "feet"),
  18555. weight: math.unit(200, "lb"),
  18556. name: "Front",
  18557. image: {
  18558. source: "./media/characters/kachina/front.svg",
  18559. extra: 1290.68 / 1119,
  18560. bottom: 36.5 / 1327.18
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(7, "feet"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18574. {
  18575. looking: {
  18576. height: math.unit(2, "meters"),
  18577. weight: math.unit(300, "kg"),
  18578. name: "Looking",
  18579. image: {
  18580. source: "./media/characters/kash/looking.svg",
  18581. extra: 474 / 344,
  18582. bottom: 0.03
  18583. }
  18584. },
  18585. side: {
  18586. height: math.unit(2, "meters"),
  18587. weight: math.unit(300, "kg"),
  18588. name: "Side",
  18589. image: {
  18590. source: "./media/characters/kash/side.svg",
  18591. extra: 302 / 251,
  18592. bottom: 0.03
  18593. }
  18594. },
  18595. front: {
  18596. height: math.unit(2, "meters"),
  18597. weight: math.unit(300, "kg"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/kash/front.svg",
  18601. extra: 495 / 360,
  18602. bottom: 0.015
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(2, "meters"),
  18610. default: true
  18611. },
  18612. {
  18613. name: "Big",
  18614. height: math.unit(3, "meters")
  18615. },
  18616. {
  18617. name: "Large",
  18618. height: math.unit(5, "meters")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18624. {
  18625. feeding: {
  18626. height: math.unit(6.7, "feet"),
  18627. weight: math.unit(350, "lb"),
  18628. name: "Feeding",
  18629. image: {
  18630. source: "./media/characters/lalim/feeding.svg",
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(6.7, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(9.5, "feet"),
  18647. weight: math.unit(600, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/de'vout/front.svg",
  18651. extra: 1443 / 1328,
  18652. bottom: 0.025
  18653. }
  18654. },
  18655. back: {
  18656. height: math.unit(9.5, "feet"),
  18657. weight: math.unit(600, "lb"),
  18658. name: "Back",
  18659. image: {
  18660. source: "./media/characters/de'vout/back.svg",
  18661. extra: 1443 / 1328
  18662. }
  18663. },
  18664. frontDressed: {
  18665. height: math.unit(9.5, "feet"),
  18666. weight: math.unit(600, "lb"),
  18667. name: "Front (Dressed",
  18668. image: {
  18669. source: "./media/characters/de'vout/front-dressed.svg",
  18670. extra: 1443 / 1328,
  18671. bottom: 0.025
  18672. }
  18673. },
  18674. backDressed: {
  18675. height: math.unit(9.5, "feet"),
  18676. weight: math.unit(600, "lb"),
  18677. name: "Back (Dressed",
  18678. image: {
  18679. source: "./media/characters/de'vout/back-dressed.svg",
  18680. extra: 1443 / 1328
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(9.5, "feet"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(8, "feet"),
  18697. weight: math.unit(225, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/talana/front.svg",
  18701. extra: 1410 / 1300,
  18702. bottom: 0.015
  18703. }
  18704. },
  18705. frontDressed: {
  18706. height: math.unit(8, "feet"),
  18707. weight: math.unit(225, "lb"),
  18708. name: "Front (Dressed",
  18709. image: {
  18710. source: "./media/characters/talana/front-dressed.svg",
  18711. extra: 1410 / 1300,
  18712. bottom: 0.015
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(8, "feet"),
  18720. default: true
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18726. {
  18727. side: {
  18728. height: math.unit(7.2, "feet"),
  18729. weight: math.unit(150, "lb"),
  18730. name: "Side",
  18731. image: {
  18732. source: "./media/characters/xeauvok/side.svg",
  18733. extra: 1975 / 1523,
  18734. bottom: 0.07
  18735. }
  18736. },
  18737. },
  18738. [
  18739. {
  18740. name: "Normal",
  18741. height: math.unit(7.2, "feet"),
  18742. default: true
  18743. },
  18744. ]
  18745. ))
  18746. characterMakers.push(() => makeCharacter(
  18747. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18748. {
  18749. side: {
  18750. height: math.unit(10, "feet"),
  18751. weight: math.unit(900, "kg"),
  18752. name: "Side",
  18753. image: {
  18754. source: "./media/characters/zara/side.svg",
  18755. extra: 504 / 498
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(10, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18769. {
  18770. side: {
  18771. height: math.unit(6, "feet"),
  18772. weight: math.unit(150, "lb"),
  18773. name: "Side",
  18774. image: {
  18775. source: "./media/characters/richard-dragon/side.svg",
  18776. extra: 845 / 340,
  18777. bottom: 0.017
  18778. }
  18779. },
  18780. maw: {
  18781. height: math.unit(2.97, "feet"),
  18782. name: "Maw",
  18783. image: {
  18784. source: "./media/characters/richard-dragon/maw.svg"
  18785. }
  18786. },
  18787. },
  18788. [
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(4, "feet"),
  18796. weight: math.unit(100, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/richard-smeargle/front.svg",
  18800. extra: 2952 / 2820,
  18801. bottom: 0.028
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(4, "feet"),
  18809. default: true
  18810. },
  18811. {
  18812. name: "Dynamax",
  18813. height: math.unit(20, "meters")
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(6, "feet"),
  18822. weight: math.unit(110, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/klay/front.svg",
  18826. extra: 962 / 883,
  18827. bottom: 0.04
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(6, "feet"),
  18832. weight: math.unit(110, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/klay/back.svg",
  18836. extra: 962 / 883
  18837. }
  18838. },
  18839. beans: {
  18840. height: math.unit(1.15, "feet"),
  18841. name: "Beans",
  18842. image: {
  18843. source: "./media/characters/klay/beans.svg"
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Micro",
  18850. height: math.unit(6, "inches")
  18851. },
  18852. {
  18853. name: "Mini",
  18854. height: math.unit(3, "feet")
  18855. },
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(6, "feet"),
  18859. default: true
  18860. },
  18861. {
  18862. name: "Big",
  18863. height: math.unit(25, "feet")
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(100, "feet")
  18868. },
  18869. {
  18870. name: "Megamacro",
  18871. height: math.unit(400, "feet")
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6, "feet"),
  18880. weight: math.unit(160, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/marcus/front.svg",
  18884. extra: 734 / 676,
  18885. bottom: 0.03
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Little",
  18892. height: math.unit(6, "feet")
  18893. },
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(110, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(250, "feet")
  18902. },
  18903. {
  18904. name: "Megamacro",
  18905. height: math.unit(1000, "feet")
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(7, "feet"),
  18914. weight: math.unit(275, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/claude-delroute/front.svg",
  18918. extra: 902/827,
  18919. bottom: 26/928
  18920. }
  18921. },
  18922. side: {
  18923. height: math.unit(7, "feet"),
  18924. weight: math.unit(275, "lb"),
  18925. name: "Side",
  18926. image: {
  18927. source: "./media/characters/claude-delroute/side.svg",
  18928. extra: 908/853,
  18929. bottom: 16/924
  18930. }
  18931. },
  18932. back: {
  18933. height: math.unit(7, "feet"),
  18934. weight: math.unit(275, "lb"),
  18935. name: "Back",
  18936. image: {
  18937. source: "./media/characters/claude-delroute/back.svg",
  18938. extra: 911/829,
  18939. bottom: 18/929
  18940. }
  18941. },
  18942. maw: {
  18943. height: math.unit(0.6407, "meters"),
  18944. name: "Maw",
  18945. image: {
  18946. source: "./media/characters/claude-delroute/maw.svg"
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(7, "feet"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Lorge",
  18958. height: math.unit(20, "feet")
  18959. },
  18960. ]
  18961. ))
  18962. characterMakers.push(() => makeCharacter(
  18963. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18964. {
  18965. front: {
  18966. height: math.unit(8 + 4 / 12, "feet"),
  18967. weight: math.unit(600, "lb"),
  18968. name: "Front",
  18969. image: {
  18970. source: "./media/characters/dragonien/front.svg",
  18971. extra: 100 / 94,
  18972. bottom: 3.3 / 103.3445
  18973. }
  18974. },
  18975. back: {
  18976. height: math.unit(8 + 4 / 12, "feet"),
  18977. weight: math.unit(600, "lb"),
  18978. name: "Back",
  18979. image: {
  18980. source: "./media/characters/dragonien/back.svg",
  18981. extra: 776 / 746,
  18982. bottom: 6.4 / 782.0616
  18983. }
  18984. },
  18985. foot: {
  18986. height: math.unit(1.54, "feet"),
  18987. name: "Foot",
  18988. image: {
  18989. source: "./media/characters/dragonien/foot.svg",
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(8 + 4 / 12, "feet"),
  18997. default: true
  18998. },
  18999. {
  19000. name: "Macro",
  19001. height: math.unit(200, "feet")
  19002. },
  19003. {
  19004. name: "Megamacro",
  19005. height: math.unit(1, "mile")
  19006. },
  19007. {
  19008. name: "Gigamacro",
  19009. height: math.unit(1000, "miles")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(5 + 2 / 12, "feet"),
  19018. weight: math.unit(110, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/desta/front.svg",
  19022. extra: 767 / 726,
  19023. bottom: 11.7 / 779
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(5 + 2 / 12, "feet"),
  19028. weight: math.unit(110, "lb"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/desta/back.svg",
  19032. extra: 777 / 728,
  19033. bottom: 6 / 784
  19034. }
  19035. },
  19036. frontAlt: {
  19037. height: math.unit(5 + 2 / 12, "feet"),
  19038. weight: math.unit(110, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/desta/front-alt.svg",
  19042. extra: 1482 / 1417
  19043. }
  19044. },
  19045. side: {
  19046. height: math.unit(5 + 2 / 12, "feet"),
  19047. weight: math.unit(110, "lb"),
  19048. name: "Side",
  19049. image: {
  19050. source: "./media/characters/desta/side.svg",
  19051. extra: 2579 / 2491,
  19052. bottom: 0.053
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Micro",
  19059. height: math.unit(6, "inches")
  19060. },
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(5 + 2 / 12, "feet"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Macro",
  19068. height: math.unit(62, "feet")
  19069. },
  19070. {
  19071. name: "Megamacro",
  19072. height: math.unit(1800, "feet")
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19078. {
  19079. front: {
  19080. height: math.unit(10, "feet"),
  19081. weight: math.unit(700, "lb"),
  19082. name: "Front",
  19083. image: {
  19084. source: "./media/characters/storm-alystar/front.svg",
  19085. extra: 2112 / 1898,
  19086. bottom: 0.034
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Micro",
  19093. height: math.unit(3.5, "inches")
  19094. },
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(10, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Macro",
  19102. height: math.unit(400, "feet")
  19103. },
  19104. {
  19105. name: "Deific",
  19106. height: math.unit(60, "miles")
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(2.35, "meters"),
  19115. weight: math.unit(119, "kg"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/ilia/front.svg",
  19119. extra: 1285 / 1255,
  19120. bottom: 0.06
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(2.35, "meters")
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(140, "meters"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Megamacro",
  19136. height: math.unit(100, "miles")
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 5 / 12, "feet"),
  19145. weight: math.unit(190, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/kingdead/front.svg",
  19149. extra: 1228 / 1177
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Micro",
  19156. height: math.unit(7, "inches")
  19157. },
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(6 + 5 / 12, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(150, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Megamacro",
  19169. height: math.unit(200, "miles")
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(8, "feet"),
  19178. weight: math.unit(600, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/kyrehx/front.svg",
  19182. extra: 1195 / 1095,
  19183. bottom: 0.034
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Micro",
  19190. height: math.unit(2, "inches")
  19191. },
  19192. {
  19193. name: "Normal",
  19194. height: math.unit(8, "feet"),
  19195. default: true
  19196. },
  19197. {
  19198. name: "Macro",
  19199. height: math.unit(255, "feet")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19208. weight: math.unit(184, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/xang/front.svg",
  19212. extra: 845 / 755
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19220. default: true
  19221. },
  19222. {
  19223. name: "Macro",
  19224. height: math.unit(0.935 * 146, "feet")
  19225. },
  19226. {
  19227. name: "Megamacro",
  19228. height: math.unit(0.935 * 3, "miles")
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19234. {
  19235. frontDressed: {
  19236. height: math.unit(5 + 7 / 12, "feet"),
  19237. weight: math.unit(140, "lb"),
  19238. name: "Front (Dressed)",
  19239. image: {
  19240. source: "./media/characters/doc-weardno/front-dressed.svg",
  19241. extra: 263 / 234
  19242. }
  19243. },
  19244. backDressed: {
  19245. height: math.unit(5 + 7 / 12, "feet"),
  19246. weight: math.unit(140, "lb"),
  19247. name: "Back (Dressed)",
  19248. image: {
  19249. source: "./media/characters/doc-weardno/back-dressed.svg",
  19250. extra: 266 / 238
  19251. }
  19252. },
  19253. front: {
  19254. height: math.unit(5 + 7 / 12, "feet"),
  19255. weight: math.unit(140, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/doc-weardno/front.svg",
  19259. extra: 254 / 233
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Micro",
  19266. height: math.unit(3, "inches")
  19267. },
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(5 + 7 / 12, "feet"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Macro",
  19275. height: math.unit(25, "feet")
  19276. },
  19277. {
  19278. name: "Megamacro",
  19279. height: math.unit(2, "miles")
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(6 + 2 / 12, "feet"),
  19288. weight: math.unit(153, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/seth-whilst/front.svg",
  19292. bottom: 0.07
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Micro",
  19299. height: math.unit(5, "inches")
  19300. },
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(6 + 2 / 12, "feet"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(3, "inches"),
  19313. weight: math.unit(8, "grams"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/pocket-jabari/front.svg",
  19317. extra: 1024 / 974,
  19318. bottom: 0.039
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Minimicro",
  19325. height: math.unit(8, "mm")
  19326. },
  19327. {
  19328. name: "Micro",
  19329. height: math.unit(3, "inches"),
  19330. default: true
  19331. },
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(3, "feet")
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19340. {
  19341. frontDressed: {
  19342. height: math.unit(15, "feet"),
  19343. weight: math.unit(3280, "lb"),
  19344. name: "Front (Dressed)",
  19345. image: {
  19346. source: "./media/characters/sapphy/front-dressed.svg",
  19347. extra: 1951/1654,
  19348. bottom: 194/2145
  19349. },
  19350. form: "anthro",
  19351. default: true
  19352. },
  19353. backDressed: {
  19354. height: math.unit(15, "feet"),
  19355. weight: math.unit(3280, "lb"),
  19356. name: "Back (Dressed)",
  19357. image: {
  19358. source: "./media/characters/sapphy/back-dressed.svg",
  19359. extra: 2058/1918,
  19360. bottom: 125/2183
  19361. },
  19362. form: "anthro"
  19363. },
  19364. frontNude: {
  19365. height: math.unit(15, "feet"),
  19366. weight: math.unit(3280, "lb"),
  19367. name: "Front (Nude)",
  19368. image: {
  19369. source: "./media/characters/sapphy/front-nude.svg",
  19370. extra: 1951/1654,
  19371. bottom: 194/2145
  19372. },
  19373. form: "anthro"
  19374. },
  19375. backNude: {
  19376. height: math.unit(15, "feet"),
  19377. weight: math.unit(3280, "lb"),
  19378. name: "Back (Nude)",
  19379. image: {
  19380. source: "./media/characters/sapphy/back-nude.svg",
  19381. extra: 2058/1918,
  19382. bottom: 125/2183
  19383. },
  19384. form: "anthro"
  19385. },
  19386. full: {
  19387. height: math.unit(15, "feet"),
  19388. weight: math.unit(3280, "lb"),
  19389. name: "Full",
  19390. image: {
  19391. source: "./media/characters/sapphy/full.svg",
  19392. extra: 1396/1317,
  19393. bottom: 44/1440
  19394. },
  19395. form: "anthro"
  19396. },
  19397. dick: {
  19398. height: math.unit(3.8, "feet"),
  19399. name: "Dick",
  19400. image: {
  19401. source: "./media/characters/sapphy/dick.svg"
  19402. },
  19403. form: "anthro"
  19404. },
  19405. feral: {
  19406. height: math.unit(35, "feet"),
  19407. weight: math.unit(160, "tons"),
  19408. name: "Feral",
  19409. image: {
  19410. source: "./media/characters/sapphy/feral.svg",
  19411. extra: 1050/573,
  19412. bottom: 60/1110
  19413. },
  19414. form: "feral",
  19415. default: true
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(15, "feet"),
  19422. form: "anthro"
  19423. },
  19424. {
  19425. name: "Casual Macro",
  19426. height: math.unit(120, "feet"),
  19427. form: "anthro"
  19428. },
  19429. {
  19430. name: "Macro",
  19431. height: math.unit(2150, "feet"),
  19432. default: true,
  19433. form: "anthro"
  19434. },
  19435. {
  19436. name: "Megamacro",
  19437. height: math.unit(8, "miles"),
  19438. form: "anthro"
  19439. },
  19440. {
  19441. name: "Galaxy Mom",
  19442. height: math.unit(6, "megalightyears"),
  19443. form: "anthro"
  19444. },
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(35, "feet"),
  19448. form: "feral",
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(300, "feet"),
  19454. form: "feral"
  19455. },
  19456. {
  19457. name: "Galaxy Mom",
  19458. height: math.unit(10, "megalightyears"),
  19459. form: "feral"
  19460. },
  19461. ],
  19462. {
  19463. "anthro": {
  19464. name: "Anthro",
  19465. default: true
  19466. },
  19467. "feral": {
  19468. name: "Feral"
  19469. }
  19470. }
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(6, "feet"),
  19477. weight: math.unit(170, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/kiro/front.svg",
  19481. extra: 1064 / 1012,
  19482. bottom: 0.052
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Micro",
  19489. height: math.unit(6, "inches")
  19490. },
  19491. {
  19492. name: "Normal",
  19493. height: math.unit(6, "feet"),
  19494. default: true
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(72, "feet")
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(5 + 9 / 12, "feet"),
  19507. weight: math.unit(175, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/irishfox/front.svg",
  19511. extra: 1912 / 1680,
  19512. bottom: 0.02
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Nano",
  19519. height: math.unit(1, "mm")
  19520. },
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(2, "inches")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(5 + 9 / 12, "feet"),
  19528. default: true
  19529. },
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(45, "feet")
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(6 + 1 / 12, "feet"),
  19541. weight: math.unit(75, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/aronai-sieyes/front.svg",
  19545. extra: 1532/1450,
  19546. bottom: 42/1574
  19547. }
  19548. },
  19549. side: {
  19550. height: math.unit(6 + 1 / 12, "feet"),
  19551. weight: math.unit(75, "lb"),
  19552. name: "Side",
  19553. image: {
  19554. source: "./media/characters/aronai-sieyes/side.svg",
  19555. extra: 1422/1365,
  19556. bottom: 148/1570
  19557. }
  19558. },
  19559. back: {
  19560. height: math.unit(6 + 1 / 12, "feet"),
  19561. weight: math.unit(75, "lb"),
  19562. name: "Back",
  19563. image: {
  19564. source: "./media/characters/aronai-sieyes/back.svg",
  19565. extra: 1526/1464,
  19566. bottom: 51/1577
  19567. }
  19568. },
  19569. dressed: {
  19570. height: math.unit(6 + 1 / 12, "feet"),
  19571. weight: math.unit(75, "lb"),
  19572. name: "Dressed",
  19573. image: {
  19574. source: "./media/characters/aronai-sieyes/dressed.svg",
  19575. extra: 1559/1483,
  19576. bottom: 39/1598
  19577. }
  19578. },
  19579. slit: {
  19580. height: math.unit(1.3, "feet"),
  19581. name: "Slit",
  19582. image: {
  19583. source: "./media/characters/aronai-sieyes/slit.svg"
  19584. }
  19585. },
  19586. slitSpread: {
  19587. height: math.unit(0.9, "feet"),
  19588. name: "Slit (Spread)",
  19589. image: {
  19590. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19591. }
  19592. },
  19593. rump: {
  19594. height: math.unit(1.3, "feet"),
  19595. name: "Rump",
  19596. image: {
  19597. source: "./media/characters/aronai-sieyes/rump.svg"
  19598. }
  19599. },
  19600. maw: {
  19601. height: math.unit(1.25, "feet"),
  19602. name: "Maw",
  19603. image: {
  19604. source: "./media/characters/aronai-sieyes/maw.svg"
  19605. }
  19606. },
  19607. feral: {
  19608. height: math.unit(18, "feet"),
  19609. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19610. name: "Feral",
  19611. image: {
  19612. source: "./media/characters/aronai-sieyes/feral.svg",
  19613. extra: 1530 / 1240,
  19614. bottom: 0.035
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Micro",
  19621. height: math.unit(2, "inches")
  19622. },
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 1 / 12, "feet"),
  19626. default: true
  19627. }
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(12, "feet"),
  19635. weight: math.unit(410, "kg"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/xuna/front.svg",
  19639. extra: 2184 / 1980
  19640. }
  19641. },
  19642. side: {
  19643. height: math.unit(12, "feet"),
  19644. weight: math.unit(410, "kg"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/xuna/side.svg",
  19648. extra: 2184 / 1980
  19649. }
  19650. },
  19651. back: {
  19652. height: math.unit(12, "feet"),
  19653. weight: math.unit(410, "kg"),
  19654. name: "Back",
  19655. image: {
  19656. source: "./media/characters/xuna/back.svg",
  19657. extra: 2184 / 1980
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Nano glow",
  19664. height: math.unit(10, "nm")
  19665. },
  19666. {
  19667. name: "Micro floof",
  19668. height: math.unit(0.3, "m")
  19669. },
  19670. {
  19671. name: "Huggable softy boi",
  19672. height: math.unit(3.6576, "m"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Admirable floof",
  19677. height: math.unit(80, "meters")
  19678. },
  19679. {
  19680. name: "Gentle macro",
  19681. height: math.unit(300, "meters")
  19682. },
  19683. {
  19684. name: "Very careful floof",
  19685. height: math.unit(3200, "meters")
  19686. },
  19687. {
  19688. name: "The mega floof",
  19689. height: math.unit(36000, "meters")
  19690. },
  19691. {
  19692. name: "Giga-fur-Wicker",
  19693. height: math.unit(4800000, "meters")
  19694. },
  19695. {
  19696. name: "Licky world",
  19697. height: math.unit(20000000, "meters")
  19698. },
  19699. {
  19700. name: "Floofy cyan sun",
  19701. height: math.unit(1500000000, "meters")
  19702. },
  19703. {
  19704. name: "Milky Wicker",
  19705. height: math.unit(1000000000000000000000, "meters")
  19706. },
  19707. {
  19708. name: "The observing Wicker",
  19709. height: math.unit(999999999999999999999999999, "meters")
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19715. {
  19716. front: {
  19717. height: math.unit(5 + 9 / 12, "feet"),
  19718. weight: math.unit(150, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/arokha-sieyes/front.svg",
  19722. extra: 1425 / 1284,
  19723. bottom: 0.05
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(5 + 9 / 12, "feet")
  19731. },
  19732. {
  19733. name: "Macro",
  19734. height: math.unit(30, "meters"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(6, "feet"),
  19744. weight: math.unit(180, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/arokh-sieyes/front.svg",
  19748. extra: 1830 / 1769,
  19749. bottom: 0.01
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6, "feet")
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(30, "meters"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19767. {
  19768. side: {
  19769. height: math.unit(13 + 1 / 12, "feet"),
  19770. weight: math.unit(8.5, "tonnes"),
  19771. name: "Side",
  19772. image: {
  19773. source: "./media/characters/goldeneye/side.svg",
  19774. extra: 1182 / 778,
  19775. bottom: 0.067
  19776. }
  19777. },
  19778. paw: {
  19779. height: math.unit(3.4, "feet"),
  19780. name: "Paw",
  19781. image: {
  19782. source: "./media/characters/goldeneye/paw.svg"
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(13 + 1 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19796. {
  19797. front: {
  19798. height: math.unit(6 + 1 / 12, "feet"),
  19799. weight: math.unit(210, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/leonardo-lycheborne/front.svg",
  19803. extra: 776/723,
  19804. bottom: 34/810
  19805. }
  19806. },
  19807. side: {
  19808. height: math.unit(6 + 1 / 12, "feet"),
  19809. weight: math.unit(210, "lb"),
  19810. name: "Side",
  19811. image: {
  19812. source: "./media/characters/leonardo-lycheborne/side.svg",
  19813. extra: 780/728,
  19814. bottom: 12/792
  19815. }
  19816. },
  19817. back: {
  19818. height: math.unit(6 + 1 / 12, "feet"),
  19819. weight: math.unit(210, "lb"),
  19820. name: "Back",
  19821. image: {
  19822. source: "./media/characters/leonardo-lycheborne/back.svg",
  19823. extra: 775/721,
  19824. bottom: 17/792
  19825. }
  19826. },
  19827. hand: {
  19828. height: math.unit(1.08, "feet"),
  19829. name: "Hand",
  19830. image: {
  19831. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19832. }
  19833. },
  19834. foot: {
  19835. height: math.unit(1.32, "feet"),
  19836. name: "Foot",
  19837. image: {
  19838. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19839. }
  19840. },
  19841. maw: {
  19842. height: math.unit(1, "feet"),
  19843. name: "Maw",
  19844. image: {
  19845. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19846. }
  19847. },
  19848. were: {
  19849. height: math.unit(20, "feet"),
  19850. weight: math.unit(7800, "lb"),
  19851. name: "Were",
  19852. image: {
  19853. source: "./media/characters/leonardo-lycheborne/were.svg",
  19854. extra: 1224/1165,
  19855. bottom: 72/1296
  19856. }
  19857. },
  19858. feral: {
  19859. height: math.unit(7.5, "feet"),
  19860. weight: math.unit(600, "lb"),
  19861. name: "Feral",
  19862. image: {
  19863. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19864. extra: 797/702,
  19865. bottom: 139/936
  19866. }
  19867. },
  19868. taur: {
  19869. height: math.unit(11, "feet"),
  19870. weight: math.unit(3300, "lb"),
  19871. name: "Taur",
  19872. image: {
  19873. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19874. extra: 1271/1197,
  19875. bottom: 47/1318
  19876. }
  19877. },
  19878. barghest: {
  19879. height: math.unit(11, "feet"),
  19880. weight: math.unit(1300, "lb"),
  19881. name: "Barghest",
  19882. image: {
  19883. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19884. extra: 1291/1204,
  19885. bottom: 37/1328
  19886. }
  19887. },
  19888. dick: {
  19889. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19890. name: "Dick",
  19891. image: {
  19892. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19893. }
  19894. },
  19895. dickWere: {
  19896. height: math.unit((20) / 3.8, "feet"),
  19897. name: "Dick (Were)",
  19898. image: {
  19899. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(6 + 1 / 12, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(10, "feet"),
  19916. weight: math.unit(350, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/jet/front.svg",
  19920. extra: 2050 / 1980,
  19921. bottom: 0.013
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(10, "feet"),
  19926. weight: math.unit(350, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/jet/back.svg",
  19930. extra: 2050 / 1980,
  19931. bottom: 0.013
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Micro",
  19938. height: math.unit(6, "inches")
  19939. },
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(10, "feet"),
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(100, "feet")
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19953. {
  19954. front: {
  19955. height: math.unit(15, "feet"),
  19956. weight: math.unit(2800, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/tanarath/front.svg",
  19960. extra: 2392 / 2220,
  19961. bottom: 0.03
  19962. }
  19963. },
  19964. back: {
  19965. height: math.unit(15, "feet"),
  19966. weight: math.unit(2800, "lb"),
  19967. name: "Back",
  19968. image: {
  19969. source: "./media/characters/tanarath/back.svg",
  19970. extra: 2392 / 2220,
  19971. bottom: 0.03
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(15, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(7 + 1 / 12, "feet"),
  19988. weight: math.unit(175, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/patty-cattybatty/front.svg",
  19992. extra: 908 / 874,
  19993. bottom: 0.025
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Micro",
  20000. height: math.unit(1, "inch")
  20001. },
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(7 + 1 / 12, "feet")
  20005. },
  20006. {
  20007. name: "Mini Macro",
  20008. height: math.unit(155, "feet")
  20009. },
  20010. {
  20011. name: "Macro",
  20012. height: math.unit(1077, "feet")
  20013. },
  20014. {
  20015. name: "Mega Macro",
  20016. height: math.unit(47650, "feet"),
  20017. default: true
  20018. },
  20019. {
  20020. name: "Giga Macro",
  20021. height: math.unit(440, "miles")
  20022. },
  20023. {
  20024. name: "Tera Macro",
  20025. height: math.unit(8700, "miles")
  20026. },
  20027. {
  20028. name: "Planetary Macro",
  20029. height: math.unit(32700, "miles")
  20030. },
  20031. {
  20032. name: "Solar Macro",
  20033. height: math.unit(550000, "miles")
  20034. },
  20035. {
  20036. name: "Celestial Macro",
  20037. height: math.unit(2.5, "AU")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(4 + 5 / 12, "feet"),
  20046. weight: math.unit(90, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/cappu/front.svg",
  20050. extra: 1247 / 1152,
  20051. bottom: 0.012
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(4 + 5 / 12, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20065. {
  20066. frontDressed: {
  20067. height: math.unit(70, "cm"),
  20068. weight: math.unit(6, "kg"),
  20069. name: "Front (Dressed)",
  20070. image: {
  20071. source: "./media/characters/sebi/front-dressed.svg",
  20072. extra: 713.5 / 686.5,
  20073. bottom: 0.003
  20074. }
  20075. },
  20076. front: {
  20077. height: math.unit(70, "cm"),
  20078. weight: math.unit(5, "kg"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/sebi/front.svg",
  20082. extra: 713.5 / 686.5,
  20083. bottom: 0.003
  20084. }
  20085. }
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(70, "cm"),
  20091. default: true
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(8, "meters")
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(6, "feet"),
  20104. weight: math.unit(150, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/typhek/front.svg",
  20108. extra: 1948 / 1929,
  20109. bottom: 0.025
  20110. }
  20111. },
  20112. side: {
  20113. height: math.unit(6, "feet"),
  20114. weight: math.unit(150, "lb"),
  20115. name: "Side",
  20116. image: {
  20117. source: "./media/characters/typhek/side.svg",
  20118. extra: 2034 / 2010,
  20119. bottom: 0.003
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(6, "feet"),
  20124. weight: math.unit(150, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/typhek/back.svg",
  20128. extra: 2005 / 1978,
  20129. bottom: 0.004
  20130. }
  20131. },
  20132. palm: {
  20133. height: math.unit(1.2, "feet"),
  20134. name: "Palm",
  20135. image: {
  20136. source: "./media/characters/typhek/palm.svg"
  20137. }
  20138. },
  20139. fist: {
  20140. height: math.unit(1.1, "feet"),
  20141. name: "Fist",
  20142. image: {
  20143. source: "./media/characters/typhek/fist.svg"
  20144. }
  20145. },
  20146. foot: {
  20147. height: math.unit(1.57, "feet"),
  20148. name: "Foot",
  20149. image: {
  20150. source: "./media/characters/typhek/foot.svg"
  20151. }
  20152. },
  20153. sole: {
  20154. height: math.unit(2.05, "feet"),
  20155. name: "Sole",
  20156. image: {
  20157. source: "./media/characters/typhek/sole.svg"
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Macro",
  20164. height: math.unit(40, "stories"),
  20165. default: true
  20166. },
  20167. {
  20168. name: "Megamacro",
  20169. height: math.unit(1, "mile")
  20170. },
  20171. {
  20172. name: "Gigamacro",
  20173. height: math.unit(4000, "solarradii")
  20174. },
  20175. {
  20176. name: "Universal",
  20177. height: math.unit(1.1, "universes")
  20178. }
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20183. {
  20184. side: {
  20185. height: math.unit(5 + 7 / 12, "feet"),
  20186. weight: math.unit(150, "lb"),
  20187. name: "Side",
  20188. image: {
  20189. source: "./media/characters/kassy/side.svg",
  20190. extra: 1280 / 1225,
  20191. bottom: 0.002
  20192. }
  20193. },
  20194. front: {
  20195. height: math.unit(5 + 7 / 12, "feet"),
  20196. weight: math.unit(150, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/kassy/front.svg",
  20200. extra: 1280 / 1225,
  20201. bottom: 0.025
  20202. }
  20203. },
  20204. back: {
  20205. height: math.unit(5 + 7 / 12, "feet"),
  20206. weight: math.unit(150, "lb"),
  20207. name: "Back",
  20208. image: {
  20209. source: "./media/characters/kassy/back.svg",
  20210. extra: 1280 / 1225,
  20211. bottom: 0.002
  20212. }
  20213. },
  20214. foot: {
  20215. height: math.unit(1.266, "feet"),
  20216. name: "Foot",
  20217. image: {
  20218. source: "./media/characters/kassy/foot.svg"
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(5 + 7 / 12, "feet")
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(137, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Megamacro",
  20234. height: math.unit(1, "mile")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(6 + 1 / 12, "feet"),
  20243. weight: math.unit(200, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/neil/front.svg",
  20247. extra: 1326 / 1250,
  20248. bottom: 0.023
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(6 + 1 / 12, "feet"),
  20256. default: true
  20257. },
  20258. {
  20259. name: "Macro",
  20260. height: math.unit(200, "feet")
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20266. {
  20267. front: {
  20268. height: math.unit(5 + 9 / 12, "feet"),
  20269. weight: math.unit(190, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/atticus/front.svg",
  20273. extra: 2934 / 2785,
  20274. bottom: 0.025
  20275. }
  20276. },
  20277. },
  20278. [
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(5 + 9 / 12, "feet"),
  20282. default: true
  20283. },
  20284. {
  20285. name: "Macro",
  20286. height: math.unit(180, "feet")
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20292. {
  20293. side: {
  20294. height: math.unit(9, "feet"),
  20295. weight: math.unit(650, "lb"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/milo/side.svg",
  20299. extra: 2644 / 2310,
  20300. bottom: 0.032
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(9, "feet"),
  20308. default: true
  20309. },
  20310. {
  20311. name: "Macro",
  20312. height: math.unit(300, "feet")
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20318. {
  20319. side: {
  20320. height: math.unit(8, "meters"),
  20321. weight: math.unit(90000, "kg"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/ijzer/side.svg",
  20325. extra: 2756 / 1600,
  20326. bottom: 0.01
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Small",
  20333. height: math.unit(3, "meters")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(8, "meters"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Normal+",
  20342. height: math.unit(10, "meters")
  20343. },
  20344. {
  20345. name: "Bigger",
  20346. height: math.unit(24, "meters")
  20347. },
  20348. {
  20349. name: "Huge",
  20350. height: math.unit(80, "meters")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(6 + 2 / 12, "feet"),
  20359. weight: math.unit(153, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/luca-cervicum/front.svg",
  20363. extra: 370 / 327,
  20364. bottom: 0.015
  20365. }
  20366. },
  20367. back: {
  20368. height: math.unit(6 + 2 / 12, "feet"),
  20369. weight: math.unit(153, "lb"),
  20370. name: "Back",
  20371. image: {
  20372. source: "./media/characters/luca-cervicum/back.svg",
  20373. extra: 367 / 333,
  20374. bottom: 0.005
  20375. }
  20376. },
  20377. frontGear: {
  20378. height: math.unit(6 + 2 / 12, "feet"),
  20379. weight: math.unit(173, "lb"),
  20380. name: "Front (Gear)",
  20381. image: {
  20382. source: "./media/characters/luca-cervicum/front-gear.svg",
  20383. extra: 377 / 333,
  20384. bottom: 0.006
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(6 + 2 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(6 + 1 / 12, "feet"),
  20401. weight: math.unit(304, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/oliver/front.svg",
  20405. extra: 157 / 143,
  20406. bottom: 0.08
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(6 + 1 / 12, "feet"),
  20414. default: true
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(5 + 7 / 12, "feet"),
  20423. weight: math.unit(140, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/shane/front.svg",
  20427. extra: 304 / 289,
  20428. bottom: 0.005
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5 + 7 / 12, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(5 + 9 / 12, "feet"),
  20445. weight: math.unit(178, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/shin/front.svg",
  20449. extra: 159 / 151,
  20450. bottom: 0.015
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(5 + 9 / 12, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 10 / 12, "feet"),
  20467. weight: math.unit(168, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/xerxes/front.svg",
  20471. extra: 282 / 260,
  20472. bottom: 0.045
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(5 + 10 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(6 + 7 / 12, "feet"),
  20489. weight: math.unit(208, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/chaska/front.svg",
  20493. extra: 332 / 319,
  20494. bottom: 0.015
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6 + 7 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(5 + 8 / 12, "feet"),
  20511. weight: math.unit(208, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/enuk/front.svg",
  20515. extra: 437 / 406,
  20516. bottom: 0.02
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 8 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(5 + 10 / 12, "feet"),
  20533. weight: math.unit(252, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/bruun/front.svg",
  20537. extra: 197 / 187,
  20538. bottom: 0.012
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(5 + 10 / 12, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(6 + 10 / 12, "feet"),
  20555. weight: math.unit(255, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/alexeev/front.svg",
  20559. extra: 213 / 200,
  20560. bottom: 0.05
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(6 + 10 / 12, "feet"),
  20568. default: true
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20574. {
  20575. front: {
  20576. height: math.unit(2 + 8 / 12, "feet"),
  20577. weight: math.unit(22, "lb"),
  20578. name: "Front",
  20579. image: {
  20580. source: "./media/characters/evelyn/front.svg",
  20581. extra: 208 / 180
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(2 + 8 / 12, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(5 + 9 / 12, "feet"),
  20598. weight: math.unit(139, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/inca/front.svg",
  20602. extra: 294 / 291,
  20603. bottom: 0.03
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(5 + 9 / 12, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(6 + 3 / 12, "feet"),
  20620. weight: math.unit(185, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/mera/front.svg",
  20624. extra: 291 / 277,
  20625. bottom: 0.03
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(6 + 3 / 12, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(6 + 7 / 12, "feet"),
  20642. weight: math.unit(160, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/ceres/front.svg",
  20646. extra: 1023 / 950,
  20647. bottom: 0.027
  20648. }
  20649. },
  20650. back: {
  20651. height: math.unit(6 + 7 / 12, "feet"),
  20652. weight: math.unit(160, "lb"),
  20653. name: "Back",
  20654. image: {
  20655. source: "./media/characters/ceres/back.svg",
  20656. extra: 1023 / 950
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(6 + 7 / 12, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(5 + 10 / 12, "feet"),
  20673. weight: math.unit(150, "lb"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/kris/front.svg",
  20677. extra: 885 / 803,
  20678. bottom: 0.03
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Normal",
  20685. height: math.unit(5 + 10 / 12, "feet"),
  20686. default: true
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20692. {
  20693. front: {
  20694. height: math.unit(7, "feet"),
  20695. weight: math.unit(120, "kg"),
  20696. name: "Front",
  20697. image: {
  20698. source: "./media/characters/taluthus/front.svg",
  20699. extra: 903 / 833,
  20700. bottom: 0.015
  20701. }
  20702. },
  20703. },
  20704. [
  20705. {
  20706. name: "Normal",
  20707. height: math.unit(7, "feet"),
  20708. default: true
  20709. },
  20710. {
  20711. name: "Macro",
  20712. height: math.unit(300, "feet")
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(5 + 9 / 12, "feet"),
  20721. weight: math.unit(145, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/dawn/front.svg",
  20725. extra: 2094 / 2016,
  20726. bottom: 0.025
  20727. }
  20728. },
  20729. back: {
  20730. height: math.unit(5 + 9 / 12, "feet"),
  20731. weight: math.unit(160, "lb"),
  20732. name: "Back",
  20733. image: {
  20734. source: "./media/characters/dawn/back.svg",
  20735. extra: 2112 / 2080,
  20736. bottom: 0.005
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(6 + 7 / 12, "feet"),
  20744. default: true
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20750. {
  20751. anthro: {
  20752. height: math.unit(8 + 3 / 12, "feet"),
  20753. weight: math.unit(450, "lb"),
  20754. name: "Anthro",
  20755. image: {
  20756. source: "./media/characters/arador/anthro.svg",
  20757. extra: 1835 / 1718,
  20758. bottom: 0.025
  20759. }
  20760. },
  20761. feral: {
  20762. height: math.unit(4, "feet"),
  20763. weight: math.unit(200, "lb"),
  20764. name: "Feral",
  20765. image: {
  20766. source: "./media/characters/arador/feral.svg",
  20767. extra: 1683 / 1514,
  20768. bottom: 0.07
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(8 + 3 / 12, "feet")
  20776. },
  20777. {
  20778. name: "Macro",
  20779. height: math.unit(82.5, "feet"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20786. {
  20787. front: {
  20788. height: math.unit(5 + 10 / 12, "feet"),
  20789. weight: math.unit(125, "lb"),
  20790. name: "Front",
  20791. image: {
  20792. source: "./media/characters/dharsi/front.svg",
  20793. extra: 716 / 630,
  20794. bottom: 0.035
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Nano",
  20801. height: math.unit(100, "nm")
  20802. },
  20803. {
  20804. name: "Micro",
  20805. height: math.unit(2, "inches")
  20806. },
  20807. {
  20808. name: "Normal",
  20809. height: math.unit(5 + 10 / 12, "feet"),
  20810. default: true
  20811. },
  20812. {
  20813. name: "Macro",
  20814. height: math.unit(1000, "feet")
  20815. },
  20816. {
  20817. name: "Megamacro",
  20818. height: math.unit(10, "miles")
  20819. },
  20820. {
  20821. name: "Gigamacro",
  20822. height: math.unit(3000, "miles")
  20823. },
  20824. {
  20825. name: "Teramacro",
  20826. height: math.unit(500000, "miles")
  20827. },
  20828. {
  20829. name: "Teramacro+",
  20830. height: math.unit(30, "galaxies")
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(6, "feet"),
  20839. weight: math.unit(150, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/deathy/front.svg",
  20843. extra: 1552 / 1463,
  20844. bottom: 0.025
  20845. }
  20846. },
  20847. side: {
  20848. height: math.unit(6, "feet"),
  20849. weight: math.unit(150, "lb"),
  20850. name: "Side",
  20851. image: {
  20852. source: "./media/characters/deathy/side.svg",
  20853. extra: 1604 / 1455,
  20854. bottom: 0.025
  20855. }
  20856. },
  20857. back: {
  20858. height: math.unit(6, "feet"),
  20859. weight: math.unit(150, "lb"),
  20860. name: "Back",
  20861. image: {
  20862. source: "./media/characters/deathy/back.svg",
  20863. extra: 1580 / 1463,
  20864. bottom: 0.005
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Micro",
  20871. height: math.unit(5, "millimeters")
  20872. },
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(6 + 5 / 12, "feet"),
  20876. default: true
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20882. {
  20883. front: {
  20884. height: math.unit(16, "feet"),
  20885. weight: math.unit(4000, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/juniper/front.svg",
  20889. bottom: 0.04
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(16, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(6, "feet"),
  20906. weight: math.unit(150, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/hipster/front.svg",
  20910. extra: 1312 / 1209,
  20911. bottom: 0.025
  20912. }
  20913. },
  20914. back: {
  20915. height: math.unit(6, "feet"),
  20916. weight: math.unit(150, "lb"),
  20917. name: "Back",
  20918. image: {
  20919. source: "./media/characters/hipster/back.svg",
  20920. extra: 1281 / 1196,
  20921. bottom: 0.01
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Micro",
  20928. height: math.unit(1, "mm")
  20929. },
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(4, "inches"),
  20933. default: true
  20934. },
  20935. {
  20936. name: "Macro",
  20937. height: math.unit(500, "feet")
  20938. },
  20939. {
  20940. name: "Megamacro",
  20941. height: math.unit(1000, "miles")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20947. {
  20948. front: {
  20949. height: math.unit(6, "feet"),
  20950. weight: math.unit(150, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/tendirmuldr/front.svg",
  20954. extra: 1878 / 1772,
  20955. bottom: 0.015
  20956. }
  20957. },
  20958. },
  20959. [
  20960. {
  20961. name: "Megamacro",
  20962. height: math.unit(1500, "miles"),
  20963. default: true
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20969. {
  20970. front: {
  20971. height: math.unit(14, "feet"),
  20972. weight: math.unit(12000, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/mort/front.svg",
  20976. extra: 365 / 318,
  20977. bottom: 0.01
  20978. }
  20979. },
  20980. side: {
  20981. height: math.unit(14, "feet"),
  20982. weight: math.unit(12000, "lb"),
  20983. name: "Side",
  20984. image: {
  20985. source: "./media/characters/mort/side.svg",
  20986. extra: 365 / 318,
  20987. bottom: 0.052
  20988. },
  20989. default: true
  20990. },
  20991. back: {
  20992. height: math.unit(14, "feet"),
  20993. weight: math.unit(12000, "lb"),
  20994. name: "Back",
  20995. image: {
  20996. source: "./media/characters/mort/back.svg",
  20997. extra: 371 / 332,
  20998. bottom: 0.18
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(14, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21012. {
  21013. front: {
  21014. height: math.unit(8, "feet"),
  21015. weight: math.unit(1, "ton"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/lycoa/front.svg",
  21019. extra: 1836/1728,
  21020. bottom: 81/1917
  21021. }
  21022. },
  21023. back: {
  21024. height: math.unit(8, "feet"),
  21025. weight: math.unit(1, "ton"),
  21026. name: "Back",
  21027. image: {
  21028. source: "./media/characters/lycoa/back.svg",
  21029. extra: 1785/1720,
  21030. bottom: 91/1876
  21031. }
  21032. },
  21033. head: {
  21034. height: math.unit(1.6243, "feet"),
  21035. name: "Head",
  21036. image: {
  21037. source: "./media/characters/lycoa/head.svg",
  21038. extra: 1011/782,
  21039. bottom: 0/1011
  21040. }
  21041. },
  21042. tailmaw: {
  21043. height: math.unit(1.9, "feet"),
  21044. name: "Tailmaw",
  21045. image: {
  21046. source: "./media/characters/lycoa/tailmaw.svg"
  21047. }
  21048. },
  21049. tentacles: {
  21050. height: math.unit(2.1, "feet"),
  21051. name: "Tentacles",
  21052. image: {
  21053. source: "./media/characters/lycoa/tentacles.svg"
  21054. }
  21055. },
  21056. dick: {
  21057. height: math.unit(1.73, "feet"),
  21058. name: "Dick",
  21059. image: {
  21060. source: "./media/characters/lycoa/dick.svg"
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(8, "feet"),
  21068. default: true
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(30, "feet")
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21078. {
  21079. front: {
  21080. height: math.unit(4 + 2 / 12, "feet"),
  21081. weight: math.unit(70, "lb"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/naldara/front.svg",
  21085. extra: 1664/1387,
  21086. bottom: 81/1745
  21087. },
  21088. form: "anthro",
  21089. default: true
  21090. },
  21091. naga: {
  21092. height: math.unit(20, "feet"),
  21093. weight: math.unit(15000, "kg"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/naldara/naga.svg",
  21097. extra: 1590/1396,
  21098. bottom: 285/1875
  21099. },
  21100. form: "naga",
  21101. default: true
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(4 + 2 / 12, "feet"),
  21108. form: "anthro",
  21109. default: true
  21110. },
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(20, "feet"),
  21114. form: "naga",
  21115. default: true
  21116. },
  21117. ],
  21118. {
  21119. "anthro": {
  21120. name: "Anthro",
  21121. default: true
  21122. },
  21123. "naga": {
  21124. name: "Naga"
  21125. }
  21126. }
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(13 + 7 / 12, "feet"),
  21133. weight: math.unit(1500, "lb"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/briar/front.svg",
  21137. extra: 1223/1157,
  21138. bottom: 123/1346
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Normal",
  21145. height: math.unit(13 + 7 / 12, "feet"),
  21146. default: true
  21147. },
  21148. ]
  21149. ))
  21150. characterMakers.push(() => makeCharacter(
  21151. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21152. {
  21153. side: {
  21154. height: math.unit(16, "feet"),
  21155. weight: math.unit(500, "lb"),
  21156. name: "Side",
  21157. image: {
  21158. source: "./media/characters/vanguard/side.svg",
  21159. extra: 1022/914,
  21160. bottom: 30/1052
  21161. }
  21162. },
  21163. sideAlt: {
  21164. height: math.unit(10, "feet"),
  21165. weight: math.unit(500, "lb"),
  21166. name: "Side (Alt)",
  21167. image: {
  21168. source: "./media/characters/vanguard/side-alt.svg",
  21169. extra: 502 / 425,
  21170. bottom: 0.087
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Normal",
  21177. height: math.unit(17.71, "feet"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21184. {
  21185. front: {
  21186. height: math.unit(7.5, "feet"),
  21187. weight: math.unit(2, "lb"),
  21188. name: "Front",
  21189. image: {
  21190. source: "./media/characters/artemis/work-safe-front.svg",
  21191. extra: 1192 / 1075,
  21192. bottom: 0.07
  21193. },
  21194. form: "work-safe",
  21195. default: true
  21196. },
  21197. frontNsfw: {
  21198. height: math.unit(7.5, "feet"),
  21199. weight: math.unit(2, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/artemis/calibrating-front.svg",
  21203. extra: 1192 / 1075,
  21204. bottom: 0.07
  21205. },
  21206. form: "calibrating",
  21207. default: true
  21208. },
  21209. frontNsfwer: {
  21210. height: math.unit(7.5, "feet"),
  21211. weight: math.unit(2, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/artemis/oversize-load-front.svg",
  21215. extra: 1192 / 1075,
  21216. bottom: 0.07
  21217. },
  21218. form: "oversize-load",
  21219. default: true
  21220. },
  21221. side: {
  21222. height: math.unit(7.5, "feet"),
  21223. weight: math.unit(2, "lb"),
  21224. name: "Side",
  21225. image: {
  21226. source: "./media/characters/artemis/work-safe-side.svg",
  21227. extra: 1192 / 1075,
  21228. bottom: 0.07
  21229. },
  21230. form: "work-safe"
  21231. },
  21232. sideNsfw: {
  21233. height: math.unit(7.5, "feet"),
  21234. weight: math.unit(2, "lb"),
  21235. name: "Side",
  21236. image: {
  21237. source: "./media/characters/artemis/calibrating-side.svg",
  21238. extra: 1192 / 1075,
  21239. bottom: 0.07
  21240. },
  21241. form: "calibrating"
  21242. },
  21243. sideNsfwer: {
  21244. height: math.unit(7.5, "feet"),
  21245. weight: math.unit(2, "lb"),
  21246. name: "Side",
  21247. image: {
  21248. source: "./media/characters/artemis/oversize-load-side.svg",
  21249. extra: 1192 / 1075,
  21250. bottom: 0.07
  21251. },
  21252. form: "oversize-load"
  21253. },
  21254. maw: {
  21255. height: math.unit(1.1, "feet"),
  21256. name: "Maw",
  21257. image: {
  21258. source: "./media/characters/artemis/maw.svg"
  21259. },
  21260. form: "work-safe"
  21261. },
  21262. stomach: {
  21263. height: math.unit(0.95, "feet"),
  21264. name: "Stomach",
  21265. image: {
  21266. source: "./media/characters/artemis/stomach.svg"
  21267. },
  21268. form: "work-safe"
  21269. },
  21270. dickCanine: {
  21271. height: math.unit(1, "feet"),
  21272. name: "Dick (Canine)",
  21273. image: {
  21274. source: "./media/characters/artemis/dick-canine.svg"
  21275. },
  21276. form: "calibrating"
  21277. },
  21278. dickEquine: {
  21279. height: math.unit(0.85, "feet"),
  21280. name: "Dick (Equine)",
  21281. image: {
  21282. source: "./media/characters/artemis/dick-equine.svg"
  21283. },
  21284. form: "calibrating"
  21285. },
  21286. dickExotic: {
  21287. height: math.unit(0.85, "feet"),
  21288. name: "Dick (Exotic)",
  21289. image: {
  21290. source: "./media/characters/artemis/dick-exotic.svg"
  21291. },
  21292. form: "calibrating"
  21293. },
  21294. dickCanineBigger: {
  21295. height: math.unit(1 * 1.33, "feet"),
  21296. name: "Dick (Canine)",
  21297. image: {
  21298. source: "./media/characters/artemis/dick-canine.svg"
  21299. },
  21300. form: "oversize-load"
  21301. },
  21302. dickEquineBigger: {
  21303. height: math.unit(0.85 * 1.33, "feet"),
  21304. name: "Dick (Equine)",
  21305. image: {
  21306. source: "./media/characters/artemis/dick-equine.svg"
  21307. },
  21308. form: "oversize-load"
  21309. },
  21310. dickExoticBigger: {
  21311. height: math.unit(0.85 * 1.33, "feet"),
  21312. name: "Dick (Exotic)",
  21313. image: {
  21314. source: "./media/characters/artemis/dick-exotic.svg"
  21315. },
  21316. form: "oversize-load"
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(7.5, "feet"),
  21323. form: "work-safe",
  21324. default: true
  21325. },
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(7.5, "feet"),
  21329. form: "calibrating",
  21330. default: true
  21331. },
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(7.5, "feet"),
  21335. form: "oversize-load",
  21336. default: true
  21337. },
  21338. {
  21339. name: "Enlarged",
  21340. height: math.unit(12, "feet"),
  21341. form: "work-safe",
  21342. },
  21343. {
  21344. name: "Enlarged",
  21345. height: math.unit(12, "feet"),
  21346. form: "calibrating",
  21347. },
  21348. {
  21349. name: "Enlarged",
  21350. height: math.unit(12, "feet"),
  21351. form: "oversize-load",
  21352. },
  21353. ],
  21354. {
  21355. "work-safe": {
  21356. name: "Work-Safe",
  21357. default: true
  21358. },
  21359. "calibrating": {
  21360. name: "Calibrating"
  21361. },
  21362. "oversize-load": {
  21363. name: "Oversize Load"
  21364. }
  21365. }
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(5 + 3 / 12, "feet"),
  21372. weight: math.unit(160, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/kira/front.svg",
  21376. extra: 906 / 786,
  21377. bottom: 0.01
  21378. }
  21379. },
  21380. back: {
  21381. height: math.unit(5 + 3 / 12, "feet"),
  21382. weight: math.unit(160, "lb"),
  21383. name: "Back",
  21384. image: {
  21385. source: "./media/characters/kira/back.svg",
  21386. extra: 882 / 757,
  21387. bottom: 0.005
  21388. }
  21389. },
  21390. frontDressed: {
  21391. height: math.unit(5 + 3 / 12, "feet"),
  21392. weight: math.unit(160, "lb"),
  21393. name: "Front (Dressed)",
  21394. image: {
  21395. source: "./media/characters/kira/front-dressed.svg",
  21396. extra: 906 / 786,
  21397. bottom: 0.01
  21398. }
  21399. },
  21400. beans: {
  21401. height: math.unit(0.92, "feet"),
  21402. name: "Beans",
  21403. image: {
  21404. source: "./media/characters/kira/beans.svg"
  21405. }
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(5 + 3 / 12, "feet"),
  21412. default: true
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21418. {
  21419. front: {
  21420. height: math.unit(5 + 4 / 12, "feet"),
  21421. weight: math.unit(145, "lb"),
  21422. name: "Front",
  21423. image: {
  21424. source: "./media/characters/scramble/front.svg",
  21425. extra: 763 / 727,
  21426. bottom: 0.05
  21427. }
  21428. },
  21429. back: {
  21430. height: math.unit(5 + 4 / 12, "feet"),
  21431. weight: math.unit(145, "lb"),
  21432. name: "Back",
  21433. image: {
  21434. source: "./media/characters/scramble/back.svg",
  21435. extra: 826 / 737,
  21436. bottom: 0.002
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(5 + 4 / 12, "feet"),
  21444. default: true
  21445. },
  21446. ]
  21447. ))
  21448. characterMakers.push(() => makeCharacter(
  21449. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21450. {
  21451. side: {
  21452. height: math.unit(6 + 2 / 12, "feet"),
  21453. weight: math.unit(190, "lb"),
  21454. name: "Side",
  21455. image: {
  21456. source: "./media/characters/biscuit/side.svg",
  21457. extra: 858 / 791,
  21458. bottom: 0.044
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(6 + 2 / 12, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(5 + 2 / 12, "feet"),
  21475. weight: math.unit(120, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/poffin/front.svg",
  21479. extra: 786 / 680,
  21480. bottom: 0.005
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Normal",
  21487. height: math.unit(5 + 2 / 12, "feet"),
  21488. default: true
  21489. },
  21490. ]
  21491. ))
  21492. characterMakers.push(() => makeCharacter(
  21493. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21494. {
  21495. front: {
  21496. height: math.unit(6 + 3 / 12, "feet"),
  21497. weight: math.unit(519, "lb"),
  21498. name: "Front",
  21499. image: {
  21500. source: "./media/characters/dhari/front.svg",
  21501. extra: 1048 / 946,
  21502. bottom: 0.015
  21503. }
  21504. },
  21505. back: {
  21506. height: math.unit(6 + 3 / 12, "feet"),
  21507. weight: math.unit(519, "lb"),
  21508. name: "Back",
  21509. image: {
  21510. source: "./media/characters/dhari/back.svg",
  21511. extra: 1048 / 931,
  21512. bottom: 0.005
  21513. }
  21514. },
  21515. frontDressed: {
  21516. height: math.unit(6 + 3 / 12, "feet"),
  21517. weight: math.unit(519, "lb"),
  21518. name: "Front (Dressed)",
  21519. image: {
  21520. source: "./media/characters/dhari/front-dressed.svg",
  21521. extra: 1713 / 1546,
  21522. bottom: 0.02
  21523. }
  21524. },
  21525. backDressed: {
  21526. height: math.unit(6 + 3 / 12, "feet"),
  21527. weight: math.unit(519, "lb"),
  21528. name: "Back (Dressed)",
  21529. image: {
  21530. source: "./media/characters/dhari/back-dressed.svg",
  21531. extra: 1699 / 1537,
  21532. bottom: 0.01
  21533. }
  21534. },
  21535. maw: {
  21536. height: math.unit(0.95, "feet"),
  21537. name: "Maw",
  21538. image: {
  21539. source: "./media/characters/dhari/maw.svg"
  21540. }
  21541. },
  21542. wereFront: {
  21543. height: math.unit(12 + 8 / 12, "feet"),
  21544. weight: math.unit(4000, "lb"),
  21545. name: "Front (Were)",
  21546. image: {
  21547. source: "./media/characters/dhari/were-front.svg",
  21548. extra: 1065 / 969,
  21549. bottom: 0.015
  21550. }
  21551. },
  21552. wereBack: {
  21553. height: math.unit(12 + 8 / 12, "feet"),
  21554. weight: math.unit(4000, "lb"),
  21555. name: "Back (Were)",
  21556. image: {
  21557. source: "./media/characters/dhari/were-back.svg",
  21558. extra: 1065 / 969,
  21559. bottom: 0.012
  21560. }
  21561. },
  21562. wereMaw: {
  21563. height: math.unit(0.625, "meters"),
  21564. name: "Maw (Were)",
  21565. image: {
  21566. source: "./media/characters/dhari/were-maw.svg"
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(6 + 3 / 12, "feet"),
  21574. default: true
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21580. {
  21581. anthro: {
  21582. height: math.unit(5 + 7 / 12, "feet"),
  21583. weight: math.unit(175, "lb"),
  21584. name: "Anthro",
  21585. image: {
  21586. source: "./media/characters/rena-dyne/anthro.svg",
  21587. extra: 1849 / 1785,
  21588. bottom: 0.005
  21589. }
  21590. },
  21591. taur: {
  21592. height: math.unit(15 + 6 / 12, "feet"),
  21593. weight: math.unit(8000, "lb"),
  21594. name: "Taur",
  21595. image: {
  21596. source: "./media/characters/rena-dyne/taur.svg",
  21597. extra: 2315 / 2234,
  21598. bottom: 0.033
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 7 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(8, "feet"),
  21615. weight: math.unit(600, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/weremeep/front.svg",
  21619. extra: 967 / 862,
  21620. bottom: 0.01
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(8, "feet"),
  21628. default: true
  21629. },
  21630. {
  21631. name: "Lorg",
  21632. height: math.unit(12, "feet")
  21633. },
  21634. {
  21635. name: "Oh Lawd She Comin'",
  21636. height: math.unit(20, "feet")
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21642. {
  21643. front: {
  21644. height: math.unit(4, "feet"),
  21645. weight: math.unit(90, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/reza/front.svg",
  21649. extra: 1183 / 1111,
  21650. bottom: 0.017
  21651. }
  21652. },
  21653. back: {
  21654. height: math.unit(4, "feet"),
  21655. weight: math.unit(90, "lb"),
  21656. name: "Back",
  21657. image: {
  21658. source: "./media/characters/reza/back.svg",
  21659. extra: 1183 / 1111,
  21660. bottom: 0.01
  21661. }
  21662. },
  21663. drake: {
  21664. height: math.unit(30, "feet"),
  21665. weight: math.unit(246960, "lb"),
  21666. name: "Drake",
  21667. image: {
  21668. source: "./media/characters/reza/drake.svg",
  21669. extra: 2350 / 2024,
  21670. bottom: 60.7 / 2403
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(4, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21684. {
  21685. side: {
  21686. height: math.unit(15, "feet"),
  21687. weight: math.unit(14, "tons"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/athea/side.svg",
  21691. extra: 960 / 540,
  21692. bottom: 0.003
  21693. }
  21694. },
  21695. sitting: {
  21696. height: math.unit(6 * 2.85, "feet"),
  21697. weight: math.unit(14, "tons"),
  21698. name: "Sitting",
  21699. image: {
  21700. source: "./media/characters/athea/sitting.svg",
  21701. extra: 621 / 581,
  21702. bottom: 0.075
  21703. }
  21704. },
  21705. maw: {
  21706. height: math.unit(7.59498031496063, "feet"),
  21707. name: "Maw",
  21708. image: {
  21709. source: "./media/characters/athea/maw.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Lap Cat",
  21716. height: math.unit(2.5, "feet")
  21717. },
  21718. {
  21719. name: "Minimacro",
  21720. height: math.unit(15, "feet"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Macro",
  21725. height: math.unit(120, "feet")
  21726. },
  21727. {
  21728. name: "Macro+",
  21729. height: math.unit(640, "feet")
  21730. },
  21731. {
  21732. name: "Colossus",
  21733. height: math.unit(2.2, "miles")
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(8 + 8 / 12, "feet"),
  21742. weight: math.unit(130, "kg"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/seroko/front.svg",
  21746. extra: 1385 / 1280,
  21747. bottom: 0.025
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(8 + 8 / 12, "feet"),
  21752. weight: math.unit(130, "kg"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/seroko/back.svg",
  21756. extra: 1369 / 1238,
  21757. bottom: 0.018
  21758. }
  21759. },
  21760. frontDressed: {
  21761. height: math.unit(8 + 8 / 12, "feet"),
  21762. weight: math.unit(130, "kg"),
  21763. name: "Front (Dressed)",
  21764. image: {
  21765. source: "./media/characters/seroko/front-dressed.svg",
  21766. extra: 1366 / 1275,
  21767. bottom: 0.03
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(8 + 8 / 12, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(5.5, "feet"),
  21784. weight: math.unit(160, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/quatzi/front.svg",
  21788. extra: 2346 / 2242,
  21789. bottom: 0.015
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(5.5, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Big",
  21801. height: math.unit(7.7, "feet")
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(5 + 11 / 12, "feet"),
  21810. weight: math.unit(180, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/sen/front.svg",
  21814. extra: 1321 / 1254,
  21815. bottom: 0.015
  21816. }
  21817. },
  21818. side: {
  21819. height: math.unit(5 + 11 / 12, "feet"),
  21820. weight: math.unit(180, "lb"),
  21821. name: "Side",
  21822. image: {
  21823. source: "./media/characters/sen/side.svg",
  21824. extra: 1321 / 1254,
  21825. bottom: 0.007
  21826. }
  21827. },
  21828. back: {
  21829. height: math.unit(5 + 11 / 12, "feet"),
  21830. weight: math.unit(180, "lb"),
  21831. name: "Back",
  21832. image: {
  21833. source: "./media/characters/sen/back.svg",
  21834. extra: 1321 / 1254
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(5 + 11 / 12, "feet"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(166.6, "cm"),
  21851. weight: math.unit(66.6, "kg"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/fruity/front.svg",
  21855. extra: 1510 / 1386,
  21856. bottom: 0.04
  21857. }
  21858. },
  21859. back: {
  21860. height: math.unit(166.6, "cm"),
  21861. weight: math.unit(66.6, "lb"),
  21862. name: "Back",
  21863. image: {
  21864. source: "./media/characters/fruity/back.svg",
  21865. extra: 1563 / 1435,
  21866. bottom: 0.005
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(166.6, "cm"),
  21874. default: true
  21875. },
  21876. {
  21877. name: "Demonic",
  21878. height: math.unit(166.6, "feet")
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21884. {
  21885. side: {
  21886. height: math.unit(10, "feet"),
  21887. weight: math.unit(500, "lb"),
  21888. name: "Side",
  21889. image: {
  21890. source: "./media/characters/zost/side.svg",
  21891. extra: 2870/2533,
  21892. bottom: 252/3122
  21893. }
  21894. },
  21895. mawFront: {
  21896. height: math.unit(1.08, "meters"),
  21897. name: "Maw (Front)",
  21898. image: {
  21899. source: "./media/characters/zost/maw-front.svg"
  21900. }
  21901. },
  21902. mawSide: {
  21903. height: math.unit(2.66, "feet"),
  21904. name: "Maw (Side)",
  21905. image: {
  21906. source: "./media/characters/zost/maw-side.svg"
  21907. }
  21908. },
  21909. wingspan: {
  21910. height: math.unit(7.4, "feet"),
  21911. name: "Wingspan",
  21912. image: {
  21913. source: "./media/characters/zost/wingspan.svg"
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(10, "feet"),
  21921. default: true
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(5 + 4 / 12, "feet"),
  21930. weight: math.unit(120, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/luci/front.svg",
  21934. extra: 1985 / 1884,
  21935. bottom: 0.04
  21936. }
  21937. },
  21938. back: {
  21939. height: math.unit(5 + 4 / 12, "feet"),
  21940. weight: math.unit(120, "lb"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/luci/back.svg",
  21944. extra: 1892 / 1791,
  21945. bottom: 0.002
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(5 + 4 / 12, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(1500, "feet"),
  21962. weight: math.unit(3.8e6, "tons"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/2th/front.svg",
  21966. extra: 3489 / 3350,
  21967. bottom: 0.1
  21968. }
  21969. },
  21970. foot: {
  21971. height: math.unit(461, "feet"),
  21972. name: "Foot",
  21973. image: {
  21974. source: "./media/characters/2th/foot.svg"
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "\"Micro\"",
  21981. height: math.unit(15 + 7 / 12, "feet")
  21982. },
  21983. {
  21984. name: "Normal",
  21985. height: math.unit(1500, "feet"),
  21986. default: true
  21987. },
  21988. {
  21989. name: "Macro",
  21990. height: math.unit(5000, "feet")
  21991. },
  21992. {
  21993. name: "Megamacro",
  21994. height: math.unit(15, "miles")
  21995. },
  21996. {
  21997. name: "Gigamacro",
  21998. height: math.unit(4000, "miles")
  21999. },
  22000. {
  22001. name: "Galactic",
  22002. height: math.unit(50, "AU")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(5 + 6 / 12, "feet"),
  22011. weight: math.unit(220, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/amethyst/front.svg",
  22015. extra: 2078 / 2040,
  22016. bottom: 0.045
  22017. }
  22018. },
  22019. back: {
  22020. height: math.unit(5 + 6 / 12, "feet"),
  22021. weight: math.unit(220, "lb"),
  22022. name: "Back",
  22023. image: {
  22024. source: "./media/characters/amethyst/back.svg",
  22025. extra: 2021 / 1989,
  22026. bottom: 0.02
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(5 + 6 / 12, "feet"),
  22034. default: true
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(4 + 11 / 12, "feet"),
  22043. weight: math.unit(120, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/yumi-akiyama/front.svg",
  22047. extra: 1327 / 1235,
  22048. bottom: 0.02
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(4 + 11 / 12, "feet"),
  22053. weight: math.unit(120, "lb"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/yumi-akiyama/back.svg",
  22057. extra: 1287 / 1245,
  22058. bottom: 0.002
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Galactic",
  22065. height: math.unit(50, "galaxies"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Universal",
  22070. height: math.unit(100, "universes")
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22076. {
  22077. front: {
  22078. height: math.unit(8, "feet"),
  22079. weight: math.unit(500, "lb"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/rifter-yrmori/front.svg",
  22083. extra: 1180 / 1125,
  22084. bottom: 0.02
  22085. }
  22086. },
  22087. back: {
  22088. height: math.unit(8, "feet"),
  22089. weight: math.unit(500, "lb"),
  22090. name: "Back",
  22091. image: {
  22092. source: "./media/characters/rifter-yrmori/back.svg",
  22093. extra: 1190 / 1145,
  22094. bottom: 0.001
  22095. }
  22096. },
  22097. wings: {
  22098. height: math.unit(7.75, "feet"),
  22099. weight: math.unit(500, "lb"),
  22100. name: "Wings",
  22101. image: {
  22102. source: "./media/characters/rifter-yrmori/wings.svg",
  22103. extra: 1357 / 1285
  22104. }
  22105. },
  22106. maw: {
  22107. height: math.unit(0.8, "feet"),
  22108. name: "Maw",
  22109. image: {
  22110. source: "./media/characters/rifter-yrmori/maw.svg"
  22111. }
  22112. },
  22113. mawfront: {
  22114. height: math.unit(1.45, "feet"),
  22115. name: "Maw (Front)",
  22116. image: {
  22117. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8, "feet"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(42, "meters")
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22135. {
  22136. were: {
  22137. height: math.unit(25 + 6 / 12, "feet"),
  22138. weight: math.unit(10000, "lb"),
  22139. name: "Were",
  22140. image: {
  22141. source: "./media/characters/tahajin/were.svg",
  22142. extra: 801 / 770,
  22143. bottom: 0.042
  22144. }
  22145. },
  22146. aquatic: {
  22147. height: math.unit(6 + 4 / 12, "feet"),
  22148. weight: math.unit(160, "lb"),
  22149. name: "Aquatic",
  22150. image: {
  22151. source: "./media/characters/tahajin/aquatic.svg",
  22152. extra: 572 / 542,
  22153. bottom: 0.04
  22154. }
  22155. },
  22156. chow: {
  22157. height: math.unit(8 + 11 / 12, "feet"),
  22158. weight: math.unit(450, "lb"),
  22159. name: "Chow",
  22160. image: {
  22161. source: "./media/characters/tahajin/chow.svg",
  22162. extra: 660 / 640,
  22163. bottom: 0.015
  22164. }
  22165. },
  22166. demiNaga: {
  22167. height: math.unit(6 + 8 / 12, "feet"),
  22168. weight: math.unit(300, "lb"),
  22169. name: "Demi Naga",
  22170. image: {
  22171. source: "./media/characters/tahajin/demi-naga.svg",
  22172. extra: 643 / 615,
  22173. bottom: 0.1
  22174. }
  22175. },
  22176. data: {
  22177. height: math.unit(5, "inches"),
  22178. weight: math.unit(0.1, "lb"),
  22179. name: "Data",
  22180. image: {
  22181. source: "./media/characters/tahajin/data.svg"
  22182. }
  22183. },
  22184. fluu: {
  22185. height: math.unit(5 + 7 / 12, "feet"),
  22186. weight: math.unit(140, "lb"),
  22187. name: "Fluu",
  22188. image: {
  22189. source: "./media/characters/tahajin/fluu.svg",
  22190. extra: 628 / 592,
  22191. bottom: 0.02
  22192. }
  22193. },
  22194. starWarrior: {
  22195. height: math.unit(4 + 5 / 12, "feet"),
  22196. weight: math.unit(50, "lb"),
  22197. name: "Star Warrior",
  22198. image: {
  22199. source: "./media/characters/tahajin/star-warrior.svg"
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(25 + 6 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(8, "feet"),
  22216. weight: math.unit(350, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/gabira/front.svg",
  22220. extra: 608 / 580,
  22221. bottom: 0.03
  22222. }
  22223. },
  22224. back: {
  22225. height: math.unit(8, "feet"),
  22226. weight: math.unit(350, "lb"),
  22227. name: "Back",
  22228. image: {
  22229. source: "./media/characters/gabira/back.svg",
  22230. extra: 608 / 580,
  22231. bottom: 0.03
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(8, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(5 + 3 / 12, "feet"),
  22248. weight: math.unit(137, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/sasha-katraine/front.svg",
  22252. extra: 1745/1694,
  22253. bottom: 37/1782
  22254. }
  22255. },
  22256. back: {
  22257. height: math.unit(5 + 3 / 12, "feet"),
  22258. weight: math.unit(137, "lb"),
  22259. name: "Back",
  22260. image: {
  22261. source: "./media/characters/sasha-katraine/back.svg",
  22262. extra: 1776/1699,
  22263. bottom: 26/1802
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "Micro",
  22270. height: math.unit(5, "inches")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5 + 3 / 12, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22281. {
  22282. side: {
  22283. height: math.unit(4, "inches"),
  22284. weight: math.unit(200, "grams"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/der/side.svg",
  22288. extra: 719 / 400,
  22289. bottom: 30.6 / 749.9187
  22290. }
  22291. },
  22292. },
  22293. [
  22294. {
  22295. name: "Micro",
  22296. height: math.unit(4, "inches"),
  22297. default: true
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22303. {
  22304. side: {
  22305. height: math.unit(30, "meters"),
  22306. weight: math.unit(700, "tonnes"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/fixerdragon/side.svg",
  22310. extra: (1293.0514 - 116.03) / 1106.86,
  22311. bottom: 116.03 / 1293.0514
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Planck",
  22318. height: math.unit(1.6e-35, "meters")
  22319. },
  22320. {
  22321. name: "Micro",
  22322. height: math.unit(0.4, "meters")
  22323. },
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(30, "meters"),
  22327. default: true
  22328. },
  22329. {
  22330. name: "Megamacro",
  22331. height: math.unit(1.2, "megameters")
  22332. },
  22333. {
  22334. name: "Teramacro",
  22335. height: math.unit(130, "terameters")
  22336. },
  22337. {
  22338. name: "Yottamacro",
  22339. height: math.unit(6200, "yottameters")
  22340. },
  22341. ]
  22342. ));
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(8, "feet"),
  22348. weight: math.unit(250, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/kite/front.svg",
  22352. extra: 2796 / 2659,
  22353. bottom: 0.002
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(8, "feet"),
  22361. default: true
  22362. },
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(360, "feet")
  22366. },
  22367. {
  22368. name: "Megamacro",
  22369. height: math.unit(1500, "feet")
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5 + 11/12, "feet"),
  22378. weight: math.unit(170, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/poojawa-vynar/front.svg",
  22382. extra: 1735/1585,
  22383. bottom: 96/1831
  22384. }
  22385. },
  22386. back: {
  22387. height: math.unit(5 + 11/12, "feet"),
  22388. weight: math.unit(170, "lb"),
  22389. name: "Back",
  22390. image: {
  22391. source: "./media/characters/poojawa-vynar/back.svg",
  22392. extra: 1749/1607,
  22393. bottom: 28/1777
  22394. }
  22395. },
  22396. male: {
  22397. height: math.unit(5 + 11/12, "feet"),
  22398. weight: math.unit(170, "lb"),
  22399. name: "Male",
  22400. image: {
  22401. source: "./media/characters/poojawa-vynar/male.svg",
  22402. extra: 1855/1713,
  22403. bottom: 63/1918
  22404. }
  22405. },
  22406. taur: {
  22407. height: math.unit(5 + 11/12, "feet"),
  22408. weight: math.unit(170, "lb"),
  22409. name: "Taur",
  22410. image: {
  22411. source: "./media/characters/poojawa-vynar/taur.svg",
  22412. extra: 1151/1059,
  22413. bottom: 356/1507
  22414. }
  22415. },
  22416. frontDressed: {
  22417. height: math.unit(5 + 11/12, "feet"),
  22418. weight: math.unit(170, "lb"),
  22419. name: "Front (Dressed)",
  22420. image: {
  22421. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22422. extra: 1735/1585,
  22423. bottom: 96/1831
  22424. }
  22425. },
  22426. backDressed: {
  22427. height: math.unit(5 + 11/12, "feet"),
  22428. weight: math.unit(170, "lb"),
  22429. name: "Back (Dressed)",
  22430. image: {
  22431. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22432. extra: 1749/1607,
  22433. bottom: 28/1777
  22434. }
  22435. },
  22436. maleDressed: {
  22437. height: math.unit(5 + 11/12, "feet"),
  22438. weight: math.unit(170, "lb"),
  22439. name: "Male (Dressed)",
  22440. image: {
  22441. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22442. extra: 1855/1713,
  22443. bottom: 63/1918
  22444. }
  22445. },
  22446. taurDressed: {
  22447. height: math.unit(5 + 11/12, "feet"),
  22448. weight: math.unit(170, "lb"),
  22449. name: "Taur (Dressed)",
  22450. image: {
  22451. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22452. extra: 1151/1059,
  22453. bottom: 356/1507
  22454. }
  22455. },
  22456. maw: {
  22457. height: math.unit(1.46, "feet"),
  22458. name: "Maw",
  22459. image: {
  22460. source: "./media/characters/poojawa-vynar/maw.svg"
  22461. }
  22462. },
  22463. head: {
  22464. height: math.unit(2.34, "feet"),
  22465. name: "Head",
  22466. image: {
  22467. source: "./media/characters/poojawa-vynar/head.svg"
  22468. }
  22469. },
  22470. paw: {
  22471. height: math.unit(1.61, "feet"),
  22472. name: "Paw",
  22473. image: {
  22474. source: "./media/characters/poojawa-vynar/paw.svg"
  22475. }
  22476. },
  22477. pawToering: {
  22478. height: math.unit(1.72, "feet"),
  22479. name: "Paw (Toering)",
  22480. image: {
  22481. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22482. }
  22483. },
  22484. toering: {
  22485. height: math.unit(2.9, "inches"),
  22486. name: "Toering",
  22487. image: {
  22488. source: "./media/characters/poojawa-vynar/toering.svg"
  22489. }
  22490. },
  22491. shaft: {
  22492. height: math.unit(0.625, "feet"),
  22493. name: "Shaft",
  22494. image: {
  22495. source: "./media/characters/poojawa-vynar/shaft.svg"
  22496. }
  22497. },
  22498. spade: {
  22499. height: math.unit(0.42, "feet"),
  22500. name: "Spade",
  22501. image: {
  22502. source: "./media/characters/poojawa-vynar/spade.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Shortstack",
  22509. height: math.unit(4, "feet")
  22510. },
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(5 + 11 / 12, "feet"),
  22514. default: true
  22515. },
  22516. {
  22517. name: "Tauric",
  22518. height: math.unit(4, "meters")
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(293, "meters"),
  22527. weight: math.unit(70400, "tons"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/violette/front.svg",
  22531. extra: 1227 / 1180,
  22532. bottom: 0.005
  22533. }
  22534. },
  22535. back: {
  22536. height: math.unit(293, "meters"),
  22537. weight: math.unit(70400, "tons"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/violette/back.svg",
  22541. extra: 1227 / 1180,
  22542. bottom: 0.005
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Macro",
  22549. height: math.unit(293, "meters"),
  22550. default: true
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(1050, "feet"),
  22559. weight: math.unit(200000, "tons"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/alessandra/front.svg",
  22563. extra: 960 / 912,
  22564. bottom: 0.06
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Macro",
  22571. height: math.unit(1050, "feet")
  22572. },
  22573. {
  22574. name: "Macro+",
  22575. height: math.unit(900, "meters"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(5, "feet"),
  22585. weight: math.unit(187, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/person/front.svg",
  22589. extra: 3087 / 2945,
  22590. bottom: 91 / 3181
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Micro",
  22597. height: math.unit(3, "inches")
  22598. },
  22599. {
  22600. name: "Normal",
  22601. height: math.unit(5, "feet"),
  22602. default: true
  22603. },
  22604. {
  22605. name: "Macro",
  22606. height: math.unit(90, "feet")
  22607. },
  22608. {
  22609. name: "Max Size",
  22610. height: math.unit(280, "feet")
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(4.5, "meters"),
  22619. weight: math.unit(3200, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/ty/front.svg",
  22623. extra: 1038 / 960,
  22624. bottom: 31.156 / 1068
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(4.5, "meters"),
  22629. weight: math.unit(3200, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/ty/back.svg",
  22633. extra: 1044 / 966,
  22634. bottom: 7.48 / 1049
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(4.5, "meters"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(5 + 4 / 12, "feet"),
  22651. weight: math.unit(115, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/rocky/front.svg",
  22655. extra: 1012 / 975,
  22656. bottom: 54 / 1066
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(5 + 4 / 12, "feet"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22670. {
  22671. upright: {
  22672. height: math.unit(6, "meters"),
  22673. weight: math.unit(4000, "kg"),
  22674. name: "Upright",
  22675. image: {
  22676. source: "./media/characters/ruin/upright.svg",
  22677. extra: 668 / 661,
  22678. bottom: 42 / 799.8396
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(6, "meters"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(5, "feet"),
  22695. weight: math.unit(106, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/robin/front.svg",
  22699. extra: 862 / 799,
  22700. bottom: 42.4 / 914.8856
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(5, "feet"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22714. {
  22715. side: {
  22716. height: math.unit(3, "feet"),
  22717. weight: math.unit(225, "lb"),
  22718. name: "Side",
  22719. image: {
  22720. source: "./media/characters/saian/side.svg",
  22721. extra: 566 / 356,
  22722. bottom: 79.7 / 643
  22723. }
  22724. },
  22725. maw: {
  22726. height: math.unit(2.85, "feet"),
  22727. name: "Maw",
  22728. image: {
  22729. source: "./media/characters/saian/maw.svg"
  22730. }
  22731. },
  22732. },
  22733. [
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(3, "feet"),
  22737. default: true
  22738. },
  22739. ]
  22740. ))
  22741. characterMakers.push(() => makeCharacter(
  22742. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22743. {
  22744. side: {
  22745. height: math.unit(8, "feet"),
  22746. weight: math.unit(300, "lb"),
  22747. name: "Side",
  22748. image: {
  22749. source: "./media/characters/equus-silvermane/side.svg",
  22750. extra: 2176 / 2050,
  22751. bottom: 65.7 / 2245
  22752. }
  22753. },
  22754. front: {
  22755. height: math.unit(8, "feet"),
  22756. weight: math.unit(300, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/equus-silvermane/front.svg",
  22760. extra: 4633 / 4400,
  22761. bottom: 71.3 / 4706.915
  22762. }
  22763. },
  22764. sideStepping: {
  22765. height: math.unit(8, "feet"),
  22766. weight: math.unit(300, "lb"),
  22767. name: "Side (Stepping)",
  22768. image: {
  22769. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22770. extra: 1968 / 1860,
  22771. bottom: 16.4 / 1989
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(8, "feet")
  22779. },
  22780. {
  22781. name: "Minimacro",
  22782. height: math.unit(75, "feet"),
  22783. default: true
  22784. },
  22785. {
  22786. name: "Macro",
  22787. height: math.unit(150, "feet")
  22788. },
  22789. {
  22790. name: "Macro+",
  22791. height: math.unit(1000, "feet")
  22792. },
  22793. {
  22794. name: "Megamacro",
  22795. height: math.unit(1, "mile")
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22801. {
  22802. side: {
  22803. height: math.unit(20, "feet"),
  22804. weight: math.unit(30000, "kg"),
  22805. name: "Side",
  22806. image: {
  22807. source: "./media/characters/windar/side.svg",
  22808. extra: 1491 / 1248,
  22809. bottom: 82.56 / 1568
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Normal",
  22816. height: math.unit(20, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22823. {
  22824. side: {
  22825. height: math.unit(15.66, "feet"),
  22826. weight: math.unit(150, "lb"),
  22827. name: "Side",
  22828. image: {
  22829. source: "./media/characters/melody/side.svg",
  22830. extra: 1097 / 944,
  22831. bottom: 11.8 / 1109
  22832. }
  22833. },
  22834. sideOutfit: {
  22835. height: math.unit(15.66, "feet"),
  22836. weight: math.unit(150, "lb"),
  22837. name: "Side (Outfit)",
  22838. image: {
  22839. source: "./media/characters/melody/side-outfit.svg",
  22840. extra: 1097 / 944,
  22841. bottom: 11.8 / 1109
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(15.66, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(8, "feet"),
  22858. weight: math.unit(325, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/windera/front.svg",
  22862. extra: 3180 / 2845,
  22863. bottom: 178 / 3365
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(8, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22877. {
  22878. front: {
  22879. height: math.unit(28.75, "feet"),
  22880. weight: math.unit(2000, "kg"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/sonear/front.svg",
  22884. extra: 1041.1 / 964.9,
  22885. bottom: 53.7 / 1096.6
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(28.75, "feet"),
  22893. default: true
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22899. {
  22900. side: {
  22901. height: math.unit(25.5, "feet"),
  22902. weight: math.unit(23000, "kg"),
  22903. name: "Side",
  22904. image: {
  22905. source: "./media/characters/kanara/side.svg"
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(25.5, "feet"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22919. {
  22920. side: {
  22921. height: math.unit(10, "feet"),
  22922. weight: math.unit(1000, "kg"),
  22923. name: "Side",
  22924. image: {
  22925. source: "./media/characters/ereus/side.svg",
  22926. extra: 1157 / 959,
  22927. bottom: 153 / 1312.5
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(10, "feet"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22941. {
  22942. side: {
  22943. height: math.unit(4.5, "feet"),
  22944. weight: math.unit(500, "lb"),
  22945. name: "Side",
  22946. image: {
  22947. source: "./media/characters/e-ter/side.svg",
  22948. extra: 1550 / 1248,
  22949. bottom: 146 / 1694
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Normal",
  22956. height: math.unit(4.5, "feet"),
  22957. default: true
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22963. {
  22964. side: {
  22965. height: math.unit(9.7, "feet"),
  22966. weight: math.unit(4000, "kg"),
  22967. name: "Side",
  22968. image: {
  22969. source: "./media/characters/yamie/side.svg"
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(9.7, "feet"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22983. {
  22984. front: {
  22985. height: math.unit(50, "feet"),
  22986. weight: math.unit(50000, "kg"),
  22987. name: "Front",
  22988. image: {
  22989. source: "./media/characters/anders/front.svg",
  22990. extra: 570 / 539,
  22991. bottom: 14.7 / 586.7
  22992. }
  22993. },
  22994. },
  22995. [
  22996. {
  22997. name: "Large",
  22998. height: math.unit(50, "feet")
  22999. },
  23000. {
  23001. name: "Macro",
  23002. height: math.unit(2000, "feet"),
  23003. default: true
  23004. },
  23005. {
  23006. name: "Megamacro",
  23007. height: math.unit(12, "miles")
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(7 + 2 / 12, "feet"),
  23016. weight: math.unit(300, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/reban/front.svg",
  23020. extra: 1287/1212,
  23021. bottom: 148/1435
  23022. }
  23023. },
  23024. head: {
  23025. height: math.unit(1.95, "feet"),
  23026. name: "Head",
  23027. image: {
  23028. source: "./media/characters/reban/head.svg"
  23029. }
  23030. },
  23031. maw: {
  23032. height: math.unit(0.95, "feet"),
  23033. name: "Maw",
  23034. image: {
  23035. source: "./media/characters/reban/maw.svg"
  23036. }
  23037. },
  23038. foot: {
  23039. height: math.unit(1.65, "feet"),
  23040. name: "Foot",
  23041. image: {
  23042. source: "./media/characters/reban/foot.svg"
  23043. }
  23044. },
  23045. dick: {
  23046. height: math.unit(7 / 5, "feet"),
  23047. name: "Dick",
  23048. image: {
  23049. source: "./media/characters/reban/dick.svg"
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Natural Height",
  23056. height: math.unit(7 + 2 / 12, "feet")
  23057. },
  23058. {
  23059. name: "Macro",
  23060. height: math.unit(500, "feet"),
  23061. default: true
  23062. },
  23063. {
  23064. name: "Canon Height",
  23065. height: math.unit(50, "AU")
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23071. {
  23072. front: {
  23073. height: math.unit(6, "feet"),
  23074. weight: math.unit(150, "lb"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/terrance-keayes/front.svg",
  23078. extra: 1.005,
  23079. bottom: 151 / 1615
  23080. }
  23081. },
  23082. side: {
  23083. height: math.unit(6, "feet"),
  23084. weight: math.unit(150, "lb"),
  23085. name: "Side",
  23086. image: {
  23087. source: "./media/characters/terrance-keayes/side.svg",
  23088. extra: 1.005,
  23089. bottom: 129.4 / 1544
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(6, "feet"),
  23094. weight: math.unit(150, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/terrance-keayes/back.svg",
  23098. extra: 1.005,
  23099. bottom: 58.4 / 1557.3
  23100. }
  23101. },
  23102. dick: {
  23103. height: math.unit(6 * 0.208, "feet"),
  23104. name: "Dick",
  23105. image: {
  23106. source: "./media/characters/terrance-keayes/dick.svg"
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Canon Height",
  23113. height: math.unit(35, "miles"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23120. {
  23121. front: {
  23122. height: math.unit(6, "feet"),
  23123. weight: math.unit(150, "lb"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/ofelia/front.svg",
  23127. extra: 1130/1117,
  23128. bottom: 91/1221
  23129. }
  23130. },
  23131. back: {
  23132. height: math.unit(6, "feet"),
  23133. weight: math.unit(150, "lb"),
  23134. name: "Back",
  23135. image: {
  23136. source: "./media/characters/ofelia/back.svg",
  23137. extra: 1172/1159,
  23138. bottom: 28/1200
  23139. }
  23140. },
  23141. maw: {
  23142. height: math.unit(1, "feet"),
  23143. name: "Maw",
  23144. image: {
  23145. source: "./media/characters/ofelia/maw.svg"
  23146. }
  23147. },
  23148. foot: {
  23149. height: math.unit(1.949, "feet"),
  23150. name: "Foot",
  23151. image: {
  23152. source: "./media/characters/ofelia/foot.svg"
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Canon Height",
  23159. height: math.unit(2000, "miles"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(6, "feet"),
  23169. weight: math.unit(150, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/samuel/front.svg",
  23173. extra: 265 / 258,
  23174. bottom: 2 / 266.1566
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Macro",
  23181. height: math.unit(100, "feet"),
  23182. default: true
  23183. },
  23184. {
  23185. name: "Full Size",
  23186. height: math.unit(1000, "miles")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(6, "feet"),
  23195. weight: math.unit(300, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/beishir-kiel/front.svg",
  23199. extra: 569 / 547,
  23200. bottom: 41.9 / 609
  23201. }
  23202. },
  23203. maw: {
  23204. height: math.unit(6 * 0.202, "feet"),
  23205. name: "Maw",
  23206. image: {
  23207. source: "./media/characters/beishir-kiel/maw.svg"
  23208. }
  23209. },
  23210. },
  23211. [
  23212. {
  23213. name: "Macro",
  23214. height: math.unit(300, "feet"),
  23215. default: true
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(5 + 7/12, "feet"),
  23224. weight: math.unit(120, "lb"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/logan-grey/front.svg",
  23228. extra: 1836/1738,
  23229. bottom: 108/1944
  23230. }
  23231. },
  23232. back: {
  23233. height: math.unit(5 + 7/12, "feet"),
  23234. weight: math.unit(120, "lb"),
  23235. name: "Back",
  23236. image: {
  23237. source: "./media/characters/logan-grey/back.svg",
  23238. extra: 1880/1794,
  23239. bottom: 24/1904
  23240. }
  23241. },
  23242. frontSfw: {
  23243. height: math.unit(5 + 7/12, "feet"),
  23244. weight: math.unit(120, "lb"),
  23245. name: "Front (SFW)",
  23246. image: {
  23247. source: "./media/characters/logan-grey/front-sfw.svg",
  23248. extra: 1836/1738,
  23249. bottom: 108/1944
  23250. }
  23251. },
  23252. backSfw: {
  23253. height: math.unit(5 + 7/12, "feet"),
  23254. weight: math.unit(120, "lb"),
  23255. name: "Back (SFW)",
  23256. image: {
  23257. source: "./media/characters/logan-grey/back-sfw.svg",
  23258. extra: 1880/1794,
  23259. bottom: 24/1904
  23260. }
  23261. },
  23262. hands: {
  23263. height: math.unit(0.84, "feet"),
  23264. name: "Hands",
  23265. image: {
  23266. source: "./media/characters/logan-grey/hands.svg"
  23267. }
  23268. },
  23269. paws: {
  23270. height: math.unit(0.72, "feet"),
  23271. name: "Paws",
  23272. image: {
  23273. source: "./media/characters/logan-grey/paws.svg"
  23274. }
  23275. },
  23276. cock: {
  23277. height: math.unit(1.45, "feet"),
  23278. name: "Cock",
  23279. image: {
  23280. source: "./media/characters/logan-grey/cock.svg"
  23281. }
  23282. },
  23283. cockAlt: {
  23284. height: math.unit(1.437, "feet"),
  23285. name: "Cock (alt)",
  23286. image: {
  23287. source: "./media/characters/logan-grey/cock-alt.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(5 + 8 / 12, "feet")
  23295. },
  23296. {
  23297. name: "The 500 Foot Femboy",
  23298. height: math.unit(500, "feet"),
  23299. default: true
  23300. },
  23301. {
  23302. name: "Megmacro",
  23303. height: math.unit(20, "miles")
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(8 + 2 / 12, "feet"),
  23312. weight: math.unit(275, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/draganta/front.svg",
  23316. extra: 1177 / 1135,
  23317. bottom: 33.46 / 1212.1
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(8 + 6 / 12, "feet"),
  23325. default: true
  23326. },
  23327. {
  23328. name: "Macro",
  23329. height: math.unit(150, "feet")
  23330. },
  23331. {
  23332. name: "Megamacro",
  23333. height: math.unit(1000, "miles")
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(1.72, "m"),
  23342. weight: math.unit(80, "lb"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/voski/front.svg",
  23346. extra: 2076.22 / 2022.4,
  23347. bottom: 102.7 / 2177.3866
  23348. }
  23349. },
  23350. frontFlaccid: {
  23351. height: math.unit(1.72, "m"),
  23352. weight: math.unit(80, "lb"),
  23353. name: "Front (Flaccid)",
  23354. image: {
  23355. source: "./media/characters/voski/front-flaccid.svg",
  23356. extra: 2076.22 / 2022.4,
  23357. bottom: 102.7 / 2177.3866
  23358. }
  23359. },
  23360. frontErect: {
  23361. height: math.unit(1.72, "m"),
  23362. weight: math.unit(80, "lb"),
  23363. name: "Front (Erect)",
  23364. image: {
  23365. source: "./media/characters/voski/front-erect.svg",
  23366. extra: 2076.22 / 2022.4,
  23367. bottom: 102.7 / 2177.3866
  23368. }
  23369. },
  23370. back: {
  23371. height: math.unit(1.72, "m"),
  23372. weight: math.unit(80, "lb"),
  23373. name: "Back",
  23374. image: {
  23375. source: "./media/characters/voski/back.svg",
  23376. extra: 2104 / 2051,
  23377. bottom: 10.45 / 2113.63
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Normal",
  23384. height: math.unit(1.72, "m")
  23385. },
  23386. {
  23387. name: "Macro",
  23388. height: math.unit(55, "m"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Macro+",
  23393. height: math.unit(300, "m")
  23394. },
  23395. {
  23396. name: "Macro++",
  23397. height: math.unit(700, "m")
  23398. },
  23399. {
  23400. name: "Macro+++",
  23401. height: math.unit(4500, "m")
  23402. },
  23403. {
  23404. name: "Macro++++",
  23405. height: math.unit(45, "km")
  23406. },
  23407. {
  23408. name: "Macro+++++",
  23409. height: math.unit(1220, "km")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(2.3, "m"),
  23418. weight: math.unit(304, "kg"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/icowom-lee/front.svg",
  23422. extra: 985 / 955,
  23423. bottom: 25.4 / 1012
  23424. }
  23425. },
  23426. fronttentacles: {
  23427. height: math.unit(2.3, "m"),
  23428. weight: math.unit(304, "kg"),
  23429. name: "Front-tentacles",
  23430. image: {
  23431. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23432. extra: 985 / 955,
  23433. bottom: 25.4 / 1012
  23434. }
  23435. },
  23436. back: {
  23437. height: math.unit(2.3, "m"),
  23438. weight: math.unit(304, "kg"),
  23439. name: "Back",
  23440. image: {
  23441. source: "./media/characters/icowom-lee/back.svg",
  23442. extra: 975 / 954,
  23443. bottom: 9.5 / 985
  23444. }
  23445. },
  23446. backtentacles: {
  23447. height: math.unit(2.3, "m"),
  23448. weight: math.unit(304, "kg"),
  23449. name: "Back-tentacles",
  23450. image: {
  23451. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23452. extra: 975 / 954,
  23453. bottom: 9.5 / 985
  23454. }
  23455. },
  23456. frontDressed: {
  23457. height: math.unit(2.3, "m"),
  23458. weight: math.unit(304, "kg"),
  23459. name: "Front (Dressed)",
  23460. image: {
  23461. source: "./media/characters/icowom-lee/front-dressed.svg",
  23462. extra: 3076 / 2933,
  23463. bottom: 51.4 / 3125.1889
  23464. }
  23465. },
  23466. rump: {
  23467. height: math.unit(0.776, "meters"),
  23468. name: "Rump",
  23469. image: {
  23470. source: "./media/characters/icowom-lee/rump.svg"
  23471. }
  23472. },
  23473. genitals: {
  23474. height: math.unit(0.78, "meters"),
  23475. name: "Genitals",
  23476. image: {
  23477. source: "./media/characters/icowom-lee/genitals.svg"
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(2.3, "meters"),
  23485. default: true
  23486. },
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(94, "meters"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(22, "meters"),
  23499. weight: math.unit(21000, "kg"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/shock-diamond/front.svg",
  23503. extra: 2204 / 2053,
  23504. bottom: 65 / 2239.47
  23505. }
  23506. },
  23507. frontNude: {
  23508. height: math.unit(22, "meters"),
  23509. weight: math.unit(21000, "kg"),
  23510. name: "Front (Nude)",
  23511. image: {
  23512. source: "./media/characters/shock-diamond/front-nude.svg",
  23513. extra: 2514 / 2285,
  23514. bottom: 13 / 2527.56
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(3, "meters")
  23522. },
  23523. {
  23524. name: "Macro",
  23525. height: math.unit(22, "meters"),
  23526. default: true
  23527. },
  23528. ]
  23529. ))
  23530. characterMakers.push(() => makeCharacter(
  23531. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23532. {
  23533. front: {
  23534. height: math.unit(5 + 4 / 12, "feet"),
  23535. weight: math.unit(120, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/rory/front.svg",
  23539. extra: 1318/1241,
  23540. bottom: 42/1360
  23541. }
  23542. },
  23543. back: {
  23544. height: math.unit(5 + 4 / 12, "feet"),
  23545. weight: math.unit(120, "lb"),
  23546. name: "Back",
  23547. image: {
  23548. source: "./media/characters/rory/back.svg",
  23549. extra: 1318/1241,
  23550. bottom: 42/1360
  23551. }
  23552. },
  23553. butt: {
  23554. height: math.unit(1.74, "feet"),
  23555. name: "Butt",
  23556. image: {
  23557. source: "./media/characters/rory/butt.svg"
  23558. }
  23559. },
  23560. dick: {
  23561. height: math.unit(1.02, "feet"),
  23562. name: "Dick",
  23563. image: {
  23564. source: "./media/characters/rory/dick.svg"
  23565. }
  23566. },
  23567. paws: {
  23568. height: math.unit(1, "feet"),
  23569. name: "Paws",
  23570. image: {
  23571. source: "./media/characters/rory/paws.svg"
  23572. }
  23573. },
  23574. frontAlt: {
  23575. height: math.unit(5 + 4 / 12, "feet"),
  23576. weight: math.unit(120, "lb"),
  23577. name: "Front (Alt)",
  23578. image: {
  23579. source: "./media/characters/rory/front-alt.svg",
  23580. extra: 589 / 556,
  23581. bottom: 45.7 / 635.76
  23582. }
  23583. },
  23584. frontAltNude: {
  23585. height: math.unit(5 + 4 / 12, "feet"),
  23586. weight: math.unit(120, "lb"),
  23587. name: "Front (Alt, Nude)",
  23588. image: {
  23589. source: "./media/characters/rory/front-alt-nude.svg",
  23590. extra: 589 / 556,
  23591. bottom: 45.7 / 635.76
  23592. }
  23593. },
  23594. side: {
  23595. height: math.unit(5 + 4 / 12, "feet"),
  23596. weight: math.unit(120, "lb"),
  23597. name: "Side",
  23598. image: {
  23599. source: "./media/characters/rory/side.svg",
  23600. extra: 597 / 564,
  23601. bottom: 55 / 653
  23602. }
  23603. },
  23604. backAlt: {
  23605. height: math.unit(5 + 4 / 12, "feet"),
  23606. weight: math.unit(120, "lb"),
  23607. name: "Back (Alt)",
  23608. image: {
  23609. source: "./media/characters/rory/back-alt.svg",
  23610. extra: 620 / 585,
  23611. bottom: 8.86 / 630.43
  23612. }
  23613. },
  23614. dickAlt: {
  23615. height: math.unit(0.86, "feet"),
  23616. name: "Dick (Alt)",
  23617. image: {
  23618. source: "./media/characters/rory/dick-alt.svg"
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(5 + 4 / 12, "feet"),
  23626. default: true
  23627. },
  23628. {
  23629. name: "Macro",
  23630. height: math.unit(100, "feet")
  23631. },
  23632. {
  23633. name: "Macro+",
  23634. height: math.unit(140, "feet")
  23635. },
  23636. {
  23637. name: "Macro++",
  23638. height: math.unit(300, "feet")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(5 + 9 / 12, "feet"),
  23647. weight: math.unit(190, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/sprisk/front.svg",
  23651. extra: 1225 / 1180,
  23652. bottom: 42.7 / 1266.4
  23653. }
  23654. },
  23655. frontNsfw: {
  23656. height: math.unit(5 + 9 / 12, "feet"),
  23657. weight: math.unit(190, "lb"),
  23658. name: "Front (NSFW)",
  23659. image: {
  23660. source: "./media/characters/sprisk/front-nsfw.svg",
  23661. extra: 1225 / 1180,
  23662. bottom: 42.7 / 1266.4
  23663. }
  23664. },
  23665. back: {
  23666. height: math.unit(5 + 9 / 12, "feet"),
  23667. weight: math.unit(190, "lb"),
  23668. name: "Back",
  23669. image: {
  23670. source: "./media/characters/sprisk/back.svg",
  23671. extra: 1247 / 1200,
  23672. bottom: 5.6 / 1253.04
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Tiny",
  23679. height: math.unit(2, "inches")
  23680. },
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(5 + 9 / 12, "feet"),
  23684. default: true
  23685. },
  23686. {
  23687. name: "Mini Macro",
  23688. height: math.unit(18, "feet")
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(100, "feet")
  23693. },
  23694. {
  23695. name: "MACRO",
  23696. height: math.unit(50, "miles")
  23697. },
  23698. {
  23699. name: "M A C R O",
  23700. height: math.unit(300, "miles")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23706. {
  23707. side: {
  23708. height: math.unit(15.6, "meters"),
  23709. weight: math.unit(700000, "kg"),
  23710. name: "Side",
  23711. image: {
  23712. source: "./media/characters/bunsen/side.svg",
  23713. extra: 1644 / 358
  23714. }
  23715. },
  23716. foot: {
  23717. height: math.unit(1.611 * 1644 / 358, "meter"),
  23718. name: "Foot",
  23719. image: {
  23720. source: "./media/characters/bunsen/foot.svg"
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Small",
  23727. height: math.unit(10, "feet")
  23728. },
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(15.6, "meters"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(4 + 11 / 12, "feet"),
  23741. weight: math.unit(140, "lb"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/sesh/front.svg",
  23745. extra: 3420 / 3231,
  23746. bottom: 72 / 3949.5
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(4 + 11 / 12, "feet")
  23754. },
  23755. {
  23756. name: "Grown",
  23757. height: math.unit(15, "feet"),
  23758. default: true
  23759. },
  23760. {
  23761. name: "Macro",
  23762. height: math.unit(1500, "feet")
  23763. },
  23764. {
  23765. name: "Megamacro",
  23766. height: math.unit(30, "miles")
  23767. },
  23768. {
  23769. name: "Continental",
  23770. height: math.unit(3000, "miles")
  23771. },
  23772. {
  23773. name: "Gravity Mass",
  23774. height: math.unit(300000, "miles")
  23775. },
  23776. {
  23777. name: "Planet Buster",
  23778. height: math.unit(30000000, "miles")
  23779. },
  23780. {
  23781. name: "Big",
  23782. height: math.unit(3000000000, "miles")
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23788. {
  23789. front: {
  23790. height: math.unit(9, "feet"),
  23791. weight: math.unit(350, "lb"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/pepper/front.svg",
  23795. extra: 1448 / 1312,
  23796. bottom: 9.4 / 1457.88
  23797. }
  23798. },
  23799. back: {
  23800. height: math.unit(9, "feet"),
  23801. weight: math.unit(350, "lb"),
  23802. name: "Back",
  23803. image: {
  23804. source: "./media/characters/pepper/back.svg",
  23805. extra: 1423 / 1300,
  23806. bottom: 4.6 / 1429
  23807. }
  23808. },
  23809. maw: {
  23810. height: math.unit(0.932, "feet"),
  23811. name: "Maw",
  23812. image: {
  23813. source: "./media/characters/pepper/maw.svg"
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(9, "feet"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(6, "feet"),
  23830. weight: math.unit(150, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/maelstrom/front.svg",
  23834. extra: 2100 / 1883,
  23835. bottom: 94 / 2196.7
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Less Kaiju",
  23842. height: math.unit(200, "feet")
  23843. },
  23844. {
  23845. name: "Kaiju",
  23846. height: math.unit(400, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Kaiju-er",
  23851. height: math.unit(600, "feet")
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(6 + 5 / 12, "feet"),
  23860. weight: math.unit(180, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/lexir/front.svg",
  23864. extra: 180 / 172,
  23865. bottom: 12 / 192
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(6 + 5 / 12, "feet"),
  23870. weight: math.unit(180, "lb"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/lexir/back.svg",
  23874. extra: 1273/1201,
  23875. bottom: 39/1312
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Very Smal",
  23882. height: math.unit(1, "nm")
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(6 + 5 / 12, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(1, "mile")
  23892. },
  23893. {
  23894. name: "Megamacro",
  23895. height: math.unit(50, "miles")
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23901. {
  23902. front: {
  23903. height: math.unit(1.5, "meters"),
  23904. weight: math.unit(100, "lb"),
  23905. name: "Front",
  23906. image: {
  23907. source: "./media/characters/maksio/front.svg",
  23908. extra: 1549 / 1531,
  23909. bottom: 123.7 / 1674.5429
  23910. }
  23911. },
  23912. back: {
  23913. height: math.unit(1.5, "meters"),
  23914. weight: math.unit(100, "lb"),
  23915. name: "Back",
  23916. image: {
  23917. source: "./media/characters/maksio/back.svg",
  23918. extra: 1541 / 1509,
  23919. bottom: 97 / 1639
  23920. }
  23921. },
  23922. hand: {
  23923. height: math.unit(0.621, "feet"),
  23924. name: "Hand",
  23925. image: {
  23926. source: "./media/characters/maksio/hand.svg"
  23927. }
  23928. },
  23929. foot: {
  23930. height: math.unit(1.611, "feet"),
  23931. name: "Foot",
  23932. image: {
  23933. source: "./media/characters/maksio/foot.svg"
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Shrunken",
  23940. height: math.unit(10, "cm")
  23941. },
  23942. {
  23943. name: "Normal",
  23944. height: math.unit(150, "cm"),
  23945. default: true
  23946. },
  23947. ]
  23948. ))
  23949. characterMakers.push(() => makeCharacter(
  23950. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23951. {
  23952. front: {
  23953. height: math.unit(100, "feet"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/erza-bear/front.svg",
  23957. extra: 2449 / 2390,
  23958. bottom: 46 / 2494
  23959. }
  23960. },
  23961. back: {
  23962. height: math.unit(100, "feet"),
  23963. name: "Back",
  23964. image: {
  23965. source: "./media/characters/erza-bear/back.svg",
  23966. extra: 2489 / 2430,
  23967. bottom: 85.4 / 2480
  23968. }
  23969. },
  23970. tail: {
  23971. height: math.unit(42, "feet"),
  23972. name: "Tail",
  23973. image: {
  23974. source: "./media/characters/erza-bear/tail.svg"
  23975. }
  23976. },
  23977. tongue: {
  23978. height: math.unit(8, "feet"),
  23979. name: "Tongue",
  23980. image: {
  23981. source: "./media/characters/erza-bear/tongue.svg"
  23982. }
  23983. },
  23984. dick: {
  23985. height: math.unit(10.5, "feet"),
  23986. name: "Dick",
  23987. image: {
  23988. source: "./media/characters/erza-bear/dick.svg"
  23989. }
  23990. },
  23991. dickVertical: {
  23992. height: math.unit(16.9, "feet"),
  23993. name: "Dick (Vertical)",
  23994. image: {
  23995. source: "./media/characters/erza-bear/dick-vertical.svg"
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Macro",
  24002. height: math.unit(100, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(172, "cm"),
  24012. weight: math.unit(73, "kg"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/violet-flor/front.svg",
  24016. extra: 1530 / 1442,
  24017. bottom: 61.9 / 1588.8
  24018. }
  24019. },
  24020. back: {
  24021. height: math.unit(180, "cm"),
  24022. weight: math.unit(73, "kg"),
  24023. name: "Back",
  24024. image: {
  24025. source: "./media/characters/violet-flor/back.svg",
  24026. extra: 1692 / 1630,
  24027. bottom: 20 / 1712
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(172, "cm"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(6, "feet"),
  24044. weight: math.unit(220, "lb"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/lynn-rhea/front.svg",
  24048. extra: 310 / 273
  24049. }
  24050. },
  24051. back: {
  24052. height: math.unit(6, "feet"),
  24053. weight: math.unit(220, "lb"),
  24054. name: "Back",
  24055. image: {
  24056. source: "./media/characters/lynn-rhea/back.svg",
  24057. extra: 310 / 273
  24058. }
  24059. },
  24060. dicks: {
  24061. height: math.unit(0.9, "feet"),
  24062. name: "Dicks",
  24063. image: {
  24064. source: "./media/characters/lynn-rhea/dicks.svg"
  24065. }
  24066. },
  24067. slit: {
  24068. height: math.unit(0.4, "feet"),
  24069. name: "Slit",
  24070. image: {
  24071. source: "./media/characters/lynn-rhea/slit.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Micro",
  24078. height: math.unit(1, "inch")
  24079. },
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(60, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Megamacro",
  24087. height: math.unit(2, "miles")
  24088. },
  24089. {
  24090. name: "Gigamacro",
  24091. height: math.unit(3, "earths")
  24092. },
  24093. {
  24094. name: "Galactic",
  24095. height: math.unit(0.8, "galaxies")
  24096. },
  24097. ]
  24098. ))
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24101. {
  24102. front: {
  24103. height: math.unit(1600, "feet"),
  24104. weight: math.unit(85758785169, "kg"),
  24105. name: "Front",
  24106. image: {
  24107. source: "./media/characters/valathos/front.svg",
  24108. extra: 1451 / 1339
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Macro",
  24115. height: math.unit(1600, "feet"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(7 + 5 / 12, "feet"),
  24125. weight: math.unit(300, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/azula/front.svg",
  24129. extra: 3208 / 2880,
  24130. bottom: 80.2 / 3277
  24131. }
  24132. },
  24133. back: {
  24134. height: math.unit(7 + 5 / 12, "feet"),
  24135. weight: math.unit(300, "lb"),
  24136. name: "Back",
  24137. image: {
  24138. source: "./media/characters/azula/back.svg",
  24139. extra: 3169 / 2822,
  24140. bottom: 150.6 / 3321
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(7 + 5 / 12, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Big",
  24152. height: math.unit(20, "feet")
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(5 + 1 / 12, "feet"),
  24161. weight: math.unit(110, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/rupert/front.svg",
  24165. extra: 1549 / 1495,
  24166. bottom: 54.2 / 1604.4
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Normal",
  24173. height: math.unit(5 + 1 / 12, "feet"),
  24174. default: true
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24180. {
  24181. front: {
  24182. height: math.unit(8 + 4 / 12, "feet"),
  24183. weight: math.unit(350, "lb"),
  24184. name: "Front",
  24185. image: {
  24186. source: "./media/characters/sheera-castellar/front.svg",
  24187. extra: 1957 / 1894,
  24188. bottom: 26.97 / 1975.017
  24189. }
  24190. },
  24191. side: {
  24192. height: math.unit(8 + 4 / 12, "feet"),
  24193. weight: math.unit(350, "lb"),
  24194. name: "Side",
  24195. image: {
  24196. source: "./media/characters/sheera-castellar/side.svg",
  24197. extra: 1957 / 1894
  24198. }
  24199. },
  24200. back: {
  24201. height: math.unit(8 + 4 / 12, "feet"),
  24202. weight: math.unit(350, "lb"),
  24203. name: "Back",
  24204. image: {
  24205. source: "./media/characters/sheera-castellar/back.svg",
  24206. extra: 1957 / 1894
  24207. }
  24208. },
  24209. angled: {
  24210. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24211. weight: math.unit(350, "lb"),
  24212. name: "Angled",
  24213. image: {
  24214. source: "./media/characters/sheera-castellar/angled.svg",
  24215. extra: 1807 / 1707,
  24216. bottom: 68 / 1875
  24217. }
  24218. },
  24219. genitals: {
  24220. height: math.unit(2.2, "feet"),
  24221. name: "Genitals",
  24222. image: {
  24223. source: "./media/characters/sheera-castellar/genitals.svg"
  24224. }
  24225. },
  24226. taur: {
  24227. height: math.unit(10 + 6/12, "feet"),
  24228. name: "Taur",
  24229. image: {
  24230. source: "./media/characters/sheera-castellar/taur.svg",
  24231. extra: 2017/1909,
  24232. bottom: 185/2202
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(8 + 4 / 12, "feet")
  24240. },
  24241. {
  24242. name: "Macro",
  24243. height: math.unit(150, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro+",
  24248. height: math.unit(800, "feet")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(6, "feet"),
  24257. weight: math.unit(150, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/jaipur/front.svg",
  24261. extra: 3860 / 3731,
  24262. bottom: 287 / 4140
  24263. }
  24264. },
  24265. back: {
  24266. height: math.unit(6, "feet"),
  24267. weight: math.unit(150, "lb"),
  24268. name: "Back",
  24269. image: {
  24270. source: "./media/characters/jaipur/back.svg",
  24271. extra: 1637/1561,
  24272. bottom: 154/1791
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Normal",
  24279. height: math.unit(1.85, "meters"),
  24280. default: true
  24281. },
  24282. {
  24283. name: "Macro",
  24284. height: math.unit(150, "meters")
  24285. },
  24286. {
  24287. name: "Macro+",
  24288. height: math.unit(0.5, "miles")
  24289. },
  24290. {
  24291. name: "Macro++",
  24292. height: math.unit(2.5, "miles")
  24293. },
  24294. {
  24295. name: "Macro+++",
  24296. height: math.unit(12, "miles")
  24297. },
  24298. {
  24299. name: "Macro++++",
  24300. height: math.unit(120, "miles")
  24301. },
  24302. {
  24303. name: "Macro+++++",
  24304. height: math.unit(1200, "miles")
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(6, "feet"),
  24313. weight: math.unit(150, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/sheila-wolf/front.svg",
  24317. extra: 1931 / 1808,
  24318. bottom: 29.5 / 1960
  24319. }
  24320. },
  24321. dick: {
  24322. height: math.unit(1.464, "feet"),
  24323. name: "Dick",
  24324. image: {
  24325. source: "./media/characters/sheila-wolf/dick.svg"
  24326. }
  24327. },
  24328. muzzle: {
  24329. height: math.unit(0.513, "feet"),
  24330. name: "Muzzle",
  24331. image: {
  24332. source: "./media/characters/sheila-wolf/muzzle.svg"
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Macro",
  24339. height: math.unit(70, "feet"),
  24340. default: true
  24341. },
  24342. ]
  24343. ))
  24344. characterMakers.push(() => makeCharacter(
  24345. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24346. {
  24347. front: {
  24348. height: math.unit(32, "meters"),
  24349. weight: math.unit(300000, "kg"),
  24350. name: "Front",
  24351. image: {
  24352. source: "./media/characters/almor/front.svg",
  24353. extra: 1408 / 1322,
  24354. bottom: 94.6 / 1506.5
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Macro",
  24361. height: math.unit(32, "meters"),
  24362. default: true
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(7, "feet"),
  24371. weight: math.unit(200, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/silver/front.svg",
  24375. extra: 472.1 / 450.5,
  24376. bottom: 26.5 / 499.424
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(7, "feet"),
  24384. default: true
  24385. },
  24386. {
  24387. name: "Macro",
  24388. height: math.unit(800, "feet")
  24389. },
  24390. {
  24391. name: "Megamacro",
  24392. height: math.unit(250, "miles")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(6, "feet"),
  24401. weight: math.unit(150, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/pliskin/front.svg",
  24405. extra: 1469 / 1359,
  24406. bottom: 70 / 1540
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Micro",
  24413. height: math.unit(3, "inches")
  24414. },
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(5 + 11 / 12, "feet"),
  24418. default: true
  24419. },
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(120, "feet")
  24423. },
  24424. ]
  24425. ))
  24426. characterMakers.push(() => makeCharacter(
  24427. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24428. {
  24429. front: {
  24430. height: math.unit(6, "feet"),
  24431. weight: math.unit(150, "lb"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/sammy/front.svg",
  24435. extra: 1193 / 1089,
  24436. bottom: 30.5 / 1226
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(1700, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Examacro",
  24448. height: math.unit(2.5e9, "lightyears")
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24454. {
  24455. front: {
  24456. height: math.unit(21, "meters"),
  24457. weight: math.unit(12, "tonnes"),
  24458. name: "Front",
  24459. image: {
  24460. source: "./media/characters/kuru/front.svg",
  24461. extra: 4301 / 3785,
  24462. bottom: 371.3 / 4691
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(21, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(23, "meters"),
  24479. weight: math.unit(12.2, "tonnes"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/rakka/front.svg",
  24483. extra: 4670 / 4169,
  24484. bottom: 301 / 4968.7
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Macro",
  24491. height: math.unit(23, "meters"),
  24492. default: true
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(6, "feet"),
  24501. weight: math.unit(150, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/rhys-feline/front.svg",
  24505. extra: 2488 / 2308,
  24506. bottom: 35.67 / 2519.19
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Really Small",
  24513. height: math.unit(1, "nm")
  24514. },
  24515. {
  24516. name: "Micro",
  24517. height: math.unit(4, "inches")
  24518. },
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(4 + 10 / 12, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(100, "feet")
  24527. },
  24528. {
  24529. name: "Megamacto",
  24530. height: math.unit(50, "miles")
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24536. {
  24537. side: {
  24538. height: math.unit(30, "feet"),
  24539. weight: math.unit(35000, "kg"),
  24540. name: "Side",
  24541. image: {
  24542. source: "./media/characters/alydar/side.svg",
  24543. extra: 234 / 222,
  24544. bottom: 6.5 / 241
  24545. }
  24546. },
  24547. front: {
  24548. height: math.unit(30, "feet"),
  24549. weight: math.unit(35000, "kg"),
  24550. name: "Front",
  24551. image: {
  24552. source: "./media/characters/alydar/front.svg",
  24553. extra: 223.37 / 210.2,
  24554. bottom: 22.3 / 246.76
  24555. }
  24556. },
  24557. top: {
  24558. height: math.unit(64.54, "feet"),
  24559. weight: math.unit(35000, "kg"),
  24560. name: "Top",
  24561. image: {
  24562. source: "./media/characters/alydar/top.svg"
  24563. }
  24564. },
  24565. anthro: {
  24566. height: math.unit(30, "feet"),
  24567. weight: math.unit(9000, "kg"),
  24568. name: "Anthro",
  24569. image: {
  24570. source: "./media/characters/alydar/anthro.svg",
  24571. extra: 432 / 421,
  24572. bottom: 7.18 / 440
  24573. }
  24574. },
  24575. maw: {
  24576. height: math.unit(11.693, "feet"),
  24577. name: "Maw",
  24578. image: {
  24579. source: "./media/characters/alydar/maw.svg"
  24580. }
  24581. },
  24582. head: {
  24583. height: math.unit(11.693, "feet"),
  24584. name: "Head",
  24585. image: {
  24586. source: "./media/characters/alydar/head.svg"
  24587. }
  24588. },
  24589. headAlt: {
  24590. height: math.unit(12.861, "feet"),
  24591. name: "Head (Alt)",
  24592. image: {
  24593. source: "./media/characters/alydar/head-alt.svg"
  24594. }
  24595. },
  24596. wing: {
  24597. height: math.unit(20.712, "feet"),
  24598. name: "Wing",
  24599. image: {
  24600. source: "./media/characters/alydar/wing.svg"
  24601. }
  24602. },
  24603. wingFeather: {
  24604. height: math.unit(9.662, "feet"),
  24605. name: "Wing Feather",
  24606. image: {
  24607. source: "./media/characters/alydar/wing-feather.svg"
  24608. }
  24609. },
  24610. countourFeather: {
  24611. height: math.unit(4.154, "feet"),
  24612. name: "Contour Feather",
  24613. image: {
  24614. source: "./media/characters/alydar/contour-feather.svg"
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Diplomatic",
  24621. height: math.unit(13, "feet"),
  24622. default: true
  24623. },
  24624. {
  24625. name: "Small",
  24626. height: math.unit(30, "feet")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(95, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Large",
  24635. height: math.unit(285, "feet")
  24636. },
  24637. {
  24638. name: "Incomprehensible",
  24639. height: math.unit(450, "megameters")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24645. {
  24646. side: {
  24647. height: math.unit(11, "feet"),
  24648. weight: math.unit(1750, "kg"),
  24649. name: "Side",
  24650. image: {
  24651. source: "./media/characters/selicia/side.svg",
  24652. extra: 440 / 396,
  24653. bottom: 24.8 / 465.979
  24654. }
  24655. },
  24656. maw: {
  24657. height: math.unit(4.665, "feet"),
  24658. name: "Maw",
  24659. image: {
  24660. source: "./media/characters/selicia/maw.svg"
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(11, "feet"),
  24668. default: true
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24674. {
  24675. side: {
  24676. height: math.unit(2 + 6 / 12, "feet"),
  24677. weight: math.unit(30, "lb"),
  24678. name: "Side",
  24679. image: {
  24680. source: "./media/characters/layla/side.svg",
  24681. extra: 244 / 188,
  24682. bottom: 18.2 / 262.1
  24683. }
  24684. },
  24685. back: {
  24686. height: math.unit(2 + 6 / 12, "feet"),
  24687. weight: math.unit(30, "lb"),
  24688. name: "Back",
  24689. image: {
  24690. source: "./media/characters/layla/back.svg",
  24691. extra: 308 / 241.5,
  24692. bottom: 8.9 / 316.8
  24693. }
  24694. },
  24695. cumming: {
  24696. height: math.unit(2 + 6 / 12, "feet"),
  24697. weight: math.unit(30, "lb"),
  24698. name: "Cumming",
  24699. image: {
  24700. source: "./media/characters/layla/cumming.svg",
  24701. extra: 342 / 279,
  24702. bottom: 595 / 938
  24703. }
  24704. },
  24705. dickFlaccid: {
  24706. height: math.unit(2.595, "feet"),
  24707. name: "Flaccid Genitals",
  24708. image: {
  24709. source: "./media/characters/layla/dick-flaccid.svg"
  24710. }
  24711. },
  24712. dickErect: {
  24713. height: math.unit(2.359, "feet"),
  24714. name: "Erect Genitals",
  24715. image: {
  24716. source: "./media/characters/layla/dick-erect.svg"
  24717. }
  24718. },
  24719. dragon: {
  24720. height: math.unit(40, "feet"),
  24721. name: "Dragon",
  24722. image: {
  24723. source: "./media/characters/layla/dragon.svg",
  24724. extra: 610/535,
  24725. bottom: 367/977
  24726. }
  24727. },
  24728. taur: {
  24729. height: math.unit(30, "feet"),
  24730. name: "Taur",
  24731. image: {
  24732. source: "./media/characters/layla/taur.svg",
  24733. extra: 1268/1199,
  24734. bottom: 112/1380
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Micro",
  24741. height: math.unit(1, "inch")
  24742. },
  24743. {
  24744. name: "Small",
  24745. height: math.unit(1, "foot")
  24746. },
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(2 + 6 / 12, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Macro",
  24754. height: math.unit(200, "feet")
  24755. },
  24756. {
  24757. name: "Megamacro",
  24758. height: math.unit(1000, "miles")
  24759. },
  24760. {
  24761. name: "Planetary",
  24762. height: math.unit(8000, "miles")
  24763. },
  24764. {
  24765. name: "True Layla",
  24766. height: math.unit(200000 * 7, "multiverses")
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24772. {
  24773. back: {
  24774. height: math.unit(10.5, "feet"),
  24775. weight: math.unit(800, "lb"),
  24776. name: "Back",
  24777. image: {
  24778. source: "./media/characters/knox/back.svg",
  24779. extra: 1486 / 1089,
  24780. bottom: 107 / 1601.4
  24781. }
  24782. },
  24783. side: {
  24784. height: math.unit(10.5, "feet"),
  24785. weight: math.unit(800, "lb"),
  24786. name: "Side",
  24787. image: {
  24788. source: "./media/characters/knox/side.svg",
  24789. extra: 244 / 218,
  24790. bottom: 14 / 260
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Compact",
  24797. height: math.unit(10.5, "feet"),
  24798. default: true
  24799. },
  24800. {
  24801. name: "Dynamax",
  24802. height: math.unit(210, "feet")
  24803. },
  24804. {
  24805. name: "Full Macro",
  24806. height: math.unit(850, "feet")
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24812. {
  24813. front: {
  24814. height: math.unit(28, "feet"),
  24815. weight: math.unit(10500, "lb"),
  24816. name: "Front",
  24817. image: {
  24818. source: "./media/characters/kayda/front.svg",
  24819. extra: 1536 / 1428,
  24820. bottom: 68.7 / 1603
  24821. }
  24822. },
  24823. back: {
  24824. height: math.unit(28, "feet"),
  24825. weight: math.unit(10500, "lb"),
  24826. name: "Back",
  24827. image: {
  24828. source: "./media/characters/kayda/back.svg",
  24829. extra: 1557 / 1464,
  24830. bottom: 39.5 / 1597.49
  24831. }
  24832. },
  24833. dick: {
  24834. height: math.unit(3.858, "feet"),
  24835. name: "Dick",
  24836. image: {
  24837. source: "./media/characters/kayda/dick.svg"
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Macro",
  24844. height: math.unit(28, "feet"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(10 + 11 / 12, "feet"),
  24854. weight: math.unit(1400, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/brian/front.svg",
  24858. extra: 737 / 692,
  24859. bottom: 55.4 / 785
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(10 + 11 / 12, "feet"),
  24867. default: true
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(5 + 8 / 12, "feet"),
  24876. weight: math.unit(140, "lb"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/khemri/front.svg",
  24880. extra: 4780 / 4059,
  24881. bottom: 80.1 / 4859.25
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Micro",
  24888. height: math.unit(6, "inches")
  24889. },
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(5 + 8 / 12, "feet"),
  24893. default: true
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24899. {
  24900. front: {
  24901. height: math.unit(13, "feet"),
  24902. weight: math.unit(1700, "lb"),
  24903. name: "Front",
  24904. image: {
  24905. source: "./media/characters/felix-braveheart/front.svg",
  24906. extra: 1222 / 1157,
  24907. bottom: 53.2 / 1280
  24908. }
  24909. },
  24910. back: {
  24911. height: math.unit(13, "feet"),
  24912. weight: math.unit(1700, "lb"),
  24913. name: "Back",
  24914. image: {
  24915. source: "./media/characters/felix-braveheart/back.svg",
  24916. extra: 1277 / 1203,
  24917. bottom: 50.2 / 1327
  24918. }
  24919. },
  24920. feral: {
  24921. height: math.unit(6, "feet"),
  24922. weight: math.unit(400, "lb"),
  24923. name: "Feral",
  24924. image: {
  24925. source: "./media/characters/felix-braveheart/feral.svg",
  24926. extra: 682 / 625,
  24927. bottom: 6.9 / 688
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(13, "feet"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24941. {
  24942. side: {
  24943. height: math.unit(5 + 11 / 12, "feet"),
  24944. weight: math.unit(1400, "lb"),
  24945. name: "Side",
  24946. image: {
  24947. source: "./media/characters/shadow-blade/side.svg",
  24948. extra: 1726 / 1267,
  24949. bottom: 58.4 / 1785
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(5 + 11 / 12, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(1 + 6 / 12, "feet"),
  24966. weight: math.unit(25, "lb"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/karla-halldor/front.svg",
  24970. extra: 1459 / 1383,
  24971. bottom: 12 / 1472
  24972. }
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Normal",
  24978. height: math.unit(1 + 6 / 12, "feet"),
  24979. default: true
  24980. },
  24981. ]
  24982. ))
  24983. characterMakers.push(() => makeCharacter(
  24984. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24985. {
  24986. front: {
  24987. height: math.unit(6 + 2 / 12, "feet"),
  24988. weight: math.unit(160, "lb"),
  24989. name: "Front",
  24990. image: {
  24991. source: "./media/characters/ariam/front.svg",
  24992. extra: 1073/976,
  24993. bottom: 52/1125
  24994. }
  24995. },
  24996. back: {
  24997. height: math.unit(6 + 2/12, "feet"),
  24998. weight: math.unit(160, "lb"),
  24999. name: "Back",
  25000. image: {
  25001. source: "./media/characters/ariam/back.svg",
  25002. extra: 1103/1023,
  25003. bottom: 9/1112
  25004. }
  25005. },
  25006. dressed: {
  25007. height: math.unit(6 + 2/12, "feet"),
  25008. weight: math.unit(160, "lb"),
  25009. name: "Dressed",
  25010. image: {
  25011. source: "./media/characters/ariam/dressed.svg",
  25012. extra: 1099/1009,
  25013. bottom: 25/1124
  25014. }
  25015. },
  25016. squatting: {
  25017. height: math.unit(4.1, "feet"),
  25018. weight: math.unit(160, "lb"),
  25019. name: "Squatting",
  25020. image: {
  25021. source: "./media/characters/ariam/squatting.svg",
  25022. extra: 2617 / 2112,
  25023. bottom: 61.2 / 2681,
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(6 + 2 / 12, "feet"),
  25031. default: true
  25032. },
  25033. {
  25034. name: "Normal+",
  25035. height: math.unit(4, "meters")
  25036. },
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(50, "meters")
  25040. },
  25041. {
  25042. name: "Macro+",
  25043. height: math.unit(100, "meters")
  25044. },
  25045. {
  25046. name: "Megamacro",
  25047. height: math.unit(20, "km")
  25048. },
  25049. {
  25050. name: "Caretaker",
  25051. height: math.unit(444, "megameters")
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(1.67, "meters"),
  25060. weight: math.unit(140, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25064. extra: 438 / 410,
  25065. bottom: 0.75 / 439
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Shrunken",
  25072. height: math.unit(7.6, "cm")
  25073. },
  25074. {
  25075. name: "Human Scale",
  25076. height: math.unit(1.67, "meters")
  25077. },
  25078. {
  25079. name: "Wolxi Scale",
  25080. height: math.unit(36.7, "meters"),
  25081. default: true
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(1.73, "meters"),
  25090. weight: math.unit(240, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/izue-two-mothers/front.svg",
  25094. extra: 469 / 437,
  25095. bottom: 1.24 / 470.6
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Shrunken",
  25102. height: math.unit(7.86, "cm")
  25103. },
  25104. {
  25105. name: "Human Scale",
  25106. height: math.unit(1.73, "meters")
  25107. },
  25108. {
  25109. name: "Wolxi Scale",
  25110. height: math.unit(38, "meters"),
  25111. default: true
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25117. {
  25118. front: {
  25119. height: math.unit(1.55, "meters"),
  25120. weight: math.unit(120, "lb"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/teeku-love-shack/front.svg",
  25124. extra: 387 / 362,
  25125. bottom: 1.51 / 388
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Shrunken",
  25132. height: math.unit(7, "cm")
  25133. },
  25134. {
  25135. name: "Human Scale",
  25136. height: math.unit(1.55, "meters")
  25137. },
  25138. {
  25139. name: "Wolxi Scale",
  25140. height: math.unit(34.1, "meters"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(1.83, "meters"),
  25150. weight: math.unit(135, "lb"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/dejma-the-red/front.svg",
  25154. extra: 480 / 458,
  25155. bottom: 1.8 / 482
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Shrunken",
  25162. height: math.unit(8.3, "cm")
  25163. },
  25164. {
  25165. name: "Human Scale",
  25166. height: math.unit(1.83, "meters")
  25167. },
  25168. {
  25169. name: "Wolxi Scale",
  25170. height: math.unit(40, "meters"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(1.78, "meters"),
  25180. weight: math.unit(65, "kg"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/aki/front.svg",
  25184. extra: 452 / 415
  25185. }
  25186. },
  25187. frontNsfw: {
  25188. height: math.unit(1.78, "meters"),
  25189. weight: math.unit(65, "kg"),
  25190. name: "Front (NSFW)",
  25191. image: {
  25192. source: "./media/characters/aki/front-nsfw.svg",
  25193. extra: 452 / 415
  25194. }
  25195. },
  25196. back: {
  25197. height: math.unit(1.78, "meters"),
  25198. weight: math.unit(65, "kg"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/aki/back.svg",
  25202. extra: 452 / 415
  25203. }
  25204. },
  25205. rump: {
  25206. height: math.unit(2.05, "feet"),
  25207. name: "Rump",
  25208. image: {
  25209. source: "./media/characters/aki/rump.svg"
  25210. }
  25211. },
  25212. dick: {
  25213. height: math.unit(0.95, "feet"),
  25214. name: "Dick",
  25215. image: {
  25216. source: "./media/characters/aki/dick.svg"
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Micro",
  25223. height: math.unit(15, "cm")
  25224. },
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(178, "cm"),
  25228. default: true
  25229. },
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(214, "m")
  25233. },
  25234. {
  25235. name: "Macro+",
  25236. height: math.unit(534, "m")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(5 + 5 / 12, "feet"),
  25245. weight: math.unit(120, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/ari/front.svg",
  25249. extra: 1550/1471,
  25250. bottom: 39/1589
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(5 + 5 / 12, "feet")
  25258. },
  25259. {
  25260. name: "Macro",
  25261. height: math.unit(100, "feet"),
  25262. default: true
  25263. },
  25264. {
  25265. name: "Megamacro",
  25266. height: math.unit(100, "miles")
  25267. },
  25268. {
  25269. name: "Gigamacro",
  25270. height: math.unit(80000, "miles")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25276. {
  25277. side: {
  25278. height: math.unit(9, "feet"),
  25279. weight: math.unit(400, "kg"),
  25280. name: "Side",
  25281. image: {
  25282. source: "./media/characters/bolt/side.svg",
  25283. extra: 1126 / 896,
  25284. bottom: 60 / 1187.3,
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Micro",
  25291. height: math.unit(5, "inches")
  25292. },
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(9, "feet"),
  25296. default: true
  25297. },
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(700, "feet")
  25301. },
  25302. {
  25303. name: "Max Size",
  25304. height: math.unit(1.52e22, "yottameters")
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(4.3, "meters"),
  25313. weight: math.unit(3, "tons"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/draekon-sylviar/front.svg",
  25317. extra: 2072/1512,
  25318. bottom: 74/2146
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(4.3, "meters"),
  25323. weight: math.unit(3, "tons"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/draekon-sylviar/back.svg",
  25327. extra: 1639/1483,
  25328. bottom: 41/1680
  25329. }
  25330. },
  25331. feral: {
  25332. height: math.unit(1.15, "meters"),
  25333. weight: math.unit(3, "tons"),
  25334. name: "Feral",
  25335. image: {
  25336. source: "./media/characters/draekon-sylviar/feral.svg",
  25337. extra: 1033/395,
  25338. bottom: 130/1163
  25339. }
  25340. },
  25341. maw: {
  25342. height: math.unit(1.3, "meters"),
  25343. name: "Maw",
  25344. image: {
  25345. source: "./media/characters/draekon-sylviar/maw.svg"
  25346. }
  25347. },
  25348. mawSeparated: {
  25349. height: math.unit(1.53, "meters"),
  25350. name: "Separated Maw",
  25351. image: {
  25352. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25353. }
  25354. },
  25355. tail: {
  25356. height: math.unit(1.15, "meters"),
  25357. name: "Tail",
  25358. image: {
  25359. source: "./media/characters/draekon-sylviar/tail.svg"
  25360. }
  25361. },
  25362. tailDick: {
  25363. height: math.unit(1.15, "meters"),
  25364. name: "Tail (Dick)",
  25365. image: {
  25366. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25367. }
  25368. },
  25369. tailDickSeparated: {
  25370. height: math.unit(1.19, "meters"),
  25371. name: "Tail (Separated Dick)",
  25372. image: {
  25373. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25374. }
  25375. },
  25376. slit: {
  25377. height: math.unit(1, "meters"),
  25378. name: "Slit",
  25379. image: {
  25380. source: "./media/characters/draekon-sylviar/slit.svg"
  25381. }
  25382. },
  25383. dick: {
  25384. height: math.unit(1.15, "meters"),
  25385. name: "Dick",
  25386. image: {
  25387. source: "./media/characters/draekon-sylviar/dick.svg"
  25388. }
  25389. },
  25390. dickSeparated: {
  25391. height: math.unit(1.1, "meters"),
  25392. name: "Separated Dick",
  25393. image: {
  25394. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25395. }
  25396. },
  25397. sheath: {
  25398. height: math.unit(1.15, "meters"),
  25399. name: "Sheath",
  25400. image: {
  25401. source: "./media/characters/draekon-sylviar/sheath.svg"
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Small",
  25408. height: math.unit(4.53 / 2, "meters"),
  25409. default: true
  25410. },
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(4.53, "meters"),
  25414. default: true
  25415. },
  25416. {
  25417. name: "Large",
  25418. height: math.unit(4.53 * 2, "meters"),
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(6 + 2 / 12, "feet"),
  25427. weight: math.unit(180, "lb"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/brawler/front.svg",
  25431. extra: 3301 / 3027,
  25432. bottom: 138 / 3439
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(6 + 2 / 12, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25446. {
  25447. front: {
  25448. height: math.unit(11, "feet"),
  25449. weight: math.unit(1000, "lb"),
  25450. name: "Front",
  25451. image: {
  25452. source: "./media/characters/alex/front.svg",
  25453. bottom: 44.5 / 620
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Micro",
  25460. height: math.unit(5, "inches")
  25461. },
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(11, "feet"),
  25465. default: true
  25466. },
  25467. {
  25468. name: "Macro",
  25469. height: math.unit(9.5e9, "feet")
  25470. },
  25471. {
  25472. name: "Max Size",
  25473. height: math.unit(1.4e283, "yottameters")
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25479. {
  25480. female: {
  25481. height: math.unit(29.9, "m"),
  25482. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25483. name: "Female",
  25484. image: {
  25485. source: "./media/characters/zenari/female.svg",
  25486. extra: 3281.6 / 3217,
  25487. bottom: 72.2 / 3353
  25488. }
  25489. },
  25490. male: {
  25491. height: math.unit(27.7, "m"),
  25492. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25493. name: "Male",
  25494. image: {
  25495. source: "./media/characters/zenari/male.svg",
  25496. extra: 3008 / 2991,
  25497. bottom: 54.6 / 3069
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Macro",
  25504. height: math.unit(29.7, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25511. {
  25512. female: {
  25513. height: math.unit(23.8, "m"),
  25514. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25515. name: "Female",
  25516. image: {
  25517. source: "./media/characters/mactarian/female.svg",
  25518. extra: 2662 / 2569,
  25519. bottom: 73 / 2736
  25520. }
  25521. },
  25522. male: {
  25523. height: math.unit(23.8, "m"),
  25524. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25525. name: "Male",
  25526. image: {
  25527. source: "./media/characters/mactarian/male.svg",
  25528. extra: 2673 / 2600,
  25529. bottom: 76 / 2750
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Macro",
  25536. height: math.unit(23.8, "meters"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25543. {
  25544. female: {
  25545. height: math.unit(19.3, "m"),
  25546. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25547. name: "Female",
  25548. image: {
  25549. source: "./media/characters/umok/female.svg",
  25550. extra: 2186 / 2078,
  25551. bottom: 87 / 2277
  25552. }
  25553. },
  25554. male: {
  25555. height: math.unit(19.5, "m"),
  25556. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25557. name: "Male",
  25558. image: {
  25559. source: "./media/characters/umok/male.svg",
  25560. extra: 2233 / 2140,
  25561. bottom: 24.4 / 2258
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Macro",
  25568. height: math.unit(19.3, "meters"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25575. {
  25576. female: {
  25577. height: math.unit(26.15, "m"),
  25578. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25579. name: "Female",
  25580. image: {
  25581. source: "./media/characters/joraxian/female.svg",
  25582. extra: 2912 / 2824,
  25583. bottom: 36 / 2956
  25584. }
  25585. },
  25586. male: {
  25587. height: math.unit(25.4, "m"),
  25588. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25589. name: "Male",
  25590. image: {
  25591. source: "./media/characters/joraxian/male.svg",
  25592. extra: 2877 / 2721,
  25593. bottom: 82 / 2967
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Macro",
  25600. height: math.unit(26.15, "meters"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25607. {
  25608. female: {
  25609. height: math.unit(21.6, "m"),
  25610. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25611. name: "Female",
  25612. image: {
  25613. source: "./media/characters/sthara/female.svg",
  25614. extra: 2516 / 2347,
  25615. bottom: 21.5 / 2537
  25616. }
  25617. },
  25618. male: {
  25619. height: math.unit(24, "m"),
  25620. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25621. name: "Male",
  25622. image: {
  25623. source: "./media/characters/sthara/male.svg",
  25624. extra: 2732 / 2607,
  25625. bottom: 23 / 2732
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Macro",
  25632. height: math.unit(21.6, "meters"),
  25633. default: true
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25639. {
  25640. front: {
  25641. height: math.unit(6 + 4 / 12, "feet"),
  25642. weight: math.unit(175, "lb"),
  25643. name: "Front",
  25644. image: {
  25645. source: "./media/characters/luka-bryzant/front.svg",
  25646. extra: 311 / 289,
  25647. bottom: 4 / 315
  25648. }
  25649. },
  25650. back: {
  25651. height: math.unit(6 + 4 / 12, "feet"),
  25652. weight: math.unit(175, "lb"),
  25653. name: "Back",
  25654. image: {
  25655. source: "./media/characters/luka-bryzant/back.svg",
  25656. extra: 311 / 289,
  25657. bottom: 3.8 / 313.7
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Micro",
  25664. height: math.unit(10, "inches")
  25665. },
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(6 + 4 / 12, "feet"),
  25669. default: true
  25670. },
  25671. {
  25672. name: "Large",
  25673. height: math.unit(12, "feet")
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25679. {
  25680. front: {
  25681. height: math.unit(5 + 7 / 12, "feet"),
  25682. weight: math.unit(185, "lb"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/aman-aquila/front.svg",
  25686. extra: 1013 / 976,
  25687. bottom: 45.6 / 1057
  25688. }
  25689. },
  25690. side: {
  25691. height: math.unit(5 + 7 / 12, "feet"),
  25692. weight: math.unit(185, "lb"),
  25693. name: "Side",
  25694. image: {
  25695. source: "./media/characters/aman-aquila/side.svg",
  25696. extra: 1054 / 1011,
  25697. bottom: 15 / 1070
  25698. }
  25699. },
  25700. back: {
  25701. height: math.unit(5 + 7 / 12, "feet"),
  25702. weight: math.unit(185, "lb"),
  25703. name: "Back",
  25704. image: {
  25705. source: "./media/characters/aman-aquila/back.svg",
  25706. extra: 1026 / 970,
  25707. bottom: 12 / 1039
  25708. }
  25709. },
  25710. head: {
  25711. height: math.unit(1.211, "feet"),
  25712. name: "Head",
  25713. image: {
  25714. source: "./media/characters/aman-aquila/head.svg",
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Minimicro",
  25721. height: math.unit(0.057, "inches")
  25722. },
  25723. {
  25724. name: "Micro",
  25725. height: math.unit(7, "inches")
  25726. },
  25727. {
  25728. name: "Mini",
  25729. height: math.unit(3 + 7 / 12, "feet")
  25730. },
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(5 + 7 / 12, "feet"),
  25734. default: true
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(157 + 7 / 12, "feet")
  25739. },
  25740. {
  25741. name: "Megamacro",
  25742. height: math.unit(1557 + 7 / 12, "feet")
  25743. },
  25744. {
  25745. name: "Gigamacro",
  25746. height: math.unit(15557 + 7 / 12, "feet")
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(3 + 2 / 12, "inches"),
  25755. weight: math.unit(0.3, "ounces"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/hiphae/front.svg",
  25759. extra: 1931 / 1683,
  25760. bottom: 24 / 1955
  25761. }
  25762. },
  25763. },
  25764. [
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(3 + 1 / 2, "inches"),
  25768. default: true
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(5 + 10 / 12, "feet"),
  25777. weight: math.unit(165, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/nicky/front.svg",
  25781. extra: 3144 / 2886,
  25782. bottom: 45.6 / 3192
  25783. }
  25784. },
  25785. back: {
  25786. height: math.unit(5 + 10 / 12, "feet"),
  25787. weight: math.unit(165, "lb"),
  25788. name: "Back",
  25789. image: {
  25790. source: "./media/characters/nicky/back.svg",
  25791. extra: 3055 / 2804,
  25792. bottom: 28.4 / 3087
  25793. }
  25794. },
  25795. frontclothed: {
  25796. height: math.unit(5 + 10 / 12, "feet"),
  25797. weight: math.unit(165, "lb"),
  25798. name: "Front-clothed",
  25799. image: {
  25800. source: "./media/characters/nicky/front-clothed.svg",
  25801. extra: 3184.9 / 2926.9,
  25802. bottom: 86.5 / 3239.9
  25803. }
  25804. },
  25805. foot: {
  25806. height: math.unit(1.16, "feet"),
  25807. name: "Foot",
  25808. image: {
  25809. source: "./media/characters/nicky/foot.svg"
  25810. }
  25811. },
  25812. feet: {
  25813. height: math.unit(1.34, "feet"),
  25814. name: "Feet",
  25815. image: {
  25816. source: "./media/characters/nicky/feet.svg"
  25817. }
  25818. },
  25819. maw: {
  25820. height: math.unit(0.9, "feet"),
  25821. name: "Maw",
  25822. image: {
  25823. source: "./media/characters/nicky/maw.svg"
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(5 + 10 / 12, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Macro",
  25835. height: math.unit(60, "feet")
  25836. },
  25837. {
  25838. name: "Megamacro",
  25839. height: math.unit(1, "mile")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25845. {
  25846. side: {
  25847. height: math.unit(10, "feet"),
  25848. weight: math.unit(600, "lb"),
  25849. name: "Side",
  25850. image: {
  25851. source: "./media/characters/blair/side.svg",
  25852. bottom: 16.6 / 475,
  25853. extra: 458 / 431
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Micro",
  25860. height: math.unit(8, "inches")
  25861. },
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(10, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(180, "feet")
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(5 + 4 / 12, "feet"),
  25878. weight: math.unit(125, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/fisher/front.svg",
  25882. extra: 444 / 390,
  25883. bottom: 2 / 444.8
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Micro",
  25890. height: math.unit(4, "inches")
  25891. },
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(5 + 4 / 12, "feet"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Macro",
  25899. height: math.unit(100, "feet")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(6.71, "feet"),
  25908. weight: math.unit(200, "lb"),
  25909. capacity: math.unit(1000000, "people"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/gliss/front.svg",
  25913. extra: 2347 / 2231,
  25914. bottom: 113 / 2462
  25915. }
  25916. },
  25917. hammerspaceSize: {
  25918. height: math.unit(6.71 * 717, "feet"),
  25919. weight: math.unit(200, "lb"),
  25920. capacity: math.unit(1000000, "people"),
  25921. name: "Hammerspace Size",
  25922. image: {
  25923. source: "./media/characters/gliss/front.svg",
  25924. extra: 2347 / 2231,
  25925. bottom: 113 / 2462
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(6.71, "feet"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25939. {
  25940. side: {
  25941. height: math.unit(1.44, "m"),
  25942. weight: math.unit(80, "kg"),
  25943. name: "Side",
  25944. image: {
  25945. source: "./media/characters/dune-anderson/side.svg",
  25946. bottom: 49 / 1426
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Wolf-sized",
  25953. height: math.unit(1.44, "meters")
  25954. },
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(5.05, "meters"),
  25958. default: true
  25959. },
  25960. {
  25961. name: "Big",
  25962. height: math.unit(14.4, "meters")
  25963. },
  25964. {
  25965. name: "Huge",
  25966. height: math.unit(144, "meters")
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(7, "feet"),
  25975. weight: math.unit(425, "lb"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/hind/front.svg",
  25979. extra: 2091 / 1860,
  25980. bottom: 129 / 2220
  25981. }
  25982. },
  25983. back: {
  25984. height: math.unit(7, "feet"),
  25985. weight: math.unit(425, "lb"),
  25986. name: "Back",
  25987. image: {
  25988. source: "./media/characters/hind/back.svg",
  25989. extra: 2091 / 1860,
  25990. bottom: 24.6 / 2309
  25991. }
  25992. },
  25993. tail: {
  25994. height: math.unit(2.8, "feet"),
  25995. name: "Tail",
  25996. image: {
  25997. source: "./media/characters/hind/tail.svg"
  25998. }
  25999. },
  26000. head: {
  26001. height: math.unit(2.55, "feet"),
  26002. name: "Head",
  26003. image: {
  26004. source: "./media/characters/hind/head.svg"
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "XS",
  26011. height: math.unit(0.7, "feet")
  26012. },
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(7, "feet"),
  26016. default: true
  26017. },
  26018. {
  26019. name: "XL",
  26020. height: math.unit(70, "feet")
  26021. },
  26022. ]
  26023. ))
  26024. characterMakers.push(() => makeCharacter(
  26025. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26026. {
  26027. front: {
  26028. height: math.unit(2.1, "meters"),
  26029. weight: math.unit(150, "lb"),
  26030. name: "Front",
  26031. image: {
  26032. source: "./media/characters/tharquench-sizestealer/front.svg",
  26033. extra: 1605/1470,
  26034. bottom: 36/1641
  26035. }
  26036. },
  26037. frontAlt: {
  26038. height: math.unit(2.1, "meters"),
  26039. weight: math.unit(150, "lb"),
  26040. name: "Front (Alt)",
  26041. image: {
  26042. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26043. extra: 2318 / 2063,
  26044. bottom: 93.4 / 2410
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Nano",
  26051. height: math.unit(1, "mm")
  26052. },
  26053. {
  26054. name: "Micro",
  26055. height: math.unit(1, "cm")
  26056. },
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(2.1, "meters"),
  26060. default: true
  26061. },
  26062. ]
  26063. ))
  26064. characterMakers.push(() => makeCharacter(
  26065. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26066. {
  26067. front: {
  26068. height: math.unit(7 + 5 / 12, "feet"),
  26069. weight: math.unit(357, "lb"),
  26070. name: "Front",
  26071. image: {
  26072. source: "./media/characters/solex-draconov/front.svg",
  26073. extra: 1993 / 1865,
  26074. bottom: 117 / 2111
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Natural Height",
  26081. height: math.unit(7 + 5 / 12, "feet"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Macro",
  26086. height: math.unit(350, "feet")
  26087. },
  26088. {
  26089. name: "Macro+",
  26090. height: math.unit(1000, "feet")
  26091. },
  26092. {
  26093. name: "Megamacro",
  26094. height: math.unit(20, "km")
  26095. },
  26096. {
  26097. name: "Megamacro+",
  26098. height: math.unit(1000, "km")
  26099. },
  26100. {
  26101. name: "Gigamacro",
  26102. height: math.unit(2.5, "Gm")
  26103. },
  26104. {
  26105. name: "Teramacro",
  26106. height: math.unit(15, "Tm")
  26107. },
  26108. {
  26109. name: "Galactic",
  26110. height: math.unit(30, "Zm")
  26111. },
  26112. {
  26113. name: "Universal",
  26114. height: math.unit(21000, "Ym")
  26115. },
  26116. {
  26117. name: "Omniversal",
  26118. height: math.unit(9.861e50, "Ym")
  26119. },
  26120. {
  26121. name: "Existential",
  26122. height: math.unit(1e300, "meters")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26128. {
  26129. side: {
  26130. height: math.unit(25, "feet"),
  26131. weight: math.unit(90000, "lb"),
  26132. name: "Side",
  26133. image: {
  26134. source: "./media/characters/mandarax/side.svg",
  26135. extra: 614 / 332,
  26136. bottom: 55 / 630
  26137. }
  26138. },
  26139. lounging: {
  26140. height: math.unit(15.4, "feet"),
  26141. weight: math.unit(90000, "lb"),
  26142. name: "Lounging",
  26143. image: {
  26144. source: "./media/characters/mandarax/lounging.svg",
  26145. extra: 817/609,
  26146. bottom: 685/1502
  26147. }
  26148. },
  26149. head: {
  26150. height: math.unit(11.4, "feet"),
  26151. name: "Head",
  26152. image: {
  26153. source: "./media/characters/mandarax/head.svg"
  26154. }
  26155. },
  26156. belly: {
  26157. height: math.unit(33, "feet"),
  26158. name: "Belly",
  26159. capacity: math.unit(500, "people"),
  26160. image: {
  26161. source: "./media/characters/mandarax/belly.svg"
  26162. }
  26163. },
  26164. dick: {
  26165. height: math.unit(8.46, "feet"),
  26166. name: "Dick",
  26167. image: {
  26168. source: "./media/characters/mandarax/dick.svg"
  26169. }
  26170. },
  26171. top: {
  26172. height: math.unit(28, "meters"),
  26173. name: "Top",
  26174. image: {
  26175. source: "./media/characters/mandarax/top.svg"
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(25, "feet"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(5, "feet"),
  26192. weight: math.unit(90, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/pixil/front.svg",
  26196. extra: 2000 / 1618,
  26197. bottom: 12.3 / 2011
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(5, "feet"),
  26205. default: true
  26206. },
  26207. {
  26208. name: "Megamacro",
  26209. height: math.unit(10, "miles"),
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26215. {
  26216. front: {
  26217. height: math.unit(7 + 2 / 12, "feet"),
  26218. weight: math.unit(200, "lb"),
  26219. name: "Front",
  26220. image: {
  26221. source: "./media/characters/angel/front.svg",
  26222. extra: 1830 / 1737,
  26223. bottom: 22.6 / 1854,
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(7 + 2 / 12, "feet"),
  26231. default: true
  26232. },
  26233. {
  26234. name: "Macro",
  26235. height: math.unit(1000, "feet")
  26236. },
  26237. {
  26238. name: "Megamacro",
  26239. height: math.unit(2, "miles")
  26240. },
  26241. {
  26242. name: "Gigamacro",
  26243. height: math.unit(20, "earths")
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(5, "feet"),
  26252. weight: math.unit(180, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/mekana/front.svg",
  26256. extra: 1671 / 1605,
  26257. bottom: 3.5 / 1691
  26258. }
  26259. },
  26260. side: {
  26261. height: math.unit(5, "feet"),
  26262. weight: math.unit(180, "lb"),
  26263. name: "Side",
  26264. image: {
  26265. source: "./media/characters/mekana/side.svg",
  26266. extra: 1671 / 1605,
  26267. bottom: 3.5 / 1691
  26268. }
  26269. },
  26270. back: {
  26271. height: math.unit(5, "feet"),
  26272. weight: math.unit(180, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/mekana/back.svg",
  26276. extra: 1671 / 1605,
  26277. bottom: 3.5 / 1691
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(5, "feet"),
  26285. default: true
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(4 + 6 / 12, "feet"),
  26294. weight: math.unit(80, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/pixie/front.svg",
  26298. extra: 1924 / 1825,
  26299. bottom: 22.4 / 1946
  26300. }
  26301. },
  26302. },
  26303. [
  26304. {
  26305. name: "Normal",
  26306. height: math.unit(4 + 6 / 12, "feet"),
  26307. default: true
  26308. },
  26309. {
  26310. name: "Macro",
  26311. height: math.unit(40, "feet")
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(2.1, "meters"),
  26320. weight: math.unit(200, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/the-lascivious/front.svg",
  26324. extra: 1 / 0.893,
  26325. bottom: 3.5 / 573.7
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Human Scale",
  26332. height: math.unit(2.1, "meters")
  26333. },
  26334. {
  26335. name: "Wolxi Scale",
  26336. height: math.unit(46.2, "m"),
  26337. default: true
  26338. },
  26339. {
  26340. name: "Boinker of Buildings",
  26341. height: math.unit(10, "km")
  26342. },
  26343. {
  26344. name: "Shagger of Skyscrapers",
  26345. height: math.unit(40, "km")
  26346. },
  26347. {
  26348. name: "Banger of Boroughs",
  26349. height: math.unit(4000, "km")
  26350. },
  26351. {
  26352. name: "Screwer of States",
  26353. height: math.unit(100000, "km")
  26354. },
  26355. {
  26356. name: "Pounder of Planets",
  26357. height: math.unit(2000000, "km")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(6, "feet"),
  26366. weight: math.unit(150, "lb"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/aj/front.svg",
  26370. extra: 2039 / 1562,
  26371. bottom: 40 / 2079
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(11 + 6 / 12, "feet"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Megamacro",
  26383. height: math.unit(60, "megameters")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26389. {
  26390. side: {
  26391. height: math.unit(31 + 8 / 12, "feet"),
  26392. weight: math.unit(75000, "kg"),
  26393. name: "Side",
  26394. image: {
  26395. source: "./media/characters/koros/side.svg",
  26396. extra: 1442 / 1297,
  26397. bottom: 122.7 / 1562
  26398. }
  26399. },
  26400. dicksKingsCrown: {
  26401. height: math.unit(6, "feet"),
  26402. name: "Dicks (King's Crown)",
  26403. image: {
  26404. source: "./media/characters/koros/dicks-kings-crown.svg"
  26405. }
  26406. },
  26407. dicksTailSet: {
  26408. height: math.unit(3, "feet"),
  26409. name: "Dicks (Tail Set)",
  26410. image: {
  26411. source: "./media/characters/koros/dicks-tail-set.svg"
  26412. }
  26413. },
  26414. dickCumming: {
  26415. height: math.unit(7.98, "feet"),
  26416. name: "Dick (Cumming)",
  26417. image: {
  26418. source: "./media/characters/koros/dick-cumming.svg"
  26419. }
  26420. },
  26421. dicksBack: {
  26422. height: math.unit(5.9, "feet"),
  26423. name: "Dicks (Back)",
  26424. image: {
  26425. source: "./media/characters/koros/dicks-back.svg"
  26426. }
  26427. },
  26428. dicksFront: {
  26429. height: math.unit(3.72, "feet"),
  26430. name: "Dicks (Front)",
  26431. image: {
  26432. source: "./media/characters/koros/dicks-front.svg"
  26433. }
  26434. },
  26435. dicksPeeking: {
  26436. height: math.unit(3.0, "feet"),
  26437. name: "Dicks (Peeking)",
  26438. image: {
  26439. source: "./media/characters/koros/dicks-peeking.svg"
  26440. }
  26441. },
  26442. eye: {
  26443. height: math.unit(1.7, "feet"),
  26444. name: "Eye",
  26445. image: {
  26446. source: "./media/characters/koros/eye.svg"
  26447. }
  26448. },
  26449. headFront: {
  26450. height: math.unit(11.69, "feet"),
  26451. name: "Head (Front)",
  26452. image: {
  26453. source: "./media/characters/koros/head-front.svg"
  26454. }
  26455. },
  26456. headSide: {
  26457. height: math.unit(14, "feet"),
  26458. name: "Head (Side)",
  26459. image: {
  26460. source: "./media/characters/koros/head-side.svg"
  26461. }
  26462. },
  26463. leg: {
  26464. height: math.unit(17, "feet"),
  26465. name: "Leg",
  26466. image: {
  26467. source: "./media/characters/koros/leg.svg"
  26468. }
  26469. },
  26470. mawSide: {
  26471. height: math.unit(12.8, "feet"),
  26472. name: "Maw (Side)",
  26473. image: {
  26474. source: "./media/characters/koros/maw-side.svg"
  26475. }
  26476. },
  26477. mawSpitting: {
  26478. height: math.unit(17, "feet"),
  26479. name: "Maw (Spitting)",
  26480. image: {
  26481. source: "./media/characters/koros/maw-spitting.svg"
  26482. }
  26483. },
  26484. slit: {
  26485. height: math.unit(2.8, "feet"),
  26486. name: "Slit",
  26487. image: {
  26488. source: "./media/characters/koros/slit.svg"
  26489. }
  26490. },
  26491. stomach: {
  26492. height: math.unit(6.8, "feet"),
  26493. capacity: math.unit(20, "people"),
  26494. name: "Stomach",
  26495. image: {
  26496. source: "./media/characters/koros/stomach.svg"
  26497. }
  26498. },
  26499. wingspanBottom: {
  26500. height: math.unit(114, "feet"),
  26501. name: "Wingspan (Bottom)",
  26502. image: {
  26503. source: "./media/characters/koros/wingspan-bottom.svg"
  26504. }
  26505. },
  26506. wingspanTop: {
  26507. height: math.unit(104, "feet"),
  26508. name: "Wingspan (Top)",
  26509. image: {
  26510. source: "./media/characters/koros/wingspan-top.svg"
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(31 + 8 / 12, "feet"),
  26518. default: true
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(18 + 5 / 12, "feet"),
  26527. weight: math.unit(3750, "kg"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/vexx/front.svg",
  26531. extra: 426 / 396,
  26532. bottom: 31.5 / 458
  26533. }
  26534. },
  26535. maw: {
  26536. height: math.unit(6, "feet"),
  26537. name: "Maw",
  26538. image: {
  26539. source: "./media/characters/vexx/maw.svg"
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(18 + 5 / 12, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(17 + 6 / 12, "feet"),
  26556. weight: math.unit(150, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/baadra/front.svg",
  26560. extra: 1694/1553,
  26561. bottom: 179/1873
  26562. }
  26563. },
  26564. frontAlt: {
  26565. height: math.unit(17 + 6 / 12, "feet"),
  26566. weight: math.unit(150, "lb"),
  26567. name: "Front (Alt)",
  26568. image: {
  26569. source: "./media/characters/baadra/front-alt.svg",
  26570. extra: 3137 / 2890,
  26571. bottom: 168.4 / 3305
  26572. }
  26573. },
  26574. back: {
  26575. height: math.unit(17 + 6 / 12, "feet"),
  26576. weight: math.unit(150, "lb"),
  26577. name: "Back",
  26578. image: {
  26579. source: "./media/characters/baadra/back.svg",
  26580. extra: 3142 / 2890,
  26581. bottom: 220 / 3371
  26582. }
  26583. },
  26584. head: {
  26585. height: math.unit(5.45, "feet"),
  26586. name: "Head",
  26587. image: {
  26588. source: "./media/characters/baadra/head.svg"
  26589. }
  26590. },
  26591. headAngry: {
  26592. height: math.unit(4.95, "feet"),
  26593. name: "Head (Angry)",
  26594. image: {
  26595. source: "./media/characters/baadra/head-angry.svg"
  26596. }
  26597. },
  26598. headOpen: {
  26599. height: math.unit(6, "feet"),
  26600. name: "Head (Open)",
  26601. image: {
  26602. source: "./media/characters/baadra/head-open.svg"
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(17 + 6 / 12, "feet"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(7 + 3 / 12, "feet"),
  26619. weight: math.unit(180, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/juri/front.svg",
  26623. extra: 1401 / 1237,
  26624. bottom: 18.5 / 1418
  26625. }
  26626. },
  26627. side: {
  26628. height: math.unit(7 + 3 / 12, "feet"),
  26629. weight: math.unit(180, "lb"),
  26630. name: "Side",
  26631. image: {
  26632. source: "./media/characters/juri/side.svg",
  26633. extra: 1424 / 1242,
  26634. bottom: 18.5 / 1447
  26635. }
  26636. },
  26637. sitting: {
  26638. height: math.unit(6, "feet"),
  26639. weight: math.unit(180, "lb"),
  26640. name: "Sitting",
  26641. image: {
  26642. source: "./media/characters/juri/sitting.svg",
  26643. extra: 1270 / 1143,
  26644. bottom: 100 / 1343
  26645. }
  26646. },
  26647. back: {
  26648. height: math.unit(7 + 3 / 12, "feet"),
  26649. weight: math.unit(180, "lb"),
  26650. name: "Back",
  26651. image: {
  26652. source: "./media/characters/juri/back.svg",
  26653. extra: 1377 / 1240,
  26654. bottom: 23.7 / 1405
  26655. }
  26656. },
  26657. maw: {
  26658. height: math.unit(2.8, "feet"),
  26659. name: "Maw",
  26660. image: {
  26661. source: "./media/characters/juri/maw.svg"
  26662. }
  26663. },
  26664. stomach: {
  26665. height: math.unit(0.89, "feet"),
  26666. capacity: math.unit(4, "liters"),
  26667. name: "Stomach",
  26668. image: {
  26669. source: "./media/characters/juri/stomach.svg"
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(7 + 3 / 12, "feet"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26683. {
  26684. fox: {
  26685. height: math.unit(5 + 6 / 12, "feet"),
  26686. weight: math.unit(140, "lb"),
  26687. name: "Fox",
  26688. image: {
  26689. source: "./media/characters/maxene-sita/fox.svg",
  26690. extra: 146 / 138,
  26691. bottom: 2.1 / 148.19
  26692. }
  26693. },
  26694. foxLaying: {
  26695. height: math.unit(1.70, "feet"),
  26696. weight: math.unit(140, "lb"),
  26697. name: "Fox (Laying)",
  26698. image: {
  26699. source: "./media/characters/maxene-sita/fox-laying.svg",
  26700. extra: 910 / 572,
  26701. bottom: 71 / 981
  26702. }
  26703. },
  26704. kitsune: {
  26705. height: math.unit(10, "feet"),
  26706. weight: math.unit(800, "lb"),
  26707. name: "Kitsune",
  26708. image: {
  26709. source: "./media/characters/maxene-sita/kitsune.svg",
  26710. extra: 185 / 176,
  26711. bottom: 4.7 / 189.9
  26712. }
  26713. },
  26714. hellhound: {
  26715. height: math.unit(10, "feet"),
  26716. weight: math.unit(700, "lb"),
  26717. name: "Hellhound",
  26718. image: {
  26719. source: "./media/characters/maxene-sita/hellhound.svg",
  26720. extra: 1600 / 1545,
  26721. bottom: 81 / 1681
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Normal",
  26728. height: math.unit(5 + 6 / 12, "feet"),
  26729. default: true
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26735. {
  26736. front: {
  26737. height: math.unit(3 + 4 / 12, "feet"),
  26738. weight: math.unit(70, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/maia/front.svg",
  26742. extra: 227 / 219.5,
  26743. bottom: 40 / 267
  26744. }
  26745. },
  26746. back: {
  26747. height: math.unit(3 + 4 / 12, "feet"),
  26748. weight: math.unit(70, "lb"),
  26749. name: "Back",
  26750. image: {
  26751. source: "./media/characters/maia/back.svg",
  26752. extra: 237 / 225
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(3 + 4 / 12, "feet"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(5 + 10 / 12, "feet"),
  26769. weight: math.unit(197, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/jabaro/front.svg",
  26773. extra: 225 / 216,
  26774. bottom: 5.06 / 230
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(5 + 10 / 12, "feet"),
  26779. weight: math.unit(197, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/jabaro/back.svg",
  26783. extra: 225 / 219,
  26784. bottom: 1.9 / 227
  26785. }
  26786. },
  26787. },
  26788. [
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(5 + 10 / 12, "feet"),
  26792. default: true
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(5 + 8 / 12, "feet"),
  26801. weight: math.unit(139, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/risa/front.svg",
  26805. extra: 270 / 260,
  26806. bottom: 11.2 / 282
  26807. }
  26808. },
  26809. back: {
  26810. height: math.unit(5 + 8 / 12, "feet"),
  26811. weight: math.unit(139, "lb"),
  26812. name: "Back",
  26813. image: {
  26814. source: "./media/characters/risa/back.svg",
  26815. extra: 264 / 255,
  26816. bottom: 4 / 268
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(5 + 8 / 12, "feet"),
  26824. default: true
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26830. {
  26831. front: {
  26832. height: math.unit(2 + 11 / 12, "feet"),
  26833. weight: math.unit(30, "lb"),
  26834. name: "Front",
  26835. image: {
  26836. source: "./media/characters/weatley/front.svg",
  26837. bottom: 10.7 / 414,
  26838. extra: 403.5 / 362
  26839. }
  26840. },
  26841. back: {
  26842. height: math.unit(2 + 11 / 12, "feet"),
  26843. weight: math.unit(30, "lb"),
  26844. name: "Back",
  26845. image: {
  26846. source: "./media/characters/weatley/back.svg",
  26847. bottom: 10.7 / 414,
  26848. extra: 403.5 / 362
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(2 + 11 / 12, "feet"),
  26856. default: true
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26862. {
  26863. front: {
  26864. height: math.unit(5 + 2 / 12, "feet"),
  26865. weight: math.unit(50, "kg"),
  26866. name: "Front",
  26867. image: {
  26868. source: "./media/characters/mercury-crescent/front.svg",
  26869. extra: 1088 / 1033,
  26870. bottom: 18.9 / 1109
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(5 + 2 / 12, "feet"),
  26878. default: true
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(2, "feet"),
  26887. weight: math.unit(15, "kg"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/diamond-jones/front.svg",
  26891. extra: 727/723,
  26892. bottom: 46/773
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(2, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(3, "feet"),
  26909. weight: math.unit(30, "kg"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/sweet-bit/front.svg",
  26913. extra: 675 / 567,
  26914. bottom: 27.7 / 703
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Normal",
  26921. height: math.unit(3, "feet"),
  26922. default: true
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26928. {
  26929. side: {
  26930. height: math.unit(9.178, "feet"),
  26931. weight: math.unit(500, "lb"),
  26932. name: "Side",
  26933. image: {
  26934. source: "./media/characters/umbrazen/side.svg",
  26935. extra: 1730 / 1473,
  26936. bottom: 34.6 / 1765
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(9.178, "feet"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26950. {
  26951. front: {
  26952. height: math.unit(10, "feet"),
  26953. weight: math.unit(750, "lb"),
  26954. name: "Front",
  26955. image: {
  26956. source: "./media/characters/arlist/front.svg",
  26957. extra: 961 / 778,
  26958. bottom: 6.2 / 986
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(10, "feet"),
  26966. default: true
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(5 + 1 / 12, "feet"),
  26975. weight: math.unit(110, "lb"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/aradel/front.svg",
  26979. extra: 324 / 303,
  26980. bottom: 3.6 / 329.4
  26981. }
  26982. },
  26983. },
  26984. [
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(5 + 1 / 12, "feet"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26994. {
  26995. dressed: {
  26996. height: math.unit(3 + 8 / 12, "feet"),
  26997. weight: math.unit(50, "lb"),
  26998. name: "Dressed",
  26999. image: {
  27000. source: "./media/characters/serryn/dressed.svg",
  27001. extra: 1792 / 1656,
  27002. bottom: 43.5 / 1840
  27003. }
  27004. },
  27005. nude: {
  27006. height: math.unit(3 + 8 / 12, "feet"),
  27007. weight: math.unit(50, "lb"),
  27008. name: "Nude",
  27009. image: {
  27010. source: "./media/characters/serryn/nude.svg",
  27011. extra: 1792 / 1656,
  27012. bottom: 43.5 / 1840
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(3 + 8 / 12, "feet"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(7 + 10 / 12, "feet"),
  27029. weight: math.unit(255, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/xavier-thyme/front.svg",
  27033. extra: 3733 / 3642,
  27034. bottom: 131 / 3869
  27035. }
  27036. },
  27037. frontRaven: {
  27038. height: math.unit(7 + 10 / 12, "feet"),
  27039. weight: math.unit(255, "lb"),
  27040. name: "Front (Raven)",
  27041. image: {
  27042. source: "./media/characters/xavier-thyme/front-raven.svg",
  27043. extra: 4385 / 3642,
  27044. bottom: 131 / 4517
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(7 + 10 / 12, "feet"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(1.6, "m"),
  27061. weight: math.unit(50, "kg"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/kiki/front.svg",
  27065. extra: 4682 / 3610,
  27066. bottom: 115 / 4777
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(1.6, "meters"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(50, "m"),
  27083. weight: math.unit(500, "tonnes"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/ryoko/front.svg",
  27087. extra: 4632 / 3926,
  27088. bottom: 193 / 4823
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(50, "meters"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(30, "m"),
  27105. weight: math.unit(22, "tonnes"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/elio/front.svg",
  27109. extra: 4582 / 3720,
  27110. bottom: 236 / 4828
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(30, "meters"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(6 + 3 / 12, "feet"),
  27127. weight: math.unit(120, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/azura/front.svg",
  27131. extra: 1149 / 1135,
  27132. bottom: 45 / 1194
  27133. }
  27134. },
  27135. frontClothed: {
  27136. height: math.unit(6 + 3 / 12, "feet"),
  27137. weight: math.unit(120, "lb"),
  27138. name: "Front (Clothed)",
  27139. image: {
  27140. source: "./media/characters/azura/front-clothed.svg",
  27141. extra: 1149 / 1135,
  27142. bottom: 45 / 1194
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(6 + 3 / 12, "feet"),
  27150. default: true
  27151. },
  27152. {
  27153. name: "Macro",
  27154. height: math.unit(20 + 6 / 12, "feet")
  27155. },
  27156. {
  27157. name: "Megamacro",
  27158. height: math.unit(12, "miles")
  27159. },
  27160. {
  27161. name: "Gigamacro",
  27162. height: math.unit(10000, "miles")
  27163. },
  27164. {
  27165. name: "Teramacro",
  27166. height: math.unit(900000, "miles")
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(12, "feet"),
  27175. weight: math.unit(1, "ton"),
  27176. capacity: math.unit(660000, "gallons"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/zeus/front.svg",
  27180. extra: 5005 / 4717,
  27181. bottom: 363 / 5388
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(12, "feet")
  27189. },
  27190. {
  27191. name: "Preferred Size",
  27192. height: math.unit(0.5, "miles"),
  27193. default: true
  27194. },
  27195. {
  27196. name: "Giga Horse",
  27197. height: math.unit(300, "miles")
  27198. },
  27199. {
  27200. name: "Riding Planets",
  27201. height: math.unit(30, "megameters")
  27202. },
  27203. {
  27204. name: "Cosmic Giant",
  27205. height: math.unit(3, "zettameters")
  27206. },
  27207. {
  27208. name: "Breeding God",
  27209. height: math.unit(9.92e22, "yottameters")
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27215. {
  27216. side: {
  27217. height: math.unit(9, "feet"),
  27218. weight: math.unit(1500, "kg"),
  27219. name: "Side",
  27220. image: {
  27221. source: "./media/characters/fang/side.svg",
  27222. extra: 924 / 866,
  27223. bottom: 47.5 / 972.3
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(9, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(75 + 6 / 12, "feet")
  27236. },
  27237. {
  27238. name: "Teramacro",
  27239. height: math.unit(50000, "miles")
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(10, "feet"),
  27248. weight: math.unit(2, "tons"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/rekhit/front.svg",
  27252. extra: 2796 / 2590,
  27253. bottom: 225 / 3022
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(10, "feet"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Macro",
  27265. height: math.unit(500, "feet")
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(7 + 6.451 / 12, "feet"),
  27274. weight: math.unit(310, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/dahlia-verrick/front.svg",
  27278. extra: 1488 / 1365,
  27279. bottom: 6.2 / 1495
  27280. }
  27281. },
  27282. back: {
  27283. height: math.unit(7 + 6.451 / 12, "feet"),
  27284. weight: math.unit(310, "lb"),
  27285. name: "Back",
  27286. image: {
  27287. source: "./media/characters/dahlia-verrick/back.svg",
  27288. extra: 1472 / 1351,
  27289. bottom: 5.28 / 1477
  27290. }
  27291. },
  27292. frontBusiness: {
  27293. height: math.unit(7 + 6.451 / 12, "feet"),
  27294. weight: math.unit(200, "lb"),
  27295. name: "Front (Business)",
  27296. image: {
  27297. source: "./media/characters/dahlia-verrick/front-business.svg",
  27298. extra: 1478 / 1381,
  27299. bottom: 5.5 / 1484
  27300. }
  27301. },
  27302. frontCasual: {
  27303. height: math.unit(7 + 6.451 / 12, "feet"),
  27304. weight: math.unit(200, "lb"),
  27305. name: "Front (Casual)",
  27306. image: {
  27307. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27308. extra: 1478 / 1381,
  27309. bottom: 5.5 / 1484
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Travel-Sized",
  27316. height: math.unit(7.45, "inches")
  27317. },
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(7 + 6.451 / 12, "feet"),
  27321. default: true
  27322. },
  27323. {
  27324. name: "Hitting the Town",
  27325. height: math.unit(37 + 8 / 12, "feet")
  27326. },
  27327. {
  27328. name: "Stomp in the Suburbs",
  27329. height: math.unit(964 + 9.728 / 12, "feet")
  27330. },
  27331. {
  27332. name: "Sit on the City",
  27333. height: math.unit(61747 + 10.592 / 12, "feet")
  27334. },
  27335. {
  27336. name: "Glomp the Globe",
  27337. height: math.unit(252919327 + 4.832 / 12, "feet")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(6 + 4 / 12, "feet"),
  27346. weight: math.unit(320, "lb"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/balina-mahigan/front.svg",
  27350. extra: 447 / 428,
  27351. bottom: 18 / 466
  27352. }
  27353. },
  27354. back: {
  27355. height: math.unit(6 + 4 / 12, "feet"),
  27356. weight: math.unit(320, "lb"),
  27357. name: "Back",
  27358. image: {
  27359. source: "./media/characters/balina-mahigan/back.svg",
  27360. extra: 445 / 428,
  27361. bottom: 4.07 / 448
  27362. }
  27363. },
  27364. arm: {
  27365. height: math.unit(1.88, "feet"),
  27366. name: "Arm",
  27367. image: {
  27368. source: "./media/characters/balina-mahigan/arm.svg"
  27369. }
  27370. },
  27371. backPort: {
  27372. height: math.unit(0.685, "feet"),
  27373. name: "Back Port",
  27374. image: {
  27375. source: "./media/characters/balina-mahigan/back-port.svg"
  27376. }
  27377. },
  27378. hoofpaw: {
  27379. height: math.unit(1.41, "feet"),
  27380. name: "Hoofpaw",
  27381. image: {
  27382. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27383. }
  27384. },
  27385. leftHandBack: {
  27386. height: math.unit(0.938, "feet"),
  27387. name: "Left Hand (Back)",
  27388. image: {
  27389. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27390. }
  27391. },
  27392. leftHandFront: {
  27393. height: math.unit(0.938, "feet"),
  27394. name: "Left Hand (Front)",
  27395. image: {
  27396. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27397. }
  27398. },
  27399. rightHandBack: {
  27400. height: math.unit(0.95, "feet"),
  27401. name: "Right Hand (Back)",
  27402. image: {
  27403. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27404. }
  27405. },
  27406. rightHandFront: {
  27407. height: math.unit(0.95, "feet"),
  27408. name: "Right Hand (Front)",
  27409. image: {
  27410. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(6 + 4 / 12, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(6, "feet"),
  27427. weight: math.unit(320, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/balina-mejeri/front.svg",
  27431. extra: 517 / 488,
  27432. bottom: 44.2 / 561
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(6 + 4 / 12, "feet")
  27440. },
  27441. {
  27442. name: "Business",
  27443. height: math.unit(155, "feet"),
  27444. default: true
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27450. {
  27451. kneeling: {
  27452. height: math.unit(6 + 4 / 12, "feet"),
  27453. weight: math.unit(300 * 20, "lb"),
  27454. name: "Kneeling",
  27455. image: {
  27456. source: "./media/characters/balbarian/kneeling.svg",
  27457. extra: 922 / 862,
  27458. bottom: 42.4 / 965
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(6 + 4 / 12, "feet")
  27466. },
  27467. {
  27468. name: "Treasured",
  27469. height: math.unit(18 + 9 / 12, "feet"),
  27470. default: true
  27471. },
  27472. {
  27473. name: "Macro",
  27474. height: math.unit(900, "feet")
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(6 + 4 / 12, "feet"),
  27483. weight: math.unit(325, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/balina-amarini/front.svg",
  27487. extra: 415 / 403,
  27488. bottom: 19 / 433.4
  27489. }
  27490. },
  27491. back: {
  27492. height: math.unit(6 + 4 / 12, "feet"),
  27493. weight: math.unit(325, "lb"),
  27494. name: "Back",
  27495. image: {
  27496. source: "./media/characters/balina-amarini/back.svg",
  27497. extra: 415 / 403,
  27498. bottom: 13.5 / 432
  27499. }
  27500. },
  27501. overdrive: {
  27502. height: math.unit(6 + 4 / 12, "feet"),
  27503. weight: math.unit(400, "lb"),
  27504. name: "Overdrive",
  27505. image: {
  27506. source: "./media/characters/balina-amarini/overdrive.svg",
  27507. extra: 269 / 259,
  27508. bottom: 12 / 282
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Boom",
  27515. height: math.unit(9 + 10 / 12, "feet"),
  27516. default: true
  27517. },
  27518. {
  27519. name: "Macro",
  27520. height: math.unit(280, "feet")
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27526. {
  27527. goddess: {
  27528. height: math.unit(600, "feet"),
  27529. weight: math.unit(2000000, "tons"),
  27530. name: "Goddess",
  27531. image: {
  27532. source: "./media/characters/lady-kubwa/goddess.svg",
  27533. extra: 1240.5 / 1223,
  27534. bottom: 22 / 1263
  27535. }
  27536. },
  27537. goddesser: {
  27538. height: math.unit(900, "feet"),
  27539. weight: math.unit(20000000, "lb"),
  27540. name: "Goddess-er",
  27541. image: {
  27542. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27543. extra: 899 / 888,
  27544. bottom: 12.6 / 912
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Macro",
  27551. height: math.unit(600, "feet"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Megamacro",
  27556. height: math.unit(250, "miles")
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(7 + 7 / 12, "feet"),
  27565. weight: math.unit(250, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/tala-grovehorn/front.svg",
  27569. extra: 2636 / 2525,
  27570. bottom: 147 / 2781
  27571. }
  27572. },
  27573. back: {
  27574. height: math.unit(7 + 7 / 12, "feet"),
  27575. weight: math.unit(250, "lb"),
  27576. name: "Back",
  27577. image: {
  27578. source: "./media/characters/tala-grovehorn/back.svg",
  27579. extra: 2635 / 2539,
  27580. bottom: 100 / 2732.8
  27581. }
  27582. },
  27583. mouth: {
  27584. height: math.unit(1.15, "feet"),
  27585. name: "Mouth",
  27586. image: {
  27587. source: "./media/characters/tala-grovehorn/mouth.svg"
  27588. }
  27589. },
  27590. dick: {
  27591. height: math.unit(2.36, "feet"),
  27592. name: "Dick",
  27593. image: {
  27594. source: "./media/characters/tala-grovehorn/dick.svg"
  27595. }
  27596. },
  27597. slit: {
  27598. height: math.unit(0.61, "feet"),
  27599. name: "Slit",
  27600. image: {
  27601. source: "./media/characters/tala-grovehorn/slit.svg"
  27602. }
  27603. },
  27604. },
  27605. [
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(7 + 7 / 12, "feet"),
  27613. weight: math.unit(225, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/epona/front.svg",
  27617. extra: 2445 / 2290,
  27618. bottom: 251 / 2696
  27619. }
  27620. },
  27621. back: {
  27622. height: math.unit(7 + 7 / 12, "feet"),
  27623. weight: math.unit(225, "lb"),
  27624. name: "Back",
  27625. image: {
  27626. source: "./media/characters/epona/back.svg",
  27627. extra: 2546 / 2408,
  27628. bottom: 44 / 2589
  27629. }
  27630. },
  27631. genitals: {
  27632. height: math.unit(1.5, "feet"),
  27633. name: "Genitals",
  27634. image: {
  27635. source: "./media/characters/epona/genitals.svg"
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(7 + 7 / 12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(7, "feet"),
  27652. weight: math.unit(518, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/avia-bloodbourn/front.svg",
  27656. extra: 1466 / 1350,
  27657. bottom: 65 / 1527
  27658. }
  27659. },
  27660. },
  27661. [
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(9.35, "feet"),
  27669. weight: math.unit(600, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/amera/front.svg",
  27673. extra: 891 / 818,
  27674. bottom: 30 / 922.7
  27675. }
  27676. },
  27677. back: {
  27678. height: math.unit(9.35, "feet"),
  27679. weight: math.unit(600, "lb"),
  27680. name: "Back",
  27681. image: {
  27682. source: "./media/characters/amera/back.svg",
  27683. extra: 876 / 824,
  27684. bottom: 6.8 / 884
  27685. }
  27686. },
  27687. dick: {
  27688. height: math.unit(2.14, "feet"),
  27689. name: "Dick",
  27690. image: {
  27691. source: "./media/characters/amera/dick.svg"
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(9.35, "feet"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27705. {
  27706. kneeling: {
  27707. height: math.unit(3 + 4 / 12, "feet"),
  27708. weight: math.unit(90, "lb"),
  27709. name: "Kneeling",
  27710. image: {
  27711. source: "./media/characters/rosewen/kneeling.svg",
  27712. extra: 1835 / 1571,
  27713. bottom: 27.7 / 1862
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(3 + 4 / 12, "feet"),
  27721. default: true
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27727. {
  27728. front: {
  27729. height: math.unit(5 + 10 / 12, "feet"),
  27730. weight: math.unit(200, "lb"),
  27731. name: "Front",
  27732. image: {
  27733. source: "./media/characters/sabah/front.svg",
  27734. extra: 849 / 763,
  27735. bottom: 33.9 / 881
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(5 + 10 / 12, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27749. {
  27750. front: {
  27751. height: math.unit(3 + 5 / 12, "feet"),
  27752. weight: math.unit(40, "kg"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/purple-flame/front.svg",
  27756. extra: 1577 / 1412,
  27757. bottom: 97 / 1694
  27758. }
  27759. },
  27760. frontDressed: {
  27761. height: math.unit(3 + 5 / 12, "feet"),
  27762. weight: math.unit(40, "kg"),
  27763. name: "Front (Dressed)",
  27764. image: {
  27765. source: "./media/characters/purple-flame/front-dressed.svg",
  27766. extra: 1577 / 1412,
  27767. bottom: 97 / 1694
  27768. }
  27769. },
  27770. headphones: {
  27771. height: math.unit(0.85, "feet"),
  27772. name: "Headphones",
  27773. image: {
  27774. source: "./media/characters/purple-flame/headphones.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Really Small",
  27781. height: math.unit(5, "cm")
  27782. },
  27783. {
  27784. name: "Micro",
  27785. height: math.unit(1 + 5 / 12, "feet")
  27786. },
  27787. {
  27788. name: "Normal",
  27789. height: math.unit(3 + 5 / 12, "feet"),
  27790. default: true
  27791. },
  27792. {
  27793. name: "Minimacro",
  27794. height: math.unit(125, "feet")
  27795. },
  27796. {
  27797. name: "Macro",
  27798. height: math.unit(0.5, "miles")
  27799. },
  27800. {
  27801. name: "Megamacro",
  27802. height: math.unit(50, "miles")
  27803. },
  27804. {
  27805. name: "Gigantic",
  27806. height: math.unit(750, "miles")
  27807. },
  27808. {
  27809. name: "Planetary",
  27810. height: math.unit(15000, "miles")
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(14, "feet"),
  27819. weight: math.unit(959, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/arsenal/front.svg",
  27823. extra: 2357 / 2157,
  27824. bottom: 93 / 2458
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(14, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(6, "feet"),
  27841. weight: math.unit(150, "lb"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/adira/front.svg",
  27845. extra: 1078 / 1029,
  27846. bottom: 87 / 1166
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Micro",
  27853. height: math.unit(4, "inches"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Macro",
  27858. height: math.unit(50, "feet")
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(16, "feet"),
  27867. weight: math.unit(1000, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/grim/front.svg",
  27871. extra: 622 / 614,
  27872. bottom: 18.1 / 642
  27873. }
  27874. },
  27875. back: {
  27876. height: math.unit(16, "feet"),
  27877. weight: math.unit(1000, "lb"),
  27878. name: "Back",
  27879. image: {
  27880. source: "./media/characters/grim/back.svg",
  27881. extra: 610.6 / 602,
  27882. bottom: 40.8 / 652
  27883. }
  27884. },
  27885. hunched: {
  27886. height: math.unit(9.75, "feet"),
  27887. weight: math.unit(1000, "lb"),
  27888. name: "Hunched",
  27889. image: {
  27890. source: "./media/characters/grim/hunched.svg",
  27891. extra: 304 / 297,
  27892. bottom: 35.4 / 394
  27893. }
  27894. },
  27895. },
  27896. [
  27897. {
  27898. name: "Normal",
  27899. height: math.unit(16, "feet"),
  27900. default: true
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(2.3, "meters"),
  27909. weight: math.unit(300, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/sinja/front-sfw.svg",
  27913. extra: 1393 / 1294,
  27914. bottom: 70 / 1463
  27915. }
  27916. },
  27917. frontNsfw: {
  27918. height: math.unit(2.3, "meters"),
  27919. weight: math.unit(300, "lb"),
  27920. name: "Front (NSFW)",
  27921. image: {
  27922. source: "./media/characters/sinja/front-nsfw.svg",
  27923. extra: 1393 / 1294,
  27924. bottom: 70 / 1463
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(2.3, "meters"),
  27929. weight: math.unit(300, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/sinja/back.svg",
  27933. extra: 1393 / 1294,
  27934. bottom: 70 / 1463
  27935. }
  27936. },
  27937. head: {
  27938. height: math.unit(1.771, "feet"),
  27939. name: "Head",
  27940. image: {
  27941. source: "./media/characters/sinja/head.svg"
  27942. }
  27943. },
  27944. slit: {
  27945. height: math.unit(0.8, "feet"),
  27946. name: "Slit",
  27947. image: {
  27948. source: "./media/characters/sinja/slit.svg"
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(2.3, "meters")
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(91, "meters"),
  27960. default: true
  27961. },
  27962. {
  27963. name: "Megamacro",
  27964. height: math.unit(91440, "meters")
  27965. },
  27966. {
  27967. name: "Gigamacro",
  27968. height: math.unit(60960000, "meters")
  27969. },
  27970. {
  27971. name: "Teramacro",
  27972. height: math.unit(9144000000, "meters")
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27978. {
  27979. front: {
  27980. height: math.unit(1.7, "meters"),
  27981. weight: math.unit(130, "lb"),
  27982. name: "Front",
  27983. image: {
  27984. source: "./media/characters/kyu/front.svg",
  27985. extra: 415 / 395,
  27986. bottom: 5 / 420
  27987. }
  27988. },
  27989. head: {
  27990. height: math.unit(1.75, "feet"),
  27991. name: "Head",
  27992. image: {
  27993. source: "./media/characters/kyu/head.svg"
  27994. }
  27995. },
  27996. foot: {
  27997. height: math.unit(0.81, "feet"),
  27998. name: "Foot",
  27999. image: {
  28000. source: "./media/characters/kyu/foot.svg"
  28001. }
  28002. },
  28003. },
  28004. [
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(1.7, "meters")
  28008. },
  28009. {
  28010. name: "Macro",
  28011. height: math.unit(131, "feet"),
  28012. default: true
  28013. },
  28014. {
  28015. name: "Megamacro",
  28016. height: math.unit(91440, "meters")
  28017. },
  28018. {
  28019. name: "Gigamacro",
  28020. height: math.unit(60960000, "meters")
  28021. },
  28022. {
  28023. name: "Teramacro",
  28024. height: math.unit(9144000000, "meters")
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(7 + 1 / 12, "feet"),
  28033. weight: math.unit(250, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/joey/front.svg",
  28037. extra: 1791 / 1537,
  28038. bottom: 28 / 1816
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Micro",
  28045. height: math.unit(3, "inches")
  28046. },
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(7 + 1 / 12, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(165, "cm"),
  28059. weight: math.unit(140, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/sam-evans/front.svg",
  28063. extra: 3417 / 3230,
  28064. bottom: 41.3 / 3417
  28065. }
  28066. },
  28067. frontSixTails: {
  28068. height: math.unit(165, "cm"),
  28069. weight: math.unit(140, "lb"),
  28070. name: "Front-six-tails",
  28071. image: {
  28072. source: "./media/characters/sam-evans/front-six-tails.svg",
  28073. extra: 3417 / 3230,
  28074. bottom: 41.3 / 3417
  28075. }
  28076. },
  28077. back: {
  28078. height: math.unit(165, "cm"),
  28079. weight: math.unit(140, "lb"),
  28080. name: "Back",
  28081. image: {
  28082. source: "./media/characters/sam-evans/back.svg",
  28083. extra: 3227 / 3032,
  28084. bottom: 6.8 / 3234
  28085. }
  28086. },
  28087. face: {
  28088. height: math.unit(0.68, "feet"),
  28089. name: "Face",
  28090. image: {
  28091. source: "./media/characters/sam-evans/face.svg"
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Normal",
  28098. height: math.unit(165, "cm"),
  28099. default: true
  28100. },
  28101. {
  28102. name: "Macro",
  28103. height: math.unit(100, "meters")
  28104. },
  28105. {
  28106. name: "Macro+",
  28107. height: math.unit(800, "meters")
  28108. },
  28109. {
  28110. name: "Macro++",
  28111. height: math.unit(3, "km")
  28112. },
  28113. {
  28114. name: "Macro+++",
  28115. height: math.unit(30, "km")
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(10, "feet"),
  28124. weight: math.unit(750, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/juliet-a/front.svg",
  28128. extra: 1766 / 1720,
  28129. bottom: 43 / 1809
  28130. }
  28131. },
  28132. back: {
  28133. height: math.unit(10, "feet"),
  28134. weight: math.unit(750, "lb"),
  28135. name: "Back",
  28136. image: {
  28137. source: "./media/characters/juliet-a/back.svg",
  28138. extra: 1781 / 1734,
  28139. bottom: 35 / 1810,
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(10, "feet"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Dragon Form",
  28151. height: math.unit(250, "feet")
  28152. },
  28153. {
  28154. name: "Macro",
  28155. height: math.unit(1000, "feet")
  28156. },
  28157. {
  28158. name: "Megamacro",
  28159. height: math.unit(10000, "feet")
  28160. }
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28165. {
  28166. regular: {
  28167. height: math.unit(7 + 3 / 12, "feet"),
  28168. weight: math.unit(260, "lb"),
  28169. name: "Regular",
  28170. image: {
  28171. source: "./media/characters/wild/regular.svg",
  28172. extra: 97.45 / 92,
  28173. bottom: 6.8 / 104.3
  28174. }
  28175. },
  28176. biggums: {
  28177. height: math.unit(8 + 6 / 12, "feet"),
  28178. weight: math.unit(425, "lb"),
  28179. name: "Biggums",
  28180. image: {
  28181. source: "./media/characters/wild/biggums.svg",
  28182. extra: 97.45 / 92,
  28183. bottom: 7.5 / 132.34
  28184. }
  28185. },
  28186. mawRegular: {
  28187. height: math.unit(1.24, "feet"),
  28188. name: "Maw (Regular)",
  28189. image: {
  28190. source: "./media/characters/wild/maw.svg"
  28191. }
  28192. },
  28193. mawBiggums: {
  28194. height: math.unit(1.47, "feet"),
  28195. name: "Maw (Biggums)",
  28196. image: {
  28197. source: "./media/characters/wild/maw.svg"
  28198. }
  28199. },
  28200. },
  28201. [
  28202. {
  28203. name: "Normal",
  28204. height: math.unit(7 + 3 / 12, "feet"),
  28205. default: true
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28211. {
  28212. front: {
  28213. height: math.unit(2.5, "meters"),
  28214. weight: math.unit(200, "kg"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/vidar/front.svg",
  28218. extra: 2994 / 2795,
  28219. bottom: 56 / 3061
  28220. }
  28221. },
  28222. back: {
  28223. height: math.unit(2.5, "meters"),
  28224. weight: math.unit(200, "kg"),
  28225. name: "Back",
  28226. image: {
  28227. source: "./media/characters/vidar/back.svg",
  28228. extra: 3131 / 2928,
  28229. bottom: 13.5 / 3141.5
  28230. }
  28231. },
  28232. feral: {
  28233. height: math.unit(2.5, "meters"),
  28234. weight: math.unit(2000, "kg"),
  28235. name: "Feral",
  28236. image: {
  28237. source: "./media/characters/vidar/feral.svg",
  28238. extra: 2790 / 1765,
  28239. bottom: 6 / 2796
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(2.5, "meters"),
  28247. default: true
  28248. },
  28249. {
  28250. name: "Macro",
  28251. height: math.unit(100, "meters")
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(5 + 9 / 12, "feet"),
  28260. weight: math.unit(120, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/ash/front.svg",
  28264. extra: 2189 / 1961,
  28265. bottom: 5.2 / 2194
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(5 + 9 / 12, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(9, "feet"),
  28282. weight: math.unit(10000, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/gygabite/front.svg",
  28286. bottom: 31.7 / 537.8,
  28287. extra: 505 / 370
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(9, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(12, "feet"),
  28304. weight: math.unit(35000, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/p0tat0/front.svg",
  28308. extra: 1065 / 921,
  28309. bottom: 55.7 / 1121.25
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(12, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28323. {
  28324. side: {
  28325. height: math.unit(6.5, "feet"),
  28326. weight: math.unit(800, "lb"),
  28327. name: "Side",
  28328. image: {
  28329. source: "./media/characters/dusk/side.svg",
  28330. extra: 615 / 373,
  28331. bottom: 53 / 664
  28332. }
  28333. },
  28334. sitting: {
  28335. height: math.unit(7, "feet"),
  28336. weight: math.unit(800, "lb"),
  28337. name: "Sitting",
  28338. image: {
  28339. source: "./media/characters/dusk/sitting.svg",
  28340. extra: 753 / 425,
  28341. bottom: 33 / 774
  28342. }
  28343. },
  28344. head: {
  28345. height: math.unit(6.1, "feet"),
  28346. name: "Head",
  28347. image: {
  28348. source: "./media/characters/dusk/head.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(7, "feet"),
  28356. default: true
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(15, "feet"),
  28365. weight: math.unit(7000, "lb"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/jay-direwolf/front.svg",
  28369. extra: 1810 / 1732,
  28370. bottom: 66 / 1892
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(15, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(4 + 9 / 12, "feet"),
  28387. weight: math.unit(130, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/anchovie/front.svg",
  28391. extra: 382 / 350,
  28392. bottom: 25 / 409
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(4 + 9 / 12, "feet"),
  28397. weight: math.unit(130, "lb"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/anchovie/back.svg",
  28401. extra: 385 / 352,
  28402. bottom: 16.6 / 402
  28403. }
  28404. },
  28405. frontDressed: {
  28406. height: math.unit(4 + 9 / 12, "feet"),
  28407. weight: math.unit(130, "lb"),
  28408. name: "Front (Dressed)",
  28409. image: {
  28410. source: "./media/characters/anchovie/front-dressed.svg",
  28411. extra: 382 / 350,
  28412. bottom: 25 / 409
  28413. }
  28414. },
  28415. backDressed: {
  28416. height: math.unit(4 + 9 / 12, "feet"),
  28417. weight: math.unit(130, "lb"),
  28418. name: "Back (Dressed)",
  28419. image: {
  28420. source: "./media/characters/anchovie/back-dressed.svg",
  28421. extra: 385 / 352,
  28422. bottom: 16.6 / 402
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Micro",
  28429. height: math.unit(6.4, "inches")
  28430. },
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(4 + 9 / 12, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(2, "meters"),
  28443. weight: math.unit(180, "lb"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/acidrenamon/front.svg",
  28447. extra: 987 / 890,
  28448. bottom: 22.8 / 1009
  28449. }
  28450. },
  28451. back: {
  28452. height: math.unit(2, "meters"),
  28453. weight: math.unit(180, "lb"),
  28454. name: "Back",
  28455. image: {
  28456. source: "./media/characters/acidrenamon/back.svg",
  28457. extra: 983 / 891,
  28458. bottom: 8.4 / 992
  28459. }
  28460. },
  28461. head: {
  28462. height: math.unit(1.92, "feet"),
  28463. name: "Head",
  28464. image: {
  28465. source: "./media/characters/acidrenamon/head.svg"
  28466. }
  28467. },
  28468. rump: {
  28469. height: math.unit(1.72, "feet"),
  28470. name: "Rump",
  28471. image: {
  28472. source: "./media/characters/acidrenamon/rump.svg"
  28473. }
  28474. },
  28475. tail: {
  28476. height: math.unit(4.2, "feet"),
  28477. name: "Tail",
  28478. image: {
  28479. source: "./media/characters/acidrenamon/tail.svg"
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(2, "meters"),
  28487. default: true
  28488. },
  28489. {
  28490. name: "Minimacro",
  28491. height: math.unit(7, "meters")
  28492. },
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(200, "meters")
  28496. },
  28497. {
  28498. name: "Gigamacro",
  28499. height: math.unit(0.2, "earths")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(152, "feet"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/kenzie-lee/front.svg",
  28511. extra: 1869/1774,
  28512. bottom: 128/1997
  28513. }
  28514. },
  28515. side: {
  28516. height: math.unit(86, "feet"),
  28517. name: "Side",
  28518. image: {
  28519. source: "./media/characters/kenzie-lee/side.svg",
  28520. extra: 930/815,
  28521. bottom: 177/1107
  28522. }
  28523. },
  28524. paw: {
  28525. height: math.unit(15, "feet"),
  28526. name: "Paw",
  28527. image: {
  28528. source: "./media/characters/kenzie-lee/paw.svg"
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Kenzie Flea",
  28535. height: math.unit(2, "mm"),
  28536. default: true
  28537. },
  28538. {
  28539. name: "Micro",
  28540. height: math.unit(2, "inches")
  28541. },
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(152, "feet")
  28545. },
  28546. {
  28547. name: "Megamacro",
  28548. height: math.unit(7, "miles")
  28549. },
  28550. {
  28551. name: "Gigamacro",
  28552. height: math.unit(8000, "miles")
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(6, "feet"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/withers/front.svg",
  28564. extra: 1935/1760,
  28565. bottom: 72/2007
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(6, "feet"),
  28570. name: "Back",
  28571. image: {
  28572. source: "./media/characters/withers/back.svg",
  28573. extra: 1944/1792,
  28574. bottom: 12/1956
  28575. }
  28576. },
  28577. dressed: {
  28578. height: math.unit(6, "feet"),
  28579. name: "Dressed",
  28580. image: {
  28581. source: "./media/characters/withers/dressed.svg",
  28582. extra: 1937/1765,
  28583. bottom: 73/2010
  28584. }
  28585. },
  28586. phase1: {
  28587. height: math.unit(1.1, "feet"),
  28588. name: "Phase 1",
  28589. image: {
  28590. source: "./media/characters/withers/phase-1.svg",
  28591. extra: 1885/1232,
  28592. bottom: 0/1885
  28593. }
  28594. },
  28595. phase2: {
  28596. height: math.unit(1.05, "feet"),
  28597. name: "Phase 2",
  28598. image: {
  28599. source: "./media/characters/withers/phase-2.svg",
  28600. extra: 1792/1090,
  28601. bottom: 0/1792
  28602. }
  28603. },
  28604. partyWipe: {
  28605. height: math.unit(1.1, "feet"),
  28606. name: "Party Wipe",
  28607. image: {
  28608. source: "./media/characters/withers/party-wipe.svg",
  28609. extra: 1864/1207,
  28610. bottom: 0/1864
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Macro",
  28617. height: math.unit(167, "feet"),
  28618. default: true
  28619. },
  28620. {
  28621. name: "Megamacro",
  28622. height: math.unit(15, "miles")
  28623. }
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(6 + 7 / 12, "feet"),
  28631. weight: math.unit(250, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/nemoskii/front.svg",
  28635. extra: 2270 / 1734,
  28636. bottom: 86 / 2354
  28637. }
  28638. },
  28639. back: {
  28640. height: math.unit(6 + 7 / 12, "feet"),
  28641. weight: math.unit(250, "lb"),
  28642. name: "Back",
  28643. image: {
  28644. source: "./media/characters/nemoskii/back.svg",
  28645. extra: 1845 / 1788,
  28646. bottom: 10.5 / 1852
  28647. }
  28648. },
  28649. head: {
  28650. height: math.unit(1.31, "feet"),
  28651. name: "Head",
  28652. image: {
  28653. source: "./media/characters/nemoskii/head.svg"
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Micro",
  28660. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28661. },
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(6 + 7 / 12, "feet"),
  28665. default: true
  28666. },
  28667. {
  28668. name: "Macro",
  28669. height: math.unit((6 + 7 / 12) * 150, "feet")
  28670. },
  28671. {
  28672. name: "Macro+",
  28673. height: math.unit((6 + 7 / 12) * 500, "feet")
  28674. },
  28675. {
  28676. name: "Megamacro",
  28677. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(1, "mile"),
  28686. weight: math.unit(265261.9, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/shui/front.svg",
  28690. extra: 1633 / 1564,
  28691. bottom: 91.5 / 1726
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Macro",
  28698. height: math.unit(1, "mile"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(12 + 6 / 12, "feet"),
  28708. weight: math.unit(1342, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/arokh-takakura/front.svg",
  28712. extra: 1089 / 1043,
  28713. bottom: 77.4 / 1176.7
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(12 + 6 / 12, "feet"),
  28718. weight: math.unit(1342, "lb"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/arokh-takakura/back.svg",
  28722. extra: 1046 / 1019,
  28723. bottom: 102 / 1150
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Big",
  28730. height: math.unit(12 + 6 / 12, "feet"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(5 + 6 / 12, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/theo/front.svg",
  28744. extra: 1184 / 1131,
  28745. bottom: 7.4 / 1191
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Micro",
  28752. height: math.unit(5, "inches")
  28753. },
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(5 + 6 / 12, "feet"),
  28757. default: true
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28763. {
  28764. front: {
  28765. height: math.unit(5 + 9 / 12, "feet"),
  28766. weight: math.unit(130, "lb"),
  28767. name: "Front",
  28768. image: {
  28769. source: "./media/characters/cecelia-swift/front.svg",
  28770. extra: 502 / 484,
  28771. bottom: 23 / 523
  28772. }
  28773. },
  28774. back: {
  28775. height: math.unit(5 + 9 / 12, "feet"),
  28776. weight: math.unit(130, "lb"),
  28777. name: "Back",
  28778. image: {
  28779. source: "./media/characters/cecelia-swift/back.svg",
  28780. extra: 499 / 485,
  28781. bottom: 12 / 511
  28782. }
  28783. },
  28784. head: {
  28785. height: math.unit(0.90, "feet"),
  28786. name: "Head",
  28787. image: {
  28788. source: "./media/characters/cecelia-swift/head.svg"
  28789. }
  28790. },
  28791. rump: {
  28792. height: math.unit(1.75, "feet"),
  28793. name: "Rump",
  28794. image: {
  28795. source: "./media/characters/cecelia-swift/rump.svg"
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(5 + 9 / 12, "feet"),
  28803. default: true
  28804. },
  28805. {
  28806. name: "Big",
  28807. height: math.unit(50, "feet")
  28808. },
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(100, "feet")
  28812. },
  28813. {
  28814. name: "Macro+",
  28815. height: math.unit(500, "feet")
  28816. },
  28817. {
  28818. name: "Macro++",
  28819. height: math.unit(1000, "feet")
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28825. {
  28826. front: {
  28827. height: math.unit(6, "feet"),
  28828. weight: math.unit(150, "lb"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/kaunan/front.svg",
  28832. extra: 2890 / 2523,
  28833. bottom: 49 / 2939
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Macro",
  28840. height: math.unit(150, "feet"),
  28841. default: true
  28842. },
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28847. {
  28848. front: {
  28849. height: math.unit(175, "cm"),
  28850. weight: math.unit(60, "kg"),
  28851. name: "Front",
  28852. image: {
  28853. source: "./media/characters/fei/front.svg",
  28854. extra: 1873/1723,
  28855. bottom: 53/1926
  28856. }
  28857. },
  28858. },
  28859. [
  28860. {
  28861. name: "Mortal",
  28862. height: math.unit(175, "cm")
  28863. },
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(3500, "m"),
  28867. default: true
  28868. },
  28869. {
  28870. name: "Stroll",
  28871. height: math.unit(17.5, "km")
  28872. },
  28873. {
  28874. name: "Showoff",
  28875. height: math.unit(175, "km")
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(7, "feet"),
  28884. weight: math.unit(1000, "kg"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/edrax/front.svg",
  28888. extra: 2838 / 2550,
  28889. bottom: 130 / 2968
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Small",
  28896. height: math.unit(7, "feet")
  28897. },
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(1500, "meters")
  28901. },
  28902. {
  28903. name: "Mega",
  28904. height: math.unit(12000000, "km"),
  28905. default: true
  28906. },
  28907. {
  28908. name: "Megamacro",
  28909. height: math.unit(10600000, "lightyears")
  28910. },
  28911. {
  28912. name: "Hypermacro",
  28913. height: math.unit(256, "yottameters")
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(10, "feet"),
  28922. weight: math.unit(750, "lb"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/clove/front.svg",
  28926. extra: 1918/1751,
  28927. bottom: 52/1970
  28928. }
  28929. },
  28930. back: {
  28931. height: math.unit(10, "feet"),
  28932. weight: math.unit(750, "lb"),
  28933. name: "Back",
  28934. image: {
  28935. source: "./media/characters/clove/back.svg",
  28936. extra: 1912/1747,
  28937. bottom: 50/1962
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(10, "feet"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(4, "feet"),
  28954. weight: math.unit(50, "lb"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/alex-rabbit/front.svg",
  28958. extra: 507 / 458,
  28959. bottom: 18.5 / 527
  28960. }
  28961. },
  28962. back: {
  28963. height: math.unit(4, "feet"),
  28964. weight: math.unit(50, "lb"),
  28965. name: "Back",
  28966. image: {
  28967. source: "./media/characters/alex-rabbit/back.svg",
  28968. extra: 502 / 460,
  28969. bottom: 18.9 / 521
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(4, "feet"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(1 + 3 / 12, "feet"),
  28986. weight: math.unit(80, "lb"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/zander-rose/front.svg",
  28990. extra: 916 / 797,
  28991. bottom: 17 / 933
  28992. }
  28993. },
  28994. back: {
  28995. height: math.unit(1 + 3 / 12, "feet"),
  28996. weight: math.unit(80, "lb"),
  28997. name: "Back",
  28998. image: {
  28999. source: "./media/characters/zander-rose/back.svg",
  29000. extra: 903 / 779,
  29001. bottom: 31 / 934
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(1 + 3 / 12, "feet"),
  29009. default: true
  29010. },
  29011. ]
  29012. ))
  29013. characterMakers.push(() => makeCharacter(
  29014. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29015. {
  29016. anthro: {
  29017. height: math.unit(6, "feet"),
  29018. weight: math.unit(150, "lb"),
  29019. name: "Anthro",
  29020. image: {
  29021. source: "./media/characters/razz/anthro.svg",
  29022. extra: 1437 / 1343,
  29023. bottom: 48 / 1485
  29024. }
  29025. },
  29026. feral: {
  29027. height: math.unit(6, "feet"),
  29028. weight: math.unit(150, "lb"),
  29029. name: "Feral",
  29030. image: {
  29031. source: "./media/characters/razz/feral.svg",
  29032. extra: 2569 / 1385,
  29033. bottom: 95 / 2664
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(6, "feet"),
  29041. default: true
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(9 + 4 / 12, "feet"),
  29050. weight: math.unit(500, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/morrigan/front.svg",
  29054. extra: 2707 / 2579,
  29055. bottom: 156 / 2863
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Normal",
  29062. height: math.unit(9 + 4 / 12, "feet"),
  29063. default: true
  29064. },
  29065. ]
  29066. ))
  29067. characterMakers.push(() => makeCharacter(
  29068. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29069. {
  29070. front: {
  29071. height: math.unit(5, "stories"),
  29072. weight: math.unit(4000, "lb"),
  29073. name: "Front",
  29074. image: {
  29075. source: "./media/characters/jenene/front.svg",
  29076. extra: 1780 / 1710,
  29077. bottom: 57 / 1837
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(5, "stories"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29091. {
  29092. taurSfw: {
  29093. height: math.unit(10, "meters"),
  29094. weight: math.unit(17500, "kg"),
  29095. name: "Taur",
  29096. image: {
  29097. source: "./media/characters/faey/taur-sfw.svg",
  29098. extra: 1200 / 968,
  29099. bottom: 41 / 1241
  29100. }
  29101. },
  29102. chestmaw: {
  29103. height: math.unit(2.01, "meters"),
  29104. name: "Chestmaw",
  29105. image: {
  29106. source: "./media/characters/faey/chestmaw.svg"
  29107. }
  29108. },
  29109. foot: {
  29110. height: math.unit(2.43, "meters"),
  29111. name: "Foot",
  29112. image: {
  29113. source: "./media/characters/faey/foot.svg"
  29114. }
  29115. },
  29116. jaws: {
  29117. height: math.unit(1.66, "meters"),
  29118. name: "Jaws",
  29119. image: {
  29120. source: "./media/characters/faey/jaws.svg"
  29121. }
  29122. },
  29123. tongues: {
  29124. height: math.unit(2.01, "meters"),
  29125. name: "Tongues",
  29126. image: {
  29127. source: "./media/characters/faey/tongues.svg"
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Small",
  29134. height: math.unit(10, "meters"),
  29135. default: true
  29136. },
  29137. {
  29138. name: "Big",
  29139. height: math.unit(500000, "km")
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(7, "feet"),
  29148. weight: math.unit(275, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/roku/front.svg",
  29152. extra: 903 / 878,
  29153. bottom: 37 / 940
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(7, "feet"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(500, "feet")
  29166. },
  29167. {
  29168. name: "Megamacro",
  29169. height: math.unit(200, "miles")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(6 + 2 / 12, "feet"),
  29178. weight: math.unit(150, "lb"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/lira/front.svg",
  29182. extra: 1727 / 1605,
  29183. bottom: 26 / 1753
  29184. }
  29185. },
  29186. back: {
  29187. height: math.unit(6 + 2 / 12, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Back",
  29190. image: {
  29191. source: "./media/characters/lira/back.svg",
  29192. extra: 1713/1621,
  29193. bottom: 20/1733
  29194. }
  29195. },
  29196. hand: {
  29197. height: math.unit(0.75, "feet"),
  29198. name: "Hand",
  29199. image: {
  29200. source: "./media/characters/lira/hand.svg"
  29201. }
  29202. },
  29203. maw: {
  29204. height: math.unit(0.65, "feet"),
  29205. name: "Maw",
  29206. image: {
  29207. source: "./media/characters/lira/maw.svg"
  29208. }
  29209. },
  29210. pawDigi: {
  29211. height: math.unit(1.6, "feet"),
  29212. name: "Paw Digi",
  29213. image: {
  29214. source: "./media/characters/lira/paw-digi.svg"
  29215. }
  29216. },
  29217. pawPlanti: {
  29218. height: math.unit(1.4, "feet"),
  29219. name: "Paw Planti",
  29220. image: {
  29221. source: "./media/characters/lira/paw-planti.svg"
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(6 + 2 / 12, "feet"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Macro",
  29233. height: math.unit(100, "feet")
  29234. },
  29235. {
  29236. name: "Macro²",
  29237. height: math.unit(1600, "feet")
  29238. },
  29239. {
  29240. name: "Planetary",
  29241. height: math.unit(20, "earths")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(6, "feet"),
  29250. weight: math.unit(150, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/hadjet/front.svg",
  29254. extra: 1480 / 1346,
  29255. bottom: 26 / 1506
  29256. }
  29257. },
  29258. frontNsfw: {
  29259. height: math.unit(6, "feet"),
  29260. weight: math.unit(150, "lb"),
  29261. name: "Front (NSFW)",
  29262. image: {
  29263. source: "./media/characters/hadjet/front-nsfw.svg",
  29264. extra: 1440 / 1358,
  29265. bottom: 52 / 1492
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Macro",
  29272. height: math.unit(10, "stories"),
  29273. default: true
  29274. },
  29275. {
  29276. name: "Megamacro",
  29277. height: math.unit(1.5, "miles")
  29278. },
  29279. {
  29280. name: "Megamacro+",
  29281. height: math.unit(5, "miles")
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29287. {
  29288. side: {
  29289. height: math.unit(106, "feet"),
  29290. weight: math.unit(500, "tonnes"),
  29291. name: "Side",
  29292. image: {
  29293. source: "./media/characters/kodran/side.svg",
  29294. extra: 553 / 480,
  29295. bottom: 33 / 586
  29296. }
  29297. },
  29298. front: {
  29299. height: math.unit(132, "feet"),
  29300. weight: math.unit(500, "tonnes"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/kodran/front.svg",
  29304. extra: 667 / 643,
  29305. bottom: 42 / 709
  29306. }
  29307. },
  29308. flying: {
  29309. height: math.unit(350, "feet"),
  29310. weight: math.unit(500, "tonnes"),
  29311. name: "Flying",
  29312. image: {
  29313. source: "./media/characters/kodran/flying.svg"
  29314. }
  29315. },
  29316. foot: {
  29317. height: math.unit(33, "feet"),
  29318. name: "Foot",
  29319. image: {
  29320. source: "./media/characters/kodran/foot.svg"
  29321. }
  29322. },
  29323. footFront: {
  29324. height: math.unit(19, "feet"),
  29325. name: "Foot (Front)",
  29326. image: {
  29327. source: "./media/characters/kodran/foot-front.svg",
  29328. extra: 261 / 261,
  29329. bottom: 91 / 352
  29330. }
  29331. },
  29332. headFront: {
  29333. height: math.unit(53, "feet"),
  29334. name: "Head (Front)",
  29335. image: {
  29336. source: "./media/characters/kodran/head-front.svg"
  29337. }
  29338. },
  29339. headSide: {
  29340. height: math.unit(65, "feet"),
  29341. name: "Head (Side)",
  29342. image: {
  29343. source: "./media/characters/kodran/head-side.svg"
  29344. }
  29345. },
  29346. throat: {
  29347. height: math.unit(79, "feet"),
  29348. name: "Throat",
  29349. image: {
  29350. source: "./media/characters/kodran/throat.svg"
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Large",
  29357. height: math.unit(106, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29364. {
  29365. side: {
  29366. height: math.unit(11, "feet"),
  29367. weight: math.unit(150, "lb"),
  29368. name: "Side",
  29369. image: {
  29370. source: "./media/characters/pyxaron/side.svg",
  29371. extra: 305 / 195,
  29372. bottom: 17 / 322
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(11, "feet"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(6, "feet"),
  29389. weight: math.unit(150, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/meep/front.svg",
  29393. extra: 88 / 80,
  29394. bottom: 6 / 94
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Fun Sized",
  29401. height: math.unit(2, "inches"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Friend Sized",
  29406. height: math.unit(8, "inches")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(15, "feet"),
  29415. weight: math.unit(2500, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/holly-rabbit/front.svg",
  29419. extra: 1433 / 1233,
  29420. bottom: 125 / 1558
  29421. }
  29422. },
  29423. dick: {
  29424. height: math.unit(4.6, "feet"),
  29425. name: "Dick",
  29426. image: {
  29427. source: "./media/characters/holly-rabbit/dick.svg"
  29428. }
  29429. },
  29430. },
  29431. [
  29432. {
  29433. name: "Normal",
  29434. height: math.unit(15, "feet"),
  29435. default: true
  29436. },
  29437. {
  29438. name: "Macro",
  29439. height: math.unit(250, "feet")
  29440. },
  29441. {
  29442. name: "Macro+",
  29443. height: math.unit(2500, "feet")
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(3.02, "meters"),
  29452. weight: math.unit(500, "kg"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/drena/front.svg",
  29456. extra: 282 / 243,
  29457. bottom: 8 / 290
  29458. }
  29459. },
  29460. side: {
  29461. height: math.unit(3.02, "meters"),
  29462. weight: math.unit(500, "kg"),
  29463. name: "Side",
  29464. image: {
  29465. source: "./media/characters/drena/side.svg",
  29466. extra: 280 / 245,
  29467. bottom: 10 / 290
  29468. }
  29469. },
  29470. back: {
  29471. height: math.unit(3.02, "meters"),
  29472. weight: math.unit(500, "kg"),
  29473. name: "Back",
  29474. image: {
  29475. source: "./media/characters/drena/back.svg",
  29476. extra: 278 / 243,
  29477. bottom: 2 / 280
  29478. }
  29479. },
  29480. foot: {
  29481. height: math.unit(0.75, "meters"),
  29482. name: "Foot",
  29483. image: {
  29484. source: "./media/characters/drena/foot.svg"
  29485. }
  29486. },
  29487. maw: {
  29488. height: math.unit(0.82, "meters"),
  29489. name: "Maw",
  29490. image: {
  29491. source: "./media/characters/drena/maw.svg"
  29492. }
  29493. },
  29494. eating: {
  29495. height: math.unit(0.75, "meters"),
  29496. name: "Eating",
  29497. image: {
  29498. source: "./media/characters/drena/eating.svg"
  29499. }
  29500. },
  29501. rump: {
  29502. height: math.unit(0.93, "meters"),
  29503. name: "Rump",
  29504. image: {
  29505. source: "./media/characters/drena/rump.svg"
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(3.02, "meters"),
  29513. default: true
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(6 + 4 / 12, "feet"),
  29522. weight: math.unit(250, "lb"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/remmyzilla/front.svg",
  29526. extra: 4033 / 3588,
  29527. bottom: 123 / 4156
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(6 + 4 / 12, "feet"),
  29532. weight: math.unit(250, "lb"),
  29533. name: "Back",
  29534. image: {
  29535. source: "./media/characters/remmyzilla/back.svg",
  29536. extra: 2687 / 2555,
  29537. bottom: 48 / 2735
  29538. }
  29539. },
  29540. paw: {
  29541. height: math.unit(1.73, "feet"),
  29542. name: "Paw",
  29543. image: {
  29544. source: "./media/characters/remmyzilla/paw.svg"
  29545. }
  29546. },
  29547. maw: {
  29548. height: math.unit(1.73, "feet"),
  29549. name: "Maw",
  29550. image: {
  29551. source: "./media/characters/remmyzilla/maw.svg"
  29552. }
  29553. },
  29554. },
  29555. [
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(6 + 4 / 12, "feet")
  29559. },
  29560. {
  29561. name: "Minimacro",
  29562. height: math.unit(12 + 8 / 12, "feet")
  29563. },
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(640, "feet"),
  29567. default: true
  29568. },
  29569. {
  29570. name: "Megamacro",
  29571. height: math.unit(6400, "feet")
  29572. },
  29573. {
  29574. name: "Gigamacro",
  29575. height: math.unit(64000, "miles")
  29576. },
  29577. ]
  29578. ))
  29579. characterMakers.push(() => makeCharacter(
  29580. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29581. {
  29582. front: {
  29583. height: math.unit(2.5, "meters"),
  29584. weight: math.unit(300, "lb"),
  29585. name: "Front",
  29586. image: {
  29587. source: "./media/characters/lawrence/front.svg",
  29588. extra: 357 / 335,
  29589. bottom: 30 / 387
  29590. }
  29591. },
  29592. back: {
  29593. height: math.unit(2.5, "meters"),
  29594. weight: math.unit(300, "lb"),
  29595. name: "Back",
  29596. image: {
  29597. source: "./media/characters/lawrence/back.svg",
  29598. extra: 357 / 338,
  29599. bottom: 16 / 373
  29600. }
  29601. },
  29602. head: {
  29603. height: math.unit(0.9, "meter"),
  29604. name: "Head",
  29605. image: {
  29606. source: "./media/characters/lawrence/head.svg"
  29607. }
  29608. },
  29609. maw: {
  29610. height: math.unit(0.7, "meter"),
  29611. name: "Maw",
  29612. image: {
  29613. source: "./media/characters/lawrence/maw.svg"
  29614. }
  29615. },
  29616. footBottom: {
  29617. height: math.unit(0.5, "meter"),
  29618. name: "Foot (Bottom)",
  29619. image: {
  29620. source: "./media/characters/lawrence/foot-bottom.svg"
  29621. }
  29622. },
  29623. footTop: {
  29624. height: math.unit(0.5, "meter"),
  29625. name: "Foot (Top)",
  29626. image: {
  29627. source: "./media/characters/lawrence/foot-top.svg"
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(2.5, "meters"),
  29635. default: true
  29636. },
  29637. {
  29638. name: "Macro",
  29639. height: math.unit(95, "meters")
  29640. },
  29641. {
  29642. name: "Megamacro",
  29643. height: math.unit(150, "km")
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29649. {
  29650. front: {
  29651. height: math.unit(4.2, "meters"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/sydney/front.svg",
  29655. extra: 1323 / 1277,
  29656. bottom: 111 / 1434
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(4.2, "meters"),
  29664. default: true
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29670. {
  29671. back: {
  29672. height: math.unit(201, "feet"),
  29673. name: "Back",
  29674. image: {
  29675. source: "./media/characters/jessica/back.svg",
  29676. extra: 273 / 259,
  29677. bottom: 7 / 280
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(201, "feet"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "Megamacro",
  29689. height: math.unit(8, "miles")
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29695. {
  29696. side: {
  29697. height: math.unit(5.6, "m"),
  29698. weight: math.unit(8000, "kg"),
  29699. name: "Side",
  29700. image: {
  29701. source: "./media/characters/victoria/side.svg",
  29702. extra: 1542/1229,
  29703. bottom: 124/1666
  29704. }
  29705. },
  29706. maw: {
  29707. height: math.unit(7.14, "feet"),
  29708. name: "Maw",
  29709. image: {
  29710. source: "./media/characters/victoria/maw.svg"
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(5.6, "m"),
  29718. default: true
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29724. {
  29725. front: {
  29726. height: math.unit(5 + 6 / 12, "feet"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/cat/front.svg",
  29730. extra: 1449/1295,
  29731. bottom: 34/1483
  29732. },
  29733. form: "cat",
  29734. default: true
  29735. },
  29736. back: {
  29737. height: math.unit(5 + 6 / 12, "feet"),
  29738. name: "Back",
  29739. image: {
  29740. source: "./media/characters/cat/back.svg",
  29741. extra: 1466/1301,
  29742. bottom: 19/1485
  29743. },
  29744. form: "cat"
  29745. },
  29746. taur: {
  29747. height: math.unit(7, "feet"),
  29748. name: "Taur",
  29749. image: {
  29750. source: "./media/characters/cat/taur.svg",
  29751. extra: 1389/1233,
  29752. bottom: 83/1472
  29753. },
  29754. form: "taur",
  29755. default: true
  29756. },
  29757. lucarioFront: {
  29758. height: math.unit(4, "feet"),
  29759. name: "Lucario (Front)",
  29760. image: {
  29761. source: "./media/characters/cat/lucario-front.svg",
  29762. extra: 1149/1019,
  29763. bottom: 84/1233
  29764. },
  29765. form: "lucario",
  29766. default: true
  29767. },
  29768. lucarioBack: {
  29769. height: math.unit(4, "feet"),
  29770. name: "Lucario (Back)",
  29771. image: {
  29772. source: "./media/characters/cat/lucario-back.svg",
  29773. extra: 1190/1059,
  29774. bottom: 33/1223
  29775. },
  29776. form: "lucario"
  29777. },
  29778. megaLucario: {
  29779. height: math.unit(4, "feet"),
  29780. name: "Mega Lucario",
  29781. image: {
  29782. source: "./media/characters/cat/mega-lucario.svg",
  29783. extra: 1515 / 1319,
  29784. bottom: 63 / 1578
  29785. },
  29786. form: "lucario"
  29787. },
  29788. nickit: {
  29789. height: math.unit(2, "feet"),
  29790. name: "Nickit",
  29791. image: {
  29792. source: "./media/characters/cat/nickit.svg",
  29793. extra: 1980 / 1585,
  29794. bottom: 102 / 2082
  29795. },
  29796. form: "nickit",
  29797. default: true
  29798. },
  29799. lopunnyFront: {
  29800. height: math.unit(5, "feet"),
  29801. name: "Lopunny (Front)",
  29802. image: {
  29803. source: "./media/characters/cat/lopunny-front.svg",
  29804. extra: 1782 / 1469,
  29805. bottom: 38 / 1820
  29806. },
  29807. form: "lopunny",
  29808. default: true
  29809. },
  29810. lopunnyBack: {
  29811. height: math.unit(5, "feet"),
  29812. name: "Lopunny (Back)",
  29813. image: {
  29814. source: "./media/characters/cat/lopunny-back.svg",
  29815. extra: 1660 / 1490,
  29816. bottom: 25 / 1685
  29817. },
  29818. form: "lopunny"
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Really small",
  29824. height: math.unit(1, "nm")
  29825. },
  29826. {
  29827. name: "Micro",
  29828. height: math.unit(5, "inches")
  29829. },
  29830. {
  29831. name: "Normal",
  29832. height: math.unit(5 + 6 / 12, "feet"),
  29833. default: true
  29834. },
  29835. {
  29836. name: "Macro",
  29837. height: math.unit(50, "feet")
  29838. },
  29839. {
  29840. name: "Macro+",
  29841. height: math.unit(150, "feet")
  29842. },
  29843. {
  29844. name: "Megamacro",
  29845. height: math.unit(100, "miles")
  29846. },
  29847. ]
  29848. ))
  29849. characterMakers.push(() => makeCharacter(
  29850. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29851. {
  29852. front: {
  29853. height: math.unit(63.4, "meters"),
  29854. weight: math.unit(3.28349e+6, "kilograms"),
  29855. name: "Front",
  29856. image: {
  29857. source: "./media/characters/kirina-violet/front.svg",
  29858. extra: 2812 / 2725,
  29859. bottom: 0 / 2812
  29860. }
  29861. },
  29862. back: {
  29863. height: math.unit(63.4, "meters"),
  29864. weight: math.unit(3.28349e+6, "kilograms"),
  29865. name: "Back",
  29866. image: {
  29867. source: "./media/characters/kirina-violet/back.svg",
  29868. extra: 2812 / 2725,
  29869. bottom: 0 / 2812
  29870. }
  29871. },
  29872. mouth: {
  29873. height: math.unit(4.35, "meters"),
  29874. name: "Mouth",
  29875. image: {
  29876. source: "./media/characters/kirina-violet/mouth.svg"
  29877. }
  29878. },
  29879. paw: {
  29880. height: math.unit(5.6, "meters"),
  29881. name: "Paw",
  29882. image: {
  29883. source: "./media/characters/kirina-violet/paw.svg"
  29884. }
  29885. },
  29886. tail: {
  29887. height: math.unit(18, "meters"),
  29888. name: "Tail",
  29889. image: {
  29890. source: "./media/characters/kirina-violet/tail.svg"
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(63.4, "meters"),
  29898. default: true
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(75, "feet"),
  29907. name: "Front",
  29908. image: {
  29909. source: "./media/characters/cat-gigachu/front.svg",
  29910. extra: 1239/1027,
  29911. bottom: 32/1271
  29912. }
  29913. },
  29914. back: {
  29915. height: math.unit(75, "feet"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/cat-gigachu/back.svg",
  29919. extra: 1229/1030,
  29920. bottom: 9/1238
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Dynamax",
  29927. height: math.unit(75, "feet"),
  29928. default: true
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(150, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/sfaiyan/front.svg",
  29941. extra: 999 / 978,
  29942. bottom: 5 / 1004
  29943. }
  29944. },
  29945. },
  29946. [
  29947. {
  29948. name: "Normal",
  29949. height: math.unit(1.82, "meters")
  29950. },
  29951. {
  29952. name: "Giant",
  29953. height: math.unit(2.27, "km"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(179, "cm"),
  29963. weight: math.unit(100, "kg"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/raunehkeli/front.svg",
  29967. extra: 1934 / 1926,
  29968. bottom: 0 / 1934
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Normal",
  29975. height: math.unit(179, "cm")
  29976. },
  29977. {
  29978. name: "Maximum",
  29979. height: math.unit(575, "meters"),
  29980. default: true
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(6, "feet"),
  29989. weight: math.unit(150, "lb"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29993. extra: 2625 / 2518,
  29994. bottom: 60 / 2685
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Normal",
  30001. height: math.unit(6 + 2 / 12, "feet")
  30002. },
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(1180, "feet"),
  30006. default: true
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30012. {
  30013. front: {
  30014. height: math.unit(5 + 6 / 12, "feet"),
  30015. weight: math.unit(108, "lb"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/lilith-zott/front.svg",
  30019. extra: 2510 / 2238,
  30020. bottom: 100 / 2610
  30021. }
  30022. },
  30023. frontDressed: {
  30024. height: math.unit(5 + 6 / 12, "feet"),
  30025. weight: math.unit(108, "lb"),
  30026. name: "Front (Dressed)",
  30027. image: {
  30028. source: "./media/characters/lilith-zott/front-dressed.svg",
  30029. extra: 2510 / 2238,
  30030. bottom: 100 / 2610
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(5 + 6 / 12, "feet")
  30038. },
  30039. {
  30040. name: "Macro",
  30041. height: math.unit(1030, "feet"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(6, "feet"),
  30051. weight: math.unit(150, "lb"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30055. extra: 2567 / 2435,
  30056. bottom: 39 / 2606
  30057. }
  30058. },
  30059. frontSuper: {
  30060. height: math.unit(6, "feet"),
  30061. name: "Front (Super)",
  30062. image: {
  30063. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30064. extra: 2567 / 2435,
  30065. bottom: 39 / 2606
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(5 + 10 / 12, "feet")
  30073. },
  30074. {
  30075. name: "Macro",
  30076. height: math.unit(1100, "feet"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(100, "miles"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/sona/front.svg",
  30089. extra: 2433 / 2201,
  30090. bottom: 53 / 2486
  30091. }
  30092. },
  30093. foot: {
  30094. height: math.unit(16.1, "miles"),
  30095. name: "Foot",
  30096. image: {
  30097. source: "./media/characters/sona/foot.svg"
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Macro",
  30104. height: math.unit(100, "miles"),
  30105. default: true
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(6, "feet"),
  30114. weight: math.unit(150, "lb"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/bailey/front.svg",
  30118. extra: 1778 / 1724,
  30119. bottom: 30 / 1808
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Micro",
  30126. height: math.unit(4, "inches")
  30127. },
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(5 + 5 / 12, "feet"),
  30131. default: true
  30132. },
  30133. {
  30134. name: "Macro",
  30135. height: math.unit(250, "feet")
  30136. },
  30137. {
  30138. name: "Megamacro",
  30139. height: math.unit(100, "miles")
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30145. {
  30146. front: {
  30147. height: math.unit(5 + 2 / 12, "feet"),
  30148. weight: math.unit(120, "lb"),
  30149. name: "Front",
  30150. image: {
  30151. source: "./media/characters/snaps/front.svg",
  30152. extra: 2370 / 2177,
  30153. bottom: 48 / 2418
  30154. }
  30155. },
  30156. back: {
  30157. height: math.unit(5 + 2 / 12, "feet"),
  30158. weight: math.unit(120, "lb"),
  30159. name: "Back",
  30160. image: {
  30161. source: "./media/characters/snaps/back.svg",
  30162. extra: 2408 / 2258,
  30163. bottom: 15 / 2423
  30164. }
  30165. },
  30166. },
  30167. [
  30168. {
  30169. name: "Micro",
  30170. height: math.unit(9, "inches")
  30171. },
  30172. {
  30173. name: "Normal",
  30174. height: math.unit(5 + 2 / 12, "feet"),
  30175. default: true
  30176. },
  30177. {
  30178. name: "Mini Macro",
  30179. height: math.unit(10, "feet")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(1.8, "meters"),
  30188. weight: math.unit(85, "kg"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/azteck/front.svg",
  30192. extra: 2815 / 2625,
  30193. bottom: 89 / 2904
  30194. }
  30195. },
  30196. back: {
  30197. height: math.unit(1.8, "meters"),
  30198. weight: math.unit(85, "kg"),
  30199. name: "Back",
  30200. image: {
  30201. source: "./media/characters/azteck/back.svg",
  30202. extra: 2856 / 2648,
  30203. bottom: 85 / 2941
  30204. }
  30205. },
  30206. frontDressed: {
  30207. height: math.unit(1.8, "meters"),
  30208. weight: math.unit(85, "kg"),
  30209. name: "Front (Dressed)",
  30210. image: {
  30211. source: "./media/characters/azteck/front-dressed.svg",
  30212. extra: 2147 / 2003,
  30213. bottom: 68 / 2215
  30214. }
  30215. },
  30216. head: {
  30217. height: math.unit(0.47, "meters"),
  30218. weight: math.unit(85, "kg"),
  30219. name: "Head",
  30220. image: {
  30221. source: "./media/characters/azteck/head.svg"
  30222. }
  30223. },
  30224. },
  30225. [
  30226. {
  30227. name: "Bite sized",
  30228. height: math.unit(16, "cm")
  30229. },
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(1.8, "meters"),
  30233. default: true
  30234. },
  30235. ]
  30236. ))
  30237. characterMakers.push(() => makeCharacter(
  30238. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30239. {
  30240. front: {
  30241. height: math.unit(6, "feet"),
  30242. weight: math.unit(150, "lb"),
  30243. name: "Front",
  30244. image: {
  30245. source: "./media/characters/pidge/front.svg",
  30246. extra: 1936/1820,
  30247. bottom: 0/1936
  30248. }
  30249. },
  30250. back: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(150, "lb"),
  30253. name: "Back",
  30254. image: {
  30255. source: "./media/characters/pidge/back.svg",
  30256. extra: 1938/1843,
  30257. bottom: 0/1938
  30258. }
  30259. },
  30260. casual: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Casual",
  30264. image: {
  30265. source: "./media/characters/pidge/casual.svg",
  30266. extra: 1936/1820,
  30267. bottom: 0/1936
  30268. }
  30269. },
  30270. tech: {
  30271. height: math.unit(6, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Tech",
  30274. image: {
  30275. source: "./media/characters/pidge/tech.svg",
  30276. extra: 1802/1682,
  30277. bottom: 0/1802
  30278. }
  30279. },
  30280. head: {
  30281. height: math.unit(1.61, "feet"),
  30282. name: "Head",
  30283. image: {
  30284. source: "./media/characters/pidge/head.svg"
  30285. }
  30286. },
  30287. collar: {
  30288. height: math.unit(0.82, "feet"),
  30289. name: "Collar",
  30290. image: {
  30291. source: "./media/characters/pidge/collar.svg"
  30292. }
  30293. },
  30294. },
  30295. [
  30296. {
  30297. name: "Macro",
  30298. height: math.unit(2, "mile"),
  30299. default: true
  30300. },
  30301. {
  30302. name: "PUPPY",
  30303. height: math.unit(20, "miles")
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(6, "feet"),
  30312. weight: math.unit(150, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/en/front.svg",
  30316. extra: 1697 / 1563,
  30317. bottom: 103 / 1800
  30318. }
  30319. },
  30320. back: {
  30321. height: math.unit(6, "feet"),
  30322. weight: math.unit(150, "lb"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/en/back.svg",
  30326. extra: 1700 / 1570,
  30327. bottom: 51 / 1751
  30328. }
  30329. },
  30330. frontDressed: {
  30331. height: math.unit(6, "feet"),
  30332. weight: math.unit(150, "lb"),
  30333. name: "Front (Dressed)",
  30334. image: {
  30335. source: "./media/characters/en/front-dressed.svg",
  30336. extra: 1697 / 1563,
  30337. bottom: 103 / 1800
  30338. }
  30339. },
  30340. backDressed: {
  30341. height: math.unit(6, "feet"),
  30342. weight: math.unit(150, "lb"),
  30343. name: "Back (Dressed)",
  30344. image: {
  30345. source: "./media/characters/en/back-dressed.svg",
  30346. extra: 1700 / 1570,
  30347. bottom: 51 / 1751
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Macro",
  30354. height: math.unit(210, "feet"),
  30355. default: true
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30361. {
  30362. front: {
  30363. height: math.unit(6, "feet"),
  30364. weight: math.unit(150, "lb"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/haze-orris/front.svg",
  30368. extra: 3975 / 3525,
  30369. bottom: 137 / 4112
  30370. }
  30371. },
  30372. },
  30373. [
  30374. {
  30375. name: "Micro",
  30376. height: math.unit(150, "mm"),
  30377. default: true
  30378. },
  30379. ]
  30380. ))
  30381. characterMakers.push(() => makeCharacter(
  30382. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30383. {
  30384. front: {
  30385. height: math.unit(6, "feet"),
  30386. weight: math.unit(150, "lb"),
  30387. name: "Front",
  30388. image: {
  30389. source: "./media/characters/casselene-yaro/front.svg",
  30390. extra: 4721 / 4541,
  30391. bottom: 82 / 4803
  30392. }
  30393. },
  30394. back: {
  30395. height: math.unit(6, "feet"),
  30396. weight: math.unit(150, "lb"),
  30397. name: "Back",
  30398. image: {
  30399. source: "./media/characters/casselene-yaro/back.svg",
  30400. extra: 4569 / 4377,
  30401. bottom: 69 / 4638
  30402. }
  30403. },
  30404. dressed: {
  30405. height: math.unit(6, "feet"),
  30406. weight: math.unit(150, "lb"),
  30407. name: "Dressed",
  30408. image: {
  30409. source: "./media/characters/casselene-yaro/dressed.svg",
  30410. extra: 4721 / 4541,
  30411. bottom: 82 / 4803
  30412. }
  30413. },
  30414. maw: {
  30415. height: math.unit(1, "feet"),
  30416. name: "Maw",
  30417. image: {
  30418. source: "./media/characters/casselene-yaro/maw.svg"
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Macro",
  30425. height: math.unit(190, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(10, "feet"),
  30435. weight: math.unit(15015, "lb"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/platine/front.svg",
  30439. extra: 1428/1353,
  30440. bottom: 31/1459
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(10, "feet"),
  30448. default: true
  30449. },
  30450. {
  30451. name: "Macro",
  30452. height: math.unit(100, "feet")
  30453. },
  30454. {
  30455. name: "Megamacro",
  30456. height: math.unit(1000, "feet")
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(15 + 5 / 12, "feet"),
  30465. weight: math.unit(4600, "lb"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/neapolitan-ananassa/front.svg",
  30469. extra: 2903 / 2736,
  30470. bottom: 0 / 2903
  30471. }
  30472. },
  30473. side: {
  30474. height: math.unit(15 + 5 / 12, "feet"),
  30475. weight: math.unit(4600, "lb"),
  30476. name: "Side",
  30477. image: {
  30478. source: "./media/characters/neapolitan-ananassa/side.svg",
  30479. extra: 2925 / 2719,
  30480. bottom: 0 / 2925
  30481. }
  30482. },
  30483. back: {
  30484. height: math.unit(15 + 5 / 12, "feet"),
  30485. weight: math.unit(4600, "lb"),
  30486. name: "Back",
  30487. image: {
  30488. source: "./media/characters/neapolitan-ananassa/back.svg",
  30489. extra: 2903 / 2736,
  30490. bottom: 0 / 2903
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(15 + 5 / 12, "feet"),
  30498. default: true
  30499. },
  30500. {
  30501. name: "Post-Millenium",
  30502. height: math.unit(35 + 5 / 12, "feet")
  30503. },
  30504. {
  30505. name: "Post-Era",
  30506. height: math.unit(450 + 5 / 12, "feet")
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(300, "meters"),
  30515. weight: math.unit(125000, "tonnes"),
  30516. name: "Front",
  30517. image: {
  30518. source: "./media/characters/pazuzu/front.svg",
  30519. extra: 877 / 794,
  30520. bottom: 47 / 924
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Macro",
  30527. height: math.unit(300, "meters"),
  30528. default: true
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30534. {
  30535. side: {
  30536. height: math.unit(10 + 7 / 12, "feet"),
  30537. weight: math.unit(2.5, "tons"),
  30538. name: "Side",
  30539. image: {
  30540. source: "./media/characters/aasha/side.svg",
  30541. extra: 1345 / 1245,
  30542. bottom: 111 / 1456
  30543. }
  30544. },
  30545. back: {
  30546. height: math.unit(10 + 7 / 12, "feet"),
  30547. weight: math.unit(2.5, "tons"),
  30548. name: "Back",
  30549. image: {
  30550. source: "./media/characters/aasha/back.svg",
  30551. extra: 1133 / 1057,
  30552. bottom: 257 / 1390
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(10 + 7 / 12, "feet"),
  30560. default: true
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(6 + 3 / 12, "feet"),
  30569. name: "Front",
  30570. image: {
  30571. source: "./media/characters/nevan/front.svg",
  30572. extra: 704 / 704,
  30573. bottom: 28 / 732
  30574. }
  30575. },
  30576. back: {
  30577. height: math.unit(6 + 3 / 12, "feet"),
  30578. name: "Back",
  30579. image: {
  30580. source: "./media/characters/nevan/back.svg",
  30581. extra: 714 / 714,
  30582. bottom: 21 / 735
  30583. }
  30584. },
  30585. frontFlaccid: {
  30586. height: math.unit(6 + 3 / 12, "feet"),
  30587. name: "Front (Flaccid)",
  30588. image: {
  30589. source: "./media/characters/nevan/front-flaccid.svg",
  30590. extra: 704 / 704,
  30591. bottom: 28 / 732
  30592. }
  30593. },
  30594. frontErect: {
  30595. height: math.unit(6 + 3 / 12, "feet"),
  30596. name: "Front (Erect)",
  30597. image: {
  30598. source: "./media/characters/nevan/front-erect.svg",
  30599. extra: 704 / 704,
  30600. bottom: 28 / 732
  30601. }
  30602. },
  30603. backFlaccid: {
  30604. height: math.unit(6 + 3 / 12, "feet"),
  30605. name: "Back (Flaccid)",
  30606. image: {
  30607. source: "./media/characters/nevan/back-flaccid.svg",
  30608. extra: 714 / 714,
  30609. bottom: 21 / 735
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Normal",
  30616. height: math.unit(6 + 3 / 12, "feet"),
  30617. default: true
  30618. },
  30619. ]
  30620. ))
  30621. characterMakers.push(() => makeCharacter(
  30622. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30623. {
  30624. front: {
  30625. height: math.unit(4, "feet"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/arhan/front.svg",
  30629. extra: 3368 / 3133,
  30630. bottom: 0 / 3368
  30631. }
  30632. },
  30633. side: {
  30634. height: math.unit(4, "feet"),
  30635. name: "Side",
  30636. image: {
  30637. source: "./media/characters/arhan/side.svg",
  30638. extra: 3347 / 3105,
  30639. bottom: 0 / 3347
  30640. }
  30641. },
  30642. tongue: {
  30643. height: math.unit(1.42, "feet"),
  30644. name: "Tongue",
  30645. image: {
  30646. source: "./media/characters/arhan/tongue.svg"
  30647. }
  30648. },
  30649. head: {
  30650. height: math.unit(0.85, "feet"),
  30651. name: "Head",
  30652. image: {
  30653. source: "./media/characters/arhan/head.svg"
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(4, "feet"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(5 + 7.5 / 12, "feet"),
  30670. weight: math.unit(120, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/digi-duncan/front.svg",
  30674. extra: 330 / 326,
  30675. bottom: 16 / 346
  30676. }
  30677. },
  30678. side: {
  30679. height: math.unit(5 + 7.5 / 12, "feet"),
  30680. weight: math.unit(120, "lb"),
  30681. name: "Side",
  30682. image: {
  30683. source: "./media/characters/digi-duncan/side.svg",
  30684. extra: 341 / 337,
  30685. bottom: 1 / 342
  30686. }
  30687. },
  30688. back: {
  30689. height: math.unit(5 + 7.5 / 12, "feet"),
  30690. weight: math.unit(120, "lb"),
  30691. name: "Back",
  30692. image: {
  30693. source: "./media/characters/digi-duncan/back.svg",
  30694. extra: 330 / 326,
  30695. bottom: 12 / 342
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Speck",
  30702. height: math.unit(0.25, "mm")
  30703. },
  30704. {
  30705. name: "Micro",
  30706. height: math.unit(5, "mm")
  30707. },
  30708. {
  30709. name: "Tiny",
  30710. height: math.unit(0.5, "inches"),
  30711. default: true
  30712. },
  30713. {
  30714. name: "Human",
  30715. height: math.unit(5 + 7.5 / 12, "feet")
  30716. },
  30717. {
  30718. name: "Minigiant",
  30719. height: math.unit(8 + 5.25, "feet")
  30720. },
  30721. {
  30722. name: "Giant",
  30723. height: math.unit(2000, "feet")
  30724. },
  30725. {
  30726. name: "Mega",
  30727. height: math.unit(371.1, "miles")
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(2, "meters"),
  30736. weight: math.unit(350, "kg"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30740. extra: 898 / 838,
  30741. bottom: 9 / 907
  30742. }
  30743. },
  30744. },
  30745. [
  30746. {
  30747. name: "Micro",
  30748. height: math.unit(8, "meters")
  30749. },
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(50, "meters"),
  30753. default: true
  30754. },
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(500, "meters")
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(6 + 6 / 12, "feet"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/khardesh/front.svg",
  30769. extra: 1788/1596,
  30770. bottom: 66/1854
  30771. }
  30772. },
  30773. back: {
  30774. height: math.unit(6 + 6 / 12, "feet"),
  30775. name: "Back",
  30776. image: {
  30777. source: "./media/characters/khardesh/back.svg",
  30778. extra: 1781/1584,
  30779. bottom: 68/1849
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Normal",
  30786. height: math.unit(6 + 6 / 12, "feet"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Normal+",
  30791. height: math.unit(4, "meters")
  30792. },
  30793. {
  30794. name: "Macro",
  30795. height: math.unit(50, "meters")
  30796. },
  30797. {
  30798. name: "Macro+",
  30799. height: math.unit(100, "meters")
  30800. },
  30801. {
  30802. name: "Megamacro",
  30803. height: math.unit(20, "km")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(6, "feet"),
  30812. weight: math.unit(150, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/kosho/front.svg",
  30816. extra: 1847 / 1847,
  30817. bottom: 86 / 1933
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Second-stage micro",
  30824. height: math.unit(0.5, "inches")
  30825. },
  30826. {
  30827. name: "First-stage micro",
  30828. height: math.unit(6, "inches")
  30829. },
  30830. {
  30831. name: "Normal",
  30832. height: math.unit(6, "feet"),
  30833. default: true
  30834. },
  30835. {
  30836. name: "First-stage macro",
  30837. height: math.unit(72, "feet")
  30838. },
  30839. {
  30840. name: "Second-stage macro",
  30841. height: math.unit(864, "feet")
  30842. },
  30843. ]
  30844. ))
  30845. characterMakers.push(() => makeCharacter(
  30846. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30847. {
  30848. normal: {
  30849. height: math.unit(4 + 6 / 12, "feet"),
  30850. name: "Normal",
  30851. image: {
  30852. source: "./media/characters/hydra/normal.svg",
  30853. extra: 2833 / 2634,
  30854. bottom: 68 / 2901
  30855. }
  30856. },
  30857. smol: {
  30858. height: math.unit(0.705, "inches"),
  30859. name: "Smol",
  30860. image: {
  30861. source: "./media/characters/hydra/smol.svg",
  30862. extra: 2715 / 2540,
  30863. bottom: 0 / 2715
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(4 + 6 / 12, "feet"),
  30871. default: true
  30872. }
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30877. {
  30878. front: {
  30879. height: math.unit(0.6, "cm"),
  30880. name: "Front",
  30881. image: {
  30882. source: "./media/characters/daz/front.svg",
  30883. extra: 1682 / 1164,
  30884. bottom: 42 / 1724
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(0.6, "cm"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(235, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/theo-pangolin/front.svg",
  30905. extra: 1996 / 1969,
  30906. bottom: 115 / 2111
  30907. }
  30908. },
  30909. back: {
  30910. height: math.unit(6, "feet"),
  30911. weight: math.unit(235, "lb"),
  30912. name: "Back",
  30913. image: {
  30914. source: "./media/characters/theo-pangolin/back.svg",
  30915. extra: 1979 / 1979,
  30916. bottom: 40 / 2019
  30917. }
  30918. },
  30919. feral: {
  30920. height: math.unit(2, "feet"),
  30921. weight: math.unit(30, "lb"),
  30922. name: "Feral",
  30923. image: {
  30924. source: "./media/characters/theo-pangolin/feral.svg",
  30925. extra: 803 / 791,
  30926. bottom: 181 / 984
  30927. }
  30928. },
  30929. footFive: {
  30930. height: math.unit(1.43, "feet"),
  30931. name: "Foot (Five Toes)",
  30932. image: {
  30933. source: "./media/characters/theo-pangolin/foot-five.svg"
  30934. }
  30935. },
  30936. footFour: {
  30937. height: math.unit(1.43, "feet"),
  30938. name: "Foot (Four Toes)",
  30939. image: {
  30940. source: "./media/characters/theo-pangolin/foot-four.svg"
  30941. }
  30942. },
  30943. handFour: {
  30944. height: math.unit(0.81, "feet"),
  30945. name: "Hand (Four Fingers)",
  30946. image: {
  30947. source: "./media/characters/theo-pangolin/hand-four.svg"
  30948. }
  30949. },
  30950. handThree: {
  30951. height: math.unit(0.81, "feet"),
  30952. name: "Hand (Three Fingers)",
  30953. image: {
  30954. source: "./media/characters/theo-pangolin/hand-three.svg"
  30955. }
  30956. },
  30957. headFront: {
  30958. height: math.unit(1.37, "feet"),
  30959. name: "Head (Front)",
  30960. image: {
  30961. source: "./media/characters/theo-pangolin/head-front.svg"
  30962. }
  30963. },
  30964. headSide: {
  30965. height: math.unit(1.43, "feet"),
  30966. name: "Head (Side)",
  30967. image: {
  30968. source: "./media/characters/theo-pangolin/head-side.svg"
  30969. }
  30970. },
  30971. tongue: {
  30972. height: math.unit(2.29, "feet"),
  30973. name: "Tongue",
  30974. image: {
  30975. source: "./media/characters/theo-pangolin/tongue.svg"
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(6, "feet")
  30983. },
  30984. {
  30985. name: "Macro",
  30986. height: math.unit(400, "feet"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(6, "inches"),
  30996. weight: math.unit(0.036, "kg"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/renée/front.svg",
  31000. extra: 900 / 886,
  31001. bottom: 8 / 908
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Nano",
  31008. height: math.unit(1, "nm")
  31009. },
  31010. {
  31011. name: "Micro",
  31012. height: math.unit(1, "mm")
  31013. },
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(6, "inches")
  31017. },
  31018. {
  31019. name: "Macro",
  31020. height: math.unit(2000, "feet"),
  31021. default: true
  31022. },
  31023. {
  31024. name: "Megamacro",
  31025. height: math.unit(2, "km")
  31026. },
  31027. {
  31028. name: "Gigamacro",
  31029. height: math.unit(2000, "km")
  31030. },
  31031. {
  31032. name: "Teramacro",
  31033. height: math.unit(250000, "km")
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(4, "meters"),
  31042. weight: math.unit(150, "kg"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/caledvwlch/front.svg",
  31046. extra: 1760 / 1551,
  31047. bottom: 28 / 1788
  31048. }
  31049. },
  31050. side: {
  31051. height: math.unit(4, "meters"),
  31052. weight: math.unit(150, "kg"),
  31053. name: "Side",
  31054. image: {
  31055. source: "./media/characters/caledvwlch/side.svg",
  31056. extra: 1605 / 1536,
  31057. bottom: 31 / 1636
  31058. }
  31059. },
  31060. back: {
  31061. height: math.unit(4, "meters"),
  31062. weight: math.unit(150, "kg"),
  31063. name: "Back",
  31064. image: {
  31065. source: "./media/characters/caledvwlch/back.svg",
  31066. extra: 1635 / 1565,
  31067. bottom: 27 / 1662
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "\"Incognito\"",
  31074. height: math.unit(4, "meters")
  31075. },
  31076. {
  31077. name: "Small rampage",
  31078. height: math.unit(600, "meters")
  31079. },
  31080. {
  31081. name: "Mega",
  31082. height: math.unit(30, "km")
  31083. },
  31084. {
  31085. name: "Home-size",
  31086. height: math.unit(50, "km"),
  31087. default: true
  31088. },
  31089. {
  31090. name: "Giga",
  31091. height: math.unit(300, "km")
  31092. },
  31093. {
  31094. name: "Lounging",
  31095. height: math.unit(11000, "km")
  31096. },
  31097. {
  31098. name: "Planet snacking",
  31099. height: math.unit(2000000, "km")
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(6, "feet"),
  31108. weight: math.unit(215, "lb"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/sapphire-svell/front.svg",
  31112. extra: 495 / 455,
  31113. bottom: 20 / 515
  31114. }
  31115. },
  31116. back: {
  31117. height: math.unit(6, "feet"),
  31118. weight: math.unit(216, "lb"),
  31119. name: "Back",
  31120. image: {
  31121. source: "./media/characters/sapphire-svell/back.svg",
  31122. extra: 497 / 477,
  31123. bottom: 7 / 504
  31124. }
  31125. },
  31126. maw: {
  31127. height: math.unit(1.57, "feet"),
  31128. name: "Maw",
  31129. image: {
  31130. source: "./media/characters/sapphire-svell/maw.svg"
  31131. }
  31132. },
  31133. foot: {
  31134. height: math.unit(1.07, "feet"),
  31135. name: "Foot",
  31136. image: {
  31137. source: "./media/characters/sapphire-svell/foot.svg"
  31138. }
  31139. },
  31140. toering: {
  31141. height: math.unit(1.7, "inch"),
  31142. name: "Toering",
  31143. image: {
  31144. source: "./media/characters/sapphire-svell/toering.svg"
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(300, "feet"),
  31152. default: true
  31153. },
  31154. {
  31155. name: "Augmented",
  31156. height: math.unit(1250, "feet")
  31157. },
  31158. {
  31159. name: "Unleashed",
  31160. height: math.unit(3000, "feet")
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31166. {
  31167. side: {
  31168. height: math.unit(2 + 3 / 12, "feet"),
  31169. weight: math.unit(110, "lb"),
  31170. name: "Side",
  31171. image: {
  31172. source: "./media/characters/glitch-flux/side.svg",
  31173. extra: 997 / 805,
  31174. bottom: 20 / 1017
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(2 + 3 / 12, "feet"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(4, "meters"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/mid/front.svg",
  31194. extra: 507 / 476,
  31195. bottom: 17 / 524
  31196. }
  31197. },
  31198. back: {
  31199. height: math.unit(4, "meters"),
  31200. name: "Back",
  31201. image: {
  31202. source: "./media/characters/mid/back.svg",
  31203. extra: 519 / 487,
  31204. bottom: 7 / 526
  31205. }
  31206. },
  31207. stuck: {
  31208. height: math.unit(2.2, "meters"),
  31209. name: "Stuck",
  31210. image: {
  31211. source: "./media/characters/mid/stuck.svg",
  31212. extra: 1951 / 1869,
  31213. bottom: 88 / 2039
  31214. }
  31215. }
  31216. },
  31217. [
  31218. {
  31219. name: "Normal",
  31220. height: math.unit(4, "meters"),
  31221. default: true
  31222. },
  31223. {
  31224. name: "Big",
  31225. height: math.unit(10, "meters")
  31226. },
  31227. {
  31228. name: "Macro",
  31229. height: math.unit(800, "meters")
  31230. },
  31231. {
  31232. name: "Megamacro",
  31233. height: math.unit(100, "km")
  31234. },
  31235. {
  31236. name: "Overgrown",
  31237. height: math.unit(1, "parsec")
  31238. },
  31239. ]
  31240. ))
  31241. characterMakers.push(() => makeCharacter(
  31242. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31243. {
  31244. front: {
  31245. height: math.unit(2.5, "meters"),
  31246. weight: math.unit(225, "kg"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/iris/front.svg",
  31250. extra: 3348 / 3251,
  31251. bottom: 205 / 3553
  31252. }
  31253. },
  31254. maw: {
  31255. height: math.unit(0.56, "meter"),
  31256. name: "Maw",
  31257. image: {
  31258. source: "./media/characters/iris/maw.svg"
  31259. }
  31260. },
  31261. },
  31262. [
  31263. {
  31264. name: "Mewter cat",
  31265. height: math.unit(1.2, "meters")
  31266. },
  31267. {
  31268. name: "Minimacro",
  31269. height: math.unit(2.5, "meters"),
  31270. default: true
  31271. },
  31272. {
  31273. name: "Macro",
  31274. height: math.unit(180, "meters")
  31275. },
  31276. {
  31277. name: "Megamacro",
  31278. height: math.unit(2746, "meters")
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31284. {
  31285. front: {
  31286. height: math.unit(6, "feet"),
  31287. weight: math.unit(135, "lb"),
  31288. name: "Front",
  31289. image: {
  31290. source: "./media/characters/axel/front.svg",
  31291. extra: 908 / 908,
  31292. bottom: 58 / 966
  31293. }
  31294. },
  31295. side: {
  31296. height: math.unit(6, "feet"),
  31297. weight: math.unit(135, "lb"),
  31298. name: "Side",
  31299. image: {
  31300. source: "./media/characters/axel/side.svg",
  31301. extra: 958 / 958,
  31302. bottom: 11 / 969
  31303. }
  31304. },
  31305. back: {
  31306. height: math.unit(6, "feet"),
  31307. weight: math.unit(135, "lb"),
  31308. name: "Back",
  31309. image: {
  31310. source: "./media/characters/axel/back.svg",
  31311. extra: 887 / 887,
  31312. bottom: 34 / 921
  31313. }
  31314. },
  31315. head: {
  31316. height: math.unit(1.07, "feet"),
  31317. name: "Head",
  31318. image: {
  31319. source: "./media/characters/axel/head.svg"
  31320. }
  31321. },
  31322. beak: {
  31323. height: math.unit(1.4, "feet"),
  31324. name: "Beak",
  31325. image: {
  31326. source: "./media/characters/axel/beak.svg"
  31327. }
  31328. },
  31329. beakSide: {
  31330. height: math.unit(1.4, "feet"),
  31331. name: "Beak Side",
  31332. image: {
  31333. source: "./media/characters/axel/beak-side.svg"
  31334. }
  31335. },
  31336. sheath: {
  31337. height: math.unit(0.5, "feet"),
  31338. name: "Sheath",
  31339. image: {
  31340. source: "./media/characters/axel/sheath.svg"
  31341. }
  31342. },
  31343. dick: {
  31344. height: math.unit(0.98, "feet"),
  31345. name: "Dick",
  31346. image: {
  31347. source: "./media/characters/axel/dick.svg"
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Macro",
  31354. height: math.unit(68, "meters"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(3.5, "meters"),
  31364. weight: math.unit(1200, "kg"),
  31365. name: "Front",
  31366. image: {
  31367. source: "./media/characters/joanna/front.svg",
  31368. extra: 1596 / 1488,
  31369. bottom: 29 / 1625
  31370. }
  31371. },
  31372. back: {
  31373. height: math.unit(3.5, "meters"),
  31374. weight: math.unit(1200, "kg"),
  31375. name: "Back",
  31376. image: {
  31377. source: "./media/characters/joanna/back.svg",
  31378. extra: 1594 / 1495,
  31379. bottom: 26 / 1620
  31380. }
  31381. },
  31382. frontShorts: {
  31383. height: math.unit(3.5, "meters"),
  31384. weight: math.unit(1200, "kg"),
  31385. name: "Front (Shorts)",
  31386. image: {
  31387. source: "./media/characters/joanna/front-shorts.svg",
  31388. extra: 1596 / 1488,
  31389. bottom: 29 / 1625
  31390. }
  31391. },
  31392. frontBiker: {
  31393. height: math.unit(3.5, "meters"),
  31394. weight: math.unit(1200, "kg"),
  31395. name: "Front (Biker)",
  31396. image: {
  31397. source: "./media/characters/joanna/front-biker.svg",
  31398. extra: 1596 / 1488,
  31399. bottom: 29 / 1625
  31400. }
  31401. },
  31402. backBiker: {
  31403. height: math.unit(3.5, "meters"),
  31404. weight: math.unit(1200, "kg"),
  31405. name: "Back (Biker)",
  31406. image: {
  31407. source: "./media/characters/joanna/back-biker.svg",
  31408. extra: 1594 / 1495,
  31409. bottom: 88 / 1682
  31410. }
  31411. },
  31412. bikeLeft: {
  31413. height: math.unit(2.4, "meters"),
  31414. weight: math.unit(1600, "kg"),
  31415. name: "Bike (Left)",
  31416. image: {
  31417. source: "./media/characters/joanna/bike-left.svg",
  31418. extra: 720 / 720,
  31419. bottom: 8 / 728
  31420. }
  31421. },
  31422. bikeRight: {
  31423. height: math.unit(2.4, "meters"),
  31424. weight: math.unit(1600, "kg"),
  31425. name: "Bike (Right)",
  31426. image: {
  31427. source: "./media/characters/joanna/bike-right.svg",
  31428. extra: 720 / 720,
  31429. bottom: 8 / 728
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Incognito",
  31436. height: math.unit(3.5, "meters")
  31437. },
  31438. {
  31439. name: "Casual Big",
  31440. height: math.unit(200, "meters")
  31441. },
  31442. {
  31443. name: "Macro",
  31444. height: math.unit(600, "meters")
  31445. },
  31446. {
  31447. name: "Original",
  31448. height: math.unit(20, "km"),
  31449. default: true
  31450. },
  31451. {
  31452. name: "Giga",
  31453. height: math.unit(400, "km")
  31454. },
  31455. {
  31456. name: "Lounging",
  31457. height: math.unit(1500, "km")
  31458. },
  31459. {
  31460. name: "Planetary",
  31461. height: math.unit(200000, "km")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(6, "feet"),
  31470. weight: math.unit(150, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/hugo-sigil/front.svg",
  31474. extra: 522 / 500,
  31475. bottom: 2 / 524
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(6, "feet"),
  31480. weight: math.unit(150, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/hugo-sigil/back.svg",
  31484. extra: 519 / 495,
  31485. bottom: 5 / 524
  31486. }
  31487. },
  31488. maw: {
  31489. height: math.unit(1.4, "feet"),
  31490. weight: math.unit(150, "lb"),
  31491. name: "Maw",
  31492. image: {
  31493. source: "./media/characters/hugo-sigil/maw.svg"
  31494. }
  31495. },
  31496. feet: {
  31497. height: math.unit(1.56, "feet"),
  31498. weight: math.unit(150, "lb"),
  31499. name: "Feet",
  31500. image: {
  31501. source: "./media/characters/hugo-sigil/feet.svg",
  31502. extra: 177 / 177,
  31503. bottom: 12 / 189
  31504. }
  31505. },
  31506. },
  31507. [
  31508. {
  31509. name: "Normal",
  31510. height: math.unit(6, "feet")
  31511. },
  31512. {
  31513. name: "Macro",
  31514. height: math.unit(200, "feet"),
  31515. default: true
  31516. },
  31517. ]
  31518. ))
  31519. characterMakers.push(() => makeCharacter(
  31520. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31521. {
  31522. front: {
  31523. height: math.unit(6, "feet"),
  31524. weight: math.unit(150, "lb"),
  31525. name: "Front",
  31526. image: {
  31527. source: "./media/characters/peri/front.svg",
  31528. extra: 2354 / 2233,
  31529. bottom: 49 / 2403
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Really Small",
  31536. height: math.unit(1, "nm")
  31537. },
  31538. {
  31539. name: "Micro",
  31540. height: math.unit(4, "inches")
  31541. },
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(7, "inches"),
  31545. default: true
  31546. },
  31547. {
  31548. name: "Macro",
  31549. height: math.unit(400, "feet")
  31550. },
  31551. {
  31552. name: "Megamacro",
  31553. height: math.unit(100, "miles")
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31559. {
  31560. frontSlim: {
  31561. height: math.unit(7, "feet"),
  31562. name: "Front (Slim)",
  31563. image: {
  31564. source: "./media/characters/issilora/front-slim.svg",
  31565. extra: 529 / 449,
  31566. bottom: 53 / 582
  31567. }
  31568. },
  31569. sideSlim: {
  31570. height: math.unit(7, "feet"),
  31571. name: "Side (Slim)",
  31572. image: {
  31573. source: "./media/characters/issilora/side-slim.svg",
  31574. extra: 570 / 480,
  31575. bottom: 30 / 600
  31576. }
  31577. },
  31578. backSlim: {
  31579. height: math.unit(7, "feet"),
  31580. name: "Back (Slim)",
  31581. image: {
  31582. source: "./media/characters/issilora/back-slim.svg",
  31583. extra: 537 / 455,
  31584. bottom: 46 / 583
  31585. }
  31586. },
  31587. frontBuff: {
  31588. height: math.unit(7, "feet"),
  31589. name: "Front (Buff)",
  31590. image: {
  31591. source: "./media/characters/issilora/front-buff.svg",
  31592. extra: 2310 / 2035,
  31593. bottom: 335 / 2645
  31594. }
  31595. },
  31596. head: {
  31597. height: math.unit(1.94, "feet"),
  31598. name: "Head",
  31599. image: {
  31600. source: "./media/characters/issilora/head.svg"
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Minimum",
  31607. height: math.unit(7, "feet")
  31608. },
  31609. {
  31610. name: "Comfortable",
  31611. height: math.unit(17, "feet")
  31612. },
  31613. {
  31614. name: "Fun Size",
  31615. height: math.unit(47, "feet")
  31616. },
  31617. {
  31618. name: "Natural Macro",
  31619. height: math.unit(137, "feet"),
  31620. default: true
  31621. },
  31622. {
  31623. name: "Maximum Kaiju",
  31624. height: math.unit(397, "feet")
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31630. {
  31631. front: {
  31632. height: math.unit(50 + 9/12, "feet"),
  31633. weight: math.unit(32.8, "tons"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/irb'iiritaahn/front.svg",
  31637. extra: 1878/1826,
  31638. bottom: 326/2204
  31639. }
  31640. },
  31641. back: {
  31642. height: math.unit(50 + 9/12, "feet"),
  31643. weight: math.unit(32.8, "tons"),
  31644. name: "Back",
  31645. image: {
  31646. source: "./media/characters/irb'iiritaahn/back.svg",
  31647. extra: 2052/2018,
  31648. bottom: 152/2204
  31649. }
  31650. },
  31651. head: {
  31652. height: math.unit(12.86, "feet"),
  31653. name: "Head",
  31654. image: {
  31655. source: "./media/characters/irb'iiritaahn/head.svg"
  31656. }
  31657. },
  31658. maw: {
  31659. height: math.unit(9.66, "feet"),
  31660. name: "Maw",
  31661. image: {
  31662. source: "./media/characters/irb'iiritaahn/maw.svg"
  31663. }
  31664. },
  31665. frontDick: {
  31666. height: math.unit(8.78461, "feet"),
  31667. name: "Front Dick",
  31668. image: {
  31669. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31670. }
  31671. },
  31672. rearDick: {
  31673. height: math.unit(8.78461, "feet"),
  31674. name: "Rear Dick",
  31675. image: {
  31676. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31677. }
  31678. },
  31679. rearDickUnfolded: {
  31680. height: math.unit(8.78, "feet"),
  31681. name: "Rear Dick (Unfolded)",
  31682. image: {
  31683. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31684. }
  31685. },
  31686. wings: {
  31687. height: math.unit(43, "feet"),
  31688. name: "Wings",
  31689. image: {
  31690. source: "./media/characters/irb'iiritaahn/wings.svg"
  31691. }
  31692. },
  31693. },
  31694. [
  31695. {
  31696. name: "Macro",
  31697. height: math.unit(50 + 9/12, "feet"),
  31698. default: true
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(205, "cm"),
  31707. weight: math.unit(102, "kg"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/irbisgreif/front.svg",
  31711. extra: 785/706,
  31712. bottom: 13/798
  31713. }
  31714. },
  31715. back: {
  31716. height: math.unit(205, "cm"),
  31717. weight: math.unit(102, "kg"),
  31718. name: "Back",
  31719. image: {
  31720. source: "./media/characters/irbisgreif/back.svg",
  31721. extra: 713/701,
  31722. bottom: 26/739
  31723. }
  31724. },
  31725. frontDressed: {
  31726. height: math.unit(216, "cm"),
  31727. weight: math.unit(102, "kg"),
  31728. name: "Front-dressed",
  31729. image: {
  31730. source: "./media/characters/irbisgreif/front-dressed.svg",
  31731. extra: 902/776,
  31732. bottom: 14/916
  31733. }
  31734. },
  31735. sideDressed: {
  31736. height: math.unit(195, "cm"),
  31737. weight: math.unit(102, "kg"),
  31738. name: "Side-dressed",
  31739. image: {
  31740. source: "./media/characters/irbisgreif/side-dressed.svg",
  31741. extra: 788/688,
  31742. bottom: 21/809
  31743. }
  31744. },
  31745. backDressed: {
  31746. height: math.unit(216, "cm"),
  31747. weight: math.unit(102, "kg"),
  31748. name: "Back-dressed",
  31749. image: {
  31750. source: "./media/characters/irbisgreif/back-dressed.svg",
  31751. extra: 901/783,
  31752. bottom: 10/911
  31753. }
  31754. },
  31755. dick: {
  31756. height: math.unit(0.49, "feet"),
  31757. name: "Dick",
  31758. image: {
  31759. source: "./media/characters/irbisgreif/dick.svg"
  31760. }
  31761. },
  31762. wingTop: {
  31763. height: math.unit(1.93 , "feet"),
  31764. name: "Wing-top",
  31765. image: {
  31766. source: "./media/characters/irbisgreif/wing-top.svg"
  31767. }
  31768. },
  31769. wingBottom: {
  31770. height: math.unit(1.93 , "feet"),
  31771. name: "Wing-bottom",
  31772. image: {
  31773. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(216, "cm"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31787. {
  31788. front: {
  31789. height: math.unit(6, "feet"),
  31790. weight: math.unit(150, "lb"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/pride/front.svg",
  31794. extra: 1299/1230,
  31795. bottom: 18/1317
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(7, "feet")
  31803. },
  31804. {
  31805. name: "Mini-macro",
  31806. height: math.unit(11, "feet")
  31807. },
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(15, "meters"),
  31811. default: true
  31812. },
  31813. {
  31814. name: "Macro+",
  31815. height: math.unit(40, "meters")
  31816. },
  31817. ]
  31818. ))
  31819. characterMakers.push(() => makeCharacter(
  31820. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31821. {
  31822. front: {
  31823. height: math.unit(4 + 2 / 12, "feet"),
  31824. weight: math.unit(95, "lb"),
  31825. name: "Front",
  31826. image: {
  31827. source: "./media/characters/vaelophis-nyx/front.svg",
  31828. extra: 2532/2330,
  31829. bottom: 0/2532
  31830. }
  31831. },
  31832. back: {
  31833. height: math.unit(4 + 2 / 12, "feet"),
  31834. weight: math.unit(95, "lb"),
  31835. name: "Back",
  31836. image: {
  31837. source: "./media/characters/vaelophis-nyx/back.svg",
  31838. extra: 2484/2361,
  31839. bottom: 0/2484
  31840. }
  31841. },
  31842. feralSide: {
  31843. height: math.unit(2 + 1/12, "feet"),
  31844. weight: math.unit(20, "lb"),
  31845. name: "Feral (Side)",
  31846. image: {
  31847. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31848. extra: 1721/1581,
  31849. bottom: 70/1791
  31850. }
  31851. },
  31852. feralLazing: {
  31853. height: math.unit(1.08, "feet"),
  31854. weight: math.unit(20, "lb"),
  31855. name: "Feral (Lazing)",
  31856. image: {
  31857. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31858. extra: 822/822,
  31859. bottom: 248/1070
  31860. }
  31861. },
  31862. ear: {
  31863. height: math.unit(0.416, "feet"),
  31864. name: "Ear",
  31865. image: {
  31866. source: "./media/characters/vaelophis-nyx/ear.svg"
  31867. }
  31868. },
  31869. eye: {
  31870. height: math.unit(0.0748, "feet"),
  31871. name: "Eye",
  31872. image: {
  31873. source: "./media/characters/vaelophis-nyx/eye.svg"
  31874. }
  31875. },
  31876. mouth: {
  31877. height: math.unit(0.378, "feet"),
  31878. name: "Mouth",
  31879. image: {
  31880. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31881. }
  31882. },
  31883. spade: {
  31884. height: math.unit(0.55, "feet"),
  31885. name: "Spade",
  31886. image: {
  31887. source: "./media/characters/vaelophis-nyx/spade.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(4 + 2/12, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31901. {
  31902. front: {
  31903. height: math.unit(7, "feet"),
  31904. weight: math.unit(231, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/flux/front.svg",
  31908. extra: 919/871,
  31909. bottom: 0/919
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(7, "feet"),
  31914. weight: math.unit(231, "lb"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/flux/back.svg",
  31918. extra: 1040/992,
  31919. bottom: 0/1040
  31920. }
  31921. },
  31922. frontDressed: {
  31923. height: math.unit(7, "feet"),
  31924. weight: math.unit(231, "lb"),
  31925. name: "Front (Dressed)",
  31926. image: {
  31927. source: "./media/characters/flux/front-dressed.svg",
  31928. extra: 919/871,
  31929. bottom: 0/919
  31930. }
  31931. },
  31932. feralSide: {
  31933. height: math.unit(5, "feet"),
  31934. weight: math.unit(150, "lb"),
  31935. name: "Feral (Side)",
  31936. image: {
  31937. source: "./media/characters/flux/feral-side.svg",
  31938. extra: 598/528,
  31939. bottom: 28/626
  31940. }
  31941. },
  31942. head: {
  31943. height: math.unit(1.585, "feet"),
  31944. name: "Head",
  31945. image: {
  31946. source: "./media/characters/flux/head.svg"
  31947. }
  31948. },
  31949. headSide: {
  31950. height: math.unit(1.74, "feet"),
  31951. name: "Head (Side)",
  31952. image: {
  31953. source: "./media/characters/flux/head-side.svg"
  31954. }
  31955. },
  31956. headSideFire: {
  31957. height: math.unit(1.76, "feet"),
  31958. name: "Head (Side, Fire)",
  31959. image: {
  31960. source: "./media/characters/flux/head-side-fire.svg"
  31961. }
  31962. },
  31963. },
  31964. [
  31965. {
  31966. name: "Normal",
  31967. height: math.unit(7, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(9, "feet"),
  31977. weight: math.unit(1012, "lb"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/ulfra-lupae/front.svg",
  31981. extra: 1083/1011,
  31982. bottom: 67/1150
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Micro",
  31989. height: math.unit(6, "inches")
  31990. },
  31991. {
  31992. name: "Socializing",
  31993. height: math.unit(6 + 5/12, "feet")
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(9, "feet"),
  31998. default: true
  31999. },
  32000. {
  32001. name: "Macro",
  32002. height: math.unit(150, "feet")
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(5 + 2/12, "feet"),
  32011. weight: math.unit(120, "lb"),
  32012. name: "Front",
  32013. image: {
  32014. source: "./media/characters/timber/front.svg",
  32015. extra: 2814/2705,
  32016. bottom: 181/2995
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(5 + 2/12, "feet"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(9, "feet"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/nicki/front.svg",
  32036. extra: 1240/990,
  32037. bottom: 45/1285
  32038. },
  32039. form: "anthro",
  32040. default: true
  32041. },
  32042. side: {
  32043. height: math.unit(9, "feet"),
  32044. name: "Side",
  32045. image: {
  32046. source: "./media/characters/nicki/side.svg",
  32047. extra: 1047/973,
  32048. bottom: 61/1108
  32049. },
  32050. form: "anthro"
  32051. },
  32052. back: {
  32053. height: math.unit(9, "feet"),
  32054. name: "Back",
  32055. image: {
  32056. source: "./media/characters/nicki/back.svg",
  32057. extra: 1006/965,
  32058. bottom: 39/1045
  32059. },
  32060. form: "anthro"
  32061. },
  32062. taur: {
  32063. height: math.unit(15, "feet"),
  32064. name: "Taur",
  32065. image: {
  32066. source: "./media/characters/nicki/taur.svg",
  32067. extra: 1592/1347,
  32068. bottom: 0/1592
  32069. },
  32070. form: "taur",
  32071. default: true
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(9, "feet"),
  32078. form: "anthro",
  32079. default: true
  32080. },
  32081. {
  32082. name: "Normal",
  32083. height: math.unit(15, "feet"),
  32084. form: "taur",
  32085. default: true
  32086. }
  32087. ],
  32088. {
  32089. "anthro": {
  32090. name: "Anthro",
  32091. default: true
  32092. },
  32093. "taur": {
  32094. name: "Taur"
  32095. }
  32096. }
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(7 + 10/12, "feet"),
  32103. weight: math.unit(3.5, "tons"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/lee/front.svg",
  32107. extra: 1773/1615,
  32108. bottom: 86/1859
  32109. }
  32110. },
  32111. hand: {
  32112. height: math.unit(1.78, "feet"),
  32113. name: "Hand",
  32114. image: {
  32115. source: "./media/characters/lee/hand.svg"
  32116. }
  32117. },
  32118. maw: {
  32119. height: math.unit(1.18, "feet"),
  32120. name: "Maw",
  32121. image: {
  32122. source: "./media/characters/lee/maw.svg"
  32123. }
  32124. },
  32125. },
  32126. [
  32127. {
  32128. name: "Normal",
  32129. height: math.unit(7 + 10/12, "feet"),
  32130. default: true
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32136. {
  32137. front: {
  32138. height: math.unit(9, "feet"),
  32139. name: "Front",
  32140. image: {
  32141. source: "./media/characters/guti/front.svg",
  32142. extra: 4551/4355,
  32143. bottom: 123/4674
  32144. }
  32145. },
  32146. tongue: {
  32147. height: math.unit(1, "feet"),
  32148. name: "Tongue",
  32149. image: {
  32150. source: "./media/characters/guti/tongue.svg"
  32151. }
  32152. },
  32153. paw: {
  32154. height: math.unit(1.18, "feet"),
  32155. name: "Paw",
  32156. image: {
  32157. source: "./media/characters/guti/paw.svg"
  32158. }
  32159. },
  32160. },
  32161. [
  32162. {
  32163. name: "Normal",
  32164. height: math.unit(9, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32171. {
  32172. side: {
  32173. height: math.unit(5, "meters"),
  32174. name: "Side",
  32175. image: {
  32176. source: "./media/characters/vesper/side.svg",
  32177. extra: 1605/1518,
  32178. bottom: 0/1605
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Small",
  32185. height: math.unit(5, "meters")
  32186. },
  32187. {
  32188. name: "Sage",
  32189. height: math.unit(100, "meters"),
  32190. default: true
  32191. },
  32192. {
  32193. name: "Fun Size",
  32194. height: math.unit(600, "meters")
  32195. },
  32196. {
  32197. name: "Goddess",
  32198. height: math.unit(20000, "km")
  32199. },
  32200. {
  32201. name: "Maximum",
  32202. height: math.unit(5, "galaxies")
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(6 + 3/12, "feet"),
  32211. weight: math.unit(190, "lb"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/gawain/front.svg",
  32215. extra: 2222/2139,
  32216. bottom: 90/2312
  32217. }
  32218. },
  32219. back: {
  32220. height: math.unit(6 + 3/12, "feet"),
  32221. weight: math.unit(190, "lb"),
  32222. name: "Back",
  32223. image: {
  32224. source: "./media/characters/gawain/back.svg",
  32225. extra: 2199/2111,
  32226. bottom: 73/2272
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(6 + 3/12, "feet"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32240. {
  32241. side: {
  32242. height: math.unit(3.5, "meters"),
  32243. weight: math.unit(16000, "lb"),
  32244. name: "Side",
  32245. image: {
  32246. source: "./media/characters/dascalti/side.svg",
  32247. extra: 392/273,
  32248. bottom: 47/439
  32249. }
  32250. },
  32251. breath: {
  32252. height: math.unit(7.4, "feet"),
  32253. name: "Breath",
  32254. image: {
  32255. source: "./media/characters/dascalti/breath.svg"
  32256. }
  32257. },
  32258. fed: {
  32259. height: math.unit(3.6, "meters"),
  32260. weight: math.unit(16000, "lb"),
  32261. name: "Fed",
  32262. image: {
  32263. source: "./media/characters/dascalti/fed.svg",
  32264. extra: 1419/820,
  32265. bottom: 95/1514
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(3.5, "meters"),
  32273. default: true
  32274. },
  32275. ]
  32276. ))
  32277. characterMakers.push(() => makeCharacter(
  32278. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32279. {
  32280. front: {
  32281. height: math.unit(3 + 5/12, "feet"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/mauve/front.svg",
  32285. extra: 1126/1033,
  32286. bottom: 65/1191
  32287. }
  32288. },
  32289. side: {
  32290. height: math.unit(3 + 5/12, "feet"),
  32291. name: "Side",
  32292. image: {
  32293. source: "./media/characters/mauve/side.svg",
  32294. extra: 1089/1001,
  32295. bottom: 29/1118
  32296. }
  32297. },
  32298. back: {
  32299. height: math.unit(3 + 5/12, "feet"),
  32300. name: "Back",
  32301. image: {
  32302. source: "./media/characters/mauve/back.svg",
  32303. extra: 1173/1053,
  32304. bottom: 109/1282
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(3 + 5/12, "feet"),
  32312. default: true
  32313. },
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(6 + 3/12, "feet"),
  32321. weight: math.unit(430, "lb"),
  32322. name: "Front",
  32323. image: {
  32324. source: "./media/characters/carlos/front.svg",
  32325. extra: 1964/1913,
  32326. bottom: 70/2034
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(6 + 3/12, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32340. {
  32341. back: {
  32342. height: math.unit(5 + 10/12, "feet"),
  32343. weight: math.unit(200, "lb"),
  32344. name: "Back",
  32345. image: {
  32346. source: "./media/characters/jax/back.svg",
  32347. extra: 764/739,
  32348. bottom: 25/789
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(5 + 10/12, "feet"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(8, "feet"),
  32365. weight: math.unit(250, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/eikthynir/front.svg",
  32369. extra: 1332/1166,
  32370. bottom: 82/1414
  32371. }
  32372. },
  32373. back: {
  32374. height: math.unit(8, "feet"),
  32375. weight: math.unit(250, "lb"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/eikthynir/back.svg",
  32379. extra: 1342/1190,
  32380. bottom: 19/1361
  32381. }
  32382. },
  32383. dick: {
  32384. height: math.unit(2.35, "feet"),
  32385. name: "Dick",
  32386. image: {
  32387. source: "./media/characters/eikthynir/dick.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(8, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(99, "meters"),
  32404. weight: math.unit(13000, "tons"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/zlmos/front.svg",
  32408. extra: 2202/1992,
  32409. bottom: 315/2517
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Macro",
  32416. height: math.unit(99, "meters"),
  32417. default: true
  32418. },
  32419. ]
  32420. ))
  32421. characterMakers.push(() => makeCharacter(
  32422. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32423. {
  32424. front: {
  32425. height: math.unit(6 + 5/12, "feet"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/purri/front.svg",
  32429. extra: 1698/1610,
  32430. bottom: 32/1730
  32431. }
  32432. },
  32433. frontAlt: {
  32434. height: math.unit(6 + 5/12, "feet"),
  32435. name: "Front (Alt)",
  32436. image: {
  32437. source: "./media/characters/purri/front-alt.svg",
  32438. extra: 450/420,
  32439. bottom: 26/476
  32440. }
  32441. },
  32442. boots: {
  32443. height: math.unit(5.5, "feet"),
  32444. name: "Boots",
  32445. image: {
  32446. source: "./media/characters/purri/boots.svg",
  32447. extra: 905/853,
  32448. bottom: 18/923
  32449. }
  32450. },
  32451. lying: {
  32452. height: math.unit(2, "feet"),
  32453. name: "Lying",
  32454. image: {
  32455. source: "./media/characters/purri/lying.svg",
  32456. extra: 940/843,
  32457. bottom: 146/1086
  32458. }
  32459. },
  32460. devious: {
  32461. height: math.unit(1.77, "feet"),
  32462. name: "Devious",
  32463. image: {
  32464. source: "./media/characters/purri/devious.svg",
  32465. extra: 1440/1155,
  32466. bottom: 147/1587
  32467. }
  32468. },
  32469. bean: {
  32470. height: math.unit(1.94, "feet"),
  32471. name: "Bean",
  32472. image: {
  32473. source: "./media/characters/purri/bean.svg"
  32474. }
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Micro",
  32480. height: math.unit(1, "mm")
  32481. },
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(6 + 5/12, "feet"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Macro :3c",
  32489. height: math.unit(2, "miles")
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32495. {
  32496. front: {
  32497. height: math.unit(6 + 2/12, "feet"),
  32498. weight: math.unit(250, "lb"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/moonlight/front.svg",
  32502. extra: 1044/908,
  32503. bottom: 56/1100
  32504. }
  32505. },
  32506. feral: {
  32507. height: math.unit(3 + 1/12, "feet"),
  32508. weight: math.unit(50, "kg"),
  32509. name: "Feral",
  32510. image: {
  32511. source: "./media/characters/moonlight/feral.svg",
  32512. extra: 3705/2791,
  32513. bottom: 145/3850
  32514. }
  32515. },
  32516. paw: {
  32517. height: math.unit(1, "feet"),
  32518. name: "Paw",
  32519. image: {
  32520. source: "./media/characters/moonlight/paw.svg"
  32521. }
  32522. },
  32523. paws: {
  32524. height: math.unit(0.98, "feet"),
  32525. name: "Paws",
  32526. image: {
  32527. source: "./media/characters/moonlight/paws.svg",
  32528. extra: 939/939,
  32529. bottom: 50/989
  32530. }
  32531. },
  32532. mouth: {
  32533. height: math.unit(0.48, "feet"),
  32534. name: "Mouth",
  32535. image: {
  32536. source: "./media/characters/moonlight/mouth.svg"
  32537. }
  32538. },
  32539. dick: {
  32540. height: math.unit(1.46, "feet"),
  32541. name: "Dick",
  32542. image: {
  32543. source: "./media/characters/moonlight/dick.svg"
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Normal",
  32550. height: math.unit(6 + 2/12, "feet"),
  32551. default: true
  32552. },
  32553. {
  32554. name: "Macro",
  32555. height: math.unit(300, "feet")
  32556. },
  32557. {
  32558. name: "Macro+",
  32559. height: math.unit(1, "mile")
  32560. },
  32561. {
  32562. name: "Mt. Moon",
  32563. height: math.unit(5, "miles")
  32564. },
  32565. {
  32566. name: "Megamacro",
  32567. height: math.unit(15, "miles")
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32573. {
  32574. back: {
  32575. height: math.unit(6, "feet"),
  32576. weight: math.unit(150, "lb"),
  32577. name: "Back",
  32578. image: {
  32579. source: "./media/characters/sylen/back.svg",
  32580. extra: 1335/1273,
  32581. bottom: 107/1442
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Normal",
  32588. height: math.unit(5 + 5/12, "feet")
  32589. },
  32590. {
  32591. name: "Megamacro",
  32592. height: math.unit(3, "miles"),
  32593. default: true
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(6, "feet"),
  32602. weight: math.unit(190, "lb"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/huttser/front.svg",
  32606. extra: 1152/1058,
  32607. bottom: 23/1175
  32608. }
  32609. },
  32610. side: {
  32611. height: math.unit(6, "feet"),
  32612. weight: math.unit(190, "lb"),
  32613. name: "Side",
  32614. image: {
  32615. source: "./media/characters/huttser/side.svg",
  32616. extra: 1174/1065,
  32617. bottom: 18/1192
  32618. }
  32619. },
  32620. back: {
  32621. height: math.unit(6, "feet"),
  32622. weight: math.unit(190, "lb"),
  32623. name: "Back",
  32624. image: {
  32625. source: "./media/characters/huttser/back.svg",
  32626. extra: 1158/1056,
  32627. bottom: 12/1170
  32628. }
  32629. },
  32630. },
  32631. [
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32636. {
  32637. side: {
  32638. height: math.unit(12 + 9/12, "feet"),
  32639. weight: math.unit(15000, "lb"),
  32640. name: "Side",
  32641. image: {
  32642. source: "./media/characters/faan/side.svg",
  32643. extra: 2747/2697,
  32644. bottom: 0/2747
  32645. }
  32646. },
  32647. front: {
  32648. height: math.unit(12 + 9/12, "feet"),
  32649. weight: math.unit(15000, "lb"),
  32650. name: "Front",
  32651. image: {
  32652. source: "./media/characters/faan/front.svg",
  32653. extra: 607/571,
  32654. bottom: 24/631
  32655. }
  32656. },
  32657. head: {
  32658. height: math.unit(2.85, "feet"),
  32659. name: "Head",
  32660. image: {
  32661. source: "./media/characters/faan/head.svg"
  32662. }
  32663. },
  32664. headAlt: {
  32665. height: math.unit(3.13, "feet"),
  32666. name: "Head-alt",
  32667. image: {
  32668. source: "./media/characters/faan/head-alt.svg"
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(12 + 9/12, "feet"),
  32676. default: true
  32677. },
  32678. ]
  32679. ))
  32680. characterMakers.push(() => makeCharacter(
  32681. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32682. {
  32683. front: {
  32684. height: math.unit(6, "feet"),
  32685. weight: math.unit(300, "lb"),
  32686. name: "Front",
  32687. image: {
  32688. source: "./media/characters/tanio/front.svg",
  32689. extra: 711/673,
  32690. bottom: 25/736
  32691. }
  32692. },
  32693. },
  32694. [
  32695. {
  32696. name: "Normal",
  32697. height: math.unit(6, "feet"),
  32698. default: true
  32699. },
  32700. ]
  32701. ))
  32702. characterMakers.push(() => makeCharacter(
  32703. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32704. {
  32705. front: {
  32706. height: math.unit(3, "inches"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/noboru/front.svg",
  32710. extra: 1039/932,
  32711. bottom: 18/1057
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Micro",
  32718. height: math.unit(3, "inches"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(1.85, "meters"),
  32728. weight: math.unit(80, "kg"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/daniel-barrett/front.svg",
  32732. extra: 355/337,
  32733. bottom: 9/364
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Pico",
  32740. height: math.unit(0.0433, "mm")
  32741. },
  32742. {
  32743. name: "Nano",
  32744. height: math.unit(1.5, "mm")
  32745. },
  32746. {
  32747. name: "Micro",
  32748. height: math.unit(5.3, "cm"),
  32749. default: true
  32750. },
  32751. {
  32752. name: "Normal",
  32753. height: math.unit(1.85, "meters")
  32754. },
  32755. {
  32756. name: "Macro",
  32757. height: math.unit(64.7, "meters")
  32758. },
  32759. {
  32760. name: "Megamacro",
  32761. height: math.unit(2.26, "km")
  32762. },
  32763. {
  32764. name: "Gigamacro",
  32765. height: math.unit(79, "km")
  32766. },
  32767. {
  32768. name: "Teramacro",
  32769. height: math.unit(2765, "km")
  32770. },
  32771. {
  32772. name: "Petamacro",
  32773. height: math.unit(96678, "km")
  32774. },
  32775. ]
  32776. ))
  32777. characterMakers.push(() => makeCharacter(
  32778. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32779. {
  32780. front: {
  32781. height: math.unit(30, "meters"),
  32782. weight: math.unit(400, "tons"),
  32783. name: "Front",
  32784. image: {
  32785. source: "./media/characters/zeel/front.svg",
  32786. extra: 2599/2599,
  32787. bottom: 226/2825
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Macro",
  32794. height: math.unit(30, "meters"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(6 + 7/12, "feet"),
  32804. weight: math.unit(210, "lb"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/tarn/front.svg",
  32808. extra: 3517/3220,
  32809. bottom: 91/3608
  32810. }
  32811. },
  32812. back: {
  32813. height: math.unit(6 + 7/12, "feet"),
  32814. weight: math.unit(210, "lb"),
  32815. name: "Back",
  32816. image: {
  32817. source: "./media/characters/tarn/back.svg",
  32818. extra: 3566/3241,
  32819. bottom: 34/3600
  32820. }
  32821. },
  32822. dick: {
  32823. height: math.unit(1.65, "feet"),
  32824. name: "Dick",
  32825. image: {
  32826. source: "./media/characters/tarn/dick.svg"
  32827. }
  32828. },
  32829. paw: {
  32830. height: math.unit(1.80, "feet"),
  32831. name: "Paw",
  32832. image: {
  32833. source: "./media/characters/tarn/paw.svg"
  32834. }
  32835. },
  32836. tongue: {
  32837. height: math.unit(0.97, "feet"),
  32838. name: "Tongue",
  32839. image: {
  32840. source: "./media/characters/tarn/tongue.svg"
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Micro",
  32847. height: math.unit(4, "inches")
  32848. },
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(6 + 7/12, "feet"),
  32852. default: true
  32853. },
  32854. {
  32855. name: "Macro",
  32856. height: math.unit(300, "feet")
  32857. },
  32858. ]
  32859. ))
  32860. characterMakers.push(() => makeCharacter(
  32861. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32862. {
  32863. front: {
  32864. height: math.unit(5 + 7/12, "feet"),
  32865. weight: math.unit(80, "kg"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32869. extra: 3023/2865,
  32870. bottom: 33/3056
  32871. }
  32872. },
  32873. back: {
  32874. height: math.unit(5 + 7/12, "feet"),
  32875. weight: math.unit(80, "kg"),
  32876. name: "Back",
  32877. image: {
  32878. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32879. extra: 3020/2886,
  32880. bottom: 30/3050
  32881. }
  32882. },
  32883. dick: {
  32884. height: math.unit(0.98, "feet"),
  32885. name: "Dick",
  32886. image: {
  32887. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32888. }
  32889. },
  32890. anatomy: {
  32891. height: math.unit(2.86, "feet"),
  32892. name: "Anatomy",
  32893. image: {
  32894. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Really Small",
  32901. height: math.unit(2, "inches")
  32902. },
  32903. {
  32904. name: "Micro",
  32905. height: math.unit(5.583, "inches")
  32906. },
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(5 + 7/12, "feet"),
  32910. default: true
  32911. },
  32912. {
  32913. name: "Macro",
  32914. height: math.unit(67, "feet")
  32915. },
  32916. {
  32917. name: "Megamacro",
  32918. height: math.unit(134, "feet")
  32919. },
  32920. ]
  32921. ))
  32922. characterMakers.push(() => makeCharacter(
  32923. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32924. {
  32925. front: {
  32926. height: math.unit(9, "feet"),
  32927. weight: math.unit(120, "lb"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/sally/front.svg",
  32931. extra: 1506/1349,
  32932. bottom: 66/1572
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(9, "feet"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32946. {
  32947. front: {
  32948. height: math.unit(8, "feet"),
  32949. weight: math.unit(900, "lb"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/owen/front.svg",
  32953. extra: 1761/1657,
  32954. bottom: 74/1835
  32955. }
  32956. },
  32957. side: {
  32958. height: math.unit(8, "feet"),
  32959. weight: math.unit(900, "lb"),
  32960. name: "Side",
  32961. image: {
  32962. source: "./media/characters/owen/side.svg",
  32963. extra: 1797/1734,
  32964. bottom: 30/1827
  32965. }
  32966. },
  32967. back: {
  32968. height: math.unit(8, "feet"),
  32969. weight: math.unit(900, "lb"),
  32970. name: "Back",
  32971. image: {
  32972. source: "./media/characters/owen/back.svg",
  32973. extra: 1796/1706,
  32974. bottom: 59/1855
  32975. }
  32976. },
  32977. maw: {
  32978. height: math.unit(1.76, "feet"),
  32979. name: "Maw",
  32980. image: {
  32981. source: "./media/characters/owen/maw.svg"
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(8, "feet"),
  32989. default: true
  32990. },
  32991. ]
  32992. ))
  32993. characterMakers.push(() => makeCharacter(
  32994. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32995. {
  32996. front: {
  32997. height: math.unit(4, "feet"),
  32998. weight: math.unit(400, "lb"),
  32999. name: "Front",
  33000. image: {
  33001. source: "./media/characters/ryth/front.svg",
  33002. extra: 1920/1748,
  33003. bottom: 42/1962
  33004. }
  33005. },
  33006. back: {
  33007. height: math.unit(4, "feet"),
  33008. weight: math.unit(400, "lb"),
  33009. name: "Back",
  33010. image: {
  33011. source: "./media/characters/ryth/back.svg",
  33012. extra: 1897/1690,
  33013. bottom: 89/1986
  33014. }
  33015. },
  33016. mouth: {
  33017. height: math.unit(1.39, "feet"),
  33018. name: "Mouth",
  33019. image: {
  33020. source: "./media/characters/ryth/mouth.svg"
  33021. }
  33022. },
  33023. tailmaw: {
  33024. height: math.unit(1.23, "feet"),
  33025. name: "Tailmaw",
  33026. image: {
  33027. source: "./media/characters/ryth/tailmaw.svg"
  33028. }
  33029. },
  33030. goia: {
  33031. height: math.unit(4, "meters"),
  33032. weight: math.unit(10800, "lb"),
  33033. name: "Goia",
  33034. image: {
  33035. source: "./media/characters/ryth/goia.svg",
  33036. extra: 745/640,
  33037. bottom: 107/852
  33038. }
  33039. },
  33040. goiaFront: {
  33041. height: math.unit(4, "meters"),
  33042. weight: math.unit(10800, "lb"),
  33043. name: "Goia (Front)",
  33044. image: {
  33045. source: "./media/characters/ryth/goia-front.svg",
  33046. extra: 750/586,
  33047. bottom: 114/864
  33048. }
  33049. },
  33050. goiaMaw: {
  33051. height: math.unit(5.55, "feet"),
  33052. name: "Goia Maw",
  33053. image: {
  33054. source: "./media/characters/ryth/goia-maw.svg"
  33055. }
  33056. },
  33057. goiaForepaw: {
  33058. height: math.unit(3.5, "feet"),
  33059. name: "Goia Forepaw",
  33060. image: {
  33061. source: "./media/characters/ryth/goia-forepaw.svg"
  33062. }
  33063. },
  33064. goiaHindpaw: {
  33065. height: math.unit(5.55, "feet"),
  33066. name: "Goia Hindpaw",
  33067. image: {
  33068. source: "./media/characters/ryth/goia-hindpaw.svg"
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Normal",
  33075. height: math.unit(4, "feet"),
  33076. default: true
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33082. {
  33083. front: {
  33084. height: math.unit(7, "feet"),
  33085. weight: math.unit(180, "lb"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/necrolance/front.svg",
  33089. extra: 1062/947,
  33090. bottom: 41/1103
  33091. }
  33092. },
  33093. back: {
  33094. height: math.unit(7, "feet"),
  33095. weight: math.unit(180, "lb"),
  33096. name: "Back",
  33097. image: {
  33098. source: "./media/characters/necrolance/back.svg",
  33099. extra: 1045/984,
  33100. bottom: 14/1059
  33101. }
  33102. },
  33103. wing: {
  33104. height: math.unit(2.67, "feet"),
  33105. name: "Wing",
  33106. image: {
  33107. source: "./media/characters/necrolance/wing.svg"
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(7, "feet"),
  33115. default: true
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33121. {
  33122. front: {
  33123. height: math.unit(76, "meters"),
  33124. weight: math.unit(30000, "tons"),
  33125. name: "Front",
  33126. image: {
  33127. source: "./media/characters/tyler/front.svg",
  33128. extra: 1640/1640,
  33129. bottom: 114/1754
  33130. }
  33131. },
  33132. },
  33133. [
  33134. {
  33135. name: "Macro",
  33136. height: math.unit(76, "meters"),
  33137. default: true
  33138. },
  33139. ]
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33143. {
  33144. front: {
  33145. height: math.unit(4 + 11/12, "feet"),
  33146. weight: math.unit(132, "lb"),
  33147. name: "Front",
  33148. image: {
  33149. source: "./media/characters/icey/front.svg",
  33150. extra: 2750/2550,
  33151. bottom: 33/2783
  33152. }
  33153. },
  33154. back: {
  33155. height: math.unit(4 + 11/12, "feet"),
  33156. weight: math.unit(132, "lb"),
  33157. name: "Back",
  33158. image: {
  33159. source: "./media/characters/icey/back.svg",
  33160. extra: 2624/2481,
  33161. bottom: 35/2659
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(4 + 11/12, "feet"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(100, "feet"),
  33178. weight: math.unit(0, "lb"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/smile/front.svg",
  33182. extra: 2983/2912,
  33183. bottom: 162/3145
  33184. }
  33185. },
  33186. back: {
  33187. height: math.unit(100, "feet"),
  33188. weight: math.unit(0, "lb"),
  33189. name: "Back",
  33190. image: {
  33191. source: "./media/characters/smile/back.svg",
  33192. extra: 3143/3031,
  33193. bottom: 91/3234
  33194. }
  33195. },
  33196. head: {
  33197. height: math.unit(26.3, "feet"),
  33198. weight: math.unit(0, "lb"),
  33199. name: "Head",
  33200. image: {
  33201. source: "./media/characters/smile/head.svg"
  33202. }
  33203. },
  33204. collar: {
  33205. height: math.unit(5.3, "feet"),
  33206. weight: math.unit(0, "lb"),
  33207. name: "Collar",
  33208. image: {
  33209. source: "./media/characters/smile/collar.svg"
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(100, "feet"),
  33217. default: true
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33223. {
  33224. dragon: {
  33225. height: math.unit(26, "feet"),
  33226. weight: math.unit(36, "tons"),
  33227. name: "Dragon",
  33228. image: {
  33229. source: "./media/characters/arimphae/dragon.svg",
  33230. extra: 1574/983,
  33231. bottom: 357/1931
  33232. }
  33233. },
  33234. drake: {
  33235. height: math.unit(9, "feet"),
  33236. weight: math.unit(1.5, "tons"),
  33237. name: "Drake",
  33238. image: {
  33239. source: "./media/characters/arimphae/drake.svg",
  33240. extra: 1120/925,
  33241. bottom: 435/1555
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Small",
  33248. height: math.unit(26*5/9, "feet")
  33249. },
  33250. {
  33251. name: "Normal",
  33252. height: math.unit(26, "feet"),
  33253. default: true
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33259. {
  33260. front: {
  33261. height: math.unit(8 + 9/12, "feet"),
  33262. name: "Front",
  33263. image: {
  33264. source: "./media/characters/xander/front.svg",
  33265. extra: 1237/974,
  33266. bottom: 94/1331
  33267. }
  33268. },
  33269. },
  33270. [
  33271. {
  33272. name: "Normal",
  33273. height: math.unit(8 + 9/12, "feet"),
  33274. default: true
  33275. },
  33276. {
  33277. name: "Gaze Grabber",
  33278. height: math.unit(13 + 8/12, "feet")
  33279. },
  33280. {
  33281. name: "Jaw Dropper",
  33282. height: math.unit(27, "feet")
  33283. },
  33284. {
  33285. name: "Show Stopper",
  33286. height: math.unit(136, "feet")
  33287. },
  33288. {
  33289. name: "Superstar",
  33290. height: math.unit(1.9e6, "miles")
  33291. },
  33292. ]
  33293. ))
  33294. characterMakers.push(() => makeCharacter(
  33295. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33296. {
  33297. side: {
  33298. height: math.unit(2100, "feet"),
  33299. name: "Side",
  33300. image: {
  33301. source: "./media/characters/osiris/side.svg",
  33302. extra: 1105/939,
  33303. bottom: 167/1272
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Macro",
  33310. height: math.unit(2100, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(6 + 8/12, "feet"),
  33320. weight: math.unit(225, "lb"),
  33321. name: "Front",
  33322. image: {
  33323. source: "./media/characters/rhys-londe/front.svg",
  33324. extra: 2258/2141,
  33325. bottom: 188/2446
  33326. }
  33327. },
  33328. back: {
  33329. height: math.unit(6 + 8/12, "feet"),
  33330. weight: math.unit(225, "lb"),
  33331. name: "Back",
  33332. image: {
  33333. source: "./media/characters/rhys-londe/back.svg",
  33334. extra: 2237/2137,
  33335. bottom: 63/2300
  33336. }
  33337. },
  33338. frontNsfw: {
  33339. height: math.unit(6 + 8/12, "feet"),
  33340. weight: math.unit(225, "lb"),
  33341. name: "Front (NSFW)",
  33342. image: {
  33343. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33344. extra: 2258/2141,
  33345. bottom: 188/2446
  33346. }
  33347. },
  33348. backNsfw: {
  33349. height: math.unit(6 + 8/12, "feet"),
  33350. weight: math.unit(225, "lb"),
  33351. name: "Back (NSFW)",
  33352. image: {
  33353. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33354. extra: 2237/2137,
  33355. bottom: 63/2300
  33356. }
  33357. },
  33358. dick: {
  33359. height: math.unit(30, "inches"),
  33360. name: "Dick",
  33361. image: {
  33362. source: "./media/characters/rhys-londe/dick.svg"
  33363. }
  33364. },
  33365. maw: {
  33366. height: math.unit(1.6, "feet"),
  33367. name: "Maw",
  33368. image: {
  33369. source: "./media/characters/rhys-londe/maw.svg"
  33370. }
  33371. },
  33372. },
  33373. [
  33374. {
  33375. name: "Normal",
  33376. height: math.unit(6 + 8/12, "feet"),
  33377. default: true
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(3 + 10/12, "feet"),
  33386. weight: math.unit(90, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/taivas-ensim/front.svg",
  33390. extra: 1327/1216,
  33391. bottom: 96/1423
  33392. }
  33393. },
  33394. back: {
  33395. height: math.unit(3 + 10/12, "feet"),
  33396. weight: math.unit(90, "lb"),
  33397. name: "Back",
  33398. image: {
  33399. source: "./media/characters/taivas-ensim/back.svg",
  33400. extra: 1355/1247,
  33401. bottom: 11/1366
  33402. }
  33403. },
  33404. frontNsfw: {
  33405. height: math.unit(3 + 10/12, "feet"),
  33406. weight: math.unit(90, "lb"),
  33407. name: "Front (NSFW)",
  33408. image: {
  33409. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33410. extra: 1327/1216,
  33411. bottom: 96/1423
  33412. }
  33413. },
  33414. backNsfw: {
  33415. height: math.unit(3 + 10/12, "feet"),
  33416. weight: math.unit(90, "lb"),
  33417. name: "Back (NSFW)",
  33418. image: {
  33419. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33420. extra: 1355/1247,
  33421. bottom: 11/1366
  33422. }
  33423. },
  33424. },
  33425. [
  33426. {
  33427. name: "Normal",
  33428. height: math.unit(3 + 10/12, "feet"),
  33429. default: true
  33430. },
  33431. ]
  33432. ))
  33433. characterMakers.push(() => makeCharacter(
  33434. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33435. {
  33436. front: {
  33437. height: math.unit(9 + 6/12, "feet"),
  33438. weight: math.unit(940, "lb"),
  33439. name: "Front",
  33440. image: {
  33441. source: "./media/characters/byliss/front.svg",
  33442. extra: 1327/1290,
  33443. bottom: 82/1409
  33444. }
  33445. },
  33446. back: {
  33447. height: math.unit(9 + 6/12, "feet"),
  33448. weight: math.unit(940, "lb"),
  33449. name: "Back",
  33450. image: {
  33451. source: "./media/characters/byliss/back.svg",
  33452. extra: 1376/1349,
  33453. bottom: 9/1385
  33454. }
  33455. },
  33456. frontNsfw: {
  33457. height: math.unit(9 + 6/12, "feet"),
  33458. weight: math.unit(940, "lb"),
  33459. name: "Front (NSFW)",
  33460. image: {
  33461. source: "./media/characters/byliss/front-nsfw.svg",
  33462. extra: 1327/1290,
  33463. bottom: 82/1409
  33464. }
  33465. },
  33466. backNsfw: {
  33467. height: math.unit(9 + 6/12, "feet"),
  33468. weight: math.unit(940, "lb"),
  33469. name: "Back (NSFW)",
  33470. image: {
  33471. source: "./media/characters/byliss/back-nsfw.svg",
  33472. extra: 1376/1349,
  33473. bottom: 9/1385
  33474. }
  33475. },
  33476. },
  33477. [
  33478. {
  33479. name: "Normal",
  33480. height: math.unit(9 + 6/12, "feet"),
  33481. default: true
  33482. },
  33483. ]
  33484. ))
  33485. characterMakers.push(() => makeCharacter(
  33486. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33487. {
  33488. front: {
  33489. height: math.unit(5 + 2/12, "feet"),
  33490. weight: math.unit(200, "lb"),
  33491. name: "Front",
  33492. image: {
  33493. source: "./media/characters/noraly/front.svg",
  33494. extra: 4985/4773,
  33495. bottom: 150/5135
  33496. }
  33497. },
  33498. full: {
  33499. height: math.unit(5 + 2/12, "feet"),
  33500. weight: math.unit(164, "lb"),
  33501. name: "Full",
  33502. image: {
  33503. source: "./media/characters/noraly/full.svg",
  33504. extra: 1114/1059,
  33505. bottom: 35/1149
  33506. }
  33507. },
  33508. fuller: {
  33509. height: math.unit(5 + 2/12, "feet"),
  33510. weight: math.unit(230, "lb"),
  33511. name: "Fuller",
  33512. image: {
  33513. source: "./media/characters/noraly/fuller.svg",
  33514. extra: 1114/1059,
  33515. bottom: 35/1149
  33516. }
  33517. },
  33518. fullest: {
  33519. height: math.unit(5 + 2/12, "feet"),
  33520. weight: math.unit(300, "lb"),
  33521. name: "Fullest",
  33522. image: {
  33523. source: "./media/characters/noraly/fullest.svg",
  33524. extra: 1114/1059,
  33525. bottom: 35/1149
  33526. }
  33527. },
  33528. },
  33529. [
  33530. {
  33531. name: "Normal",
  33532. height: math.unit(5 + 2/12, "feet"),
  33533. default: true
  33534. },
  33535. ]
  33536. ))
  33537. characterMakers.push(() => makeCharacter(
  33538. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33539. {
  33540. front: {
  33541. height: math.unit(5 + 2/12, "feet"),
  33542. weight: math.unit(210, "lb"),
  33543. name: "Front",
  33544. image: {
  33545. source: "./media/characters/pera/front.svg",
  33546. extra: 1560/1531,
  33547. bottom: 165/1725
  33548. }
  33549. },
  33550. back: {
  33551. height: math.unit(5 + 2/12, "feet"),
  33552. weight: math.unit(210, "lb"),
  33553. name: "Back",
  33554. image: {
  33555. source: "./media/characters/pera/back.svg",
  33556. extra: 1523/1493,
  33557. bottom: 152/1675
  33558. }
  33559. },
  33560. dick: {
  33561. height: math.unit(2.4, "feet"),
  33562. name: "Dick",
  33563. image: {
  33564. source: "./media/characters/pera/dick.svg"
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Normal",
  33571. height: math.unit(5 + 2/12, "feet"),
  33572. default: true
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(12, "feet"),
  33581. weight: math.unit(3200, "lb"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/julian/front.svg",
  33585. extra: 2962/2701,
  33586. bottom: 184/3146
  33587. }
  33588. },
  33589. maw: {
  33590. height: math.unit(5.35, "feet"),
  33591. name: "Maw",
  33592. image: {
  33593. source: "./media/characters/julian/maw.svg"
  33594. }
  33595. },
  33596. paw: {
  33597. height: math.unit(3.07, "feet"),
  33598. name: "Paw",
  33599. image: {
  33600. source: "./media/characters/julian/paw.svg"
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Default",
  33607. height: math.unit(12, "feet"),
  33608. default: true
  33609. },
  33610. {
  33611. name: "Big",
  33612. height: math.unit(50, "feet")
  33613. },
  33614. {
  33615. name: "Really Big",
  33616. height: math.unit(1, "mile")
  33617. },
  33618. {
  33619. name: "Extremely Big",
  33620. height: math.unit(100, "miles")
  33621. },
  33622. {
  33623. name: "Planet Hugger",
  33624. height: math.unit(200, "megameters")
  33625. },
  33626. {
  33627. name: "Unreasonably Big",
  33628. height: math.unit(1e300, "meters")
  33629. },
  33630. ]
  33631. ))
  33632. characterMakers.push(() => makeCharacter(
  33633. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33634. {
  33635. solgooleo: {
  33636. height: math.unit(4, "meters"),
  33637. weight: math.unit(6000*1.5, "kg"),
  33638. volume: math.unit(6000, "liters"),
  33639. name: "Solgooleo",
  33640. image: {
  33641. source: "./media/characters/pi/solgooleo.svg",
  33642. extra: 388/331,
  33643. bottom: 29/417
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Normal",
  33650. height: math.unit(4, "meters"),
  33651. default: true
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(8, "feet"),
  33660. weight: math.unit(4, "tons"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/shaun/front.svg",
  33664. extra: 503/495,
  33665. bottom: 20/523
  33666. }
  33667. },
  33668. back: {
  33669. height: math.unit(8, "feet"),
  33670. weight: math.unit(4, "tons"),
  33671. name: "Back",
  33672. image: {
  33673. source: "./media/characters/shaun/back.svg",
  33674. extra: 487/480,
  33675. bottom: 20/507
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Lorg",
  33682. height: math.unit(8, "feet"),
  33683. default: true
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33689. {
  33690. frontAnthro: {
  33691. height: math.unit(7, "feet"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/sini/front-anthro.svg",
  33695. extra: 726/678,
  33696. bottom: 35/761
  33697. },
  33698. form: "anthro",
  33699. default: true
  33700. },
  33701. backAnthro: {
  33702. height: math.unit(7, "feet"),
  33703. name: "Back",
  33704. image: {
  33705. source: "./media/characters/sini/back-anthro.svg",
  33706. extra: 743/701,
  33707. bottom: 12/755
  33708. },
  33709. form: "anthro",
  33710. },
  33711. frontAnthroNsfw: {
  33712. height: math.unit(7, "feet"),
  33713. name: "Front (NSFW)",
  33714. image: {
  33715. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33716. extra: 726/678,
  33717. bottom: 35/761
  33718. },
  33719. form: "anthro"
  33720. },
  33721. backAnthroNsfw: {
  33722. height: math.unit(7, "feet"),
  33723. name: "Back (NSFW)",
  33724. image: {
  33725. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33726. extra: 743/701,
  33727. bottom: 12/755
  33728. },
  33729. form: "anthro",
  33730. },
  33731. mawAnthro: {
  33732. height: math.unit(2.14, "feet"),
  33733. name: "Maw",
  33734. image: {
  33735. source: "./media/characters/sini/maw-anthro.svg"
  33736. },
  33737. form: "anthro"
  33738. },
  33739. dick: {
  33740. height: math.unit(1.45, "feet"),
  33741. name: "Dick",
  33742. image: {
  33743. source: "./media/characters/sini/dick-anthro.svg"
  33744. },
  33745. form: "anthro"
  33746. },
  33747. feral: {
  33748. height: math.unit(16, "feet"),
  33749. name: "Feral",
  33750. image: {
  33751. source: "./media/characters/sini/feral.svg",
  33752. extra: 814/605,
  33753. bottom: 11/825
  33754. },
  33755. form: "feral",
  33756. default: true
  33757. },
  33758. feralNsfw: {
  33759. height: math.unit(16, "feet"),
  33760. name: "Feral (NSFW)",
  33761. image: {
  33762. source: "./media/characters/sini/feral-nsfw.svg",
  33763. extra: 814/605,
  33764. bottom: 11/825
  33765. },
  33766. form: "feral"
  33767. },
  33768. mawFeral: {
  33769. height: math.unit(5.66, "feet"),
  33770. name: "Maw",
  33771. image: {
  33772. source: "./media/characters/sini/maw-feral.svg"
  33773. },
  33774. form: "feral",
  33775. },
  33776. pawFeral: {
  33777. height: math.unit(5.17, "feet"),
  33778. name: "Paw",
  33779. image: {
  33780. source: "./media/characters/sini/paw-feral.svg"
  33781. },
  33782. form: "feral",
  33783. },
  33784. rumpFeral: {
  33785. height: math.unit(13.11, "feet"),
  33786. name: "Rump",
  33787. image: {
  33788. source: "./media/characters/sini/rump-feral.svg"
  33789. },
  33790. form: "feral",
  33791. },
  33792. dickFeral: {
  33793. height: math.unit(1, "feet"),
  33794. name: "Dick",
  33795. image: {
  33796. source: "./media/characters/sini/dick-feral.svg"
  33797. },
  33798. form: "feral",
  33799. },
  33800. eyeFeral: {
  33801. height: math.unit(1.23, "feet"),
  33802. name: "Eye",
  33803. image: {
  33804. source: "./media/characters/sini/eye-feral.svg"
  33805. },
  33806. form: "feral",
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(7, "feet"),
  33813. default: true,
  33814. form: "anthro"
  33815. },
  33816. {
  33817. name: "Normal",
  33818. height: math.unit(16, "feet"),
  33819. default: true,
  33820. form: "feral"
  33821. },
  33822. ],
  33823. {
  33824. "anthro": {
  33825. name: "Anthro",
  33826. default: true
  33827. },
  33828. "feral": {
  33829. name: "Feral",
  33830. }
  33831. }
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33835. {
  33836. side: {
  33837. height: math.unit(13, "meters"),
  33838. weight: math.unit(9072, "kg"),
  33839. name: "Side",
  33840. image: {
  33841. source: "./media/characters/raylldo/side.svg",
  33842. extra: 403/344,
  33843. bottom: 42/445
  33844. }
  33845. },
  33846. leaping: {
  33847. height: math.unit(12.3, "meters"),
  33848. weight: math.unit(9072, "kg"),
  33849. name: "Leaping",
  33850. image: {
  33851. source: "./media/characters/raylldo/leaping.svg",
  33852. extra: 470/249,
  33853. bottom: 13/483
  33854. }
  33855. },
  33856. flying: {
  33857. height: math.unit(18, "meters"),
  33858. weight: math.unit(9072, "kg"),
  33859. name: "Flying",
  33860. image: {
  33861. source: "./media/characters/raylldo/flying.svg"
  33862. }
  33863. },
  33864. head: {
  33865. height: math.unit(5.85, "meters"),
  33866. name: "Head",
  33867. image: {
  33868. source: "./media/characters/raylldo/head.svg"
  33869. }
  33870. },
  33871. maw: {
  33872. height: math.unit(5.32, "meters"),
  33873. name: "Maw",
  33874. image: {
  33875. source: "./media/characters/raylldo/maw.svg"
  33876. }
  33877. },
  33878. eye: {
  33879. height: math.unit(0.54, "meters"),
  33880. name: "Eye",
  33881. image: {
  33882. source: "./media/characters/raylldo/eye.svg"
  33883. }
  33884. },
  33885. },
  33886. [
  33887. {
  33888. name: "Normal",
  33889. height: math.unit(13, "meters"),
  33890. default: true
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33896. {
  33897. anthroFront: {
  33898. height: math.unit(9, "feet"),
  33899. weight: math.unit(600, "lb"),
  33900. name: "Anthro (Front)",
  33901. image: {
  33902. source: "./media/characters/glint/anthro-front.svg",
  33903. extra: 1097/1018,
  33904. bottom: 28/1125
  33905. }
  33906. },
  33907. anthroBack: {
  33908. height: math.unit(9, "feet"),
  33909. weight: math.unit(600, "lb"),
  33910. name: "Anthro (Back)",
  33911. image: {
  33912. source: "./media/characters/glint/anthro-back.svg",
  33913. extra: 1154/997,
  33914. bottom: 36/1190
  33915. }
  33916. },
  33917. feral: {
  33918. height: math.unit(11, "feet"),
  33919. weight: math.unit(50000, "lb"),
  33920. name: "Feral",
  33921. image: {
  33922. source: "./media/characters/glint/feral.svg",
  33923. extra: 3035/1585,
  33924. bottom: 1169/4204
  33925. }
  33926. },
  33927. dickAnthro: {
  33928. height: math.unit(0.7, "meters"),
  33929. name: "Dick (Anthro)",
  33930. image: {
  33931. source: "./media/characters/glint/dick-anthro.svg"
  33932. }
  33933. },
  33934. dickFeral: {
  33935. height: math.unit(2.65, "meters"),
  33936. name: "Dick (Feral)",
  33937. image: {
  33938. source: "./media/characters/glint/dick-feral.svg"
  33939. }
  33940. },
  33941. slitHidden: {
  33942. height: math.unit(5.85, "meters"),
  33943. name: "Slit (Hidden)",
  33944. image: {
  33945. source: "./media/characters/glint/slit-hidden.svg"
  33946. }
  33947. },
  33948. slitErect: {
  33949. height: math.unit(5.85, "meters"),
  33950. name: "Slit (Erect)",
  33951. image: {
  33952. source: "./media/characters/glint/slit-erect.svg"
  33953. }
  33954. },
  33955. mawAnthro: {
  33956. height: math.unit(0.63, "meters"),
  33957. name: "Maw (Anthro)",
  33958. image: {
  33959. source: "./media/characters/glint/maw.svg"
  33960. }
  33961. },
  33962. mawFeral: {
  33963. height: math.unit(2.89, "meters"),
  33964. name: "Maw (Feral)",
  33965. image: {
  33966. source: "./media/characters/glint/maw.svg"
  33967. }
  33968. },
  33969. },
  33970. [
  33971. {
  33972. name: "Normal",
  33973. height: math.unit(9, "feet"),
  33974. default: true
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33980. {
  33981. side: {
  33982. height: math.unit(15, "feet"),
  33983. weight: math.unit(5000, "kg"),
  33984. name: "Side",
  33985. image: {
  33986. source: "./media/characters/kairne/side.svg",
  33987. extra: 979/811,
  33988. bottom: 13/992
  33989. }
  33990. },
  33991. front: {
  33992. height: math.unit(15, "feet"),
  33993. weight: math.unit(5000, "kg"),
  33994. name: "Front",
  33995. image: {
  33996. source: "./media/characters/kairne/front.svg",
  33997. extra: 908/814,
  33998. bottom: 26/934
  33999. }
  34000. },
  34001. sideNsfw: {
  34002. height: math.unit(15, "feet"),
  34003. weight: math.unit(5000, "kg"),
  34004. name: "Side (NSFW)",
  34005. image: {
  34006. source: "./media/characters/kairne/side-nsfw.svg",
  34007. extra: 979/811,
  34008. bottom: 13/992
  34009. }
  34010. },
  34011. frontNsfw: {
  34012. height: math.unit(15, "feet"),
  34013. weight: math.unit(5000, "kg"),
  34014. name: "Front (NSFW)",
  34015. image: {
  34016. source: "./media/characters/kairne/front-nsfw.svg",
  34017. extra: 908/814,
  34018. bottom: 26/934
  34019. }
  34020. },
  34021. dickCaged: {
  34022. height: math.unit(0.65, "meters"),
  34023. name: "Dick-caged",
  34024. image: {
  34025. source: "./media/characters/kairne/dick-caged.svg"
  34026. }
  34027. },
  34028. dick: {
  34029. height: math.unit(0.79, "meters"),
  34030. name: "Dick",
  34031. image: {
  34032. source: "./media/characters/kairne/dick.svg"
  34033. }
  34034. },
  34035. genitals: {
  34036. height: math.unit(1.29, "meters"),
  34037. name: "Genitals",
  34038. image: {
  34039. source: "./media/characters/kairne/genitals.svg"
  34040. }
  34041. },
  34042. maw: {
  34043. height: math.unit(1.73, "meters"),
  34044. name: "Maw",
  34045. image: {
  34046. source: "./media/characters/kairne/maw.svg"
  34047. }
  34048. },
  34049. },
  34050. [
  34051. {
  34052. name: "Normal",
  34053. height: math.unit(15, "feet"),
  34054. default: true
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(5 + 8/12, "feet"),
  34063. weight: math.unit(139, "lb"),
  34064. name: "Front",
  34065. image: {
  34066. source: "./media/characters/biscuit-jackal/front.svg",
  34067. extra: 2106/1961,
  34068. bottom: 58/2164
  34069. }
  34070. },
  34071. back: {
  34072. height: math.unit(5 + 8/12, "feet"),
  34073. weight: math.unit(139, "lb"),
  34074. name: "Back",
  34075. image: {
  34076. source: "./media/characters/biscuit-jackal/back.svg",
  34077. extra: 2132/1976,
  34078. bottom: 57/2189
  34079. }
  34080. },
  34081. werejackal: {
  34082. height: math.unit(6 + 3/12, "feet"),
  34083. weight: math.unit(188, "lb"),
  34084. name: "Werejackal",
  34085. image: {
  34086. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34087. extra: 2373/2178,
  34088. bottom: 53/2426
  34089. }
  34090. },
  34091. },
  34092. [
  34093. {
  34094. name: "Normal",
  34095. height: math.unit(5 + 8/12, "feet"),
  34096. default: true
  34097. },
  34098. ]
  34099. ))
  34100. characterMakers.push(() => makeCharacter(
  34101. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34102. {
  34103. front: {
  34104. height: math.unit(140, "cm"),
  34105. weight: math.unit(45, "kg"),
  34106. name: "Front",
  34107. image: {
  34108. source: "./media/characters/tayra-white/front.svg",
  34109. extra: 2229/2192,
  34110. bottom: 75/2304
  34111. }
  34112. },
  34113. },
  34114. [
  34115. {
  34116. name: "Normal",
  34117. height: math.unit(140, "cm"),
  34118. default: true
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34124. {
  34125. front: {
  34126. height: math.unit(4 + 5/12, "feet"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/scoop/front.svg",
  34130. extra: 1257/1136,
  34131. bottom: 69/1326
  34132. }
  34133. },
  34134. back: {
  34135. height: math.unit(4 + 5/12, "feet"),
  34136. name: "Back",
  34137. image: {
  34138. source: "./media/characters/scoop/back.svg",
  34139. extra: 1321/1152,
  34140. bottom: 32/1353
  34141. }
  34142. },
  34143. maw: {
  34144. height: math.unit(0.68, "feet"),
  34145. name: "Maw",
  34146. image: {
  34147. source: "./media/characters/scoop/maw.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Really Small",
  34154. height: math.unit(1, "mm")
  34155. },
  34156. {
  34157. name: "Micro",
  34158. height: math.unit(1, "inch")
  34159. },
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(4 + 5/12, "feet"),
  34163. default: true
  34164. },
  34165. {
  34166. name: "Macro",
  34167. height: math.unit(200, "feet")
  34168. },
  34169. {
  34170. name: "Megamacro",
  34171. height: math.unit(3240, "feet")
  34172. },
  34173. {
  34174. name: "Teramacro",
  34175. height: math.unit(2500, "miles")
  34176. },
  34177. ]
  34178. ))
  34179. characterMakers.push(() => makeCharacter(
  34180. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34181. {
  34182. front: {
  34183. height: math.unit(15 + 7/12, "feet"),
  34184. weight: math.unit(1150, "tons"),
  34185. name: "Front",
  34186. image: {
  34187. source: "./media/characters/saphinara/front.svg",
  34188. extra: 1837/1643,
  34189. bottom: 84/1921
  34190. },
  34191. form: "normal",
  34192. default: true
  34193. },
  34194. side: {
  34195. height: math.unit(15 + 7/12, "feet"),
  34196. weight: math.unit(1150, "tons"),
  34197. name: "Side",
  34198. image: {
  34199. source: "./media/characters/saphinara/side.svg",
  34200. extra: 605/547,
  34201. bottom: 6/611
  34202. },
  34203. form: "normal"
  34204. },
  34205. back: {
  34206. height: math.unit(15 + 7/12, "feet"),
  34207. weight: math.unit(1150, "tons"),
  34208. name: "Back",
  34209. image: {
  34210. source: "./media/characters/saphinara/back.svg",
  34211. extra: 591/531,
  34212. bottom: 13/604
  34213. },
  34214. form: "normal"
  34215. },
  34216. frontTail: {
  34217. height: math.unit(15 + 7/12, "feet"),
  34218. weight: math.unit(1150, "tons"),
  34219. name: "Front (Full Tail)",
  34220. image: {
  34221. source: "./media/characters/saphinara/front-tail.svg",
  34222. extra: 2256/1630,
  34223. bottom: 261/2517
  34224. },
  34225. form: "normal"
  34226. },
  34227. insides: {
  34228. height: math.unit(11.92, "feet"),
  34229. name: "Insides",
  34230. image: {
  34231. source: "./media/characters/saphinara/insides.svg"
  34232. },
  34233. form: "normal"
  34234. },
  34235. head: {
  34236. height: math.unit(4.17, "feet"),
  34237. name: "Head",
  34238. image: {
  34239. source: "./media/characters/saphinara/head.svg"
  34240. },
  34241. form: "normal"
  34242. },
  34243. tongue: {
  34244. height: math.unit(4.60, "feet"),
  34245. name: "Tongue",
  34246. image: {
  34247. source: "./media/characters/saphinara/tongue.svg"
  34248. },
  34249. form: "normal"
  34250. },
  34251. headEnraged: {
  34252. height: math.unit(5.55, "feet"),
  34253. name: "Head (Enraged)",
  34254. image: {
  34255. source: "./media/characters/saphinara/head-enraged.svg"
  34256. },
  34257. form: "normal"
  34258. },
  34259. wings: {
  34260. height: math.unit(11.95, "feet"),
  34261. name: "Wings",
  34262. image: {
  34263. source: "./media/characters/saphinara/wings.svg"
  34264. },
  34265. form: "normal"
  34266. },
  34267. feathers: {
  34268. height: math.unit(8.92, "feet"),
  34269. name: "Feathers",
  34270. image: {
  34271. source: "./media/characters/saphinara/feathers.svg"
  34272. },
  34273. form: "normal"
  34274. },
  34275. shackles: {
  34276. height: math.unit(2, "feet"),
  34277. name: "Shackles",
  34278. image: {
  34279. source: "./media/characters/saphinara/shackles.svg"
  34280. },
  34281. form: "normal"
  34282. },
  34283. eyes: {
  34284. height: math.unit(1.331, "feet"),
  34285. name: "Eyes",
  34286. image: {
  34287. source: "./media/characters/saphinara/eyes.svg"
  34288. },
  34289. form: "normal"
  34290. },
  34291. eyesEnraged: {
  34292. height: math.unit(1.331, "feet"),
  34293. name: "Eyes (Enraged)",
  34294. image: {
  34295. source: "./media/characters/saphinara/eyes-enraged.svg"
  34296. },
  34297. form: "normal"
  34298. },
  34299. trueFormSide: {
  34300. height: math.unit(200, "feet"),
  34301. weight: math.unit(1e7, "tons"),
  34302. name: "Side",
  34303. image: {
  34304. source: "./media/characters/saphinara/true-form-side.svg",
  34305. extra: 1399/770,
  34306. bottom: 97/1496
  34307. },
  34308. form: "true-form",
  34309. default: true
  34310. },
  34311. trueFormMaw: {
  34312. height: math.unit(71.5, "feet"),
  34313. name: "Maw",
  34314. image: {
  34315. source: "./media/characters/saphinara/true-form-maw.svg",
  34316. extra: 2302/1453,
  34317. bottom: 0/2302
  34318. },
  34319. form: "true-form"
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(15 + 7/12, "feet"),
  34326. default: true,
  34327. form: "normal"
  34328. },
  34329. {
  34330. name: "Angry",
  34331. height: math.unit(30 + 6/12, "feet"),
  34332. form: "normal"
  34333. },
  34334. {
  34335. name: "Enraged",
  34336. height: math.unit(102 + 1/12, "feet"),
  34337. form: "normal"
  34338. },
  34339. {
  34340. name: "True",
  34341. height: math.unit(200, "feet"),
  34342. default: true,
  34343. form: "true-form"
  34344. }
  34345. ],
  34346. {
  34347. "normal": {
  34348. name: "Normal",
  34349. default: true
  34350. },
  34351. "true-form": {
  34352. name: "True Form"
  34353. }
  34354. }
  34355. ))
  34356. characterMakers.push(() => makeCharacter(
  34357. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34358. {
  34359. front: {
  34360. height: math.unit(6 + 8/12, "feet"),
  34361. weight: math.unit(300, "lb"),
  34362. name: "Front",
  34363. image: {
  34364. source: "./media/characters/jrain/front.svg",
  34365. extra: 3039/2865,
  34366. bottom: 399/3438
  34367. }
  34368. },
  34369. back: {
  34370. height: math.unit(6 + 8/12, "feet"),
  34371. weight: math.unit(300, "lb"),
  34372. name: "Back",
  34373. image: {
  34374. source: "./media/characters/jrain/back.svg",
  34375. extra: 3089/2938,
  34376. bottom: 172/3261
  34377. }
  34378. },
  34379. head: {
  34380. height: math.unit(2.14, "feet"),
  34381. name: "Head",
  34382. image: {
  34383. source: "./media/characters/jrain/head.svg"
  34384. }
  34385. },
  34386. maw: {
  34387. height: math.unit(1.77, "feet"),
  34388. name: "Maw",
  34389. image: {
  34390. source: "./media/characters/jrain/maw.svg"
  34391. }
  34392. },
  34393. leftHand: {
  34394. height: math.unit(1.1, "feet"),
  34395. name: "Left Hand",
  34396. image: {
  34397. source: "./media/characters/jrain/left-hand.svg"
  34398. }
  34399. },
  34400. rightHand: {
  34401. height: math.unit(1.1, "feet"),
  34402. name: "Right Hand",
  34403. image: {
  34404. source: "./media/characters/jrain/right-hand.svg"
  34405. }
  34406. },
  34407. eye: {
  34408. height: math.unit(0.35, "feet"),
  34409. name: "Eye",
  34410. image: {
  34411. source: "./media/characters/jrain/eye.svg"
  34412. }
  34413. },
  34414. },
  34415. [
  34416. {
  34417. name: "Normal",
  34418. height: math.unit(6 + 8/12, "feet"),
  34419. default: true
  34420. },
  34421. {
  34422. name: "Casually Large",
  34423. height: math.unit(25, "feet")
  34424. },
  34425. {
  34426. name: "Giant",
  34427. height: math.unit(100, "feet")
  34428. },
  34429. {
  34430. name: "Kaiju",
  34431. height: math.unit(300, "feet")
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34437. {
  34438. dragon: {
  34439. height: math.unit(5, "meters"),
  34440. name: "Dragon",
  34441. image: {
  34442. source: "./media/characters/sabrina/dragon.svg",
  34443. extra: 3670 / 2365,
  34444. bottom: 333 / 4003
  34445. }
  34446. },
  34447. gryphon: {
  34448. height: math.unit(3, "meters"),
  34449. name: "Gryphon",
  34450. image: {
  34451. source: "./media/characters/sabrina/gryphon.svg",
  34452. extra: 1576 / 945,
  34453. bottom: 71 / 1647
  34454. }
  34455. },
  34456. snake: {
  34457. height: math.unit(12, "meters"),
  34458. name: "Snake",
  34459. image: {
  34460. source: "./media/characters/sabrina/snake.svg",
  34461. extra: 1758 / 1320,
  34462. bottom: 186 / 1944
  34463. }
  34464. },
  34465. collar: {
  34466. height: math.unit(1.86, "meters"),
  34467. name: "Collar",
  34468. image: {
  34469. source: "./media/characters/sabrina/collar.svg"
  34470. }
  34471. },
  34472. eye: {
  34473. height: math.unit(0.53, "meters"),
  34474. name: "Eye",
  34475. image: {
  34476. source: "./media/characters/sabrina/eye.svg"
  34477. }
  34478. },
  34479. foot: {
  34480. height: math.unit(1.86, "meters"),
  34481. name: "Foot",
  34482. image: {
  34483. source: "./media/characters/sabrina/foot.svg"
  34484. }
  34485. },
  34486. hand: {
  34487. height: math.unit(1.32, "meters"),
  34488. name: "Hand",
  34489. image: {
  34490. source: "./media/characters/sabrina/hand.svg"
  34491. }
  34492. },
  34493. head: {
  34494. height: math.unit(2.44, "meters"),
  34495. name: "Head",
  34496. image: {
  34497. source: "./media/characters/sabrina/head.svg"
  34498. }
  34499. },
  34500. headAngry: {
  34501. height: math.unit(2.44, "meters"),
  34502. name: "Head (Angry))",
  34503. image: {
  34504. source: "./media/characters/sabrina/head-angry.svg"
  34505. }
  34506. },
  34507. maw: {
  34508. height: math.unit(1.65, "meters"),
  34509. name: "Maw",
  34510. image: {
  34511. source: "./media/characters/sabrina/maw.svg"
  34512. }
  34513. },
  34514. spikes: {
  34515. height: math.unit(1.69, "meters"),
  34516. name: "Spikes",
  34517. image: {
  34518. source: "./media/characters/sabrina/spikes.svg"
  34519. }
  34520. },
  34521. stomach: {
  34522. height: math.unit(1.15, "meters"),
  34523. name: "Stomach",
  34524. image: {
  34525. source: "./media/characters/sabrina/stomach.svg"
  34526. }
  34527. },
  34528. tongue: {
  34529. height: math.unit(1.27, "meters"),
  34530. name: "Tongue",
  34531. image: {
  34532. source: "./media/characters/sabrina/tongue.svg"
  34533. }
  34534. },
  34535. wingDorsal: {
  34536. height: math.unit(4.85, "meters"),
  34537. name: "Wing (Dorsal)",
  34538. image: {
  34539. source: "./media/characters/sabrina/wing-dorsal.svg"
  34540. }
  34541. },
  34542. wingVentral: {
  34543. height: math.unit(4.85, "meters"),
  34544. name: "Wing (Ventral)",
  34545. image: {
  34546. source: "./media/characters/sabrina/wing-ventral.svg"
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(5, "meters"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34560. {
  34561. frontMaid: {
  34562. height: math.unit(5 + 5/12, "feet"),
  34563. weight: math.unit(130, "lb"),
  34564. name: "Front (Maid)",
  34565. image: {
  34566. source: "./media/characters/midnight-tales/front-maid.svg",
  34567. extra: 489/454,
  34568. bottom: 61/550
  34569. }
  34570. },
  34571. frontFormal: {
  34572. height: math.unit(5 + 5/12, "feet"),
  34573. weight: math.unit(130, "lb"),
  34574. name: "Front (Formal)",
  34575. image: {
  34576. source: "./media/characters/midnight-tales/front-formal.svg",
  34577. extra: 489/454,
  34578. bottom: 61/550
  34579. }
  34580. },
  34581. back: {
  34582. height: math.unit(5 + 5/12, "feet"),
  34583. weight: math.unit(130, "lb"),
  34584. name: "Back",
  34585. image: {
  34586. source: "./media/characters/midnight-tales/back.svg",
  34587. extra: 498/456,
  34588. bottom: 33/531
  34589. }
  34590. },
  34591. frontBeast: {
  34592. height: math.unit(40, "feet"),
  34593. weight: math.unit(64000, "lb"),
  34594. name: "Front (Beast)",
  34595. image: {
  34596. source: "./media/characters/midnight-tales/front-beast.svg",
  34597. extra: 927/860,
  34598. bottom: 53/980
  34599. }
  34600. },
  34601. backBeast: {
  34602. height: math.unit(40, "feet"),
  34603. weight: math.unit(64000, "lb"),
  34604. name: "Back (Beast)",
  34605. image: {
  34606. source: "./media/characters/midnight-tales/back-beast.svg",
  34607. extra: 929/855,
  34608. bottom: 16/945
  34609. }
  34610. },
  34611. footBeast: {
  34612. height: math.unit(6.7, "feet"),
  34613. name: "Foot (Beast)",
  34614. image: {
  34615. source: "./media/characters/midnight-tales/foot-beast.svg"
  34616. }
  34617. },
  34618. headBeast: {
  34619. height: math.unit(8, "feet"),
  34620. name: "Head (Beast)",
  34621. image: {
  34622. source: "./media/characters/midnight-tales/head-beast.svg"
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(5 + 5 / 12, "feet"),
  34630. default: true
  34631. },
  34632. {
  34633. name: "Macro",
  34634. height: math.unit(25, "feet")
  34635. },
  34636. ]
  34637. ))
  34638. characterMakers.push(() => makeCharacter(
  34639. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34640. {
  34641. front: {
  34642. height: math.unit(5 + 10/12, "feet"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/argon/front.svg",
  34646. extra: 2009/1935,
  34647. bottom: 118/2127
  34648. }
  34649. },
  34650. back: {
  34651. height: math.unit(5 + 10/12, "feet"),
  34652. name: "Back",
  34653. image: {
  34654. source: "./media/characters/argon/back.svg",
  34655. extra: 2047/1992,
  34656. bottom: 20/2067
  34657. }
  34658. },
  34659. frontDressed: {
  34660. height: math.unit(5 + 10/12, "feet"),
  34661. name: "Front (Dressed)",
  34662. image: {
  34663. source: "./media/characters/argon/front-dressed.svg",
  34664. extra: 2009/1935,
  34665. bottom: 118/2127
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(5 + 10/12, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34679. {
  34680. front: {
  34681. height: math.unit(8 + 6/12, "feet"),
  34682. weight: math.unit(1150, "lb"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/kichi/front.svg",
  34686. extra: 1267/1164,
  34687. bottom: 61/1328
  34688. }
  34689. },
  34690. back: {
  34691. height: math.unit(8 + 6/12, "feet"),
  34692. weight: math.unit(1150, "lb"),
  34693. name: "Back",
  34694. image: {
  34695. source: "./media/characters/kichi/back.svg",
  34696. extra: 1273/1166,
  34697. bottom: 33/1306
  34698. }
  34699. },
  34700. },
  34701. [
  34702. {
  34703. name: "Normal",
  34704. height: math.unit(8 + 6/12, "feet"),
  34705. default: true
  34706. },
  34707. ]
  34708. ))
  34709. characterMakers.push(() => makeCharacter(
  34710. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34711. {
  34712. front: {
  34713. height: math.unit(6, "feet"),
  34714. weight: math.unit(210, "lb"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/manetel-greyscale/front.svg",
  34718. extra: 350/312,
  34719. bottom: 8/358
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Micro",
  34726. height: math.unit(2, "inches")
  34727. },
  34728. {
  34729. name: "Normal",
  34730. height: math.unit(6, "feet"),
  34731. default: true
  34732. },
  34733. {
  34734. name: "Minimacro",
  34735. height: math.unit(17, "feet")
  34736. },
  34737. {
  34738. name: "Macro",
  34739. height: math.unit(117, "feet")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34745. {
  34746. side: {
  34747. height: math.unit(5 + 1/12, "feet"),
  34748. weight: math.unit(418, "lb"),
  34749. name: "Side",
  34750. image: {
  34751. source: "./media/characters/softpurr/side.svg",
  34752. extra: 1993/1945,
  34753. bottom: 134/2127
  34754. }
  34755. },
  34756. front: {
  34757. height: math.unit(5 + 1/12, "feet"),
  34758. weight: math.unit(418, "lb"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/softpurr/front.svg",
  34762. extra: 1950/1856,
  34763. bottom: 174/2124
  34764. }
  34765. },
  34766. paw: {
  34767. height: math.unit(1, "feet"),
  34768. name: "Paw",
  34769. image: {
  34770. source: "./media/characters/softpurr/paw.svg"
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(5 + 1/12, "feet"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(260, "meters"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/anahita/front.svg",
  34790. extra: 665/635,
  34791. bottom: 89/754
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Macro",
  34798. height: math.unit(260, "meters"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(4 + 10/12, "feet"),
  34808. weight: math.unit(160, "lb"),
  34809. name: "Front",
  34810. image: {
  34811. source: "./media/characters/chip-mouse/front.svg",
  34812. extra: 3528/3408,
  34813. bottom: 0/3528
  34814. }
  34815. },
  34816. frontNsfw: {
  34817. height: math.unit(4 + 10/12, "feet"),
  34818. weight: math.unit(160, "lb"),
  34819. name: "Front (NSFW)",
  34820. image: {
  34821. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34822. extra: 3528/3408,
  34823. bottom: 0/3528
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(4 + 10/12, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34837. {
  34838. side: {
  34839. height: math.unit(10, "feet"),
  34840. weight: math.unit(14000, "lb"),
  34841. name: "Side",
  34842. image: {
  34843. source: "./media/characters/kremm/side.svg",
  34844. extra: 1390/1053,
  34845. bottom: 90/1480
  34846. }
  34847. },
  34848. gut: {
  34849. height: math.unit(5.8, "feet"),
  34850. name: "Gut",
  34851. image: {
  34852. source: "./media/characters/kremm/gut.svg"
  34853. }
  34854. },
  34855. ass: {
  34856. height: math.unit(6.1, "feet"),
  34857. name: "Ass",
  34858. image: {
  34859. source: "./media/characters/kremm/ass.svg"
  34860. }
  34861. },
  34862. jaws: {
  34863. height: math.unit(2.2, "feet"),
  34864. name: "Jaws",
  34865. image: {
  34866. source: "./media/characters/kremm/jaws.svg"
  34867. }
  34868. },
  34869. dick: {
  34870. height: math.unit(4.26, "feet"),
  34871. name: "Dick",
  34872. image: {
  34873. source: "./media/characters/kremm/dick.svg"
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(10, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(30, "stories"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/kai/front.svg",
  34893. extra: 1892/1718,
  34894. bottom: 162/2054
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Macro",
  34901. height: math.unit(30, "stories"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(6 + 4/12, "feet"),
  34911. weight: math.unit(145, "lb"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/sykes/front.svg",
  34915. extra: 1321 / 1187,
  34916. bottom: 66 / 1387
  34917. }
  34918. },
  34919. back: {
  34920. height: math.unit(6 + 4/12, "feet"),
  34921. weight: math.unit(145, "lb"),
  34922. name: "Back",
  34923. image: {
  34924. source: "./media/characters/sykes/back.svg",
  34925. extra: 1326/1181,
  34926. bottom: 31/1357
  34927. }
  34928. },
  34929. traditionalOutfit: {
  34930. height: math.unit(6 + 4/12, "feet"),
  34931. weight: math.unit(145, "lb"),
  34932. name: "Traditional Outfit",
  34933. image: {
  34934. source: "./media/characters/sykes/traditional-outfit.svg",
  34935. extra: 1321 / 1187,
  34936. bottom: 66 / 1387
  34937. }
  34938. },
  34939. adventureOutfit: {
  34940. height: math.unit(6 + 4/12, "feet"),
  34941. weight: math.unit(145, "lb"),
  34942. name: "Adventure Outfit",
  34943. image: {
  34944. source: "./media/characters/sykes/adventure-outfit.svg",
  34945. extra: 1321 / 1187,
  34946. bottom: 66 / 1387
  34947. }
  34948. },
  34949. handLeft: {
  34950. height: math.unit(0.9, "feet"),
  34951. name: "Hand (Left)",
  34952. image: {
  34953. source: "./media/characters/sykes/hand-left.svg"
  34954. }
  34955. },
  34956. handRight: {
  34957. height: math.unit(0.839, "feet"),
  34958. name: "Hand (Right)",
  34959. image: {
  34960. source: "./media/characters/sykes/hand-right.svg"
  34961. }
  34962. },
  34963. leftFoot: {
  34964. height: math.unit(1.2, "feet"),
  34965. name: "Foot (Left)",
  34966. image: {
  34967. source: "./media/characters/sykes/foot-left.svg"
  34968. }
  34969. },
  34970. rightFoot: {
  34971. height: math.unit(1.2, "feet"),
  34972. name: "Foot (Right)",
  34973. image: {
  34974. source: "./media/characters/sykes/foot-right.svg"
  34975. }
  34976. },
  34977. maw: {
  34978. height: math.unit(1.93, "feet"),
  34979. name: "Maw",
  34980. image: {
  34981. source: "./media/characters/sykes/maw.svg"
  34982. }
  34983. },
  34984. teeth: {
  34985. height: math.unit(0.51, "feet"),
  34986. name: "Teeth",
  34987. image: {
  34988. source: "./media/characters/sykes/teeth.svg"
  34989. }
  34990. },
  34991. tongue: {
  34992. height: math.unit(2.13, "feet"),
  34993. name: "Tongue",
  34994. image: {
  34995. source: "./media/characters/sykes/tongue.svg"
  34996. }
  34997. },
  34998. uvula: {
  34999. height: math.unit(0.16, "feet"),
  35000. name: "Uvula",
  35001. image: {
  35002. source: "./media/characters/sykes/uvula.svg"
  35003. }
  35004. },
  35005. collar: {
  35006. height: math.unit(0.287, "feet"),
  35007. name: "Collar",
  35008. image: {
  35009. source: "./media/characters/sykes/collar.svg"
  35010. }
  35011. },
  35012. tail: {
  35013. height: math.unit(3.8, "feet"),
  35014. name: "Tail",
  35015. image: {
  35016. source: "./media/characters/sykes/tail.svg"
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Shrunken",
  35023. height: math.unit(5, "inches")
  35024. },
  35025. {
  35026. name: "Normal",
  35027. height: math.unit(6 + 4 / 12, "feet"),
  35028. default: true
  35029. },
  35030. {
  35031. name: "Big",
  35032. height: math.unit(15, "feet")
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(5 + 8/12, "feet"),
  35041. weight: math.unit(190, "lb"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/oven-otter/front.svg",
  35045. extra: 1809/1740,
  35046. bottom: 181/1990
  35047. }
  35048. },
  35049. back: {
  35050. height: math.unit(5 + 8/12, "feet"),
  35051. weight: math.unit(190, "lb"),
  35052. name: "Back",
  35053. image: {
  35054. source: "./media/characters/oven-otter/back.svg",
  35055. extra: 1709/1635,
  35056. bottom: 118/1827
  35057. }
  35058. },
  35059. hand: {
  35060. height: math.unit(1.07, "feet"),
  35061. name: "Hand",
  35062. image: {
  35063. source: "./media/characters/oven-otter/hand.svg"
  35064. }
  35065. },
  35066. beans: {
  35067. height: math.unit(1.74, "feet"),
  35068. name: "Beans",
  35069. image: {
  35070. source: "./media/characters/oven-otter/beans.svg"
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Micro",
  35077. height: math.unit(0.5, "inches")
  35078. },
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(5 + 8/12, "feet"),
  35082. default: true
  35083. },
  35084. {
  35085. name: "Macro",
  35086. height: math.unit(250, "feet")
  35087. },
  35088. {
  35089. name: "Really High",
  35090. height: math.unit(420, "feet")
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(5, "meters"),
  35099. weight: math.unit(292000000000000, "kg"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/devourer/front.svg",
  35103. extra: 1800/1733,
  35104. bottom: 211/2011
  35105. }
  35106. },
  35107. maw: {
  35108. height: math.unit(1.1, "meter"),
  35109. name: "Maw",
  35110. image: {
  35111. source: "./media/characters/devourer/maw.svg"
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Small",
  35118. height: math.unit(3, "meters")
  35119. },
  35120. {
  35121. name: "Large",
  35122. height: math.unit(5, "meters"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35129. {
  35130. front: {
  35131. height: math.unit(6, "feet"),
  35132. weight: math.unit(400, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/ellarby/front.svg",
  35136. extra: 1909/1763,
  35137. bottom: 80/1989
  35138. }
  35139. },
  35140. back: {
  35141. height: math.unit(6, "feet"),
  35142. weight: math.unit(400, "lb"),
  35143. name: "Back",
  35144. image: {
  35145. source: "./media/characters/ellarby/back.svg",
  35146. extra: 1914/1784,
  35147. bottom: 172/2086
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Mischief",
  35154. height: math.unit(18, "inches")
  35155. },
  35156. {
  35157. name: "Trouble",
  35158. height: math.unit(12, "feet")
  35159. },
  35160. {
  35161. name: "Havoc",
  35162. height: math.unit(200, "feet"),
  35163. default: true
  35164. },
  35165. {
  35166. name: "Pandemonium",
  35167. height: math.unit(1, "mile")
  35168. },
  35169. {
  35170. name: "Catastrophe",
  35171. height: math.unit(100, "miles")
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35177. {
  35178. front: {
  35179. height: math.unit(4.7, "meters"),
  35180. weight: math.unit(6500, "kg"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/vex/front.svg",
  35184. extra: 1288/1140,
  35185. bottom: 100/1388
  35186. }
  35187. },
  35188. },
  35189. [
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(4.7, "meters"),
  35193. default: true
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35199. {
  35200. normal: {
  35201. height: math.unit(6, "feet"),
  35202. weight: math.unit(350, "lb"),
  35203. name: "Normal",
  35204. image: {
  35205. source: "./media/characters/teshy/normal.svg",
  35206. extra: 1795/1735,
  35207. bottom: 16/1811
  35208. }
  35209. },
  35210. monsterFront: {
  35211. height: math.unit(12, "feet"),
  35212. weight: math.unit(4700, "lb"),
  35213. name: "Monster (Front)",
  35214. image: {
  35215. source: "./media/characters/teshy/monster-front.svg",
  35216. extra: 2042/2034,
  35217. bottom: 128/2170
  35218. }
  35219. },
  35220. monsterSide: {
  35221. height: math.unit(12, "feet"),
  35222. weight: math.unit(4700, "lb"),
  35223. name: "Monster (Side)",
  35224. image: {
  35225. source: "./media/characters/teshy/monster-side.svg",
  35226. extra: 2067/2056,
  35227. bottom: 70/2137
  35228. }
  35229. },
  35230. monsterBack: {
  35231. height: math.unit(12, "feet"),
  35232. weight: math.unit(4700, "lb"),
  35233. name: "Monster (Back)",
  35234. image: {
  35235. source: "./media/characters/teshy/monster-back.svg",
  35236. extra: 1921/1914,
  35237. bottom: 171/2092
  35238. }
  35239. },
  35240. },
  35241. [
  35242. {
  35243. name: "Normal",
  35244. height: math.unit(6, "feet"),
  35245. default: true
  35246. },
  35247. ]
  35248. ))
  35249. characterMakers.push(() => makeCharacter(
  35250. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35251. {
  35252. front: {
  35253. height: math.unit(6, "feet"),
  35254. name: "Front",
  35255. image: {
  35256. source: "./media/characters/ramey/front.svg",
  35257. extra: 790/787,
  35258. bottom: 27/817
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(6, "feet"),
  35266. default: true
  35267. },
  35268. ]
  35269. ))
  35270. characterMakers.push(() => makeCharacter(
  35271. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35272. {
  35273. front: {
  35274. height: math.unit(5 + 5/12, "feet"),
  35275. weight: math.unit(120, "lb"),
  35276. name: "Front",
  35277. image: {
  35278. source: "./media/characters/phirae/front.svg",
  35279. extra: 2491/2436,
  35280. bottom: 38/2529
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Normal",
  35287. height: math.unit(5 + 5/12, "feet"),
  35288. default: true
  35289. },
  35290. ]
  35291. ))
  35292. characterMakers.push(() => makeCharacter(
  35293. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35294. {
  35295. front: {
  35296. height: math.unit(5 + 3/12, "feet"),
  35297. name: "Front",
  35298. image: {
  35299. source: "./media/characters/stagglas/front.svg",
  35300. extra: 962/882,
  35301. bottom: 53/1015
  35302. }
  35303. },
  35304. feral: {
  35305. height: math.unit(335, "cm"),
  35306. name: "Feral",
  35307. image: {
  35308. source: "./media/characters/stagglas/feral.svg",
  35309. extra: 1732/1090,
  35310. bottom: 48/1780
  35311. }
  35312. },
  35313. },
  35314. [
  35315. {
  35316. name: "Normal",
  35317. height: math.unit(5 + 3/12, "feet"),
  35318. default: true
  35319. },
  35320. ]
  35321. ))
  35322. characterMakers.push(() => makeCharacter(
  35323. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35324. {
  35325. front: {
  35326. height: math.unit(5 + 4/12, "feet"),
  35327. weight: math.unit(145, "lb"),
  35328. name: "Front",
  35329. image: {
  35330. source: "./media/characters/starra/front.svg",
  35331. extra: 1790/1691,
  35332. bottom: 91/1881
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(5 + 4/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(2.2, "meters"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35352. extra: 1194/1005,
  35353. bottom: 25/1219
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(2.2, "meters"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35367. {
  35368. side: {
  35369. height: math.unit(8 + 2/12, "feet"),
  35370. weight: math.unit(1240, "lb"),
  35371. name: "Side",
  35372. image: {
  35373. source: "./media/characters/mika-valentine/side.svg",
  35374. extra: 2670/2501,
  35375. bottom: 250/2920
  35376. }
  35377. },
  35378. },
  35379. [
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(8 + 2/12, "feet"),
  35383. default: true
  35384. },
  35385. ]
  35386. ))
  35387. characterMakers.push(() => makeCharacter(
  35388. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35389. {
  35390. front: {
  35391. height: math.unit(7 + 2/12, "feet"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/xoltol/front.svg",
  35395. extra: 2212/2124,
  35396. bottom: 84/2296
  35397. }
  35398. },
  35399. side: {
  35400. height: math.unit(7 + 2/12, "feet"),
  35401. name: "Side",
  35402. image: {
  35403. source: "./media/characters/xoltol/side.svg",
  35404. extra: 2273/2197,
  35405. bottom: 26/2299
  35406. }
  35407. },
  35408. hand: {
  35409. height: math.unit(2.5, "feet"),
  35410. name: "Hand",
  35411. image: {
  35412. source: "./media/characters/xoltol/hand.svg"
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Small-ish",
  35419. height: math.unit(5 + 11/12, "feet")
  35420. },
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(7 + 2/12, "feet")
  35424. },
  35425. {
  35426. name: "\"Macro\"",
  35427. height: math.unit(14 + 9/12, "feet"),
  35428. default: true
  35429. },
  35430. {
  35431. name: "Alternate Height",
  35432. height: math.unit(20, "feet")
  35433. },
  35434. {
  35435. name: "Actually Macro",
  35436. height: math.unit(100, "feet")
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(5 + 2/12, "feet"),
  35445. name: "Front",
  35446. image: {
  35447. source: "./media/characters/kotetsu-redwood/front.svg",
  35448. extra: 1053/942,
  35449. bottom: 60/1113
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(5 + 2/12, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35463. {
  35464. front: {
  35465. height: math.unit(2.4, "meters"),
  35466. weight: math.unit(125, "kg"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/lilith/front.svg",
  35470. extra: 1590/1513,
  35471. bottom: 203/1793
  35472. }
  35473. },
  35474. },
  35475. [
  35476. {
  35477. name: "Humanoid",
  35478. height: math.unit(2.4, "meters")
  35479. },
  35480. {
  35481. name: "Normal",
  35482. height: math.unit(6, "meters"),
  35483. default: true
  35484. },
  35485. {
  35486. name: "Largest",
  35487. height: math.unit(55, "meters")
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(8 + 4/12, "feet"),
  35496. weight: math.unit(535, "lb"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/beh'kah-bolger/front.svg",
  35500. extra: 1660/1603,
  35501. bottom: 37/1697
  35502. }
  35503. },
  35504. },
  35505. [
  35506. {
  35507. name: "Normal",
  35508. height: math.unit(8 + 4/12, "feet"),
  35509. default: true
  35510. },
  35511. {
  35512. name: "Kaiju",
  35513. height: math.unit(250, "feet")
  35514. },
  35515. {
  35516. name: "Still Growing",
  35517. height: math.unit(10, "miles")
  35518. },
  35519. {
  35520. name: "Continental",
  35521. height: math.unit(5000, "miles")
  35522. },
  35523. {
  35524. name: "Final Form",
  35525. height: math.unit(2500000, "miles")
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(7 + 2/12, "feet"),
  35534. weight: math.unit(230, "kg"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/tatyana-milewska/front.svg",
  35538. extra: 1199/1150,
  35539. bottom: 86/1285
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(7 + 2/12, "feet"),
  35547. default: true
  35548. },
  35549. {
  35550. name: "Big",
  35551. height: math.unit(12, "feet")
  35552. },
  35553. {
  35554. name: "Minimacro",
  35555. height: math.unit(20, "feet")
  35556. },
  35557. {
  35558. name: "Macro",
  35559. height: math.unit(120, "feet")
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35565. {
  35566. front: {
  35567. height: math.unit(7 + 8/12, "feet"),
  35568. weight: math.unit(152, "kg"),
  35569. name: "Front",
  35570. image: {
  35571. source: "./media/characters/helen-arri/front.svg",
  35572. extra: 440/423,
  35573. bottom: 14/454
  35574. }
  35575. },
  35576. back: {
  35577. height: math.unit(7 + 8/12, "feet"),
  35578. weight: math.unit(152, "kg"),
  35579. name: "Back",
  35580. image: {
  35581. source: "./media/characters/helen-arri/back.svg",
  35582. extra: 443/426,
  35583. bottom: 8/451
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(7 + 8/12, "feet"),
  35591. default: true
  35592. },
  35593. {
  35594. name: "Big",
  35595. height: math.unit(14, "feet")
  35596. },
  35597. {
  35598. name: "Minimacro",
  35599. height: math.unit(24, "feet")
  35600. },
  35601. {
  35602. name: "Macro",
  35603. height: math.unit(140, "feet")
  35604. },
  35605. ]
  35606. ))
  35607. characterMakers.push(() => makeCharacter(
  35608. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35609. {
  35610. front: {
  35611. height: math.unit(6, "meters"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/ehanu-rehu/front.svg",
  35615. extra: 1800/1800,
  35616. bottom: 59/1859
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(6, "meters"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(7 + 3/12, "feet"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/renholder/front.svg",
  35636. extra: 3096/2960,
  35637. bottom: 250/3346
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal Bat",
  35644. height: math.unit(7 + 3/12, "feet"),
  35645. default: true
  35646. },
  35647. {
  35648. name: "Slightly Tall Bat",
  35649. height: math.unit(100, "feet")
  35650. },
  35651. {
  35652. name: "Big Bat",
  35653. height: math.unit(1000, "feet")
  35654. },
  35655. {
  35656. name: "City-Sized Bat",
  35657. height: math.unit(200000, "feet")
  35658. },
  35659. {
  35660. name: "Bigger Bat",
  35661. height: math.unit(10000, "miles")
  35662. },
  35663. {
  35664. name: "Solar Sized Bat",
  35665. height: math.unit(100, "AU")
  35666. },
  35667. {
  35668. name: "Galactic Bat",
  35669. height: math.unit(200000, "lightyears")
  35670. },
  35671. {
  35672. name: "Universally Known Bat",
  35673. height: math.unit(1, "universe")
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(6 + 11/12, "feet"),
  35682. weight: math.unit(250, "lb"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/cookiecat/front.svg",
  35686. extra: 893/827,
  35687. bottom: 14/907
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Micro",
  35694. height: math.unit(3, "inches")
  35695. },
  35696. {
  35697. name: "Normal",
  35698. height: math.unit(6 + 11/12, "feet"),
  35699. default: true
  35700. },
  35701. {
  35702. name: "Macro",
  35703. height: math.unit(100, "feet")
  35704. },
  35705. {
  35706. name: "Macro+",
  35707. height: math.unit(404, "feet")
  35708. },
  35709. {
  35710. name: "Megamacro",
  35711. height: math.unit(165, "miles")
  35712. },
  35713. {
  35714. name: "Planetary",
  35715. height: math.unit(4600, "miles")
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35721. {
  35722. front: {
  35723. height: math.unit(10 + 3/12, "feet"),
  35724. weight: math.unit(1500, "lb"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/tux-kusanagi/front.svg",
  35728. extra: 944/840,
  35729. bottom: 39/983
  35730. }
  35731. },
  35732. back: {
  35733. height: math.unit(10 + 3/12, "feet"),
  35734. weight: math.unit(1500, "lb"),
  35735. name: "Back",
  35736. image: {
  35737. source: "./media/characters/tux-kusanagi/back.svg",
  35738. extra: 941/842,
  35739. bottom: 28/969
  35740. }
  35741. },
  35742. rump: {
  35743. height: math.unit(5.25, "feet"),
  35744. name: "Rump",
  35745. image: {
  35746. source: "./media/characters/tux-kusanagi/rump.svg"
  35747. }
  35748. },
  35749. beak: {
  35750. height: math.unit(1.54, "feet"),
  35751. name: "Beak",
  35752. image: {
  35753. source: "./media/characters/tux-kusanagi/beak.svg"
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(10 + 3/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(58, "feet"),
  35770. weight: math.unit(200, "tons"),
  35771. name: "Front",
  35772. image: {
  35773. source: "./media/characters/uzarmazari/front.svg",
  35774. extra: 1575/1455,
  35775. bottom: 152/1727
  35776. }
  35777. },
  35778. back: {
  35779. height: math.unit(58, "feet"),
  35780. weight: math.unit(200, "tons"),
  35781. name: "Back",
  35782. image: {
  35783. source: "./media/characters/uzarmazari/back.svg",
  35784. extra: 1585/1510,
  35785. bottom: 157/1742
  35786. }
  35787. },
  35788. head: {
  35789. height: math.unit(26, "feet"),
  35790. name: "Head",
  35791. image: {
  35792. source: "./media/characters/uzarmazari/head.svg"
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(58, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35806. {
  35807. side: {
  35808. height: math.unit(15, "feet"),
  35809. name: "Side",
  35810. image: {
  35811. source: "./media/characters/akitu/side.svg",
  35812. extra: 1421/1321,
  35813. bottom: 157/1578
  35814. }
  35815. },
  35816. front: {
  35817. height: math.unit(15, "feet"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/akitu/front.svg",
  35821. extra: 1435/1326,
  35822. bottom: 232/1667
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(15, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(10 + 8/12, "feet"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/azalie-croixland/front.svg",
  35842. extra: 1972/1856,
  35843. bottom: 31/2003
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Original Height",
  35850. height: math.unit(5 + 4/12, "feet")
  35851. },
  35852. {
  35853. name: "Normal Height",
  35854. height: math.unit(10 + 8/12, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35861. {
  35862. side: {
  35863. height: math.unit(7 + 1/12, "feet"),
  35864. weight: math.unit(245, "lb"),
  35865. name: "Side",
  35866. image: {
  35867. source: "./media/characters/kavus-kazian/side.svg",
  35868. extra: 349/342,
  35869. bottom: 15/364
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(7 + 1/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35883. {
  35884. normalFront: {
  35885. height: math.unit(5 + 11/12, "feet"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/moonlight-rose/normal-front.svg",
  35889. extra: 1980/1825,
  35890. bottom: 18/1998
  35891. },
  35892. form: "normal",
  35893. default: true
  35894. },
  35895. normalBack: {
  35896. height: math.unit(5 + 11/12, "feet"),
  35897. name: "Back",
  35898. image: {
  35899. source: "./media/characters/moonlight-rose/normal-back.svg",
  35900. extra: 2010/1839,
  35901. bottom: 10/2020
  35902. },
  35903. form: "normal"
  35904. },
  35905. demonFront: {
  35906. height: math.unit(1.5, "earths"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/moonlight-rose/demon.svg",
  35910. extra: 1400/1294,
  35911. bottom: 45/1445
  35912. },
  35913. form: "demon",
  35914. default: true
  35915. },
  35916. terraFront: {
  35917. height: math.unit(1.5, "earths"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/moonlight-rose/terra.svg"
  35921. },
  35922. form: "terra",
  35923. default: true
  35924. },
  35925. jupiterFront: {
  35926. height: math.unit(69911*2, "km"),
  35927. name: "Front",
  35928. image: {
  35929. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35930. extra: 1367/1286,
  35931. bottom: 55/1422
  35932. },
  35933. form: "jupiter",
  35934. default: true
  35935. },
  35936. neptuneFront: {
  35937. height: math.unit(24622*2, "feet"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35941. extra: 1851/1712,
  35942. bottom: 0/1851
  35943. },
  35944. form: "neptune",
  35945. default: true
  35946. },
  35947. },
  35948. [
  35949. {
  35950. name: "\"Natural\" Height",
  35951. height: math.unit(5 + 11/12, "feet"),
  35952. form: "normal"
  35953. },
  35954. {
  35955. name: "Smallest comfortable size",
  35956. height: math.unit(40, "meters"),
  35957. form: "normal"
  35958. },
  35959. {
  35960. name: "Common size",
  35961. height: math.unit(50, "km"),
  35962. form: "normal",
  35963. default: true
  35964. },
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(1.5, "earths"),
  35968. form: "demon",
  35969. default: true
  35970. },
  35971. {
  35972. name: "Universal",
  35973. height: math.unit(15, "universes"),
  35974. form: "demon"
  35975. },
  35976. {
  35977. name: "Earth",
  35978. height: math.unit(1.5, "earths"),
  35979. form: "terra",
  35980. default: true
  35981. },
  35982. {
  35983. name: "Super Earth",
  35984. height: math.unit(67.5, "earths"),
  35985. form: "terra"
  35986. },
  35987. {
  35988. name: "Doesn't fit in a solar system...",
  35989. height: math.unit(1, "galaxy"),
  35990. form: "terra"
  35991. },
  35992. {
  35993. name: "Saturn",
  35994. height: math.unit(58232*2, "km"),
  35995. form: "jupiter"
  35996. },
  35997. {
  35998. name: "Jupiter",
  35999. height: math.unit(69911*2, "km"),
  36000. form: "jupiter",
  36001. default: true
  36002. },
  36003. {
  36004. name: "HD 100546 b",
  36005. height: math.unit(482938, "km"),
  36006. form: "jupiter"
  36007. },
  36008. {
  36009. name: "Enceladus",
  36010. height: math.unit(513*2, "km"),
  36011. form: "neptune"
  36012. },
  36013. {
  36014. name: "Europe",
  36015. height: math.unit(1560*2, "km"),
  36016. form: "neptune"
  36017. },
  36018. {
  36019. name: "Neptune",
  36020. height: math.unit(24622*2, "km"),
  36021. form: "neptune",
  36022. default: true
  36023. },
  36024. {
  36025. name: "CoRoT-9b",
  36026. height: math.unit(75067*2, "km"),
  36027. form: "neptune"
  36028. },
  36029. ],
  36030. {
  36031. "normal": {
  36032. name: "Normal",
  36033. default: true
  36034. },
  36035. "demon": {
  36036. name: "Demon"
  36037. },
  36038. "terra": {
  36039. name: "Terra"
  36040. },
  36041. "jupiter": {
  36042. name: "Jupiter"
  36043. },
  36044. "neptune": {
  36045. name: "Neptune"
  36046. }
  36047. }
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(16, "feet"),
  36054. weight: math.unit(610, "kg"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/huckle/front.svg",
  36058. extra: 1731/1625,
  36059. bottom: 33/1764
  36060. }
  36061. },
  36062. back: {
  36063. height: math.unit(16, "feet"),
  36064. weight: math.unit(610, "kg"),
  36065. name: "Back",
  36066. image: {
  36067. source: "./media/characters/huckle/back.svg",
  36068. extra: 1738/1651,
  36069. bottom: 37/1775
  36070. }
  36071. },
  36072. laughing: {
  36073. height: math.unit(3.75, "feet"),
  36074. name: "Laughing",
  36075. image: {
  36076. source: "./media/characters/huckle/laughing.svg"
  36077. }
  36078. },
  36079. angry: {
  36080. height: math.unit(4.15, "feet"),
  36081. name: "Angry",
  36082. image: {
  36083. source: "./media/characters/huckle/angry.svg"
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(16, "feet"),
  36091. default: true
  36092. },
  36093. {
  36094. name: "Mini Macro",
  36095. height: math.unit(463, "feet")
  36096. },
  36097. {
  36098. name: "Macro",
  36099. height: math.unit(1680, "meters")
  36100. },
  36101. {
  36102. name: "Mega Macro",
  36103. height: math.unit(175, "km")
  36104. },
  36105. {
  36106. name: "Terra Macro",
  36107. height: math.unit(32, "gigameters")
  36108. },
  36109. {
  36110. name: "Multiverse+",
  36111. height: math.unit(2.56e23, "yottameters")
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(6 + 9/12, "feet"),
  36120. weight: math.unit(280, "lb"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/candy/front.svg",
  36124. extra: 234/217,
  36125. bottom: 11/245
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Really Small",
  36132. height: math.unit(0.1, "nm")
  36133. },
  36134. {
  36135. name: "Micro",
  36136. height: math.unit(2, "inches")
  36137. },
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(6 + 9/12, "feet"),
  36141. default: true
  36142. },
  36143. {
  36144. name: "Small Macro",
  36145. height: math.unit(69, "feet")
  36146. },
  36147. {
  36148. name: "Macro",
  36149. height: math.unit(160, "feet")
  36150. },
  36151. {
  36152. name: "Megamacro",
  36153. height: math.unit(22000, "miles")
  36154. },
  36155. {
  36156. name: "Gigamacro",
  36157. height: math.unit(50000, "miles")
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(4, "feet"),
  36166. weight: math.unit(90, "lb"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/joey-mcdonald/front.svg",
  36170. extra: 1059/852,
  36171. bottom: 33/1092
  36172. }
  36173. },
  36174. back: {
  36175. height: math.unit(4, "feet"),
  36176. weight: math.unit(90, "lb"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/joey-mcdonald/back.svg",
  36180. extra: 1077/879,
  36181. bottom: 5/1082
  36182. }
  36183. },
  36184. frontKobold: {
  36185. height: math.unit(4, "feet"),
  36186. weight: math.unit(100, "lb"),
  36187. name: "Front-kobold",
  36188. image: {
  36189. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36190. extra: 1480/1367,
  36191. bottom: 0/1480
  36192. }
  36193. },
  36194. backKobold: {
  36195. height: math.unit(4, "feet"),
  36196. weight: math.unit(100, "lb"),
  36197. name: "Back-kobold",
  36198. image: {
  36199. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36200. extra: 1449/1361,
  36201. bottom: 0/1449
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(4, "feet"),
  36209. default: true
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(12 + 6/12, "feet"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/kass-lockheed/front.svg",
  36221. extra: 354/343,
  36222. bottom: 9/363
  36223. }
  36224. },
  36225. back: {
  36226. height: math.unit(12 + 6/12, "feet"),
  36227. name: "Back",
  36228. image: {
  36229. source: "./media/characters/kass-lockheed/back.svg",
  36230. extra: 364/352,
  36231. bottom: 3/367
  36232. }
  36233. },
  36234. dick: {
  36235. height: math.unit(3.12, "feet"),
  36236. name: "Dick",
  36237. image: {
  36238. source: "./media/characters/kass-lockheed/dick.svg"
  36239. }
  36240. },
  36241. head: {
  36242. height: math.unit(2.6, "feet"),
  36243. name: "Head",
  36244. image: {
  36245. source: "./media/characters/kass-lockheed/head.svg"
  36246. }
  36247. },
  36248. bleh: {
  36249. height: math.unit(2.85, "feet"),
  36250. name: "Bleh",
  36251. image: {
  36252. source: "./media/characters/kass-lockheed/bleh.svg"
  36253. }
  36254. },
  36255. smug: {
  36256. height: math.unit(2.85, "feet"),
  36257. name: "Smug",
  36258. image: {
  36259. source: "./media/characters/kass-lockheed/smug.svg"
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(12 + 6/12, "feet"),
  36267. default: true
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(6 + 2/12, "feet"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/taylor/front.svg",
  36279. extra: 639/495,
  36280. bottom: 12/651
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(6 + 2/12, "feet"),
  36288. default: true
  36289. },
  36290. {
  36291. name: "Big",
  36292. height: math.unit(15, "feet")
  36293. },
  36294. {
  36295. name: "Lorg",
  36296. height: math.unit(80, "feet")
  36297. },
  36298. {
  36299. name: "Too Lorg",
  36300. height: math.unit(120, "feet")
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36306. {
  36307. front: {
  36308. height: math.unit(15, "feet"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/kaizer/front.svg",
  36312. extra: 1612/1436,
  36313. bottom: 43/1655
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(15, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36327. {
  36328. front: {
  36329. height: math.unit(2, "feet"),
  36330. weight: math.unit(30, "lb"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/sandy/front.svg",
  36334. extra: 1439/1307,
  36335. bottom: 194/1633
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(2, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(3, "feet"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/mellvi/front.svg",
  36355. extra: 1831/1630,
  36356. bottom: 58/1889
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(3, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(5 + 11/12, "feet"),
  36373. weight: math.unit(200, "lb"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/shirou/front.svg",
  36377. extra: 2491/2383,
  36378. bottom: 189/2680
  36379. }
  36380. },
  36381. back: {
  36382. height: math.unit(5 + 11/12, "feet"),
  36383. weight: math.unit(200, "lb"),
  36384. name: "Back",
  36385. image: {
  36386. source: "./media/characters/shirou/back.svg",
  36387. extra: 2554/2450,
  36388. bottom: 76/2630
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(5 + 11/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(6 + 3/12, "feet"),
  36405. weight: math.unit(177, "lb"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/noryu/front.svg",
  36409. extra: 973/885,
  36410. bottom: 10/983
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(6 + 3/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(5 + 6/12, "feet"),
  36427. weight: math.unit(170, "lb"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/mevolas-rubenido/front.svg",
  36431. extra: 2109/1901,
  36432. bottom: 96/2205
  36433. }
  36434. },
  36435. },
  36436. [
  36437. {
  36438. name: "Normal",
  36439. height: math.unit(5 + 6/12, "feet"),
  36440. default: true
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36446. {
  36447. front: {
  36448. height: math.unit(100, "feet"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/dee/front.svg",
  36452. extra: 2153/2036,
  36453. bottom: 59/2212
  36454. }
  36455. },
  36456. back: {
  36457. height: math.unit(100, "feet"),
  36458. name: "Back",
  36459. image: {
  36460. source: "./media/characters/dee/back.svg",
  36461. extra: 2183/2058,
  36462. bottom: 75/2258
  36463. }
  36464. },
  36465. foot: {
  36466. height: math.unit(19.43, "feet"),
  36467. name: "Foot",
  36468. image: {
  36469. source: "./media/characters/dee/foot.svg"
  36470. }
  36471. },
  36472. hoof: {
  36473. height: math.unit(20.6, "feet"),
  36474. name: "Hoof",
  36475. image: {
  36476. source: "./media/characters/dee/hoof.svg"
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Macro",
  36483. height: math.unit(100, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(5 + 6/12, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/teh/front.svg",
  36496. extra: 1002/847,
  36497. bottom: 62/1064
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(5 + 6/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36511. {
  36512. side: {
  36513. height: math.unit(6 + 1/12, "feet"),
  36514. weight: math.unit(204, "lb"),
  36515. name: "Side",
  36516. image: {
  36517. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36518. extra: 974/775,
  36519. bottom: 169/1143
  36520. }
  36521. },
  36522. sitting: {
  36523. height: math.unit(6 + 2/12, "feet"),
  36524. weight: math.unit(204, "lb"),
  36525. name: "Sitting",
  36526. image: {
  36527. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36528. extra: 1175/964,
  36529. bottom: 378/1553
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(6 + 1/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(6, "inches"),
  36546. name: "Front",
  36547. image: {
  36548. source: "./media/characters/tululi/front.svg",
  36549. extra: 1997/1876,
  36550. bottom: 20/2017
  36551. }
  36552. },
  36553. },
  36554. [
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(6, "inches"),
  36558. default: true
  36559. },
  36560. ]
  36561. ))
  36562. characterMakers.push(() => makeCharacter(
  36563. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36564. {
  36565. front: {
  36566. height: math.unit(4 + 1/12, "feet"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/star/front.svg",
  36570. extra: 1493/1189,
  36571. bottom: 48/1541
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(4 + 1/12, "feet"),
  36579. default: true
  36580. },
  36581. ]
  36582. ))
  36583. characterMakers.push(() => makeCharacter(
  36584. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36585. {
  36586. front: {
  36587. height: math.unit(6 + 3/12, "feet"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/comet/front.svg",
  36591. extra: 1681/1462,
  36592. bottom: 26/1707
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(6 + 3/12, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(950, "feet"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/vortex/front.svg",
  36612. extra: 1497/1434,
  36613. bottom: 56/1553
  36614. }
  36615. },
  36616. maw: {
  36617. height: math.unit(285, "feet"),
  36618. name: "Maw",
  36619. image: {
  36620. source: "./media/characters/vortex/maw.svg"
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Macro",
  36627. height: math.unit(950, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(600, "feet"),
  36637. weight: math.unit(0.02, "grams"),
  36638. name: "Front",
  36639. image: {
  36640. source: "./media/characters/doodle/front.svg",
  36641. extra: 1578/1413,
  36642. bottom: 37/1615
  36643. }
  36644. },
  36645. },
  36646. [
  36647. {
  36648. name: "Macro",
  36649. height: math.unit(600, "feet"),
  36650. default: true
  36651. },
  36652. ]
  36653. ))
  36654. characterMakers.push(() => makeCharacter(
  36655. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36656. {
  36657. front: {
  36658. height: math.unit(6 + 6/12, "feet"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/jai/front.svg",
  36662. extra: 1645/1534,
  36663. bottom: 115/1760
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(6 + 6/12, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(6 + 8/12, "feet"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/pixel/front.svg",
  36683. extra: 1900/1735,
  36684. bottom: 63/1963
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(6 + 8/12, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36698. {
  36699. back: {
  36700. height: math.unit(4 + 1/12, "feet"),
  36701. weight: math.unit(75, "lb"),
  36702. name: "Back",
  36703. image: {
  36704. source: "./media/characters/rhett/back.svg",
  36705. extra: 930/878,
  36706. bottom: 25/955
  36707. }
  36708. },
  36709. front: {
  36710. height: math.unit(4 + 1/12, "feet"),
  36711. weight: math.unit(75, "lb"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/rhett/front.svg",
  36715. extra: 1682/1586,
  36716. bottom: 92/1774
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Micro",
  36723. height: math.unit(8, "inches")
  36724. },
  36725. {
  36726. name: "Tiny",
  36727. height: math.unit(2, "feet")
  36728. },
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(4 + 1/12, "feet"),
  36732. default: true
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(3 + 3/12, "feet"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/penny/front.svg",
  36744. extra: 1406/1311,
  36745. bottom: 26/1432
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(3 + 3/12, "feet"),
  36753. default: true
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36759. {
  36760. front: {
  36761. height: math.unit(4 + 11/12, "feet"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/monty/front.svg",
  36765. extra: 1479/1209,
  36766. bottom: 0/1479
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(4 + 11/12, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(8 + 4/12, "feet"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/sterling/front.svg",
  36786. extra: 1420/1236,
  36787. bottom: 27/1447
  36788. }
  36789. },
  36790. },
  36791. [
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(8 + 4/12, "feet"),
  36795. default: true
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36801. {
  36802. front: {
  36803. height: math.unit(15, "feet"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/marble/front.svg",
  36807. extra: 973/937,
  36808. bottom: 32/1005
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(15, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36822. {
  36823. front: {
  36824. height: math.unit(3, "inches"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/powder/front.svg",
  36828. extra: 1504/1334,
  36829. bottom: 518/2022
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Normal",
  36836. height: math.unit(3, "inches"),
  36837. default: true
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(4 + 5/12, "feet"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/joey-raccoon/front.svg",
  36849. extra: 1273/1197,
  36850. bottom: 0/1273
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(4 + 5/12, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(8 + 4/12, "feet"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/vick/front.svg",
  36870. extra: 2187/2118,
  36871. bottom: 47/2234
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(8 + 4/12, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(5 + 5/12, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/mitsy/front.svg",
  36891. extra: 1842/1695,
  36892. bottom: 0/1842
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(5 + 5/12, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36906. {
  36907. front: {
  36908. height: math.unit(6 + 3/12, "feet"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/silvy/front.svg",
  36912. extra: 1995/1836,
  36913. bottom: 225/2220
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(6 + 3/12, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36927. {
  36928. front: {
  36929. height: math.unit(3 + 8/12, "feet"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/rodney/front.svg",
  36933. extra: 1956/1747,
  36934. bottom: 31/1987
  36935. }
  36936. },
  36937. frontDressed: {
  36938. height: math.unit(2.9, "feet"),
  36939. name: "Front (Dressed)",
  36940. image: {
  36941. source: "./media/characters/rodney/front-dressed.svg",
  36942. extra: 1382/1241,
  36943. bottom: 385/1767
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(3 + 8/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(5 + 9/12, "feet"),
  36960. weight: math.unit(194, "lbs"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/zakail-sudekai/front.svg",
  36964. extra: 2696/2533,
  36965. bottom: 248/2944
  36966. }
  36967. },
  36968. maw: {
  36969. height: math.unit(1.35, "feet"),
  36970. name: "Maw",
  36971. image: {
  36972. source: "./media/characters/zakail-sudekai/maw.svg"
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(5 + 9/12, "feet"),
  36980. default: true
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(8 + 4/12, "feet"),
  36989. weight: math.unit(1200, "lb"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/eleanor/front.svg",
  36993. extra: 1226/1192,
  36994. bottom: 52/1278
  36995. }
  36996. },
  36997. back: {
  36998. height: math.unit(8 + 4/12, "feet"),
  36999. weight: math.unit(1200, "lb"),
  37000. name: "Back",
  37001. image: {
  37002. source: "./media/characters/eleanor/back.svg",
  37003. extra: 1242/1184,
  37004. bottom: 60/1302
  37005. }
  37006. },
  37007. head: {
  37008. height: math.unit(2.62, "feet"),
  37009. name: "Head",
  37010. image: {
  37011. source: "./media/characters/eleanor/head.svg"
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(8 + 4/12, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(8 + 4/12, "feet"),
  37028. weight: math.unit(750, "lb"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/tanya/front.svg",
  37032. extra: 1749/1615,
  37033. bottom: 33/1782
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(8 + 4/12, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(5, "feet"),
  37050. weight: math.unit(225, "lb"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/cindy/front.svg",
  37054. extra: 1320/1250,
  37055. bottom: 42/1362
  37056. }
  37057. },
  37058. frontDressed: {
  37059. height: math.unit(5, "feet"),
  37060. weight: math.unit(225, "lb"),
  37061. name: "Front (Dressed)",
  37062. image: {
  37063. source: "./media/characters/cindy/front-dressed.svg",
  37064. extra: 1320/1250,
  37065. bottom: 42/1362
  37066. }
  37067. },
  37068. back: {
  37069. height: math.unit(5, "feet"),
  37070. weight: math.unit(225, "lb"),
  37071. name: "Back",
  37072. image: {
  37073. source: "./media/characters/cindy/back.svg",
  37074. extra: 1384/1346,
  37075. bottom: 14/1398
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(5, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(6 + 9/12, "feet"),
  37092. weight: math.unit(440, "lb"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/wilbur-owen/front.svg",
  37096. extra: 1575/1448,
  37097. bottom: 72/1647
  37098. }
  37099. },
  37100. back: {
  37101. height: math.unit(6 + 9/12, "feet"),
  37102. weight: math.unit(440, "lb"),
  37103. name: "Back",
  37104. image: {
  37105. source: "./media/characters/wilbur-owen/back.svg",
  37106. extra: 1578/1445,
  37107. bottom: 36/1614
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(6 + 9/12, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(6 + 5/12, "feet"),
  37124. weight: math.unit(650, "lb"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/keegan/front.svg",
  37128. extra: 2387/2198,
  37129. bottom: 33/2420
  37130. }
  37131. },
  37132. side: {
  37133. height: math.unit(6 + 5/12, "feet"),
  37134. weight: math.unit(650, "lb"),
  37135. name: "Side",
  37136. image: {
  37137. source: "./media/characters/keegan/side.svg",
  37138. extra: 2390/2202,
  37139. bottom: 47/2437
  37140. }
  37141. },
  37142. back: {
  37143. height: math.unit(6 + 5/12, "feet"),
  37144. weight: math.unit(650, "lb"),
  37145. name: "Back",
  37146. image: {
  37147. source: "./media/characters/keegan/back.svg",
  37148. extra: 2418/2268,
  37149. bottom: 15/2433
  37150. }
  37151. },
  37152. frontSfw: {
  37153. height: math.unit(6 + 5/12, "feet"),
  37154. weight: math.unit(650, "lb"),
  37155. name: "Front (SFW)",
  37156. image: {
  37157. source: "./media/characters/keegan/front-sfw.svg",
  37158. extra: 2387/2198,
  37159. bottom: 33/2420
  37160. }
  37161. },
  37162. beans: {
  37163. height: math.unit(1.85, "feet"),
  37164. name: "Beans",
  37165. image: {
  37166. source: "./media/characters/keegan/beans.svg"
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Normal",
  37173. height: math.unit(6 + 5/12, "feet"),
  37174. default: true
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(9, "feet"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/colton/front.svg",
  37186. extra: 1589/1326,
  37187. bottom: 139/1728
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(9, "feet"),
  37195. default: true
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(2 + 9/12, "feet"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/bora/front.svg",
  37207. extra: 1265/1250,
  37208. bottom: 24/1289
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(2 + 9/12, "feet"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(8, "feet"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/myu-myu/front.svg",
  37228. extra: 1949/1857,
  37229. bottom: 90/2039
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Normal",
  37236. height: math.unit(8, "feet"),
  37237. default: true
  37238. },
  37239. {
  37240. name: "Big",
  37241. height: math.unit(15, "feet")
  37242. },
  37243. {
  37244. name: "BIG",
  37245. height: math.unit(25, "feet")
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37251. {
  37252. side: {
  37253. height: math.unit(7 + 5/12, "feet"),
  37254. weight: math.unit(2800, "lb"),
  37255. name: "Side",
  37256. image: {
  37257. source: "./media/characters/haloren/side.svg",
  37258. extra: 1793/409,
  37259. bottom: 59/1852
  37260. }
  37261. },
  37262. frontPaw: {
  37263. height: math.unit(2.36, "feet"),
  37264. name: "Front paw",
  37265. image: {
  37266. source: "./media/characters/haloren/front-paw.svg"
  37267. }
  37268. },
  37269. hindPaw: {
  37270. height: math.unit(3.18, "feet"),
  37271. name: "Hind paw",
  37272. image: {
  37273. source: "./media/characters/haloren/hind-paw.svg"
  37274. }
  37275. },
  37276. maw: {
  37277. height: math.unit(5.05, "feet"),
  37278. name: "Maw",
  37279. image: {
  37280. source: "./media/characters/haloren/maw.svg"
  37281. }
  37282. },
  37283. dick: {
  37284. height: math.unit(2.90, "feet"),
  37285. name: "Dick",
  37286. image: {
  37287. source: "./media/characters/haloren/dick.svg"
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(7 + 5/12, "feet"),
  37295. default: true
  37296. },
  37297. {
  37298. name: "Enhanced",
  37299. height: math.unit(14 + 3/12, "feet")
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(171, "cm"),
  37308. name: "Front",
  37309. image: {
  37310. source: "./media/characters/kimmy/front.svg",
  37311. extra: 1491/1435,
  37312. bottom: 53/1544
  37313. }
  37314. },
  37315. },
  37316. [
  37317. {
  37318. name: "Small",
  37319. height: math.unit(9, "cm")
  37320. },
  37321. {
  37322. name: "Normal",
  37323. height: math.unit(171, "cm"),
  37324. default: true
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37330. {
  37331. front: {
  37332. height: math.unit(8, "feet"),
  37333. weight: math.unit(300, "lb"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/galeboomer/front.svg",
  37337. extra: 4651/4415,
  37338. bottom: 162/4813
  37339. }
  37340. },
  37341. back: {
  37342. height: math.unit(8, "feet"),
  37343. weight: math.unit(300, "lb"),
  37344. name: "Back",
  37345. image: {
  37346. source: "./media/characters/galeboomer/back.svg",
  37347. extra: 4544/4314,
  37348. bottom: 16/4560
  37349. }
  37350. },
  37351. frontAlt: {
  37352. height: math.unit(8, "feet"),
  37353. weight: math.unit(300, "lb"),
  37354. name: "Front (Alt)",
  37355. image: {
  37356. source: "./media/characters/galeboomer/front-alt.svg",
  37357. extra: 4458/4228,
  37358. bottom: 68/4526
  37359. }
  37360. },
  37361. maw: {
  37362. height: math.unit(1.2, "feet"),
  37363. name: "Maw",
  37364. image: {
  37365. source: "./media/characters/galeboomer/maw.svg"
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(8, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37379. {
  37380. front: {
  37381. height: math.unit(5 + 9/12, "feet"),
  37382. weight: math.unit(120, "lb"),
  37383. name: "Front",
  37384. image: {
  37385. source: "./media/characters/chyr/front.svg",
  37386. extra: 1323/1254,
  37387. bottom: 63/1386
  37388. }
  37389. },
  37390. back: {
  37391. height: math.unit(5 + 9/12, "feet"),
  37392. weight: math.unit(120, "lb"),
  37393. name: "Back",
  37394. image: {
  37395. source: "./media/characters/chyr/back.svg",
  37396. extra: 1323/1252,
  37397. bottom: 48/1371
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(5 + 9/12, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(7, "feet"),
  37414. weight: math.unit(310, "lb"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/solarus/front.svg",
  37418. extra: 2415/2021,
  37419. bottom: 103/2518
  37420. }
  37421. },
  37422. back: {
  37423. height: math.unit(7, "feet"),
  37424. weight: math.unit(310, "lb"),
  37425. name: "Back",
  37426. image: {
  37427. source: "./media/characters/solarus/back.svg",
  37428. extra: 2463/2089,
  37429. bottom: 79/2542
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(7, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(16, "feet"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37449. extra: 1844/1780,
  37450. bottom: 58/1902
  37451. }
  37452. },
  37453. winterCoat: {
  37454. height: math.unit(16, "feet"),
  37455. name: "Winter Coat",
  37456. image: {
  37457. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37458. extra: 1807/1775,
  37459. bottom: 69/1876
  37460. }
  37461. },
  37462. },
  37463. [
  37464. {
  37465. name: "Normal",
  37466. height: math.unit(16, "feet"),
  37467. default: true
  37468. },
  37469. {
  37470. name: "Chicago Size",
  37471. height: math.unit(560, "feet")
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(11 + 6/12, "feet"),
  37480. weight: math.unit(1366, "lb"),
  37481. name: "Front",
  37482. image: {
  37483. source: "./media/characters/lexor/front.svg",
  37484. extra: 1560/1481,
  37485. bottom: 211/1771
  37486. }
  37487. },
  37488. back: {
  37489. height: math.unit(11 + 6/12, "feet"),
  37490. weight: math.unit(1366, "lb"),
  37491. name: "Back",
  37492. image: {
  37493. source: "./media/characters/lexor/back.svg",
  37494. extra: 1614/1533,
  37495. bottom: 76/1690
  37496. }
  37497. },
  37498. maw: {
  37499. height: math.unit(3, "feet"),
  37500. name: "Maw",
  37501. image: {
  37502. source: "./media/characters/lexor/maw.svg"
  37503. }
  37504. },
  37505. dick: {
  37506. height: math.unit(2.59, "feet"),
  37507. name: "Dick",
  37508. image: {
  37509. source: "./media/characters/lexor/dick.svg"
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(11 + 6/12, "feet"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(5 + 8/12, "feet"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/magnum/front.svg",
  37529. extra: 942/855,
  37530. bottom: 26/968
  37531. }
  37532. },
  37533. },
  37534. [
  37535. {
  37536. name: "Normal",
  37537. height: math.unit(5 + 8/12, "feet"),
  37538. default: true
  37539. },
  37540. ]
  37541. ))
  37542. characterMakers.push(() => makeCharacter(
  37543. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37544. {
  37545. front: {
  37546. height: math.unit(18 + 4/12, "feet"),
  37547. weight: math.unit(1500, "kg"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/solas-sharpsman/front.svg",
  37551. extra: 1698/1589,
  37552. bottom: 0/1698
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(18 + 4/12, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(5 + 5/12, "feet"),
  37569. weight: math.unit(180, "lb"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/october/front.svg",
  37573. extra: 1800/1650,
  37574. bottom: 0/1800
  37575. }
  37576. },
  37577. frontNsfw: {
  37578. height: math.unit(5 + 5/12, "feet"),
  37579. weight: math.unit(180, "lb"),
  37580. name: "Front (NSFW)",
  37581. image: {
  37582. source: "./media/characters/october/front-nsfw.svg",
  37583. extra: 1392/1307,
  37584. bottom: 42/1434
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(5 + 5/12, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(8 + 6/12, "feet"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/essynkardi/front.svg",
  37604. extra: 1914/1846,
  37605. bottom: 22/1936
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(8 + 6/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37619. {
  37620. front: {
  37621. height: math.unit(6 + 6/12, "feet"),
  37622. weight: math.unit(7, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/icky/front.svg",
  37626. extra: 813/782,
  37627. bottom: 66/879
  37628. }
  37629. },
  37630. back: {
  37631. height: math.unit(6 + 6/12, "feet"),
  37632. weight: math.unit(7, "lb"),
  37633. name: "Back",
  37634. image: {
  37635. source: "./media/characters/icky/back.svg",
  37636. extra: 754/735,
  37637. bottom: 56/810
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(6 + 6/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(15, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/rojas/front.svg",
  37657. extra: 1462/1408,
  37658. bottom: 95/1557
  37659. }
  37660. },
  37661. back: {
  37662. height: math.unit(15, "feet"),
  37663. name: "Back",
  37664. image: {
  37665. source: "./media/characters/rojas/back.svg",
  37666. extra: 1023/954,
  37667. bottom: 28/1051
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(15, "feet"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37681. {
  37682. frontHuman: {
  37683. height: math.unit(5 + 7/12, "feet"),
  37684. name: "Front (Human)",
  37685. image: {
  37686. source: "./media/characters/alek-dryagan/front-human.svg",
  37687. extra: 1687/1667,
  37688. bottom: 69/1756
  37689. }
  37690. },
  37691. backHuman: {
  37692. height: math.unit(5 + 7/12, "feet"),
  37693. name: "Back (Human)",
  37694. image: {
  37695. source: "./media/characters/alek-dryagan/back-human.svg",
  37696. extra: 1670/1649,
  37697. bottom: 65/1735
  37698. }
  37699. },
  37700. frontDemi: {
  37701. height: math.unit(65, "feet"),
  37702. name: "Front (Demi)",
  37703. image: {
  37704. source: "./media/characters/alek-dryagan/front-demi.svg",
  37705. extra: 1669/1642,
  37706. bottom: 49/1718
  37707. }
  37708. },
  37709. backDemi: {
  37710. height: math.unit(65, "feet"),
  37711. name: "Back (Demi)",
  37712. image: {
  37713. source: "./media/characters/alek-dryagan/back-demi.svg",
  37714. extra: 1658/1637,
  37715. bottom: 40/1698
  37716. }
  37717. },
  37718. mawHuman: {
  37719. height: math.unit(0.3, "feet"),
  37720. name: "Maw (Human)",
  37721. image: {
  37722. source: "./media/characters/alek-dryagan/maw-human.svg"
  37723. }
  37724. },
  37725. mawDemi: {
  37726. height: math.unit(3.8, "feet"),
  37727. name: "Maw (Demi)",
  37728. image: {
  37729. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37730. }
  37731. },
  37732. },
  37733. [
  37734. {
  37735. name: "Normal",
  37736. height: math.unit(5 + 7/12, "feet"),
  37737. default: true
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37743. {
  37744. frontHuman: {
  37745. height: math.unit(5 + 2/12, "feet"),
  37746. name: "Front (Human)",
  37747. image: {
  37748. source: "./media/characters/gen/front-human.svg",
  37749. extra: 1627/1538,
  37750. bottom: 71/1698
  37751. }
  37752. },
  37753. backHuman: {
  37754. height: math.unit(5 + 2/12, "feet"),
  37755. name: "Back (Human)",
  37756. image: {
  37757. source: "./media/characters/gen/back-human.svg",
  37758. extra: 1638/1548,
  37759. bottom: 69/1707
  37760. }
  37761. },
  37762. frontDemi: {
  37763. height: math.unit(5 + 2/12, "feet"),
  37764. name: "Front (Demi)",
  37765. image: {
  37766. source: "./media/characters/gen/front-demi.svg",
  37767. extra: 1627/1538,
  37768. bottom: 71/1698
  37769. }
  37770. },
  37771. backDemi: {
  37772. height: math.unit(5 + 2/12, "feet"),
  37773. name: "Back (Demi)",
  37774. image: {
  37775. source: "./media/characters/gen/back-demi.svg",
  37776. extra: 1638/1548,
  37777. bottom: 69/1707
  37778. }
  37779. },
  37780. },
  37781. [
  37782. {
  37783. name: "Normal",
  37784. height: math.unit(5 + 2/12, "feet"),
  37785. default: true
  37786. },
  37787. ]
  37788. ))
  37789. characterMakers.push(() => makeCharacter(
  37790. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37791. {
  37792. frontImp: {
  37793. height: math.unit(1 + 11/12, "feet"),
  37794. name: "Front (Imp)",
  37795. image: {
  37796. source: "./media/characters/max-kobold/front-imp.svg",
  37797. extra: 1238/1134,
  37798. bottom: 81/1319
  37799. }
  37800. },
  37801. backImp: {
  37802. height: math.unit(1 + 11/12, "feet"),
  37803. name: "Back (Imp)",
  37804. image: {
  37805. source: "./media/characters/max-kobold/back-imp.svg",
  37806. extra: 1334/1175,
  37807. bottom: 34/1368
  37808. }
  37809. },
  37810. frontDemi: {
  37811. height: math.unit(5 + 9/12, "feet"),
  37812. name: "Front (Demi)",
  37813. image: {
  37814. source: "./media/characters/max-kobold/front-demi.svg",
  37815. extra: 1715/1685,
  37816. bottom: 54/1769
  37817. }
  37818. },
  37819. backDemi: {
  37820. height: math.unit(5 + 9/12, "feet"),
  37821. name: "Back (Demi)",
  37822. image: {
  37823. source: "./media/characters/max-kobold/back-demi.svg",
  37824. extra: 1752/1729,
  37825. bottom: 41/1793
  37826. }
  37827. },
  37828. handImp: {
  37829. height: math.unit(0.45, "feet"),
  37830. name: "Hand (Imp)",
  37831. image: {
  37832. source: "./media/characters/max-kobold/hand.svg"
  37833. }
  37834. },
  37835. pawImp: {
  37836. height: math.unit(0.46, "feet"),
  37837. name: "Paw (Imp)",
  37838. image: {
  37839. source: "./media/characters/max-kobold/paw.svg"
  37840. }
  37841. },
  37842. handDemi: {
  37843. height: math.unit(0.80, "feet"),
  37844. name: "Hand (Demi)",
  37845. image: {
  37846. source: "./media/characters/max-kobold/hand.svg"
  37847. }
  37848. },
  37849. pawDemi: {
  37850. height: math.unit(1.1, "feet"),
  37851. name: "Paw (Demi)",
  37852. image: {
  37853. source: "./media/characters/max-kobold/paw.svg"
  37854. }
  37855. },
  37856. headImp: {
  37857. height: math.unit(1.33, "feet"),
  37858. name: "Head (Imp)",
  37859. image: {
  37860. source: "./media/characters/max-kobold/head-imp.svg"
  37861. }
  37862. },
  37863. mawImp: {
  37864. height: math.unit(0.75, "feet"),
  37865. name: "Maw (Imp)",
  37866. image: {
  37867. source: "./media/characters/max-kobold/maw-imp.svg"
  37868. }
  37869. },
  37870. mawDemi: {
  37871. height: math.unit(0.42, "feet"),
  37872. name: "Maw (Demi)",
  37873. image: {
  37874. source: "./media/characters/max-kobold/maw-demi.svg"
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(1 + 11/12, "feet"),
  37882. default: true
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(7 + 5/12, "feet"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/carbon/front.svg",
  37894. extra: 1754/1689,
  37895. bottom: 65/1819
  37896. }
  37897. },
  37898. back: {
  37899. height: math.unit(7 + 5/12, "feet"),
  37900. name: "Back",
  37901. image: {
  37902. source: "./media/characters/carbon/back.svg",
  37903. extra: 1762/1695,
  37904. bottom: 24/1786
  37905. }
  37906. },
  37907. frontGigantamax: {
  37908. height: math.unit(150, "feet"),
  37909. name: "Front (Gigantamax)",
  37910. image: {
  37911. source: "./media/characters/carbon/front-gigantamax.svg",
  37912. extra: 1826/1669,
  37913. bottom: 59/1885
  37914. }
  37915. },
  37916. backGigantamax: {
  37917. height: math.unit(150, "feet"),
  37918. name: "Back (Gigantamax)",
  37919. image: {
  37920. source: "./media/characters/carbon/back-gigantamax.svg",
  37921. extra: 1796/1653,
  37922. bottom: 53/1849
  37923. }
  37924. },
  37925. maw: {
  37926. height: math.unit(0.48, "feet"),
  37927. name: "Maw",
  37928. image: {
  37929. source: "./media/characters/carbon/maw.svg"
  37930. }
  37931. },
  37932. mawGigantamax: {
  37933. height: math.unit(7.5, "feet"),
  37934. name: "Maw (Gigantamax)",
  37935. image: {
  37936. source: "./media/characters/carbon/maw-gigantamax.svg"
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(7 + 5/12, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(6, "feet"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/maverick/front.svg",
  37956. extra: 1672/1661,
  37957. bottom: 85/1757
  37958. }
  37959. },
  37960. back: {
  37961. height: math.unit(6, "feet"),
  37962. name: "Back",
  37963. image: {
  37964. source: "./media/characters/maverick/back.svg",
  37965. extra: 1642/1631,
  37966. bottom: 38/1680
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(6, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(15, "feet"),
  37983. weight: math.unit(615, "lb"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/grockle/front.svg",
  37987. extra: 1535/1427,
  37988. bottom: 56/1591
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(15, "feet"),
  37996. default: true
  37997. },
  37998. {
  37999. name: "Large",
  38000. height: math.unit(150, "feet")
  38001. },
  38002. {
  38003. name: "Macro",
  38004. height: math.unit(1876, "feet")
  38005. },
  38006. {
  38007. name: "Mega Macro",
  38008. height: math.unit(121940, "feet")
  38009. },
  38010. {
  38011. name: "Giga Macro",
  38012. height: math.unit(750, "km")
  38013. },
  38014. {
  38015. name: "Tera Macro",
  38016. height: math.unit(750000, "km")
  38017. },
  38018. {
  38019. name: "Galactic",
  38020. height: math.unit(1.4e5, "km")
  38021. },
  38022. {
  38023. name: "Godlike",
  38024. height: math.unit(9.8e280, "galaxies")
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38030. {
  38031. front: {
  38032. height: math.unit(11, "meters"),
  38033. weight: math.unit(20, "tonnes"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/alistair/front.svg",
  38037. extra: 1265/1009,
  38038. bottom: 93/1358
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(11, "meters"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(5 + 8/12, "feet"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/haruka/front.svg",
  38058. extra: 2012/1952,
  38059. bottom: 0/2012
  38060. }
  38061. },
  38062. },
  38063. [
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(5 + 8/12, "feet"),
  38067. default: true
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38073. {
  38074. back: {
  38075. height: math.unit(9, "feet"),
  38076. name: "Back",
  38077. image: {
  38078. source: "./media/characters/vivian-sylveon/back.svg",
  38079. extra: 1853/1714,
  38080. bottom: 0/1853
  38081. }
  38082. },
  38083. },
  38084. [
  38085. {
  38086. name: "Normal",
  38087. height: math.unit(9, "feet"),
  38088. default: true
  38089. },
  38090. {
  38091. name: "Macro",
  38092. height: math.unit(500, "feet")
  38093. },
  38094. {
  38095. name: "Megamacro",
  38096. height: math.unit(600, "miles")
  38097. },
  38098. {
  38099. name: "Gigamacro",
  38100. height: math.unit(30000, "miles")
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38106. {
  38107. anthro: {
  38108. height: math.unit(5 + 10/12, "feet"),
  38109. weight: math.unit(100, "lb"),
  38110. name: "Anthro",
  38111. image: {
  38112. source: "./media/characters/daiki/anthro.svg",
  38113. extra: 1115/1027,
  38114. bottom: 69/1184
  38115. }
  38116. },
  38117. feral: {
  38118. height: math.unit(200, "feet"),
  38119. name: "Feral",
  38120. image: {
  38121. source: "./media/characters/daiki/feral.svg",
  38122. extra: 1256/313,
  38123. bottom: 39/1295
  38124. }
  38125. },
  38126. feralHead: {
  38127. height: math.unit(171, "feet"),
  38128. name: "Feral Head",
  38129. image: {
  38130. source: "./media/characters/daiki/feral-head.svg"
  38131. }
  38132. },
  38133. manaDragon: {
  38134. height: math.unit(170, "meters"),
  38135. name: "Mana-dragon",
  38136. image: {
  38137. source: "./media/characters/daiki/mana-dragon.svg",
  38138. extra: 763/420,
  38139. bottom: 97/860
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(5 + 10/12, "feet"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38153. {
  38154. fullyEquippedFront: {
  38155. height: math.unit(3 + 1/12, "feet"),
  38156. weight: math.unit(24, "lb"),
  38157. name: "Fully Equipped (Front)",
  38158. image: {
  38159. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38160. extra: 687/605,
  38161. bottom: 18/705
  38162. }
  38163. },
  38164. fullyEquippedBack: {
  38165. height: math.unit(3 + 1/12, "feet"),
  38166. weight: math.unit(24, "lb"),
  38167. name: "Fully Equipped (Back)",
  38168. image: {
  38169. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38170. extra: 689/590,
  38171. bottom: 18/707
  38172. }
  38173. },
  38174. dailyWear: {
  38175. height: math.unit(3 + 1/12, "feet"),
  38176. weight: math.unit(24, "lb"),
  38177. name: "Daily Wear",
  38178. image: {
  38179. source: "./media/characters/tea-spot/daily-wear.svg",
  38180. extra: 701/620,
  38181. bottom: 21/722
  38182. }
  38183. },
  38184. maidWork: {
  38185. height: math.unit(3 + 1/12, "feet"),
  38186. weight: math.unit(24, "lb"),
  38187. name: "Maid Work",
  38188. image: {
  38189. source: "./media/characters/tea-spot/maid-work.svg",
  38190. extra: 693/609,
  38191. bottom: 15/708
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(3 + 1/12, "feet"),
  38199. default: true
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(175, "cm"),
  38208. weight: math.unit(75, "kg"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/chee/front.svg",
  38212. extra: 1796/1740,
  38213. bottom: 40/1836
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Micro-Micro",
  38220. height: math.unit(1, "nm")
  38221. },
  38222. {
  38223. name: "Micro-erst",
  38224. height: math.unit(1, "micrometer")
  38225. },
  38226. {
  38227. name: "Micro-er",
  38228. height: math.unit(1, "cm")
  38229. },
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(175, "cm"),
  38233. default: true
  38234. },
  38235. {
  38236. name: "Macro",
  38237. height: math.unit(100, "m")
  38238. },
  38239. {
  38240. name: "Macro-er",
  38241. height: math.unit(1, "km")
  38242. },
  38243. {
  38244. name: "Macro-erst",
  38245. height: math.unit(10, "km")
  38246. },
  38247. {
  38248. name: "Macro-Macro",
  38249. height: math.unit(100, "km")
  38250. },
  38251. ]
  38252. ))
  38253. characterMakers.push(() => makeCharacter(
  38254. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38255. {
  38256. front: {
  38257. height: math.unit(11 + 9/12, "feet"),
  38258. weight: math.unit(935, "lb"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/kingsley/front.svg",
  38262. extra: 1803/1674,
  38263. bottom: 127/1930
  38264. }
  38265. },
  38266. frontNude: {
  38267. height: math.unit(11 + 9/12, "feet"),
  38268. weight: math.unit(935, "lb"),
  38269. name: "Front (Nude)",
  38270. image: {
  38271. source: "./media/characters/kingsley/front-nude.svg",
  38272. extra: 1803/1674,
  38273. bottom: 127/1930
  38274. }
  38275. },
  38276. },
  38277. [
  38278. {
  38279. name: "Normal",
  38280. height: math.unit(11 + 9/12, "feet"),
  38281. default: true
  38282. },
  38283. ]
  38284. ))
  38285. characterMakers.push(() => makeCharacter(
  38286. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38287. {
  38288. side: {
  38289. height: math.unit(9, "feet"),
  38290. name: "Side",
  38291. image: {
  38292. source: "./media/characters/rymel/side.svg",
  38293. extra: 792/469,
  38294. bottom: 121/913
  38295. }
  38296. },
  38297. maw: {
  38298. height: math.unit(2.4, "meters"),
  38299. name: "Maw",
  38300. image: {
  38301. source: "./media/characters/rymel/maw.svg"
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "House Drake",
  38308. height: math.unit(2, "feet")
  38309. },
  38310. {
  38311. name: "Reduced",
  38312. height: math.unit(4.5, "feet")
  38313. },
  38314. {
  38315. name: "Normal",
  38316. height: math.unit(9, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38323. {
  38324. front: {
  38325. height: math.unit(1.74, "meters"),
  38326. weight: math.unit(55, "kg"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/rubus/front.svg",
  38330. extra: 1894/1742,
  38331. bottom: 44/1938
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(1.74, "meters"),
  38339. default: true
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(5 + 2/12, "feet"),
  38348. weight: math.unit(112, "lb"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/cassie-kingston/front.svg",
  38352. extra: 1438/1390,
  38353. bottom: 47/1485
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(5 + 2/12, "feet"),
  38361. default: true
  38362. },
  38363. {
  38364. name: "Macro",
  38365. height: math.unit(128, "feet")
  38366. },
  38367. {
  38368. name: "Megamacro",
  38369. height: math.unit(2.56, "miles")
  38370. },
  38371. ]
  38372. ))
  38373. characterMakers.push(() => makeCharacter(
  38374. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38375. {
  38376. front: {
  38377. height: math.unit(7, "feet"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/fox/front.svg",
  38381. extra: 1798/1703,
  38382. bottom: 55/1853
  38383. }
  38384. },
  38385. back: {
  38386. height: math.unit(7, "feet"),
  38387. name: "Back",
  38388. image: {
  38389. source: "./media/characters/fox/back.svg",
  38390. extra: 1748/1649,
  38391. bottom: 32/1780
  38392. }
  38393. },
  38394. head: {
  38395. height: math.unit(1.95, "feet"),
  38396. name: "Head",
  38397. image: {
  38398. source: "./media/characters/fox/head.svg"
  38399. }
  38400. },
  38401. dick: {
  38402. height: math.unit(1.33, "feet"),
  38403. name: "Dick",
  38404. image: {
  38405. source: "./media/characters/fox/dick.svg"
  38406. }
  38407. },
  38408. foot: {
  38409. height: math.unit(1, "feet"),
  38410. name: "Foot",
  38411. image: {
  38412. source: "./media/characters/fox/foot.svg"
  38413. }
  38414. },
  38415. paw: {
  38416. height: math.unit(0.92, "feet"),
  38417. name: "Paw",
  38418. image: {
  38419. source: "./media/characters/fox/paw.svg"
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Small",
  38426. height: math.unit(3, "inches")
  38427. },
  38428. {
  38429. name: "\"Realistic\"",
  38430. height: math.unit(7, "feet")
  38431. },
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(150, "feet"),
  38435. default: true
  38436. },
  38437. {
  38438. name: "BIG",
  38439. height: math.unit(1200, "feet")
  38440. },
  38441. {
  38442. name: "👀",
  38443. height: math.unit(5, "miles")
  38444. },
  38445. {
  38446. name: "👀👀👀",
  38447. height: math.unit(64, "miles")
  38448. },
  38449. ]
  38450. ))
  38451. characterMakers.push(() => makeCharacter(
  38452. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38453. {
  38454. front: {
  38455. height: math.unit(625, "feet"),
  38456. name: "Front",
  38457. image: {
  38458. source: "./media/characters/asonja-rossa/front.svg",
  38459. extra: 1833/1686,
  38460. bottom: 24/1857
  38461. }
  38462. },
  38463. back: {
  38464. height: math.unit(625, "feet"),
  38465. name: "Back",
  38466. image: {
  38467. source: "./media/characters/asonja-rossa/back.svg",
  38468. extra: 1852/1753,
  38469. bottom: 26/1878
  38470. }
  38471. },
  38472. },
  38473. [
  38474. {
  38475. name: "Macro",
  38476. height: math.unit(625, "feet"),
  38477. default: true
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38483. {
  38484. side: {
  38485. height: math.unit(8, "feet"),
  38486. name: "Side",
  38487. image: {
  38488. source: "./media/characters/rezukii/side.svg",
  38489. extra: 979/542,
  38490. bottom: 87/1066
  38491. }
  38492. },
  38493. sitting: {
  38494. height: math.unit(14.6, "feet"),
  38495. name: "Sitting",
  38496. image: {
  38497. source: "./media/characters/rezukii/sitting.svg",
  38498. extra: 1023/813,
  38499. bottom: 45/1068
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Tiny",
  38506. height: math.unit(2, "feet")
  38507. },
  38508. {
  38509. name: "Smol",
  38510. height: math.unit(4, "feet")
  38511. },
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(8, "feet"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Big",
  38519. height: math.unit(12, "feet")
  38520. },
  38521. {
  38522. name: "Macro",
  38523. height: math.unit(30, "feet")
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38529. {
  38530. front: {
  38531. height: math.unit(14, "feet"),
  38532. weight: math.unit(9.5, "tonnes"),
  38533. name: "Front",
  38534. image: {
  38535. source: "./media/characters/dawnheart/front.svg",
  38536. extra: 2792/2675,
  38537. bottom: 64/2856
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(14, "feet"),
  38545. default: true
  38546. },
  38547. ]
  38548. ))
  38549. characterMakers.push(() => makeCharacter(
  38550. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38551. {
  38552. front: {
  38553. height: math.unit(1.7, "m"),
  38554. name: "Front",
  38555. image: {
  38556. source: "./media/characters/gladi/front.svg",
  38557. extra: 1460/1362,
  38558. bottom: 19/1479
  38559. }
  38560. },
  38561. back: {
  38562. height: math.unit(1.7, "m"),
  38563. name: "Back",
  38564. image: {
  38565. source: "./media/characters/gladi/back.svg",
  38566. extra: 1459/1357,
  38567. bottom: 12/1471
  38568. }
  38569. },
  38570. feral: {
  38571. height: math.unit(2.05, "m"),
  38572. name: "Feral",
  38573. image: {
  38574. source: "./media/characters/gladi/feral.svg",
  38575. extra: 821/557,
  38576. bottom: 91/912
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Shortest",
  38583. height: math.unit(70, "cm")
  38584. },
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(1.7, "m")
  38588. },
  38589. {
  38590. name: "Macro",
  38591. height: math.unit(10, "m"),
  38592. default: true
  38593. },
  38594. {
  38595. name: "Tallest",
  38596. height: math.unit(200, "m")
  38597. },
  38598. ]
  38599. ))
  38600. characterMakers.push(() => makeCharacter(
  38601. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38602. {
  38603. front: {
  38604. height: math.unit(5 + 7/12, "feet"),
  38605. weight: math.unit(2, "tons"),
  38606. name: "Front",
  38607. image: {
  38608. source: "./media/characters/erdno/front.svg",
  38609. extra: 1234/1129,
  38610. bottom: 35/1269
  38611. }
  38612. },
  38613. angled: {
  38614. height: math.unit(5 + 7/12, "feet"),
  38615. weight: math.unit(2, "tons"),
  38616. name: "Angled",
  38617. image: {
  38618. source: "./media/characters/erdno/angled.svg",
  38619. extra: 1185/1139,
  38620. bottom: 36/1221
  38621. }
  38622. },
  38623. side: {
  38624. height: math.unit(5 + 7/12, "feet"),
  38625. weight: math.unit(2, "tons"),
  38626. name: "Side",
  38627. image: {
  38628. source: "./media/characters/erdno/side.svg",
  38629. extra: 1191/1144,
  38630. bottom: 40/1231
  38631. }
  38632. },
  38633. back: {
  38634. height: math.unit(5 + 7/12, "feet"),
  38635. weight: math.unit(2, "tons"),
  38636. name: "Back",
  38637. image: {
  38638. source: "./media/characters/erdno/back.svg",
  38639. extra: 1202/1146,
  38640. bottom: 17/1219
  38641. }
  38642. },
  38643. frontNsfw: {
  38644. height: math.unit(5 + 7/12, "feet"),
  38645. weight: math.unit(2, "tons"),
  38646. name: "Front (NSFW)",
  38647. image: {
  38648. source: "./media/characters/erdno/front-nsfw.svg",
  38649. extra: 1234/1129,
  38650. bottom: 35/1269
  38651. }
  38652. },
  38653. angledNsfw: {
  38654. height: math.unit(5 + 7/12, "feet"),
  38655. weight: math.unit(2, "tons"),
  38656. name: "Angled (NSFW)",
  38657. image: {
  38658. source: "./media/characters/erdno/angled-nsfw.svg",
  38659. extra: 1185/1139,
  38660. bottom: 36/1221
  38661. }
  38662. },
  38663. sideNsfw: {
  38664. height: math.unit(5 + 7/12, "feet"),
  38665. weight: math.unit(2, "tons"),
  38666. name: "Side (NSFW)",
  38667. image: {
  38668. source: "./media/characters/erdno/side-nsfw.svg",
  38669. extra: 1191/1144,
  38670. bottom: 40/1231
  38671. }
  38672. },
  38673. backNsfw: {
  38674. height: math.unit(5 + 7/12, "feet"),
  38675. weight: math.unit(2, "tons"),
  38676. name: "Back (NSFW)",
  38677. image: {
  38678. source: "./media/characters/erdno/back-nsfw.svg",
  38679. extra: 1202/1146,
  38680. bottom: 17/1219
  38681. }
  38682. },
  38683. frontHyper: {
  38684. height: math.unit(5 + 7/12, "feet"),
  38685. weight: math.unit(2, "tons"),
  38686. name: "Front (Hyper)",
  38687. image: {
  38688. source: "./media/characters/erdno/front-hyper.svg",
  38689. extra: 1298/1136,
  38690. bottom: 35/1333
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(5 + 7/12, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Big",
  38702. height: math.unit(5.7, "meters")
  38703. },
  38704. {
  38705. name: "Macro",
  38706. height: math.unit(5.7, "kilometers")
  38707. },
  38708. {
  38709. name: "Megamacro",
  38710. height: math.unit(5.7, "earths")
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38716. {
  38717. front: {
  38718. height: math.unit(5 + 10/12, "feet"),
  38719. weight: math.unit(150, "lb"),
  38720. name: "Front",
  38721. image: {
  38722. source: "./media/characters/jamie/front.svg",
  38723. extra: 1908/1768,
  38724. bottom: 19/1927
  38725. }
  38726. },
  38727. },
  38728. [
  38729. {
  38730. name: "Minimum",
  38731. height: math.unit(2, "cm")
  38732. },
  38733. {
  38734. name: "Micro",
  38735. height: math.unit(3, "inches")
  38736. },
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(5 + 10/12, "feet"),
  38740. default: true
  38741. },
  38742. {
  38743. name: "Macro",
  38744. height: math.unit(150, "feet")
  38745. },
  38746. {
  38747. name: "Megamacro",
  38748. height: math.unit(10000, "m")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(2, "meters"),
  38757. weight: math.unit(100, "kg"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/shiron/front.svg",
  38761. extra: 2103/1985,
  38762. bottom: 98/2201
  38763. }
  38764. },
  38765. back: {
  38766. height: math.unit(2, "meters"),
  38767. weight: math.unit(100, "kg"),
  38768. name: "Back",
  38769. image: {
  38770. source: "./media/characters/shiron/back.svg",
  38771. extra: 2110/2015,
  38772. bottom: 89/2199
  38773. }
  38774. },
  38775. hand: {
  38776. height: math.unit(0.96, "feet"),
  38777. name: "Hand",
  38778. image: {
  38779. source: "./media/characters/shiron/hand.svg"
  38780. }
  38781. },
  38782. foot: {
  38783. height: math.unit(1.464, "feet"),
  38784. name: "Foot",
  38785. image: {
  38786. source: "./media/characters/shiron/foot.svg"
  38787. }
  38788. },
  38789. },
  38790. [
  38791. {
  38792. name: "Normal",
  38793. height: math.unit(2, "meters")
  38794. },
  38795. {
  38796. name: "Macro",
  38797. height: math.unit(500, "meters"),
  38798. default: true
  38799. },
  38800. {
  38801. name: "Megamacro",
  38802. height: math.unit(20, "km")
  38803. },
  38804. ]
  38805. ))
  38806. characterMakers.push(() => makeCharacter(
  38807. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38808. {
  38809. front: {
  38810. height: math.unit(6, "feet"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/sam/front.svg",
  38814. extra: 849/826,
  38815. bottom: 19/868
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(6, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(8 + 4/12, "feet"),
  38832. weight: math.unit(122, "kg"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/namori-kurogawa/front.svg",
  38836. extra: 1894/1576,
  38837. bottom: 34/1928
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(8 + 4/12, "feet"),
  38845. default: true
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(9, "feet"),
  38854. weight: math.unit(621, "lb"),
  38855. name: "Front",
  38856. image: {
  38857. source: "./media/characters/unmru/front.svg",
  38858. extra: 1853/1747,
  38859. bottom: 73/1926
  38860. }
  38861. },
  38862. side: {
  38863. height: math.unit(9, "feet"),
  38864. weight: math.unit(621, "lb"),
  38865. name: "Side",
  38866. image: {
  38867. source: "./media/characters/unmru/side.svg",
  38868. extra: 1781/1671,
  38869. bottom: 127/1908
  38870. }
  38871. },
  38872. back: {
  38873. height: math.unit(9, "feet"),
  38874. weight: math.unit(621, "lb"),
  38875. name: "Back",
  38876. image: {
  38877. source: "./media/characters/unmru/back.svg",
  38878. extra: 1894/1765,
  38879. bottom: 75/1969
  38880. }
  38881. },
  38882. dick: {
  38883. height: math.unit(3, "feet"),
  38884. weight: math.unit(35, "lb"),
  38885. name: "Dick",
  38886. image: {
  38887. source: "./media/characters/unmru/dick.svg"
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(9, "feet")
  38895. },
  38896. {
  38897. name: "Natural",
  38898. height: math.unit(27, "feet"),
  38899. default: true
  38900. },
  38901. {
  38902. name: "Giant",
  38903. height: math.unit(90, "feet")
  38904. },
  38905. {
  38906. name: "Kaiju",
  38907. height: math.unit(270, "feet")
  38908. },
  38909. {
  38910. name: "Macro",
  38911. height: math.unit(900, "feet")
  38912. },
  38913. {
  38914. name: "Macro+",
  38915. height: math.unit(2700, "feet")
  38916. },
  38917. {
  38918. name: "Megamacro",
  38919. height: math.unit(9000, "feet")
  38920. },
  38921. {
  38922. name: "City-Crushing",
  38923. height: math.unit(27000, "feet")
  38924. },
  38925. {
  38926. name: "Mountain-Mashing",
  38927. height: math.unit(90000, "feet")
  38928. },
  38929. {
  38930. name: "Earth-Eclipsing",
  38931. height: math.unit(2.7e8, "feet")
  38932. },
  38933. {
  38934. name: "Sol-Swallowing",
  38935. height: math.unit(9e10, "feet")
  38936. },
  38937. {
  38938. name: "Majoris-Munching",
  38939. height: math.unit(2.7e13, "feet")
  38940. },
  38941. ]
  38942. ))
  38943. characterMakers.push(() => makeCharacter(
  38944. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38945. {
  38946. front: {
  38947. height: math.unit(1, "inch"),
  38948. name: "Front",
  38949. image: {
  38950. source: "./media/characters/squeaks-mouse/front.svg",
  38951. extra: 352/308,
  38952. bottom: 25/377
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Micro",
  38959. height: math.unit(1, "inch"),
  38960. default: true
  38961. },
  38962. ]
  38963. ))
  38964. characterMakers.push(() => makeCharacter(
  38965. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38966. {
  38967. side: {
  38968. height: math.unit(35, "feet"),
  38969. name: "Side",
  38970. image: {
  38971. source: "./media/characters/sayko/side.svg",
  38972. extra: 1697/1021,
  38973. bottom: 82/1779
  38974. }
  38975. },
  38976. head: {
  38977. height: math.unit(16, "feet"),
  38978. name: "Head",
  38979. image: {
  38980. source: "./media/characters/sayko/head.svg"
  38981. }
  38982. },
  38983. forepaw: {
  38984. height: math.unit(7.85, "feet"),
  38985. name: "Forepaw",
  38986. image: {
  38987. source: "./media/characters/sayko/forepaw.svg"
  38988. }
  38989. },
  38990. hindpaw: {
  38991. height: math.unit(8.8, "feet"),
  38992. name: "Hindpaw",
  38993. image: {
  38994. source: "./media/characters/sayko/hindpaw.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(35, "feet"),
  39002. default: true
  39003. },
  39004. {
  39005. name: "Colossus",
  39006. height: math.unit(100, "meters")
  39007. },
  39008. {
  39009. name: "\"Small\" Deity",
  39010. height: math.unit(1, "km")
  39011. },
  39012. {
  39013. name: "\"Large\" Deity",
  39014. height: math.unit(15, "km")
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(6, "feet"),
  39023. weight: math.unit(250, "lb"),
  39024. name: "Front",
  39025. image: {
  39026. source: "./media/characters/mukiro/front.svg",
  39027. extra: 1368/1310,
  39028. bottom: 34/1402
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(6, "feet"),
  39036. default: true
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(12 + 4/12, "feet"),
  39045. name: "Front",
  39046. image: {
  39047. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39048. extra: 1346/1311,
  39049. bottom: 65/1411
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Base",
  39056. height: math.unit(12 + 4/12, "feet"),
  39057. default: true
  39058. },
  39059. {
  39060. name: "Macro",
  39061. height: math.unit(150, "feet")
  39062. },
  39063. {
  39064. name: "Mega",
  39065. height: math.unit(2, "miles")
  39066. },
  39067. {
  39068. name: "Demi God",
  39069. height: math.unit(4, "AU")
  39070. },
  39071. {
  39072. name: "God Size",
  39073. height: math.unit(1, "universe")
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(3 + 3/12, "feet"),
  39082. weight: math.unit(88, "lb"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/trey/front.svg",
  39086. extra: 1815/1509,
  39087. bottom: 60/1875
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Normal",
  39094. height: math.unit(3 + 3/12, "feet"),
  39095. default: true
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39101. {
  39102. front: {
  39103. height: math.unit(4, "meters"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/adelonda/front.svg",
  39107. extra: 1077/982,
  39108. bottom: 39/1116
  39109. }
  39110. },
  39111. back: {
  39112. height: math.unit(4, "meters"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/adelonda/back.svg",
  39116. extra: 1105/1003,
  39117. bottom: 25/1130
  39118. }
  39119. },
  39120. feral: {
  39121. height: math.unit(40/1.5, "meters"),
  39122. name: "Feral",
  39123. image: {
  39124. source: "./media/characters/adelonda/feral.svg",
  39125. extra: 597/271,
  39126. bottom: 387/984
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Normal",
  39133. height: math.unit(4, "meters"),
  39134. default: true
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(8 + 4/12, "feet"),
  39143. weight: math.unit(670, "lb"),
  39144. name: "Front",
  39145. image: {
  39146. source: "./media/characters/acadiel/front.svg",
  39147. extra: 1901/1595,
  39148. bottom: 142/2043
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(8 + 4/12, "feet"),
  39156. default: true
  39157. },
  39158. {
  39159. name: "Macro",
  39160. height: math.unit(200, "feet")
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(6 + 2/12, "feet"),
  39169. weight: math.unit(185, "lb"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/kayne-ein/front.svg",
  39173. extra: 1780/1560,
  39174. bottom: 81/1861
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(6 + 2/12, "feet"),
  39182. default: true
  39183. },
  39184. {
  39185. name: "Transformation Stage",
  39186. height: math.unit(15, "feet")
  39187. },
  39188. {
  39189. name: "Macro",
  39190. height: math.unit(150, "feet")
  39191. },
  39192. {
  39193. name: "Earth's Shadow",
  39194. height: math.unit(6200, "miles")
  39195. },
  39196. {
  39197. name: "Universal Demon",
  39198. height: math.unit(28e9, "parsecs")
  39199. },
  39200. {
  39201. name: "Multiverse God",
  39202. height: math.unit(3, "multiverses")
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(5 + 5/12, "feet"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/fawn/front.svg",
  39214. extra: 1873/1731,
  39215. bottom: 95/1968
  39216. }
  39217. },
  39218. back: {
  39219. height: math.unit(5 + 5/12, "feet"),
  39220. name: "Back",
  39221. image: {
  39222. source: "./media/characters/fawn/back.svg",
  39223. extra: 1813/1700,
  39224. bottom: 14/1827
  39225. }
  39226. },
  39227. hoof: {
  39228. height: math.unit(1.45, "feet"),
  39229. name: "Hoof",
  39230. image: {
  39231. source: "./media/characters/fawn/hoof.svg"
  39232. }
  39233. },
  39234. },
  39235. [
  39236. {
  39237. name: "Normal",
  39238. height: math.unit(5 + 5/12, "feet"),
  39239. default: true
  39240. },
  39241. ]
  39242. ))
  39243. characterMakers.push(() => makeCharacter(
  39244. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39245. {
  39246. front: {
  39247. height: math.unit(2 + 5/12, "feet"),
  39248. name: "Front",
  39249. image: {
  39250. source: "./media/characters/orion/front.svg",
  39251. extra: 1366/1304,
  39252. bottom: 43/1409
  39253. }
  39254. },
  39255. paw: {
  39256. height: math.unit(0.52, "feet"),
  39257. name: "Paw",
  39258. image: {
  39259. source: "./media/characters/orion/paw.svg"
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(2 + 5/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(5 + 10/12, "feet"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/vera/front.svg",
  39279. extra: 1680/1575,
  39280. bottom: 49/1729
  39281. }
  39282. },
  39283. back: {
  39284. height: math.unit(5 + 10/12, "feet"),
  39285. name: "Back",
  39286. image: {
  39287. source: "./media/characters/vera/back.svg",
  39288. extra: 1700/1588,
  39289. bottom: 18/1718
  39290. }
  39291. },
  39292. arcanine: {
  39293. height: math.unit(6 + 8/12, "feet"),
  39294. name: "Arcanine",
  39295. image: {
  39296. source: "./media/characters/vera/arcanine.svg",
  39297. extra: 1590/1511,
  39298. bottom: 71/1661
  39299. }
  39300. },
  39301. maw: {
  39302. height: math.unit(0.82, "feet"),
  39303. name: "Maw",
  39304. image: {
  39305. source: "./media/characters/vera/maw.svg"
  39306. }
  39307. },
  39308. mawArcanine: {
  39309. height: math.unit(0.97, "feet"),
  39310. name: "Maw (Arcanine)",
  39311. image: {
  39312. source: "./media/characters/vera/maw-arcanine.svg"
  39313. }
  39314. },
  39315. paw: {
  39316. height: math.unit(0.75, "feet"),
  39317. name: "Paw",
  39318. image: {
  39319. source: "./media/characters/vera/paw.svg"
  39320. }
  39321. },
  39322. pawprint: {
  39323. height: math.unit(0.52, "feet"),
  39324. name: "Pawprint",
  39325. image: {
  39326. source: "./media/characters/vera/pawprint.svg"
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(5 + 10/12, "feet"),
  39334. default: true
  39335. },
  39336. {
  39337. name: "Macro",
  39338. height: math.unit(75, "feet")
  39339. },
  39340. ]
  39341. ))
  39342. characterMakers.push(() => makeCharacter(
  39343. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39344. {
  39345. front: {
  39346. height: math.unit(4, "feet"),
  39347. weight: math.unit(40, "lb"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/orvan-rabbit/front.svg",
  39351. extra: 1896/1642,
  39352. bottom: 29/1925
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Normal",
  39359. height: math.unit(4, "feet"),
  39360. default: true
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(6, "feet"),
  39369. weight: math.unit(168, "lb"),
  39370. name: "Front",
  39371. image: {
  39372. source: "./media/characters/lisa/front.svg",
  39373. extra: 2065/1867,
  39374. bottom: 46/2111
  39375. }
  39376. },
  39377. back: {
  39378. height: math.unit(6, "feet"),
  39379. weight: math.unit(168, "lb"),
  39380. name: "Back",
  39381. image: {
  39382. source: "./media/characters/lisa/back.svg",
  39383. extra: 1982/1838,
  39384. bottom: 29/2011
  39385. }
  39386. },
  39387. maw: {
  39388. height: math.unit(0.81, "feet"),
  39389. name: "Maw",
  39390. image: {
  39391. source: "./media/characters/lisa/maw.svg"
  39392. }
  39393. },
  39394. paw: {
  39395. height: math.unit(0.9, "feet"),
  39396. name: "Paw",
  39397. image: {
  39398. source: "./media/characters/lisa/paw.svg"
  39399. }
  39400. },
  39401. caribousune: {
  39402. height: math.unit(7 + 2/12, "feet"),
  39403. weight: math.unit(268, "lb"),
  39404. name: "Caribousune",
  39405. image: {
  39406. source: "./media/characters/lisa/caribousune.svg",
  39407. extra: 1843/1633,
  39408. bottom: 29/1872
  39409. }
  39410. },
  39411. frontCaribousune: {
  39412. height: math.unit(7 + 2/12, "feet"),
  39413. weight: math.unit(268, "lb"),
  39414. name: "Front (Caribousune)",
  39415. image: {
  39416. source: "./media/characters/lisa/front-caribousune.svg",
  39417. extra: 1818/1638,
  39418. bottom: 52/1870
  39419. }
  39420. },
  39421. sideCaribousune: {
  39422. height: math.unit(7 + 2/12, "feet"),
  39423. weight: math.unit(268, "lb"),
  39424. name: "Side (Caribousune)",
  39425. image: {
  39426. source: "./media/characters/lisa/side-caribousune.svg",
  39427. extra: 1851/1635,
  39428. bottom: 16/1867
  39429. }
  39430. },
  39431. backCaribousune: {
  39432. height: math.unit(7 + 2/12, "feet"),
  39433. weight: math.unit(268, "lb"),
  39434. name: "Back (Caribousune)",
  39435. image: {
  39436. source: "./media/characters/lisa/back-caribousune.svg",
  39437. extra: 1801/1604,
  39438. bottom: 44/1845
  39439. }
  39440. },
  39441. caribou: {
  39442. height: math.unit(7 + 2/12, "feet"),
  39443. weight: math.unit(268, "lb"),
  39444. name: "Caribou",
  39445. image: {
  39446. source: "./media/characters/lisa/caribou.svg",
  39447. extra: 1843/1633,
  39448. bottom: 29/1872
  39449. }
  39450. },
  39451. frontCaribou: {
  39452. height: math.unit(7 + 2/12, "feet"),
  39453. weight: math.unit(268, "lb"),
  39454. name: "Front (Caribou)",
  39455. image: {
  39456. source: "./media/characters/lisa/front-caribou.svg",
  39457. extra: 1818/1638,
  39458. bottom: 52/1870
  39459. }
  39460. },
  39461. sideCaribou: {
  39462. height: math.unit(7 + 2/12, "feet"),
  39463. weight: math.unit(268, "lb"),
  39464. name: "Side (Caribou)",
  39465. image: {
  39466. source: "./media/characters/lisa/side-caribou.svg",
  39467. extra: 1851/1635,
  39468. bottom: 16/1867
  39469. }
  39470. },
  39471. backCaribou: {
  39472. height: math.unit(7 + 2/12, "feet"),
  39473. weight: math.unit(268, "lb"),
  39474. name: "Back (Caribou)",
  39475. image: {
  39476. source: "./media/characters/lisa/back-caribou.svg",
  39477. extra: 1801/1604,
  39478. bottom: 44/1845
  39479. }
  39480. },
  39481. mawCaribou: {
  39482. height: math.unit(1.45, "feet"),
  39483. name: "Maw (Caribou)",
  39484. image: {
  39485. source: "./media/characters/lisa/maw-caribou.svg"
  39486. }
  39487. },
  39488. mawCaribousune: {
  39489. height: math.unit(1.45, "feet"),
  39490. name: "Maw (Caribousune)",
  39491. image: {
  39492. source: "./media/characters/lisa/maw-caribousune.svg"
  39493. }
  39494. },
  39495. pawCaribousune: {
  39496. height: math.unit(1.61, "feet"),
  39497. name: "Paw (Caribou)",
  39498. image: {
  39499. source: "./media/characters/lisa/paw-caribousune.svg"
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(6, "feet")
  39507. },
  39508. {
  39509. name: "God Size",
  39510. height: math.unit(72, "feet"),
  39511. default: true
  39512. },
  39513. {
  39514. name: "Towering",
  39515. height: math.unit(288, "feet")
  39516. },
  39517. {
  39518. name: "City Size",
  39519. height: math.unit(48384, "feet")
  39520. },
  39521. {
  39522. name: "Continental",
  39523. height: math.unit(4200, "miles")
  39524. },
  39525. {
  39526. name: "Planet Eater",
  39527. height: math.unit(42, "earths")
  39528. },
  39529. {
  39530. name: "Star Swallower",
  39531. height: math.unit(42, "solarradii")
  39532. },
  39533. {
  39534. name: "System Swallower",
  39535. height: math.unit(84000, "AU")
  39536. },
  39537. {
  39538. name: "Galaxy Gobbler",
  39539. height: math.unit(42, "galaxies")
  39540. },
  39541. {
  39542. name: "Universe Devourer",
  39543. height: math.unit(42, "universes")
  39544. },
  39545. {
  39546. name: "Multiverse Muncher",
  39547. height: math.unit(42, "multiverses")
  39548. },
  39549. ]
  39550. ))
  39551. characterMakers.push(() => makeCharacter(
  39552. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39553. {
  39554. front: {
  39555. height: math.unit(36, "feet"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/shadow-rat/front.svg",
  39559. extra: 1845/1758,
  39560. bottom: 83/1928
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Macro",
  39567. height: math.unit(36, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39574. {
  39575. side: {
  39576. height: math.unit(8, "feet"),
  39577. weight: math.unit(2630, "lb"),
  39578. name: "Side",
  39579. image: {
  39580. source: "./media/characters/torallia/side.svg",
  39581. extra: 2164/2021,
  39582. bottom: 371/2535
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Mortal Interaction",
  39589. height: math.unit(8, "feet")
  39590. },
  39591. {
  39592. name: "Natural",
  39593. height: math.unit(24, "feet"),
  39594. default: true
  39595. },
  39596. {
  39597. name: "Giant",
  39598. height: math.unit(80, "feet")
  39599. },
  39600. {
  39601. name: "Kaiju",
  39602. height: math.unit(240, "feet")
  39603. },
  39604. {
  39605. name: "Macro",
  39606. height: math.unit(800, "feet")
  39607. },
  39608. {
  39609. name: "Macro+",
  39610. height: math.unit(2400, "feet")
  39611. },
  39612. {
  39613. name: "Macro++",
  39614. height: math.unit(8000, "feet")
  39615. },
  39616. {
  39617. name: "City-Crushing",
  39618. height: math.unit(24000, "feet")
  39619. },
  39620. {
  39621. name: "Mountain-Mashing",
  39622. height: math.unit(80000, "feet")
  39623. },
  39624. {
  39625. name: "District Demolisher",
  39626. height: math.unit(240000, "feet")
  39627. },
  39628. {
  39629. name: "Tri-County Terror",
  39630. height: math.unit(800000, "feet")
  39631. },
  39632. {
  39633. name: "State Smasher",
  39634. height: math.unit(2.4e6, "feet")
  39635. },
  39636. {
  39637. name: "Nation Nemesis",
  39638. height: math.unit(8e6, "feet")
  39639. },
  39640. {
  39641. name: "Continent Cracker",
  39642. height: math.unit(2.4e7, "feet")
  39643. },
  39644. {
  39645. name: "Planet-Pillaging",
  39646. height: math.unit(8e7, "feet")
  39647. },
  39648. {
  39649. name: "Earth-Eclipsing",
  39650. height: math.unit(2.4e8, "feet")
  39651. },
  39652. {
  39653. name: "Jovian-Jostling",
  39654. height: math.unit(8e8, "feet")
  39655. },
  39656. {
  39657. name: "Gas Giant Gulper",
  39658. height: math.unit(2.4e9, "feet")
  39659. },
  39660. {
  39661. name: "Astral Annihilator",
  39662. height: math.unit(8e9, "feet")
  39663. },
  39664. {
  39665. name: "Celestial Conqueror",
  39666. height: math.unit(2.4e10, "feet")
  39667. },
  39668. {
  39669. name: "Sol-Swallowing",
  39670. height: math.unit(8e10, "feet")
  39671. },
  39672. {
  39673. name: "Hunter of the Heavens",
  39674. height: math.unit(2.4e13, "feet")
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39680. {
  39681. front: {
  39682. height: math.unit(6 + 8/12, "feet"),
  39683. weight: math.unit(250, "kilograms"),
  39684. volume: math.unit(28, "liters"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/rebecca-pawlson/front.svg",
  39688. extra: 1737/1596,
  39689. bottom: 107/1844
  39690. }
  39691. },
  39692. back: {
  39693. height: math.unit(6 + 8/12, "feet"),
  39694. weight: math.unit(250, "kilograms"),
  39695. volume: math.unit(28, "liters"),
  39696. name: "Back",
  39697. image: {
  39698. source: "./media/characters/rebecca-pawlson/back.svg",
  39699. extra: 1702/1523,
  39700. bottom: 86/1788
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Normal",
  39707. height: math.unit(6 + 8/12, "feet")
  39708. },
  39709. {
  39710. name: "Mini Macro",
  39711. height: math.unit(10, "feet"),
  39712. default: true
  39713. },
  39714. {
  39715. name: "Macro",
  39716. height: math.unit(100, "feet")
  39717. },
  39718. {
  39719. name: "Mega Macro",
  39720. height: math.unit(2500, "feet")
  39721. },
  39722. {
  39723. name: "Giga Macro",
  39724. height: math.unit(50, "miles")
  39725. },
  39726. ]
  39727. ))
  39728. characterMakers.push(() => makeCharacter(
  39729. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39730. {
  39731. front: {
  39732. height: math.unit(7 + 6/12, "feet"),
  39733. weight: math.unit(600, "lb"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/moxie-nova/front.svg",
  39737. extra: 1734/1652,
  39738. bottom: 41/1775
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(7 + 6/12, "feet"),
  39746. default: true
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39752. {
  39753. goat: {
  39754. height: math.unit(4, "feet"),
  39755. weight: math.unit(180, "lb"),
  39756. name: "Goat",
  39757. image: {
  39758. source: "./media/characters/tiffany/goat.svg",
  39759. extra: 1845/1595,
  39760. bottom: 106/1951
  39761. }
  39762. },
  39763. front: {
  39764. height: math.unit(5, "feet"),
  39765. weight: math.unit(150, "lb"),
  39766. name: "Foxcoon",
  39767. image: {
  39768. source: "./media/characters/tiffany/foxcoon.svg",
  39769. extra: 1941/1845,
  39770. bottom: 58/1999
  39771. }
  39772. },
  39773. },
  39774. [
  39775. {
  39776. name: "Normal",
  39777. height: math.unit(5, "feet"),
  39778. default: true
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(8, "feet"),
  39787. weight: math.unit(300, "lb"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/raxinath/front.svg",
  39791. extra: 1407/1309,
  39792. bottom: 39/1446
  39793. }
  39794. },
  39795. back: {
  39796. height: math.unit(8, "feet"),
  39797. weight: math.unit(300, "lb"),
  39798. name: "Back",
  39799. image: {
  39800. source: "./media/characters/raxinath/back.svg",
  39801. extra: 1405/1315,
  39802. bottom: 9/1414
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Speck",
  39809. height: math.unit(0.5, "nm")
  39810. },
  39811. {
  39812. name: "Micro",
  39813. height: math.unit(3, "inches")
  39814. },
  39815. {
  39816. name: "Kobold",
  39817. height: math.unit(3, "feet")
  39818. },
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(8, "feet"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Giant",
  39826. height: math.unit(50, "feet")
  39827. },
  39828. {
  39829. name: "Macro",
  39830. height: math.unit(1000, "feet")
  39831. },
  39832. {
  39833. name: "Megamacro",
  39834. height: math.unit(1, "mile")
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(10, "feet"),
  39843. weight: math.unit(1442, "lb"),
  39844. name: "Front",
  39845. image: {
  39846. source: "./media/characters/mal-dragon/front.svg",
  39847. extra: 1515/1444,
  39848. bottom: 113/1628
  39849. }
  39850. },
  39851. back: {
  39852. height: math.unit(10, "feet"),
  39853. weight: math.unit(1442, "lb"),
  39854. name: "Back",
  39855. image: {
  39856. source: "./media/characters/mal-dragon/back.svg",
  39857. extra: 1527/1434,
  39858. bottom: 25/1552
  39859. }
  39860. },
  39861. },
  39862. [
  39863. {
  39864. name: "Mortal Interaction",
  39865. height: math.unit(10, "feet"),
  39866. default: true
  39867. },
  39868. {
  39869. name: "Large",
  39870. height: math.unit(30, "feet")
  39871. },
  39872. {
  39873. name: "Kaiju",
  39874. height: math.unit(300, "feet")
  39875. },
  39876. {
  39877. name: "Megamacro",
  39878. height: math.unit(10000, "feet")
  39879. },
  39880. {
  39881. name: "Continent Cracker",
  39882. height: math.unit(30000000, "feet")
  39883. },
  39884. {
  39885. name: "Sol-Swallowing",
  39886. height: math.unit(1e11, "feet")
  39887. },
  39888. {
  39889. name: "Light Universal",
  39890. height: math.unit(5, "universes")
  39891. },
  39892. {
  39893. name: "Universe Atoms",
  39894. height: math.unit(1.829e9, "universes")
  39895. },
  39896. {
  39897. name: "Light Multiversal",
  39898. height: math.unit(5, "multiverses")
  39899. },
  39900. {
  39901. name: "Multiverse Atoms",
  39902. height: math.unit(1.829e9, "multiverses")
  39903. },
  39904. {
  39905. name: "Fabric of Time",
  39906. height: math.unit(1e262, "multiverses")
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(9, "feet"),
  39915. weight: math.unit(1050, "lb"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/tabitha/front.svg",
  39919. extra: 2083/1994,
  39920. bottom: 68/2151
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Baseline",
  39927. height: math.unit(9, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Giant",
  39932. height: math.unit(90, "feet")
  39933. },
  39934. {
  39935. name: "Macro",
  39936. height: math.unit(900, "feet")
  39937. },
  39938. {
  39939. name: "Megamacro",
  39940. height: math.unit(9000, "feet")
  39941. },
  39942. {
  39943. name: "City-Crushing",
  39944. height: math.unit(27000, "feet")
  39945. },
  39946. {
  39947. name: "Mountain-Mashing",
  39948. height: math.unit(90000, "feet")
  39949. },
  39950. {
  39951. name: "Nation Nemesis",
  39952. height: math.unit(9e6, "feet")
  39953. },
  39954. {
  39955. name: "Continent Cracker",
  39956. height: math.unit(27e6, "feet")
  39957. },
  39958. {
  39959. name: "Earth-Eclipsing",
  39960. height: math.unit(2.7e8, "feet")
  39961. },
  39962. {
  39963. name: "Gas Giant Gulper",
  39964. height: math.unit(2.7e9, "feet")
  39965. },
  39966. {
  39967. name: "Sol-Swallowing",
  39968. height: math.unit(9e10, "feet")
  39969. },
  39970. {
  39971. name: "Galaxy Gulper",
  39972. height: math.unit(9, "galaxies")
  39973. },
  39974. {
  39975. name: "Cosmos Churner",
  39976. height: math.unit(9, "universes")
  39977. },
  39978. ]
  39979. ))
  39980. characterMakers.push(() => makeCharacter(
  39981. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39982. {
  39983. front: {
  39984. height: math.unit(160, "cm"),
  39985. weight: math.unit(55, "kg"),
  39986. name: "Front",
  39987. image: {
  39988. source: "./media/characters/tow/front.svg",
  39989. extra: 1751/1722,
  39990. bottom: 74/1825
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Norm",
  39997. height: math.unit(160, "cm")
  39998. },
  39999. {
  40000. name: "Casual",
  40001. height: math.unit(3200, "m"),
  40002. default: true
  40003. },
  40004. {
  40005. name: "Show-Off",
  40006. height: math.unit(160, "km")
  40007. },
  40008. ]
  40009. ))
  40010. characterMakers.push(() => makeCharacter(
  40011. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40012. {
  40013. front: {
  40014. height: math.unit(7 + 11/12, "feet"),
  40015. weight: math.unit(342.8, "lb"),
  40016. name: "Front",
  40017. image: {
  40018. source: "./media/characters/vivian-orca-dragon/front.svg",
  40019. extra: 1890/1865,
  40020. bottom: 28/1918
  40021. }
  40022. },
  40023. },
  40024. [
  40025. {
  40026. name: "Micro",
  40027. height: math.unit(5, "inches")
  40028. },
  40029. {
  40030. name: "Normal",
  40031. height: math.unit(7 + 11/12, "feet"),
  40032. default: true
  40033. },
  40034. {
  40035. name: "Macro",
  40036. height: math.unit(395 + 7/12, "feet")
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40042. {
  40043. side: {
  40044. height: math.unit(10, "feet"),
  40045. weight: math.unit(1442, "lb"),
  40046. name: "Side",
  40047. image: {
  40048. source: "./media/characters/lotherakon/side.svg",
  40049. extra: 1604/1497,
  40050. bottom: 89/1693
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Mortal Interaction",
  40057. height: math.unit(10, "feet")
  40058. },
  40059. {
  40060. name: "Large",
  40061. height: math.unit(30, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Giant",
  40066. height: math.unit(100, "feet")
  40067. },
  40068. {
  40069. name: "Kaiju",
  40070. height: math.unit(300, "feet")
  40071. },
  40072. {
  40073. name: "Macro",
  40074. height: math.unit(1000, "feet")
  40075. },
  40076. {
  40077. name: "Macro+",
  40078. height: math.unit(3000, "feet")
  40079. },
  40080. {
  40081. name: "Megamacro",
  40082. height: math.unit(10000, "feet")
  40083. },
  40084. {
  40085. name: "City-Crushing",
  40086. height: math.unit(30000, "feet")
  40087. },
  40088. {
  40089. name: "Continent Cracker",
  40090. height: math.unit(30e6, "feet")
  40091. },
  40092. {
  40093. name: "Earth Eclipsing",
  40094. height: math.unit(3e8, "feet")
  40095. },
  40096. {
  40097. name: "Gas Giant Gulper",
  40098. height: math.unit(3e9, "feet")
  40099. },
  40100. {
  40101. name: "Sol-Swallowing",
  40102. height: math.unit(1e11, "feet")
  40103. },
  40104. {
  40105. name: "System Swallower",
  40106. height: math.unit(3e14, "feet")
  40107. },
  40108. {
  40109. name: "Galaxy Gulper",
  40110. height: math.unit(10, "galaxies")
  40111. },
  40112. {
  40113. name: "Light Universal",
  40114. height: math.unit(5, "universes")
  40115. },
  40116. {
  40117. name: "Universe Palm",
  40118. height: math.unit(20, "universes")
  40119. },
  40120. {
  40121. name: "Light Multiversal",
  40122. height: math.unit(5, "multiverses")
  40123. },
  40124. {
  40125. name: "Multiverse Palm",
  40126. height: math.unit(20, "multiverses")
  40127. },
  40128. {
  40129. name: "Inferno Incarnate",
  40130. height: math.unit(1e7, "multiverses")
  40131. },
  40132. ]
  40133. ))
  40134. characterMakers.push(() => makeCharacter(
  40135. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40136. {
  40137. front: {
  40138. height: math.unit(8, "feet"),
  40139. weight: math.unit(1200, "lb"),
  40140. name: "Front",
  40141. image: {
  40142. source: "./media/characters/malithee/front.svg",
  40143. extra: 1675/1640,
  40144. bottom: 162/1837
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Mortal Interaction",
  40151. height: math.unit(8, "feet"),
  40152. default: true
  40153. },
  40154. {
  40155. name: "Large",
  40156. height: math.unit(24, "feet")
  40157. },
  40158. {
  40159. name: "Kaiju",
  40160. height: math.unit(240, "feet")
  40161. },
  40162. {
  40163. name: "Megamacro",
  40164. height: math.unit(8000, "feet")
  40165. },
  40166. {
  40167. name: "Continent Cracker",
  40168. height: math.unit(24e6, "feet")
  40169. },
  40170. {
  40171. name: "Earth-Eclipsing",
  40172. height: math.unit(2.4e8, "feet")
  40173. },
  40174. {
  40175. name: "Sol-Swallowing",
  40176. height: math.unit(8e10, "feet")
  40177. },
  40178. {
  40179. name: "Galaxy Gulper",
  40180. height: math.unit(8, "galaxies")
  40181. },
  40182. {
  40183. name: "Light Universal",
  40184. height: math.unit(4, "universes")
  40185. },
  40186. {
  40187. name: "Universe Atoms",
  40188. height: math.unit(1.829e9, "universes")
  40189. },
  40190. {
  40191. name: "Light Multiversal",
  40192. height: math.unit(4, "multiverses")
  40193. },
  40194. {
  40195. name: "Multiverse Atoms",
  40196. height: math.unit(1.829e9, "multiverses")
  40197. },
  40198. {
  40199. name: "Nigh-Omnipresence",
  40200. height: math.unit(8e261, "multiverses")
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(10, "feet"),
  40209. weight: math.unit(1500, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/miles-thestia/front.svg",
  40213. extra: 1812/1727,
  40214. bottom: 86/1898
  40215. }
  40216. },
  40217. back: {
  40218. height: math.unit(10, "feet"),
  40219. weight: math.unit(1500, "lb"),
  40220. name: "Back",
  40221. image: {
  40222. source: "./media/characters/miles-thestia/back.svg",
  40223. extra: 1799/1690,
  40224. bottom: 47/1846
  40225. }
  40226. },
  40227. frontNsfw: {
  40228. height: math.unit(10, "feet"),
  40229. weight: math.unit(1500, "lb"),
  40230. name: "Front (NSFW)",
  40231. image: {
  40232. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40233. extra: 1812/1727,
  40234. bottom: 86/1898
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Mini-Macro",
  40241. height: math.unit(10, "feet"),
  40242. default: true
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(25, "feet"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/titan-s-wulf/front.svg",
  40254. extra: 1560/1484,
  40255. bottom: 76/1636
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Smallest",
  40262. height: math.unit(25, "feet"),
  40263. default: true
  40264. },
  40265. {
  40266. name: "Normal",
  40267. height: math.unit(200, "feet")
  40268. },
  40269. {
  40270. name: "Macro",
  40271. height: math.unit(200000, "feet")
  40272. },
  40273. {
  40274. name: "Multiversal Original",
  40275. height: math.unit(10000, "multiverses")
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(8, "feet"),
  40284. weight: math.unit(553, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/tawendeh/front.svg",
  40288. extra: 2365/2268,
  40289. bottom: 83/2448
  40290. }
  40291. },
  40292. frontClothed: {
  40293. height: math.unit(8, "feet"),
  40294. weight: math.unit(553, "lb"),
  40295. name: "Front (Clothed)",
  40296. image: {
  40297. source: "./media/characters/tawendeh/front-clothed.svg",
  40298. extra: 2365/2268,
  40299. bottom: 83/2448
  40300. }
  40301. },
  40302. back: {
  40303. height: math.unit(8, "feet"),
  40304. weight: math.unit(553, "lb"),
  40305. name: "Back",
  40306. image: {
  40307. source: "./media/characters/tawendeh/back.svg",
  40308. extra: 2397/2294,
  40309. bottom: 42/2439
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Mortal Interaction",
  40316. height: math.unit(8, "feet"),
  40317. default: true
  40318. },
  40319. {
  40320. name: "Giant",
  40321. height: math.unit(80, "feet")
  40322. },
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(800, "feet")
  40326. },
  40327. {
  40328. name: "Megamacro",
  40329. height: math.unit(8000, "feet")
  40330. },
  40331. {
  40332. name: "City-Crushing",
  40333. height: math.unit(24000, "feet")
  40334. },
  40335. {
  40336. name: "Mountain-Mashing",
  40337. height: math.unit(80000, "feet")
  40338. },
  40339. {
  40340. name: "Nation Nemesis",
  40341. height: math.unit(8e6, "feet")
  40342. },
  40343. {
  40344. name: "Continent Cracker",
  40345. height: math.unit(24e6, "feet")
  40346. },
  40347. {
  40348. name: "Earth-Eclipsing",
  40349. height: math.unit(2.4e8, "feet")
  40350. },
  40351. {
  40352. name: "Gas Giant Gulper",
  40353. height: math.unit(2.4e9, "feet")
  40354. },
  40355. {
  40356. name: "Sol-Swallowing",
  40357. height: math.unit(8e10, "feet")
  40358. },
  40359. {
  40360. name: "Galaxy Gulper",
  40361. height: math.unit(8, "galaxies")
  40362. },
  40363. {
  40364. name: "Cosmos Churner",
  40365. height: math.unit(8, "universes")
  40366. },
  40367. {
  40368. name: "Omnipotent Otter",
  40369. height: math.unit(80, "universes")
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40375. {
  40376. front: {
  40377. height: math.unit(2.6, "meters"),
  40378. weight: math.unit(900, "kg"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/neesha/front.svg",
  40382. extra: 1803/1653,
  40383. bottom: 128/1931
  40384. }
  40385. },
  40386. },
  40387. [
  40388. {
  40389. name: "Normal",
  40390. height: math.unit(2.6, "meters"),
  40391. default: true
  40392. },
  40393. {
  40394. name: "Macro",
  40395. height: math.unit(50, "meters")
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40401. {
  40402. front: {
  40403. height: math.unit(5, "feet"),
  40404. weight: math.unit(185, "lb"),
  40405. name: "Front",
  40406. image: {
  40407. source: "./media/characters/kyera/front.svg",
  40408. extra: 1875/1790,
  40409. bottom: 96/1971
  40410. }
  40411. },
  40412. },
  40413. [
  40414. {
  40415. name: "Normal",
  40416. height: math.unit(5, "feet"),
  40417. default: true
  40418. },
  40419. ]
  40420. ))
  40421. characterMakers.push(() => makeCharacter(
  40422. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40423. {
  40424. front: {
  40425. height: math.unit(7 + 6/12, "feet"),
  40426. weight: math.unit(540, "lb"),
  40427. name: "Front",
  40428. image: {
  40429. source: "./media/characters/yuko/front.svg",
  40430. extra: 1282/1222,
  40431. bottom: 101/1383
  40432. }
  40433. },
  40434. frontClothed: {
  40435. height: math.unit(7 + 6/12, "feet"),
  40436. weight: math.unit(540, "lb"),
  40437. name: "Front (Clothed)",
  40438. image: {
  40439. source: "./media/characters/yuko/front-clothed.svg",
  40440. extra: 1282/1222,
  40441. bottom: 101/1383
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Normal",
  40448. height: math.unit(7 + 6/12, "feet"),
  40449. default: true
  40450. },
  40451. {
  40452. name: "Macro",
  40453. height: math.unit(26 + 9/12, "feet")
  40454. },
  40455. {
  40456. name: "Megamacro",
  40457. height: math.unit(300, "feet")
  40458. },
  40459. {
  40460. name: "Gigamacro",
  40461. height: math.unit(5000, "feet")
  40462. },
  40463. {
  40464. name: "Planetary",
  40465. height: math.unit(10000, "miles")
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40471. {
  40472. front: {
  40473. height: math.unit(8 + 2/12, "feet"),
  40474. weight: math.unit(600, "lb"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/deam-nitrel/front.svg",
  40478. extra: 1308/1234,
  40479. bottom: 125/1433
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Normal",
  40486. height: math.unit(8 + 2/12, "feet"),
  40487. default: true
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40493. {
  40494. front: {
  40495. height: math.unit(6.1, "feet"),
  40496. weight: math.unit(180, "lb"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/skyress/front.svg",
  40500. extra: 1045/915,
  40501. bottom: 28/1073
  40502. }
  40503. },
  40504. maw: {
  40505. height: math.unit(1, "feet"),
  40506. name: "Maw",
  40507. image: {
  40508. source: "./media/characters/skyress/maw.svg"
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(6.1, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Macro",
  40520. height: math.unit(200, "feet")
  40521. },
  40522. ]
  40523. ))
  40524. characterMakers.push(() => makeCharacter(
  40525. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40526. {
  40527. front: {
  40528. height: math.unit(4 + 2/12, "feet"),
  40529. weight: math.unit(40, "kg"),
  40530. name: "Front",
  40531. image: {
  40532. source: "./media/characters/amethyst-jones/front.svg",
  40533. extra: 1220/1150,
  40534. bottom: 101/1321
  40535. }
  40536. },
  40537. },
  40538. [
  40539. {
  40540. name: "Normal",
  40541. height: math.unit(4 + 2/12, "feet"),
  40542. default: true
  40543. },
  40544. ]
  40545. ))
  40546. characterMakers.push(() => makeCharacter(
  40547. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40548. {
  40549. front: {
  40550. height: math.unit(1.7, "m"),
  40551. weight: math.unit(135, "lb"),
  40552. name: "Front",
  40553. image: {
  40554. source: "./media/characters/jade/front.svg",
  40555. extra: 1818/1767,
  40556. bottom: 32/1850
  40557. }
  40558. },
  40559. back: {
  40560. height: math.unit(1.7, "m"),
  40561. weight: math.unit(135, "lb"),
  40562. name: "Back",
  40563. image: {
  40564. source: "./media/characters/jade/back.svg",
  40565. extra: 1869/1809,
  40566. bottom: 35/1904
  40567. }
  40568. },
  40569. hand: {
  40570. height: math.unit(0.24, "m"),
  40571. name: "Hand",
  40572. image: {
  40573. source: "./media/characters/jade/hand.svg"
  40574. }
  40575. },
  40576. foot: {
  40577. height: math.unit(0.263, "m"),
  40578. name: "Foot",
  40579. image: {
  40580. source: "./media/characters/jade/foot.svg"
  40581. }
  40582. },
  40583. dick: {
  40584. height: math.unit(0.47, "m"),
  40585. name: "Dick",
  40586. image: {
  40587. source: "./media/characters/jade/dick.svg"
  40588. }
  40589. },
  40590. },
  40591. [
  40592. {
  40593. name: "Micro",
  40594. height: math.unit(22, "cm")
  40595. },
  40596. {
  40597. name: "Normal",
  40598. height: math.unit(1.7, "m"),
  40599. default: true
  40600. },
  40601. {
  40602. name: "Macro",
  40603. height: math.unit(152, "m")
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(100, "miles"),
  40612. weight: math.unit(20000, "tons"),
  40613. name: "Front",
  40614. image: {
  40615. source: "./media/characters/cookie/front.svg",
  40616. extra: 1125/1070,
  40617. bottom: 30/1155
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Big",
  40624. height: math.unit(50, "feet")
  40625. },
  40626. {
  40627. name: "Macro",
  40628. height: math.unit(100, "miles"),
  40629. default: true
  40630. },
  40631. {
  40632. name: "Megamacro",
  40633. height: math.unit(90000, "miles")
  40634. },
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40639. {
  40640. front: {
  40641. height: math.unit(6, "feet"),
  40642. weight: math.unit(145, "lb"),
  40643. name: "Front",
  40644. image: {
  40645. source: "./media/characters/farzian/front.svg",
  40646. extra: 1902/1693,
  40647. bottom: 108/2010
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(500, "feet"),
  40655. default: true
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40661. {
  40662. front: {
  40663. height: math.unit(3 + 6/12, "feet"),
  40664. weight: math.unit(50, "lb"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/kimberly-tilson/front.svg",
  40668. extra: 1400/1322,
  40669. bottom: 36/1436
  40670. }
  40671. },
  40672. back: {
  40673. height: math.unit(3 + 6/12, "feet"),
  40674. weight: math.unit(50, "lb"),
  40675. name: "Back",
  40676. image: {
  40677. source: "./media/characters/kimberly-tilson/back.svg",
  40678. extra: 1370/1307,
  40679. bottom: 20/1390
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Normal",
  40686. height: math.unit(3 + 6/12, "feet"),
  40687. default: true
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(1148, "feet"),
  40696. weight: math.unit(34057, "lb"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/harthos/front.svg",
  40700. extra: 1391/1339,
  40701. bottom: 13/1404
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Macro",
  40708. height: math.unit(1148, "feet"),
  40709. default: true
  40710. },
  40711. ]
  40712. ))
  40713. characterMakers.push(() => makeCharacter(
  40714. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40715. {
  40716. front: {
  40717. height: math.unit(15, "feet"),
  40718. name: "Front",
  40719. image: {
  40720. source: "./media/characters/hypatia/front.svg",
  40721. extra: 1653/1591,
  40722. bottom: 79/1732
  40723. }
  40724. },
  40725. },
  40726. [
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(15, "feet")
  40730. },
  40731. {
  40732. name: "Small",
  40733. height: math.unit(300, "feet")
  40734. },
  40735. {
  40736. name: "Macro",
  40737. height: math.unit(2500, "feet"),
  40738. default: true
  40739. },
  40740. {
  40741. name: "Mega Macro",
  40742. height: math.unit(1500, "miles")
  40743. },
  40744. {
  40745. name: "Giga Macro",
  40746. height: math.unit(1.5e6, "miles")
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(6, "feet"),
  40755. weight: math.unit(200, "lb"),
  40756. name: "Front",
  40757. image: {
  40758. source: "./media/characters/wulver/front.svg",
  40759. extra: 1724/1632,
  40760. bottom: 130/1854
  40761. }
  40762. },
  40763. frontNsfw: {
  40764. height: math.unit(6, "feet"),
  40765. weight: math.unit(200, "lb"),
  40766. name: "Front (NSFW)",
  40767. image: {
  40768. source: "./media/characters/wulver/front-nsfw.svg",
  40769. extra: 1724/1632,
  40770. bottom: 130/1854
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Human-Sized",
  40777. height: math.unit(6, "feet")
  40778. },
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(4, "meters"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Large",
  40786. height: math.unit(6, "m")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(7, "feet"),
  40795. name: "Front",
  40796. image: {
  40797. source: "./media/characters/maru/front.svg",
  40798. extra: 1595/1570,
  40799. bottom: 0/1595
  40800. }
  40801. },
  40802. },
  40803. [
  40804. {
  40805. name: "Normal",
  40806. height: math.unit(7, "feet"),
  40807. default: true
  40808. },
  40809. {
  40810. name: "Macro",
  40811. height: math.unit(700, "feet")
  40812. },
  40813. {
  40814. name: "Mega Macro",
  40815. height: math.unit(25, "miles")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(6, "feet"),
  40824. weight: math.unit(170, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/xenon/front.svg",
  40828. extra: 1376/1305,
  40829. bottom: 56/1432
  40830. }
  40831. },
  40832. back: {
  40833. height: math.unit(6, "feet"),
  40834. weight: math.unit(170, "lb"),
  40835. name: "Back",
  40836. image: {
  40837. source: "./media/characters/xenon/back.svg",
  40838. extra: 1328/1259,
  40839. bottom: 95/1423
  40840. }
  40841. },
  40842. maw: {
  40843. height: math.unit(0.52, "feet"),
  40844. name: "Maw",
  40845. image: {
  40846. source: "./media/characters/xenon/maw.svg"
  40847. }
  40848. },
  40849. hand: {
  40850. height: math.unit(0.82, "feet"),
  40851. name: "Hand",
  40852. image: {
  40853. source: "./media/characters/xenon/hand.svg"
  40854. }
  40855. },
  40856. foot: {
  40857. height: math.unit(1.13, "feet"),
  40858. name: "Foot",
  40859. image: {
  40860. source: "./media/characters/xenon/foot.svg"
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Micro",
  40867. height: math.unit(0.8, "inches")
  40868. },
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(6, "feet")
  40872. },
  40873. {
  40874. name: "Macro",
  40875. height: math.unit(50, "feet"),
  40876. default: true
  40877. },
  40878. {
  40879. name: "Macro+",
  40880. height: math.unit(250, "feet")
  40881. },
  40882. {
  40883. name: "Megamacro",
  40884. height: math.unit(1500, "feet")
  40885. },
  40886. ]
  40887. ))
  40888. characterMakers.push(() => makeCharacter(
  40889. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40890. {
  40891. front: {
  40892. height: math.unit(7 + 5/12, "feet"),
  40893. name: "Front",
  40894. image: {
  40895. source: "./media/characters/zane/front.svg",
  40896. extra: 1260/1203,
  40897. bottom: 94/1354
  40898. }
  40899. },
  40900. back: {
  40901. height: math.unit(5.05, "feet"),
  40902. name: "Back",
  40903. image: {
  40904. source: "./media/characters/zane/back.svg",
  40905. extra: 893/829,
  40906. bottom: 30/923
  40907. }
  40908. },
  40909. werewolf: {
  40910. height: math.unit(11, "feet"),
  40911. name: "Werewolf",
  40912. image: {
  40913. source: "./media/characters/zane/werewolf.svg",
  40914. extra: 1383/1323,
  40915. bottom: 89/1472
  40916. }
  40917. },
  40918. foot: {
  40919. height: math.unit(1.46, "feet"),
  40920. name: "Foot",
  40921. image: {
  40922. source: "./media/characters/zane/foot.svg"
  40923. }
  40924. },
  40925. footFront: {
  40926. height: math.unit(0.784, "feet"),
  40927. name: "Foot (Front)",
  40928. image: {
  40929. source: "./media/characters/zane/foot-front.svg"
  40930. }
  40931. },
  40932. dick: {
  40933. height: math.unit(1.95, "feet"),
  40934. name: "Dick",
  40935. image: {
  40936. source: "./media/characters/zane/dick.svg"
  40937. }
  40938. },
  40939. dickWerewolf: {
  40940. height: math.unit(3.77, "feet"),
  40941. name: "Dick (Werewolf)",
  40942. image: {
  40943. source: "./media/characters/zane/dick.svg"
  40944. }
  40945. },
  40946. },
  40947. [
  40948. {
  40949. name: "Normal",
  40950. height: math.unit(7 + 5/12, "feet"),
  40951. default: true
  40952. },
  40953. ]
  40954. ))
  40955. characterMakers.push(() => makeCharacter(
  40956. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40957. {
  40958. front: {
  40959. height: math.unit(6 + 2/12, "feet"),
  40960. weight: math.unit(284, "lb"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/benni-desparque/front.svg",
  40964. extra: 1353/1126,
  40965. bottom: 69/1422
  40966. }
  40967. },
  40968. },
  40969. [
  40970. {
  40971. name: "Civilian",
  40972. height: math.unit(6 + 2/12, "feet")
  40973. },
  40974. {
  40975. name: "Normal",
  40976. height: math.unit(98, "feet"),
  40977. default: true
  40978. },
  40979. {
  40980. name: "Kaiju Fighter",
  40981. height: math.unit(268, "feet")
  40982. },
  40983. ]
  40984. ))
  40985. characterMakers.push(() => makeCharacter(
  40986. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40987. {
  40988. front: {
  40989. height: math.unit(5, "feet"),
  40990. weight: math.unit(105, "lb"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/maxine/front.svg",
  40994. extra: 1386/1250,
  40995. bottom: 71/1457
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Normal",
  41002. height: math.unit(5, "feet"),
  41003. default: true
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(11 + 7/12, "feet"),
  41012. weight: math.unit(9576, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/scaly/front.svg",
  41016. extra: 888/867,
  41017. bottom: 36/924
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(11 + 7/12, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41031. {
  41032. front: {
  41033. height: math.unit(6 + 3/12, "feet"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/saelria/front.svg",
  41037. extra: 1243/1138,
  41038. bottom: 46/1289
  41039. }
  41040. },
  41041. },
  41042. [
  41043. {
  41044. name: "Micro",
  41045. height: math.unit(6, "inches"),
  41046. },
  41047. {
  41048. name: "Normal",
  41049. height: math.unit(6 + 3/12, "feet"),
  41050. default: true
  41051. },
  41052. {
  41053. name: "Macro",
  41054. height: math.unit(25, "feet")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41060. {
  41061. front: {
  41062. height: math.unit(80, "meters"),
  41063. weight: math.unit(7000, "tonnes"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/tef/front.svg",
  41067. extra: 2036/1991,
  41068. bottom: 54/2090
  41069. }
  41070. },
  41071. back: {
  41072. height: math.unit(80, "meters"),
  41073. weight: math.unit(7000, "tonnes"),
  41074. name: "Back",
  41075. image: {
  41076. source: "./media/characters/tef/back.svg",
  41077. extra: 2036/1991,
  41078. bottom: 54/2090
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Macro",
  41085. height: math.unit(80, "meters"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41092. {
  41093. front: {
  41094. height: math.unit(13, "feet"),
  41095. weight: math.unit(6, "tons"),
  41096. name: "Front",
  41097. image: {
  41098. source: "./media/characters/rover/front.svg",
  41099. extra: 1233/1156,
  41100. bottom: 50/1283
  41101. }
  41102. },
  41103. back: {
  41104. height: math.unit(13, "feet"),
  41105. weight: math.unit(6, "tons"),
  41106. name: "Back",
  41107. image: {
  41108. source: "./media/characters/rover/back.svg",
  41109. extra: 1327/1258,
  41110. bottom: 39/1366
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(13, "feet"),
  41118. default: true
  41119. },
  41120. {
  41121. name: "Macro",
  41122. height: math.unit(1300, "feet")
  41123. },
  41124. {
  41125. name: "Megamacro",
  41126. height: math.unit(1300, "miles")
  41127. },
  41128. {
  41129. name: "Gigamacro",
  41130. height: math.unit(1300000, "miles")
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41136. {
  41137. front: {
  41138. height: math.unit(6, "feet"),
  41139. weight: math.unit(150, "lb"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/ariz/front.svg",
  41143. extra: 1401/1346,
  41144. bottom: 5/1406
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(10, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(6, "feet"),
  41161. weight: math.unit(140, "lb"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/sigrun/front.svg",
  41165. extra: 1418/1359,
  41166. bottom: 27/1445
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Macro",
  41173. height: math.unit(35, "feet"),
  41174. default: true
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(6, "feet"),
  41183. weight: math.unit(150, "lb"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/numin/front.svg",
  41187. extra: 1433/1388,
  41188. bottom: 12/1445
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(21.5, "km"),
  41196. default: true
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41202. {
  41203. front: {
  41204. height: math.unit(6, "feet"),
  41205. weight: math.unit(463, "lb"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/melwa/front.svg",
  41209. extra: 1307/1248,
  41210. bottom: 93/1400
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(50, "meters"),
  41218. default: true
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(325, "feet"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/zorkaiju/front.svg",
  41230. extra: 1955/1814,
  41231. bottom: 40/1995
  41232. }
  41233. },
  41234. frontExtended: {
  41235. height: math.unit(325, "feet"),
  41236. name: "Front (Extended)",
  41237. image: {
  41238. source: "./media/characters/zorkaiju/front-extended.svg",
  41239. extra: 1955/1814,
  41240. bottom: 40/1995
  41241. }
  41242. },
  41243. side: {
  41244. height: math.unit(325, "feet"),
  41245. name: "Side",
  41246. image: {
  41247. source: "./media/characters/zorkaiju/side.svg",
  41248. extra: 1495/1396,
  41249. bottom: 17/1512
  41250. }
  41251. },
  41252. sideExtended: {
  41253. height: math.unit(325, "feet"),
  41254. name: "Side (Extended)",
  41255. image: {
  41256. source: "./media/characters/zorkaiju/side-extended.svg",
  41257. extra: 1495/1396,
  41258. bottom: 17/1512
  41259. }
  41260. },
  41261. back: {
  41262. height: math.unit(325, "feet"),
  41263. name: "Back",
  41264. image: {
  41265. source: "./media/characters/zorkaiju/back.svg",
  41266. extra: 1959/1821,
  41267. bottom: 31/1990
  41268. }
  41269. },
  41270. backExtended: {
  41271. height: math.unit(325, "feet"),
  41272. name: "Back (Extended)",
  41273. image: {
  41274. source: "./media/characters/zorkaiju/back-extended.svg",
  41275. extra: 1959/1821,
  41276. bottom: 31/1990
  41277. }
  41278. },
  41279. hand: {
  41280. height: math.unit(58.4, "feet"),
  41281. name: "Hand",
  41282. image: {
  41283. source: "./media/characters/zorkaiju/hand.svg"
  41284. }
  41285. },
  41286. handExtended: {
  41287. height: math.unit(61.4, "feet"),
  41288. name: "Hand (Extended)",
  41289. image: {
  41290. source: "./media/characters/zorkaiju/hand-extended.svg"
  41291. }
  41292. },
  41293. foot: {
  41294. height: math.unit(95, "feet"),
  41295. name: "Foot",
  41296. image: {
  41297. source: "./media/characters/zorkaiju/foot.svg"
  41298. }
  41299. },
  41300. leftArm: {
  41301. height: math.unit(59, "feet"),
  41302. name: "Left Arm",
  41303. image: {
  41304. source: "./media/characters/zorkaiju/left-arm.svg"
  41305. }
  41306. },
  41307. rightArm: {
  41308. height: math.unit(59, "feet"),
  41309. name: "Right Arm",
  41310. image: {
  41311. source: "./media/characters/zorkaiju/right-arm.svg"
  41312. }
  41313. },
  41314. tail: {
  41315. height: math.unit(104, "feet"),
  41316. name: "Tail",
  41317. image: {
  41318. source: "./media/characters/zorkaiju/tail.svg"
  41319. }
  41320. },
  41321. tailExtended: {
  41322. height: math.unit(104, "feet"),
  41323. name: "Tail (Extended)",
  41324. image: {
  41325. source: "./media/characters/zorkaiju/tail-extended.svg"
  41326. }
  41327. },
  41328. tailBottom: {
  41329. height: math.unit(104, "feet"),
  41330. name: "Tail Bottom",
  41331. image: {
  41332. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41333. }
  41334. },
  41335. crystal: {
  41336. height: math.unit(27.54, "feet"),
  41337. name: "Crystal",
  41338. image: {
  41339. source: "./media/characters/zorkaiju/crystal.svg"
  41340. }
  41341. },
  41342. },
  41343. [
  41344. {
  41345. name: "Kaiju",
  41346. height: math.unit(325, "feet"),
  41347. default: true
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(6 + 1/12, "feet"),
  41356. weight: math.unit(115, "lb"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/bailey-belfry/front.svg",
  41360. extra: 1240/1121,
  41361. bottom: 101/1341
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "Normal",
  41368. height: math.unit(6 + 1/12, "feet"),
  41369. default: true
  41370. },
  41371. ]
  41372. ))
  41373. characterMakers.push(() => makeCharacter(
  41374. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41375. {
  41376. side: {
  41377. height: math.unit(4, "meters"),
  41378. weight: math.unit(250, "kg"),
  41379. name: "Side",
  41380. image: {
  41381. source: "./media/characters/blacky/side.svg",
  41382. extra: 1027/919,
  41383. bottom: 43/1070
  41384. }
  41385. },
  41386. maw: {
  41387. height: math.unit(1, "meters"),
  41388. name: "Maw",
  41389. image: {
  41390. source: "./media/characters/blacky/maw.svg"
  41391. }
  41392. },
  41393. paw: {
  41394. height: math.unit(1, "meters"),
  41395. name: "Paw",
  41396. image: {
  41397. source: "./media/characters/blacky/paw.svg"
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "Normal",
  41404. height: math.unit(4, "meters"),
  41405. default: true
  41406. },
  41407. ]
  41408. ))
  41409. characterMakers.push(() => makeCharacter(
  41410. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41411. {
  41412. front: {
  41413. height: math.unit(170, "cm"),
  41414. weight: math.unit(66, "kg"),
  41415. name: "Front",
  41416. image: {
  41417. source: "./media/characters/thux-ei/front.svg",
  41418. extra: 1109/1011,
  41419. bottom: 8/1117
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(170, "cm"),
  41427. default: true
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(5, "feet"),
  41436. weight: math.unit(120, "lb"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/roxanne-voltaire/front.svg",
  41440. extra: 1901/1779,
  41441. bottom: 53/1954
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(5, "feet"),
  41449. default: true
  41450. },
  41451. {
  41452. name: "Giant",
  41453. height: math.unit(50, "feet")
  41454. },
  41455. {
  41456. name: "Titan",
  41457. height: math.unit(500, "feet")
  41458. },
  41459. {
  41460. name: "Macro",
  41461. height: math.unit(5000, "feet")
  41462. },
  41463. {
  41464. name: "Megamacro",
  41465. height: math.unit(50000, "feet")
  41466. },
  41467. {
  41468. name: "Gigamacro",
  41469. height: math.unit(500000, "feet")
  41470. },
  41471. {
  41472. name: "Teramacro",
  41473. height: math.unit(5e6, "feet")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(6 + 2/12, "feet"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/squeaks/front.svg",
  41485. extra: 1823/1768,
  41486. bottom: 138/1961
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Micro",
  41493. height: math.unit(0.5, "inches")
  41494. },
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(6 + 2/12, "feet"),
  41498. default: true
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(600, "feet")
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41508. {
  41509. front: {
  41510. height: math.unit(1.72, "meters"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/archinger/front.svg",
  41514. extra: 1861/1675,
  41515. bottom: 125/1986
  41516. }
  41517. },
  41518. back: {
  41519. height: math.unit(1.72, "meters"),
  41520. name: "Back",
  41521. image: {
  41522. source: "./media/characters/archinger/back.svg",
  41523. extra: 1844/1701,
  41524. bottom: 104/1948
  41525. }
  41526. },
  41527. cock: {
  41528. height: math.unit(0.59, "feet"),
  41529. name: "Cock",
  41530. image: {
  41531. source: "./media/characters/archinger/cock.svg"
  41532. }
  41533. },
  41534. },
  41535. [
  41536. {
  41537. name: "Normal",
  41538. height: math.unit(1.72, "meters"),
  41539. default: true
  41540. },
  41541. {
  41542. name: "Macro",
  41543. height: math.unit(84, "meters")
  41544. },
  41545. {
  41546. name: "Macro+",
  41547. height: math.unit(112, "meters")
  41548. },
  41549. {
  41550. name: "Macro++",
  41551. height: math.unit(960, "meters")
  41552. },
  41553. {
  41554. name: "Macro+++",
  41555. height: math.unit(4, "km")
  41556. },
  41557. {
  41558. name: "Macro++++",
  41559. height: math.unit(48, "km")
  41560. },
  41561. {
  41562. name: "Macro+++++",
  41563. height: math.unit(4500, "km")
  41564. },
  41565. ]
  41566. ))
  41567. characterMakers.push(() => makeCharacter(
  41568. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41569. {
  41570. front: {
  41571. height: math.unit(5 + 5/12, "feet"),
  41572. name: "Front",
  41573. image: {
  41574. source: "./media/characters/alsnapz/front.svg",
  41575. extra: 1157/1065,
  41576. bottom: 42/1199
  41577. }
  41578. },
  41579. },
  41580. [
  41581. {
  41582. name: "Normal",
  41583. height: math.unit(5 + 5/12, "feet"),
  41584. default: true
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41590. {
  41591. side: {
  41592. height: math.unit(3.2, "earths"),
  41593. name: "Side",
  41594. image: {
  41595. source: "./media/characters/mag/side.svg",
  41596. extra: 1331/1008,
  41597. bottom: 52/1383
  41598. }
  41599. },
  41600. wing: {
  41601. height: math.unit(1.94, "earths"),
  41602. name: "Wing",
  41603. image: {
  41604. source: "./media/characters/mag/wing.svg"
  41605. }
  41606. },
  41607. dick: {
  41608. height: math.unit(1.8, "earths"),
  41609. name: "Dick",
  41610. image: {
  41611. source: "./media/characters/mag/dick.svg"
  41612. }
  41613. },
  41614. ass: {
  41615. height: math.unit(1.33, "earths"),
  41616. name: "Ass",
  41617. image: {
  41618. source: "./media/characters/mag/ass.svg"
  41619. }
  41620. },
  41621. head: {
  41622. height: math.unit(1.1, "earths"),
  41623. name: "Head",
  41624. image: {
  41625. source: "./media/characters/mag/head.svg"
  41626. }
  41627. },
  41628. maw: {
  41629. height: math.unit(1.62, "earths"),
  41630. name: "Maw",
  41631. image: {
  41632. source: "./media/characters/mag/maw.svg"
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Small",
  41639. height: math.unit(162, "feet")
  41640. },
  41641. {
  41642. name: "Normal",
  41643. height: math.unit(3.2, "earths"),
  41644. default: true
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41650. {
  41651. front: {
  41652. height: math.unit(512, "feet"),
  41653. weight: math.unit(63509, "tonnes"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/vorrel-harroc/front.svg",
  41657. extra: 1075/1063,
  41658. bottom: 62/1137
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(10, "feet")
  41666. },
  41667. {
  41668. name: "Macro",
  41669. height: math.unit(512, "feet"),
  41670. default: true
  41671. },
  41672. {
  41673. name: "Megamacro",
  41674. height: math.unit(256, "miles")
  41675. },
  41676. {
  41677. name: "Gigamacro",
  41678. height: math.unit(4096, "miles")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41684. {
  41685. side: {
  41686. height: math.unit(50, "feet"),
  41687. name: "Side",
  41688. image: {
  41689. source: "./media/characters/froimar/side.svg",
  41690. extra: 855/638,
  41691. bottom: 99/954
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(50, "feet"),
  41699. default: true
  41700. },
  41701. ]
  41702. ))
  41703. characterMakers.push(() => makeCharacter(
  41704. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41705. {
  41706. front: {
  41707. height: math.unit(210, "miles"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/timothy/front.svg",
  41711. extra: 1007/943,
  41712. bottom: 62/1069
  41713. }
  41714. },
  41715. frontSkirt: {
  41716. height: math.unit(210, "miles"),
  41717. name: "Front (Skirt)",
  41718. image: {
  41719. source: "./media/characters/timothy/front-skirt.svg",
  41720. extra: 1007/943,
  41721. bottom: 62/1069
  41722. }
  41723. },
  41724. frontCoat: {
  41725. height: math.unit(210, "miles"),
  41726. name: "Front (Coat)",
  41727. image: {
  41728. source: "./media/characters/timothy/front-coat.svg",
  41729. extra: 1007/943,
  41730. bottom: 62/1069
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Macro",
  41737. height: math.unit(210, "miles"),
  41738. default: true
  41739. },
  41740. {
  41741. name: "Megamacro",
  41742. height: math.unit(210000, "miles")
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41748. {
  41749. front: {
  41750. height: math.unit(188, "feet"),
  41751. name: "Front",
  41752. image: {
  41753. source: "./media/characters/pyotr/front.svg",
  41754. extra: 1912/1826,
  41755. bottom: 18/1930
  41756. }
  41757. },
  41758. },
  41759. [
  41760. {
  41761. name: "Macro",
  41762. height: math.unit(188, "feet"),
  41763. default: true
  41764. },
  41765. {
  41766. name: "Megamacro",
  41767. height: math.unit(8, "miles")
  41768. },
  41769. ]
  41770. ))
  41771. characterMakers.push(() => makeCharacter(
  41772. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41773. {
  41774. side: {
  41775. height: math.unit(10, "feet"),
  41776. weight: math.unit(4500, "lb"),
  41777. name: "Side",
  41778. image: {
  41779. source: "./media/characters/ackart/side.svg",
  41780. extra: 1776/1668,
  41781. bottom: 116/1892
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Normal",
  41788. height: math.unit(10, "feet"),
  41789. default: true
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41795. {
  41796. side: {
  41797. height: math.unit(21, "feet"),
  41798. name: "Side",
  41799. image: {
  41800. source: "./media/characters/nolow/side.svg",
  41801. extra: 1484/1434,
  41802. bottom: 85/1569
  41803. }
  41804. },
  41805. sideErect: {
  41806. height: math.unit(21, "feet"),
  41807. name: "Side-erect",
  41808. image: {
  41809. source: "./media/characters/nolow/side-erect.svg",
  41810. extra: 1484/1434,
  41811. bottom: 85/1569
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Regular",
  41818. height: math.unit(12, "feet")
  41819. },
  41820. {
  41821. name: "Big Chee",
  41822. height: math.unit(21, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(7, "feet"),
  41832. weight: math.unit(250, "lb"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/nines/front.svg",
  41836. extra: 1741/1607,
  41837. bottom: 41/1782
  41838. }
  41839. },
  41840. side: {
  41841. height: math.unit(7, "feet"),
  41842. weight: math.unit(250, "lb"),
  41843. name: "Side",
  41844. image: {
  41845. source: "./media/characters/nines/side.svg",
  41846. extra: 1854/1735,
  41847. bottom: 93/1947
  41848. }
  41849. },
  41850. back: {
  41851. height: math.unit(7, "feet"),
  41852. weight: math.unit(250, "lb"),
  41853. name: "Back",
  41854. image: {
  41855. source: "./media/characters/nines/back.svg",
  41856. extra: 1748/1615,
  41857. bottom: 20/1768
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Megamacro",
  41864. height: math.unit(99, "km"),
  41865. default: true
  41866. },
  41867. ]
  41868. ))
  41869. characterMakers.push(() => makeCharacter(
  41870. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41871. {
  41872. front: {
  41873. height: math.unit(5 + 10/12, "feet"),
  41874. weight: math.unit(210, "lb"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/zenith/front.svg",
  41878. extra: 1531/1452,
  41879. bottom: 198/1729
  41880. }
  41881. },
  41882. back: {
  41883. height: math.unit(5 + 10/12, "feet"),
  41884. weight: math.unit(210, "lb"),
  41885. name: "Back",
  41886. image: {
  41887. source: "./media/characters/zenith/back.svg",
  41888. extra: 1571/1487,
  41889. bottom: 75/1646
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Normal",
  41896. height: math.unit(5 + 10/12, "feet"),
  41897. default: true
  41898. }
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(4, "feet"),
  41906. weight: math.unit(60, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/jasper/front.svg",
  41910. extra: 1450/1379,
  41911. bottom: 19/1469
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(4, "feet"),
  41919. default: true
  41920. },
  41921. ]
  41922. ))
  41923. characterMakers.push(() => makeCharacter(
  41924. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41925. {
  41926. front: {
  41927. height: math.unit(6 + 5/12, "feet"),
  41928. weight: math.unit(290, "lb"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/tiberius-thyben/front.svg",
  41932. extra: 757/739,
  41933. bottom: 39/796
  41934. }
  41935. },
  41936. },
  41937. [
  41938. {
  41939. name: "Micro",
  41940. height: math.unit(1.5, "inches")
  41941. },
  41942. {
  41943. name: "Normal",
  41944. height: math.unit(6 + 5/12, "feet"),
  41945. default: true
  41946. },
  41947. {
  41948. name: "Macro",
  41949. height: math.unit(300, "feet")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(5 + 6/12, "feet"),
  41958. weight: math.unit(60, "kg"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/sabre/front.svg",
  41962. extra: 738/671,
  41963. bottom: 27/765
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Teeny",
  41970. height: math.unit(2, "inches")
  41971. },
  41972. {
  41973. name: "Smol",
  41974. height: math.unit(8, "inches")
  41975. },
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(5 + 6/12, "feet"),
  41979. default: true
  41980. },
  41981. {
  41982. name: "Mini-Macro",
  41983. height: math.unit(15, "feet")
  41984. },
  41985. {
  41986. name: "Macro",
  41987. height: math.unit(50, "feet")
  41988. },
  41989. ]
  41990. ))
  41991. characterMakers.push(() => makeCharacter(
  41992. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41993. {
  41994. front: {
  41995. height: math.unit(6 + 4/12, "feet"),
  41996. weight: math.unit(170, "lb"),
  41997. name: "Front",
  41998. image: {
  41999. source: "./media/characters/charlie/front.svg",
  42000. extra: 1348/1228,
  42001. bottom: 15/1363
  42002. }
  42003. },
  42004. },
  42005. [
  42006. {
  42007. name: "Macro",
  42008. height: math.unit(1700, "meters"),
  42009. default: true
  42010. },
  42011. {
  42012. name: "MegaMacro",
  42013. height: math.unit(20400, "meters")
  42014. },
  42015. ]
  42016. ))
  42017. characterMakers.push(() => makeCharacter(
  42018. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42019. {
  42020. front: {
  42021. height: math.unit(6 + 3/12, "feet"),
  42022. weight: math.unit(185, "lb"),
  42023. name: "Front",
  42024. image: {
  42025. source: "./media/characters/susan-grant/front.svg",
  42026. extra: 1351/1327,
  42027. bottom: 26/1377
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Normal",
  42034. height: math.unit(6 + 3/12, "feet"),
  42035. default: true
  42036. },
  42037. {
  42038. name: "Macro",
  42039. height: math.unit(225, "feet")
  42040. },
  42041. {
  42042. name: "Macro+",
  42043. height: math.unit(900, "feet")
  42044. },
  42045. {
  42046. name: "MegaMacro",
  42047. height: math.unit(14400, "feet")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(5 + 4/12, "feet"),
  42056. weight: math.unit(110, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/axel-isanov/front.svg",
  42060. extra: 1096/1065,
  42061. bottom: 13/1109
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(5 + 4/12, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42075. {
  42076. front: {
  42077. height: math.unit(9, "feet"),
  42078. weight: math.unit(467, "lb"),
  42079. name: "Front",
  42080. image: {
  42081. source: "./media/characters/necahual/front.svg",
  42082. extra: 920/873,
  42083. bottom: 26/946
  42084. }
  42085. },
  42086. back: {
  42087. height: math.unit(9, "feet"),
  42088. weight: math.unit(467, "lb"),
  42089. name: "Back",
  42090. image: {
  42091. source: "./media/characters/necahual/back.svg",
  42092. extra: 930/884,
  42093. bottom: 16/946
  42094. }
  42095. },
  42096. frontUnderwear: {
  42097. height: math.unit(9, "feet"),
  42098. weight: math.unit(467, "lb"),
  42099. name: "Front (Underwear)",
  42100. image: {
  42101. source: "./media/characters/necahual/front-underwear.svg",
  42102. extra: 920/873,
  42103. bottom: 26/946
  42104. }
  42105. },
  42106. frontDressed: {
  42107. height: math.unit(9, "feet"),
  42108. weight: math.unit(467, "lb"),
  42109. name: "Front (Dressed)",
  42110. image: {
  42111. source: "./media/characters/necahual/front-dressed.svg",
  42112. extra: 920/873,
  42113. bottom: 26/946
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Comprsesed",
  42120. height: math.unit(9, "feet")
  42121. },
  42122. {
  42123. name: "Natural",
  42124. height: math.unit(15, "feet"),
  42125. default: true
  42126. },
  42127. {
  42128. name: "Boosted",
  42129. height: math.unit(50, "feet")
  42130. },
  42131. {
  42132. name: "Boosted+",
  42133. height: math.unit(150, "feet")
  42134. },
  42135. {
  42136. name: "Max",
  42137. height: math.unit(500, "feet")
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(22 + 1/12, "feet"),
  42146. weight: math.unit(3200, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/theo-acacia/front.svg",
  42150. extra: 1796/1741,
  42151. bottom: 83/1879
  42152. }
  42153. },
  42154. frontUnderwear: {
  42155. height: math.unit(22 + 1/12, "feet"),
  42156. weight: math.unit(3200, "lb"),
  42157. name: "Front (Underwear)",
  42158. image: {
  42159. source: "./media/characters/theo-acacia/front-underwear.svg",
  42160. extra: 1796/1741,
  42161. bottom: 83/1879
  42162. }
  42163. },
  42164. frontNude: {
  42165. height: math.unit(22 + 1/12, "feet"),
  42166. weight: math.unit(3200, "lb"),
  42167. name: "Front (Nude)",
  42168. image: {
  42169. source: "./media/characters/theo-acacia/front-nude.svg",
  42170. extra: 1796/1741,
  42171. bottom: 83/1879
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(22 + 1/12, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42185. {
  42186. front: {
  42187. height: math.unit(20, "feet"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/astra/front.svg",
  42191. extra: 1850/1714,
  42192. bottom: 106/1956
  42193. }
  42194. },
  42195. frontUndressed: {
  42196. height: math.unit(20, "feet"),
  42197. name: "Front (Undressed)",
  42198. image: {
  42199. source: "./media/characters/astra/front-undressed.svg",
  42200. extra: 1926/1749,
  42201. bottom: 0/1926
  42202. }
  42203. },
  42204. hand: {
  42205. height: math.unit(1.53, "feet"),
  42206. name: "Hand",
  42207. image: {
  42208. source: "./media/characters/astra/hand.svg"
  42209. }
  42210. },
  42211. paw: {
  42212. height: math.unit(1.53, "feet"),
  42213. name: "Paw",
  42214. image: {
  42215. source: "./media/characters/astra/paw.svg"
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Smallest",
  42222. height: math.unit(20, "feet")
  42223. },
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(1e9, "miles"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Larger",
  42231. height: math.unit(5, "multiverses")
  42232. },
  42233. {
  42234. name: "Largest",
  42235. height: math.unit(1e9, "multiverses")
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(8, "feet"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/breanna/front.svg",
  42247. extra: 1912/1632,
  42248. bottom: 33/1945
  42249. }
  42250. },
  42251. },
  42252. [
  42253. {
  42254. name: "Smallest",
  42255. height: math.unit(8, "feet")
  42256. },
  42257. {
  42258. name: "Normal",
  42259. height: math.unit(1, "mile"),
  42260. default: true
  42261. },
  42262. {
  42263. name: "Maximum",
  42264. height: math.unit(1500000000000, "lightyears")
  42265. },
  42266. ]
  42267. ))
  42268. characterMakers.push(() => makeCharacter(
  42269. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42270. {
  42271. front: {
  42272. height: math.unit(5 + 11/12, "feet"),
  42273. weight: math.unit(155, "lb"),
  42274. name: "Front",
  42275. image: {
  42276. source: "./media/characters/cai/front.svg",
  42277. extra: 1823/1702,
  42278. bottom: 32/1855
  42279. }
  42280. },
  42281. back: {
  42282. height: math.unit(5 + 11/12, "feet"),
  42283. weight: math.unit(155, "lb"),
  42284. name: "Back",
  42285. image: {
  42286. source: "./media/characters/cai/back.svg",
  42287. extra: 1809/1708,
  42288. bottom: 31/1840
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Normal",
  42295. height: math.unit(5 + 11/12, "feet"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Big",
  42300. height: math.unit(15, "feet")
  42301. },
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(200, "feet")
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(5 + 6/12, "feet"),
  42313. weight: math.unit(160, "lb"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42317. extra: 1227/1174,
  42318. bottom: 37/1264
  42319. }
  42320. },
  42321. },
  42322. [
  42323. {
  42324. name: "Macro",
  42325. height: math.unit(444, "meters"),
  42326. default: true
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42332. {
  42333. front: {
  42334. height: math.unit(18 + 7/12, "feet"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/rex/front.svg",
  42338. extra: 1941/1807,
  42339. bottom: 66/2007
  42340. }
  42341. },
  42342. back: {
  42343. height: math.unit(18 + 7/12, "feet"),
  42344. name: "Back",
  42345. image: {
  42346. source: "./media/characters/rex/back.svg",
  42347. extra: 1937/1822,
  42348. bottom: 42/1979
  42349. }
  42350. },
  42351. boot: {
  42352. height: math.unit(3.45, "feet"),
  42353. name: "Boot",
  42354. image: {
  42355. source: "./media/characters/rex/boot.svg"
  42356. }
  42357. },
  42358. paw: {
  42359. height: math.unit(4.17, "feet"),
  42360. name: "Paw",
  42361. image: {
  42362. source: "./media/characters/rex/paw.svg"
  42363. }
  42364. },
  42365. head: {
  42366. height: math.unit(6.728, "feet"),
  42367. name: "Head",
  42368. image: {
  42369. source: "./media/characters/rex/head.svg"
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Nano",
  42376. height: math.unit(18 + 7/12, "feet")
  42377. },
  42378. {
  42379. name: "Micro",
  42380. height: math.unit(1.5, "megameters")
  42381. },
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(440, "megameters"),
  42385. default: true
  42386. },
  42387. {
  42388. name: "Macro",
  42389. height: math.unit(2.5, "gigameters")
  42390. },
  42391. {
  42392. name: "Gigamacro",
  42393. height: math.unit(2, "galaxies")
  42394. },
  42395. ]
  42396. ))
  42397. characterMakers.push(() => makeCharacter(
  42398. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42399. {
  42400. side: {
  42401. height: math.unit(32, "feet"),
  42402. weight: math.unit(250000, "lb"),
  42403. name: "Side",
  42404. image: {
  42405. source: "./media/characters/silverwing/side.svg",
  42406. extra: 1100/1019,
  42407. bottom: 204/1304
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(32, "feet"),
  42415. default: true
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(6 + 6/12, "feet"),
  42424. weight: math.unit(350, "lb"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/tristan-hawthorne/front.svg",
  42428. extra: 1159/1124,
  42429. bottom: 37/1196
  42430. },
  42431. form: "labrador",
  42432. default: true
  42433. },
  42434. skunkFront: {
  42435. height: math.unit(4 + 6/12, "feet"),
  42436. weight: math.unit(120, "lb"),
  42437. name: "Front",
  42438. image: {
  42439. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42440. extra: 1609/1551,
  42441. bottom: 169/1778
  42442. },
  42443. form: "skunk",
  42444. default: true
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Normal",
  42450. height: math.unit(6 + 6/12, "feet"),
  42451. form: "labrador",
  42452. default: true
  42453. },
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(4 + 6/12, "feet"),
  42457. form: "skunk",
  42458. default: true
  42459. },
  42460. ],
  42461. {
  42462. "labrador": {
  42463. name: "Labrador",
  42464. default: true
  42465. },
  42466. "skunk": {
  42467. name: "Skunk"
  42468. }
  42469. }
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(5 + 11/12, "feet"),
  42476. weight: math.unit(190, "lb"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/mizu/front.svg",
  42480. extra: 1988/1788,
  42481. bottom: 14/2002
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Normal",
  42488. height: math.unit(5 + 11/12, "feet"),
  42489. default: true
  42490. },
  42491. ]
  42492. ))
  42493. characterMakers.push(() => makeCharacter(
  42494. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42495. {
  42496. front: {
  42497. height: math.unit(1.7, "feet"),
  42498. weight: math.unit(50, "lb"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/dechroma/front.svg",
  42502. extra: 1095/859,
  42503. bottom: 64/1159
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Normal",
  42510. height: math.unit(1.7, "feet"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42517. {
  42518. side: {
  42519. height: math.unit(30, "feet"),
  42520. name: "Side",
  42521. image: {
  42522. source: "./media/characters/veluren-thanazel/side.svg",
  42523. extra: 1611/633,
  42524. bottom: 118/1729
  42525. }
  42526. },
  42527. front: {
  42528. height: math.unit(30, "feet"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/veluren-thanazel/front.svg",
  42532. extra: 1486/636,
  42533. bottom: 238/1724
  42534. }
  42535. },
  42536. head: {
  42537. height: math.unit(21.4, "feet"),
  42538. name: "Head",
  42539. image: {
  42540. source: "./media/characters/veluren-thanazel/head.svg"
  42541. }
  42542. },
  42543. genitals: {
  42544. height: math.unit(19.4, "feet"),
  42545. name: "Genitals",
  42546. image: {
  42547. source: "./media/characters/veluren-thanazel/genitals.svg"
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Social",
  42554. height: math.unit(6, "feet")
  42555. },
  42556. {
  42557. name: "Play",
  42558. height: math.unit(12, "feet")
  42559. },
  42560. {
  42561. name: "True",
  42562. height: math.unit(30, "feet"),
  42563. default: true
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(7 + 6/12, "feet"),
  42572. weight: math.unit(500, "kg"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/arcturas/front.svg",
  42576. extra: 1700/1500,
  42577. bottom: 145/1845
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Normal",
  42584. height: math.unit(7 + 6/12, "feet"),
  42585. default: true
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42591. {
  42592. side: {
  42593. height: math.unit(6, "feet"),
  42594. weight: math.unit(2, "tons"),
  42595. name: "Side",
  42596. image: {
  42597. source: "./media/characters/vitaen/side.svg",
  42598. extra: 1157/617,
  42599. bottom: 122/1279
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "Normal",
  42606. height: math.unit(6, "feet"),
  42607. default: true
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(19, "feet"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/fia-dreamweaver/front.svg",
  42619. extra: 1630/1504,
  42620. bottom: 25/1655
  42621. }
  42622. },
  42623. },
  42624. [
  42625. {
  42626. name: "Normal",
  42627. height: math.unit(19, "feet"),
  42628. default: true
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42634. {
  42635. front: {
  42636. height: math.unit(5 + 4/12, "feet"),
  42637. name: "Front",
  42638. image: {
  42639. source: "./media/characters/artan/front.svg",
  42640. extra: 1618/1535,
  42641. bottom: 46/1664
  42642. }
  42643. },
  42644. back: {
  42645. height: math.unit(5 + 4/12, "feet"),
  42646. name: "Back",
  42647. image: {
  42648. source: "./media/characters/artan/back.svg",
  42649. extra: 1618/1543,
  42650. bottom: 31/1649
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(5 + 4/12, "feet"),
  42658. default: true
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42664. {
  42665. side: {
  42666. height: math.unit(182, "cm"),
  42667. weight: math.unit(1000, "lb"),
  42668. name: "Side",
  42669. image: {
  42670. source: "./media/characters/silver-dragon/side.svg",
  42671. extra: 710/287,
  42672. bottom: 88/798
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(182, "cm"),
  42680. default: true
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42686. {
  42687. side: {
  42688. height: math.unit(6 + 6/12, "feet"),
  42689. weight: math.unit(1.5, "tons"),
  42690. name: "Side",
  42691. image: {
  42692. source: "./media/characters/zephyr/side.svg",
  42693. extra: 1433/586,
  42694. bottom: 109/1542
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(6 + 6/12, "feet"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42708. {
  42709. side: {
  42710. height: math.unit(1, "feet"),
  42711. name: "Side",
  42712. image: {
  42713. source: "./media/characters/vixye/side.svg",
  42714. extra: 632/541,
  42715. bottom: 0/632
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Normal",
  42722. height: math.unit(1, "feet"),
  42723. default: true
  42724. },
  42725. {
  42726. name: "True",
  42727. height: math.unit(1e15, "multiverses")
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(8 + 2/12, "feet"),
  42736. weight: math.unit(650, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42740. extra: 1174/1137,
  42741. bottom: 82/1256
  42742. }
  42743. },
  42744. back: {
  42745. height: math.unit(8 + 2/12, "feet"),
  42746. weight: math.unit(650, "lb"),
  42747. name: "Back",
  42748. image: {
  42749. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42750. extra: 1204/1157,
  42751. bottom: 46/1250
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Wildform",
  42758. height: math.unit(8 + 2/12, "feet"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(18, "feet"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/cyphin/front.svg",
  42771. extra: 970/886,
  42772. bottom: 42/1012
  42773. }
  42774. },
  42775. back: {
  42776. height: math.unit(18, "feet"),
  42777. name: "Back",
  42778. image: {
  42779. source: "./media/characters/cyphin/back.svg",
  42780. extra: 1009/894,
  42781. bottom: 24/1033
  42782. }
  42783. },
  42784. head: {
  42785. height: math.unit(5.05, "feet"),
  42786. name: "Head",
  42787. image: {
  42788. source: "./media/characters/cyphin/head.svg"
  42789. }
  42790. },
  42791. tailbud: {
  42792. height: math.unit(5, "feet"),
  42793. name: "Tailbud",
  42794. image: {
  42795. source: "./media/characters/cyphin/tailbud.svg"
  42796. }
  42797. },
  42798. },
  42799. [
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42804. {
  42805. side: {
  42806. height: math.unit(10, "feet"),
  42807. weight: math.unit(6, "tons"),
  42808. name: "Side",
  42809. image: {
  42810. source: "./media/characters/raijin/side.svg",
  42811. extra: 1529/613,
  42812. bottom: 337/1866
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Normal",
  42819. height: math.unit(10, "feet"),
  42820. default: true
  42821. },
  42822. ]
  42823. ))
  42824. characterMakers.push(() => makeCharacter(
  42825. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42826. {
  42827. side: {
  42828. height: math.unit(9, "feet"),
  42829. name: "Side",
  42830. image: {
  42831. source: "./media/characters/nilghais/side.svg",
  42832. extra: 1047/744,
  42833. bottom: 91/1138
  42834. }
  42835. },
  42836. head: {
  42837. height: math.unit(3.14, "feet"),
  42838. name: "Head",
  42839. image: {
  42840. source: "./media/characters/nilghais/head.svg"
  42841. }
  42842. },
  42843. mouth: {
  42844. height: math.unit(4.6, "feet"),
  42845. name: "Mouth",
  42846. image: {
  42847. source: "./media/characters/nilghais/mouth.svg"
  42848. }
  42849. },
  42850. wings: {
  42851. height: math.unit(24, "feet"),
  42852. name: "Wings",
  42853. image: {
  42854. source: "./media/characters/nilghais/wings.svg"
  42855. }
  42856. },
  42857. ass: {
  42858. height: math.unit(6.12, "feet"),
  42859. name: "Ass",
  42860. image: {
  42861. source: "./media/characters/nilghais/ass.svg"
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(9, "feet"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42875. {
  42876. regular: {
  42877. height: math.unit(16 + 2/12, "feet"),
  42878. weight: math.unit(2300, "lb"),
  42879. name: "Regular",
  42880. image: {
  42881. source: "./media/characters/zolgar/regular.svg",
  42882. extra: 1246/1004,
  42883. bottom: 124/1370
  42884. }
  42885. },
  42886. boxers: {
  42887. height: math.unit(16 + 2/12, "feet"),
  42888. weight: math.unit(2300, "lb"),
  42889. name: "Boxers",
  42890. image: {
  42891. source: "./media/characters/zolgar/boxers.svg",
  42892. extra: 1246/1004,
  42893. bottom: 124/1370
  42894. }
  42895. },
  42896. armored: {
  42897. height: math.unit(16 + 2/12, "feet"),
  42898. weight: math.unit(2300, "lb"),
  42899. name: "Armored",
  42900. image: {
  42901. source: "./media/characters/zolgar/armored.svg",
  42902. extra: 1246/1004,
  42903. bottom: 124/1370
  42904. }
  42905. },
  42906. goth: {
  42907. height: math.unit(16 + 2/12, "feet"),
  42908. weight: math.unit(2300, "lb"),
  42909. name: "Goth",
  42910. image: {
  42911. source: "./media/characters/zolgar/goth.svg",
  42912. extra: 1246/1004,
  42913. bottom: 124/1370
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Shrunken Down",
  42920. height: math.unit(9 + 2/12, "feet")
  42921. },
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(16 + 2/12, "feet"),
  42925. default: true
  42926. },
  42927. ]
  42928. ))
  42929. characterMakers.push(() => makeCharacter(
  42930. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42931. {
  42932. front: {
  42933. height: math.unit(6, "feet"),
  42934. weight: math.unit(168, "lb"),
  42935. name: "Front",
  42936. image: {
  42937. source: "./media/characters/luca/front.svg",
  42938. extra: 841/667,
  42939. bottom: 102/943
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(6, "feet"),
  42947. default: true
  42948. },
  42949. ]
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42953. {
  42954. side: {
  42955. height: math.unit(7 + 3/12, "feet"),
  42956. weight: math.unit(312, "lb"),
  42957. name: "Side",
  42958. image: {
  42959. source: "./media/characters/zezo/side.svg",
  42960. extra: 1192/1067,
  42961. bottom: 63/1255
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(7 + 3/12, "feet"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(5 + 5/12, "feet"),
  42978. weight: math.unit(170, "lb"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/mayso/front.svg",
  42982. extra: 1215/1108,
  42983. bottom: 16/1231
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(5 + 5/12, "feet"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(4 + 3/12, "feet"),
  43000. weight: math.unit(80, "lb"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/hess/front.svg",
  43004. extra: 1200/1123,
  43005. bottom: 16/1216
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(4 + 3/12, "feet"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43019. {
  43020. front: {
  43021. height: math.unit(1.9, "meters"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/ashgar/front.svg",
  43025. extra: 1177/1146,
  43026. bottom: 99/1276
  43027. }
  43028. },
  43029. back: {
  43030. height: math.unit(1.9, "meters"),
  43031. name: "Back",
  43032. image: {
  43033. source: "./media/characters/ashgar/back.svg",
  43034. extra: 1201/1183,
  43035. bottom: 53/1254
  43036. }
  43037. },
  43038. feral: {
  43039. height: math.unit(1.4, "meters"),
  43040. name: "Feral",
  43041. image: {
  43042. source: "./media/characters/ashgar/feral.svg",
  43043. extra: 370/345,
  43044. bottom: 45/415
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(1.9, "meters"),
  43052. default: true
  43053. },
  43054. ]
  43055. ))
  43056. characterMakers.push(() => makeCharacter(
  43057. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43058. {
  43059. regular: {
  43060. height: math.unit(6, "feet"),
  43061. weight: math.unit(220, "lb"),
  43062. name: "Regular",
  43063. image: {
  43064. source: "./media/characters/phillip/regular.svg",
  43065. extra: 1373/1277,
  43066. bottom: 75/1448
  43067. }
  43068. },
  43069. dressed: {
  43070. height: math.unit(6, "feet"),
  43071. weight: math.unit(220, "lb"),
  43072. name: "Dressed",
  43073. image: {
  43074. source: "./media/characters/phillip/dressed.svg",
  43075. extra: 1373/1277,
  43076. bottom: 75/1448
  43077. }
  43078. },
  43079. paw: {
  43080. height: math.unit(1.44, "feet"),
  43081. name: "Paw",
  43082. image: {
  43083. source: "./media/characters/phillip/paw.svg"
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(6, "feet"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43097. {
  43098. side: {
  43099. height: math.unit(42, "feet"),
  43100. name: "Side",
  43101. image: {
  43102. source: "./media/characters/uvula/side.svg",
  43103. extra: 683/586,
  43104. bottom: 60/743
  43105. }
  43106. },
  43107. front: {
  43108. height: math.unit(42, "feet"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/uvula/front.svg",
  43112. extra: 705/613,
  43113. bottom: 54/759
  43114. }
  43115. },
  43116. maw: {
  43117. height: math.unit(23.5, "feet"),
  43118. name: "Maw",
  43119. image: {
  43120. source: "./media/characters/uvula/maw.svg"
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Original Size",
  43127. height: math.unit(14, "inches")
  43128. },
  43129. {
  43130. name: "Human Size",
  43131. height: math.unit(6, "feet")
  43132. },
  43133. {
  43134. name: "Big",
  43135. height: math.unit(42, "feet"),
  43136. default: true
  43137. },
  43138. {
  43139. name: "Bigger",
  43140. height: math.unit(100, "feet")
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(5 + 11/12, "feet"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/lannah/front.svg",
  43152. extra: 1208/1113,
  43153. bottom: 97/1305
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Normal",
  43160. height: math.unit(5 + 11/12, "feet"),
  43161. default: true
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43167. {
  43168. front: {
  43169. height: math.unit(6 + 3/12, "feet"),
  43170. weight: math.unit(3.5, "tons"),
  43171. name: "Front",
  43172. image: {
  43173. source: "./media/characters/emberflame/front.svg",
  43174. extra: 1198/672,
  43175. bottom: 82/1280
  43176. }
  43177. },
  43178. side: {
  43179. height: math.unit(6 + 3/12, "feet"),
  43180. weight: math.unit(3.5, "tons"),
  43181. name: "Side",
  43182. image: {
  43183. source: "./media/characters/emberflame/side.svg",
  43184. extra: 938/527,
  43185. bottom: 56/994
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(6 + 3/12, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43199. {
  43200. side: {
  43201. height: math.unit(17.5, "feet"),
  43202. weight: math.unit(35, "tons"),
  43203. name: "Side",
  43204. image: {
  43205. source: "./media/characters/sophie-ambrose/side.svg",
  43206. extra: 1573/1242,
  43207. bottom: 71/1644
  43208. }
  43209. },
  43210. maw: {
  43211. height: math.unit(7.4, "feet"),
  43212. name: "Maw",
  43213. image: {
  43214. source: "./media/characters/sophie-ambrose/maw.svg"
  43215. }
  43216. },
  43217. },
  43218. [
  43219. {
  43220. name: "Normal",
  43221. height: math.unit(17.5, "feet"),
  43222. default: true
  43223. },
  43224. ]
  43225. ))
  43226. characterMakers.push(() => makeCharacter(
  43227. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43228. {
  43229. front: {
  43230. height: math.unit(280, "feet"),
  43231. weight: math.unit(550, "tons"),
  43232. name: "Front",
  43233. image: {
  43234. source: "./media/characters/king-mugi/front.svg",
  43235. extra: 1102/947,
  43236. bottom: 104/1206
  43237. }
  43238. },
  43239. },
  43240. [
  43241. {
  43242. name: "King Mugi",
  43243. height: math.unit(280, "feet"),
  43244. default: true
  43245. },
  43246. ]
  43247. ))
  43248. characterMakers.push(() => makeCharacter(
  43249. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43250. {
  43251. front: {
  43252. height: math.unit(64, "meters"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/nova-fox/front.svg",
  43256. extra: 1310/1246,
  43257. bottom: 65/1375
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Macro",
  43264. height: math.unit(64, "meters"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(6 + 3/12, "feet"),
  43274. weight: math.unit(170, "lb"),
  43275. name: "Front",
  43276. image: {
  43277. source: "./media/characters/sam-bat/front.svg",
  43278. extra: 1601/1411,
  43279. bottom: 125/1726
  43280. }
  43281. },
  43282. back: {
  43283. height: math.unit(6 + 3/12, "feet"),
  43284. weight: math.unit(170, "lb"),
  43285. name: "Back",
  43286. image: {
  43287. source: "./media/characters/sam-bat/back.svg",
  43288. extra: 1577/1405,
  43289. bottom: 58/1635
  43290. }
  43291. },
  43292. },
  43293. [
  43294. {
  43295. name: "Normal",
  43296. height: math.unit(6 + 3/12, "feet"),
  43297. default: true
  43298. },
  43299. ]
  43300. ))
  43301. characterMakers.push(() => makeCharacter(
  43302. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43303. {
  43304. front: {
  43305. height: math.unit(59, "feet"),
  43306. weight: math.unit(40000, "lb"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/inari/front.svg",
  43310. extra: 1884/1350,
  43311. bottom: 95/1979
  43312. }
  43313. },
  43314. },
  43315. [
  43316. {
  43317. name: "Gigantamax",
  43318. height: math.unit(59, "feet"),
  43319. default: true
  43320. },
  43321. ]
  43322. ))
  43323. characterMakers.push(() => makeCharacter(
  43324. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43325. {
  43326. front: {
  43327. height: math.unit(5 + 8/12, "feet"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/elizabeth/front.svg",
  43331. extra: 1395/1298,
  43332. bottom: 54/1449
  43333. }
  43334. },
  43335. mouth: {
  43336. height: math.unit(1.97, "feet"),
  43337. name: "Mouth",
  43338. image: {
  43339. source: "./media/characters/elizabeth/mouth.svg"
  43340. }
  43341. },
  43342. foot: {
  43343. height: math.unit(1.17, "feet"),
  43344. name: "Foot",
  43345. image: {
  43346. source: "./media/characters/elizabeth/foot.svg"
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Normal",
  43353. height: math.unit(5 + 8/12, "feet"),
  43354. default: true
  43355. },
  43356. {
  43357. name: "Minimacro",
  43358. height: math.unit(18, "feet")
  43359. },
  43360. {
  43361. name: "Macro",
  43362. height: math.unit(180, "feet")
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(5 + 2/12, "feet"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/october-gossamer/front.svg",
  43374. extra: 505/454,
  43375. bottom: 7/512
  43376. }
  43377. },
  43378. back: {
  43379. height: math.unit(5 + 2/12, "feet"),
  43380. name: "Back",
  43381. image: {
  43382. source: "./media/characters/october-gossamer/back.svg",
  43383. extra: 501/454,
  43384. bottom: 11/512
  43385. }
  43386. },
  43387. },
  43388. [
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(5 + 2/12, "feet"),
  43392. default: true
  43393. },
  43394. ]
  43395. ))
  43396. characterMakers.push(() => makeCharacter(
  43397. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43398. {
  43399. front: {
  43400. height: math.unit(5, "feet"),
  43401. name: "Front",
  43402. image: {
  43403. source: "./media/characters/epiglottis/front.svg",
  43404. extra: 923/849,
  43405. bottom: 17/940
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Original Size",
  43412. height: math.unit(10, "inches")
  43413. },
  43414. {
  43415. name: "Human Size",
  43416. height: math.unit(5, "feet"),
  43417. default: true
  43418. },
  43419. {
  43420. name: "Big",
  43421. height: math.unit(25, "feet")
  43422. },
  43423. {
  43424. name: "Bigger",
  43425. height: math.unit(50, "feet")
  43426. },
  43427. {
  43428. name: "oh lawd",
  43429. height: math.unit(75, "feet")
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(2 + 4/12, "feet"),
  43438. weight: math.unit(60, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/lerm/front.svg",
  43442. extra: 796/790,
  43443. bottom: 79/875
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(2 + 4/12, "feet"),
  43451. default: true
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43457. {
  43458. front: {
  43459. height: math.unit(5.5, "feet"),
  43460. weight: math.unit(130, "lb"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/xena-nebadon/front.svg",
  43464. extra: 1828/1730,
  43465. bottom: 79/1907
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Tiny Puppy",
  43472. height: math.unit(3, "inches")
  43473. },
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(5.5, "feet"),
  43477. default: true
  43478. },
  43479. {
  43480. name: "Lotta Lady",
  43481. height: math.unit(12, "feet")
  43482. },
  43483. {
  43484. name: "Pretty Big",
  43485. height: math.unit(100, "feet")
  43486. },
  43487. {
  43488. name: "Big",
  43489. height: math.unit(500, "feet")
  43490. },
  43491. {
  43492. name: "Skyscraper Toys",
  43493. height: math.unit(2500, "feet")
  43494. },
  43495. {
  43496. name: "Plane Catcher",
  43497. height: math.unit(8, "miles")
  43498. },
  43499. {
  43500. name: "Planet Toys",
  43501. height: math.unit(15, "earths")
  43502. },
  43503. {
  43504. name: "Stardust",
  43505. height: math.unit(0.25, "galaxies")
  43506. },
  43507. {
  43508. name: "Snacks",
  43509. height: math.unit(70, "universes")
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(1.6, "meters"),
  43518. weight: math.unit(60, "kg"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/bounty/front.svg",
  43522. extra: 1426/1308,
  43523. bottom: 15/1441
  43524. }
  43525. },
  43526. back: {
  43527. height: math.unit(1.6, "meters"),
  43528. weight: math.unit(60, "kg"),
  43529. name: "Back",
  43530. image: {
  43531. source: "./media/characters/bounty/back.svg",
  43532. extra: 1417/1307,
  43533. bottom: 8/1425
  43534. }
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(1.6, "meters"),
  43541. default: true
  43542. },
  43543. {
  43544. name: "Macro",
  43545. height: math.unit(300, "meters")
  43546. },
  43547. ]
  43548. ))
  43549. characterMakers.push(() => makeCharacter(
  43550. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43551. {
  43552. front: {
  43553. height: math.unit(2 + 8/12, "feet"),
  43554. weight: math.unit(15, "lb"),
  43555. name: "Front",
  43556. image: {
  43557. source: "./media/characters/mochi/front.svg",
  43558. extra: 1022/852,
  43559. bottom: 435/1457
  43560. }
  43561. },
  43562. back: {
  43563. height: math.unit(2 + 8/12, "feet"),
  43564. weight: math.unit(15, "lb"),
  43565. name: "Back",
  43566. image: {
  43567. source: "./media/characters/mochi/back.svg",
  43568. extra: 1335/1119,
  43569. bottom: 39/1374
  43570. }
  43571. },
  43572. bird: {
  43573. height: math.unit(2 + 8/12, "feet"),
  43574. weight: math.unit(15, "lb"),
  43575. name: "Bird",
  43576. image: {
  43577. source: "./media/characters/mochi/bird.svg",
  43578. extra: 1251/1113,
  43579. bottom: 178/1429
  43580. }
  43581. },
  43582. kaiju: {
  43583. height: math.unit(154, "feet"),
  43584. weight: math.unit(1e7, "lb"),
  43585. name: "Kaiju",
  43586. image: {
  43587. source: "./media/characters/mochi/kaiju.svg",
  43588. extra: 460/324,
  43589. bottom: 40/500
  43590. }
  43591. },
  43592. head: {
  43593. height: math.unit(1.21, "feet"),
  43594. name: "Head",
  43595. image: {
  43596. source: "./media/characters/mochi/head.svg"
  43597. }
  43598. },
  43599. alternateTail: {
  43600. height: math.unit(2 + 8/12, "feet"),
  43601. weight: math.unit(45, "lb"),
  43602. name: "Alternate Tail",
  43603. image: {
  43604. source: "./media/characters/mochi/alternate-tail.svg",
  43605. extra: 139/76,
  43606. bottom: 45/184
  43607. }
  43608. },
  43609. },
  43610. [
  43611. {
  43612. name: "Micro",
  43613. height: math.unit(2, "inches")
  43614. },
  43615. {
  43616. name: "Normal",
  43617. height: math.unit(2 + 8/12, "feet"),
  43618. default: true
  43619. },
  43620. {
  43621. name: "Macro",
  43622. height: math.unit(106, "feet")
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(5.67, "feet"),
  43631. weight: math.unit(135, "lb"),
  43632. name: "Front",
  43633. image: {
  43634. source: "./media/characters/sarel/front.svg",
  43635. extra: 865/788,
  43636. bottom: 97/962
  43637. }
  43638. },
  43639. back: {
  43640. height: math.unit(5.67, "feet"),
  43641. weight: math.unit(135, "lb"),
  43642. name: "Back",
  43643. image: {
  43644. source: "./media/characters/sarel/back.svg",
  43645. extra: 857/777,
  43646. bottom: 32/889
  43647. }
  43648. },
  43649. chozoan: {
  43650. height: math.unit(5.67, "feet"),
  43651. weight: math.unit(135, "lb"),
  43652. name: "Chozoan",
  43653. image: {
  43654. source: "./media/characters/sarel/chozoan.svg",
  43655. extra: 865/788,
  43656. bottom: 97/962
  43657. }
  43658. },
  43659. current: {
  43660. height: math.unit(5.67, "feet"),
  43661. weight: math.unit(135, "lb"),
  43662. name: "Current",
  43663. image: {
  43664. source: "./media/characters/sarel/current.svg",
  43665. extra: 865/788,
  43666. bottom: 97/962
  43667. }
  43668. },
  43669. head: {
  43670. height: math.unit(1.77, "feet"),
  43671. name: "Head",
  43672. image: {
  43673. source: "./media/characters/sarel/head.svg"
  43674. }
  43675. },
  43676. claws: {
  43677. height: math.unit(1.8, "feet"),
  43678. name: "Claws",
  43679. image: {
  43680. source: "./media/characters/sarel/claws.svg"
  43681. }
  43682. },
  43683. clawsAlt: {
  43684. height: math.unit(1.8, "feet"),
  43685. name: "Claws-alt",
  43686. image: {
  43687. source: "./media/characters/sarel/claws-alt.svg"
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(5.67, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(5500, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/alyonia/front.svg",
  43707. extra: 1200/1135,
  43708. bottom: 29/1229
  43709. }
  43710. },
  43711. back: {
  43712. height: math.unit(5500, "feet"),
  43713. name: "Back",
  43714. image: {
  43715. source: "./media/characters/alyonia/back.svg",
  43716. extra: 1205/1138,
  43717. bottom: 10/1215
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Small",
  43724. height: math.unit(10, "feet")
  43725. },
  43726. {
  43727. name: "Macro",
  43728. height: math.unit(500, "feet")
  43729. },
  43730. {
  43731. name: "Mega Macro",
  43732. height: math.unit(5500, "feet"),
  43733. default: true
  43734. },
  43735. {
  43736. name: "Mega Macro+",
  43737. height: math.unit(500000, "feet")
  43738. },
  43739. {
  43740. name: "Giga Macro",
  43741. height: math.unit(3000, "miles")
  43742. },
  43743. {
  43744. name: "Tera Macro",
  43745. height: math.unit(2.8e6, "miles")
  43746. },
  43747. {
  43748. name: "Galactic",
  43749. height: math.unit(120000, "lightyears")
  43750. },
  43751. ]
  43752. ))
  43753. characterMakers.push(() => makeCharacter(
  43754. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43755. {
  43756. werewolf: {
  43757. height: math.unit(8, "feet"),
  43758. weight: math.unit(425, "lb"),
  43759. name: "Werewolf",
  43760. image: {
  43761. source: "./media/characters/autumn/werewolf.svg",
  43762. extra: 2154/2031,
  43763. bottom: 160/2314
  43764. }
  43765. },
  43766. human: {
  43767. height: math.unit(5 + 8/12, "feet"),
  43768. weight: math.unit(150, "lb"),
  43769. name: "Human",
  43770. image: {
  43771. source: "./media/characters/autumn/human.svg",
  43772. extra: 1200/1149,
  43773. bottom: 30/1230
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(8, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43787. {
  43788. front: {
  43789. height: math.unit(8 + 5/12, "feet"),
  43790. weight: math.unit(825, "lb"),
  43791. name: "Front",
  43792. image: {
  43793. source: "./media/characters/cobalt-charizard/front.svg",
  43794. extra: 1268/1155,
  43795. bottom: 122/1390
  43796. }
  43797. },
  43798. side: {
  43799. height: math.unit(8 + 5/12, "feet"),
  43800. weight: math.unit(825, "lb"),
  43801. name: "Side",
  43802. image: {
  43803. source: "./media/characters/cobalt-charizard/side.svg",
  43804. extra: 1348/1257,
  43805. bottom: 58/1406
  43806. }
  43807. },
  43808. gMax: {
  43809. height: math.unit(134 + 11/12, "feet"),
  43810. name: "G-Max",
  43811. image: {
  43812. source: "./media/characters/cobalt-charizard/g-max.svg",
  43813. extra: 1835/1541,
  43814. bottom: 151/1986
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Normal",
  43821. height: math.unit(8 + 5/12, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43828. {
  43829. front: {
  43830. height: math.unit(6 + 3/12, "feet"),
  43831. weight: math.unit(210, "lb"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/stella/front.svg",
  43835. extra: 3549/3335,
  43836. bottom: 51/3600
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(6 + 3/12, "feet"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43850. {
  43851. front: {
  43852. height: math.unit(5, "feet"),
  43853. weight: math.unit(90, "lb"),
  43854. name: "Front",
  43855. image: {
  43856. source: "./media/characters/riley-bishop/front.svg",
  43857. extra: 1450/1428,
  43858. bottom: 152/1602
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(5, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43872. {
  43873. side: {
  43874. height: math.unit(8 + 2/12, "feet"),
  43875. weight: math.unit(500, "kg"),
  43876. name: "Side",
  43877. image: {
  43878. source: "./media/characters/theo-arcanine/side.svg",
  43879. extra: 1342/1074,
  43880. bottom: 111/1453
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Normal",
  43887. height: math.unit(8 + 2/12, "feet"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(4, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/kali/front.svg",
  43900. extra: 1921/1357,
  43901. bottom: 70/1991
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(4, "feet"),
  43909. default: true
  43910. },
  43911. {
  43912. name: "Macro",
  43913. height: math.unit(32, "meters")
  43914. },
  43915. {
  43916. name: "Macro+",
  43917. height: math.unit(150, "meters")
  43918. },
  43919. {
  43920. name: "Megamacro",
  43921. height: math.unit(7500, "meters")
  43922. },
  43923. {
  43924. name: "Megamacro+",
  43925. height: math.unit(80, "kilometers")
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43931. {
  43932. side: {
  43933. height: math.unit(5 + 11/12, "feet"),
  43934. weight: math.unit(236, "lb"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/gapp/side.svg",
  43938. extra: 775/340,
  43939. bottom: 58/833
  43940. }
  43941. },
  43942. mouth: {
  43943. height: math.unit(2.98, "feet"),
  43944. name: "Mouth",
  43945. image: {
  43946. source: "./media/characters/gapp/mouth.svg"
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(5 + 1/12, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(6, "feet"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/persephone/front.svg",
  43966. extra: 1895/1717,
  43967. bottom: 96/1991
  43968. }
  43969. },
  43970. back: {
  43971. height: math.unit(6, "feet"),
  43972. name: "Back",
  43973. image: {
  43974. source: "./media/characters/persephone/back.svg",
  43975. extra: 1868/1679,
  43976. bottom: 26/1894
  43977. }
  43978. },
  43979. casual: {
  43980. height: math.unit(6, "feet"),
  43981. name: "Casual",
  43982. image: {
  43983. source: "./media/characters/persephone/casual.svg",
  43984. extra: 1713/1541,
  43985. bottom: 76/1789
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Human Size",
  43992. height: math.unit(6, "feet")
  43993. },
  43994. {
  43995. name: "Big Steppy",
  43996. height: math.unit(600, "meters"),
  43997. default: true
  43998. },
  43999. {
  44000. name: "Galaxy Brain",
  44001. height: math.unit(1, "zettameter")
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44007. {
  44008. front: {
  44009. height: math.unit(1.85, "meters"),
  44010. name: "Front",
  44011. image: {
  44012. source: "./media/characters/riley-foxthing/front.svg",
  44013. extra: 1495/1354,
  44014. bottom: 122/1617
  44015. }
  44016. },
  44017. frontAlt: {
  44018. height: math.unit(1.85, "meters"),
  44019. name: "Front (Alt)",
  44020. image: {
  44021. source: "./media/characters/riley-foxthing/front-alt.svg",
  44022. extra: 1572/1389,
  44023. bottom: 116/1688
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal Sized",
  44030. height: math.unit(1.85, "meters"),
  44031. default: true
  44032. },
  44033. {
  44034. name: "Quite Sizable",
  44035. height: math.unit(5, "meters")
  44036. },
  44037. {
  44038. name: "Rather Large",
  44039. height: math.unit(20, "meters")
  44040. },
  44041. {
  44042. name: "Macro",
  44043. height: math.unit(450, "meters")
  44044. },
  44045. {
  44046. name: "Giga",
  44047. height: math.unit(5, "km")
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44053. {
  44054. front: {
  44055. height: math.unit(6, "feet"),
  44056. weight: math.unit(200, "lb"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/blizzard/front.svg",
  44060. extra: 1136/990,
  44061. bottom: 136/1272
  44062. }
  44063. },
  44064. back: {
  44065. height: math.unit(6, "feet"),
  44066. weight: math.unit(200, "lb"),
  44067. name: "Back",
  44068. image: {
  44069. source: "./media/characters/blizzard/back.svg",
  44070. extra: 1175/1034,
  44071. bottom: 97/1272
  44072. }
  44073. },
  44074. sitting: {
  44075. height: math.unit(3.725, "feet"),
  44076. weight: math.unit(200, "lb"),
  44077. name: "Sitting",
  44078. image: {
  44079. source: "./media/characters/blizzard/sitting.svg",
  44080. extra: 581/485,
  44081. bottom: 90/671
  44082. }
  44083. },
  44084. frontWizard: {
  44085. height: math.unit(7.9, "feet"),
  44086. weight: math.unit(200, "lb"),
  44087. name: "Front (Wizard)",
  44088. image: {
  44089. source: "./media/characters/blizzard/front-wizard.svg"
  44090. }
  44091. },
  44092. backWizard: {
  44093. height: math.unit(7.9, "feet"),
  44094. weight: math.unit(200, "lb"),
  44095. name: "Back (Wizard)",
  44096. image: {
  44097. source: "./media/characters/blizzard/back-wizard.svg"
  44098. }
  44099. },
  44100. frontNsfw: {
  44101. height: math.unit(6, "feet"),
  44102. weight: math.unit(200, "lb"),
  44103. name: "Front (NSFW)",
  44104. image: {
  44105. source: "./media/characters/blizzard/front-nsfw.svg",
  44106. extra: 1136/990,
  44107. bottom: 136/1272
  44108. }
  44109. },
  44110. backNsfw: {
  44111. height: math.unit(6, "feet"),
  44112. weight: math.unit(200, "lb"),
  44113. name: "Back (NSFW)",
  44114. image: {
  44115. source: "./media/characters/blizzard/back-nsfw.svg",
  44116. extra: 1175/1034,
  44117. bottom: 97/1272
  44118. }
  44119. },
  44120. sittingNsfw: {
  44121. height: math.unit(3.725, "feet"),
  44122. weight: math.unit(200, "lb"),
  44123. name: "Sitting (NSFW)",
  44124. image: {
  44125. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44126. extra: 581/485,
  44127. bottom: 90/671
  44128. }
  44129. },
  44130. wizardFrontNsfw: {
  44131. height: math.unit(7.9, "feet"),
  44132. weight: math.unit(200, "lb"),
  44133. name: "Wizard (Front, NSFW)",
  44134. image: {
  44135. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44136. }
  44137. },
  44138. },
  44139. [
  44140. {
  44141. name: "Normal",
  44142. height: math.unit(6, "feet"),
  44143. default: true
  44144. },
  44145. ]
  44146. ))
  44147. characterMakers.push(() => makeCharacter(
  44148. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44149. {
  44150. front: {
  44151. height: math.unit(5 + 2/12, "feet"),
  44152. name: "Front",
  44153. image: {
  44154. source: "./media/characters/lumi/front.svg",
  44155. extra: 1328/1268,
  44156. bottom: 103/1431
  44157. }
  44158. },
  44159. back: {
  44160. height: math.unit(5 + 2/12, "feet"),
  44161. name: "Back",
  44162. image: {
  44163. source: "./media/characters/lumi/back.svg",
  44164. extra: 1381/1327,
  44165. bottom: 43/1424
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Normal",
  44172. height: math.unit(5 + 2/12, "feet"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. characterMakers.push(() => makeCharacter(
  44178. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44179. {
  44180. front: {
  44181. height: math.unit(5 + 9/12, "feet"),
  44182. name: "Front",
  44183. image: {
  44184. source: "./media/characters/aliya-cotton/front.svg",
  44185. extra: 577/564,
  44186. bottom: 29/606
  44187. }
  44188. },
  44189. },
  44190. [
  44191. {
  44192. name: "Normal",
  44193. height: math.unit(5 + 9/12, "feet"),
  44194. default: true
  44195. },
  44196. ]
  44197. ))
  44198. characterMakers.push(() => makeCharacter(
  44199. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44200. {
  44201. front: {
  44202. height: math.unit(2.7, "meters"),
  44203. weight: math.unit(25000, "lb"),
  44204. name: "Front",
  44205. image: {
  44206. source: "./media/characters/noah-luxray/front.svg",
  44207. extra: 1644/825,
  44208. bottom: 339/1983
  44209. }
  44210. },
  44211. side: {
  44212. height: math.unit(2.97, "meters"),
  44213. weight: math.unit(25000, "lb"),
  44214. name: "Side",
  44215. image: {
  44216. source: "./media/characters/noah-luxray/side.svg",
  44217. extra: 1319/650,
  44218. bottom: 163/1482
  44219. }
  44220. },
  44221. dick: {
  44222. height: math.unit(7.4, "feet"),
  44223. weight: math.unit(2500, "lb"),
  44224. name: "Dick",
  44225. image: {
  44226. source: "./media/characters/noah-luxray/dick.svg"
  44227. }
  44228. },
  44229. dickAlt: {
  44230. height: math.unit(10.83, "feet"),
  44231. weight: math.unit(2500, "lb"),
  44232. name: "Dick-alt",
  44233. image: {
  44234. source: "./media/characters/noah-luxray/dick-alt.svg"
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "BIG",
  44241. height: math.unit(2.7, "meters"),
  44242. default: true
  44243. },
  44244. ]
  44245. ))
  44246. characterMakers.push(() => makeCharacter(
  44247. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44248. {
  44249. standing: {
  44250. height: math.unit(183, "cm"),
  44251. weight: math.unit(68, "kg"),
  44252. name: "Standing",
  44253. image: {
  44254. source: "./media/characters/arion/standing.svg",
  44255. extra: 1869/1807,
  44256. bottom: 93/1962
  44257. }
  44258. },
  44259. reclining: {
  44260. height: math.unit(70.5, "cm"),
  44261. weight: math.unit(68, "lb"),
  44262. name: "Reclining",
  44263. image: {
  44264. source: "./media/characters/arion/reclining.svg",
  44265. extra: 937/870,
  44266. bottom: 63/1000
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Colossus Size, Low",
  44273. height: math.unit(33, "meters"),
  44274. default: true
  44275. },
  44276. {
  44277. name: "Colossus Size, Mid",
  44278. height: math.unit(52, "meters")
  44279. },
  44280. {
  44281. name: "Colossus Size, High",
  44282. height: math.unit(60, "meters")
  44283. },
  44284. {
  44285. name: "Titan Size, Low",
  44286. height: math.unit(91, "meters"),
  44287. },
  44288. {
  44289. name: "Titan Size, Mid",
  44290. height: math.unit(122, "meters")
  44291. },
  44292. {
  44293. name: "Titan Size, High",
  44294. height: math.unit(162, "meters")
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(53, "meters"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/stellar-marbey/front.svg",
  44306. extra: 1913/1805,
  44307. bottom: 92/2005
  44308. }
  44309. },
  44310. back: {
  44311. height: math.unit(53, "meters"),
  44312. name: "Back",
  44313. image: {
  44314. source: "./media/characters/stellar-marbey/back.svg",
  44315. extra: 1960/1851,
  44316. bottom: 28/1988
  44317. }
  44318. },
  44319. mouth: {
  44320. height: math.unit(3.5, "meters"),
  44321. name: "Mouth",
  44322. image: {
  44323. source: "./media/characters/stellar-marbey/mouth.svg"
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Macro",
  44330. height: math.unit(53, "meters"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(8 + 1/12, "feet"),
  44340. weight: math.unit(233, "lb"),
  44341. name: "Front",
  44342. image: {
  44343. source: "./media/characters/matsu/front.svg",
  44344. extra: 832/772,
  44345. bottom: 40/872
  44346. }
  44347. },
  44348. back: {
  44349. height: math.unit(8 + 1/12, "feet"),
  44350. weight: math.unit(233, "lb"),
  44351. name: "Back",
  44352. image: {
  44353. source: "./media/characters/matsu/back.svg",
  44354. extra: 839/780,
  44355. bottom: 47/886
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Normal",
  44362. height: math.unit(8 + 1/12, "feet"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(4, "feet"),
  44372. weight: math.unit(148, "lb"),
  44373. name: "Front",
  44374. image: {
  44375. source: "./media/characters/thiz/front.svg",
  44376. extra: 1913/1748,
  44377. bottom: 62/1975
  44378. }
  44379. },
  44380. },
  44381. [
  44382. {
  44383. name: "Normal",
  44384. height: math.unit(4, "feet"),
  44385. default: true
  44386. },
  44387. ]
  44388. ))
  44389. characterMakers.push(() => makeCharacter(
  44390. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44391. {
  44392. front: {
  44393. height: math.unit(7 + 6/12, "feet"),
  44394. weight: math.unit(267, "lb"),
  44395. name: "Front",
  44396. image: {
  44397. source: "./media/characters/marcel/front.svg",
  44398. extra: 1221/1096,
  44399. bottom: 76/1297
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Normal",
  44406. height: math.unit(7 + 6/12, "feet"),
  44407. default: true
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44413. {
  44414. side: {
  44415. height: math.unit(42, "meters"),
  44416. name: "Side",
  44417. image: {
  44418. source: "./media/characters/flake/side.svg",
  44419. extra: 1525/1306,
  44420. bottom: 209/1734
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(42, "meters"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44434. {
  44435. dressed: {
  44436. height: math.unit(6 + 4/12, "feet"),
  44437. weight: math.unit(520, "lb"),
  44438. name: "Dressed",
  44439. image: {
  44440. source: "./media/characters/someonne/dressed.svg",
  44441. extra: 1020/1010,
  44442. bottom: 178/1198
  44443. }
  44444. },
  44445. undressed: {
  44446. height: math.unit(6 + 4/12, "feet"),
  44447. weight: math.unit(520, "lb"),
  44448. name: "Undressed",
  44449. image: {
  44450. source: "./media/characters/someonne/undressed.svg",
  44451. extra: 1019/1014,
  44452. bottom: 169/1188
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6 + 4/12, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(3, "feet"),
  44469. weight: math.unit(30, "lb"),
  44470. name: "Front",
  44471. image: {
  44472. source: "./media/characters/till/front.svg",
  44473. extra: 892/823,
  44474. bottom: 55/947
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(3, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(9 + 8/12, "feet"),
  44491. weight: math.unit(800, "lb"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/sydney-heki/front.svg",
  44495. extra: 1360/1300,
  44496. bottom: 22/1382
  44497. }
  44498. },
  44499. back: {
  44500. height: math.unit(9 + 8/12, "feet"),
  44501. weight: math.unit(800, "lb"),
  44502. name: "Back",
  44503. image: {
  44504. source: "./media/characters/sydney-heki/back.svg",
  44505. extra: 1356/1293,
  44506. bottom: 12/1368
  44507. }
  44508. },
  44509. frontDressed: {
  44510. height: math.unit(9 + 8/12, "feet"),
  44511. weight: math.unit(800, "lb"),
  44512. name: "Front-dressed",
  44513. image: {
  44514. source: "./media/characters/sydney-heki/front-dressed.svg",
  44515. extra: 1360/1300,
  44516. bottom: 22/1382
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(9 + 8/12, "feet"),
  44524. default: true
  44525. },
  44526. {
  44527. name: "Macro",
  44528. height: math.unit(500, "feet")
  44529. },
  44530. {
  44531. name: "Megamacro",
  44532. height: math.unit(3.6, "miles")
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(200, "cm"),
  44541. weight: math.unit(250, "lb"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/fowler-karlsson/front.svg",
  44545. extra: 897/845,
  44546. bottom: 123/1020
  44547. }
  44548. },
  44549. back: {
  44550. height: math.unit(200, "cm"),
  44551. weight: math.unit(250, "lb"),
  44552. name: "Back",
  44553. image: {
  44554. source: "./media/characters/fowler-karlsson/back.svg",
  44555. extra: 999/944,
  44556. bottom: 26/1025
  44557. }
  44558. },
  44559. dick: {
  44560. height: math.unit(1.92, "feet"),
  44561. weight: math.unit(150, "lb"),
  44562. name: "Dick",
  44563. image: {
  44564. source: "./media/characters/fowler-karlsson/dick.svg"
  44565. }
  44566. },
  44567. },
  44568. [
  44569. {
  44570. name: "Normal",
  44571. height: math.unit(200, "cm"),
  44572. default: true
  44573. },
  44574. {
  44575. name: "Smaller Macro",
  44576. height: math.unit(90, "m")
  44577. },
  44578. {
  44579. name: "Macro",
  44580. height: math.unit(150, "m")
  44581. },
  44582. {
  44583. name: "Bigger Macro",
  44584. height: math.unit(300, "m")
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44590. {
  44591. side: {
  44592. height: math.unit(8 + 2/12, "feet"),
  44593. weight: math.unit(1, "tonne"),
  44594. name: "Side",
  44595. image: {
  44596. source: "./media/characters/rylide/side.svg",
  44597. extra: 1318/1034,
  44598. bottom: 106/1424
  44599. }
  44600. },
  44601. sitting: {
  44602. height: math.unit(303, "cm"),
  44603. weight: math.unit(1, "tonne"),
  44604. name: "Sitting",
  44605. image: {
  44606. source: "./media/characters/rylide/sitting.svg",
  44607. extra: 1303/1103,
  44608. bottom: 36/1339
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(8 + 2/12, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(5 + 10/12, "feet"),
  44625. weight: math.unit(160, "lb"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/pudask/front.svg",
  44629. extra: 1616/1590,
  44630. bottom: 161/1777
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Ferret Height",
  44637. height: math.unit(2 + 5/12, "feet")
  44638. },
  44639. {
  44640. name: "Canon Height",
  44641. height: math.unit(5 + 10/12, "feet"),
  44642. default: true
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(3 + 6/12, "feet"),
  44651. weight: math.unit(60, "lb"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/ramita/front.svg",
  44655. extra: 1402/1232,
  44656. bottom: 62/1464
  44657. }
  44658. },
  44659. dressed: {
  44660. height: math.unit(3 + 6/12, "feet"),
  44661. weight: math.unit(60, "lb"),
  44662. name: "Dressed",
  44663. image: {
  44664. source: "./media/characters/ramita/dressed.svg",
  44665. extra: 1534/1249,
  44666. bottom: 50/1584
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(3 + 6/12, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(8, "feet"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/ark/front.svg",
  44686. extra: 772/693,
  44687. bottom: 45/817
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(8, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44701. {
  44702. front: {
  44703. height: math.unit(6, "feet"),
  44704. weight: math.unit(250, "lb"),
  44705. volume: math.unit(5/8, "gallons"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/ludwig-horn/front.svg",
  44709. extra: 1782/1635,
  44710. bottom: 96/1878
  44711. }
  44712. },
  44713. back: {
  44714. height: math.unit(6, "feet"),
  44715. weight: math.unit(250, "lb"),
  44716. volume: math.unit(5/8, "gallons"),
  44717. name: "Back",
  44718. image: {
  44719. source: "./media/characters/ludwig-horn/back.svg",
  44720. extra: 1874/1729,
  44721. bottom: 27/1901
  44722. }
  44723. },
  44724. dick: {
  44725. height: math.unit(1.05, "feet"),
  44726. weight: math.unit(15, "lb"),
  44727. volume: math.unit(5/8, "gallons"),
  44728. name: "Dick",
  44729. image: {
  44730. source: "./media/characters/ludwig-horn/dick.svg"
  44731. }
  44732. },
  44733. },
  44734. [
  44735. {
  44736. name: "Small",
  44737. height: math.unit(6, "feet")
  44738. },
  44739. {
  44740. name: "Typical",
  44741. height: math.unit(12, "feet"),
  44742. default: true
  44743. },
  44744. {
  44745. name: "Building",
  44746. height: math.unit(80, "feet")
  44747. },
  44748. {
  44749. name: "Town",
  44750. height: math.unit(800, "feet")
  44751. },
  44752. {
  44753. name: "Kingdom",
  44754. height: math.unit(80000, "feet")
  44755. },
  44756. {
  44757. name: "Planet",
  44758. height: math.unit(8000000, "feet")
  44759. },
  44760. {
  44761. name: "Universe",
  44762. height: math.unit(8000000000, "feet")
  44763. },
  44764. {
  44765. name: "Transcended",
  44766. height: math.unit(8e27, "feet")
  44767. },
  44768. ]
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44772. {
  44773. front: {
  44774. height: math.unit(5, "feet"),
  44775. weight: math.unit(50, "kg"),
  44776. name: "Front",
  44777. image: {
  44778. source: "./media/characters/biot-avery/front.svg",
  44779. extra: 1295/1232,
  44780. bottom: 86/1381
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(5, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(6, "feet"),
  44797. name: "Front",
  44798. image: {
  44799. source: "./media/characters/kitsune-kiro/front.svg",
  44800. extra: 1270/1158,
  44801. bottom: 42/1312
  44802. }
  44803. },
  44804. frontAlt: {
  44805. height: math.unit(6, "feet"),
  44806. name: "Front-alt",
  44807. image: {
  44808. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44809. extra: 1130/1081,
  44810. bottom: 36/1166
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Smol",
  44817. height: math.unit(3, "feet")
  44818. },
  44819. {
  44820. name: "Normal",
  44821. height: math.unit(6, "feet"),
  44822. default: true
  44823. },
  44824. ]
  44825. ))
  44826. characterMakers.push(() => makeCharacter(
  44827. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44828. {
  44829. front: {
  44830. height: math.unit(6, "feet"),
  44831. weight: math.unit(125, "lb"),
  44832. name: "Front",
  44833. image: {
  44834. source: "./media/characters/jack-thatcher/front.svg",
  44835. extra: 1474/1370,
  44836. bottom: 26/1500
  44837. }
  44838. },
  44839. back: {
  44840. height: math.unit(6, "feet"),
  44841. weight: math.unit(125, "lb"),
  44842. name: "Back",
  44843. image: {
  44844. source: "./media/characters/jack-thatcher/back.svg",
  44845. extra: 1489/1384,
  44846. bottom: 18/1507
  44847. }
  44848. },
  44849. },
  44850. [
  44851. {
  44852. name: "Normal",
  44853. height: math.unit(6, "feet"),
  44854. default: true
  44855. },
  44856. {
  44857. name: "Macro",
  44858. height: math.unit(75, "feet")
  44859. },
  44860. {
  44861. name: "Macro-er",
  44862. height: math.unit(250, "feet")
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(7, "feet"),
  44871. weight: math.unit(110, "kg"),
  44872. name: "Front",
  44873. image: {
  44874. source: "./media/characters/max-hyper/front.svg",
  44875. extra: 1969/1881,
  44876. bottom: 49/2018
  44877. }
  44878. },
  44879. },
  44880. [
  44881. {
  44882. name: "Normal",
  44883. height: math.unit(7, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(5 + 5/12, "feet"),
  44893. weight: math.unit(160, "lb"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/spook/front.svg",
  44897. extra: 794/791,
  44898. bottom: 54/848
  44899. }
  44900. },
  44901. back: {
  44902. height: math.unit(5 + 5/12, "feet"),
  44903. weight: math.unit(160, "lb"),
  44904. name: "Back",
  44905. image: {
  44906. source: "./media/characters/spook/back.svg",
  44907. extra: 812/798,
  44908. bottom: 32/844
  44909. }
  44910. },
  44911. },
  44912. [
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(5 + 5/12, "feet"),
  44916. default: true
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44922. {
  44923. front: {
  44924. height: math.unit(18, "feet"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/xeaduulix/front.svg",
  44928. extra: 1380/1166,
  44929. bottom: 110/1490
  44930. }
  44931. },
  44932. back: {
  44933. height: math.unit(18, "feet"),
  44934. name: "Back",
  44935. image: {
  44936. source: "./media/characters/xeaduulix/back.svg",
  44937. extra: 1592/1170,
  44938. bottom: 128/1720
  44939. }
  44940. },
  44941. frontNsfw: {
  44942. height: math.unit(18, "feet"),
  44943. name: "Front (NSFW)",
  44944. image: {
  44945. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44946. extra: 1380/1166,
  44947. bottom: 110/1490
  44948. }
  44949. },
  44950. backNsfw: {
  44951. height: math.unit(18, "feet"),
  44952. name: "Back (NSFW)",
  44953. image: {
  44954. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44955. extra: 1592/1170,
  44956. bottom: 128/1720
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(18, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44970. {
  44971. spreadWings: {
  44972. height: math.unit(20, "feet"),
  44973. name: "Spread Wings",
  44974. image: {
  44975. source: "./media/characters/fledge/spread-wings.svg",
  44976. extra: 693/635,
  44977. bottom: 26/719
  44978. }
  44979. },
  44980. front: {
  44981. height: math.unit(20, "feet"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/fledge/front.svg",
  44985. extra: 684/637,
  44986. bottom: 18/702
  44987. }
  44988. },
  44989. frontAlt: {
  44990. height: math.unit(20, "feet"),
  44991. name: "Front (Alt)",
  44992. image: {
  44993. source: "./media/characters/fledge/front-alt.svg",
  44994. extra: 708/664,
  44995. bottom: 13/721
  44996. }
  44997. },
  44998. back: {
  44999. height: math.unit(20, "feet"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/fledge/back.svg",
  45003. extra: 718/634,
  45004. bottom: 22/740
  45005. }
  45006. },
  45007. head: {
  45008. height: math.unit(5.55, "feet"),
  45009. name: "Head",
  45010. image: {
  45011. source: "./media/characters/fledge/head.svg"
  45012. }
  45013. },
  45014. headAlt: {
  45015. height: math.unit(5.1, "feet"),
  45016. name: "Head (Alt)",
  45017. image: {
  45018. source: "./media/characters/fledge/head-alt.svg"
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Small",
  45025. height: math.unit(6 + 2/12, "feet")
  45026. },
  45027. {
  45028. name: "Big",
  45029. height: math.unit(20, "feet"),
  45030. default: true
  45031. },
  45032. {
  45033. name: "Giant",
  45034. height: math.unit(100, "feet")
  45035. },
  45036. {
  45037. name: "Macro",
  45038. height: math.unit(200, "feet")
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45044. {
  45045. front: {
  45046. height: math.unit(1, "meter"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/atlas-morenai/front.svg",
  45050. extra: 1275/1043,
  45051. bottom: 19/1294
  45052. }
  45053. },
  45054. back: {
  45055. height: math.unit(1, "meter"),
  45056. name: "Back",
  45057. image: {
  45058. source: "./media/characters/atlas-morenai/back.svg",
  45059. extra: 1141/1001,
  45060. bottom: 25/1166
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(1, "meter"),
  45068. default: true
  45069. },
  45070. {
  45071. name: "Magic-Infused",
  45072. height: math.unit(5, "meters")
  45073. },
  45074. ]
  45075. ))
  45076. characterMakers.push(() => makeCharacter(
  45077. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45078. {
  45079. front: {
  45080. height: math.unit(5, "meters"),
  45081. name: "Front",
  45082. image: {
  45083. source: "./media/characters/cintia/front.svg",
  45084. extra: 1312/1228,
  45085. bottom: 38/1350
  45086. }
  45087. },
  45088. back: {
  45089. height: math.unit(5, "meters"),
  45090. name: "Back",
  45091. image: {
  45092. source: "./media/characters/cintia/back.svg",
  45093. extra: 1260/1166,
  45094. bottom: 98/1358
  45095. }
  45096. },
  45097. frontDick: {
  45098. height: math.unit(5, "meters"),
  45099. name: "Front (Dick)",
  45100. image: {
  45101. source: "./media/characters/cintia/front-dick.svg",
  45102. extra: 1312/1228,
  45103. bottom: 38/1350
  45104. }
  45105. },
  45106. backDick: {
  45107. height: math.unit(5, "meters"),
  45108. name: "Back (Dick)",
  45109. image: {
  45110. source: "./media/characters/cintia/back-dick.svg",
  45111. extra: 1260/1166,
  45112. bottom: 98/1358
  45113. }
  45114. },
  45115. bust: {
  45116. height: math.unit(1.97, "meters"),
  45117. name: "Bust",
  45118. image: {
  45119. source: "./media/characters/cintia/bust.svg",
  45120. extra: 617/565,
  45121. bottom: 0/617
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(5, "meters"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45135. {
  45136. side: {
  45137. height: math.unit(100, "feet"),
  45138. name: "Side",
  45139. image: {
  45140. source: "./media/characters/denora/side.svg",
  45141. extra: 875/803,
  45142. bottom: 9/884
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Standard",
  45149. height: math.unit(100, "feet"),
  45150. default: true
  45151. },
  45152. {
  45153. name: "Grand",
  45154. height: math.unit(1000, "feet")
  45155. },
  45156. {
  45157. name: "Conquering",
  45158. height: math.unit(10000, "feet")
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45164. {
  45165. dressed: {
  45166. height: math.unit(8 + 5/12, "feet"),
  45167. weight: math.unit(700, "lb"),
  45168. name: "Dressed",
  45169. image: {
  45170. source: "./media/characters/kiva/dressed.svg",
  45171. extra: 1102/1055,
  45172. bottom: 60/1162
  45173. }
  45174. },
  45175. nude: {
  45176. height: math.unit(8 + 5/12, "feet"),
  45177. weight: math.unit(700, "lb"),
  45178. name: "Nude",
  45179. image: {
  45180. source: "./media/characters/kiva/nude.svg",
  45181. extra: 1102/1055,
  45182. bottom: 60/1162
  45183. }
  45184. },
  45185. },
  45186. [
  45187. {
  45188. name: "Base Height",
  45189. height: math.unit(8 + 5/12, "feet"),
  45190. default: true
  45191. },
  45192. {
  45193. name: "Macro",
  45194. height: math.unit(100, "feet")
  45195. },
  45196. {
  45197. name: "Max",
  45198. height: math.unit(3280, "feet")
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45204. {
  45205. front: {
  45206. height: math.unit(6 + 8/12, "feet"),
  45207. weight: math.unit(250, "lb"),
  45208. name: "Front",
  45209. image: {
  45210. source: "./media/characters/ztragon/front.svg",
  45211. extra: 1825/1684,
  45212. bottom: 98/1923
  45213. }
  45214. },
  45215. },
  45216. [
  45217. {
  45218. name: "Normal",
  45219. height: math.unit(6 + 8/12, "feet"),
  45220. default: true
  45221. },
  45222. {
  45223. name: "Macro",
  45224. height: math.unit(80, "feet")
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45230. {
  45231. front: {
  45232. height: math.unit(10.4, "feet"),
  45233. weight: math.unit(2, "tons"),
  45234. name: "Front",
  45235. image: {
  45236. source: "./media/characters/yesenia/front.svg",
  45237. extra: 1479/1474,
  45238. bottom: 233/1712
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(10.4, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45252. {
  45253. normal: {
  45254. height: math.unit(6 + 1/12, "feet"),
  45255. weight: math.unit(180, "lb"),
  45256. name: "Normal",
  45257. image: {
  45258. source: "./media/characters/leanne-lycheborne/normal.svg",
  45259. extra: 1748/1660,
  45260. bottom: 98/1846
  45261. }
  45262. },
  45263. were: {
  45264. height: math.unit(12, "feet"),
  45265. weight: math.unit(1600, "lb"),
  45266. name: "Were",
  45267. image: {
  45268. source: "./media/characters/leanne-lycheborne/were.svg",
  45269. extra: 1485/1432,
  45270. bottom: 66/1551
  45271. }
  45272. },
  45273. },
  45274. [
  45275. {
  45276. name: "Normal",
  45277. height: math.unit(6 + 1/12, "feet"),
  45278. default: true
  45279. },
  45280. ]
  45281. ))
  45282. characterMakers.push(() => makeCharacter(
  45283. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45284. {
  45285. side: {
  45286. height: math.unit(13, "feet"),
  45287. name: "Side",
  45288. image: {
  45289. source: "./media/characters/kira-tyler/side.svg",
  45290. extra: 693/393,
  45291. bottom: 58/751
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Normal",
  45298. height: math.unit(13, "feet"),
  45299. default: true
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45305. {
  45306. front: {
  45307. height: math.unit(10.3, "feet"),
  45308. weight: math.unit(150, "lb"),
  45309. name: "Front",
  45310. image: {
  45311. source: "./media/characters/blaze/front.svg",
  45312. extra: 1378/1286,
  45313. bottom: 172/1550
  45314. }
  45315. },
  45316. },
  45317. [
  45318. {
  45319. name: "Normal",
  45320. height: math.unit(10.3, "feet"),
  45321. default: true
  45322. },
  45323. ]
  45324. ))
  45325. characterMakers.push(() => makeCharacter(
  45326. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45327. {
  45328. side: {
  45329. height: math.unit(2, "meters"),
  45330. weight: math.unit(400, "kg"),
  45331. name: "Side",
  45332. image: {
  45333. source: "./media/characters/anu/side.svg",
  45334. extra: 506/394,
  45335. bottom: 18/524
  45336. }
  45337. },
  45338. },
  45339. [
  45340. {
  45341. name: "Humanoid",
  45342. height: math.unit(2, "meters")
  45343. },
  45344. {
  45345. name: "Normal",
  45346. height: math.unit(5, "meters"),
  45347. default: true
  45348. },
  45349. ]
  45350. ))
  45351. characterMakers.push(() => makeCharacter(
  45352. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45353. {
  45354. front: {
  45355. height: math.unit(5 + 5/12, "feet"),
  45356. weight: math.unit(170, "lb"),
  45357. name: "Front",
  45358. image: {
  45359. source: "./media/characters/synx-the-lynx/front.svg",
  45360. extra: 1893/1745,
  45361. bottom: 17/1910
  45362. }
  45363. },
  45364. side: {
  45365. height: math.unit(5 + 5/12, "feet"),
  45366. weight: math.unit(170, "lb"),
  45367. name: "Side",
  45368. image: {
  45369. source: "./media/characters/synx-the-lynx/side.svg",
  45370. extra: 1884/1740,
  45371. bottom: 39/1923
  45372. }
  45373. },
  45374. back: {
  45375. height: math.unit(5 + 5/12, "feet"),
  45376. weight: math.unit(170, "lb"),
  45377. name: "Back",
  45378. image: {
  45379. source: "./media/characters/synx-the-lynx/back.svg",
  45380. extra: 1903/1755,
  45381. bottom: 14/1917
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(5 + 5/12, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45395. {
  45396. back: {
  45397. height: math.unit(15, "feet"),
  45398. name: "Back",
  45399. image: {
  45400. source: "./media/characters/nadezda-fex/back.svg",
  45401. extra: 1695/1481,
  45402. bottom: 25/1720
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(15, "feet"),
  45410. default: true
  45411. },
  45412. {
  45413. name: "Macro",
  45414. height: math.unit(2.5, "miles")
  45415. },
  45416. {
  45417. name: "Goddess",
  45418. height: math.unit(2, "multiverses")
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45424. {
  45425. front: {
  45426. height: math.unit(216, "cm"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/lev/front.svg",
  45430. extra: 1728/1670,
  45431. bottom: 82/1810
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(216, "cm"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/lev/back.svg",
  45439. extra: 1738/1675,
  45440. bottom: 24/1762
  45441. }
  45442. },
  45443. dressed: {
  45444. height: math.unit(216, "cm"),
  45445. name: "Dressed",
  45446. image: {
  45447. source: "./media/characters/lev/dressed.svg",
  45448. extra: 1397/1351,
  45449. bottom: 73/1470
  45450. }
  45451. },
  45452. head: {
  45453. height: math.unit(0.51, "meter"),
  45454. name: "Head",
  45455. image: {
  45456. source: "./media/characters/lev/head.svg"
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(216, "cm"),
  45464. default: true
  45465. },
  45466. {
  45467. name: "Relatively Macro",
  45468. height: math.unit(80, "meters")
  45469. },
  45470. {
  45471. name: "Megamacro",
  45472. height: math.unit(21600, "meters")
  45473. },
  45474. {
  45475. name: "Megamacro+",
  45476. height: math.unit(64800, "meters")
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(2, "meters"),
  45485. weight: math.unit(80, "kg"),
  45486. name: "Front",
  45487. image: {
  45488. source: "./media/characters/moka/front.svg",
  45489. extra: 1337/1255,
  45490. bottom: 58/1395
  45491. }
  45492. },
  45493. },
  45494. [
  45495. {
  45496. name: "Micro",
  45497. height: math.unit(15, "cm")
  45498. },
  45499. {
  45500. name: "Normal",
  45501. height: math.unit(2, "meters"),
  45502. default: true
  45503. },
  45504. {
  45505. name: "Macro",
  45506. height: math.unit(20, "meters"),
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45512. {
  45513. front: {
  45514. height: math.unit(9, "feet"),
  45515. weight: math.unit(240, "lb"),
  45516. name: "Front",
  45517. image: {
  45518. source: "./media/characters/kuzco/front.svg",
  45519. extra: 1593/1487,
  45520. bottom: 32/1625
  45521. }
  45522. },
  45523. side: {
  45524. height: math.unit(9, "feet"),
  45525. weight: math.unit(240, "lb"),
  45526. name: "Side",
  45527. image: {
  45528. source: "./media/characters/kuzco/side.svg",
  45529. extra: 1575/1485,
  45530. bottom: 30/1605
  45531. }
  45532. },
  45533. back: {
  45534. height: math.unit(9, "feet"),
  45535. weight: math.unit(240, "lb"),
  45536. name: "Back",
  45537. image: {
  45538. source: "./media/characters/kuzco/back.svg",
  45539. extra: 1603/1514,
  45540. bottom: 14/1617
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(9, "feet"),
  45548. default: true
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45554. {
  45555. side: {
  45556. height: math.unit(2, "meters"),
  45557. weight: math.unit(300, "kg"),
  45558. name: "Side",
  45559. image: {
  45560. source: "./media/characters/ceruleus/side.svg",
  45561. extra: 1068/974,
  45562. bottom: 126/1194
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(16, "meters"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(9, "feet"),
  45579. weight: math.unit(500, "kg"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/acouya/front.svg",
  45583. extra: 1660/1473,
  45584. bottom: 28/1688
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(9, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(5 + 6/12, "feet"),
  45601. weight: math.unit(195, "lb"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/vant/front.svg",
  45605. extra: 1396/1320,
  45606. bottom: 20/1416
  45607. }
  45608. },
  45609. back: {
  45610. height: math.unit(5 + 6/12, "feet"),
  45611. weight: math.unit(195, "lb"),
  45612. name: "Back",
  45613. image: {
  45614. source: "./media/characters/vant/back.svg",
  45615. extra: 1396/1320,
  45616. bottom: 20/1416
  45617. }
  45618. },
  45619. maw: {
  45620. height: math.unit(0.75, "feet"),
  45621. name: "Maw",
  45622. image: {
  45623. source: "./media/characters/vant/maw.svg"
  45624. }
  45625. },
  45626. paw: {
  45627. height: math.unit(1.07, "feet"),
  45628. name: "Paw",
  45629. image: {
  45630. source: "./media/characters/vant/paw.svg"
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Micro",
  45637. height: math.unit(0.25, "inches")
  45638. },
  45639. {
  45640. name: "Normal",
  45641. height: math.unit(5 + 6/12, "feet"),
  45642. default: true
  45643. },
  45644. {
  45645. name: "Macro",
  45646. height: math.unit(75, "feet")
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(30, "meters"),
  45655. weight: math.unit(363, "tons"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/ahra/front.svg",
  45659. extra: 1914/1814,
  45660. bottom: 46/1960
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Macro",
  45667. height: math.unit(30, "meters"),
  45668. default: true
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45674. {
  45675. undressed: {
  45676. height: math.unit(2, "m"),
  45677. weight: math.unit(250, "kg"),
  45678. name: "Undressed",
  45679. image: {
  45680. source: "./media/characters/coriander/undressed.svg",
  45681. extra: 1757/1606,
  45682. bottom: 107/1864
  45683. }
  45684. },
  45685. dressed: {
  45686. height: math.unit(2, "m"),
  45687. weight: math.unit(250, "kg"),
  45688. name: "Dressed",
  45689. image: {
  45690. source: "./media/characters/coriander/dressed.svg",
  45691. extra: 1757/1606,
  45692. bottom: 107/1864
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Normal",
  45699. height: math.unit(4, "meters"),
  45700. default: true
  45701. },
  45702. {
  45703. name: "XL",
  45704. height: math.unit(6, "meters")
  45705. },
  45706. {
  45707. name: "XXL",
  45708. height: math.unit(8, "meters")
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45714. {
  45715. front: {
  45716. height: math.unit(6, "feet"),
  45717. name: "Front",
  45718. image: {
  45719. source: "./media/characters/syrinx/front.svg",
  45720. extra: 1557/1259,
  45721. bottom: 171/1728
  45722. }
  45723. },
  45724. },
  45725. [
  45726. {
  45727. name: "Normal",
  45728. height: math.unit(6 + 3/12, "feet"),
  45729. default: true
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45735. {
  45736. front: {
  45737. height: math.unit(11 + 6/12, "feet"),
  45738. weight: math.unit(1.5, "tons"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/bor/front.svg",
  45742. extra: 1189/1109,
  45743. bottom: 170/1359
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(11 + 6/12, "feet"),
  45751. default: true
  45752. },
  45753. {
  45754. name: "Macro",
  45755. height: math.unit(32 + 9/12, "feet")
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45761. {
  45762. anthro: {
  45763. height: math.unit(9, "feet"),
  45764. weight: math.unit(2076, "lb"),
  45765. name: "Anthro",
  45766. image: {
  45767. source: "./media/characters/abacus/anthro.svg",
  45768. extra: 1540/1494,
  45769. bottom: 233/1773
  45770. }
  45771. },
  45772. pigeon: {
  45773. height: math.unit(1, "feet"),
  45774. name: "Pigeon",
  45775. image: {
  45776. source: "./media/characters/abacus/pigeon.svg",
  45777. extra: 528/525,
  45778. bottom: 46/574
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Normal",
  45785. height: math.unit(9, "feet"),
  45786. default: true
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45792. {
  45793. side: {
  45794. height: math.unit(6, "feet"),
  45795. name: "Side",
  45796. image: {
  45797. source: "./media/characters/delkhan/side.svg",
  45798. extra: 1884/1786,
  45799. bottom: 308/2192
  45800. }
  45801. },
  45802. head: {
  45803. height: math.unit(3.38, "feet"),
  45804. name: "Head",
  45805. image: {
  45806. source: "./media/characters/delkhan/head.svg"
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(72, "feet"),
  45814. default: true
  45815. },
  45816. {
  45817. name: "Giant",
  45818. height: math.unit(172, "feet")
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45824. {
  45825. standing: {
  45826. height: math.unit(6, "feet"),
  45827. name: "Standing",
  45828. image: {
  45829. source: "./media/characters/euchidat/standing.svg",
  45830. extra: 1612/1553,
  45831. bottom: 116/1728
  45832. }
  45833. },
  45834. leaning: {
  45835. height: math.unit(6, "feet"),
  45836. name: "Leaning",
  45837. image: {
  45838. source: "./media/characters/euchidat/leaning.svg",
  45839. extra: 1719/1674,
  45840. bottom: 27/1746
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(175, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Megamacro",
  45852. height: math.unit(190, "miles")
  45853. },
  45854. {
  45855. name: "Gigamacro",
  45856. height: math.unit(190000, "miles")
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(6, "feet"),
  45865. weight: math.unit(150, "lb"),
  45866. name: "Front",
  45867. image: {
  45868. source: "./media/characters/rebecca-stack/front.svg",
  45869. extra: 1256/1201,
  45870. bottom: 18/1274
  45871. }
  45872. },
  45873. },
  45874. [
  45875. {
  45876. name: "Normal",
  45877. height: math.unit(5 + 8/12, "feet"),
  45878. default: true
  45879. },
  45880. {
  45881. name: "Demolitionist",
  45882. height: math.unit(200, "feet")
  45883. },
  45884. {
  45885. name: "Out of Control",
  45886. height: math.unit(2, "miles")
  45887. },
  45888. {
  45889. name: "Giga",
  45890. height: math.unit(7200, "miles")
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45896. {
  45897. front: {
  45898. height: math.unit(6, "feet"),
  45899. weight: math.unit(150, "lb"),
  45900. name: "Front",
  45901. image: {
  45902. source: "./media/characters/jenny-cartwright/front.svg",
  45903. extra: 1384/1376,
  45904. bottom: 58/1442
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(6 + 7/12, "feet"),
  45912. default: true
  45913. },
  45914. {
  45915. name: "Librarian",
  45916. height: math.unit(55, "feet")
  45917. },
  45918. {
  45919. name: "Sightseer",
  45920. height: math.unit(50, "miles")
  45921. },
  45922. {
  45923. name: "Giga",
  45924. height: math.unit(30000, "miles")
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45930. {
  45931. nude: {
  45932. height: math.unit(8, "feet"),
  45933. weight: math.unit(225, "lb"),
  45934. name: "Nude",
  45935. image: {
  45936. source: "./media/characters/marvy/nude.svg",
  45937. extra: 1900/1683,
  45938. bottom: 89/1989
  45939. }
  45940. },
  45941. dressed: {
  45942. height: math.unit(8, "feet"),
  45943. weight: math.unit(225, "lb"),
  45944. name: "Dressed",
  45945. image: {
  45946. source: "./media/characters/marvy/dressed.svg",
  45947. extra: 1900/1683,
  45948. bottom: 89/1989
  45949. }
  45950. },
  45951. head: {
  45952. height: math.unit(2.85, "feet"),
  45953. name: "Head",
  45954. image: {
  45955. source: "./media/characters/marvy/head.svg"
  45956. }
  45957. },
  45958. },
  45959. [
  45960. {
  45961. name: "Normal",
  45962. height: math.unit(8, "feet"),
  45963. default: true
  45964. },
  45965. ]
  45966. ))
  45967. characterMakers.push(() => makeCharacter(
  45968. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45969. {
  45970. front: {
  45971. height: math.unit(8, "feet"),
  45972. weight: math.unit(250, "lb"),
  45973. name: "Front",
  45974. image: {
  45975. source: "./media/characters/leah/front.svg",
  45976. extra: 1257/1149,
  45977. bottom: 109/1366
  45978. }
  45979. },
  45980. },
  45981. [
  45982. {
  45983. name: "Normal",
  45984. height: math.unit(8, "feet"),
  45985. default: true
  45986. },
  45987. {
  45988. name: "Minimacro",
  45989. height: math.unit(40, "feet")
  45990. },
  45991. {
  45992. name: "Macro",
  45993. height: math.unit(124, "feet")
  45994. },
  45995. {
  45996. name: "Megamacro",
  45997. height: math.unit(850, "feet")
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46003. {
  46004. side: {
  46005. height: math.unit(13 + 6/12, "feet"),
  46006. weight: math.unit(3200, "lb"),
  46007. name: "Side",
  46008. image: {
  46009. source: "./media/characters/alvir/side.svg",
  46010. extra: 896/589,
  46011. bottom: 26/922
  46012. }
  46013. },
  46014. },
  46015. [
  46016. {
  46017. name: "Normal",
  46018. height: math.unit(13 + 6/12, "feet"),
  46019. default: true
  46020. },
  46021. ]
  46022. ))
  46023. characterMakers.push(() => makeCharacter(
  46024. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46025. {
  46026. front: {
  46027. height: math.unit(5 + 4/12, "feet"),
  46028. weight: math.unit(236, "lb"),
  46029. name: "Front",
  46030. image: {
  46031. source: "./media/characters/zaina-khalil/front.svg",
  46032. extra: 1533/1485,
  46033. bottom: 94/1627
  46034. }
  46035. },
  46036. side: {
  46037. height: math.unit(5 + 4/12, "feet"),
  46038. weight: math.unit(236, "lb"),
  46039. name: "Side",
  46040. image: {
  46041. source: "./media/characters/zaina-khalil/side.svg",
  46042. extra: 1537/1498,
  46043. bottom: 66/1603
  46044. }
  46045. },
  46046. back: {
  46047. height: math.unit(5 + 4/12, "feet"),
  46048. weight: math.unit(236, "lb"),
  46049. name: "Back",
  46050. image: {
  46051. source: "./media/characters/zaina-khalil/back.svg",
  46052. extra: 1546/1494,
  46053. bottom: 89/1635
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(5 + 4/12, "feet"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46067. {
  46068. side: {
  46069. height: math.unit(12, "feet"),
  46070. weight: math.unit(4000, "lb"),
  46071. name: "Side",
  46072. image: {
  46073. source: "./media/characters/terry/side.svg",
  46074. extra: 1518/1439,
  46075. bottom: 149/1667
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "Normal",
  46082. height: math.unit(12, "feet"),
  46083. default: true
  46084. },
  46085. ]
  46086. ))
  46087. characterMakers.push(() => makeCharacter(
  46088. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46089. {
  46090. front: {
  46091. height: math.unit(12, "feet"),
  46092. weight: math.unit(1500, "lb"),
  46093. name: "Front",
  46094. image: {
  46095. source: "./media/characters/kahea/front.svg",
  46096. extra: 1722/1617,
  46097. bottom: 179/1901
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(12, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46111. {
  46112. demonFront: {
  46113. height: math.unit(36, "feet"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/alex-xuria/demon-front.svg",
  46117. extra: 1705/1673,
  46118. bottom: 198/1903
  46119. },
  46120. form: "demon",
  46121. default: true
  46122. },
  46123. demonBack: {
  46124. height: math.unit(36, "feet"),
  46125. name: "Back",
  46126. image: {
  46127. source: "./media/characters/alex-xuria/demon-back.svg",
  46128. extra: 1725/1693,
  46129. bottom: 70/1795
  46130. },
  46131. form: "demon"
  46132. },
  46133. demonHead: {
  46134. height: math.unit(2.14, "meters"),
  46135. name: "Head",
  46136. image: {
  46137. source: "./media/characters/alex-xuria/demon-head.svg"
  46138. },
  46139. form: "demon"
  46140. },
  46141. demonHand: {
  46142. height: math.unit(1.61, "meters"),
  46143. name: "Hand",
  46144. image: {
  46145. source: "./media/characters/alex-xuria/demon-hand.svg"
  46146. },
  46147. form: "demon"
  46148. },
  46149. demonPaw: {
  46150. height: math.unit(1.35, "meters"),
  46151. name: "Paw",
  46152. image: {
  46153. source: "./media/characters/alex-xuria/demon-paw.svg"
  46154. },
  46155. form: "demon"
  46156. },
  46157. demonFoot: {
  46158. height: math.unit(2.2, "meters"),
  46159. name: "Foot",
  46160. image: {
  46161. source: "./media/characters/alex-xuria/demon-foot.svg"
  46162. },
  46163. form: "demon"
  46164. },
  46165. demonCock: {
  46166. height: math.unit(1.74, "meters"),
  46167. name: "Cock",
  46168. image: {
  46169. source: "./media/characters/alex-xuria/demon-cock.svg"
  46170. },
  46171. form: "demon"
  46172. },
  46173. demonTailClosed: {
  46174. height: math.unit(1.47, "meters"),
  46175. name: "Tail (Closed)",
  46176. image: {
  46177. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46178. },
  46179. form: "demon"
  46180. },
  46181. demonTailOpen: {
  46182. height: math.unit(2.85, "meters"),
  46183. name: "Tail (Open)",
  46184. image: {
  46185. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46186. },
  46187. form: "demon"
  46188. },
  46189. incubusFront: {
  46190. height: math.unit(12, "feet"),
  46191. name: "Front",
  46192. image: {
  46193. source: "./media/characters/alex-xuria/incubus-front.svg",
  46194. extra: 1754/1677,
  46195. bottom: 125/1879
  46196. },
  46197. form: "incubus",
  46198. default: true
  46199. },
  46200. incubusBack: {
  46201. height: math.unit(12, "feet"),
  46202. name: "Back",
  46203. image: {
  46204. source: "./media/characters/alex-xuria/incubus-back.svg",
  46205. extra: 1702/1647,
  46206. bottom: 30/1732
  46207. },
  46208. form: "incubus"
  46209. },
  46210. incubusHead: {
  46211. height: math.unit(3.45, "feet"),
  46212. name: "Head",
  46213. image: {
  46214. source: "./media/characters/alex-xuria/incubus-head.svg"
  46215. },
  46216. form: "incubus"
  46217. },
  46218. rabbitFront: {
  46219. height: math.unit(6, "feet"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46223. extra: 1369/1349,
  46224. bottom: 45/1414
  46225. },
  46226. form: "rabbit",
  46227. default: true
  46228. },
  46229. rabbitSide: {
  46230. height: math.unit(6, "feet"),
  46231. name: "Side",
  46232. image: {
  46233. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46234. extra: 1370/1356,
  46235. bottom: 37/1407
  46236. },
  46237. form: "rabbit"
  46238. },
  46239. rabbitBack: {
  46240. height: math.unit(6, "feet"),
  46241. name: "Back",
  46242. image: {
  46243. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46244. extra: 1375/1358,
  46245. bottom: 43/1418
  46246. },
  46247. form: "rabbit"
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Normal",
  46253. height: math.unit(6, "feet"),
  46254. default: true,
  46255. form: "rabbit"
  46256. },
  46257. {
  46258. name: "Incubus",
  46259. height: math.unit(12, "feet"),
  46260. default: true,
  46261. form: "incubus"
  46262. },
  46263. {
  46264. name: "Demon",
  46265. height: math.unit(36, "feet"),
  46266. default: true,
  46267. form: "demon"
  46268. }
  46269. ],
  46270. {
  46271. "demon": {
  46272. name: "Demon",
  46273. default: true
  46274. },
  46275. "incubus": {
  46276. name: "Incubus",
  46277. },
  46278. "rabbit": {
  46279. name: "Rabbit"
  46280. }
  46281. }
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(7 + 5/12, "feet"),
  46288. weight: math.unit(510, "lb"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/syrup/front.svg",
  46292. extra: 932/916,
  46293. bottom: 26/958
  46294. }
  46295. },
  46296. },
  46297. [
  46298. {
  46299. name: "Normal",
  46300. height: math.unit(7 + 5/12, "feet"),
  46301. default: true
  46302. },
  46303. {
  46304. name: "Big",
  46305. height: math.unit(50, "feet")
  46306. },
  46307. {
  46308. name: "Macro",
  46309. height: math.unit(300, "feet")
  46310. },
  46311. {
  46312. name: "Megamacro",
  46313. height: math.unit(1, "mile")
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46319. {
  46320. front: {
  46321. height: math.unit(6 + 9/12, "feet"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/zeimne/front.svg",
  46325. extra: 1969/1806,
  46326. bottom: 53/2022
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Normal",
  46333. height: math.unit(6 + 9/12, "feet"),
  46334. default: true
  46335. },
  46336. {
  46337. name: "Giant",
  46338. height: math.unit(550, "feet")
  46339. },
  46340. {
  46341. name: "Mega",
  46342. height: math.unit(3, "miles")
  46343. },
  46344. {
  46345. name: "Giga",
  46346. height: math.unit(250, "miles")
  46347. },
  46348. {
  46349. name: "Tera",
  46350. height: math.unit(1, "AU")
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(5 + 2/12, "feet"),
  46359. name: "Front",
  46360. image: {
  46361. source: "./media/characters/grar/front.svg",
  46362. extra: 1331/1119,
  46363. bottom: 60/1391
  46364. }
  46365. },
  46366. back: {
  46367. height: math.unit(5 + 2/12, "feet"),
  46368. name: "Back",
  46369. image: {
  46370. source: "./media/characters/grar/back.svg",
  46371. extra: 1385/1169,
  46372. bottom: 23/1408
  46373. }
  46374. },
  46375. },
  46376. [
  46377. {
  46378. name: "Normal",
  46379. height: math.unit(5 + 2/12, "feet"),
  46380. default: true
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46386. {
  46387. front: {
  46388. height: math.unit(13 + 7/12, "feet"),
  46389. weight: math.unit(2200, "lb"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/endraya/front.svg",
  46393. extra: 1289/1215,
  46394. bottom: 50/1339
  46395. }
  46396. },
  46397. nude: {
  46398. height: math.unit(13 + 7/12, "feet"),
  46399. weight: math.unit(2200, "lb"),
  46400. name: "Nude",
  46401. image: {
  46402. source: "./media/characters/endraya/nude.svg",
  46403. extra: 1247/1171,
  46404. bottom: 40/1287
  46405. }
  46406. },
  46407. head: {
  46408. height: math.unit(2.6, "feet"),
  46409. name: "Head",
  46410. image: {
  46411. source: "./media/characters/endraya/head.svg"
  46412. }
  46413. },
  46414. slit: {
  46415. height: math.unit(3.4, "feet"),
  46416. name: "Slit",
  46417. image: {
  46418. source: "./media/characters/endraya/slit.svg"
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Normal",
  46425. height: math.unit(13 + 7/12, "feet"),
  46426. default: true
  46427. },
  46428. {
  46429. name: "Macro",
  46430. height: math.unit(200, "feet")
  46431. },
  46432. ]
  46433. ))
  46434. characterMakers.push(() => makeCharacter(
  46435. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46436. {
  46437. front: {
  46438. height: math.unit(1.81, "meters"),
  46439. weight: math.unit(69, "kg"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/rodryana/front.svg",
  46443. extra: 2002/1921,
  46444. bottom: 53/2055
  46445. }
  46446. },
  46447. back: {
  46448. height: math.unit(1.81, "meters"),
  46449. weight: math.unit(69, "kg"),
  46450. name: "Back",
  46451. image: {
  46452. source: "./media/characters/rodryana/back.svg",
  46453. extra: 1993/1926,
  46454. bottom: 48/2041
  46455. }
  46456. },
  46457. maw: {
  46458. height: math.unit(0.19769417475, "meters"),
  46459. name: "Maw",
  46460. image: {
  46461. source: "./media/characters/rodryana/maw.svg"
  46462. }
  46463. },
  46464. slit: {
  46465. height: math.unit(0.31631067961, "meters"),
  46466. name: "Slit",
  46467. image: {
  46468. source: "./media/characters/rodryana/slit.svg"
  46469. }
  46470. },
  46471. },
  46472. [
  46473. {
  46474. name: "Normal",
  46475. height: math.unit(1.81, "meters")
  46476. },
  46477. {
  46478. name: "Mini Macro",
  46479. height: math.unit(181, "meters")
  46480. },
  46481. {
  46482. name: "Macro",
  46483. height: math.unit(452, "meters"),
  46484. default: true
  46485. },
  46486. {
  46487. name: "Mega Macro",
  46488. height: math.unit(1.375, "km")
  46489. },
  46490. {
  46491. name: "Giga Macro",
  46492. height: math.unit(13.575, "km")
  46493. },
  46494. ]
  46495. ))
  46496. characterMakers.push(() => makeCharacter(
  46497. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46498. {
  46499. front: {
  46500. height: math.unit(6, "feet"),
  46501. weight: math.unit(1000, "lb"),
  46502. name: "Front",
  46503. image: {
  46504. source: "./media/characters/asaya/front.svg",
  46505. extra: 1460/1200,
  46506. bottom: 71/1531
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Normal",
  46513. height: math.unit(8, "km"),
  46514. default: true
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46520. {
  46521. front: {
  46522. height: math.unit(3.5, "meters"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/sarzu-and-israz/front.svg",
  46526. extra: 1570/1558,
  46527. bottom: 150/1720
  46528. },
  46529. },
  46530. back: {
  46531. height: math.unit(3.5, "meters"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/sarzu-and-israz/back.svg",
  46535. extra: 1523/1509,
  46536. bottom: 132/1655
  46537. },
  46538. },
  46539. frontFemale: {
  46540. height: math.unit(3.5, "meters"),
  46541. name: "Front (Female)",
  46542. image: {
  46543. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46544. extra: 1570/1558,
  46545. bottom: 150/1720
  46546. },
  46547. },
  46548. frontHerm: {
  46549. height: math.unit(3.5, "meters"),
  46550. name: "Front (Herm)",
  46551. image: {
  46552. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46553. extra: 1570/1558,
  46554. bottom: 150/1720
  46555. },
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(3.5, "meters"),
  46562. default: true,
  46563. },
  46564. {
  46565. name: "Macro",
  46566. height: math.unit(65.5, "meters"),
  46567. },
  46568. ],
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(6, "feet"),
  46575. weight: math.unit(250, "lb"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/zenimma/front.svg",
  46579. extra: 1346/1320,
  46580. bottom: 58/1404
  46581. }
  46582. },
  46583. back: {
  46584. height: math.unit(6, "feet"),
  46585. weight: math.unit(250, "lb"),
  46586. name: "Back",
  46587. image: {
  46588. source: "./media/characters/zenimma/back.svg",
  46589. extra: 1324/1308,
  46590. bottom: 44/1368
  46591. }
  46592. },
  46593. dick: {
  46594. height: math.unit(1.44, "feet"),
  46595. name: "Dick",
  46596. image: {
  46597. source: "./media/characters/zenimma/dick.svg"
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Canon Height",
  46604. height: math.unit(66, "miles"),
  46605. default: true
  46606. },
  46607. ]
  46608. ))
  46609. characterMakers.push(() => makeCharacter(
  46610. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46611. {
  46612. nude: {
  46613. height: math.unit(6, "feet"),
  46614. weight: math.unit(150, "lb"),
  46615. name: "Nude",
  46616. image: {
  46617. source: "./media/characters/shavon/nude.svg",
  46618. extra: 1242/1096,
  46619. bottom: 98/1340
  46620. }
  46621. },
  46622. dressed: {
  46623. height: math.unit(6, "feet"),
  46624. weight: math.unit(150, "lb"),
  46625. name: "Dressed",
  46626. image: {
  46627. source: "./media/characters/shavon/dressed.svg",
  46628. extra: 1242/1096,
  46629. bottom: 98/1340
  46630. }
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Macro",
  46636. height: math.unit(255, "feet"),
  46637. default: true
  46638. },
  46639. ]
  46640. ))
  46641. characterMakers.push(() => makeCharacter(
  46642. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46643. {
  46644. front: {
  46645. height: math.unit(6, "feet"),
  46646. name: "Front",
  46647. image: {
  46648. source: "./media/characters/steph/front.svg",
  46649. extra: 1430/1330,
  46650. bottom: 54/1484
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(6, "feet"),
  46658. default: true
  46659. },
  46660. ]
  46661. ))
  46662. characterMakers.push(() => makeCharacter(
  46663. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46664. {
  46665. front: {
  46666. height: math.unit(9, "feet"),
  46667. weight: math.unit(400, "lb"),
  46668. name: "Front",
  46669. image: {
  46670. source: "./media/characters/kil'aman/front.svg",
  46671. extra: 1210/1159,
  46672. bottom: 109/1319
  46673. }
  46674. },
  46675. head: {
  46676. height: math.unit(2.14, "feet"),
  46677. name: "Head",
  46678. image: {
  46679. source: "./media/characters/kil'aman/head.svg"
  46680. }
  46681. },
  46682. maw: {
  46683. height: math.unit(1.21, "feet"),
  46684. name: "Maw",
  46685. image: {
  46686. source: "./media/characters/kil'aman/maw.svg"
  46687. }
  46688. },
  46689. foot: {
  46690. height: math.unit(1.7, "feet"),
  46691. name: "Foot",
  46692. image: {
  46693. source: "./media/characters/kil'aman/foot.svg"
  46694. }
  46695. },
  46696. dick: {
  46697. height: math.unit(2.1, "feet"),
  46698. name: "Dick",
  46699. image: {
  46700. source: "./media/characters/kil'aman/dick.svg"
  46701. }
  46702. },
  46703. },
  46704. [
  46705. {
  46706. name: "Normal",
  46707. height: math.unit(9, "feet")
  46708. },
  46709. {
  46710. name: "Canon Height",
  46711. height: math.unit(10, "miles"),
  46712. default: true
  46713. },
  46714. {
  46715. name: "Maximum",
  46716. height: math.unit(6e9, "miles")
  46717. },
  46718. ]
  46719. ))
  46720. characterMakers.push(() => makeCharacter(
  46721. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46722. {
  46723. front: {
  46724. height: math.unit(90, "feet"),
  46725. weight: math.unit(675000, "lb"),
  46726. name: "Front",
  46727. image: {
  46728. source: "./media/characters/qadan/front.svg",
  46729. extra: 1012/1004,
  46730. bottom: 78/1090
  46731. }
  46732. },
  46733. back: {
  46734. height: math.unit(90, "feet"),
  46735. weight: math.unit(675000, "lb"),
  46736. name: "Back",
  46737. image: {
  46738. source: "./media/characters/qadan/back.svg",
  46739. extra: 1042/1031,
  46740. bottom: 55/1097
  46741. }
  46742. },
  46743. armored: {
  46744. height: math.unit(90, "feet"),
  46745. weight: math.unit(675000, "lb"),
  46746. name: "Armored",
  46747. image: {
  46748. source: "./media/characters/qadan/armored.svg",
  46749. extra: 1047/1037,
  46750. bottom: 48/1095
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Normal",
  46757. height: math.unit(90, "feet"),
  46758. default: true
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46764. {
  46765. front: {
  46766. height: math.unit(6, "feet"),
  46767. weight: math.unit(225, "lb"),
  46768. name: "Front",
  46769. image: {
  46770. source: "./media/characters/brooke/front.svg",
  46771. extra: 1050/1010,
  46772. bottom: 66/1116
  46773. }
  46774. },
  46775. back: {
  46776. height: math.unit(6, "feet"),
  46777. weight: math.unit(225, "lb"),
  46778. name: "Back",
  46779. image: {
  46780. source: "./media/characters/brooke/back.svg",
  46781. extra: 1053/1013,
  46782. bottom: 41/1094
  46783. }
  46784. },
  46785. dressed: {
  46786. height: math.unit(6, "feet"),
  46787. weight: math.unit(225, "lb"),
  46788. name: "Dressed",
  46789. image: {
  46790. source: "./media/characters/brooke/dressed.svg",
  46791. extra: 1050/1010,
  46792. bottom: 66/1116
  46793. }
  46794. },
  46795. },
  46796. [
  46797. {
  46798. name: "Canon Height",
  46799. height: math.unit(500, "miles"),
  46800. default: true
  46801. },
  46802. ]
  46803. ))
  46804. characterMakers.push(() => makeCharacter(
  46805. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46806. {
  46807. front: {
  46808. height: math.unit(6 + 2/12, "feet"),
  46809. weight: math.unit(210, "lb"),
  46810. name: "Front",
  46811. image: {
  46812. source: "./media/characters/wubs/front.svg",
  46813. extra: 1345/1325,
  46814. bottom: 70/1415
  46815. }
  46816. },
  46817. back: {
  46818. height: math.unit(6 + 2/12, "feet"),
  46819. weight: math.unit(210, "lb"),
  46820. name: "Back",
  46821. image: {
  46822. source: "./media/characters/wubs/back.svg",
  46823. extra: 1296/1275,
  46824. bottom: 58/1354
  46825. }
  46826. },
  46827. },
  46828. [
  46829. {
  46830. name: "Normal",
  46831. height: math.unit(6 + 2/12, "feet"),
  46832. default: true
  46833. },
  46834. {
  46835. name: "Macro",
  46836. height: math.unit(1000, "feet")
  46837. },
  46838. {
  46839. name: "Megamacro",
  46840. height: math.unit(1, "mile")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(4, "feet"),
  46849. weight: math.unit(120, "lb"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/blue/front.svg",
  46853. extra: 1636/1525,
  46854. bottom: 43/1679
  46855. }
  46856. },
  46857. back: {
  46858. height: math.unit(4, "feet"),
  46859. weight: math.unit(120, "lb"),
  46860. name: "Back",
  46861. image: {
  46862. source: "./media/characters/blue/back.svg",
  46863. extra: 1660/1560,
  46864. bottom: 57/1717
  46865. }
  46866. },
  46867. paws: {
  46868. height: math.unit(0.826, "feet"),
  46869. name: "Paws",
  46870. image: {
  46871. source: "./media/characters/blue/paws.svg"
  46872. }
  46873. },
  46874. },
  46875. [
  46876. {
  46877. name: "Micro",
  46878. height: math.unit(3, "inches")
  46879. },
  46880. {
  46881. name: "Normal",
  46882. height: math.unit(4, "feet"),
  46883. default: true
  46884. },
  46885. {
  46886. name: "Femenine Form",
  46887. height: math.unit(14, "feet")
  46888. },
  46889. {
  46890. name: "Werebat Form",
  46891. height: math.unit(18, "feet")
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46897. {
  46898. female: {
  46899. height: math.unit(7 + 4/12, "feet"),
  46900. weight: math.unit(243, "lb"),
  46901. name: "Female",
  46902. image: {
  46903. source: "./media/characters/kaya/female.svg",
  46904. extra: 975/898,
  46905. bottom: 34/1009
  46906. }
  46907. },
  46908. herm: {
  46909. height: math.unit(7 + 4/12, "feet"),
  46910. weight: math.unit(243, "lb"),
  46911. name: "Herm",
  46912. image: {
  46913. source: "./media/characters/kaya/herm.svg",
  46914. extra: 975/898,
  46915. bottom: 34/1009
  46916. }
  46917. },
  46918. },
  46919. [
  46920. {
  46921. name: "Normal",
  46922. height: math.unit(7 + 4/12, "feet"),
  46923. default: true
  46924. },
  46925. ]
  46926. ))
  46927. characterMakers.push(() => makeCharacter(
  46928. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46929. {
  46930. female: {
  46931. height: math.unit(9 + 4/12, "feet"),
  46932. weight: math.unit(398, "lb"),
  46933. name: "Female",
  46934. image: {
  46935. source: "./media/characters/kassandra/female.svg",
  46936. extra: 908/839,
  46937. bottom: 61/969
  46938. }
  46939. },
  46940. intersex: {
  46941. height: math.unit(9 + 4/12, "feet"),
  46942. weight: math.unit(398, "lb"),
  46943. name: "Intersex",
  46944. image: {
  46945. source: "./media/characters/kassandra/intersex.svg",
  46946. extra: 908/839,
  46947. bottom: 61/969
  46948. }
  46949. },
  46950. },
  46951. [
  46952. {
  46953. name: "Normal",
  46954. height: math.unit(9 + 4/12, "feet"),
  46955. default: true
  46956. },
  46957. ]
  46958. ))
  46959. characterMakers.push(() => makeCharacter(
  46960. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46961. {
  46962. front: {
  46963. height: math.unit(3, "meters"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/amy/front.svg",
  46967. extra: 1380/1343,
  46968. bottom: 70/1450
  46969. }
  46970. },
  46971. back: {
  46972. height: math.unit(3, "meters"),
  46973. name: "Back",
  46974. image: {
  46975. source: "./media/characters/amy/back.svg",
  46976. extra: 1380/1347,
  46977. bottom: 66/1446
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(3, "meters"),
  46985. default: true
  46986. },
  46987. ]
  46988. ))
  46989. characterMakers.push(() => makeCharacter(
  46990. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46991. {
  46992. side: {
  46993. height: math.unit(47, "cm"),
  46994. weight: math.unit(10.8, "kg"),
  46995. name: "Side",
  46996. image: {
  46997. source: "./media/characters/alphaschakal/side.svg",
  46998. extra: 1058/568,
  46999. bottom: 62/1120
  47000. }
  47001. },
  47002. back: {
  47003. height: math.unit(78, "cm"),
  47004. weight: math.unit(10.8, "kg"),
  47005. name: "Back",
  47006. image: {
  47007. source: "./media/characters/alphaschakal/back.svg",
  47008. extra: 1102/942,
  47009. bottom: 185/1287
  47010. }
  47011. },
  47012. head: {
  47013. height: math.unit(28, "cm"),
  47014. name: "Head",
  47015. image: {
  47016. source: "./media/characters/alphaschakal/head.svg",
  47017. extra: 696/508,
  47018. bottom: 0/696
  47019. }
  47020. },
  47021. paw: {
  47022. height: math.unit(16, "cm"),
  47023. name: "Paw",
  47024. image: {
  47025. source: "./media/characters/alphaschakal/paw.svg"
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Normal",
  47032. height: math.unit(47, "cm"),
  47033. default: true
  47034. },
  47035. {
  47036. name: "Macro",
  47037. height: math.unit(340, "cm")
  47038. },
  47039. ]
  47040. ))
  47041. characterMakers.push(() => makeCharacter(
  47042. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47043. {
  47044. front: {
  47045. height: math.unit(36, "earths"),
  47046. name: "Front",
  47047. image: {
  47048. source: "./media/characters/ecobyss/front.svg",
  47049. extra: 1282/1215,
  47050. bottom: 11/1293
  47051. }
  47052. },
  47053. back: {
  47054. height: math.unit(36, "earths"),
  47055. name: "Back",
  47056. image: {
  47057. source: "./media/characters/ecobyss/back.svg",
  47058. extra: 1291/1222,
  47059. bottom: 8/1299
  47060. }
  47061. },
  47062. },
  47063. [
  47064. {
  47065. name: "Normal",
  47066. height: math.unit(36, "earths"),
  47067. default: true
  47068. },
  47069. ]
  47070. ))
  47071. characterMakers.push(() => makeCharacter(
  47072. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47073. {
  47074. front: {
  47075. height: math.unit(12, "feet"),
  47076. name: "Front",
  47077. image: {
  47078. source: "./media/characters/vasuk/front.svg",
  47079. extra: 1326/1207,
  47080. bottom: 64/1390
  47081. }
  47082. },
  47083. },
  47084. [
  47085. {
  47086. name: "Normal",
  47087. height: math.unit(12, "feet"),
  47088. default: true
  47089. },
  47090. ]
  47091. ))
  47092. characterMakers.push(() => makeCharacter(
  47093. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47094. {
  47095. side: {
  47096. height: math.unit(100, "feet"),
  47097. name: "Side",
  47098. image: {
  47099. source: "./media/characters/linneaus/side.svg",
  47100. extra: 987/807,
  47101. bottom: 47/1034
  47102. }
  47103. },
  47104. },
  47105. [
  47106. {
  47107. name: "Macro",
  47108. height: math.unit(100, "feet"),
  47109. default: true
  47110. },
  47111. ]
  47112. ))
  47113. characterMakers.push(() => makeCharacter(
  47114. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47115. {
  47116. front: {
  47117. height: math.unit(8, "feet"),
  47118. weight: math.unit(1200, "lb"),
  47119. name: "Front",
  47120. image: {
  47121. source: "./media/characters/nyterious-daligdig/front.svg",
  47122. extra: 1284/1094,
  47123. bottom: 84/1368
  47124. }
  47125. },
  47126. back: {
  47127. height: math.unit(8, "feet"),
  47128. weight: math.unit(1200, "lb"),
  47129. name: "Back",
  47130. image: {
  47131. source: "./media/characters/nyterious-daligdig/back.svg",
  47132. extra: 1301/1121,
  47133. bottom: 129/1430
  47134. }
  47135. },
  47136. mouth: {
  47137. height: math.unit(1.464, "feet"),
  47138. name: "Mouth",
  47139. image: {
  47140. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Small",
  47147. height: math.unit(8, "feet"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Normal",
  47152. height: math.unit(15, "feet")
  47153. },
  47154. {
  47155. name: "Macro",
  47156. height: math.unit(90, "feet")
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(7 + 4/12, "feet"),
  47165. weight: math.unit(252, "lb"),
  47166. name: "Front",
  47167. image: {
  47168. source: "./media/characters/bandel/front.svg",
  47169. extra: 1946/1775,
  47170. bottom: 26/1972
  47171. }
  47172. },
  47173. back: {
  47174. height: math.unit(7 + 4/12, "feet"),
  47175. weight: math.unit(252, "lb"),
  47176. name: "Back",
  47177. image: {
  47178. source: "./media/characters/bandel/back.svg",
  47179. extra: 1940/1770,
  47180. bottom: 25/1965
  47181. }
  47182. },
  47183. maw: {
  47184. height: math.unit(2.15, "feet"),
  47185. name: "Maw",
  47186. image: {
  47187. source: "./media/characters/bandel/maw.svg"
  47188. }
  47189. },
  47190. stomach: {
  47191. height: math.unit(1.95, "feet"),
  47192. name: "Stomach",
  47193. image: {
  47194. source: "./media/characters/bandel/stomach.svg"
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(7 + 4/12, "feet"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(10 + 5/12, "feet"),
  47211. weight: math.unit(773.5, "kg"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/zed/front.svg",
  47215. extra: 987/941,
  47216. bottom: 52/1039
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Short",
  47223. height: math.unit(5 + 4/12, "feet")
  47224. },
  47225. {
  47226. name: "Average",
  47227. height: math.unit(10 + 5/12, "feet"),
  47228. default: true
  47229. },
  47230. {
  47231. name: "Mini-Macro",
  47232. height: math.unit(24 + 9/12, "feet")
  47233. },
  47234. {
  47235. name: "Macro",
  47236. height: math.unit(249, "feet")
  47237. },
  47238. {
  47239. name: "Mega-Macro",
  47240. height: math.unit(12490, "feet")
  47241. },
  47242. {
  47243. name: "Giga-Macro",
  47244. height: math.unit(24.9, "miles")
  47245. },
  47246. {
  47247. name: "Tera-Macro",
  47248. height: math.unit(24900, "miles")
  47249. },
  47250. {
  47251. name: "Cosmic Scale",
  47252. height: math.unit(38.9, "lightyears")
  47253. },
  47254. {
  47255. name: "Universal Scale",
  47256. height: math.unit(138e12, "lightyears")
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47262. {
  47263. front: {
  47264. height: math.unit(1561, "inches"),
  47265. name: "Front",
  47266. image: {
  47267. source: "./media/characters/ivan/front.svg",
  47268. extra: 1126/1071,
  47269. bottom: 26/1152
  47270. }
  47271. },
  47272. back: {
  47273. height: math.unit(1561, "inches"),
  47274. name: "Back",
  47275. image: {
  47276. source: "./media/characters/ivan/back.svg",
  47277. extra: 1134/1079,
  47278. bottom: 30/1164
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Normal",
  47285. height: math.unit(1561, "inches"),
  47286. default: true
  47287. },
  47288. ]
  47289. ))
  47290. characterMakers.push(() => makeCharacter(
  47291. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47292. {
  47293. front: {
  47294. height: math.unit(5 + 7/12, "feet"),
  47295. weight: math.unit(150, "lb"),
  47296. name: "Front",
  47297. image: {
  47298. source: "./media/characters/robin-arctic-hare/front.svg",
  47299. extra: 1148/974,
  47300. bottom: 20/1168
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Normal",
  47307. height: math.unit(5 + 7/12, "feet"),
  47308. default: true
  47309. },
  47310. ]
  47311. ))
  47312. characterMakers.push(() => makeCharacter(
  47313. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47314. {
  47315. side: {
  47316. height: math.unit(5, "feet"),
  47317. name: "Side",
  47318. image: {
  47319. source: "./media/characters/birch/side.svg",
  47320. extra: 985/796,
  47321. bottom: 111/1096
  47322. }
  47323. },
  47324. },
  47325. [
  47326. {
  47327. name: "Normal",
  47328. height: math.unit(5, "feet"),
  47329. default: true
  47330. },
  47331. ]
  47332. ))
  47333. characterMakers.push(() => makeCharacter(
  47334. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47335. {
  47336. front: {
  47337. height: math.unit(4, "feet"),
  47338. name: "Front",
  47339. image: {
  47340. source: "./media/characters/rasp/front.svg",
  47341. extra: 561/478,
  47342. bottom: 74/635
  47343. }
  47344. },
  47345. },
  47346. [
  47347. {
  47348. name: "Normal",
  47349. height: math.unit(4, "feet"),
  47350. default: true
  47351. },
  47352. ]
  47353. ))
  47354. characterMakers.push(() => makeCharacter(
  47355. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47356. {
  47357. front: {
  47358. height: math.unit(4 + 6/12, "feet"),
  47359. name: "Front",
  47360. image: {
  47361. source: "./media/characters/agatha/front.svg",
  47362. extra: 947/933,
  47363. bottom: 42/989
  47364. }
  47365. },
  47366. back: {
  47367. height: math.unit(4 + 6/12, "feet"),
  47368. name: "Back",
  47369. image: {
  47370. source: "./media/characters/agatha/back.svg",
  47371. extra: 935/922,
  47372. bottom: 48/983
  47373. }
  47374. },
  47375. },
  47376. [
  47377. {
  47378. name: "Normal",
  47379. height: math.unit(4 + 6 /12, "feet"),
  47380. default: true
  47381. },
  47382. {
  47383. name: "Max Size",
  47384. height: math.unit(500, "feet")
  47385. },
  47386. ]
  47387. ))
  47388. characterMakers.push(() => makeCharacter(
  47389. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47390. {
  47391. side: {
  47392. height: math.unit(30, "feet"),
  47393. name: "Side",
  47394. image: {
  47395. source: "./media/characters/roggy/side.svg",
  47396. extra: 909/643,
  47397. bottom: 63/972
  47398. }
  47399. },
  47400. lounging: {
  47401. height: math.unit(20, "feet"),
  47402. name: "Lounging",
  47403. image: {
  47404. source: "./media/characters/roggy/lounging.svg",
  47405. extra: 643/479,
  47406. bottom: 145/788
  47407. }
  47408. },
  47409. handpaw: {
  47410. height: math.unit(13.1, "feet"),
  47411. name: "Handpaw",
  47412. image: {
  47413. source: "./media/characters/roggy/handpaw.svg"
  47414. }
  47415. },
  47416. footpaw: {
  47417. height: math.unit(15.8, "feet"),
  47418. name: "Footpaw",
  47419. image: {
  47420. source: "./media/characters/roggy/footpaw.svg"
  47421. }
  47422. },
  47423. },
  47424. [
  47425. {
  47426. name: "Menacing",
  47427. height: math.unit(30, "feet"),
  47428. default: true
  47429. },
  47430. ]
  47431. ))
  47432. characterMakers.push(() => makeCharacter(
  47433. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47434. {
  47435. front: {
  47436. height: math.unit(5 + 7/12, "feet"),
  47437. weight: math.unit(135, "lb"),
  47438. name: "Front",
  47439. image: {
  47440. source: "./media/characters/naomi/front.svg",
  47441. extra: 1209/1154,
  47442. bottom: 129/1338
  47443. }
  47444. },
  47445. back: {
  47446. height: math.unit(5 + 7/12, "feet"),
  47447. weight: math.unit(135, "lb"),
  47448. name: "Back",
  47449. image: {
  47450. source: "./media/characters/naomi/back.svg",
  47451. extra: 1252/1190,
  47452. bottom: 23/1275
  47453. }
  47454. },
  47455. },
  47456. [
  47457. {
  47458. name: "Normal",
  47459. height: math.unit(5 + 7 /12, "feet"),
  47460. default: true
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47466. {
  47467. side: {
  47468. height: math.unit(35, "meters"),
  47469. name: "Side",
  47470. image: {
  47471. source: "./media/characters/kimpi/side.svg",
  47472. extra: 419/382,
  47473. bottom: 63/482
  47474. }
  47475. },
  47476. hand: {
  47477. height: math.unit(8.96, "meters"),
  47478. name: "Hand",
  47479. image: {
  47480. source: "./media/characters/kimpi/hand.svg"
  47481. }
  47482. },
  47483. },
  47484. [
  47485. {
  47486. name: "Normal",
  47487. height: math.unit(35, "meters"),
  47488. default: true
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47494. {
  47495. front: {
  47496. height: math.unit(4 + 4/12, "feet"),
  47497. name: "Front",
  47498. image: {
  47499. source: "./media/characters/pepper-purrloin/front.svg",
  47500. extra: 1141/1024,
  47501. bottom: 21/1162
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Normal",
  47508. height: math.unit(4 + 4/12, "feet"),
  47509. default: true
  47510. },
  47511. ]
  47512. ))
  47513. characterMakers.push(() => makeCharacter(
  47514. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47515. {
  47516. front: {
  47517. height: math.unit(6 + 2/12, "feet"),
  47518. name: "Front",
  47519. image: {
  47520. source: "./media/characters/raphael/front.svg",
  47521. extra: 1101/962,
  47522. bottom: 59/1160
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(6 + 2/12, "feet"),
  47530. default: true
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(6, "feet"),
  47539. weight: math.unit(150, "lb"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/victor-williams/front.svg",
  47543. extra: 1894/1825,
  47544. bottom: 67/1961
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(6, "feet"),
  47552. default: true
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47558. {
  47559. front: {
  47560. height: math.unit(5 + 8/12, "feet"),
  47561. weight: math.unit(150, "lb"),
  47562. name: "Front",
  47563. image: {
  47564. source: "./media/characters/rachel/front.svg",
  47565. extra: 1902/1787,
  47566. bottom: 46/1948
  47567. }
  47568. },
  47569. },
  47570. [
  47571. {
  47572. name: "Base Height",
  47573. height: math.unit(5 + 8/12, "feet"),
  47574. default: true
  47575. },
  47576. {
  47577. name: "Macro",
  47578. height: math.unit(200, "feet")
  47579. },
  47580. {
  47581. name: "Mega Macro",
  47582. height: math.unit(1, "mile")
  47583. },
  47584. {
  47585. name: "Giga Macro",
  47586. height: math.unit(1500, "miles")
  47587. },
  47588. {
  47589. name: "Tera Macro",
  47590. height: math.unit(8000, "miles")
  47591. },
  47592. {
  47593. name: "Tera Macro+",
  47594. height: math.unit(2e5, "miles")
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47600. {
  47601. front: {
  47602. height: math.unit(6.5, "feet"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47606. extra: 860/819,
  47607. bottom: 307/1167
  47608. }
  47609. },
  47610. back: {
  47611. height: math.unit(6.5, "feet"),
  47612. name: "Back",
  47613. image: {
  47614. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47615. extra: 880/837,
  47616. bottom: 395/1275
  47617. }
  47618. },
  47619. sleeping: {
  47620. height: math.unit(2.79, "feet"),
  47621. name: "Sleeping",
  47622. image: {
  47623. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47624. extra: 465/383,
  47625. bottom: 263/728
  47626. }
  47627. },
  47628. maw: {
  47629. height: math.unit(2.52, "feet"),
  47630. name: "Maw",
  47631. image: {
  47632. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(6.5, "feet"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(5, "feet"),
  47649. name: "Front",
  47650. image: {
  47651. source: "./media/characters/nova-nerium/front.svg",
  47652. extra: 1548/1392,
  47653. bottom: 374/1922
  47654. }
  47655. },
  47656. back: {
  47657. height: math.unit(5, "feet"),
  47658. name: "Back",
  47659. image: {
  47660. source: "./media/characters/nova-nerium/back.svg",
  47661. extra: 1658/1468,
  47662. bottom: 257/1915
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Normal",
  47669. height: math.unit(5, "feet"),
  47670. default: true
  47671. },
  47672. ]
  47673. ))
  47674. characterMakers.push(() => makeCharacter(
  47675. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47676. {
  47677. front: {
  47678. height: math.unit(5 + 4/12, "feet"),
  47679. name: "Front",
  47680. image: {
  47681. source: "./media/characters/ashe-pyriph/front.svg",
  47682. extra: 1935/1747,
  47683. bottom: 60/1995
  47684. }
  47685. },
  47686. },
  47687. [
  47688. {
  47689. name: "Normal",
  47690. height: math.unit(5 + 4/12, "feet"),
  47691. default: true
  47692. },
  47693. ]
  47694. ))
  47695. characterMakers.push(() => makeCharacter(
  47696. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47697. {
  47698. front: {
  47699. height: math.unit(8.7, "feet"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/flicker-wisp/front.svg",
  47703. extra: 1835/1613,
  47704. bottom: 449/2284
  47705. }
  47706. },
  47707. side: {
  47708. height: math.unit(8.7, "feet"),
  47709. name: "Side",
  47710. image: {
  47711. source: "./media/characters/flicker-wisp/side.svg",
  47712. extra: 1841/1642,
  47713. bottom: 336/2177
  47714. },
  47715. default: true
  47716. },
  47717. maw: {
  47718. height: math.unit(3.35, "feet"),
  47719. name: "Maw",
  47720. image: {
  47721. source: "./media/characters/flicker-wisp/maw.svg",
  47722. extra: 2338/1506,
  47723. bottom: 0/2338
  47724. }
  47725. },
  47726. ovipositor: {
  47727. height: math.unit(4.95, "feet"),
  47728. name: "Ovipositor",
  47729. image: {
  47730. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47731. }
  47732. },
  47733. egg: {
  47734. height: math.unit(0.385, "feet"),
  47735. weight: math.unit(2, "lb"),
  47736. name: "Egg",
  47737. image: {
  47738. source: "./media/characters/flicker-wisp/egg.svg"
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(8.7, "feet"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47752. {
  47753. side: {
  47754. height: math.unit(11, "feet"),
  47755. name: "Side",
  47756. image: {
  47757. source: "./media/characters/faefnul/side.svg",
  47758. extra: 1100/1007,
  47759. bottom: 0/1100
  47760. }
  47761. },
  47762. },
  47763. [
  47764. {
  47765. name: "Normal",
  47766. height: math.unit(11, "feet"),
  47767. default: true
  47768. },
  47769. ]
  47770. ))
  47771. characterMakers.push(() => makeCharacter(
  47772. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47773. {
  47774. front: {
  47775. height: math.unit(6 + 2/12, "feet"),
  47776. name: "Front",
  47777. image: {
  47778. source: "./media/characters/shady/front.svg",
  47779. extra: 502/461,
  47780. bottom: 9/511
  47781. }
  47782. },
  47783. kneeling: {
  47784. height: math.unit(4.6, "feet"),
  47785. name: "Kneeling",
  47786. image: {
  47787. source: "./media/characters/shady/kneeling.svg",
  47788. extra: 1328/1219,
  47789. bottom: 117/1445
  47790. }
  47791. },
  47792. maw: {
  47793. height: math.unit(2, "feet"),
  47794. name: "Maw",
  47795. image: {
  47796. source: "./media/characters/shady/maw.svg"
  47797. }
  47798. },
  47799. },
  47800. [
  47801. {
  47802. name: "Nano",
  47803. height: math.unit(1, "mm")
  47804. },
  47805. {
  47806. name: "Micro",
  47807. height: math.unit(12, "mm")
  47808. },
  47809. {
  47810. name: "Tiny",
  47811. height: math.unit(3, "inches")
  47812. },
  47813. {
  47814. name: "Normal",
  47815. height: math.unit(6 + 2/12, "feet"),
  47816. default: true
  47817. },
  47818. {
  47819. name: "Big",
  47820. height: math.unit(15, "feet")
  47821. },
  47822. {
  47823. name: "Macro",
  47824. height: math.unit(150, "feet")
  47825. },
  47826. {
  47827. name: "Titanic",
  47828. height: math.unit(500, "feet")
  47829. },
  47830. ]
  47831. ))
  47832. characterMakers.push(() => makeCharacter(
  47833. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47834. {
  47835. front: {
  47836. height: math.unit(12, "feet"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/fenrir/front.svg",
  47840. extra: 968/875,
  47841. bottom: 22/990
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Big",
  47848. height: math.unit(12, "feet"),
  47849. default: true
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(5 + 4/12, "feet"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/makar/front.svg",
  47861. extra: 1181/1112,
  47862. bottom: 78/1259
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Normal",
  47869. height: math.unit(5 + 4/12, "feet"),
  47870. default: true
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47876. {
  47877. front: {
  47878. height: math.unit(5 + 7/12, "feet"),
  47879. name: "Front",
  47880. image: {
  47881. source: "./media/characters/callow/front.svg",
  47882. extra: 1482/1304,
  47883. bottom: 23/1505
  47884. }
  47885. },
  47886. back: {
  47887. height: math.unit(5 + 7/12, "feet"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/callow/back.svg",
  47891. extra: 1484/1296,
  47892. bottom: 25/1509
  47893. }
  47894. },
  47895. },
  47896. [
  47897. {
  47898. name: "Micro",
  47899. height: math.unit(3, "inches"),
  47900. default: true
  47901. },
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(5 + 7/12, "feet")
  47905. },
  47906. ]
  47907. ))
  47908. characterMakers.push(() => makeCharacter(
  47909. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47910. {
  47911. front: {
  47912. height: math.unit(6 + 2/12, "feet"),
  47913. name: "Front",
  47914. image: {
  47915. source: "./media/characters/natel/front.svg",
  47916. extra: 1833/1692,
  47917. bottom: 166/1999
  47918. }
  47919. },
  47920. },
  47921. [
  47922. {
  47923. name: "Normal",
  47924. height: math.unit(6 + 2/12, "feet"),
  47925. default: true
  47926. },
  47927. ]
  47928. ))
  47929. characterMakers.push(() => makeCharacter(
  47930. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47931. {
  47932. front: {
  47933. height: math.unit(1.75, "meters"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/misu/front.svg",
  47937. extra: 1690/1558,
  47938. bottom: 234/1924
  47939. }
  47940. },
  47941. back: {
  47942. height: math.unit(1.75, "meters"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/misu/back.svg",
  47946. extra: 1762/1618,
  47947. bottom: 146/1908
  47948. }
  47949. },
  47950. frontNude: {
  47951. height: math.unit(1.75, "meters"),
  47952. name: "Front (Nude)",
  47953. image: {
  47954. source: "./media/characters/misu/front-nude.svg",
  47955. extra: 1690/1558,
  47956. bottom: 234/1924
  47957. }
  47958. },
  47959. backNude: {
  47960. height: math.unit(1.75, "meters"),
  47961. name: "Back (Nude)",
  47962. image: {
  47963. source: "./media/characters/misu/back-nude.svg",
  47964. extra: 1762/1618,
  47965. bottom: 146/1908
  47966. }
  47967. },
  47968. frontErect: {
  47969. height: math.unit(1.75, "meters"),
  47970. name: "Front (Erect)",
  47971. image: {
  47972. source: "./media/characters/misu/front-erect.svg",
  47973. extra: 1690/1558,
  47974. bottom: 234/1924
  47975. }
  47976. },
  47977. maw: {
  47978. height: math.unit(0.47, "meters"),
  47979. name: "Maw",
  47980. image: {
  47981. source: "./media/characters/misu/maw.svg"
  47982. }
  47983. },
  47984. head: {
  47985. height: math.unit(0.35, "meters"),
  47986. name: "Head",
  47987. image: {
  47988. source: "./media/characters/misu/head.svg"
  47989. }
  47990. },
  47991. rear: {
  47992. height: math.unit(0.47, "meters"),
  47993. name: "Rear",
  47994. image: {
  47995. source: "./media/characters/misu/rear.svg"
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(1.75, "meters")
  48003. },
  48004. {
  48005. name: "Not good for the people",
  48006. height: math.unit(42, "meters")
  48007. },
  48008. {
  48009. name: "Not good for the neighborhood",
  48010. height: math.unit(135, "meters")
  48011. },
  48012. {
  48013. name: "Bit bigger problem",
  48014. height: math.unit(380, "meters"),
  48015. default: true
  48016. },
  48017. {
  48018. name: "Not good for the city",
  48019. height: math.unit(1.5, "km")
  48020. },
  48021. {
  48022. name: "Not good for the county",
  48023. height: math.unit(5.5, "km")
  48024. },
  48025. {
  48026. name: "Not good for the state",
  48027. height: math.unit(25, "km")
  48028. },
  48029. {
  48030. name: "Not good for the country",
  48031. height: math.unit(125, "km")
  48032. },
  48033. {
  48034. name: "Not good for the continent",
  48035. height: math.unit(2100, "km")
  48036. },
  48037. {
  48038. name: "Not good for the planet",
  48039. height: math.unit(35000, "km")
  48040. },
  48041. {
  48042. name: "Just no",
  48043. height: math.unit(8.5e18, "km")
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48049. {
  48050. front: {
  48051. height: math.unit(6.5, "feet"),
  48052. name: "Front",
  48053. image: {
  48054. source: "./media/characters/poppy/front.svg",
  48055. extra: 1878/1812,
  48056. bottom: 43/1921
  48057. }
  48058. },
  48059. feet: {
  48060. height: math.unit(1.06, "feet"),
  48061. name: "Feet",
  48062. image: {
  48063. source: "./media/characters/poppy/feet.svg",
  48064. extra: 1083/1083,
  48065. bottom: 87/1170
  48066. }
  48067. },
  48068. },
  48069. [
  48070. {
  48071. name: "Human",
  48072. height: math.unit(6.5, "feet")
  48073. },
  48074. {
  48075. name: "Default",
  48076. height: math.unit(300, "feet"),
  48077. default: true
  48078. },
  48079. {
  48080. name: "Huge",
  48081. height: math.unit(850, "feet")
  48082. },
  48083. {
  48084. name: "Mega",
  48085. height: math.unit(8000, "feet")
  48086. },
  48087. {
  48088. name: "Giga",
  48089. height: math.unit(300, "miles")
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48095. {
  48096. bipedal: {
  48097. height: math.unit(7, "feet"),
  48098. name: "Bipedal",
  48099. image: {
  48100. source: "./media/characters/zener/bipedal.svg",
  48101. extra: 874/805,
  48102. bottom: 109/983
  48103. }
  48104. },
  48105. quadrupedal: {
  48106. height: math.unit(4.64, "feet"),
  48107. name: "Quadrupedal",
  48108. image: {
  48109. source: "./media/characters/zener/quadrupedal.svg",
  48110. extra: 638/507,
  48111. bottom: 190/828
  48112. }
  48113. },
  48114. cock: {
  48115. height: math.unit(18, "inches"),
  48116. name: "Cock",
  48117. image: {
  48118. source: "./media/characters/zener/cock.svg"
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(7, "feet"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48132. {
  48133. nude: {
  48134. height: math.unit(5 + 6/12, "feet"),
  48135. name: "Nude",
  48136. image: {
  48137. source: "./media/characters/charlie-dog/nude.svg",
  48138. extra: 768/734,
  48139. bottom: 26/794
  48140. }
  48141. },
  48142. dressed: {
  48143. height: math.unit(5 + 6/12, "feet"),
  48144. name: "Dressed",
  48145. image: {
  48146. source: "./media/characters/charlie-dog/dressed.svg",
  48147. extra: 768/734,
  48148. bottom: 26/794
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(5 + 6/12, "feet"),
  48156. default: true
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48162. {
  48163. front: {
  48164. height: math.unit(6 + 4/12, "feet"),
  48165. name: "Front",
  48166. image: {
  48167. source: "./media/characters/ir'istrasz/front.svg",
  48168. extra: 1014/977,
  48169. bottom: 65/1079
  48170. }
  48171. },
  48172. back: {
  48173. height: math.unit(6 + 4/12, "feet"),
  48174. name: "Back",
  48175. image: {
  48176. source: "./media/characters/ir'istrasz/back.svg",
  48177. extra: 1024/992,
  48178. bottom: 34/1058
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(6 + 4/12, "feet"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48192. {
  48193. front: {
  48194. height: math.unit(5 + 8/12, "feet"),
  48195. name: "Front",
  48196. image: {
  48197. source: "./media/characters/dee-ditto/front.svg",
  48198. extra: 1874/1785,
  48199. bottom: 68/1942
  48200. }
  48201. },
  48202. back: {
  48203. height: math.unit(5 + 8/12, "feet"),
  48204. name: "Back",
  48205. image: {
  48206. source: "./media/characters/dee-ditto/back.svg",
  48207. extra: 1870/1783,
  48208. bottom: 77/1947
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(5 + 8/12, "feet"),
  48216. default: true
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48222. {
  48223. front: {
  48224. height: math.unit(7 + 6/12, "feet"),
  48225. name: "Front",
  48226. image: {
  48227. source: "./media/characters/fey/front.svg",
  48228. extra: 995/979,
  48229. bottom: 30/1025
  48230. }
  48231. },
  48232. back: {
  48233. height: math.unit(7 + 6/12, "feet"),
  48234. name: "Back",
  48235. image: {
  48236. source: "./media/characters/fey/back.svg",
  48237. extra: 1079/1008,
  48238. bottom: 5/1084
  48239. }
  48240. },
  48241. dressed: {
  48242. height: math.unit(7 + 6/12, "feet"),
  48243. name: "Dressed",
  48244. image: {
  48245. source: "./media/characters/fey/dressed.svg",
  48246. extra: 995/979,
  48247. bottom: 30/1025
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(7 + 6/12, "feet"),
  48255. default: true
  48256. },
  48257. ]
  48258. ))
  48259. characterMakers.push(() => makeCharacter(
  48260. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48261. {
  48262. standing: {
  48263. height: math.unit(17, "feet"),
  48264. name: "Standing",
  48265. image: {
  48266. source: "./media/characters/aster/standing.svg",
  48267. extra: 1798/1598,
  48268. bottom: 117/1915
  48269. }
  48270. },
  48271. },
  48272. [
  48273. {
  48274. name: "Normal",
  48275. height: math.unit(17, "feet"),
  48276. default: true
  48277. },
  48278. {
  48279. name: "Homewrecker",
  48280. height: math.unit(95, "feet")
  48281. },
  48282. {
  48283. name: "Planet Devourer",
  48284. height: math.unit(1008000, "miles")
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48290. {
  48291. front: {
  48292. height: math.unit(6 + 5/12, "feet"),
  48293. weight: math.unit(265, "lb"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/devon-childs/front.svg",
  48297. extra: 1795/1721,
  48298. bottom: 41/1836
  48299. }
  48300. },
  48301. side: {
  48302. height: math.unit(6 + 5/12, "feet"),
  48303. weight: math.unit(265, "lb"),
  48304. name: "Side",
  48305. image: {
  48306. source: "./media/characters/devon-childs/side.svg",
  48307. extra: 1812/1738,
  48308. bottom: 30/1842
  48309. }
  48310. },
  48311. back: {
  48312. height: math.unit(6 + 5/12, "feet"),
  48313. weight: math.unit(265, "lb"),
  48314. name: "Back",
  48315. image: {
  48316. source: "./media/characters/devon-childs/back.svg",
  48317. extra: 1808/1735,
  48318. bottom: 23/1831
  48319. }
  48320. },
  48321. hand: {
  48322. height: math.unit(1.464, "feet"),
  48323. name: "Hand",
  48324. image: {
  48325. source: "./media/characters/devon-childs/hand.svg"
  48326. }
  48327. },
  48328. foot: {
  48329. height: math.unit(1.6, "feet"),
  48330. name: "Foot",
  48331. image: {
  48332. source: "./media/characters/devon-childs/foot.svg"
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Micro",
  48339. height: math.unit(7, "cm")
  48340. },
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(6 + 5/12, "feet"),
  48344. default: true
  48345. },
  48346. {
  48347. name: "Macro",
  48348. height: math.unit(154, "feet")
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(6, "feet"),
  48357. weight: math.unit(180, "lb"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/lydemox-vir/front.svg",
  48361. extra: 1632/1435,
  48362. bottom: 58/1690
  48363. }
  48364. },
  48365. frontSFW: {
  48366. height: math.unit(6, "feet"),
  48367. weight: math.unit(180, "lb"),
  48368. name: "Front (SFW)",
  48369. image: {
  48370. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48371. extra: 1632/1435,
  48372. bottom: 58/1690
  48373. }
  48374. },
  48375. back: {
  48376. height: math.unit(6, "feet"),
  48377. weight: math.unit(180, "lb"),
  48378. name: "Back",
  48379. image: {
  48380. source: "./media/characters/lydemox-vir/back.svg",
  48381. extra: 1593/1408,
  48382. bottom: 31/1624
  48383. }
  48384. },
  48385. paw: {
  48386. height: math.unit(1.85, "feet"),
  48387. name: "Paw",
  48388. image: {
  48389. source: "./media/characters/lydemox-vir/paw.svg"
  48390. }
  48391. },
  48392. dick: {
  48393. height: math.unit(1.8, "feet"),
  48394. name: "Dick",
  48395. image: {
  48396. source: "./media/characters/lydemox-vir/dick.svg"
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Macro",
  48403. height: math.unit(100, "feet"),
  48404. default: true
  48405. },
  48406. {
  48407. name: "Teramacro",
  48408. height: math.unit(1, "earth")
  48409. },
  48410. {
  48411. name: "Planetary",
  48412. height: math.unit(20, "earths")
  48413. },
  48414. ]
  48415. ))
  48416. characterMakers.push(() => makeCharacter(
  48417. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48418. {
  48419. front: {
  48420. height: math.unit(15 + 8/12, "feet"),
  48421. weight: math.unit(1237, "kg"),
  48422. name: "Front",
  48423. image: {
  48424. source: "./media/characters/mia/front.svg",
  48425. extra: 1573/1446,
  48426. bottom: 58/1631
  48427. }
  48428. },
  48429. },
  48430. [
  48431. {
  48432. name: "Small",
  48433. height: math.unit(9 + 5/12, "feet")
  48434. },
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(15 + 8/12, "feet"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(10 + 6/12, "feet"),
  48447. weight: math.unit(1.3, "tons"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/mr-graves/front.svg",
  48451. extra: 1779/1695,
  48452. bottom: 198/1977
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(10 + 6 /12, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48466. {
  48467. dressedFront: {
  48468. height: math.unit(5 + 8/12, "feet"),
  48469. weight: math.unit(125, "lb"),
  48470. name: "Dressed (Front)",
  48471. image: {
  48472. source: "./media/characters/jess/dressed-front.svg",
  48473. extra: 1176/1152,
  48474. bottom: 42/1218
  48475. }
  48476. },
  48477. dressedSide: {
  48478. height: math.unit(5 + 8/12, "feet"),
  48479. weight: math.unit(125, "lb"),
  48480. name: "Dressed (Side)",
  48481. image: {
  48482. source: "./media/characters/jess/dressed-side.svg",
  48483. extra: 1204/1190,
  48484. bottom: 6/1210
  48485. }
  48486. },
  48487. nudeFront: {
  48488. height: math.unit(5 + 8/12, "feet"),
  48489. weight: math.unit(125, "lb"),
  48490. name: "Nude (Front)",
  48491. image: {
  48492. source: "./media/characters/jess/nude-front.svg",
  48493. extra: 1176/1152,
  48494. bottom: 42/1218
  48495. }
  48496. },
  48497. nudeSide: {
  48498. height: math.unit(5 + 8/12, "feet"),
  48499. weight: math.unit(125, "lb"),
  48500. name: "Nude (Side)",
  48501. image: {
  48502. source: "./media/characters/jess/nude-side.svg",
  48503. extra: 1204/1190,
  48504. bottom: 6/1210
  48505. }
  48506. },
  48507. organsFront: {
  48508. height: math.unit(2.83799342105, "feet"),
  48509. name: "Organs (Front)",
  48510. image: {
  48511. source: "./media/characters/jess/organs-front.svg"
  48512. }
  48513. },
  48514. organsSide: {
  48515. height: math.unit(2.64225290474, "feet"),
  48516. name: "Organs (Side)",
  48517. image: {
  48518. source: "./media/characters/jess/organs-side.svg"
  48519. }
  48520. },
  48521. digestiveTractFront: {
  48522. height: math.unit(2.8106580871, "feet"),
  48523. name: "Digestive Tract (Front)",
  48524. image: {
  48525. source: "./media/characters/jess/digestive-tract-front.svg"
  48526. }
  48527. },
  48528. digestiveTractSide: {
  48529. height: math.unit(2.54365045014, "feet"),
  48530. name: "Digestive Tract (Side)",
  48531. image: {
  48532. source: "./media/characters/jess/digestive-tract-side.svg"
  48533. }
  48534. },
  48535. respiratorySystemFront: {
  48536. height: math.unit(1.11196233456, "feet"),
  48537. name: "Respiratory System (Front)",
  48538. image: {
  48539. source: "./media/characters/jess/respiratory-system-front.svg"
  48540. }
  48541. },
  48542. respiratorySystemSide: {
  48543. height: math.unit(0.89327966297, "feet"),
  48544. name: "Respiratory System (Side)",
  48545. image: {
  48546. source: "./media/characters/jess/respiratory-system-side.svg"
  48547. }
  48548. },
  48549. urinaryTractFront: {
  48550. height: math.unit(1.16126356186, "feet"),
  48551. name: "Urinary Tract (Front)",
  48552. image: {
  48553. source: "./media/characters/jess/urinary-tract-front.svg"
  48554. }
  48555. },
  48556. urinaryTractSide: {
  48557. height: math.unit(1.20910039627, "feet"),
  48558. name: "Urinary Tract (Side)",
  48559. image: {
  48560. source: "./media/characters/jess/urinary-tract-side.svg"
  48561. }
  48562. },
  48563. reproductiveOrgansFront: {
  48564. height: math.unit(0.48422591566, "feet"),
  48565. name: "Reproductive Organs (Front)",
  48566. image: {
  48567. source: "./media/characters/jess/reproductive-organs-front.svg"
  48568. }
  48569. },
  48570. reproductiveOrgansSide: {
  48571. height: math.unit(0.61553314481, "feet"),
  48572. name: "Reproductive Organs (Side)",
  48573. image: {
  48574. source: "./media/characters/jess/reproductive-organs-side.svg"
  48575. }
  48576. },
  48577. breastsFront: {
  48578. height: math.unit(0.47690395121, "feet"),
  48579. name: "Breasts (Front)",
  48580. image: {
  48581. source: "./media/characters/jess/breasts-front.svg"
  48582. }
  48583. },
  48584. breastsSide: {
  48585. height: math.unit(0.30556998307, "feet"),
  48586. name: "Breasts (Side)",
  48587. image: {
  48588. source: "./media/characters/jess/breasts-side.svg"
  48589. }
  48590. },
  48591. heartFront: {
  48592. height: math.unit(0.53011022622, "feet"),
  48593. name: "Heart (Front)",
  48594. image: {
  48595. source: "./media/characters/jess/heart-front.svg"
  48596. }
  48597. },
  48598. heartSide: {
  48599. height: math.unit(0.51790695213, "feet"),
  48600. name: "Heart (Side)",
  48601. image: {
  48602. source: "./media/characters/jess/heart-side.svg"
  48603. }
  48604. },
  48605. earsAndNoseFront: {
  48606. height: math.unit(0.29385483995, "feet"),
  48607. name: "Ears and Nose (Front)",
  48608. image: {
  48609. source: "./media/characters/jess/ears-and-nose-front.svg"
  48610. }
  48611. },
  48612. earsAndNoseSide: {
  48613. height: math.unit(0.18109658741, "feet"),
  48614. name: "Ears and Nose (Side)",
  48615. image: {
  48616. source: "./media/characters/jess/ears-and-nose-side.svg"
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(5 + 8/12, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48630. {
  48631. front: {
  48632. height: math.unit(6, "feet"),
  48633. weight: math.unit(6.64467e-7, "grams"),
  48634. name: "Front",
  48635. image: {
  48636. source: "./media/characters/wimpering/front.svg",
  48637. extra: 597/587,
  48638. bottom: 34/631
  48639. }
  48640. },
  48641. },
  48642. [
  48643. {
  48644. name: "Micro",
  48645. height: math.unit(0.4, "mm"),
  48646. default: true
  48647. },
  48648. ]
  48649. ))
  48650. characterMakers.push(() => makeCharacter(
  48651. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48652. {
  48653. front: {
  48654. height: math.unit(5 + 2/12, "feet"),
  48655. weight: math.unit(110, "lb"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/keltre/front.svg",
  48659. extra: 1099/1057,
  48660. bottom: 22/1121
  48661. }
  48662. },
  48663. back: {
  48664. height: math.unit(5 + 2/12, "feet"),
  48665. weight: math.unit(110, "lb"),
  48666. name: "Back",
  48667. image: {
  48668. source: "./media/characters/keltre/back.svg",
  48669. extra: 1095/1053,
  48670. bottom: 17/1112
  48671. }
  48672. },
  48673. dressed: {
  48674. height: math.unit(5 + 2/12, "feet"),
  48675. weight: math.unit(110, "lb"),
  48676. name: "Dressed",
  48677. image: {
  48678. source: "./media/characters/keltre/dressed.svg",
  48679. extra: 1099/1057,
  48680. bottom: 22/1121
  48681. }
  48682. },
  48683. winter: {
  48684. height: math.unit(5 + 2/12, "feet"),
  48685. weight: math.unit(110, "lb"),
  48686. name: "Winter",
  48687. image: {
  48688. source: "./media/characters/keltre/winter.svg",
  48689. extra: 1099/1057,
  48690. bottom: 22/1121
  48691. }
  48692. },
  48693. head: {
  48694. height: math.unit(1.61 * 0.86, "feet"),
  48695. name: "Head",
  48696. image: {
  48697. source: "./media/characters/keltre/head.svg",
  48698. extra: 534/421,
  48699. bottom: 0/534
  48700. }
  48701. },
  48702. hand: {
  48703. height: math.unit(1.3 * 0.86, "feet"),
  48704. name: "Hand",
  48705. image: {
  48706. source: "./media/characters/keltre/hand.svg"
  48707. }
  48708. },
  48709. foot: {
  48710. height: math.unit(1.8 * 0.86, "feet"),
  48711. name: "Foot",
  48712. image: {
  48713. source: "./media/characters/keltre/foot.svg"
  48714. }
  48715. },
  48716. },
  48717. [
  48718. {
  48719. name: "Fine",
  48720. height: math.unit(1, "inch")
  48721. },
  48722. {
  48723. name: "Dimnutive",
  48724. height: math.unit(4, "inches")
  48725. },
  48726. {
  48727. name: "Tiny",
  48728. height: math.unit(1, "foot")
  48729. },
  48730. {
  48731. name: "Small",
  48732. height: math.unit(3, "feet")
  48733. },
  48734. {
  48735. name: "Normal",
  48736. height: math.unit(5 + 2/12, "feet"),
  48737. default: true
  48738. },
  48739. ]
  48740. ))
  48741. characterMakers.push(() => makeCharacter(
  48742. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48743. {
  48744. front: {
  48745. height: math.unit(6 + 2/12, "feet"),
  48746. name: "Front",
  48747. image: {
  48748. source: "./media/characters/nox/front.svg",
  48749. extra: 1917/1830,
  48750. bottom: 74/1991
  48751. }
  48752. },
  48753. back: {
  48754. height: math.unit(6 + 2/12, "feet"),
  48755. name: "Back",
  48756. image: {
  48757. source: "./media/characters/nox/back.svg",
  48758. extra: 1896/1815,
  48759. bottom: 21/1917
  48760. }
  48761. },
  48762. head: {
  48763. height: math.unit(1.1, "feet"),
  48764. name: "Head",
  48765. image: {
  48766. source: "./media/characters/nox/head.svg",
  48767. extra: 874/704,
  48768. bottom: 0/874
  48769. }
  48770. },
  48771. tattoo: {
  48772. height: math.unit(0.729, "feet"),
  48773. name: "Tattoo",
  48774. image: {
  48775. source: "./media/characters/nox/tattoo.svg"
  48776. }
  48777. },
  48778. },
  48779. [
  48780. {
  48781. name: "Normal",
  48782. height: math.unit(6 + 2/12, "feet")
  48783. },
  48784. {
  48785. name: "Gigamacro",
  48786. height: math.unit(2, "earths"),
  48787. default: true
  48788. },
  48789. {
  48790. name: "Cosmic",
  48791. height: math.unit(867, "yottameters")
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48797. {
  48798. front: {
  48799. height: math.unit(6, "feet"),
  48800. weight: math.unit(150, "lb"),
  48801. name: "Front",
  48802. image: {
  48803. source: "./media/characters/caspian/front.svg",
  48804. extra: 1443/1359,
  48805. bottom: 0/1443
  48806. }
  48807. },
  48808. back: {
  48809. height: math.unit(6, "feet"),
  48810. weight: math.unit(150, "lb"),
  48811. name: "Back",
  48812. image: {
  48813. source: "./media/characters/caspian/back.svg",
  48814. extra: 1379/1309,
  48815. bottom: 0/1379
  48816. }
  48817. },
  48818. head: {
  48819. height: math.unit(0.9, "feet"),
  48820. name: "Head",
  48821. image: {
  48822. source: "./media/characters/caspian/head.svg",
  48823. extra: 692/492,
  48824. bottom: 0/692
  48825. }
  48826. },
  48827. headAlt: {
  48828. height: math.unit(0.95, "feet"),
  48829. name: "Head (Alt)",
  48830. image: {
  48831. source: "./media/characters/caspian/head-alt.svg",
  48832. extra: 668/508,
  48833. bottom: 0/668
  48834. }
  48835. },
  48836. hand: {
  48837. height: math.unit(0.8, "feet"),
  48838. name: "Hand",
  48839. image: {
  48840. source: "./media/characters/caspian/hand.svg"
  48841. }
  48842. },
  48843. paw: {
  48844. height: math.unit(0.95, "feet"),
  48845. name: "Paw",
  48846. image: {
  48847. source: "./media/characters/caspian/paw.svg"
  48848. }
  48849. },
  48850. },
  48851. [
  48852. {
  48853. name: "Normal",
  48854. height: math.unit(162, "feet"),
  48855. default: true
  48856. },
  48857. ]
  48858. ))
  48859. characterMakers.push(() => makeCharacter(
  48860. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48861. {
  48862. front: {
  48863. height: math.unit(6, "feet"),
  48864. name: "Front",
  48865. image: {
  48866. source: "./media/characters/myra-aisling/front.svg",
  48867. extra: 1268/1166,
  48868. bottom: 73/1341
  48869. }
  48870. },
  48871. back: {
  48872. height: math.unit(6, "feet"),
  48873. name: "Back",
  48874. image: {
  48875. source: "./media/characters/myra-aisling/back.svg",
  48876. extra: 1249/1149,
  48877. bottom: 79/1328
  48878. }
  48879. },
  48880. dressed: {
  48881. height: math.unit(6, "feet"),
  48882. name: "Dressed",
  48883. image: {
  48884. source: "./media/characters/myra-aisling/dressed.svg",
  48885. extra: 1290/1189,
  48886. bottom: 47/1337
  48887. }
  48888. },
  48889. hand: {
  48890. height: math.unit(1.1, "feet"),
  48891. name: "Hand",
  48892. image: {
  48893. source: "./media/characters/myra-aisling/hand.svg"
  48894. }
  48895. },
  48896. paw: {
  48897. height: math.unit(1.23, "feet"),
  48898. name: "Paw",
  48899. image: {
  48900. source: "./media/characters/myra-aisling/paw.svg"
  48901. }
  48902. },
  48903. },
  48904. [
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(160, "feet"),
  48908. default: true
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48914. {
  48915. front: {
  48916. height: math.unit(6, "feet"),
  48917. name: "Front",
  48918. image: {
  48919. source: "./media/characters/tenley-sidero/front.svg",
  48920. extra: 1365/1276,
  48921. bottom: 47/1412
  48922. }
  48923. },
  48924. back: {
  48925. height: math.unit(6, "feet"),
  48926. name: "Back",
  48927. image: {
  48928. source: "./media/characters/tenley-sidero/back.svg",
  48929. extra: 1383/1283,
  48930. bottom: 35/1418
  48931. }
  48932. },
  48933. dressed: {
  48934. height: math.unit(6, "feet"),
  48935. name: "Dressed",
  48936. image: {
  48937. source: "./media/characters/tenley-sidero/dressed.svg",
  48938. extra: 1364/1275,
  48939. bottom: 42/1406
  48940. }
  48941. },
  48942. head: {
  48943. height: math.unit(1.47, "feet"),
  48944. name: "Head",
  48945. image: {
  48946. source: "./media/characters/tenley-sidero/head.svg",
  48947. extra: 610/490,
  48948. bottom: 0/610
  48949. }
  48950. },
  48951. },
  48952. [
  48953. {
  48954. name: "Normal",
  48955. height: math.unit(154, "feet"),
  48956. default: true
  48957. },
  48958. ]
  48959. ))
  48960. characterMakers.push(() => makeCharacter(
  48961. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48962. {
  48963. front: {
  48964. height: math.unit(5, "inches"),
  48965. name: "Front",
  48966. image: {
  48967. source: "./media/characters/mallory/front.svg",
  48968. extra: 1919/1678,
  48969. bottom: 29/1948
  48970. }
  48971. },
  48972. hand: {
  48973. height: math.unit(0.73, "inches"),
  48974. name: "Hand",
  48975. image: {
  48976. source: "./media/characters/mallory/hand.svg"
  48977. }
  48978. },
  48979. paw: {
  48980. height: math.unit(0.68, "inches"),
  48981. name: "Paw",
  48982. image: {
  48983. source: "./media/characters/mallory/paw.svg"
  48984. }
  48985. },
  48986. },
  48987. [
  48988. {
  48989. name: "Small",
  48990. height: math.unit(5, "inches"),
  48991. default: true
  48992. },
  48993. ]
  48994. ))
  48995. characterMakers.push(() => makeCharacter(
  48996. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48997. {
  48998. naked: {
  48999. height: math.unit(6, "feet"),
  49000. name: "Naked",
  49001. image: {
  49002. source: "./media/characters/mab/naked.svg",
  49003. extra: 1855/1757,
  49004. bottom: 208/2063
  49005. }
  49006. },
  49007. outside: {
  49008. height: math.unit(6, "feet"),
  49009. name: "Outside",
  49010. image: {
  49011. source: "./media/characters/mab/outside.svg",
  49012. extra: 1855/1757,
  49013. bottom: 208/2063
  49014. }
  49015. },
  49016. party: {
  49017. height: math.unit(6, "feet"),
  49018. name: "Party",
  49019. image: {
  49020. source: "./media/characters/mab/party.svg",
  49021. extra: 1855/1757,
  49022. bottom: 208/2063
  49023. }
  49024. },
  49025. },
  49026. [
  49027. {
  49028. name: "Normal",
  49029. height: math.unit(165, "feet"),
  49030. default: true
  49031. },
  49032. ]
  49033. ))
  49034. characterMakers.push(() => makeCharacter(
  49035. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49036. {
  49037. front: {
  49038. height: math.unit(12, "feet"),
  49039. weight: math.unit(4000, "lb"),
  49040. name: "Front",
  49041. image: {
  49042. source: "./media/characters/winter/front.svg",
  49043. extra: 1286/943,
  49044. bottom: 112/1398
  49045. }
  49046. },
  49047. frontNsfw: {
  49048. height: math.unit(12, "feet"),
  49049. weight: math.unit(4000, "lb"),
  49050. name: "Front (NSFW)",
  49051. image: {
  49052. source: "./media/characters/winter/front-nsfw.svg",
  49053. extra: 1286/943,
  49054. bottom: 112/1398
  49055. }
  49056. },
  49057. dick: {
  49058. height: math.unit(3.79, "feet"),
  49059. name: "Dick",
  49060. image: {
  49061. source: "./media/characters/winter/dick.svg"
  49062. }
  49063. },
  49064. },
  49065. [
  49066. {
  49067. name: "Big",
  49068. height: math.unit(12, "feet"),
  49069. default: true
  49070. },
  49071. ]
  49072. ))
  49073. characterMakers.push(() => makeCharacter(
  49074. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49075. {
  49076. front: {
  49077. height: math.unit(4.1, "inches"),
  49078. name: "Front",
  49079. image: {
  49080. source: "./media/characters/alto/front.svg",
  49081. extra: 736/627,
  49082. bottom: 90/826
  49083. }
  49084. },
  49085. },
  49086. [
  49087. {
  49088. name: "Normal",
  49089. height: math.unit(4.1, "inches"),
  49090. default: true
  49091. },
  49092. ]
  49093. ))
  49094. characterMakers.push(() => makeCharacter(
  49095. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49096. {
  49097. sitting: {
  49098. height: math.unit(3, "feet"),
  49099. name: "Sitting",
  49100. image: {
  49101. source: "./media/characters/ratstrid-v/sitting.svg",
  49102. extra: 355/310,
  49103. bottom: 136/491
  49104. }
  49105. },
  49106. },
  49107. [
  49108. {
  49109. name: "Normal",
  49110. height: math.unit(3, "feet"),
  49111. default: true
  49112. },
  49113. ]
  49114. ))
  49115. characterMakers.push(() => makeCharacter(
  49116. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49117. {
  49118. back: {
  49119. height: math.unit(6, "feet"),
  49120. weight: math.unit(350, "lb"),
  49121. name: "Back",
  49122. image: {
  49123. source: "./media/characters/siz/back.svg",
  49124. extra: 1449/1274,
  49125. bottom: 13/1462
  49126. }
  49127. },
  49128. },
  49129. [
  49130. {
  49131. name: "Over-Overcompressed",
  49132. height: math.unit(8, "feet")
  49133. },
  49134. {
  49135. name: "Overcompressed",
  49136. height: math.unit(32, "feet")
  49137. },
  49138. {
  49139. name: "Compressed",
  49140. height: math.unit(128, "feet"),
  49141. default: true
  49142. },
  49143. {
  49144. name: "Half-Compressed",
  49145. height: math.unit(512, "feet")
  49146. },
  49147. {
  49148. name: "Quarter-Compressed",
  49149. height: math.unit(2048, "feet")
  49150. },
  49151. {
  49152. name: "Uncompressed?",
  49153. height: math.unit(8192, "feet")
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(5 + 9/12, "feet"),
  49162. weight: math.unit(150, "lb"),
  49163. name: "Front",
  49164. image: {
  49165. source: "./media/characters/ven/front.svg",
  49166. extra: 1372/1320,
  49167. bottom: 73/1445
  49168. }
  49169. },
  49170. side: {
  49171. height: math.unit(5 + 9/12, "feet"),
  49172. weight: math.unit(1150, "lb"),
  49173. name: "Side",
  49174. image: {
  49175. source: "./media/characters/ven/side.svg",
  49176. extra: 1119/1070,
  49177. bottom: 42/1161
  49178. },
  49179. default: true
  49180. },
  49181. },
  49182. [
  49183. {
  49184. name: "Normal",
  49185. height: math.unit(5 + 9/12, "feet"),
  49186. default: true
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49192. {
  49193. front: {
  49194. height: math.unit(12, "feet"),
  49195. weight: math.unit(1000, "kg"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/maple/front.svg",
  49199. extra: 1193/1081,
  49200. bottom: 22/1215
  49201. }
  49202. },
  49203. },
  49204. [
  49205. {
  49206. name: "Normal",
  49207. height: math.unit(12, "feet"),
  49208. default: true
  49209. },
  49210. ]
  49211. ))
  49212. characterMakers.push(() => makeCharacter(
  49213. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49214. {
  49215. front: {
  49216. height: math.unit(9, "feet"),
  49217. weight: math.unit(750, "lb"),
  49218. name: "Front",
  49219. image: {
  49220. source: "./media/characters/nora/front.svg",
  49221. extra: 1348/1286,
  49222. bottom: 218/1566
  49223. }
  49224. },
  49225. erect: {
  49226. height: math.unit(9, "feet"),
  49227. weight: math.unit(10750, "lb"),
  49228. name: "Erect",
  49229. image: {
  49230. source: "./media/characters/nora/erect.svg",
  49231. extra: 1488/1433,
  49232. bottom: 133/1621
  49233. }
  49234. },
  49235. },
  49236. [
  49237. {
  49238. name: "Normal",
  49239. height: math.unit(9, "feet"),
  49240. default: true
  49241. },
  49242. ]
  49243. ))
  49244. characterMakers.push(() => makeCharacter(
  49245. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49246. {
  49247. front: {
  49248. height: math.unit(25, "feet"),
  49249. weight: math.unit(27500, "lb"),
  49250. name: "Front",
  49251. image: {
  49252. source: "./media/characters/north-caudin/front.svg",
  49253. extra: 1184/1082,
  49254. bottom: 23/1207
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(25, "feet"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. //characters
  49267. function makeCharacters() {
  49268. const results = [];
  49269. characterMakers.forEach(character => {
  49270. results.push(character());
  49271. });
  49272. return results;
  49273. }