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

50176 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. "amogus": {
  1908. name: "Amogus",
  1909. parents: ["deity"]
  1910. },
  1911. "ferret": {
  1912. name: "Ferret",
  1913. parents: ["mustelid"]
  1914. },
  1915. }
  1916. //species
  1917. function getSpeciesInfo(speciesList) {
  1918. let result = new Set();
  1919. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1920. result.add(entry)
  1921. });
  1922. return Array.from(result);
  1923. };
  1924. function getSpeciesInfoHelper(species) {
  1925. if (!speciesData[species]) {
  1926. console.warn(species + " doesn't exist");
  1927. return [];
  1928. }
  1929. if (speciesData[species].parents) {
  1930. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1931. } else {
  1932. return [species];
  1933. }
  1934. }
  1935. characterMakers.push(() => makeCharacter(
  1936. {
  1937. name: "Fen",
  1938. species: ["crux"],
  1939. description: {
  1940. title: "Bio",
  1941. text: "Very furry. Sheds on everything."
  1942. },
  1943. tags: [
  1944. "anthro",
  1945. "goo"
  1946. ]
  1947. },
  1948. {
  1949. front: {
  1950. height: math.unit(12, "feet"),
  1951. weight: math.unit(2400, "lb"),
  1952. name: "Front",
  1953. image: {
  1954. source: "./media/characters/fen/front.svg",
  1955. extra: 1804/1562,
  1956. bottom: 205/2009
  1957. }
  1958. },
  1959. diving: {
  1960. height: math.unit(4.9, "meters"),
  1961. weight: math.unit(2400, "lb"),
  1962. name: "Diving",
  1963. image: {
  1964. source: "./media/characters/fen/diving.svg"
  1965. }
  1966. },
  1967. goo: {
  1968. height: math.unit(12, "feet"),
  1969. weight: math.unit(3600, "lb"),
  1970. volume: math.unit(1000, "liters"),
  1971. capacity: math.unit(6, "people"),
  1972. name: "Goo",
  1973. image: {
  1974. source: "./media/characters/fen/goo.svg",
  1975. extra: 1307/1071,
  1976. bottom: 134/1441
  1977. }
  1978. },
  1979. maw: {
  1980. height: math.unit(5.03, "feet"),
  1981. name: "Maw",
  1982. image: {
  1983. source: "./media/characters/fen/maw.svg"
  1984. }
  1985. },
  1986. gooCeiling: {
  1987. height: math.unit(6.6, "feet"),
  1988. weight: math.unit(3000, "lb"),
  1989. volume: math.unit(1000, "liters"),
  1990. capacity: math.unit(6, "people"),
  1991. name: "Goo (Ceiling)",
  1992. image: {
  1993. source: "./media/characters/fen/goo-ceiling.svg"
  1994. }
  1995. },
  1996. back: {
  1997. height: math.unit(12, "feet"),
  1998. weight: math.unit(2400, "lb"),
  1999. name: "Back",
  2000. image: {
  2001. source: "./media/characters/fen/back.svg",
  2002. },
  2003. info: {
  2004. description: {
  2005. mode: "append",
  2006. text: "\n\nHe is not currently looking at you."
  2007. }
  2008. }
  2009. },
  2010. full: {
  2011. height: math.unit(1.6, "meter"),
  2012. weight: math.unit(3200, "lb"),
  2013. name: "Full",
  2014. image: {
  2015. source: "./media/characters/fen/full.svg",
  2016. extra: 1133/859,
  2017. bottom: 145/1278
  2018. },
  2019. info: {
  2020. description: {
  2021. mode: "append",
  2022. text: "\n\nMunch."
  2023. }
  2024. }
  2025. },
  2026. gooLounging: {
  2027. height: math.unit(4.53, "feet"),
  2028. weight: math.unit(3000, "lb"),
  2029. capacity: math.unit(6, "people"),
  2030. name: "Goo (Lounging)",
  2031. image: {
  2032. source: "./media/characters/fen/goo-lounging.svg",
  2033. bottom: 116 / 613
  2034. }
  2035. },
  2036. lounging: {
  2037. height: math.unit(10.52, "feet"),
  2038. weight: math.unit(2400, "lb"),
  2039. name: "Lounging",
  2040. image: {
  2041. source: "./media/characters/fen/lounging.svg"
  2042. }
  2043. },
  2044. },
  2045. [
  2046. {
  2047. name: "Small",
  2048. height: math.unit(2.2428, "meter")
  2049. },
  2050. {
  2051. name: "Normal",
  2052. height: math.unit(12, "feet"),
  2053. default: true,
  2054. },
  2055. {
  2056. name: "Big",
  2057. height: math.unit(20, "feet")
  2058. },
  2059. {
  2060. name: "Minimacro",
  2061. height: math.unit(40, "feet"),
  2062. info: {
  2063. description: {
  2064. mode: "append",
  2065. text: "\n\nTOO DAMN BIG"
  2066. }
  2067. }
  2068. },
  2069. {
  2070. name: "Macro",
  2071. height: math.unit(100, "feet"),
  2072. info: {
  2073. description: {
  2074. mode: "append",
  2075. text: "\n\nTOO DAMN BIG"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(2, "miles")
  2082. },
  2083. {
  2084. name: "Gigamacro",
  2085. height: math.unit(10, "earths")
  2086. },
  2087. ]
  2088. ))
  2089. characterMakers.push(() => makeCharacter(
  2090. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2091. {
  2092. front: {
  2093. height: math.unit(183, "cm"),
  2094. weight: math.unit(80, "kg"),
  2095. name: "Front",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/front.svg",
  2098. bottom: 0.01,
  2099. extra: 2154 / 2081
  2100. }
  2101. },
  2102. frontAlt: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Front (alt)",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2108. }
  2109. },
  2110. back: {
  2111. height: math.unit(183, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Back",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/back.svg"
  2116. }
  2117. },
  2118. kneeling: {
  2119. height: math.unit(125, "cm"),
  2120. weight: math.unit(80, "kg"),
  2121. name: "Kneeling",
  2122. image: {
  2123. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2124. extra: 1033 / 977,
  2125. bottom: 23.7 / 1057
  2126. }
  2127. },
  2128. maw: {
  2129. height: math.unit(183 / 5, "cm"),
  2130. name: "Maw",
  2131. image: {
  2132. source: "./media/characters/sofia-fluttertail/maw.svg"
  2133. }
  2134. },
  2135. mawcloseup: {
  2136. height: math.unit(183 / 5 * 0.41, "cm"),
  2137. name: "Maw (Closeup)",
  2138. image: {
  2139. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2140. }
  2141. },
  2142. paws: {
  2143. height: math.unit(1.17, "feet"),
  2144. name: "Paws",
  2145. image: {
  2146. source: "./media/characters/sofia-fluttertail/paws.svg",
  2147. extra: 851 / 851,
  2148. bottom: 17 / 868
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Normal",
  2155. height: math.unit(1.83, "meter")
  2156. },
  2157. {
  2158. name: "Size Thief",
  2159. height: math.unit(18, "feet")
  2160. },
  2161. {
  2162. name: "50 Foot Collie",
  2163. height: math.unit(50, "feet")
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(96, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Megamerger",
  2172. height: math.unit(650, "feet")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(7, "feet"),
  2181. weight: math.unit(100, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/march/front.svg",
  2185. extra: 1992/1851,
  2186. bottom: 39/2031
  2187. }
  2188. },
  2189. foot: {
  2190. height: math.unit(0.9, "feet"),
  2191. name: "Foot",
  2192. image: {
  2193. source: "./media/characters/march/foot.svg"
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(7.9, "feet")
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(220, "meters")
  2205. },
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(2.98, "km"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(15963, "km")
  2214. },
  2215. {
  2216. name: "Teramacro",
  2217. height: math.unit(2980000000, "km")
  2218. },
  2219. {
  2220. name: "Examacro",
  2221. height: math.unit(250, "parsecs")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(6, "feet"),
  2230. weight: math.unit(60, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/noir/front.svg",
  2234. extra: 1,
  2235. bottom: 0.032
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(6.6, "feet")
  2243. },
  2244. {
  2245. name: "Macro",
  2246. height: math.unit(500, "feet")
  2247. },
  2248. {
  2249. name: "Megamacro",
  2250. height: math.unit(2.5, "km"),
  2251. default: true
  2252. },
  2253. {
  2254. name: "Gigamacro",
  2255. height: math.unit(22500, "km")
  2256. },
  2257. {
  2258. name: "Teramacro",
  2259. height: math.unit(2500000000, "km")
  2260. },
  2261. {
  2262. name: "Examacro",
  2263. height: math.unit(200, "parsecs")
  2264. },
  2265. ]
  2266. ))
  2267. characterMakers.push(() => makeCharacter(
  2268. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2269. {
  2270. front: {
  2271. height: math.unit(7, "feet"),
  2272. weight: math.unit(100, "kg"),
  2273. name: "Front",
  2274. image: {
  2275. source: "./media/characters/okuri/front.svg",
  2276. extra: 739/665,
  2277. bottom: 39/778
  2278. }
  2279. },
  2280. back: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Back",
  2284. image: {
  2285. source: "./media/characters/okuri/back.svg",
  2286. extra: 734/653,
  2287. bottom: 13/747
  2288. }
  2289. },
  2290. sitting: {
  2291. height: math.unit(2.95, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Sitting",
  2294. image: {
  2295. source: "./media/characters/okuri/sitting.svg",
  2296. extra: 370/318,
  2297. bottom: 99/469
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Smallest",
  2304. height: math.unit(5 + 2/12, "feet")
  2305. },
  2306. {
  2307. name: "Smaller",
  2308. height: math.unit(300, "feet")
  2309. },
  2310. {
  2311. name: "Small",
  2312. height: math.unit(1000, "feet")
  2313. },
  2314. {
  2315. name: "Macro",
  2316. height: math.unit(1, "mile")
  2317. },
  2318. {
  2319. name: "Mega Macro (Small)",
  2320. height: math.unit(20, "km")
  2321. },
  2322. {
  2323. name: "Mega Macro (Large)",
  2324. height: math.unit(600, "km")
  2325. },
  2326. {
  2327. name: "Giga Macro",
  2328. height: math.unit(10000, "km")
  2329. },
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(577560, "km"),
  2333. default: true
  2334. },
  2335. {
  2336. name: "Large",
  2337. height: math.unit(4, "galaxies")
  2338. },
  2339. {
  2340. name: "Largest",
  2341. height: math.unit(15, "multiverses")
  2342. },
  2343. ]
  2344. ))
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(7, "feet"),
  2350. weight: math.unit(100, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/manny/front.svg",
  2354. extra: 1,
  2355. bottom: 0.06
  2356. }
  2357. },
  2358. back: {
  2359. height: math.unit(7, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Back",
  2362. image: {
  2363. source: "./media/characters/manny/back.svg",
  2364. extra: 1,
  2365. bottom: 0.014
  2366. }
  2367. },
  2368. },
  2369. [
  2370. {
  2371. name: "Normal",
  2372. height: math.unit(7, "feet"),
  2373. },
  2374. {
  2375. name: "Macro",
  2376. height: math.unit(78, "feet"),
  2377. default: true
  2378. },
  2379. {
  2380. name: "Macro+",
  2381. height: math.unit(300, "meters")
  2382. },
  2383. {
  2384. name: "Macro++",
  2385. height: math.unit(2400, "meters")
  2386. },
  2387. {
  2388. name: "Megamacro",
  2389. height: math.unit(5167, "meters")
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(41769, "miles")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/adake/front-1.svg"
  2406. }
  2407. },
  2408. frontAlt: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(100, "kg"),
  2411. name: "Front (Alt)",
  2412. image: {
  2413. source: "./media/characters/adake/front-2.svg",
  2414. extra: 1,
  2415. bottom: 0.01
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/adake/back.svg",
  2424. }
  2425. },
  2426. kneel: {
  2427. height: math.unit(5.385, "feet"),
  2428. weight: math.unit(100, "kg"),
  2429. name: "Kneeling",
  2430. image: {
  2431. source: "./media/characters/adake/kneel.svg",
  2432. bottom: 0.052
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(7, "feet"),
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(78, "feet"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro+",
  2448. height: math.unit(300, "meters")
  2449. },
  2450. {
  2451. name: "Macro++",
  2452. height: math.unit(2400, "meters")
  2453. },
  2454. {
  2455. name: "Megamacro",
  2456. height: math.unit(5167, "meters")
  2457. },
  2458. {
  2459. name: "Gigamacro",
  2460. height: math.unit(41769, "miles")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(1.65, "meters"),
  2469. weight: math.unit(50, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/elijah/front.svg",
  2473. extra: 858 / 830,
  2474. bottom: 95.5 / 953.8559
  2475. }
  2476. },
  2477. back: {
  2478. height: math.unit(1.65, "meters"),
  2479. weight: math.unit(50, "kg"),
  2480. name: "Back",
  2481. image: {
  2482. source: "./media/characters/elijah/back.svg",
  2483. extra: 895 / 850,
  2484. bottom: 5.3 / 897.956
  2485. }
  2486. },
  2487. frontNsfw: {
  2488. height: math.unit(1.65, "meters"),
  2489. weight: math.unit(50, "kg"),
  2490. name: "Front (NSFW)",
  2491. image: {
  2492. source: "./media/characters/elijah/front-nsfw.svg",
  2493. extra: 858 / 830,
  2494. bottom: 95.5 / 953.8559
  2495. }
  2496. },
  2497. backNsfw: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Back (NSFW)",
  2501. image: {
  2502. source: "./media/characters/elijah/back-nsfw.svg",
  2503. extra: 895 / 850,
  2504. bottom: 5.3 / 897.956
  2505. }
  2506. },
  2507. dick: {
  2508. height: math.unit(1, "feet"),
  2509. name: "Dick",
  2510. image: {
  2511. source: "./media/characters/elijah/dick.svg"
  2512. }
  2513. },
  2514. beakOpen: {
  2515. height: math.unit(1.25, "feet"),
  2516. name: "Beak (Open)",
  2517. image: {
  2518. source: "./media/characters/elijah/beak-open.svg"
  2519. }
  2520. },
  2521. beakShut: {
  2522. height: math.unit(1.25, "feet"),
  2523. name: "Beak (Shut)",
  2524. image: {
  2525. source: "./media/characters/elijah/beak-shut.svg"
  2526. }
  2527. },
  2528. footFlexing: {
  2529. height: math.unit(1.61, "feet"),
  2530. name: "Foot (Flexing)",
  2531. image: {
  2532. source: "./media/characters/elijah/foot-flexing.svg"
  2533. }
  2534. },
  2535. footStepping: {
  2536. height: math.unit(1.44, "feet"),
  2537. name: "Foot (Stepping)",
  2538. image: {
  2539. source: "./media/characters/elijah/foot-stepping.svg"
  2540. }
  2541. },
  2542. plantigradeLeg: {
  2543. height: math.unit(2.34, "feet"),
  2544. name: "Plantigrade Leg",
  2545. image: {
  2546. source: "./media/characters/elijah/plantigrade-leg.svg"
  2547. }
  2548. },
  2549. plantigradeFootLeft: {
  2550. height: math.unit(0.9, "feet"),
  2551. name: "Plantigrade Foot (Left)",
  2552. image: {
  2553. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2554. }
  2555. },
  2556. plantigradeFootRight: {
  2557. height: math.unit(0.9, "feet"),
  2558. name: "Plantigrade Foot (Right)",
  2559. image: {
  2560. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2561. }
  2562. },
  2563. },
  2564. [
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(1.65, "meters")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(55, "meters"),
  2572. default: true
  2573. },
  2574. {
  2575. name: "Macro+",
  2576. height: math.unit(105, "meters")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2582. {
  2583. front: {
  2584. height: math.unit(7 + 2/12, "feet"),
  2585. weight: math.unit(320, "kg"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/rai/front.svg",
  2589. extra: 1802/1696,
  2590. bottom: 68/1870
  2591. }
  2592. },
  2593. frontDressed: {
  2594. height: math.unit(7 + 2/12, "feet"),
  2595. weight: math.unit(320, "kg"),
  2596. name: "Front (Dressed)",
  2597. image: {
  2598. source: "./media/characters/rai/front-dressed.svg",
  2599. extra: 1802/1696,
  2600. bottom: 68/1870
  2601. }
  2602. },
  2603. side: {
  2604. height: math.unit(7 + 2/12, "feet"),
  2605. weight: math.unit(320, "kg"),
  2606. name: "Side",
  2607. image: {
  2608. source: "./media/characters/rai/side.svg",
  2609. extra: 1789/1710,
  2610. bottom: 115/1904
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/rai/back.svg",
  2619. extra: 1770/1707,
  2620. bottom: 28/1798
  2621. }
  2622. },
  2623. feral: {
  2624. height: math.unit(9.5, "feet"),
  2625. weight: math.unit(640, "kg"),
  2626. name: "Feral",
  2627. image: {
  2628. source: "./media/characters/rai/feral.svg",
  2629. extra: 945/553,
  2630. bottom: 176/1121
  2631. }
  2632. },
  2633. dragon: {
  2634. height: math.unit(23, "feet"),
  2635. weight: math.unit(50000, "lb"),
  2636. name: "Dragon",
  2637. image: {
  2638. source: "./media/characters/rai/dragon.svg",
  2639. extra: 2498 / 2030,
  2640. bottom: 85.2 / 2584
  2641. }
  2642. },
  2643. maw: {
  2644. height: math.unit(1.69, "feet"),
  2645. name: "Maw",
  2646. image: {
  2647. source: "./media/characters/rai/maw.svg"
  2648. }
  2649. },
  2650. },
  2651. [
  2652. {
  2653. name: "Normal",
  2654. height: math.unit(7 + 2/12, "feet")
  2655. },
  2656. {
  2657. name: "Big",
  2658. height: math.unit(11, "feet")
  2659. },
  2660. {
  2661. name: "Macro",
  2662. height: math.unit(302, "feet"),
  2663. default: true
  2664. },
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2669. {
  2670. frontDressed: {
  2671. height: math.unit(216, "feet"),
  2672. weight: math.unit(7000000, "lb"),
  2673. name: "Front (Dressed)",
  2674. image: {
  2675. source: "./media/characters/jazzy/front-dressed.svg",
  2676. extra: 2738 / 2651,
  2677. bottom: 41.8 / 2786
  2678. }
  2679. },
  2680. backDressed: {
  2681. height: math.unit(216, "feet"),
  2682. weight: math.unit(7000000, "lb"),
  2683. name: "Back (Dressed)",
  2684. image: {
  2685. source: "./media/characters/jazzy/back-dressed.svg",
  2686. extra: 2775 / 2673,
  2687. bottom: 36.8 / 2817
  2688. }
  2689. },
  2690. front: {
  2691. height: math.unit(216, "feet"),
  2692. weight: math.unit(7000000, "lb"),
  2693. name: "Front",
  2694. image: {
  2695. source: "./media/characters/jazzy/front.svg",
  2696. extra: 2738 / 2651,
  2697. bottom: 41.8 / 2786
  2698. }
  2699. },
  2700. back: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Back",
  2704. image: {
  2705. source: "./media/characters/jazzy/back.svg",
  2706. extra: 2775 / 2673,
  2707. bottom: 36.8 / 2817
  2708. }
  2709. },
  2710. maw: {
  2711. height: math.unit(20, "feet"),
  2712. name: "Maw",
  2713. image: {
  2714. source: "./media/characters/jazzy/maw.svg"
  2715. }
  2716. },
  2717. paws: {
  2718. height: math.unit(27.5, "feet"),
  2719. name: "Paws",
  2720. image: {
  2721. source: "./media/characters/jazzy/paws.svg"
  2722. }
  2723. },
  2724. eye: {
  2725. height: math.unit(4.4, "feet"),
  2726. name: "Eye",
  2727. image: {
  2728. source: "./media/characters/jazzy/eye.svg"
  2729. }
  2730. },
  2731. droneOffense: {
  2732. height: math.unit(9.5, "inches"),
  2733. name: "Drone (Offense)",
  2734. image: {
  2735. source: "./media/characters/jazzy/drone-offense.svg"
  2736. }
  2737. },
  2738. droneRecon: {
  2739. height: math.unit(9.5, "inches"),
  2740. name: "Drone (Recon)",
  2741. image: {
  2742. source: "./media/characters/jazzy/drone-recon.svg"
  2743. }
  2744. },
  2745. droneDefense: {
  2746. height: math.unit(9.5, "inches"),
  2747. name: "Drone (Defense)",
  2748. image: {
  2749. source: "./media/characters/jazzy/drone-defense.svg"
  2750. }
  2751. },
  2752. },
  2753. [
  2754. {
  2755. name: "Macro",
  2756. height: math.unit(216, "feet"),
  2757. default: true
  2758. },
  2759. ]
  2760. ))
  2761. characterMakers.push(() => makeCharacter(
  2762. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2763. {
  2764. front: {
  2765. height: math.unit(9 + 6/12, "feet"),
  2766. weight: math.unit(700, "lb"),
  2767. name: "Front",
  2768. image: {
  2769. source: "./media/characters/flamm/front.svg",
  2770. extra: 1751/1632,
  2771. bottom: 46/1797
  2772. }
  2773. },
  2774. buff: {
  2775. height: math.unit(9 + 6/12, "feet"),
  2776. weight: math.unit(950, "lb"),
  2777. name: "Buff",
  2778. image: {
  2779. source: "./media/characters/flamm/buff.svg",
  2780. extra: 3018/2874,
  2781. bottom: 221/3239
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(9.5, "feet")
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(200, "feet"),
  2793. default: true
  2794. },
  2795. ]
  2796. ))
  2797. characterMakers.push(() => makeCharacter(
  2798. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2799. {
  2800. front: {
  2801. height: math.unit(5 + 3/12, "feet"),
  2802. weight: math.unit(60, "kg"),
  2803. name: "Front",
  2804. image: {
  2805. source: "./media/characters/zephiro/front.svg",
  2806. extra: 2309 / 2162,
  2807. bottom: 0.069
  2808. }
  2809. },
  2810. side: {
  2811. height: math.unit(5 + 3/12, "feet"),
  2812. weight: math.unit(60, "kg"),
  2813. name: "Side",
  2814. image: {
  2815. source: "./media/characters/zephiro/side.svg",
  2816. extra: 2403 / 2279,
  2817. bottom: 0.015
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(5 + 3/12, "feet"),
  2822. weight: math.unit(60, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/zephiro/back.svg",
  2826. extra: 2373 / 2244,
  2827. bottom: 0.013
  2828. }
  2829. },
  2830. hand: {
  2831. height: math.unit(0.68, "feet"),
  2832. name: "Hand",
  2833. image: {
  2834. source: "./media/characters/zephiro/hand.svg"
  2835. }
  2836. },
  2837. paw: {
  2838. height: math.unit(1, "feet"),
  2839. name: "Paw",
  2840. image: {
  2841. source: "./media/characters/zephiro/paw.svg"
  2842. }
  2843. },
  2844. beans: {
  2845. height: math.unit(0.93, "feet"),
  2846. name: "Beans",
  2847. image: {
  2848. source: "./media/characters/zephiro/beans.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Micro",
  2855. height: math.unit(3, "inches")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(5 + 3 / 12, "feet"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Macro",
  2864. height: math.unit(118, "feet")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(5, "feet"),
  2873. weight: math.unit(90, "kg"),
  2874. name: "Front",
  2875. image: {
  2876. source: "./media/characters/fory/front.svg",
  2877. extra: 2862 / 2674,
  2878. bottom: 180 / 3043.8
  2879. }
  2880. },
  2881. back: {
  2882. height: math.unit(5, "feet"),
  2883. weight: math.unit(90, "kg"),
  2884. name: "Back",
  2885. image: {
  2886. source: "./media/characters/fory/back.svg",
  2887. extra: 2962 / 2791,
  2888. bottom: 106 / 3071.8
  2889. }
  2890. },
  2891. foot: {
  2892. height: math.unit(2.14, "feet"),
  2893. name: "Foot",
  2894. image: {
  2895. source: "./media/characters/fory/foot.svg"
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(5, "feet")
  2903. },
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(50, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(10, "miles")
  2912. },
  2913. {
  2914. name: "Gigamacro",
  2915. height: math.unit(5, "earths")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(7, "feet"),
  2924. weight: math.unit(90, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/kurrikage/front.svg",
  2928. extra: 1845/1733,
  2929. bottom: 119/1964
  2930. }
  2931. },
  2932. back: {
  2933. height: math.unit(7, "feet"),
  2934. weight: math.unit(90, "kg"),
  2935. name: "Back",
  2936. image: {
  2937. source: "./media/characters/kurrikage/back.svg",
  2938. extra: 1790/1677,
  2939. bottom: 61/1851
  2940. }
  2941. },
  2942. dressed: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Dressed",
  2946. image: {
  2947. source: "./media/characters/kurrikage/dressed.svg",
  2948. extra: 1845/1733,
  2949. bottom: 119/1964
  2950. }
  2951. },
  2952. foot: {
  2953. height: math.unit(1.5, "feet"),
  2954. name: "Foot",
  2955. image: {
  2956. source: "./media/characters/kurrikage/foot.svg"
  2957. }
  2958. },
  2959. staff: {
  2960. height: math.unit(6.7, "feet"),
  2961. name: "Staff",
  2962. image: {
  2963. source: "./media/characters/kurrikage/staff.svg"
  2964. }
  2965. },
  2966. peek: {
  2967. height: math.unit(1.05, "feet"),
  2968. name: "Peeking",
  2969. image: {
  2970. source: "./media/characters/kurrikage/peek.svg",
  2971. bottom: 0.08
  2972. }
  2973. },
  2974. },
  2975. [
  2976. {
  2977. name: "Normal",
  2978. height: math.unit(12, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Big",
  2983. height: math.unit(20, "feet")
  2984. },
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(500, "feet")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(20, "miles")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/shingo/front.svg",
  3004. extra: 1900/1825,
  3005. bottom: 82/1982
  3006. }
  3007. },
  3008. side: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Side",
  3012. image: {
  3013. source: "./media/characters/shingo/side.svg",
  3014. extra: 1930/1865,
  3015. bottom: 16/1946
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/shingo/back.svg",
  3024. extra: 1922/1852,
  3025. bottom: 16/1938
  3026. }
  3027. },
  3028. frontDressed: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(150, "lb"),
  3031. name: "Front-dressed",
  3032. image: {
  3033. source: "./media/characters/shingo/front-dressed.svg",
  3034. extra: 1900/1825,
  3035. bottom: 82/1982
  3036. }
  3037. },
  3038. paw: {
  3039. height: math.unit(1.29, "feet"),
  3040. name: "Paw",
  3041. image: {
  3042. source: "./media/characters/shingo/paw.svg"
  3043. }
  3044. },
  3045. hand: {
  3046. height: math.unit(1.07, "feet"),
  3047. name: "Hand",
  3048. image: {
  3049. source: "./media/characters/shingo/hand.svg"
  3050. }
  3051. },
  3052. frontAlt: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Alt)",
  3056. image: {
  3057. source: "./media/characters/shingo/front-alt.svg",
  3058. extra: 3511 / 3338,
  3059. bottom: 0.005
  3060. }
  3061. },
  3062. frontAlt2: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (Alt 2)",
  3066. image: {
  3067. source: "./media/characters/shingo/front-alt-2.svg",
  3068. extra: 706/681,
  3069. bottom: 11/717
  3070. }
  3071. },
  3072. pawAlt: {
  3073. height: math.unit(1, "feet"),
  3074. name: "Paw (Alt)",
  3075. image: {
  3076. source: "./media/characters/shingo/paw-alt.svg"
  3077. }
  3078. },
  3079. },
  3080. [
  3081. {
  3082. name: "Micro",
  3083. height: math.unit(4, "inches")
  3084. },
  3085. {
  3086. name: "Normal",
  3087. height: math.unit(6, "feet"),
  3088. default: true
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(108, "feet")
  3093. },
  3094. {
  3095. name: "Macro+",
  3096. height: math.unit(1500, "feet")
  3097. },
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3102. {
  3103. side: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/aigey/side.svg"
  3109. }
  3110. },
  3111. },
  3112. [
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(200, "feet"),
  3116. default: true
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(100, "miles")
  3121. },
  3122. ]
  3123. )
  3124. )
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3127. {
  3128. front: {
  3129. height: math.unit(5 + 5 / 12, "feet"),
  3130. weight: math.unit(75, "kg"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/natasha/front.svg",
  3134. extra: 859 / 824,
  3135. bottom: 23 / 879.6
  3136. }
  3137. },
  3138. frontNsfw: {
  3139. height: math.unit(5 + 5 / 12, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Front (NSFW)",
  3142. image: {
  3143. source: "./media/characters/natasha/front-nsfw.svg",
  3144. extra: 859 / 824,
  3145. bottom: 23 / 879.6
  3146. }
  3147. },
  3148. frontErect: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front (Erect)",
  3152. image: {
  3153. source: "./media/characters/natasha/front-erect.svg",
  3154. extra: 859 / 824,
  3155. bottom: 23 / 879.6
  3156. }
  3157. },
  3158. back: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Back",
  3162. image: {
  3163. source: "./media/characters/natasha/back.svg",
  3164. extra: 887.9 / 852.6,
  3165. bottom: 9.7 / 896.4
  3166. }
  3167. },
  3168. backAlt: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back (Alt)",
  3172. image: {
  3173. source: "./media/characters/natasha/back-alt.svg",
  3174. extra: 1236.7 / 1192,
  3175. bottom: 22.3 / 1258.2
  3176. }
  3177. },
  3178. dick: {
  3179. height: math.unit(1.772, "feet"),
  3180. name: "Dick",
  3181. image: {
  3182. source: "./media/characters/natasha/dick.svg"
  3183. }
  3184. },
  3185. paw: {
  3186. height: math.unit(0.250, "meters"),
  3187. name: "Paw",
  3188. image: {
  3189. source: "./media/characters/natasha/paw.svg"
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(5 + 5 / 12, "feet")
  3197. },
  3198. {
  3199. name: "Large",
  3200. height: math.unit(12, "feet")
  3201. },
  3202. {
  3203. name: "Macro",
  3204. height: math.unit(100, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Macro+",
  3209. height: math.unit(260, "feet")
  3210. },
  3211. {
  3212. name: "Macro++",
  3213. height: math.unit(1, "mile")
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/malik/front.svg"
  3226. }
  3227. },
  3228. side: {
  3229. height: math.unit(6, "feet"),
  3230. weight: math.unit(75, "kg"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/malik/side.svg",
  3234. extra: 1.1539
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Back",
  3241. image: {
  3242. source: "./media/characters/malik/back.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(156, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro+",
  3254. height: math.unit(1188, "feet")
  3255. },
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3260. {
  3261. front: {
  3262. height: math.unit(6, "feet"),
  3263. weight: math.unit(75, "kg"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/sefer/front.svg",
  3267. extra: 848 / 659,
  3268. bottom: 28.3 / 876.442
  3269. }
  3270. },
  3271. back: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Back",
  3275. image: {
  3276. source: "./media/characters/sefer/back.svg",
  3277. extra: 864 / 695,
  3278. bottom: 10 / 871
  3279. }
  3280. },
  3281. frontDressed: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Front (Dressed)",
  3285. image: {
  3286. source: "./media/characters/sefer/front-dressed.svg",
  3287. extra: 839 / 653,
  3288. bottom: 37.6 / 878
  3289. }
  3290. },
  3291. },
  3292. [
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(6, "feet"),
  3296. default: true
  3297. },
  3298. ]
  3299. ))
  3300. characterMakers.push(() => makeCharacter(
  3301. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3302. {
  3303. body: {
  3304. height: math.unit(2.2428, "meter"),
  3305. weight: math.unit(124.738, "kg"),
  3306. name: "Body",
  3307. image: {
  3308. extra: 1225 / 1050,
  3309. source: "./media/characters/north/front.svg"
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Micro",
  3316. height: math.unit(4, "inches")
  3317. },
  3318. {
  3319. name: "Macro",
  3320. height: math.unit(63, "meters")
  3321. },
  3322. {
  3323. name: "Megamacro",
  3324. height: math.unit(101, "miles"),
  3325. default: true
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3331. {
  3332. angled: {
  3333. height: math.unit(4, "meter"),
  3334. weight: math.unit(150, "kg"),
  3335. name: "Angled",
  3336. image: {
  3337. source: "./media/characters/talan/angled-sfw.svg",
  3338. bottom: 29 / 3734
  3339. }
  3340. },
  3341. angledNsfw: {
  3342. height: math.unit(4, "meter"),
  3343. weight: math.unit(150, "kg"),
  3344. name: "Angled (NSFW)",
  3345. image: {
  3346. source: "./media/characters/talan/angled-nsfw.svg",
  3347. bottom: 29 / 3734
  3348. }
  3349. },
  3350. frontNsfw: {
  3351. height: math.unit(4, "meter"),
  3352. weight: math.unit(150, "kg"),
  3353. name: "Front (NSFW)",
  3354. image: {
  3355. source: "./media/characters/talan/front-nsfw.svg",
  3356. bottom: 29 / 3734
  3357. }
  3358. },
  3359. sideNsfw: {
  3360. height: math.unit(4, "meter"),
  3361. weight: math.unit(150, "kg"),
  3362. name: "Side (NSFW)",
  3363. image: {
  3364. source: "./media/characters/talan/side-nsfw.svg",
  3365. bottom: 29 / 3734
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(4, "meter"),
  3370. weight: math.unit(150, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/talan/back.svg"
  3374. }
  3375. },
  3376. dickBottom: {
  3377. height: math.unit(0.621, "meter"),
  3378. name: "Dick (Bottom)",
  3379. image: {
  3380. source: "./media/characters/talan/dick-bottom.svg"
  3381. }
  3382. },
  3383. dickTop: {
  3384. height: math.unit(0.621, "meter"),
  3385. name: "Dick (Top)",
  3386. image: {
  3387. source: "./media/characters/talan/dick-top.svg"
  3388. }
  3389. },
  3390. dickSide: {
  3391. height: math.unit(0.305, "meter"),
  3392. name: "Dick (Side)",
  3393. image: {
  3394. source: "./media/characters/talan/dick-side.svg"
  3395. }
  3396. },
  3397. dickFront: {
  3398. height: math.unit(0.305, "meter"),
  3399. name: "Dick (Front)",
  3400. image: {
  3401. source: "./media/characters/talan/dick-front.svg"
  3402. }
  3403. },
  3404. },
  3405. [
  3406. {
  3407. name: "Normal",
  3408. height: math.unit(4, "meters")
  3409. },
  3410. {
  3411. name: "Macro",
  3412. height: math.unit(100, "meters")
  3413. },
  3414. {
  3415. name: "Megamacro",
  3416. height: math.unit(2, "miles"),
  3417. default: true
  3418. },
  3419. {
  3420. name: "Gigamacro",
  3421. height: math.unit(5000, "miles")
  3422. },
  3423. {
  3424. name: "Teramacro",
  3425. height: math.unit(100, "parsecs")
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front.svg"
  3438. }
  3439. },
  3440. frontAlt: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt.svg"
  3446. }
  3447. },
  3448. frontAlt2: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(90, "kg"),
  3451. name: "Front (alt 2)",
  3452. image: {
  3453. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(9, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Large",
  3465. height: math.unit(25, "feet")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(0.25, "miles")
  3470. },
  3471. {
  3472. name: "Megamacro",
  3473. height: math.unit(10, "miles")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3479. {
  3480. side: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(140, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/sosha/side.svg",
  3486. bottom: 0.042
  3487. }
  3488. },
  3489. },
  3490. [
  3491. {
  3492. name: "Normal",
  3493. height: math.unit(12, "feet"),
  3494. default: true
  3495. }
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3500. {
  3501. side: {
  3502. height: math.unit(5 + 5 / 12, "feet"),
  3503. weight: math.unit(170, "kg"),
  3504. name: "Side",
  3505. image: {
  3506. source: "./media/characters/runnola/side.svg",
  3507. extra: 741 / 448,
  3508. bottom: 0.05
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Small",
  3515. height: math.unit(3, "feet")
  3516. },
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(5 + 5 / 12, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Big",
  3524. height: math.unit(10, "feet")
  3525. },
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(50, "kg"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/kurribird/front.svg",
  3537. bottom: 0.015
  3538. }
  3539. },
  3540. frontAlt: {
  3541. height: math.unit(1.5, "meter"),
  3542. weight: math.unit(50, "kg"),
  3543. name: "Front (Alt)",
  3544. image: {
  3545. source: "./media/characters/kurribird/front-alt.svg",
  3546. extra: 1.45
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Normal",
  3553. height: math.unit(7, "feet")
  3554. },
  3555. {
  3556. name: "Big",
  3557. height: math.unit(12, "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(1500, "feet")
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(2, "miles")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(80, "kg"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/elbial/front.svg",
  3579. extra: 1643 / 1556,
  3580. bottom: 60.2 / 1696
  3581. }
  3582. },
  3583. side: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Side",
  3587. image: {
  3588. source: "./media/characters/elbial/side.svg",
  3589. extra: 1601/1528,
  3590. bottom: 97/1698
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/elbial/back.svg",
  3599. extra: 1653/1569,
  3600. bottom: 20/1673
  3601. }
  3602. },
  3603. frontDressed: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front (Dressed)",
  3607. image: {
  3608. source: "./media/characters/elbial/front-dressed.svg",
  3609. extra: 1638/1569,
  3610. bottom: 70/1708
  3611. }
  3612. },
  3613. genitals: {
  3614. height: math.unit(2 / 3.367, "meter"),
  3615. name: "Genitals",
  3616. image: {
  3617. source: "./media/characters/elbial/genitals.svg"
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Large",
  3624. height: math.unit(100, "feet")
  3625. },
  3626. {
  3627. name: "Macro",
  3628. height: math.unit(500, "feet"),
  3629. default: true
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(10, "miles")
  3634. },
  3635. {
  3636. name: "Gigamacro",
  3637. height: math.unit(25000, "miles")
  3638. },
  3639. {
  3640. name: "Full-Size",
  3641. height: math.unit(8000000, "gigaparsecs")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(60, "kg"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/noah/front.svg"
  3654. }
  3655. },
  3656. talons: {
  3657. height: math.unit(0.315, "meter"),
  3658. name: "Talons",
  3659. image: {
  3660. source: "./media/characters/noah/talons.svg"
  3661. }
  3662. }
  3663. },
  3664. [
  3665. {
  3666. name: "Large",
  3667. height: math.unit(50, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(750, "feet"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Megamacro",
  3676. height: math.unit(50, "miles")
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(100000, "miles")
  3681. },
  3682. {
  3683. name: "Full-Size",
  3684. height: math.unit(3000000000, "miles")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/natalya/front.svg"
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(2, "meter"),
  3701. weight: math.unit(80, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/natalya/back.svg"
  3705. }
  3706. }
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(150, "feet"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Megamacro",
  3716. height: math.unit(5, "miles")
  3717. },
  3718. {
  3719. name: "Full-Size",
  3720. height: math.unit(600, "kiloparsecs")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3726. {
  3727. front: {
  3728. height: math.unit(2, "meter"),
  3729. weight: math.unit(50, "kg"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/erestrebah/front.svg",
  3733. extra: 1262/1162,
  3734. bottom: 96/1358
  3735. }
  3736. },
  3737. back: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Back",
  3741. image: {
  3742. source: "./media/characters/erestrebah/back.svg",
  3743. extra: 1257/1139,
  3744. bottom: 13/1270
  3745. }
  3746. },
  3747. wing: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(50, "kg"),
  3750. name: "Wing",
  3751. image: {
  3752. source: "./media/characters/erestrebah/wing.svg",
  3753. extra: 1262/1162,
  3754. bottom: 96/1358
  3755. }
  3756. },
  3757. mouth: {
  3758. height: math.unit(0.39, "feet"),
  3759. name: "Mouth",
  3760. image: {
  3761. source: "./media/characters/erestrebah/mouth.svg"
  3762. }
  3763. }
  3764. },
  3765. [
  3766. {
  3767. name: "Normal",
  3768. height: math.unit(10, "feet")
  3769. },
  3770. {
  3771. name: "Large",
  3772. height: math.unit(50, "feet"),
  3773. default: true
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(300, "feet")
  3778. },
  3779. {
  3780. name: "Macro+",
  3781. height: math.unit(750, "feet")
  3782. },
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(3, "miles")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(2, "meter"),
  3794. weight: math.unit(80, "kg"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/jennifer/front.svg",
  3798. bottom: 0.11,
  3799. extra: 1.16
  3800. }
  3801. },
  3802. frontAlt: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(80, "kg"),
  3805. name: "Front (Alt)",
  3806. image: {
  3807. source: "./media/characters/jennifer/front-alt.svg"
  3808. }
  3809. }
  3810. },
  3811. [
  3812. {
  3813. name: "Canon Height",
  3814. height: math.unit(120, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(300, "feet")
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(20000, "feet")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(2, "meter"),
  3832. weight: math.unit(50, "kg"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/kalista/front.svg",
  3836. extra: 1314/1145,
  3837. bottom: 101/1415
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(50, "kg"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/kalista/back.svg",
  3846. extra: 1366 / 1156,
  3847. bottom: 33.9 / 1362.78
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Uncomfortably Small",
  3854. height: math.unit(10, "feet")
  3855. },
  3856. {
  3857. name: "Small",
  3858. height: math.unit(30, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(100, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(2000, "feet")
  3868. },
  3869. {
  3870. name: "True Form",
  3871. height: math.unit(8924, "miles")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/ggv/front.svg"
  3884. }
  3885. },
  3886. side: {
  3887. height: math.unit(2, "meter"),
  3888. weight: math.unit(120, "kg"),
  3889. name: "Side",
  3890. image: {
  3891. source: "./media/characters/ggv/side.svg"
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Extremely Puny",
  3898. height: math.unit(9 + 5 / 12, "feet")
  3899. },
  3900. {
  3901. name: "Horribly Small",
  3902. height: math.unit(47.7, "miles"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Reasonably Sized",
  3907. height: math.unit(25000, "parsecs")
  3908. },
  3909. {
  3910. name: "Slightly Uncompressed",
  3911. height: math.unit(7.77e31, "parsecs")
  3912. },
  3913. {
  3914. name: "Omniversal",
  3915. height: math.unit(1e300, "meters")
  3916. },
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/napalm/front.svg"
  3928. }
  3929. },
  3930. back: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(75, "lb"),
  3933. name: "Back",
  3934. image: {
  3935. source: "./media/characters/napalm/back.svg"
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Standard",
  3942. height: math.unit(55, "feet"),
  3943. default: true
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(7 + 5 / 6, "feet"),
  3952. weight: math.unit(325, "lb"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/asana/front.svg",
  3956. extra: 1133 / 1060,
  3957. bottom: 15.2 / 1148.6
  3958. }
  3959. },
  3960. back: {
  3961. height: math.unit(7 + 5 / 6, "feet"),
  3962. weight: math.unit(325, "lb"),
  3963. name: "Back",
  3964. image: {
  3965. source: "./media/characters/asana/back.svg",
  3966. extra: 1114 / 1043,
  3967. bottom: 5 / 1120
  3968. }
  3969. },
  3970. dressedDark: {
  3971. height: math.unit(7 + 5 / 6, "feet"),
  3972. weight: math.unit(325, "lb"),
  3973. name: "Dressed (Dark)",
  3974. image: {
  3975. source: "./media/characters/asana/dressed-dark.svg",
  3976. extra: 1133 / 1060,
  3977. bottom: 15.2 / 1148.6
  3978. }
  3979. },
  3980. dressedLight: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Dressed (Light)",
  3984. image: {
  3985. source: "./media/characters/asana/dressed-light.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Standard",
  3994. height: math.unit(7 + 5 / 6, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Large",
  3999. height: math.unit(10, "meters")
  4000. },
  4001. {
  4002. name: "Macro",
  4003. height: math.unit(2500, "meters")
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(5e6, "meters")
  4008. },
  4009. {
  4010. name: "Examacro",
  4011. height: math.unit(5e12, "lightyears")
  4012. },
  4013. {
  4014. name: "Max Size",
  4015. height: math.unit(1e31, "lightyears")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(60, "kg"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/ebony/front.svg",
  4028. bottom: 0.03,
  4029. extra: 1045 / 810 + 0.03
  4030. }
  4031. },
  4032. side: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(60, "kg"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/ebony/side.svg",
  4038. bottom: 0.03,
  4039. extra: 1045 / 810 + 0.03
  4040. }
  4041. },
  4042. back: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Back",
  4046. image: {
  4047. source: "./media/characters/ebony/back.svg",
  4048. bottom: 0.01,
  4049. extra: 1045 / 810 + 0.01
  4050. }
  4051. },
  4052. },
  4053. [
  4054. // TODO check why I did this lol
  4055. {
  4056. name: "Standard",
  4057. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Macro",
  4062. height: math.unit(200, "feet")
  4063. },
  4064. {
  4065. name: "Gigamacro",
  4066. height: math.unit(13000, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/mountain/front.svg",
  4079. extra: 972 / 955,
  4080. bottom: 64 / 1036.6
  4081. }
  4082. },
  4083. back: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Back",
  4087. image: {
  4088. source: "./media/characters/mountain/back.svg",
  4089. extra: 970 / 950,
  4090. bottom: 28.25 / 999
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Large",
  4097. height: math.unit(20, "meters")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(300, "meters")
  4102. },
  4103. {
  4104. name: "Gigamacro",
  4105. height: math.unit(10000, "km"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Examacro",
  4110. height: math.unit(10e9, "lightyears")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(8, "feet"),
  4119. weight: math.unit(500, "lb"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/rick/front.svg"
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(8, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(5, "km")
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/ona/front.svg"
  4147. }
  4148. },
  4149. frontAlt: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Front (Alt)",
  4153. image: {
  4154. source: "./media/characters/ona/front-alt.svg"
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(8, "feet"),
  4159. weight: math.unit(120, "lb"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/ona/back.svg"
  4163. }
  4164. },
  4165. foot: {
  4166. height: math.unit(1.1, "feet"),
  4167. name: "Foot",
  4168. image: {
  4169. source: "./media/characters/ona/foot.svg"
  4170. }
  4171. }
  4172. },
  4173. [
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(70, "km"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(681818, "miles")
  4182. },
  4183. {
  4184. name: "Examacro",
  4185. height: math.unit(3800000, "lightyears")
  4186. },
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(12, "feet"),
  4194. weight: math.unit(3000, "lb"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/mech/front.svg",
  4198. extra: 2900 / 2770,
  4199. bottom: 110 / 3010
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(12, "feet"),
  4204. weight: math.unit(3000, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/mech/back.svg",
  4208. extra: 3011 / 2890,
  4209. bottom: 94 / 3105
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(3.07, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/mech/maw.svg"
  4217. }
  4218. },
  4219. head: {
  4220. height: math.unit(2.82, "feet"),
  4221. name: "Head",
  4222. image: {
  4223. source: "./media/characters/mech/head.svg"
  4224. }
  4225. },
  4226. dick: {
  4227. height: math.unit(1.43, "feet"),
  4228. name: "Dick",
  4229. image: {
  4230. source: "./media/characters/mech/dick.svg"
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(12, "feet")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(300, "feet"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Macro+",
  4246. height: math.unit(1500, "feet")
  4247. },
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(1.3, "meter"),
  4255. weight: math.unit(30, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gregory/front.svg",
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(1.3, "meter"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(20, "meter")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2.8, "meter"),
  4279. weight: math.unit(200, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/elory/front.svg",
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(2.8, "meter"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(38, "meter")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(470, "feet"),
  4303. weight: math.unit(924, "tons"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/angelpatamon/front.svg",
  4307. }
  4308. }
  4309. },
  4310. [
  4311. {
  4312. name: "Normal",
  4313. height: math.unit(470, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Deity Size I",
  4318. height: math.unit(28651.2, "km")
  4319. },
  4320. {
  4321. name: "Deity Size II",
  4322. height: math.unit(171907.2, "km")
  4323. }
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4328. {
  4329. side: {
  4330. height: math.unit(7.2, "meter"),
  4331. weight: math.unit(8.2, "tons"),
  4332. name: "Side",
  4333. image: {
  4334. source: "./media/characters/cryae/side.svg",
  4335. extra: 3500 / 1500
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Normal",
  4342. height: math.unit(7.2, "meter"),
  4343. default: true
  4344. }
  4345. ]
  4346. ))
  4347. characterMakers.push(() => makeCharacter(
  4348. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4349. {
  4350. front: {
  4351. height: math.unit(6, "feet"),
  4352. weight: math.unit(175, "lb"),
  4353. name: "Front",
  4354. image: {
  4355. source: "./media/characters/xera/front.svg",
  4356. extra: 2377 / 1972,
  4357. bottom: 75.5 / 2452
  4358. }
  4359. },
  4360. side: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(175, "lb"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/xera/side.svg",
  4366. extra: 2345 / 2019,
  4367. bottom: 39.7 / 2384
  4368. }
  4369. },
  4370. back: {
  4371. height: math.unit(6, "feet"),
  4372. weight: math.unit(175, "lb"),
  4373. name: "Back",
  4374. image: {
  4375. source: "./media/characters/xera/back.svg",
  4376. extra: 2095 / 1984,
  4377. bottom: 67 / 2166
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "Small",
  4384. height: math.unit(10, "feet")
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(500, "meters"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Macro+",
  4393. height: math.unit(10, "km")
  4394. },
  4395. {
  4396. name: "Gigamacro",
  4397. height: math.unit(25000, "km")
  4398. },
  4399. {
  4400. name: "Teramacro",
  4401. height: math.unit(3e6, "km")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(6, "feet"),
  4410. weight: math.unit(175, "lb"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/nebula/front.svg",
  4414. extra: 2566 / 2362,
  4415. bottom: 81 / 2644
  4416. }
  4417. }
  4418. },
  4419. [
  4420. {
  4421. name: "Small",
  4422. height: math.unit(4.5, "meters")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(1500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(150, "km")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(27000, "km")
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(225, "lb"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/abysgar/front.svg"
  4448. }
  4449. }
  4450. },
  4451. [
  4452. {
  4453. name: "Small",
  4454. height: math.unit(4.5, "meters")
  4455. },
  4456. {
  4457. name: "Macro",
  4458. height: math.unit(1250, "meters"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Megamacro",
  4463. height: math.unit(125, "km")
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(26000, "km")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(180, "lb"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/yakuz/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Small",
  4486. height: math.unit(5, "meters")
  4487. },
  4488. {
  4489. name: "Macro",
  4490. height: math.unit(1500, "meters"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Megamacro",
  4495. height: math.unit(200, "km")
  4496. },
  4497. {
  4498. name: "Gigamacro",
  4499. height: math.unit(100000, "km")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(175, "lb"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/mirova/front.svg",
  4512. extra: 3334 / 3071,
  4513. bottom: 42 / 3375.6
  4514. }
  4515. }
  4516. },
  4517. [
  4518. {
  4519. name: "Small",
  4520. height: math.unit(5, "meters")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(900, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Megamacro",
  4529. height: math.unit(135, "km")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(20000, "km")
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4539. {
  4540. side: {
  4541. height: math.unit(28.35, "feet"),
  4542. weight: math.unit(99.75, "tons"),
  4543. name: "Side",
  4544. image: {
  4545. source: "./media/characters/asana-mech/side.svg",
  4546. extra: 923 / 699,
  4547. bottom: 50 / 975
  4548. }
  4549. },
  4550. chaingun: {
  4551. height: math.unit(7, "feet"),
  4552. weight: math.unit(2400, "lb"),
  4553. name: "Chaingun",
  4554. image: {
  4555. source: "./media/characters/asana-mech/chaingun.svg"
  4556. }
  4557. },
  4558. laser: {
  4559. height: math.unit(7.12, "feet"),
  4560. weight: math.unit(2000, "lb"),
  4561. name: "Laser",
  4562. image: {
  4563. source: "./media/characters/asana-mech/laser.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(28.35, "feet"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(2500, "feet")
  4576. },
  4577. {
  4578. name: "Megamacro",
  4579. height: math.unit(25, "miles")
  4580. },
  4581. {
  4582. name: "Examacro",
  4583. height: math.unit(6e8, "lightyears")
  4584. },
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4589. {
  4590. front: {
  4591. height: math.unit(5, "meters"),
  4592. weight: math.unit(1000, "kg"),
  4593. name: "Front",
  4594. image: {
  4595. source: "./media/characters/asche/front.svg",
  4596. extra: 1258 / 1190,
  4597. bottom: 47 / 1305
  4598. }
  4599. },
  4600. frontUnderwear: {
  4601. height: math.unit(5, "meters"),
  4602. weight: math.unit(1000, "kg"),
  4603. name: "Front (Underwear)",
  4604. image: {
  4605. source: "./media/characters/asche/front-underwear.svg",
  4606. extra: 1258 / 1190,
  4607. bottom: 47 / 1305
  4608. }
  4609. },
  4610. frontDressed: {
  4611. height: math.unit(5, "meters"),
  4612. weight: math.unit(1000, "kg"),
  4613. name: "Front (Dressed)",
  4614. image: {
  4615. source: "./media/characters/asche/front-dressed.svg",
  4616. extra: 1258 / 1190,
  4617. bottom: 47 / 1305
  4618. }
  4619. },
  4620. frontArmor: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front (Armored)",
  4624. image: {
  4625. source: "./media/characters/asche/front-armored.svg",
  4626. extra: 1374 / 1308,
  4627. bottom: 23 / 1397
  4628. }
  4629. },
  4630. mp724: {
  4631. height: math.unit(0.96, "meters"),
  4632. weight: math.unit(38, "kg"),
  4633. name: "H&K MP724",
  4634. image: {
  4635. source: "./media/characters/asche/h&k-mp724.svg"
  4636. }
  4637. },
  4638. side: {
  4639. height: math.unit(5, "meters"),
  4640. weight: math.unit(1000, "kg"),
  4641. name: "Side",
  4642. image: {
  4643. source: "./media/characters/asche/side.svg",
  4644. extra: 1717 / 1609,
  4645. bottom: 0.005
  4646. }
  4647. },
  4648. back: {
  4649. height: math.unit(5, "meters"),
  4650. weight: math.unit(1000, "kg"),
  4651. name: "Back",
  4652. image: {
  4653. source: "./media/characters/asche/back.svg",
  4654. extra: 1570 / 1501
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "DEFCON 5",
  4661. height: math.unit(5, "meters")
  4662. },
  4663. {
  4664. name: "DEFCON 4",
  4665. height: math.unit(500, "meters"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "DEFCON 3",
  4670. height: math.unit(5, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 2",
  4674. height: math.unit(500, "km")
  4675. },
  4676. {
  4677. name: "DEFCON 1",
  4678. height: math.unit(500000, "km")
  4679. },
  4680. {
  4681. name: "DEFCON 0",
  4682. height: math.unit(3, "gigaparsecs")
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4688. {
  4689. front: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front",
  4693. image: {
  4694. source: "./media/characters/gale/front.svg"
  4695. }
  4696. },
  4697. frontAlt1: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 1)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-1.svg"
  4703. }
  4704. },
  4705. frontAlt2: {
  4706. height: math.unit(2, "meters"),
  4707. weight: math.unit(76, "kg"),
  4708. name: "Front (Alt 2)",
  4709. image: {
  4710. source: "./media/characters/gale/front-alt-2.svg"
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7, "feet")
  4718. },
  4719. {
  4720. name: "Macro",
  4721. height: math.unit(150, "feet"),
  4722. default: true
  4723. },
  4724. {
  4725. name: "Macro+",
  4726. height: math.unit(300, "feet")
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4732. {
  4733. front: {
  4734. height: math.unit(5 + 10/12, "feet"),
  4735. weight: math.unit(67, "kg"),
  4736. name: "Front",
  4737. image: {
  4738. source: "./media/characters/draylen/front.svg",
  4739. extra: 832/777,
  4740. bottom: 85/917
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(5 + 10/12, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(150, "feet"),
  4752. default: true
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/chez/front.svg"
  4765. }
  4766. },
  4767. side: {
  4768. height: math.unit(7 + 9 / 12, "feet"),
  4769. weight: math.unit(379, "lbs"),
  4770. name: "Side",
  4771. image: {
  4772. source: "./media/characters/chez/side.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(7 + 9 / 12, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "God King",
  4784. height: math.unit(9750000, "meters")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(275, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/kaylum/front.svg",
  4797. bottom: 0.01,
  4798. extra: 1166 / 1031
  4799. }
  4800. },
  4801. frontWingless: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(275, "lbs"),
  4804. name: "Front (Wingless)",
  4805. image: {
  4806. source: "./media/characters/kaylum/front-wingless.svg",
  4807. bottom: 0.01,
  4808. extra: 1117 / 1031
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(3.05, "meters")
  4816. },
  4817. {
  4818. name: "Master",
  4819. height: math.unit(5.5, "meters")
  4820. },
  4821. {
  4822. name: "Rampage",
  4823. height: math.unit(19, "meters")
  4824. },
  4825. {
  4826. name: "Macro Lite",
  4827. height: math.unit(37, "meters")
  4828. },
  4829. {
  4830. name: "Hyper Predator",
  4831. height: math.unit(61, "meters")
  4832. },
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(138, "meters"),
  4836. default: true
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5 + 5 / 12, "feet"),
  4845. weight: math.unit(120, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/geta/front.svg",
  4849. extra: 1003/933,
  4850. bottom: 21/1024
  4851. }
  4852. },
  4853. paw: {
  4854. height: math.unit(0.35, "feet"),
  4855. name: "Paw",
  4856. image: {
  4857. source: "./media/characters/geta/paw.svg"
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Micro",
  4864. height: math.unit(3, "inches"),
  4865. default: true
  4866. },
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(5 + 5 / 12, "feet")
  4870. }
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4875. {
  4876. front: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(300, "lbs"),
  4879. name: "Front",
  4880. image: {
  4881. source: "./media/characters/tyrnn/front.svg"
  4882. }
  4883. }
  4884. },
  4885. [
  4886. {
  4887. name: "Main Height",
  4888. height: math.unit(355, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Fave. Height",
  4893. height: math.unit(2400, "feet")
  4894. }
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(300, "lbs"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/appledectomy/front.svg"
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(2500, "feet")
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(50, "miles"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Gigamacro",
  4921. height: math.unit(5000, "miles")
  4922. },
  4923. {
  4924. name: "Teramacro",
  4925. height: math.unit(250000, "miles")
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(200, "lbs"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/vulpes/front.svg",
  4938. extra: 573 / 543,
  4939. bottom: 0.033
  4940. }
  4941. },
  4942. side: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(200, "lbs"),
  4945. name: "Side",
  4946. image: {
  4947. source: "./media/characters/vulpes/side.svg",
  4948. extra: 577 / 549,
  4949. bottom: 11 / 588
  4950. }
  4951. },
  4952. back: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(200, "lbs"),
  4955. name: "Back",
  4956. image: {
  4957. source: "./media/characters/vulpes/back.svg",
  4958. extra: 573 / 549,
  4959. bottom: 20 / 593
  4960. }
  4961. },
  4962. feet: {
  4963. height: math.unit(1.276, "feet"),
  4964. name: "Feet",
  4965. image: {
  4966. source: "./media/characters/vulpes/feet.svg"
  4967. }
  4968. },
  4969. maw: {
  4970. height: math.unit(1.18, "feet"),
  4971. name: "Maw",
  4972. image: {
  4973. source: "./media/characters/vulpes/maw.svg"
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Micro",
  4980. height: math.unit(2, "inches")
  4981. },
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(6.3, "feet")
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(850, "feet")
  4989. },
  4990. {
  4991. name: "Megamacro",
  4992. height: math.unit(7500, "feet"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Gigamacro",
  4997. height: math.unit(570000, "miles")
  4998. }
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5003. {
  5004. front: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Front",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/front.svg"
  5010. }
  5011. },
  5012. side: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Side",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/side.svg"
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(210, "lbs"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/back.svg"
  5026. }
  5027. },
  5028. feral: {
  5029. height: math.unit(9, "feet"),
  5030. weight: math.unit(700, "lbs"),
  5031. name: "Feral",
  5032. image: {
  5033. source: "./media/characters/rain-fallen/feral.svg"
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Meddling with Mortals",
  5040. height: math.unit(8 + 8/12, "feet")
  5041. },
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(5, "meter")
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(150, "meter"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(278e6, "meter")
  5054. },
  5055. {
  5056. name: "Gigamacro",
  5057. height: math.unit(2e9, "meter")
  5058. },
  5059. {
  5060. name: "Teramacro",
  5061. height: math.unit(8e12, "meter")
  5062. },
  5063. {
  5064. name: "Devourer",
  5065. height: math.unit(14, "zettameters")
  5066. },
  5067. {
  5068. name: "Scarlet King",
  5069. height: math.unit(18, "yottameters")
  5070. },
  5071. {
  5072. name: "Void",
  5073. height: math.unit(1e88, "yottameters")
  5074. }
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5079. {
  5080. standing: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(180, "lbs"),
  5083. name: "Standing",
  5084. image: {
  5085. source: "./media/characters/zaakira/standing.svg",
  5086. extra: 1599/1504,
  5087. bottom: 39/1638
  5088. }
  5089. },
  5090. laying: {
  5091. height: math.unit(3, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Laying",
  5094. image: {
  5095. source: "./media/characters/zaakira/laying.svg"
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(12, "feet")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(279, "feet"),
  5107. default: true
  5108. }
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5113. {
  5114. femSfw: {
  5115. height: math.unit(8, "feet"),
  5116. weight: math.unit(350, "lb"),
  5117. name: "Fem",
  5118. image: {
  5119. source: "./media/characters/sigvald/fem-sfw.svg",
  5120. extra: 182 / 164,
  5121. bottom: 8.7 / 190.5
  5122. }
  5123. },
  5124. femNsfw: {
  5125. height: math.unit(8, "feet"),
  5126. weight: math.unit(350, "lb"),
  5127. name: "Fem (NSFW)",
  5128. image: {
  5129. source: "./media/characters/sigvald/fem-nsfw.svg",
  5130. extra: 182 / 164,
  5131. bottom: 8.7 / 190.5
  5132. }
  5133. },
  5134. maleNsfw: {
  5135. height: math.unit(8, "feet"),
  5136. weight: math.unit(350, "lb"),
  5137. name: "Male (NSFW)",
  5138. image: {
  5139. source: "./media/characters/sigvald/male-nsfw.svg",
  5140. extra: 182 / 164,
  5141. bottom: 8.7 / 190.5
  5142. }
  5143. },
  5144. hermNsfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Herm (NSFW)",
  5148. image: {
  5149. source: "./media/characters/sigvald/herm-nsfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. dick: {
  5155. height: math.unit(2.36, "feet"),
  5156. name: "Dick",
  5157. image: {
  5158. source: "./media/characters/sigvald/dick.svg"
  5159. }
  5160. },
  5161. eye: {
  5162. height: math.unit(0.31, "feet"),
  5163. name: "Eye",
  5164. image: {
  5165. source: "./media/characters/sigvald/eye.svg"
  5166. }
  5167. },
  5168. mouth: {
  5169. height: math.unit(0.92, "feet"),
  5170. name: "Mouth",
  5171. image: {
  5172. source: "./media/characters/sigvald/mouth.svg"
  5173. }
  5174. },
  5175. paws: {
  5176. height: math.unit(2.2, "feet"),
  5177. name: "Paws",
  5178. image: {
  5179. source: "./media/characters/sigvald/paws.svg"
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(8, "feet")
  5187. },
  5188. {
  5189. name: "Large",
  5190. height: math.unit(12, "feet")
  5191. },
  5192. {
  5193. name: "Larger",
  5194. height: math.unit(20, "feet")
  5195. },
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(150, "feet")
  5199. },
  5200. {
  5201. name: "Macro+",
  5202. height: math.unit(200, "feet"),
  5203. default: true
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5209. {
  5210. side: {
  5211. height: math.unit(12, "feet"),
  5212. weight: math.unit(2000, "kg"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/scott/side.svg",
  5216. extra: 754 / 724,
  5217. bottom: 0.069
  5218. }
  5219. },
  5220. upright: {
  5221. height: math.unit(12, "feet"),
  5222. weight: math.unit(2000, "kg"),
  5223. name: "Upright",
  5224. image: {
  5225. source: "./media/characters/scott/upright.svg",
  5226. extra: 3881 / 3722,
  5227. bottom: 0.05
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(12, "feet"),
  5235. default: true
  5236. },
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5241. {
  5242. side: {
  5243. height: math.unit(8, "meters"),
  5244. weight: math.unit(84755, "lbs"),
  5245. name: "Side",
  5246. image: {
  5247. source: "./media/characters/tobias/side.svg",
  5248. extra: 1474 / 1096,
  5249. bottom: 38.9 / 1513.1235
  5250. }
  5251. },
  5252. },
  5253. [
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(8, "meters"),
  5257. default: true
  5258. },
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5263. {
  5264. front: {
  5265. height: math.unit(5.5, "feet"),
  5266. weight: math.unit(400, "lbs"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/kieran/front.svg",
  5270. extra: 2694 / 2364,
  5271. bottom: 217 / 2908
  5272. }
  5273. },
  5274. side: {
  5275. height: math.unit(5.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/kieran/side.svg",
  5280. extra: 875 / 777,
  5281. bottom: 84.6 / 959
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Normal",
  5288. height: math.unit(5.5, "feet"),
  5289. default: true
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5295. {
  5296. side: {
  5297. height: math.unit(2, "meters"),
  5298. weight: math.unit(70, "kg"),
  5299. name: "Side",
  5300. image: {
  5301. source: "./media/characters/sanya/side.svg",
  5302. bottom: 0.02,
  5303. extra: 1.02
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Small",
  5310. height: math.unit(2, "meters")
  5311. },
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(3, "meters")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(16, "meters"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(2, "meters"),
  5328. weight: math.unit(120, "kg"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/miranda/front.svg",
  5332. extra: 195 / 185,
  5333. bottom: 10.9 / 206.5
  5334. }
  5335. },
  5336. back: {
  5337. height: math.unit(2, "meters"),
  5338. weight: math.unit(120, "kg"),
  5339. name: "Back",
  5340. image: {
  5341. source: "./media/characters/miranda/back.svg",
  5342. extra: 201 / 193,
  5343. bottom: 2.3 / 203.7
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(10, "feet"),
  5351. default: true
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "James", species: ["deer"], tags: ["anthro"] },
  5357. {
  5358. side: {
  5359. height: math.unit(2, "meters"),
  5360. weight: math.unit(100, "kg"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/james/front.svg",
  5364. extra: 10 / 8.5
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(8.5, "feet"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5378. {
  5379. side: {
  5380. height: math.unit(9.5, "feet"),
  5381. weight: math.unit(2500, "lbs"),
  5382. name: "Side",
  5383. image: {
  5384. source: "./media/characters/heather/side.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(9.5, "feet"),
  5392. default: true
  5393. }
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5398. {
  5399. side: {
  5400. height: math.unit(6.5, "feet"),
  5401. weight: math.unit(400, "lbs"),
  5402. name: "Side",
  5403. image: {
  5404. source: "./media/characters/lukas/side.svg",
  5405. extra: 7.25 / 6.5
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(6.5, "feet"),
  5413. default: true
  5414. }
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5419. {
  5420. side: {
  5421. height: math.unit(5, "feet"),
  5422. weight: math.unit(3000, "lbs"),
  5423. name: "Side",
  5424. image: {
  5425. source: "./media/characters/louise/side.svg"
  5426. }
  5427. },
  5428. },
  5429. [
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(5, "feet"),
  5433. default: true
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5439. {
  5440. side: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(150, "lbs"),
  5443. name: "Side",
  5444. image: {
  5445. source: "./media/characters/ramona/side.svg",
  5446. extra: 871/854,
  5447. bottom: 41/912
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(5.3, "meters"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(20, "stories")
  5460. },
  5461. {
  5462. name: "Macro+",
  5463. height: math.unit(50, "stories")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. standing: {
  5471. height: math.unit(5.75, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Standing",
  5474. image: {
  5475. source: "./media/characters/deerpuff/standing.svg",
  5476. extra: 682 / 624
  5477. }
  5478. },
  5479. sitting: {
  5480. height: math.unit(5.75 / 1.79, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Sitting",
  5483. image: {
  5484. source: "./media/characters/deerpuff/sitting.svg",
  5485. bottom: 44 / 400,
  5486. extra: 1
  5487. }
  5488. },
  5489. taurLaying: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(400, "lbs"),
  5492. name: "Taur (Laying)",
  5493. image: {
  5494. source: "./media/characters/deerpuff/taur-laying.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Puffball",
  5501. height: math.unit(6, "inches")
  5502. },
  5503. {
  5504. name: "Normalpuff",
  5505. height: math.unit(5.75, "feet")
  5506. },
  5507. {
  5508. name: "Macropuff",
  5509. height: math.unit(1500, "feet"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Megapuff",
  5514. height: math.unit(500, "miles")
  5515. },
  5516. {
  5517. name: "Gigapuff",
  5518. height: math.unit(250000, "miles")
  5519. },
  5520. {
  5521. name: "Omegapuff",
  5522. height: math.unit(1000, "lightyears")
  5523. },
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5528. {
  5529. stomping: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Stomping",
  5533. image: {
  5534. source: "./media/characters/vivian/stomping.svg"
  5535. }
  5536. },
  5537. sitting: {
  5538. height: math.unit(6 / 1.75, "feet"),
  5539. weight: math.unit(170, "lbs"),
  5540. name: "Sitting",
  5541. image: {
  5542. source: "./media/characters/vivian/sitting.svg",
  5543. bottom: 1 / 6.4,
  5544. extra: 1,
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(7, "feet"),
  5552. default: true
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(10, "stories")
  5557. },
  5558. {
  5559. name: "Macro+",
  5560. height: math.unit(30, "stories")
  5561. },
  5562. {
  5563. name: "Megamacro",
  5564. height: math.unit(10, "miles")
  5565. },
  5566. {
  5567. name: "Megamacro+",
  5568. height: math.unit(2750000, "meters")
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(160, "lbs"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/prince/front.svg",
  5581. extra: 3400 / 3000
  5582. }
  5583. },
  5584. jumping: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(160, "lbs"),
  5587. name: "Jumping",
  5588. image: {
  5589. source: "./media/characters/prince/jump.svg",
  5590. extra: 2555 / 2134
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "Normal",
  5597. height: math.unit(7.75, "feet"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "Not cute",
  5602. height: math.unit(17, "feet")
  5603. },
  5604. {
  5605. name: "I said NOT",
  5606. height: math.unit(91, "feet")
  5607. },
  5608. {
  5609. name: "Please stop",
  5610. height: math.unit(560, "feet")
  5611. },
  5612. {
  5613. name: "What have you done",
  5614. height: math.unit(2200, "feet")
  5615. },
  5616. {
  5617. name: "Deer God",
  5618. height: math.unit(3.6, "miles")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5624. {
  5625. standing: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(300, "lbs"),
  5628. name: "Standing",
  5629. image: {
  5630. source: "./media/characters/psymon/standing.svg",
  5631. extra: 1888 / 1810,
  5632. bottom: 0.05
  5633. }
  5634. },
  5635. slithering: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(300, "lbs"),
  5638. name: "Slithering",
  5639. image: {
  5640. source: "./media/characters/psymon/slithering.svg",
  5641. extra: 1330 / 1224
  5642. }
  5643. },
  5644. slitheringAlt: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(300, "lbs"),
  5647. name: "Slithering (Alt)",
  5648. image: {
  5649. source: "./media/characters/psymon/slithering-alt.svg",
  5650. extra: 1330 / 1224
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(11.25, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Large",
  5662. height: math.unit(27, "feet")
  5663. },
  5664. {
  5665. name: "Giant",
  5666. height: math.unit(87, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(365, "feet")
  5671. },
  5672. {
  5673. name: "Megamacro",
  5674. height: math.unit(3, "miles")
  5675. },
  5676. {
  5677. name: "World Serpent",
  5678. height: math.unit(8000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(180, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/daimos/front.svg",
  5691. extra: 4160 / 3897,
  5692. bottom: 0.021
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(8, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "Big Dog",
  5704. height: math.unit(22, "feet")
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(127, "feet")
  5709. },
  5710. {
  5711. name: "Megamacro",
  5712. height: math.unit(3600, "feet")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5718. {
  5719. side: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(180, "lbs"),
  5722. name: "Side",
  5723. image: {
  5724. source: "./media/characters/blake/side.svg",
  5725. extra: 1212 / 1120,
  5726. bottom: 0.05
  5727. }
  5728. },
  5729. crouched: {
  5730. height: math.unit(6 * 0.57, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Crouched",
  5733. image: {
  5734. source: "./media/characters/blake/crouched.svg",
  5735. extra: 840 / 587,
  5736. bottom: 0.04
  5737. }
  5738. },
  5739. bent: {
  5740. height: math.unit(6 * 0.75, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Bent",
  5743. image: {
  5744. source: "./media/characters/blake/bent.svg",
  5745. extra: 592 / 544,
  5746. bottom: 0.035
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(8 + 1 / 6, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Big Backside",
  5758. height: math.unit(37, "feet")
  5759. },
  5760. {
  5761. name: "Subway Shredder",
  5762. height: math.unit(72, "feet")
  5763. },
  5764. {
  5765. name: "City Carver",
  5766. height: math.unit(1675, "feet")
  5767. },
  5768. {
  5769. name: "Tectonic Tweaker",
  5770. height: math.unit(2300, "miles")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(180, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/guisetto/front.svg",
  5783. extra: 856 / 817,
  5784. bottom: 0.06
  5785. }
  5786. },
  5787. airborne: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(180, "lbs"),
  5790. name: "Airborne",
  5791. image: {
  5792. source: "./media/characters/guisetto/airborne.svg",
  5793. extra: 584 / 525
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(10 + 11 / 12, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Large",
  5805. height: math.unit(35, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(475, "feet")
  5810. },
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(180, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/luxor/front.svg",
  5822. extra: 2940 / 2152
  5823. }
  5824. },
  5825. back: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(180, "lbs"),
  5828. name: "Back",
  5829. image: {
  5830. source: "./media/characters/luxor/back.svg",
  5831. extra: 1083 / 960
  5832. }
  5833. },
  5834. },
  5835. [
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(5 + 5 / 6, "feet"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Lamp",
  5843. height: math.unit(50, "feet")
  5844. },
  5845. {
  5846. name: "Lämp",
  5847. height: math.unit(300, "feet")
  5848. },
  5849. {
  5850. name: "The sun is a lamp",
  5851. height: math.unit(250000, "miles")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5857. {
  5858. front: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(50, "lbs"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/huoyan/front.svg"
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(180, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/huoyan/side.svg"
  5872. }
  5873. },
  5874. },
  5875. [
  5876. {
  5877. name: "Chef",
  5878. height: math.unit(9, "feet")
  5879. },
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(65, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(780, "feet")
  5888. },
  5889. {
  5890. name: "Flaming Mountain",
  5891. height: math.unit(4.8, "miles")
  5892. },
  5893. {
  5894. name: "Celestial",
  5895. height: math.unit(765000, "miles")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(5 + 3 / 4, "feet"),
  5904. weight: math.unit(120, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/tails/front.svg"
  5908. }
  5909. }
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(5 + 3 / 4, "feet"),
  5915. default: true
  5916. }
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(4, "feet"),
  5924. weight: math.unit(50, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/rainy/front.svg"
  5928. }
  5929. }
  5930. },
  5931. [
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(800, "feet"),
  5935. default: true
  5936. }
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(150, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/rainier/front.svg"
  5948. }
  5949. }
  5950. },
  5951. [
  5952. {
  5953. name: "Micro",
  5954. height: math.unit(2, "mm"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(8 + 4/12, "feet"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/andy-renard/front.svg",
  5967. extra: 1839/1726,
  5968. bottom: 134/1973
  5969. }
  5970. },
  5971. back: {
  5972. height: math.unit(8 + 4/12, "feet"),
  5973. name: "Back",
  5974. image: {
  5975. source: "./media/characters/andy-renard/back.svg",
  5976. extra: 1838/1710,
  5977. bottom: 105/1943
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Tall",
  5984. height: math.unit(8 + 4/12, "feet")
  5985. },
  5986. {
  5987. name: "Mini Macro",
  5988. height: math.unit(15, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Macro",
  5993. height: math.unit(100, "feet")
  5994. },
  5995. {
  5996. name: "Mega Macro",
  5997. height: math.unit(1000, "feet")
  5998. },
  5999. {
  6000. name: "Giga Macro",
  6001. height: math.unit(10, "miles")
  6002. },
  6003. {
  6004. name: "God Macro",
  6005. height: math.unit(1, "multiverse")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(210, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/cimmaron/front-sfw.svg",
  6018. extra: 701 / 676,
  6019. bottom: 0.046
  6020. }
  6021. },
  6022. back: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(210, "lbs"),
  6025. name: "Back",
  6026. image: {
  6027. source: "./media/characters/cimmaron/back-sfw.svg",
  6028. extra: 701 / 676,
  6029. bottom: 0.046
  6030. }
  6031. },
  6032. frontNsfw: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(210, "lbs"),
  6035. name: "Front (NSFW)",
  6036. image: {
  6037. source: "./media/characters/cimmaron/front-nsfw.svg",
  6038. extra: 701 / 676,
  6039. bottom: 0.046
  6040. }
  6041. },
  6042. backNsfw: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(210, "lbs"),
  6045. name: "Back (NSFW)",
  6046. image: {
  6047. source: "./media/characters/cimmaron/back-nsfw.svg",
  6048. extra: 701 / 676,
  6049. bottom: 0.046
  6050. }
  6051. },
  6052. dick: {
  6053. height: math.unit(1.714, "feet"),
  6054. name: "Dick",
  6055. image: {
  6056. source: "./media/characters/cimmaron/dick.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. },
  6066. {
  6067. name: "Macro Mayor",
  6068. height: math.unit(350, "meters")
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6074. {
  6075. front: {
  6076. height: math.unit(6, "feet"),
  6077. weight: math.unit(200, "lbs"),
  6078. name: "Front",
  6079. image: {
  6080. source: "./media/characters/akari/front.svg",
  6081. extra: 962 / 901,
  6082. bottom: 0.04
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Micro",
  6089. height: math.unit(5, "inches"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(7, "feet")
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(140, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/cynosura/front.svg",
  6107. extra: 896 / 847
  6108. }
  6109. },
  6110. back: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(140, "lbs"),
  6113. name: "Back",
  6114. image: {
  6115. source: "./media/characters/cynosura/back.svg",
  6116. extra: 1365 / 1250
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(4, "inches")
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(5.75, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Tall",
  6132. height: math.unit(10, "feet")
  6133. },
  6134. {
  6135. name: "Big",
  6136. height: math.unit(20, "feet")
  6137. },
  6138. {
  6139. name: "Macro",
  6140. height: math.unit(50, "feet")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(13 + 2/12, "feet"),
  6149. weight: math.unit(800, "kg"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/gin/front.svg",
  6153. extra: 1312/1191,
  6154. bottom: 45/1357
  6155. }
  6156. },
  6157. mouth: {
  6158. height: math.unit(2.39 * 1.8, "feet"),
  6159. name: "Mouth",
  6160. image: {
  6161. source: "./media/characters/gin/mouth.svg"
  6162. }
  6163. },
  6164. hand: {
  6165. height: math.unit(1.57 * 2.19, "feet"),
  6166. name: "Hand",
  6167. image: {
  6168. source: "./media/characters/gin/hand.svg"
  6169. }
  6170. },
  6171. foot: {
  6172. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6173. name: "Foot",
  6174. image: {
  6175. source: "./media/characters/gin/foot.svg"
  6176. }
  6177. },
  6178. sole: {
  6179. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6180. name: "Sole",
  6181. image: {
  6182. source: "./media/characters/gin/sole.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Very Small",
  6189. height: math.unit(13 + 2 / 12, "feet")
  6190. },
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(600, "miles")
  6194. },
  6195. {
  6196. name: "Regular",
  6197. height: math.unit(20, "earths"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(2.2, "solarradii")
  6203. },
  6204. {
  6205. name: "Teramacro",
  6206. height: math.unit(1.2, "galaxies")
  6207. },
  6208. {
  6209. name: "Omegamacro",
  6210. height: math.unit(200, "universes")
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(6 + 1 / 6, "feet"),
  6219. weight: math.unit(178, "lbs"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/guy/front.svg"
  6223. }
  6224. }
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6 + 1 / 6, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Large",
  6234. height: math.unit(25 + 7 / 12, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(60 + 9 / 12, "feet")
  6239. },
  6240. {
  6241. name: "Macro+",
  6242. height: math.unit(246, "feet")
  6243. },
  6244. {
  6245. name: "Macro++",
  6246. height: math.unit(878, "feet")
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(9, "feet"),
  6255. weight: math.unit(800, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/tiberius/front.svg",
  6259. extra: 2295 / 2071
  6260. }
  6261. },
  6262. back: {
  6263. height: math.unit(9, "feet"),
  6264. weight: math.unit(800, "lbs"),
  6265. name: "Back",
  6266. image: {
  6267. source: "./media/characters/tiberius/back.svg",
  6268. extra: 2373 / 2160
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(9, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(600, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/surgo/front.svg",
  6289. extra: 3591 / 2227
  6290. }
  6291. },
  6292. back: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(600, "lbs"),
  6295. name: "Back",
  6296. image: {
  6297. source: "./media/characters/surgo/back.svg",
  6298. extra: 3557 / 2228
  6299. }
  6300. },
  6301. laying: {
  6302. height: math.unit(6 * 0.85, "feet"),
  6303. weight: math.unit(600, "lbs"),
  6304. name: "Laying",
  6305. image: {
  6306. source: "./media/characters/surgo/laying.svg"
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet"),
  6314. default: true
  6315. }
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6320. {
  6321. side: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(150, "lbs"),
  6324. name: "Side",
  6325. image: {
  6326. source: "./media/characters/cibus/side.svg",
  6327. extra: 800 / 400
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(6, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6341. {
  6342. front: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Front",
  6346. image: {
  6347. source: "./media/characters/nibbles/front.svg"
  6348. }
  6349. },
  6350. side: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(240, "lbs"),
  6353. name: "Side",
  6354. image: {
  6355. source: "./media/characters/nibbles/side.svg"
  6356. }
  6357. },
  6358. },
  6359. [
  6360. {
  6361. name: "Normal",
  6362. height: math.unit(9, "feet"),
  6363. default: true
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6369. {
  6370. side: {
  6371. height: math.unit(5 + 1 / 6, "feet"),
  6372. weight: math.unit(130, "lbs"),
  6373. name: "Side",
  6374. image: {
  6375. source: "./media/characters/rikky/side.svg",
  6376. extra: 851 / 801
  6377. }
  6378. },
  6379. },
  6380. [
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(5 + 1 / 6, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(152, "feet"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(7, "miles")
  6393. }
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6398. {
  6399. side: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Side",
  6403. image: {
  6404. source: "./media/characters/malfressa/side.svg"
  6405. }
  6406. },
  6407. walking: {
  6408. height: math.unit(370, "cm"),
  6409. weight: math.unit(350, "lbs"),
  6410. name: "Walking",
  6411. image: {
  6412. source: "./media/characters/malfressa/walking.svg"
  6413. }
  6414. },
  6415. feral: {
  6416. height: math.unit(2500, "cm"),
  6417. weight: math.unit(100000, "lbs"),
  6418. name: "Feral",
  6419. image: {
  6420. source: "./media/characters/malfressa/feral.svg",
  6421. extra: 2108 / 837,
  6422. bottom: 0.02
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Normal",
  6429. height: math.unit(370, "cm")
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(300, "meters"),
  6434. default: true
  6435. }
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(60, "kg"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/jaro/front.svg",
  6447. extra: 845/817,
  6448. bottom: 45/890
  6449. }
  6450. },
  6451. back: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(60, "kg"),
  6454. name: "Back",
  6455. image: {
  6456. source: "./media/characters/jaro/back.svg",
  6457. extra: 847/817,
  6458. bottom: 34/881
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(7, "inches")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(5.5, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Minimacro",
  6474. height: math.unit(20, "feet")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(200, "meters")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(195, "lb"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/rogue/front.svg"
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(90, "feet"),
  6498. default: true
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6504. {
  6505. standing: {
  6506. height: math.unit(5 + 8 / 12, "feet"),
  6507. weight: math.unit(140, "lb"),
  6508. name: "Standing",
  6509. image: {
  6510. source: "./media/characters/piper/standing.svg",
  6511. extra: 1440/1284,
  6512. bottom: 66/1506
  6513. }
  6514. },
  6515. running: {
  6516. height: math.unit(5 + 8 / 12, "feet"),
  6517. weight: math.unit(140, "lb"),
  6518. name: "Running",
  6519. image: {
  6520. source: "./media/characters/piper/running.svg",
  6521. extra: 3948/3655,
  6522. bottom: 0/3948
  6523. }
  6524. },
  6525. sole: {
  6526. height: math.unit(0.81, "feet"),
  6527. weight: math.unit(2, "kg"),
  6528. name: "Sole",
  6529. image: {
  6530. source: "./media/characters/piper/sole.svg"
  6531. }
  6532. },
  6533. nipple: {
  6534. height: math.unit(0.25, "feet"),
  6535. weight: math.unit(1.5, "lb"),
  6536. name: "Nipple",
  6537. image: {
  6538. source: "./media/characters/piper/nipple.svg"
  6539. }
  6540. },
  6541. head: {
  6542. height: math.unit(1.1, "feet"),
  6543. name: "Head",
  6544. image: {
  6545. source: "./media/characters/piper/head.svg"
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Micro",
  6552. height: math.unit(2, "inches")
  6553. },
  6554. {
  6555. name: "Normal",
  6556. height: math.unit(5 + 8 / 12, "feet")
  6557. },
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(250, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(7, "miles")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6571. {
  6572. front: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(220, "lb"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/gemini/front.svg"
  6578. }
  6579. },
  6580. back: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(220, "lb"),
  6583. name: "Back",
  6584. image: {
  6585. source: "./media/characters/gemini/back.svg"
  6586. }
  6587. },
  6588. kneeling: {
  6589. height: math.unit(6 / 1.5, "feet"),
  6590. weight: math.unit(220, "lb"),
  6591. name: "Kneeling",
  6592. image: {
  6593. source: "./media/characters/gemini/kneeling.svg",
  6594. bottom: 0.02
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(300, "meters"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Megamacro",
  6606. height: math.unit(6900, "meters")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6612. {
  6613. anthro: {
  6614. height: math.unit(2.35, "meters"),
  6615. weight: math.unit(73, "kg"),
  6616. name: "Anthro",
  6617. image: {
  6618. source: "./media/characters/alicia/anthro.svg",
  6619. extra: 2571 / 2385,
  6620. bottom: 75 / 2648
  6621. }
  6622. },
  6623. paw: {
  6624. height: math.unit(1.32, "feet"),
  6625. name: "Paw",
  6626. image: {
  6627. source: "./media/characters/alicia/paw.svg"
  6628. }
  6629. },
  6630. feral: {
  6631. height: math.unit(1.69, "meters"),
  6632. weight: math.unit(73, "kg"),
  6633. name: "Feral",
  6634. image: {
  6635. source: "./media/characters/alicia/feral.svg",
  6636. extra: 2123 / 1715,
  6637. bottom: 222 / 2349
  6638. }
  6639. },
  6640. },
  6641. [
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(2.35, "meters")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(60, "meters"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(10000, "kilometers")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(7, "feet"),
  6662. weight: math.unit(250, "lbs"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/archy/front.svg"
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Micro",
  6672. height: math.unit(1, "inch")
  6673. },
  6674. {
  6675. name: "Shorty",
  6676. height: math.unit(5, "feet")
  6677. },
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(7, "feet")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(600, "meters"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Megamacro",
  6689. height: math.unit(1, "mile")
  6690. },
  6691. ]
  6692. ))
  6693. characterMakers.push(() => makeCharacter(
  6694. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6695. {
  6696. front: {
  6697. height: math.unit(1.65, "meters"),
  6698. weight: math.unit(74, "kg"),
  6699. name: "Front",
  6700. image: {
  6701. source: "./media/characters/berri/front.svg",
  6702. extra: 857 / 837,
  6703. bottom: 18 / 877
  6704. }
  6705. },
  6706. bum: {
  6707. height: math.unit(1.46, "feet"),
  6708. name: "Bum",
  6709. image: {
  6710. source: "./media/characters/berri/bum.svg"
  6711. }
  6712. },
  6713. mouth: {
  6714. height: math.unit(0.44, "feet"),
  6715. name: "Mouth",
  6716. image: {
  6717. source: "./media/characters/berri/mouth.svg"
  6718. }
  6719. },
  6720. paw: {
  6721. height: math.unit(0.826, "feet"),
  6722. name: "Paw",
  6723. image: {
  6724. source: "./media/characters/berri/paw.svg"
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(1.65, "meters")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(60, "m"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Megamacro",
  6740. height: math.unit(9.213, "km")
  6741. },
  6742. {
  6743. name: "Planet Eater",
  6744. height: math.unit(489, "megameters")
  6745. },
  6746. {
  6747. name: "Teramacro",
  6748. height: math.unit(2471635000000, "meters")
  6749. },
  6750. {
  6751. name: "Examacro",
  6752. height: math.unit(8.0624e+26, "meters")
  6753. }
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(1.72, "meters"),
  6761. weight: math.unit(68, "kg"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/lexi/front.svg"
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Very Smol",
  6771. height: math.unit(10, "mm")
  6772. },
  6773. {
  6774. name: "Micro",
  6775. height: math.unit(6.8, "cm"),
  6776. default: true
  6777. },
  6778. {
  6779. name: "Normal",
  6780. height: math.unit(1.72, "m")
  6781. }
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(1.69, "meters"),
  6789. weight: math.unit(68, "kg"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/martin/front.svg",
  6793. extra: 596 / 581
  6794. }
  6795. }
  6796. },
  6797. [
  6798. {
  6799. name: "Micro",
  6800. height: math.unit(6.85, "cm"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Normal",
  6805. height: math.unit(1.69, "m")
  6806. }
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(1.69, "meters"),
  6814. weight: math.unit(68, "kg"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/juno/front.svg"
  6818. }
  6819. }
  6820. },
  6821. [
  6822. {
  6823. name: "Micro",
  6824. height: math.unit(7, "cm")
  6825. },
  6826. {
  6827. name: "Normal",
  6828. height: math.unit(1.89, "m")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(353, "meters"),
  6833. default: true
  6834. }
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(1.93, "meters"),
  6842. weight: math.unit(83, "kg"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/samantha/front.svg"
  6846. }
  6847. },
  6848. frontClothed: {
  6849. height: math.unit(1.93, "meters"),
  6850. weight: math.unit(83, "kg"),
  6851. name: "Front (Clothed)",
  6852. image: {
  6853. source: "./media/characters/samantha/front-clothed.svg"
  6854. }
  6855. },
  6856. back: {
  6857. height: math.unit(1.93, "meters"),
  6858. weight: math.unit(83, "kg"),
  6859. name: "Back",
  6860. image: {
  6861. source: "./media/characters/samantha/back.svg"
  6862. }
  6863. },
  6864. },
  6865. [
  6866. {
  6867. name: "Normal",
  6868. height: math.unit(1.93, "m")
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(74, "meters"),
  6873. default: true
  6874. },
  6875. {
  6876. name: "Macro+",
  6877. height: math.unit(223, "meters"),
  6878. },
  6879. {
  6880. name: "Megamacro",
  6881. height: math.unit(8381, "meters"),
  6882. },
  6883. {
  6884. name: "Megamacro+",
  6885. height: math.unit(12000, "kilometers")
  6886. },
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(1.92, "meters"),
  6894. weight: math.unit(80, "kg"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/dr-clay/front.svg"
  6898. }
  6899. },
  6900. frontClothed: {
  6901. height: math.unit(1.92, "meters"),
  6902. weight: math.unit(80, "kg"),
  6903. name: "Front (Clothed)",
  6904. image: {
  6905. source: "./media/characters/dr-clay/front-clothed.svg"
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(1.92, "m")
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(214, "meters"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Macro+",
  6921. height: math.unit(12.237, "meters"),
  6922. },
  6923. {
  6924. name: "Megamacro",
  6925. height: math.unit(557, "megameters"),
  6926. },
  6927. {
  6928. name: "Unimaginable",
  6929. height: math.unit(120e9, "lightyears")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(2, "meters"),
  6938. weight: math.unit(80, "kg"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6942. }
  6943. }
  6944. },
  6945. [
  6946. {
  6947. name: "Teramacro",
  6948. height: math.unit(500000, "lightyears"),
  6949. default: true
  6950. },
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6955. {
  6956. crux: {
  6957. height: math.unit(2, "meters"),
  6958. weight: math.unit(150, "kg"),
  6959. name: "Crux",
  6960. image: {
  6961. source: "./media/characters/vemus/crux.svg",
  6962. extra: 1074/936,
  6963. bottom: 23/1097
  6964. }
  6965. },
  6966. skunkTanuki: {
  6967. height: math.unit(2, "meters"),
  6968. weight: math.unit(150, "kg"),
  6969. name: "Skunk-Tanuki",
  6970. image: {
  6971. source: "./media/characters/vemus/skunk-tanuki.svg",
  6972. extra: 926/893,
  6973. bottom: 20/946
  6974. }
  6975. },
  6976. },
  6977. [
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(3.75, "meters"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Big",
  6985. height: math.unit(8, "meters")
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(100, "meters")
  6990. },
  6991. {
  6992. name: "Macro+",
  6993. height: math.unit(1500, "meters")
  6994. },
  6995. {
  6996. name: "Stellar",
  6997. height: math.unit(14e8, "meters")
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(2, "meters"),
  7006. weight: math.unit(70, "kg"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/beherit/front.svg",
  7010. extra: 1234/1109,
  7011. bottom: 55/1289
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(6, "feet")
  7019. },
  7020. {
  7021. name: "Lorg",
  7022. height: math.unit(25, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Lorger",
  7027. height: math.unit(75, "feet")
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(200, "meters")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(150, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/everett/front.svg",
  7044. extra: 1017/866,
  7045. bottom: 86/1103
  7046. }
  7047. },
  7048. paw: {
  7049. height: math.unit(2 / 3.6, "meters"),
  7050. name: "Paw",
  7051. image: {
  7052. source: "./media/characters/everett/paw.svg"
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(15, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Lorg",
  7064. height: math.unit(70, "feet"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Lorger",
  7069. height: math.unit(250, "feet")
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(500, "meters")
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(2, "meters"),
  7082. weight: math.unit(86, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/rose/front.svg",
  7086. extra: 1785/1636,
  7087. bottom: 30/1815
  7088. },
  7089. form: "liom",
  7090. default: true
  7091. },
  7092. frontSporty: {
  7093. height: math.unit(2, "meters"),
  7094. weight: math.unit(86, "kg"),
  7095. name: "Front (Sporty)",
  7096. image: {
  7097. source: "./media/characters/rose/front-sporty.svg",
  7098. extra: 350/335,
  7099. bottom: 10/360
  7100. },
  7101. form: "liom"
  7102. },
  7103. frontAlt: {
  7104. height: math.unit(1.6, "meters"),
  7105. weight: math.unit(86, "kg"),
  7106. name: "Front (Alt)",
  7107. image: {
  7108. source: "./media/characters/rose/front-alt.svg",
  7109. extra: 299/283,
  7110. bottom: 3/302
  7111. },
  7112. form: "liom"
  7113. },
  7114. plush: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(86/3, "kg"),
  7117. name: "Plush",
  7118. image: {
  7119. source: "./media/characters/rose/plush.svg",
  7120. extra: 361/337,
  7121. bottom: 11/372
  7122. },
  7123. form: "plush",
  7124. default: true
  7125. },
  7126. faeStanding: {
  7127. height: math.unit(10, "cm"),
  7128. weight: math.unit(10, "grams"),
  7129. name: "Standing",
  7130. image: {
  7131. source: "./media/characters/rose/fae-standing.svg",
  7132. extra: 1189/1060,
  7133. bottom: 27/1216
  7134. },
  7135. form: "fae",
  7136. default: true
  7137. },
  7138. faeSitting: {
  7139. height: math.unit(5, "cm"),
  7140. weight: math.unit(10, "grams"),
  7141. name: "Sitting",
  7142. image: {
  7143. source: "./media/characters/rose/fae-sitting.svg",
  7144. extra: 737/577,
  7145. bottom: 356/1093
  7146. },
  7147. form: "fae"
  7148. },
  7149. faePaw: {
  7150. height: math.unit(1.35, "cm"),
  7151. name: "Paw",
  7152. image: {
  7153. source: "./media/characters/rose/fae-paw.svg"
  7154. },
  7155. form: "fae"
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "True Micro",
  7161. height: math.unit(9, "cm"),
  7162. form: "liom"
  7163. },
  7164. {
  7165. name: "Micro",
  7166. height: math.unit(16, "cm"),
  7167. form: "liom"
  7168. },
  7169. {
  7170. name: "Normal",
  7171. height: math.unit(1.85, "meters"),
  7172. default: true,
  7173. form: "liom"
  7174. },
  7175. {
  7176. name: "Mini-Macro",
  7177. height: math.unit(5, "meters"),
  7178. form: "liom"
  7179. },
  7180. {
  7181. name: "Macro",
  7182. height: math.unit(15, "meters"),
  7183. form: "liom"
  7184. },
  7185. {
  7186. name: "True Macro",
  7187. height: math.unit(40, "meters"),
  7188. form: "liom"
  7189. },
  7190. {
  7191. name: "City Scale",
  7192. height: math.unit(1, "km"),
  7193. form: "liom"
  7194. },
  7195. {
  7196. name: "Plushie",
  7197. height: math.unit(9, "cm"),
  7198. form: "plush",
  7199. default: true
  7200. },
  7201. {
  7202. name: "Fae",
  7203. height: math.unit(10, "cm"),
  7204. form: "fae",
  7205. default: true
  7206. },
  7207. ],
  7208. {
  7209. "liom": {
  7210. name: "Liom",
  7211. default: true
  7212. },
  7213. "plush": {
  7214. name: "Plush"
  7215. },
  7216. "fae": {
  7217. name: "Fae Fox"
  7218. }
  7219. }
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(2, "meters"),
  7226. weight: math.unit(350, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/regal/front.svg"
  7230. }
  7231. },
  7232. back: {
  7233. height: math.unit(2, "meters"),
  7234. weight: math.unit(350, "lbs"),
  7235. name: "Back",
  7236. image: {
  7237. source: "./media/characters/regal/back.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(350, "feet"),
  7245. default: true
  7246. }
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7251. {
  7252. front: {
  7253. height: math.unit(4 + 11 / 12, "feet"),
  7254. weight: math.unit(100, "lbs"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/opal/front.svg"
  7258. }
  7259. },
  7260. frontAlt: {
  7261. height: math.unit(4 + 11 / 12, "feet"),
  7262. weight: math.unit(100, "lbs"),
  7263. name: "Front (Alt)",
  7264. image: {
  7265. source: "./media/characters/opal/front-alt.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Small",
  7272. height: math.unit(4 + 11 / 12, "feet")
  7273. },
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(20, "feet"),
  7277. default: true
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(120, "feet")
  7282. },
  7283. {
  7284. name: "Megamacro",
  7285. height: math.unit(80, "miles")
  7286. },
  7287. {
  7288. name: "True Size",
  7289. height: math.unit(100000, "lightyears")
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(200, "lbs"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/vector-wuff/front.svg"
  7302. }
  7303. }
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(2.8, "meters")
  7309. },
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(450, "meters"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Megamacro",
  7317. height: math.unit(15, "kilometers")
  7318. }
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(256, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/dannik/front.svg"
  7330. }
  7331. }
  7332. },
  7333. [
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(69.57, "meters"),
  7337. default: true
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(120, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/azura-saharah/front.svg"
  7350. }
  7351. },
  7352. back: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(120, "lbs"),
  7355. name: "Back",
  7356. image: {
  7357. source: "./media/characters/azura-saharah/back.svg"
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(100, "feet"),
  7365. default: true
  7366. },
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7371. {
  7372. side: {
  7373. height: math.unit(5 + 4 / 12, "feet"),
  7374. weight: math.unit(163, "lbs"),
  7375. name: "Side",
  7376. image: {
  7377. source: "./media/characters/kennedy/side.svg"
  7378. }
  7379. }
  7380. },
  7381. [
  7382. {
  7383. name: "Standard Doggo",
  7384. height: math.unit(5 + 4 / 12, "feet")
  7385. },
  7386. {
  7387. name: "Big Doggo",
  7388. height: math.unit(25 + 3 / 12, "feet"),
  7389. default: true
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(5 + 5/12, "feet"),
  7398. weight: math.unit(100, "lbs"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/odios-de-lunar/front.svg",
  7402. extra: 1468/1323,
  7403. bottom: 22/1490
  7404. }
  7405. }
  7406. },
  7407. [
  7408. {
  7409. name: "Micro",
  7410. height: math.unit(3, "inches")
  7411. },
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(5.5, "feet"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(100, "feet")
  7420. },
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7425. {
  7426. back: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(220, "lbs"),
  7429. name: "Back",
  7430. image: {
  7431. source: "./media/characters/mandake/back.svg"
  7432. }
  7433. }
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(7, "feet"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(78, "feet")
  7444. },
  7445. {
  7446. name: "Macro+",
  7447. height: math.unit(300, "meters")
  7448. },
  7449. {
  7450. name: "Macro++",
  7451. height: math.unit(2400, "feet")
  7452. },
  7453. {
  7454. name: "Megamacro",
  7455. height: math.unit(5167, "meters")
  7456. },
  7457. {
  7458. name: "Gigamacro",
  7459. height: math.unit(41769, "miles")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(120, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/yozey/front.svg"
  7472. }
  7473. },
  7474. frontAlt: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(120, "lbs"),
  7477. name: "Front (Alt)",
  7478. image: {
  7479. source: "./media/characters/yozey/front-alt.svg"
  7480. }
  7481. },
  7482. side: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(120, "lbs"),
  7485. name: "Side",
  7486. image: {
  7487. source: "./media/characters/yozey/side.svg"
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Micro",
  7494. height: math.unit(3, "inches"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(6, "feet")
  7500. }
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(103, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/valeska-voss/front.svg"
  7512. }
  7513. }
  7514. },
  7515. [
  7516. {
  7517. name: "Mini-Sized Sub",
  7518. height: math.unit(3.1, "inches")
  7519. },
  7520. {
  7521. name: "Mid-Sized Sub",
  7522. height: math.unit(6.2, "inches")
  7523. },
  7524. {
  7525. name: "Full-Sized Sub",
  7526. height: math.unit(9.3, "inches")
  7527. },
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(5 + 2 / 12, "foot"),
  7531. default: true
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(6, "feet"),
  7540. weight: math.unit(160, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/gene-zeta/front.svg",
  7544. extra: 3006 / 2826,
  7545. bottom: 182 / 3188
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(6, "inches")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 11 / 12, "foot"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(140, "feet")
  7562. },
  7563. {
  7564. name: "Supercharged",
  7565. height: math.unit(2500, "feet")
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(350, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/razinox/front.svg",
  7578. extra: 1686 / 1548,
  7579. bottom: 28.2 / 1868
  7580. }
  7581. },
  7582. back: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(350, "lbs"),
  7585. name: "Back",
  7586. image: {
  7587. source: "./media/characters/razinox/back.svg",
  7588. extra: 1660 / 1590,
  7589. bottom: 15 / 1665
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(10 + 8 / 12, "foot")
  7597. },
  7598. {
  7599. name: "Minimacro",
  7600. height: math.unit(15, "foot")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(60, "foot"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(5, "miles")
  7610. },
  7611. {
  7612. name: "Gigamacro",
  7613. height: math.unit(6000, "miles")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(150, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/cobalt/front.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(8 + 1 / 12, "foot")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(111, "foot"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Supracosmic",
  7641. height: math.unit(1e42, "feet")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(5, "inches"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/amanda/front.svg",
  7653. extra: 926/791,
  7654. bottom: 38/964
  7655. }
  7656. },
  7657. back: {
  7658. height: math.unit(5, "inches"),
  7659. name: "Back",
  7660. image: {
  7661. source: "./media/characters/amanda/back.svg",
  7662. extra: 909/805,
  7663. bottom: 43/952
  7664. }
  7665. },
  7666. },
  7667. [
  7668. {
  7669. name: "Micro",
  7670. height: math.unit(5, "inches"),
  7671. default: true
  7672. },
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7677. {
  7678. front: {
  7679. height: math.unit(2.75, "meters"),
  7680. weight: math.unit(1200, "lb"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/teal/front.svg",
  7684. extra: 2463 / 2320,
  7685. bottom: 166 / 2629
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(2.75, "meters"),
  7690. weight: math.unit(1200, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/teal/back.svg",
  7694. extra: 2580 / 2489,
  7695. bottom: 151 / 2731
  7696. }
  7697. },
  7698. sitting: {
  7699. height: math.unit(1.9, "meters"),
  7700. weight: math.unit(1200, "lb"),
  7701. name: "Sitting",
  7702. image: {
  7703. source: "./media/characters/teal/sitting.svg",
  7704. extra: 623 / 590,
  7705. bottom: 121 / 744
  7706. }
  7707. },
  7708. standing: {
  7709. height: math.unit(2.75, "meters"),
  7710. weight: math.unit(1200, "lb"),
  7711. name: "Standing",
  7712. image: {
  7713. source: "./media/characters/teal/standing.svg",
  7714. extra: 923 / 893,
  7715. bottom: 60 / 983
  7716. }
  7717. },
  7718. stretching: {
  7719. height: math.unit(3.65, "meters"),
  7720. weight: math.unit(1200, "lb"),
  7721. name: "Stretching",
  7722. image: {
  7723. source: "./media/characters/teal/stretching.svg",
  7724. extra: 1276 / 1244,
  7725. bottom: 0 / 1276
  7726. }
  7727. },
  7728. legged: {
  7729. height: math.unit(1.3, "meters"),
  7730. weight: math.unit(100, "lb"),
  7731. name: "Legged",
  7732. image: {
  7733. source: "./media/characters/teal/legged.svg",
  7734. extra: 462 / 437,
  7735. bottom: 24 / 486
  7736. }
  7737. },
  7738. naga: {
  7739. height: math.unit(5.4, "meters"),
  7740. weight: math.unit(4000, "lb"),
  7741. name: "Naga",
  7742. image: {
  7743. source: "./media/characters/teal/naga.svg",
  7744. extra: 1902 / 1858,
  7745. bottom: 0 / 1902
  7746. }
  7747. },
  7748. hand: {
  7749. height: math.unit(0.52, "meters"),
  7750. name: "Hand",
  7751. image: {
  7752. source: "./media/characters/teal/hand.svg"
  7753. }
  7754. },
  7755. maw: {
  7756. height: math.unit(0.43, "meters"),
  7757. name: "Maw",
  7758. image: {
  7759. source: "./media/characters/teal/maw.svg"
  7760. }
  7761. },
  7762. slit: {
  7763. height: math.unit(0.25, "meters"),
  7764. name: "Slit",
  7765. image: {
  7766. source: "./media/characters/teal/slit.svg"
  7767. }
  7768. },
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(2.75, "meters"),
  7774. default: true
  7775. },
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(300, "feet")
  7779. },
  7780. {
  7781. name: "Macro+",
  7782. height: math.unit(2000, "feet")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7788. {
  7789. frontCat: {
  7790. height: math.unit(6, "feet"),
  7791. weight: math.unit(180, "lbs"),
  7792. name: "Front (Cat)",
  7793. image: {
  7794. source: "./media/characters/ravin-amulet/front-cat.svg"
  7795. }
  7796. },
  7797. frontCatAlt: {
  7798. height: math.unit(6, "feet"),
  7799. weight: math.unit(180, "lbs"),
  7800. name: "Front (Alt, Cat)",
  7801. image: {
  7802. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7803. }
  7804. },
  7805. frontWerewolf: {
  7806. height: math.unit(6 * 1.2, "feet"),
  7807. weight: math.unit(225, "lbs"),
  7808. name: "Front (Werewolf)",
  7809. image: {
  7810. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7811. }
  7812. },
  7813. backWerewolf: {
  7814. height: math.unit(6 * 1.2, "feet"),
  7815. weight: math.unit(225, "lbs"),
  7816. name: "Back (Werewolf)",
  7817. image: {
  7818. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Nano",
  7825. height: math.unit(1, "micrometer")
  7826. },
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(1, "inch")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(6, "feet"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(60, "feet")
  7839. }
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(165, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/fluoresce/front.svg"
  7851. }
  7852. }
  7853. },
  7854. [
  7855. {
  7856. name: "Micro",
  7857. height: math.unit(6, "cm")
  7858. },
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(5 + 7 / 12, "feet"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(56, "feet")
  7867. },
  7868. {
  7869. name: "Megamacro",
  7870. height: math.unit(1.9, "miles")
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(9 + 6 / 12, "feet"),
  7879. weight: math.unit(523, "lbs"),
  7880. name: "Side",
  7881. image: {
  7882. source: "./media/characters/aurora/side.svg"
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(9 + 6 / 12, "feet")
  7890. },
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(96, "feet"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Macro+",
  7898. height: math.unit(243, "feet")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(194, "cm"),
  7907. weight: math.unit(90, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/ranek/front.svg",
  7911. extra: 1862/1791,
  7912. bottom: 80/1942
  7913. }
  7914. },
  7915. back: {
  7916. height: math.unit(194, "cm"),
  7917. weight: math.unit(90, "kg"),
  7918. name: "Back",
  7919. image: {
  7920. source: "./media/characters/ranek/back.svg",
  7921. extra: 1853/1787,
  7922. bottom: 74/1927
  7923. }
  7924. },
  7925. feral: {
  7926. height: math.unit(30, "cm"),
  7927. weight: math.unit(1.6, "lbs"),
  7928. name: "Feral",
  7929. image: {
  7930. source: "./media/characters/ranek/feral.svg",
  7931. extra: 990/631,
  7932. bottom: 29/1019
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(194, "cm"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(100, "meters")
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(5 + 6 / 12, "feet"),
  7953. weight: math.unit(153, "lbs"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/andrew-cooper/front.svg"
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Nano",
  7963. height: math.unit(1, "mm")
  7964. },
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(2, "inches")
  7968. },
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(5 + 6 / 12, "feet"),
  7972. default: true
  7973. }
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(180, "lbs"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/akane-sato/front.svg",
  7985. extra: 1219 / 1140
  7986. }
  7987. },
  7988. back: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(180, "lbs"),
  7991. name: "Back",
  7992. image: {
  7993. source: "./media/characters/akane-sato/back.svg",
  7994. extra: 1219 / 1170
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(2.5, "meters")
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(250, "meters"),
  8006. default: true
  8007. },
  8008. {
  8009. name: "Megamacro",
  8010. height: math.unit(25, "km")
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(6, "feet"),
  8019. weight: math.unit(65, "kg"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/rook/front.svg",
  8023. extra: 960 / 950
  8024. }
  8025. }
  8026. },
  8027. [
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(8.8, "feet")
  8031. },
  8032. {
  8033. name: "Macro",
  8034. height: math.unit(88, "feet"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Megamacro",
  8039. height: math.unit(8, "miles")
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(12 + 2 / 12, "feet"),
  8048. weight: math.unit(808, "lbs"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/prodigy/front.svg"
  8052. }
  8053. }
  8054. },
  8055. [
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(12 + 2 / 12, "feet"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "Macro",
  8063. height: math.unit(143, "feet")
  8064. },
  8065. {
  8066. name: "Macro+",
  8067. height: math.unit(400, "feet")
  8068. },
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(6, "feet"),
  8076. weight: math.unit(225, "lbs"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/daniel/front.svg"
  8080. }
  8081. },
  8082. leaning: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(225, "lbs"),
  8085. name: "Leaning",
  8086. image: {
  8087. source: "./media/characters/daniel/leaning.svg"
  8088. }
  8089. },
  8090. },
  8091. [
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(1000, "feet"),
  8095. default: true
  8096. },
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(88, "lbs"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/chiros/front.svg",
  8108. extra: 306 / 226
  8109. }
  8110. },
  8111. side: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(88, "lbs"),
  8114. name: "Side",
  8115. image: {
  8116. source: "./media/characters/chiros/side.svg",
  8117. extra: 306 / 226
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(6, "cm"),
  8125. default: true
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8131. {
  8132. front: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(100, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/selka/front.svg",
  8138. extra: 947 / 887
  8139. }
  8140. }
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(5, "cm"),
  8146. default: true
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(8 + 3 / 12, "feet"),
  8155. weight: math.unit(424, "lbs"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/verin/front.svg",
  8159. extra: 1845 / 1550
  8160. }
  8161. },
  8162. frontArmored: {
  8163. height: math.unit(8 + 3 / 12, "feet"),
  8164. weight: math.unit(424, "lbs"),
  8165. name: "Front (Armored)",
  8166. image: {
  8167. source: "./media/characters/verin/front-armor.svg",
  8168. extra: 1845 / 1550,
  8169. bottom: 0.01
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(8 + 3 / 12, "feet"),
  8174. weight: math.unit(424, "lbs"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/verin/back.svg",
  8178. bottom: 0.1,
  8179. extra: 1
  8180. }
  8181. },
  8182. foot: {
  8183. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8184. name: "Foot",
  8185. image: {
  8186. source: "./media/characters/verin/foot.svg"
  8187. }
  8188. },
  8189. },
  8190. [
  8191. {
  8192. name: "Normal",
  8193. height: math.unit(8 + 3 / 12, "feet")
  8194. },
  8195. {
  8196. name: "Minimacro",
  8197. height: math.unit(21, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(626, "feet")
  8203. },
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8208. {
  8209. front: {
  8210. height: math.unit(2.718, "meters"),
  8211. weight: math.unit(150, "lbs"),
  8212. name: "Front",
  8213. image: {
  8214. source: "./media/characters/sovrim-terraquian/front.svg",
  8215. extra: 1752/1689,
  8216. bottom: 36/1788
  8217. }
  8218. },
  8219. back: {
  8220. height: math.unit(2.718, "meters"),
  8221. weight: math.unit(150, "lbs"),
  8222. name: "Back",
  8223. image: {
  8224. source: "./media/characters/sovrim-terraquian/back.svg",
  8225. extra: 1698/1657,
  8226. bottom: 58/1756
  8227. }
  8228. },
  8229. tongue: {
  8230. height: math.unit(2.865, "feet"),
  8231. name: "Tongue",
  8232. image: {
  8233. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8234. }
  8235. },
  8236. hand: {
  8237. height: math.unit(1.61, "feet"),
  8238. name: "Hand",
  8239. image: {
  8240. source: "./media/characters/sovrim-terraquian/hand.svg"
  8241. }
  8242. },
  8243. foot: {
  8244. height: math.unit(1.05, "feet"),
  8245. name: "Foot",
  8246. image: {
  8247. source: "./media/characters/sovrim-terraquian/foot.svg"
  8248. }
  8249. },
  8250. footAlt: {
  8251. height: math.unit(0.88, "feet"),
  8252. name: "Foot (Alt)",
  8253. image: {
  8254. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Micro",
  8261. height: math.unit(2, "inches")
  8262. },
  8263. {
  8264. name: "Small",
  8265. height: math.unit(1, "meter")
  8266. },
  8267. {
  8268. name: "Normal",
  8269. height: math.unit(Math.E, "meters"),
  8270. default: true
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(20, "meters")
  8275. },
  8276. {
  8277. name: "Macro+",
  8278. height: math.unit(400, "meters")
  8279. },
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8284. {
  8285. front: {
  8286. height: math.unit(7, "feet"),
  8287. weight: math.unit(489, "lbs"),
  8288. name: "Front",
  8289. image: {
  8290. source: "./media/characters/reece-silvermane/front.svg",
  8291. bottom: 0.02,
  8292. extra: 1
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(1.5, "miles"),
  8300. default: true
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(78, "kg"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/kane/front.svg",
  8313. extra: 978 / 899
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Normal",
  8320. height: math.unit(2.1, "m"),
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(1, "km"),
  8325. default: true
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(6, "feet"),
  8334. weight: math.unit(200, "kg"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/tegon/front.svg",
  8338. bottom: 0.01,
  8339. extra: 1
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Micro",
  8346. height: math.unit(1, "inch")
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(6 + 3 / 12, "feet"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(300, "feet")
  8356. },
  8357. {
  8358. name: "Megamacro",
  8359. height: math.unit(69, "miles")
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8365. {
  8366. side: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(2304, "lbs"),
  8369. name: "Side",
  8370. image: {
  8371. source: "./media/characters/arcturax/side.svg",
  8372. extra: 790 / 376,
  8373. bottom: 0.01
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Micro",
  8380. height: math.unit(2, "inch")
  8381. },
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(6, "feet")
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(39, "feet"),
  8389. default: true
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(7, "miles")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8399. {
  8400. front: {
  8401. height: math.unit(6, "feet"),
  8402. weight: math.unit(50, "lbs"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/sentri/front.svg",
  8406. extra: 1750 / 1570,
  8407. bottom: 0.025
  8408. }
  8409. },
  8410. frontAlt: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(50, "lbs"),
  8413. name: "Front (Alt)",
  8414. image: {
  8415. source: "./media/characters/sentri/front-alt.svg",
  8416. extra: 1750 / 1570,
  8417. bottom: 0.025
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(15, "feet"),
  8425. default: true
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(2500, "feet")
  8430. }
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(5 + 8 / 12, "feet"),
  8438. weight: math.unit(130, "lbs"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/corvin/front.svg",
  8442. extra: 1803 / 1629
  8443. }
  8444. },
  8445. frontShirt: {
  8446. height: math.unit(5 + 8 / 12, "feet"),
  8447. weight: math.unit(130, "lbs"),
  8448. name: "Front (Shirt)",
  8449. image: {
  8450. source: "./media/characters/corvin/front-shirt.svg",
  8451. extra: 1803 / 1629
  8452. }
  8453. },
  8454. frontPoncho: {
  8455. height: math.unit(5 + 8 / 12, "feet"),
  8456. weight: math.unit(130, "lbs"),
  8457. name: "Front (Poncho)",
  8458. image: {
  8459. source: "./media/characters/corvin/front-poncho.svg",
  8460. extra: 1803 / 1629
  8461. }
  8462. },
  8463. side: {
  8464. height: math.unit(5 + 8 / 12, "feet"),
  8465. weight: math.unit(130, "lbs"),
  8466. name: "Side",
  8467. image: {
  8468. source: "./media/characters/corvin/side.svg",
  8469. extra: 1012 / 945
  8470. }
  8471. },
  8472. back: {
  8473. height: math.unit(5 + 8 / 12, "feet"),
  8474. weight: math.unit(130, "lbs"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/corvin/back.svg",
  8478. extra: 1803 / 1629
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Micro",
  8485. height: math.unit(3, "inches")
  8486. },
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(5 + 8 / 12, "feet")
  8490. },
  8491. {
  8492. name: "Macro",
  8493. height: math.unit(300, "feet"),
  8494. default: true
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(500, "miles")
  8499. }
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8504. {
  8505. front: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(135, "lbs"),
  8508. name: "Front",
  8509. image: {
  8510. source: "./media/characters/q/front.svg",
  8511. extra: 854 / 752,
  8512. bottom: 0.005
  8513. }
  8514. },
  8515. back: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(130, "lbs"),
  8518. name: "Back",
  8519. image: {
  8520. source: "./media/characters/q/back.svg",
  8521. extra: 854 / 752
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Macro",
  8528. height: math.unit(90, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Extra Macro",
  8533. height: math.unit(300, "feet"),
  8534. },
  8535. {
  8536. name: "BIG WALF",
  8537. height: math.unit(750, "feet"),
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(150, "lbs"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/carley/front.svg",
  8550. extra: 3927 / 3540,
  8551. bottom: 29.2 / 735
  8552. }
  8553. }
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(6 + 3 / 12, "feet")
  8559. },
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(185, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Megamacro",
  8567. height: math.unit(8, "miles"),
  8568. },
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8573. {
  8574. front: {
  8575. height: math.unit(3, "feet"),
  8576. weight: math.unit(28, "lbs"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/citrine/front.svg"
  8580. }
  8581. }
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(3, "feet"),
  8587. default: true
  8588. }
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8593. {
  8594. front: {
  8595. height: math.unit(14, "feet"),
  8596. weight: math.unit(1450, "kg"),
  8597. capacity: math.unit(15, "people"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/aura-starwind/front.svg",
  8601. extra: 1440/1327,
  8602. bottom: 11/1451
  8603. }
  8604. },
  8605. side: {
  8606. height: math.unit(14, "feet"),
  8607. weight: math.unit(1450, "kg"),
  8608. capacity: math.unit(15, "people"),
  8609. name: "Side",
  8610. image: {
  8611. source: "./media/characters/aura-starwind/side.svg",
  8612. extra: 1654 / 1497
  8613. }
  8614. },
  8615. taur: {
  8616. height: math.unit(18, "feet"),
  8617. weight: math.unit(5500, "kg"),
  8618. capacity: math.unit(50, "people"),
  8619. name: "Taur",
  8620. image: {
  8621. source: "./media/characters/aura-starwind/taur.svg",
  8622. extra: 1760 / 1650
  8623. }
  8624. },
  8625. feral: {
  8626. height: math.unit(46, "feet"),
  8627. weight: math.unit(25000, "kg"),
  8628. capacity: math.unit(120, "people"),
  8629. name: "Feral",
  8630. image: {
  8631. source: "./media/characters/aura-starwind/feral.svg"
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(14, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(50, "meters")
  8644. },
  8645. {
  8646. name: "Megamacro",
  8647. height: math.unit(5000, "meters")
  8648. },
  8649. {
  8650. name: "Gigamacro",
  8651. height: math.unit(100000, "kilometers")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(2 + 7 / 12, "feet"),
  8660. weight: math.unit(32, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/rivet/front.svg",
  8664. extra: 1716 / 1658,
  8665. bottom: 0.03
  8666. }
  8667. },
  8668. foot: {
  8669. height: math.unit(0.551, "feet"),
  8670. name: "Rivet's Foot",
  8671. image: {
  8672. source: "./media/characters/rivet/foot.svg"
  8673. },
  8674. rename: true
  8675. }
  8676. },
  8677. [
  8678. {
  8679. name: "Micro",
  8680. height: math.unit(1.5, "inches"),
  8681. },
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(2 + 7 / 12, "feet"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(85, "feet")
  8690. },
  8691. {
  8692. name: "Megamacro",
  8693. height: math.unit(2.2, "km")
  8694. }
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8699. {
  8700. front: {
  8701. height: math.unit(5 + 9 / 12, "feet"),
  8702. weight: math.unit(150, "lbs"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/coffee/front.svg",
  8706. extra: 3666 / 3032,
  8707. bottom: 0.04
  8708. }
  8709. },
  8710. foot: {
  8711. height: math.unit(1.29, "feet"),
  8712. name: "Foot",
  8713. image: {
  8714. source: "./media/characters/coffee/foot.svg"
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(2, "inches"),
  8722. },
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(5 + 9 / 12, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(800, "feet")
  8731. },
  8732. {
  8733. name: "Megamacro",
  8734. height: math.unit(25, "miles")
  8735. }
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8740. {
  8741. front: {
  8742. height: math.unit(6, "feet"),
  8743. weight: math.unit(200, "lbs"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/chari-gal/front.svg",
  8747. extra: 1568 / 1385,
  8748. bottom: 0.047
  8749. }
  8750. },
  8751. gigantamax: {
  8752. height: math.unit(6 * 16, "feet"),
  8753. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8754. name: "Gigantamax",
  8755. image: {
  8756. source: "./media/characters/chari-gal/gigantamax.svg",
  8757. extra: 1124 / 888,
  8758. bottom: 0.03
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(5 + 7 / 12, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(200, "feet"),
  8770. default: true
  8771. }
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(150, "lbs"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/nova/front.svg",
  8783. extra: 5000 / 4722,
  8784. bottom: 0.02
  8785. }
  8786. }
  8787. },
  8788. [
  8789. {
  8790. name: "Micro-",
  8791. height: math.unit(0.8, "inches")
  8792. },
  8793. {
  8794. name: "Micro",
  8795. height: math.unit(2, "inches"),
  8796. default: true
  8797. },
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8802. {
  8803. front: {
  8804. height: math.unit(3 + 1 / 12, "feet"),
  8805. weight: math.unit(21.7, "lbs"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/argent/front.svg",
  8809. extra: 1471 / 1331,
  8810. bottom: 100.8 / 1575.5
  8811. }
  8812. }
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(2, "inches")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(3 + 1 / 12, "feet"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(120, "feet")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8832. {
  8833. lamp: {
  8834. height: math.unit(7 * 1559 / 989, "feet"),
  8835. name: "Magic Lamp",
  8836. image: {
  8837. source: "./media/characters/mira-al-cul/lamp.svg",
  8838. extra: 1617 / 1559
  8839. }
  8840. },
  8841. front: {
  8842. height: math.unit(7, "feet"),
  8843. name: "Front",
  8844. image: {
  8845. source: "./media/characters/mira-al-cul/front.svg",
  8846. extra: 1044 / 990
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Heavily Restricted",
  8853. height: math.unit(7 * 1559 / 989, "feet")
  8854. },
  8855. {
  8856. name: "Freshly Freed",
  8857. height: math.unit(50 * 1559 / 989, "feet")
  8858. },
  8859. {
  8860. name: "World Encompassing",
  8861. height: math.unit(10000 * 1559 / 989, "miles")
  8862. },
  8863. {
  8864. name: "Galactic",
  8865. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8866. },
  8867. {
  8868. name: "Palmed Universe",
  8869. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Multiversal Matriarch",
  8874. height: math.unit(8.87e10, "yottameters")
  8875. },
  8876. {
  8877. name: "Void Mother",
  8878. height: math.unit(3.14e110, "yottaparsecs")
  8879. },
  8880. {
  8881. name: "Toying with Transcendence",
  8882. height: math.unit(1e307, "meters")
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8888. {
  8889. front: {
  8890. height: math.unit(17 + 1 / 12, "feet"),
  8891. weight: math.unit(476.2 * 5, "lbs"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/kuro-shi-uchū/front.svg",
  8895. extra: 2329 / 1835,
  8896. bottom: 0.02
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Micro",
  8903. height: math.unit(2, "inches")
  8904. },
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(12, "meters")
  8908. },
  8909. {
  8910. name: "Planetary",
  8911. height: math.unit(0.00929, "AU"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Universal",
  8916. height: math.unit(20, "gigaparsecs")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(5 + 2 / 12, "feet"),
  8925. weight: math.unit(120, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/katherine/front.svg",
  8929. extra: 2075 / 1969
  8930. }
  8931. },
  8932. dress: {
  8933. height: math.unit(5 + 2 / 12, "feet"),
  8934. weight: math.unit(120, "lbs"),
  8935. name: "Dress",
  8936. image: {
  8937. source: "./media/characters/katherine/dress.svg",
  8938. extra: 2258 / 2064
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Micro",
  8945. height: math.unit(1, "inches"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(5 + 2 / 12, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(100, "meters")
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(80, "miles")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(7 + 8 / 12, "feet"),
  8967. weight: math.unit(250, "lbs"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/yevis/front.svg",
  8971. extra: 1938 / 1755
  8972. }
  8973. }
  8974. },
  8975. [
  8976. {
  8977. name: "Mortal",
  8978. height: math.unit(7 + 8 / 12, "feet")
  8979. },
  8980. {
  8981. name: "Battle",
  8982. height: math.unit(25 + 11 / 12, "feet")
  8983. },
  8984. {
  8985. name: "Wrath",
  8986. height: math.unit(1654 + 11 / 12, "feet")
  8987. },
  8988. {
  8989. name: "Planet Destroyer",
  8990. height: math.unit(12000, "miles")
  8991. },
  8992. {
  8993. name: "Galaxy Conqueror",
  8994. height: math.unit(1.45, "zettameters"),
  8995. default: true
  8996. },
  8997. {
  8998. name: "Universal War",
  8999. height: math.unit(184, "gigaparsecs")
  9000. },
  9001. {
  9002. name: "Eternity War",
  9003. height: math.unit(1.98e55, "yottaparsecs")
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(5 + 8 / 12, "feet"),
  9012. weight: math.unit(63, "kg"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/xavier/front.svg",
  9016. extra: 944 / 883
  9017. }
  9018. },
  9019. frontStretch: {
  9020. height: math.unit(5 + 8 / 12, "feet"),
  9021. weight: math.unit(63, "kg"),
  9022. name: "Stretching",
  9023. image: {
  9024. source: "./media/characters/xavier/front-stretch.svg",
  9025. extra: 962 / 820
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(5 + 8 / 12, "feet")
  9033. },
  9034. {
  9035. name: "Macro",
  9036. height: math.unit(100, "meters"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "McLargeHuge",
  9041. height: math.unit(10, "miles")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(5 + 5 / 12, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/joshii/front.svg",
  9054. extra: 765 / 653,
  9055. bottom: 51 / 816
  9056. }
  9057. },
  9058. foot: {
  9059. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9060. name: "Foot",
  9061. image: {
  9062. source: "./media/characters/joshii/foot.svg"
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Micro",
  9069. height: math.unit(2, "inches"),
  9070. default: true
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(5 + 5 / 12, "feet")
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(785, "feet")
  9079. },
  9080. {
  9081. name: "Megamacro",
  9082. height: math.unit(24.5, "miles")
  9083. },
  9084. ]
  9085. ))
  9086. characterMakers.push(() => makeCharacter(
  9087. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9088. {
  9089. front: {
  9090. height: math.unit(6, "feet"),
  9091. weight: math.unit(150, "lb"),
  9092. name: "Front",
  9093. image: {
  9094. source: "./media/characters/goddess-elizabeth/front.svg",
  9095. extra: 1800 / 1525,
  9096. bottom: 0.005
  9097. }
  9098. },
  9099. foot: {
  9100. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9101. name: "Foot",
  9102. image: {
  9103. source: "./media/characters/goddess-elizabeth/foot.svg"
  9104. }
  9105. },
  9106. mouth: {
  9107. height: math.unit(6, "feet"),
  9108. name: "Mouth",
  9109. image: {
  9110. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Micro",
  9117. height: math.unit(12, "feet")
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(80, "miles"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(15000, "parsecs")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(5 + 9 / 12, "feet"),
  9135. weight: math.unit(144, "lb"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/kara/front.svg"
  9139. }
  9140. },
  9141. feet: {
  9142. height: math.unit(6 / 6.765, "feet"),
  9143. name: "Kara's Feet",
  9144. rename: true,
  9145. image: {
  9146. source: "./media/characters/kara/feet.svg"
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(5 + 9 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Macro",
  9157. height: math.unit(174, "feet"),
  9158. default: true
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(18, "feet"),
  9167. weight: math.unit(4050, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/tyrone/front.svg",
  9171. extra: 2405 / 2270,
  9172. bottom: 182 / 2587
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(18, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(300, "feet")
  9185. },
  9186. {
  9187. name: "Megamacro",
  9188. height: math.unit(15, "km")
  9189. },
  9190. {
  9191. name: "Gigamacro",
  9192. height: math.unit(500, "km")
  9193. },
  9194. {
  9195. name: "Teramacro",
  9196. height: math.unit(0.5, "gigameters")
  9197. },
  9198. {
  9199. name: "Omnimacro",
  9200. height: math.unit(1e252, "yottauniverse")
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(7 + 8 / 12, "feet"),
  9209. weight: math.unit(120, "lb"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/danny/front.svg",
  9213. extra: 1490 / 1350
  9214. }
  9215. },
  9216. back: {
  9217. height: math.unit(7 + 8 / 12, "feet"),
  9218. weight: math.unit(120, "lb"),
  9219. name: "Back",
  9220. image: {
  9221. source: "./media/characters/danny/back.svg",
  9222. extra: 1490 / 1350
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(7 + 8 / 12, "feet"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(3.5, "inches"),
  9239. weight: math.unit(19, "grams"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/mallow/front.svg",
  9243. extra: 471 / 431
  9244. }
  9245. },
  9246. back: {
  9247. height: math.unit(3.5, "inches"),
  9248. weight: math.unit(19, "grams"),
  9249. name: "Back",
  9250. image: {
  9251. source: "./media/characters/mallow/back.svg",
  9252. extra: 471 / 431
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(3.5, "inches"),
  9260. default: true
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(9, "feet"),
  9269. weight: math.unit(230, "kg"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/starry-aqua/front.svg"
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(9, "feet"),
  9277. weight: math.unit(230, "kg"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/starry-aqua/back.svg"
  9281. }
  9282. },
  9283. hand: {
  9284. height: math.unit(9 * 0.1168, "feet"),
  9285. name: "Hand",
  9286. image: {
  9287. source: "./media/characters/starry-aqua/hand.svg"
  9288. }
  9289. },
  9290. foot: {
  9291. height: math.unit(9 * 0.18, "feet"),
  9292. name: "Foot",
  9293. image: {
  9294. source: "./media/characters/starry-aqua/foot.svg"
  9295. }
  9296. }
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(3, "inches")
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(9, "feet")
  9306. },
  9307. {
  9308. name: "Macro",
  9309. height: math.unit(300, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(3200, "feet")
  9315. }
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(15, "feet"),
  9323. weight: math.unit(5026, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/luka-towers/front.svg",
  9327. extra: 1269/1133,
  9328. bottom: 51/1320
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(15, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Minimacro",
  9340. height: math.unit(25, "feet")
  9341. },
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(320, "feet")
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(35000, "feet")
  9349. },
  9350. {
  9351. name: "Gigamacro",
  9352. height: math.unit(4000, "miles")
  9353. },
  9354. {
  9355. name: "Teramacro",
  9356. height: math.unit(15000, "miles")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(150, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/natalie-nightring/front.svg",
  9369. extra: 1,
  9370. bottom: 0.06
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Uh Oh",
  9377. height: math.unit(0.1, "mm")
  9378. },
  9379. {
  9380. name: "Small",
  9381. height: math.unit(3, "inches")
  9382. },
  9383. {
  9384. name: "Human Scale",
  9385. height: math.unit(6, "feet")
  9386. },
  9387. {
  9388. name: "Librarian",
  9389. height: math.unit(50, "feet"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Immense",
  9394. height: math.unit(200, "miles")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(180, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/danni-rosie/front.svg",
  9407. extra: 1260 / 1128,
  9408. bottom: 0.022
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Micro",
  9415. height: math.unit(2, "inches"),
  9416. default: true
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(5 + 9 / 12, "feet"),
  9425. weight: math.unit(220, "lb"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/samantha-kruse/front.svg",
  9429. extra: (985 / 935),
  9430. bottom: 0.03
  9431. }
  9432. },
  9433. frontUndressed: {
  9434. height: math.unit(5 + 9 / 12, "feet"),
  9435. weight: math.unit(220, "lb"),
  9436. name: "Front (Undressed)",
  9437. image: {
  9438. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9439. extra: (973 / 923),
  9440. bottom: 0.025
  9441. }
  9442. },
  9443. fat: {
  9444. height: math.unit(5 + 9 / 12, "feet"),
  9445. weight: math.unit(900, "lb"),
  9446. name: "Front (Fat)",
  9447. image: {
  9448. source: "./media/characters/samantha-kruse/fat.svg",
  9449. extra: 2688 / 2561
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Normal",
  9456. height: math.unit(5 + 9 / 12, "feet"),
  9457. default: true
  9458. }
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9463. {
  9464. back: {
  9465. height: math.unit(5 + 4 / 12, "feet"),
  9466. weight: math.unit(4963, "lb"),
  9467. name: "Back",
  9468. image: {
  9469. source: "./media/characters/amelia-rosie/back.svg",
  9470. extra: 1113 / 963,
  9471. bottom: 0.01
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Level 0",
  9478. height: math.unit(5 + 4 / 12, "feet")
  9479. },
  9480. {
  9481. name: "Level 1",
  9482. height: math.unit(164597, "feet"),
  9483. default: true
  9484. },
  9485. {
  9486. name: "Level 2",
  9487. height: math.unit(956243, "miles")
  9488. },
  9489. {
  9490. name: "Level 3",
  9491. height: math.unit(29421709423, "miles")
  9492. },
  9493. {
  9494. name: "Level 4",
  9495. height: math.unit(154, "lightyears")
  9496. },
  9497. {
  9498. name: "Level 5",
  9499. height: math.unit(4738272, "lightyears")
  9500. },
  9501. {
  9502. name: "Level 6",
  9503. height: math.unit(145787152896, "lightyears")
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(5 + 11 / 12, "feet"),
  9512. weight: math.unit(65, "kg"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/rook-kitara/front.svg",
  9516. extra: 1347 / 1274,
  9517. bottom: 0.005
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Totally Unfair",
  9524. height: math.unit(1.8, "mm")
  9525. },
  9526. {
  9527. name: "Lap Rookie",
  9528. height: math.unit(1.4, "feet")
  9529. },
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(5 + 11 / 12, "feet"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "How Did This Happen",
  9537. height: math.unit(80, "miles")
  9538. }
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(7, "feet"),
  9546. weight: math.unit(300, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/pisces/front.svg",
  9550. extra: 2255 / 2115,
  9551. bottom: 0.03
  9552. }
  9553. },
  9554. back: {
  9555. height: math.unit(7, "feet"),
  9556. weight: math.unit(300, "lb"),
  9557. name: "Back",
  9558. image: {
  9559. source: "./media/characters/pisces/back.svg",
  9560. extra: 2146 / 2055,
  9561. bottom: 0.04
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(7, "feet"),
  9569. default: true
  9570. },
  9571. {
  9572. name: "Swimming Pool",
  9573. height: math.unit(12.2, "meters")
  9574. },
  9575. {
  9576. name: "Olympic Swimming Pool",
  9577. height: math.unit(56.3, "meters")
  9578. },
  9579. {
  9580. name: "Lake Superior",
  9581. height: math.unit(93900, "meters")
  9582. },
  9583. {
  9584. name: "Mediterranean Sea",
  9585. height: math.unit(644457, "meters")
  9586. },
  9587. {
  9588. name: "World's Oceans",
  9589. height: math.unit(4567491, "meters")
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(2.3, "meters"),
  9598. weight: math.unit(120, "kg"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/zelas/front.svg"
  9602. }
  9603. },
  9604. side: {
  9605. height: math.unit(2.3, "meters"),
  9606. weight: math.unit(120, "kg"),
  9607. name: "Side",
  9608. image: {
  9609. source: "./media/characters/zelas/side.svg"
  9610. }
  9611. },
  9612. back: {
  9613. height: math.unit(2.3, "meters"),
  9614. weight: math.unit(120, "kg"),
  9615. name: "Back",
  9616. image: {
  9617. source: "./media/characters/zelas/back.svg"
  9618. }
  9619. },
  9620. foot: {
  9621. height: math.unit(1.116, "feet"),
  9622. name: "Foot",
  9623. image: {
  9624. source: "./media/characters/zelas/foot.svg"
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Normal",
  9631. height: math.unit(2.3, "meters")
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(30, "meters"),
  9636. default: true
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(1, "inch"),
  9645. weight: math.unit(0.21, "grams"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/talbot/front.svg",
  9649. extra: 594 / 544
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Micro",
  9656. height: math.unit(1, "inch"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9663. {
  9664. front: {
  9665. height: math.unit(3 + 3 / 12, "feet"),
  9666. weight: math.unit(51.8, "lb"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/fliss/front.svg",
  9670. extra: 840 / 640
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Teeny Tiny",
  9677. height: math.unit(1, "mm")
  9678. },
  9679. {
  9680. name: "Small",
  9681. height: math.unit(1, "inch"),
  9682. default: true
  9683. },
  9684. {
  9685. name: "Standard Sylveon",
  9686. height: math.unit(3 + 3 / 12, "feet")
  9687. },
  9688. {
  9689. name: "Large Nuisance",
  9690. height: math.unit(33, "feet")
  9691. },
  9692. {
  9693. name: "City Filler",
  9694. height: math.unit(3000, "feet")
  9695. },
  9696. {
  9697. name: "New Horizon",
  9698. height: math.unit(6000, "miles")
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(5, "cm"),
  9707. weight: math.unit(1.94, "g"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/fleta/front.svg",
  9711. extra: 835 / 803
  9712. }
  9713. },
  9714. back: {
  9715. height: math.unit(5, "cm"),
  9716. weight: math.unit(1.94, "g"),
  9717. name: "Back",
  9718. image: {
  9719. source: "./media/characters/fleta/back.svg",
  9720. extra: 835 / 803
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(5, "cm"),
  9728. default: true
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9734. {
  9735. front: {
  9736. height: math.unit(6, "feet"),
  9737. weight: math.unit(225, "lb"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/dominic/front.svg",
  9741. extra: 1770 / 1620,
  9742. bottom: 0.025
  9743. }
  9744. },
  9745. back: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(225, "lb"),
  9748. name: "Back",
  9749. image: {
  9750. source: "./media/characters/dominic/back.svg",
  9751. extra: 1745 / 1620,
  9752. bottom: 0.065
  9753. }
  9754. },
  9755. },
  9756. [
  9757. {
  9758. name: "Nano",
  9759. height: math.unit(0.1, "mm")
  9760. },
  9761. {
  9762. name: "Micro-",
  9763. height: math.unit(1, "mm")
  9764. },
  9765. {
  9766. name: "Micro",
  9767. height: math.unit(4, "inches")
  9768. },
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(6 + 4 / 12, "feet"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Macro",
  9776. height: math.unit(115, "feet")
  9777. },
  9778. {
  9779. name: "Macro+",
  9780. height: math.unit(955, "feet")
  9781. },
  9782. {
  9783. name: "Megamacro",
  9784. height: math.unit(8990, "feet")
  9785. },
  9786. {
  9787. name: "Gigmacro",
  9788. height: math.unit(9310, "miles")
  9789. },
  9790. {
  9791. name: "Teramacro",
  9792. height: math.unit(1567005010, "miles")
  9793. },
  9794. {
  9795. name: "Examacro",
  9796. height: math.unit(1425, "parsecs")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(400, "feet"),
  9805. weight: math.unit(44444444, "lb"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/major-colonel/front.svg"
  9809. }
  9810. },
  9811. back: {
  9812. height: math.unit(400, "feet"),
  9813. weight: math.unit(44444444, "lb"),
  9814. name: "Back",
  9815. image: {
  9816. source: "./media/characters/major-colonel/back.svg"
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(400, "feet"),
  9824. default: true
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9830. {
  9831. catFront: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(120, "lb"),
  9834. name: "Front (Cat Side)",
  9835. image: {
  9836. source: "./media/characters/axel-lycan/cat-front.svg",
  9837. extra: 430 / 402,
  9838. bottom: 43 / 472.35
  9839. }
  9840. },
  9841. catBack: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(120, "lb"),
  9844. name: "Back (Cat Side)",
  9845. image: {
  9846. source: "./media/characters/axel-lycan/cat-back.svg",
  9847. extra: 447 / 419,
  9848. bottom: 23.3 / 469
  9849. }
  9850. },
  9851. wolfFront: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Front (Wolf Side)",
  9855. image: {
  9856. source: "./media/characters/axel-lycan/wolf-front.svg",
  9857. extra: 485 / 456,
  9858. bottom: 19 / 504
  9859. }
  9860. },
  9861. wolfBack: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(120, "lb"),
  9864. name: "Back (Wolf Side)",
  9865. image: {
  9866. source: "./media/characters/axel-lycan/wolf-back.svg",
  9867. extra: 475 / 438,
  9868. bottom: 39.2 / 514
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(1, "km"),
  9876. default: true
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(5 + 9 / 12, "feet"),
  9885. weight: math.unit(175, "lb"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/vanrel-hyena/front.svg",
  9889. extra: 1086 / 1010,
  9890. bottom: 0.04
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Normal",
  9897. height: math.unit(5 + 9 / 12, "feet"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(103, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/abbott-absol/front.svg",
  9911. extra: 2010 / 1842
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Megamicro",
  9918. height: math.unit(0.1, "mm")
  9919. },
  9920. {
  9921. name: "Micro",
  9922. height: math.unit(1, "inch")
  9923. },
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(6, "feet"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(6, "feet"),
  9936. weight: math.unit(264, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/hector/front.svg",
  9940. extra: 2280 / 2130,
  9941. bottom: 0.07
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(12.25, "foot"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(160, "feet")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(6, "feet"),
  9962. weight: math.unit(150, "lb"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/sal/front.svg",
  9966. extra: 1846 / 1699,
  9967. bottom: 0.04
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(10, "miles"),
  9975. default: true
  9976. },
  9977. ]
  9978. ))
  9979. characterMakers.push(() => makeCharacter(
  9980. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9981. {
  9982. front: {
  9983. height: math.unit(3, "meters"),
  9984. weight: math.unit(450, "kg"),
  9985. name: "front",
  9986. image: {
  9987. source: "./media/characters/ranger/front.svg",
  9988. extra: 2401 / 2243,
  9989. bottom: 0.05
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(3, "meters"),
  9997. default: true
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(14, "feet"),
  10006. weight: math.unit(800, "kg"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/theresa/front.svg",
  10010. extra: 3575 / 3346,
  10011. bottom: 0.03
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(14, "feet"),
  10019. default: true
  10020. },
  10021. ]
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10025. {
  10026. front: {
  10027. height: math.unit(6, "feet"),
  10028. weight: math.unit(3, "kg"),
  10029. name: "Front",
  10030. image: {
  10031. source: "./media/characters/ine/front.svg",
  10032. extra: 678 / 539,
  10033. bottom: 0.023
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(2.265, "feet"),
  10041. default: true
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(5, "feet"),
  10050. weight: math.unit(30, "kg"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/vial/front.svg",
  10054. extra: 1365 / 1277,
  10055. bottom: 0.04
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(5, "feet"),
  10063. default: true
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10069. {
  10070. side: {
  10071. height: math.unit(3.4, "meters"),
  10072. weight: math.unit(1000, "lb"),
  10073. name: "Side",
  10074. image: {
  10075. source: "./media/characters/rovoska/side.svg",
  10076. extra: 4403 / 1515
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Normal",
  10083. height: math.unit(3.4, "meters"),
  10084. default: true
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(8, "feet"),
  10093. weight: math.unit(315, "lb"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/gunner-rotthbauer/front.svg"
  10097. }
  10098. },
  10099. back: {
  10100. height: math.unit(8, "feet"),
  10101. weight: math.unit(315, "lb"),
  10102. name: "Back",
  10103. image: {
  10104. source: "./media/characters/gunner-rotthbauer/back.svg"
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Micro",
  10111. height: math.unit(3.5, "inches")
  10112. },
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(8, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(250, "feet")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(1, "AU")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(5 + 5 / 12, "feet"),
  10133. weight: math.unit(140, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/allatia/front.svg",
  10137. extra: 1227 / 1180,
  10138. bottom: 0.027
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5 + 5 / 12, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(250, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(8, "miles")
  10155. }
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(120, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/tene/front.svg",
  10167. extra: 814/750,
  10168. bottom: 36/850
  10169. }
  10170. },
  10171. stomping: {
  10172. height: math.unit(2.025, "meters"),
  10173. weight: math.unit(120, "lb"),
  10174. name: "Stomping",
  10175. image: {
  10176. source: "./media/characters/tene/stomping.svg",
  10177. extra: 885/821,
  10178. bottom: 15/900
  10179. }
  10180. },
  10181. sitting: {
  10182. height: math.unit(1, "meter"),
  10183. weight: math.unit(120, "lb"),
  10184. name: "Sitting",
  10185. image: {
  10186. source: "./media/characters/tene/sitting.svg",
  10187. extra: 396/366,
  10188. bottom: 79/475
  10189. }
  10190. },
  10191. smiling: {
  10192. height: math.unit(1.2, "feet"),
  10193. name: "Smiling",
  10194. image: {
  10195. source: "./media/characters/tene/smiling.svg",
  10196. extra: 1364/1071,
  10197. bottom: 0/1364
  10198. }
  10199. },
  10200. smug: {
  10201. height: math.unit(1.3, "feet"),
  10202. name: "Smug",
  10203. image: {
  10204. source: "./media/characters/tene/smug.svg",
  10205. extra: 1323/1082,
  10206. bottom: 0/1323
  10207. }
  10208. },
  10209. feral: {
  10210. height: math.unit(3.9, "feet"),
  10211. weight: math.unit(250, "lb"),
  10212. name: "Feral",
  10213. image: {
  10214. source: "./media/characters/tene/feral.svg",
  10215. extra: 717 / 458,
  10216. bottom: 0.179
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(6, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(300, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(5, "miles")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10238. {
  10239. side: {
  10240. height: math.unit(6, "feet"),
  10241. name: "Side",
  10242. image: {
  10243. source: "./media/characters/evander/side.svg",
  10244. extra: 877 / 477
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(0.83, "meters"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(12, "feet"),
  10261. weight: math.unit(1000, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10265. extra: 1762 / 1611
  10266. }
  10267. },
  10268. back: {
  10269. height: math.unit(12, "feet"),
  10270. weight: math.unit(1000, "lb"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10274. extra: 1762 / 1611
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(12, "feet"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "Kaiju",
  10286. height: math.unit(150, "feet")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/zero-alurus/front.svg"
  10299. }
  10300. },
  10301. back: {
  10302. height: math.unit(6, "feet"),
  10303. weight: math.unit(150, "lb"),
  10304. name: "Back",
  10305. image: {
  10306. source: "./media/characters/zero-alurus/back.svg"
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(5 + 10 / 12, "feet")
  10314. },
  10315. {
  10316. name: "Macro",
  10317. height: math.unit(60, "feet"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "Macro+",
  10322. height: math.unit(450, "feet")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(6, "feet"),
  10331. weight: math.unit(200, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/mega-shi/front.svg",
  10335. extra: 1279 / 1250,
  10336. bottom: 0.02
  10337. }
  10338. },
  10339. back: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(200, "lb"),
  10342. name: "Back",
  10343. image: {
  10344. source: "./media/characters/mega-shi/back.svg",
  10345. extra: 1279 / 1250,
  10346. bottom: 0.02
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(16 + 6 / 12, "feet")
  10354. },
  10355. {
  10356. name: "Third Dimension",
  10357. height: math.unit(40, "meters")
  10358. },
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(660, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(10, "miles")
  10367. },
  10368. {
  10369. name: "Planetary Launch",
  10370. height: math.unit(500, "miles")
  10371. },
  10372. {
  10373. name: "Interstellar",
  10374. height: math.unit(1e9, "miles")
  10375. },
  10376. {
  10377. name: "Leaving the Universe",
  10378. height: math.unit(1, "gigaparsec")
  10379. },
  10380. {
  10381. name: "Travelling Universes",
  10382. height: math.unit(30e15, "parsecs")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(5 + 4/12, "feet"),
  10391. weight: math.unit(120, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/odyssey/front.svg",
  10395. extra: 1747/1571,
  10396. bottom: 47/1794
  10397. }
  10398. },
  10399. side: {
  10400. height: math.unit(5.1, "feet"),
  10401. weight: math.unit(120, "lb"),
  10402. name: "Side",
  10403. image: {
  10404. source: "./media/characters/odyssey/side.svg",
  10405. extra: 1847/1619,
  10406. bottom: 47/1894
  10407. }
  10408. },
  10409. lounging: {
  10410. height: math.unit(1.464, "feet"),
  10411. weight: math.unit(120, "lb"),
  10412. name: "Lounging",
  10413. image: {
  10414. source: "./media/characters/odyssey/lounging.svg",
  10415. extra: 1235/837,
  10416. bottom: 551/1786
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(5 + 4 / 12, "feet")
  10424. },
  10425. {
  10426. name: "Macro",
  10427. height: math.unit(1, "km")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(3000, "km")
  10432. },
  10433. {
  10434. name: "Gigamacro",
  10435. height: math.unit(1, "AU"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Omniversal",
  10440. height: math.unit(100e14, "lightyears")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(300, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/mekuto/front.svg",
  10453. extra: 921 / 832,
  10454. bottom: 0.03
  10455. }
  10456. },
  10457. hand: {
  10458. height: math.unit(6 / 10.24, "feet"),
  10459. name: "Hand",
  10460. image: {
  10461. source: "./media/characters/mekuto/hand.svg"
  10462. }
  10463. },
  10464. foot: {
  10465. height: math.unit(6 / 5.05, "feet"),
  10466. name: "Foot",
  10467. image: {
  10468. source: "./media/characters/mekuto/foot.svg"
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Minimicro",
  10475. height: math.unit(0.2, "inches")
  10476. },
  10477. {
  10478. name: "Micro",
  10479. height: math.unit(1.5, "inches")
  10480. },
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(5 + 11 / 12, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Minimacro",
  10488. height: math.unit(17 + 9 / 12, "feet")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(177.5, "feet")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(152, "miles")
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(6.5, "inches"),
  10505. weight: math.unit(13, "oz"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/dafydd-tomos/front.svg",
  10509. extra: 2990 / 2603,
  10510. bottom: 0.03
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(6.5, "inches"),
  10518. default: true
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/splinter/front.svg",
  10531. extra: 2990 / 2882,
  10532. bottom: 0.04
  10533. }
  10534. },
  10535. back: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Back",
  10539. image: {
  10540. source: "./media/characters/splinter/back.svg",
  10541. extra: 2990 / 2882,
  10542. bottom: 0.04
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(6, "feet")
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(230, "meters"),
  10554. default: true
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(4 + 10 / 12, "feet"),
  10563. weight: math.unit(480, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/snow-gabumon/front.svg",
  10567. extra: 1140 / 963,
  10568. bottom: 0.058
  10569. }
  10570. },
  10571. back: {
  10572. height: math.unit(4 + 10 / 12, "feet"),
  10573. weight: math.unit(480, "lb"),
  10574. name: "Back",
  10575. image: {
  10576. source: "./media/characters/snow-gabumon/back.svg",
  10577. extra: 1115 / 962,
  10578. bottom: 0.041
  10579. }
  10580. },
  10581. frontUndresed: {
  10582. height: math.unit(4 + 10 / 12, "feet"),
  10583. weight: math.unit(480, "lb"),
  10584. name: "Front (Undressed)",
  10585. image: {
  10586. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10587. extra: 1061 / 960,
  10588. bottom: 0.045
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Micro",
  10595. height: math.unit(1, "inch")
  10596. },
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(4 + 10 / 12, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(200, "feet")
  10605. },
  10606. {
  10607. name: "Megamacro",
  10608. height: math.unit(120, "miles")
  10609. },
  10610. {
  10611. name: "Gigamacro",
  10612. height: math.unit(9800, "miles")
  10613. },
  10614. ]
  10615. ))
  10616. characterMakers.push(() => makeCharacter(
  10617. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10618. {
  10619. front: {
  10620. height: math.unit(1.7, "meters"),
  10621. weight: math.unit(140, "lb"),
  10622. name: "Front",
  10623. image: {
  10624. source: "./media/characters/moody/front.svg",
  10625. extra: 3226 / 3007,
  10626. bottom: 0.087
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Micro",
  10633. height: math.unit(1, "mm")
  10634. },
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(1.7, "meters"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(80, "meters")
  10643. },
  10644. {
  10645. name: "Macro+",
  10646. height: math.unit(500, "meters")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/zyas/front.svg",
  10659. extra: 1180 / 1120,
  10660. bottom: 0.045
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(10, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(500, "feet")
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(5, "miles")
  10677. },
  10678. {
  10679. name: "Teramacro",
  10680. height: math.unit(150000, "miles")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/cuon/front.svg",
  10693. extra: 1390 / 1320,
  10694. bottom: 0.008
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(3, "inches")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(18 + 9 / 12, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(360, "feet")
  10711. },
  10712. {
  10713. name: "Megamacro",
  10714. height: math.unit(360, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(2.4, "meters"),
  10723. weight: math.unit(70, "kg"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/nyanuxk/front.svg",
  10727. extra: 1172 / 1084,
  10728. bottom: 0.065
  10729. }
  10730. },
  10731. side: {
  10732. height: math.unit(2.4, "meters"),
  10733. weight: math.unit(70, "kg"),
  10734. name: "Side",
  10735. image: {
  10736. source: "./media/characters/nyanuxk/side.svg",
  10737. extra: 1190 / 1132,
  10738. bottom: 0.007
  10739. }
  10740. },
  10741. back: {
  10742. height: math.unit(2.4, "meters"),
  10743. weight: math.unit(70, "kg"),
  10744. name: "Back",
  10745. image: {
  10746. source: "./media/characters/nyanuxk/back.svg",
  10747. extra: 1200 / 1141,
  10748. bottom: 0.015
  10749. }
  10750. },
  10751. foot: {
  10752. height: math.unit(0.52, "meters"),
  10753. name: "Foot",
  10754. image: {
  10755. source: "./media/characters/nyanuxk/foot.svg"
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Micro",
  10762. height: math.unit(2, "cm")
  10763. },
  10764. {
  10765. name: "Normal",
  10766. height: math.unit(2.4, "meters"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Smaller Macro",
  10771. height: math.unit(120, "meters")
  10772. },
  10773. {
  10774. name: "Bigger Macro",
  10775. height: math.unit(1.2, "km")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(15, "kilometers")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(2000, "km")
  10784. },
  10785. {
  10786. name: "Teramacro",
  10787. height: math.unit(500000, "km")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10793. {
  10794. side: {
  10795. height: math.unit(6, "feet"),
  10796. name: "Side",
  10797. image: {
  10798. source: "./media/characters/ailbhe/side.svg",
  10799. extra: 757 / 464,
  10800. bottom: 0.041
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Normal",
  10807. height: math.unit(1.07, "meters"),
  10808. default: true
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10814. {
  10815. front: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(120, "kg"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/zevulfius/front.svg",
  10821. extra: 965 / 903
  10822. }
  10823. },
  10824. side: {
  10825. height: math.unit(6, "feet"),
  10826. weight: math.unit(120, "kg"),
  10827. name: "Side",
  10828. image: {
  10829. source: "./media/characters/zevulfius/side.svg",
  10830. extra: 939 / 900
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "kg"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/zevulfius/back.svg",
  10839. extra: 918 / 854,
  10840. bottom: 0.005
  10841. }
  10842. },
  10843. foot: {
  10844. height: math.unit(6 / 3.72, "feet"),
  10845. name: "Foot",
  10846. image: {
  10847. source: "./media/characters/zevulfius/foot.svg"
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(750, "meters")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(20, "km"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(2000, "km")
  10864. },
  10865. {
  10866. name: "Teramacro",
  10867. height: math.unit(250000, "km")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10873. {
  10874. front: {
  10875. height: math.unit(100, "feet"),
  10876. weight: math.unit(350, "kg"),
  10877. name: "Front",
  10878. image: {
  10879. source: "./media/characters/rikes/front.svg",
  10880. extra: 1565 / 1483,
  10881. bottom: 0.017
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(100, "feet"),
  10889. default: true
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(8, "feet"),
  10898. weight: math.unit(356, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/adam-silver-mane/front.svg",
  10902. extra: 1036/937,
  10903. bottom: 63/1099
  10904. }
  10905. },
  10906. side: {
  10907. height: math.unit(8, "feet"),
  10908. weight: math.unit(356, "lb"),
  10909. name: "Side",
  10910. image: {
  10911. source: "./media/characters/adam-silver-mane/side.svg",
  10912. extra: 997/901,
  10913. bottom: 59/1056
  10914. }
  10915. },
  10916. frontNsfw: {
  10917. height: math.unit(8, "feet"),
  10918. weight: math.unit(356, "lb"),
  10919. name: "Front (NSFW)",
  10920. image: {
  10921. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10922. extra: 1036/937,
  10923. bottom: 63/1099
  10924. }
  10925. },
  10926. sideNsfw: {
  10927. height: math.unit(8, "feet"),
  10928. weight: math.unit(356, "lb"),
  10929. name: "Side (NSFW)",
  10930. image: {
  10931. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10932. extra: 997/901,
  10933. bottom: 59/1056
  10934. }
  10935. },
  10936. dick: {
  10937. height: math.unit(2.1, "feet"),
  10938. name: "Dick",
  10939. image: {
  10940. source: "./media/characters/adam-silver-mane/dick.svg"
  10941. }
  10942. },
  10943. taur: {
  10944. height: math.unit(16, "feet"),
  10945. weight: math.unit(1500, "kg"),
  10946. name: "Taur",
  10947. image: {
  10948. source: "./media/characters/adam-silver-mane/taur.svg",
  10949. extra: 1713 / 1571,
  10950. bottom: 0.01
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(8, "feet")
  10958. },
  10959. {
  10960. name: "Minimacro",
  10961. height: math.unit(80, "feet")
  10962. },
  10963. {
  10964. name: "MDA",
  10965. height: math.unit(80, "meters")
  10966. },
  10967. {
  10968. name: "Macro",
  10969. height: math.unit(800, "feet"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Megamacro",
  10974. height: math.unit(8000, "feet")
  10975. },
  10976. {
  10977. name: "Gigamacro",
  10978. height: math.unit(800, "miles")
  10979. },
  10980. {
  10981. name: "Teramacro",
  10982. height: math.unit(80000, "miles")
  10983. },
  10984. {
  10985. name: "Celestial",
  10986. height: math.unit(8e6, "miles")
  10987. },
  10988. {
  10989. name: "Star Dragon",
  10990. height: math.unit(800000, "parsecs")
  10991. },
  10992. {
  10993. name: "Godly",
  10994. height: math.unit(800, "teraparsecs")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/ky'owin/front.svg",
  11007. extra: 3888 / 3068,
  11008. bottom: 0.015
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(6 + 8 / 12, "feet")
  11016. },
  11017. {
  11018. name: "Large",
  11019. height: math.unit(68, "feet")
  11020. },
  11021. {
  11022. name: "Macro",
  11023. height: math.unit(132, "feet")
  11024. },
  11025. {
  11026. name: "Macro+",
  11027. height: math.unit(340, "feet")
  11028. },
  11029. {
  11030. name: "Macro++",
  11031. height: math.unit(680, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(1, "mile")
  11037. },
  11038. {
  11039. name: "Megamacro+",
  11040. height: math.unit(10, "miles")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11046. {
  11047. front: {
  11048. height: math.unit(4, "feet"),
  11049. weight: math.unit(50, "lb"),
  11050. name: "Front",
  11051. image: {
  11052. source: "./media/characters/mal/front.svg",
  11053. extra: 785 / 724,
  11054. bottom: 0.07
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(4, "inches")
  11062. },
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(4, "feet"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(200, "feet")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/jordan-deware/front.svg",
  11083. extra: 1191 / 1012
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Nano",
  11090. height: math.unit(0.01, "mm")
  11091. },
  11092. {
  11093. name: "Minimicro",
  11094. height: math.unit(1, "mm")
  11095. },
  11096. {
  11097. name: "Micro",
  11098. height: math.unit(0.5, "inches")
  11099. },
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(4, "feet"),
  11103. default: true
  11104. },
  11105. {
  11106. name: "Minimacro",
  11107. height: math.unit(40, "meters")
  11108. },
  11109. {
  11110. name: "Small Macro",
  11111. height: math.unit(400, "meters")
  11112. },
  11113. {
  11114. name: "Macro",
  11115. height: math.unit(4, "miles")
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(40, "miles")
  11120. },
  11121. {
  11122. name: "Megamacro+",
  11123. height: math.unit(400, "miles")
  11124. },
  11125. {
  11126. name: "Gigamacro",
  11127. height: math.unit(400000, "miles")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11133. {
  11134. side: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(150, "lb"),
  11137. name: "Side",
  11138. image: {
  11139. source: "./media/characters/kimiko/side.svg",
  11140. extra: 600 / 358
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(15, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(220, "feet")
  11153. },
  11154. {
  11155. name: "Macro+",
  11156. height: math.unit(1450, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(11500, "feet")
  11161. },
  11162. {
  11163. name: "Gigamacro",
  11164. height: math.unit(9500, "miles")
  11165. },
  11166. {
  11167. name: "Teramacro",
  11168. height: math.unit(2208005005, "miles")
  11169. },
  11170. {
  11171. name: "Examacro",
  11172. height: math.unit(2750, "parsecs")
  11173. },
  11174. {
  11175. name: "Zettamacro",
  11176. height: math.unit(101500, "parsecs")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(70, "kg"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/andrew-sleepy/front.svg"
  11189. }
  11190. },
  11191. side: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(70, "kg"),
  11194. name: "Side",
  11195. image: {
  11196. source: "./media/characters/andrew-sleepy/side.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(1, "mm"),
  11204. default: true
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/judio/front.svg",
  11217. extra: 1258 / 1110
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(5 + 6 / 12, "feet")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(1000, "feet"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(10, "miles")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11239. {
  11240. frontDressed: {
  11241. height: math.unit(6, "feet"),
  11242. weight: math.unit(68, "kg"),
  11243. name: "Front (Dressed)",
  11244. image: {
  11245. source: "./media/characters/nomaxice/front-dressed.svg",
  11246. extra: 1137/824,
  11247. bottom: 74/1211
  11248. }
  11249. },
  11250. frontShorts: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(68, "kg"),
  11253. name: "Front (Shorts)",
  11254. image: {
  11255. source: "./media/characters/nomaxice/front-shorts.svg",
  11256. extra: 1137/824,
  11257. bottom: 74/1211
  11258. }
  11259. },
  11260. back: {
  11261. height: math.unit(6, "feet"),
  11262. weight: math.unit(68, "kg"),
  11263. name: "Back",
  11264. image: {
  11265. source: "./media/characters/nomaxice/back.svg",
  11266. extra: 822/786,
  11267. bottom: 39/861
  11268. }
  11269. },
  11270. hand: {
  11271. height: math.unit(0.565, "feet"),
  11272. name: "Hand",
  11273. image: {
  11274. source: "./media/characters/nomaxice/hand.svg"
  11275. }
  11276. },
  11277. foot: {
  11278. height: math.unit(1, "feet"),
  11279. name: "Foot",
  11280. image: {
  11281. source: "./media/characters/nomaxice/foot.svg"
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Micro",
  11288. height: math.unit(8, "cm")
  11289. },
  11290. {
  11291. name: "Norm",
  11292. height: math.unit(1.82, "m")
  11293. },
  11294. {
  11295. name: "Norm+",
  11296. height: math.unit(8.8, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Big",
  11301. height: math.unit(8, "meters")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(18, "meters")
  11306. },
  11307. {
  11308. name: "Macro+",
  11309. height: math.unit(88, "meters")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(12, "feet"),
  11318. weight: math.unit(1.5, "tons"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/dydros/front.svg",
  11322. extra: 863 / 800,
  11323. bottom: 0.015
  11324. }
  11325. },
  11326. back: {
  11327. height: math.unit(12, "feet"),
  11328. weight: math.unit(1.5, "tons"),
  11329. name: "Back",
  11330. image: {
  11331. source: "./media/characters/dydros/back.svg",
  11332. extra: 900 / 843,
  11333. bottom: 0.005
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(12, "feet"),
  11341. default: true
  11342. },
  11343. ]
  11344. ))
  11345. characterMakers.push(() => makeCharacter(
  11346. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11347. {
  11348. front: {
  11349. height: math.unit(6, "feet"),
  11350. weight: math.unit(100, "kg"),
  11351. name: "Front",
  11352. image: {
  11353. source: "./media/characters/riggi/front.svg",
  11354. extra: 5787 / 5303
  11355. }
  11356. },
  11357. hyper: {
  11358. height: math.unit(6 * 5 / 3, "feet"),
  11359. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11360. name: "Hyper",
  11361. image: {
  11362. source: "./media/characters/riggi/hyper.svg",
  11363. extra: 3595 / 3485
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Small Macro",
  11370. height: math.unit(50, "feet")
  11371. },
  11372. {
  11373. name: "Default",
  11374. height: math.unit(200, "feet"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Loom",
  11379. height: math.unit(10000, "feet")
  11380. },
  11381. {
  11382. name: "Cruising Altitude",
  11383. height: math.unit(30000, "feet")
  11384. },
  11385. {
  11386. name: "Megamacro",
  11387. height: math.unit(100, "miles")
  11388. },
  11389. {
  11390. name: "Continent Sized",
  11391. height: math.unit(2800, "miles")
  11392. },
  11393. {
  11394. name: "Earth Sized",
  11395. height: math.unit(8000, "miles")
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(250, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/alexi/front.svg",
  11408. extra: 3483 / 3291,
  11409. bottom: 0.04
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(250, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/alexi/back.svg",
  11418. extra: 3533 / 3356,
  11419. bottom: 0.021
  11420. }
  11421. },
  11422. frontTransforming: {
  11423. height: math.unit(8.58, "feet"),
  11424. weight: math.unit(1300, "lb"),
  11425. name: "Transforming",
  11426. image: {
  11427. source: "./media/characters/alexi/front-transforming.svg",
  11428. extra: 437 / 409,
  11429. bottom: 19 / 458.66
  11430. }
  11431. },
  11432. frontTransformed: {
  11433. height: math.unit(12.5, "feet"),
  11434. weight: math.unit(4000, "lb"),
  11435. name: "Transformed",
  11436. image: {
  11437. source: "./media/characters/alexi/front-transformed.svg",
  11438. extra: 639 / 614,
  11439. bottom: 30.55 / 671
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(14, "feet"),
  11447. default: true
  11448. },
  11449. {
  11450. name: "Minimacro",
  11451. height: math.unit(30, "meters")
  11452. },
  11453. {
  11454. name: "Macro",
  11455. height: math.unit(500, "meters")
  11456. },
  11457. {
  11458. name: "Megamacro",
  11459. height: math.unit(9000, "km")
  11460. },
  11461. {
  11462. name: "Teramacro",
  11463. height: math.unit(384000, "km")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(150, "lb"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/kayroo/front.svg",
  11476. extra: 1153 / 1038,
  11477. bottom: 0.06
  11478. }
  11479. },
  11480. foot: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(150, "lb"),
  11483. name: "Foot",
  11484. image: {
  11485. source: "./media/characters/kayroo/foot.svg"
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Normal",
  11492. height: math.unit(8, "feet"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Minimacro",
  11497. height: math.unit(250, "feet")
  11498. },
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(2800, "feet")
  11502. },
  11503. {
  11504. name: "Megamacro",
  11505. height: math.unit(5200, "feet")
  11506. },
  11507. {
  11508. name: "Gigamacro",
  11509. height: math.unit(27000, "feet")
  11510. },
  11511. {
  11512. name: "Omega",
  11513. height: math.unit(45000, "feet")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(18, "feet"),
  11522. weight: math.unit(5800, "lb"),
  11523. name: "Front",
  11524. image: {
  11525. source: "./media/characters/rhys/front.svg",
  11526. extra: 3386 / 3090,
  11527. bottom: 0.07
  11528. }
  11529. },
  11530. },
  11531. [
  11532. {
  11533. name: "Normal",
  11534. height: math.unit(18, "feet"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Working Size",
  11539. height: math.unit(200, "feet")
  11540. },
  11541. {
  11542. name: "Demolition Size",
  11543. height: math.unit(2000, "feet")
  11544. },
  11545. {
  11546. name: "Maximum Licensed Size",
  11547. height: math.unit(5, "miles")
  11548. },
  11549. {
  11550. name: "Maximum Observed Size",
  11551. height: math.unit(10, "yottameters")
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11557. {
  11558. front: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(250, "lb"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/toto/front.svg",
  11564. extra: 527 / 479,
  11565. bottom: 0.05
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Micro",
  11572. height: math.unit(3, "feet")
  11573. },
  11574. {
  11575. name: "Normal",
  11576. height: math.unit(10, "feet")
  11577. },
  11578. {
  11579. name: "Macro",
  11580. height: math.unit(150, "feet"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Megamacro",
  11585. height: math.unit(1200, "feet")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "King", species: ["lion"], tags: ["anthro"] },
  11591. {
  11592. back: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Back",
  11596. image: {
  11597. source: "./media/characters/king/back.svg"
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Micro",
  11604. height: math.unit(2, "inches")
  11605. },
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(8, "feet")
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(200, "feet"),
  11613. default: true
  11614. },
  11615. {
  11616. name: "Megamacro",
  11617. height: math.unit(50, "miles")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(11, "feet"),
  11626. weight: math.unit(1400, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/cordite/front.svg",
  11630. extra: 1919/1827,
  11631. bottom: 40/1959
  11632. }
  11633. },
  11634. side: {
  11635. height: math.unit(11, "feet"),
  11636. weight: math.unit(1400, "lb"),
  11637. name: "Side",
  11638. image: {
  11639. source: "./media/characters/cordite/side.svg",
  11640. extra: 1908/1793,
  11641. bottom: 38/1946
  11642. }
  11643. },
  11644. back: {
  11645. height: math.unit(11, "feet"),
  11646. weight: math.unit(1400, "lb"),
  11647. name: "Back",
  11648. image: {
  11649. source: "./media/characters/cordite/back.svg",
  11650. extra: 1938/1837,
  11651. bottom: 10/1948
  11652. }
  11653. },
  11654. feral: {
  11655. height: math.unit(2, "feet"),
  11656. weight: math.unit(90, "lb"),
  11657. name: "Feral",
  11658. image: {
  11659. source: "./media/characters/cordite/feral.svg",
  11660. extra: 1260 / 755,
  11661. bottom: 0.05
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(11, "feet"),
  11669. default: true
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(150, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/pianostrong/front.svg",
  11682. extra: 6577 / 6254,
  11683. bottom: 0.02
  11684. }
  11685. },
  11686. side: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(150, "lb"),
  11689. name: "Side",
  11690. image: {
  11691. source: "./media/characters/pianostrong/side.svg",
  11692. extra: 6106 / 5730
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/pianostrong/back.svg",
  11701. extra: 6085 / 5733,
  11702. bottom: 0.01
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(100, "feet")
  11710. },
  11711. {
  11712. name: "Macro+",
  11713. height: math.unit(300, "feet"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Macro++",
  11718. height: math.unit(1000, "feet")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(6, "feet"),
  11727. weight: math.unit(150, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/kona/front.svg",
  11731. extra: 2960 / 2629,
  11732. bottom: 0.005
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(11 + 8 / 12, "feet")
  11740. },
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(850, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Macro+",
  11748. height: math.unit(1.5, "km"),
  11749. default: true
  11750. },
  11751. {
  11752. name: "Megamacro",
  11753. height: math.unit(80, "miles")
  11754. },
  11755. {
  11756. name: "Gigamacro",
  11757. height: math.unit(3500, "miles")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11763. {
  11764. side: {
  11765. height: math.unit(1.9, "meters"),
  11766. weight: math.unit(326, "kg"),
  11767. name: "Side",
  11768. image: {
  11769. source: "./media/characters/levi/side.svg",
  11770. extra: 1704 / 1334,
  11771. bottom: 0.02
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(1.9, "meters"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(20, "meters")
  11784. },
  11785. {
  11786. name: "Macro+",
  11787. height: math.unit(200, "meters")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(2, "km")
  11792. },
  11793. {
  11794. name: "Megamacro+",
  11795. height: math.unit(20, "km")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(2500, "km")
  11800. },
  11801. {
  11802. name: "Gigamacro+",
  11803. height: math.unit(120000, "km")
  11804. },
  11805. {
  11806. name: "Teramacro",
  11807. height: math.unit(7.77e6, "km")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(6 + 4/12, "feet"),
  11816. weight: math.unit(190, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/bmc/front.svg",
  11820. extra: 1626/1472,
  11821. bottom: 79/1705
  11822. }
  11823. },
  11824. back: {
  11825. height: math.unit(6 + 4/12, "feet"),
  11826. weight: math.unit(190, "lb"),
  11827. name: "Back",
  11828. image: {
  11829. source: "./media/characters/bmc/back.svg",
  11830. extra: 1640/1479,
  11831. bottom: 45/1685
  11832. }
  11833. },
  11834. frontArmor: {
  11835. height: math.unit(6 + 4/12, "feet"),
  11836. weight: math.unit(190, "lb"),
  11837. name: "Front-armor",
  11838. image: {
  11839. source: "./media/characters/bmc/front-armor.svg",
  11840. extra: 1538/1468,
  11841. bottom: 79/1617
  11842. }
  11843. },
  11844. },
  11845. [
  11846. {
  11847. name: "Human-sized",
  11848. height: math.unit(6 + 4 / 12, "feet")
  11849. },
  11850. {
  11851. name: "Interactive Size",
  11852. height: math.unit(25, "feet")
  11853. },
  11854. {
  11855. name: "Small",
  11856. height: math.unit(250, "feet")
  11857. },
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(1250, "feet"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Good Day",
  11865. height: math.unit(88, "miles")
  11866. },
  11867. {
  11868. name: "Largest Measured Size",
  11869. height: math.unit(105.960, "galaxies")
  11870. },
  11871. ]
  11872. ))
  11873. characterMakers.push(() => makeCharacter(
  11874. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11875. {
  11876. front: {
  11877. height: math.unit(20, "feet"),
  11878. weight: math.unit(2016, "kg"),
  11879. name: "Front",
  11880. image: {
  11881. source: "./media/characters/sven-the-kaiju/front.svg",
  11882. extra: 1277/1250,
  11883. bottom: 35/1312
  11884. }
  11885. },
  11886. mouth: {
  11887. height: math.unit(1.85, "feet"),
  11888. name: "Mouth",
  11889. image: {
  11890. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Fairy",
  11897. height: math.unit(6, "inches")
  11898. },
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(20, "feet"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Rampage",
  11906. height: math.unit(200, "feet")
  11907. },
  11908. {
  11909. name: "Archfey Forest Guardian",
  11910. height: math.unit(1, "mile")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(4, "meters"),
  11919. weight: math.unit(2, "tons"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/marik/front.svg",
  11923. extra: 1057 / 1003,
  11924. bottom: 0.08
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Normal",
  11931. height: math.unit(4, "meters"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Macro",
  11936. height: math.unit(20, "meters")
  11937. },
  11938. {
  11939. name: "Megamacro",
  11940. height: math.unit(50, "km")
  11941. },
  11942. {
  11943. name: "Gigamacro",
  11944. height: math.unit(100, "km")
  11945. },
  11946. {
  11947. name: "Alpha Macro",
  11948. height: math.unit(7.88e7, "yottameters")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(110, "lb"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/mel/front.svg",
  11961. extra: 736 / 617,
  11962. bottom: 0.017
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Pico",
  11969. height: math.unit(3, "pm")
  11970. },
  11971. {
  11972. name: "Nano",
  11973. height: math.unit(3, "nm")
  11974. },
  11975. {
  11976. name: "Micro",
  11977. height: math.unit(0.3, "mm"),
  11978. default: true
  11979. },
  11980. {
  11981. name: "Micro+",
  11982. height: math.unit(3, "mm")
  11983. },
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(5 + 10.5 / 12, "feet")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11992. {
  11993. kaiju: {
  11994. height: math.unit(1.75, "meters"),
  11995. weight: math.unit(55, "kg"),
  11996. name: "Kaiju",
  11997. image: {
  11998. source: "./media/characters/lykonous/kaiju.svg",
  11999. extra: 1055 / 946,
  12000. bottom: 0.135
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(2.5, "meters"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Kaiju Dragon",
  12012. height: math.unit(60, "meters")
  12013. },
  12014. {
  12015. name: "Mega Kaiju",
  12016. height: math.unit(120, "km")
  12017. },
  12018. {
  12019. name: "Giga Kaiju",
  12020. height: math.unit(200, "megameters")
  12021. },
  12022. {
  12023. name: "Terra Kaiju",
  12024. height: math.unit(400, "gigameters")
  12025. },
  12026. {
  12027. name: "Kaiju Dragon God",
  12028. height: math.unit(13000, "exaparsecs")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/blü/front.svg",
  12041. extra: 1883 / 1564,
  12042. bottom: 0.031
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(13, "feet"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Big Boi",
  12054. height: math.unit(150, "meters")
  12055. },
  12056. {
  12057. name: "Mini Stomper",
  12058. height: math.unit(300, "meters")
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(1000, "meters")
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(11000, "meters")
  12067. },
  12068. {
  12069. name: "Gigamacro",
  12070. height: math.unit(11000, "km")
  12071. },
  12072. {
  12073. name: "Teramacro",
  12074. height: math.unit(420000, "km")
  12075. },
  12076. {
  12077. name: "Examacro",
  12078. height: math.unit(120, "parsecs")
  12079. },
  12080. {
  12081. name: "God Tho",
  12082. height: math.unit(98000000000, "parsecs")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12088. {
  12089. taurFront: {
  12090. height: math.unit(6, "feet"),
  12091. weight: math.unit(200, "lb"),
  12092. name: "Taur (Front)",
  12093. image: {
  12094. source: "./media/characters/scales/taur-front.svg",
  12095. extra: 1,
  12096. bottom: 0.05
  12097. }
  12098. },
  12099. taurBack: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(200, "lb"),
  12102. name: "Taur (Back)",
  12103. image: {
  12104. source: "./media/characters/scales/taur-back.svg",
  12105. extra: 1,
  12106. bottom: 0.08
  12107. }
  12108. },
  12109. anthro: {
  12110. height: math.unit(6 * 7 / 12, "feet"),
  12111. weight: math.unit(100, "lb"),
  12112. name: "Anthro",
  12113. image: {
  12114. source: "./media/characters/scales/anthro.svg",
  12115. extra: 1,
  12116. bottom: 0.06
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(12, "feet"),
  12124. default: true
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12130. {
  12131. front: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(150, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/koragos/front.svg",
  12137. extra: 841 / 794,
  12138. bottom: 0.035
  12139. }
  12140. },
  12141. back: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Back",
  12145. image: {
  12146. source: "./media/characters/koragos/back.svg",
  12147. extra: 841 / 810,
  12148. bottom: 0.022
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(6 + 11 / 12, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(490, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(10, "miles")
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(50, "miles")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(250, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/xylrem/front.svg",
  12181. extra: 3323 / 3050,
  12182. bottom: 0.065
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(4, "feet")
  12190. },
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(16, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Macro",
  12198. height: math.unit(2720, "feet")
  12199. },
  12200. {
  12201. name: "Megamacro",
  12202. height: math.unit(25000, "miles")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(8, "feet"),
  12211. weight: math.unit(250, "kg"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/ikideru/front.svg",
  12215. extra: 930 / 870,
  12216. bottom: 0.087
  12217. }
  12218. },
  12219. back: {
  12220. height: math.unit(8, "feet"),
  12221. weight: math.unit(250, "kg"),
  12222. name: "Back",
  12223. image: {
  12224. source: "./media/characters/ikideru/back.svg",
  12225. extra: 919 / 852,
  12226. bottom: 0.055
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Rare",
  12233. height: math.unit(8, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Playful Loom",
  12238. height: math.unit(80, "feet")
  12239. },
  12240. {
  12241. name: "City Leaner",
  12242. height: math.unit(230, "feet")
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(2500, "feet")
  12247. },
  12248. {
  12249. name: "Gigamacro",
  12250. height: math.unit(26400, "feet")
  12251. },
  12252. {
  12253. name: "Tectonic Shifter",
  12254. height: math.unit(1.7, "megameters")
  12255. },
  12256. {
  12257. name: "Planet Carer",
  12258. height: math.unit(21, "megameters")
  12259. },
  12260. {
  12261. name: "God",
  12262. height: math.unit(11157.22, "parsecs")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(120, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/neo/front.svg"
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Micro",
  12281. height: math.unit(2, "inches"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Human Size",
  12286. height: math.unit(5 + 8 / 12, "feet")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(13 + 10 / 12, "feet"),
  12295. weight: math.unit(5320, "lb"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/chauncey-chantz/front.svg",
  12299. extra: 1587 / 1435,
  12300. bottom: 0.02
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(13 + 10 / 12, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(45, "feet")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(250, "miles")
  12317. },
  12318. {
  12319. name: "Planetary",
  12320. height: math.unit(10000, "miles")
  12321. },
  12322. {
  12323. name: "Galactic",
  12324. height: math.unit(40000, "parsecs")
  12325. },
  12326. {
  12327. name: "Universal",
  12328. height: math.unit(1, "yottameter")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12334. {
  12335. front: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(150, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/epifox/front.svg",
  12341. extra: 1,
  12342. bottom: 0.075
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Micro",
  12349. height: math.unit(6, "inches")
  12350. },
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(12, "feet"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Macro",
  12358. height: math.unit(3810, "feet")
  12359. },
  12360. {
  12361. name: "Megamacro",
  12362. height: math.unit(500, "miles")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(1.8796, "m"),
  12371. weight: math.unit(230, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/colin-t/front.svg",
  12375. extra: 1272 / 1193,
  12376. bottom: 0.07
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(0.571, "meters")
  12384. },
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(1.8796, "meters"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Tall",
  12392. height: math.unit(4, "meters")
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(67.241, "meters")
  12397. },
  12398. {
  12399. name: "Megamacro",
  12400. height: math.unit(371.856, "meters")
  12401. },
  12402. {
  12403. name: "Planetary",
  12404. height: math.unit(12631.5689, "km")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12410. {
  12411. front: {
  12412. height: math.unit(1.85, "meters"),
  12413. weight: math.unit(80, "kg"),
  12414. name: "Front",
  12415. image: {
  12416. source: "./media/characters/matvei/front.svg",
  12417. extra: 614 / 594,
  12418. bottom: 0.01
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(1.85, "meters"),
  12426. default: true
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(5 + 9 / 12, "feet"),
  12435. weight: math.unit(70, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/quincy/front.svg",
  12439. extra: 3041 / 2751
  12440. }
  12441. },
  12442. back: {
  12443. height: math.unit(5 + 9 / 12, "feet"),
  12444. weight: math.unit(70, "lb"),
  12445. name: "Back",
  12446. image: {
  12447. source: "./media/characters/quincy/back.svg",
  12448. extra: 3041 / 2751
  12449. }
  12450. },
  12451. flying: {
  12452. height: math.unit(5 + 4 / 12, "feet"),
  12453. weight: math.unit(70, "lb"),
  12454. name: "Flying",
  12455. image: {
  12456. source: "./media/characters/quincy/flying.svg",
  12457. extra: 1044 / 930
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Micro",
  12464. height: math.unit(3, "cm")
  12465. },
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(5 + 9 / 12, "feet")
  12469. },
  12470. {
  12471. name: "Macro",
  12472. height: math.unit(200, "meters"),
  12473. default: true
  12474. },
  12475. {
  12476. name: "Megamacro",
  12477. height: math.unit(1000, "meters")
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(3 + 11/12, "feet"),
  12486. weight: math.unit(50, "lb"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/vanrel/front.svg",
  12490. extra: 1104/949,
  12491. bottom: 52/1156
  12492. }
  12493. },
  12494. back: {
  12495. height: math.unit(3 + 11/12, "feet"),
  12496. weight: math.unit(50, "lb"),
  12497. name: "Back",
  12498. image: {
  12499. source: "./media/characters/vanrel/back.svg",
  12500. extra: 1119/976,
  12501. bottom: 37/1156
  12502. }
  12503. },
  12504. tome: {
  12505. height: math.unit(1.35, "feet"),
  12506. weight: math.unit(10, "lb"),
  12507. name: "Vanrel's Tome",
  12508. rename: true,
  12509. image: {
  12510. source: "./media/characters/vanrel/tome.svg"
  12511. }
  12512. },
  12513. beans: {
  12514. height: math.unit(0.89, "feet"),
  12515. name: "Beans",
  12516. image: {
  12517. source: "./media/characters/vanrel/beans.svg"
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(3 + 11/12, "feet"),
  12525. default: true
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(7 + 5 / 12, "feet"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/kuiper-vanrel/front.svg",
  12537. extra: 1219/1169,
  12538. bottom: 69/1288
  12539. }
  12540. },
  12541. back: {
  12542. height: math.unit(7 + 5 / 12, "feet"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/kuiper-vanrel/back.svg",
  12546. extra: 1236/1193,
  12547. bottom: 27/1263
  12548. }
  12549. },
  12550. foot: {
  12551. height: math.unit(0.55, "meters"),
  12552. name: "Foot",
  12553. image: {
  12554. source: "./media/characters/kuiper-vanrel/foot.svg",
  12555. }
  12556. },
  12557. battle: {
  12558. height: math.unit(6.824, "feet"),
  12559. name: "Battle",
  12560. image: {
  12561. source: "./media/characters/kuiper-vanrel/battle.svg",
  12562. extra: 1466 / 1327,
  12563. bottom: 29 / 1492.5
  12564. }
  12565. },
  12566. meerkui: {
  12567. height: math.unit(18, "inches"),
  12568. name: "Meerkui",
  12569. image: {
  12570. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12571. extra: 1354/1289,
  12572. bottom: 69/1423
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(7 + 5 / 12, "feet"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(8 + 5 / 12, "feet"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/keset-vanrel/front.svg",
  12592. extra: 1231/1148,
  12593. bottom: 82/1313
  12594. }
  12595. },
  12596. back: {
  12597. height: math.unit(8 + 5 / 12, "feet"),
  12598. name: "Back",
  12599. image: {
  12600. source: "./media/characters/keset-vanrel/back.svg",
  12601. extra: 1240/1174,
  12602. bottom: 33/1273
  12603. }
  12604. },
  12605. hand: {
  12606. height: math.unit(0.6, "meters"),
  12607. name: "Hand",
  12608. image: {
  12609. source: "./media/characters/keset-vanrel/hand.svg"
  12610. }
  12611. },
  12612. foot: {
  12613. height: math.unit(0.94978, "meters"),
  12614. name: "Foot",
  12615. image: {
  12616. source: "./media/characters/keset-vanrel/foot.svg"
  12617. }
  12618. },
  12619. battle: {
  12620. height: math.unit(7.408, "feet"),
  12621. name: "Battle",
  12622. image: {
  12623. source: "./media/characters/keset-vanrel/battle.svg",
  12624. extra: 1890 / 1386,
  12625. bottom: 73.28 / 1970
  12626. }
  12627. },
  12628. },
  12629. [
  12630. {
  12631. name: "Normal",
  12632. height: math.unit(8 + 5 / 12, "feet"),
  12633. default: true
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12639. {
  12640. front: {
  12641. height: math.unit(6, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Front",
  12644. image: {
  12645. source: "./media/characters/neos/front.svg",
  12646. extra: 1696 / 992,
  12647. bottom: 0.14
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(54, "cm"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Macro",
  12659. height: math.unit(100, "m")
  12660. },
  12661. {
  12662. name: "Megamacro",
  12663. height: math.unit(10, "km")
  12664. },
  12665. {
  12666. name: "Megamacro+",
  12667. height: math.unit(100, "km")
  12668. },
  12669. {
  12670. name: "Gigamacro",
  12671. height: math.unit(100, "Mm")
  12672. },
  12673. {
  12674. name: "Teramacro",
  12675. height: math.unit(100, "Gm")
  12676. },
  12677. {
  12678. name: "Examacro",
  12679. height: math.unit(100, "Em")
  12680. },
  12681. {
  12682. name: "Godly",
  12683. height: math.unit(10000, "Ym")
  12684. },
  12685. {
  12686. name: "Beyond Godly",
  12687. height: math.unit(25, "multiverses")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12693. {
  12694. feminine: {
  12695. height: math.unit(5, "feet"),
  12696. weight: math.unit(100, "lb"),
  12697. name: "Feminine",
  12698. image: {
  12699. source: "./media/characters/sammy-mouse/feminine.svg",
  12700. extra: 2526 / 2425,
  12701. bottom: 0.123
  12702. }
  12703. },
  12704. masculine: {
  12705. height: math.unit(5, "feet"),
  12706. weight: math.unit(100, "lb"),
  12707. name: "Masculine",
  12708. image: {
  12709. source: "./media/characters/sammy-mouse/masculine.svg",
  12710. extra: 2526 / 2425,
  12711. bottom: 0.123
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(5, "inches")
  12719. },
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(5, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(60, "feet")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(4, "feet"),
  12736. weight: math.unit(50, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/kole/front.svg",
  12740. extra: 1423 / 1303,
  12741. bottom: 0.025
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(4, "feet"),
  12746. weight: math.unit(50, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/kole/back.svg",
  12750. extra: 1426 / 1280,
  12751. bottom: 0.02
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(4, "feet"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(2.5, "feet"),
  12768. weight: math.unit(32, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/rufran/front.svg",
  12772. extra: 1313/885,
  12773. bottom: 94/1407
  12774. }
  12775. },
  12776. side: {
  12777. height: math.unit(2.5, "feet"),
  12778. weight: math.unit(32, "lb"),
  12779. name: "Side",
  12780. image: {
  12781. source: "./media/characters/rufran/side.svg",
  12782. extra: 1109/852,
  12783. bottom: 118/1227
  12784. }
  12785. },
  12786. back: {
  12787. height: math.unit(2.5, "feet"),
  12788. weight: math.unit(32, "lb"),
  12789. name: "Back",
  12790. image: {
  12791. source: "./media/characters/rufran/back.svg",
  12792. extra: 1280/878,
  12793. bottom: 131/1411
  12794. }
  12795. },
  12796. mouth: {
  12797. height: math.unit(1.13, "feet"),
  12798. name: "Mouth",
  12799. image: {
  12800. source: "./media/characters/rufran/mouth.svg"
  12801. }
  12802. },
  12803. foot: {
  12804. height: math.unit(1.33, "feet"),
  12805. name: "Foot",
  12806. image: {
  12807. source: "./media/characters/rufran/foot.svg"
  12808. }
  12809. },
  12810. koboldFront: {
  12811. height: math.unit(2 + 6 / 12, "feet"),
  12812. weight: math.unit(20, "lb"),
  12813. name: "Front (Kobold)",
  12814. image: {
  12815. source: "./media/characters/rufran/kobold-front.svg",
  12816. extra: 2041 / 1839,
  12817. bottom: 0.055
  12818. }
  12819. },
  12820. koboldBack: {
  12821. height: math.unit(2 + 6 / 12, "feet"),
  12822. weight: math.unit(20, "lb"),
  12823. name: "Back (Kobold)",
  12824. image: {
  12825. source: "./media/characters/rufran/kobold-back.svg",
  12826. extra: 2054 / 1839,
  12827. bottom: 0.01
  12828. }
  12829. },
  12830. koboldHand: {
  12831. height: math.unit(0.2166, "meters"),
  12832. name: "Hand (Kobold)",
  12833. image: {
  12834. source: "./media/characters/rufran/kobold-hand.svg"
  12835. }
  12836. },
  12837. koboldFoot: {
  12838. height: math.unit(0.185, "meters"),
  12839. name: "Foot (Kobold)",
  12840. image: {
  12841. source: "./media/characters/rufran/kobold-foot.svg"
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(1, "inch")
  12849. },
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(2 + 6 / 12, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Big",
  12857. height: math.unit(60, "feet")
  12858. },
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(325, "feet")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(0.3, "meters"),
  12870. weight: math.unit(3.5, "kg"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/chip/front.svg",
  12874. extra: 748 / 674
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Micro",
  12881. height: math.unit(1, "inch"),
  12882. default: true
  12883. },
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12888. {
  12889. side: {
  12890. height: math.unit(2.3, "meters"),
  12891. weight: math.unit(3500, "lb"),
  12892. name: "Side",
  12893. image: {
  12894. source: "./media/characters/torvid/side.svg",
  12895. extra: 1972 / 722,
  12896. bottom: 0.035
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(2.3, "meters"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(2, "meters"),
  12913. weight: math.unit(150.5, "kg"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/susan/front.svg",
  12917. extra: 693 / 635,
  12918. bottom: 0.05
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(505, "miles"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/raindrops/front.svg",
  12939. extra: 2655 / 2461,
  12940. bottom: 49 / 2705
  12941. }
  12942. },
  12943. back: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(150, "lb"),
  12946. name: "Back",
  12947. image: {
  12948. source: "./media/characters/raindrops/back.svg",
  12949. extra: 2574 / 2400,
  12950. bottom: 65 / 2634
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Micro",
  12957. height: math.unit(6, "inches")
  12958. },
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(6 + 2 / 12, "feet")
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(131, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(15, "miles")
  12971. },
  12972. {
  12973. name: "Gigamacro",
  12974. height: math.unit(4000, "miles")
  12975. },
  12976. {
  12977. name: "Teramacro",
  12978. height: math.unit(315000, "miles")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(2.794, "meters"),
  12987. weight: math.unit(325, "kg"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/tezwa/front.svg",
  12991. extra: 2083 / 1906,
  12992. bottom: 0.031
  12993. }
  12994. },
  12995. foot: {
  12996. height: math.unit(0.687, "meters"),
  12997. name: "Foot",
  12998. image: {
  12999. source: "./media/characters/tezwa/foot.svg"
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(9 + 2 / 12, "feet"),
  13007. default: true
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(58, "feet"),
  13016. weight: math.unit(89000, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/typhus/front.svg",
  13020. extra: 816 / 800,
  13021. bottom: 0.065
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Macro",
  13028. height: math.unit(58, "feet"),
  13029. default: true
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(12, "feet"),
  13038. weight: math.unit(6, "tonnes"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/lyra-von-wulf/front.svg",
  13042. extra: 1,
  13043. bottom: 0.10
  13044. }
  13045. },
  13046. frontMecha: {
  13047. height: math.unit(12, "feet"),
  13048. weight: math.unit(12, "tonnes"),
  13049. name: "Front (Mecha)",
  13050. image: {
  13051. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13052. extra: 1,
  13053. bottom: 0.042
  13054. }
  13055. },
  13056. maw: {
  13057. height: math.unit(2.2, "feet"),
  13058. name: "Maw",
  13059. image: {
  13060. source: "./media/characters/lyra-von-wulf/maw.svg"
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Normal",
  13067. height: math.unit(12, "feet"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Classic",
  13072. height: math.unit(50, "feet")
  13073. },
  13074. {
  13075. name: "Macro",
  13076. height: math.unit(500, "feet")
  13077. },
  13078. {
  13079. name: "Megamacro",
  13080. height: math.unit(1, "mile")
  13081. },
  13082. {
  13083. name: "Gigamacro",
  13084. height: math.unit(400, "miles")
  13085. },
  13086. {
  13087. name: "Teramacro",
  13088. height: math.unit(22000, "miles")
  13089. },
  13090. {
  13091. name: "Solarmacro",
  13092. height: math.unit(8600000, "miles")
  13093. },
  13094. {
  13095. name: "Galactic",
  13096. height: math.unit(1057000, "lightyears")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6 + 10 / 12, "feet"),
  13105. weight: math.unit(150, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/dixon/front.svg",
  13109. extra: 3361 / 3209,
  13110. bottom: 0.01
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(6 + 10 / 12, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Big",
  13122. height: math.unit(12, "meters")
  13123. },
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(500, "meters")
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(2, "km")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(185, "cm"),
  13139. weight: math.unit(68, "kg"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/kauko/front.svg",
  13143. extra: 1455 / 1421,
  13144. bottom: 0.03
  13145. }
  13146. },
  13147. back: {
  13148. height: math.unit(185, "cm"),
  13149. weight: math.unit(68, "kg"),
  13150. name: "Back",
  13151. image: {
  13152. source: "./media/characters/kauko/back.svg",
  13153. extra: 1455 / 1421,
  13154. bottom: 0.004
  13155. }
  13156. },
  13157. },
  13158. [
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(185, "cm"),
  13162. default: true
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "kg"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/varg/front.svg",
  13175. extra: 1108 / 1018,
  13176. bottom: 0.0375
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(5, "meters")
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(200, "meters")
  13188. },
  13189. {
  13190. name: "Megamacro",
  13191. height: math.unit(20, "kilometers")
  13192. },
  13193. {
  13194. name: "True Size",
  13195. height: math.unit(211, "km"),
  13196. default: true
  13197. },
  13198. {
  13199. name: "Gigamacro",
  13200. height: math.unit(1000, "km")
  13201. },
  13202. {
  13203. name: "Gigamacro+",
  13204. height: math.unit(8000, "km")
  13205. },
  13206. {
  13207. name: "Teramacro",
  13208. height: math.unit(1000000, "km")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13214. {
  13215. front: {
  13216. height: math.unit(7 + 7 / 12, "feet"),
  13217. weight: math.unit(267, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/dayza/front.svg",
  13221. extra: 1262 / 1200,
  13222. bottom: 0.035
  13223. }
  13224. },
  13225. side: {
  13226. height: math.unit(7 + 7 / 12, "feet"),
  13227. weight: math.unit(267, "lb"),
  13228. name: "Side",
  13229. image: {
  13230. source: "./media/characters/dayza/side.svg",
  13231. extra: 1295 / 1245,
  13232. bottom: 0.05
  13233. }
  13234. },
  13235. back: {
  13236. height: math.unit(7 + 7 / 12, "feet"),
  13237. weight: math.unit(267, "lb"),
  13238. name: "Back",
  13239. image: {
  13240. source: "./media/characters/dayza/back.svg",
  13241. extra: 1241 / 1170
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(7 + 7 / 12, "feet"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(155, "feet")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13259. {
  13260. front: {
  13261. height: math.unit(6 + 5 / 12, "feet"),
  13262. weight: math.unit(160, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/xanthos/front.svg",
  13266. extra: 1,
  13267. bottom: 0.04
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(6 + 5 / 12, "feet"),
  13272. weight: math.unit(160, "lb"),
  13273. name: "Back",
  13274. image: {
  13275. source: "./media/characters/xanthos/back.svg",
  13276. extra: 1,
  13277. bottom: 0.03
  13278. }
  13279. },
  13280. hand: {
  13281. height: math.unit(0.928, "feet"),
  13282. name: "Hand",
  13283. image: {
  13284. source: "./media/characters/xanthos/hand.svg"
  13285. }
  13286. },
  13287. foot: {
  13288. height: math.unit(1.286, "feet"),
  13289. name: "Foot",
  13290. image: {
  13291. source: "./media/characters/xanthos/foot.svg"
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(6 + 5 / 12, "feet"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Normal+",
  13303. height: math.unit(6, "meters")
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(40, "feet")
  13308. },
  13309. {
  13310. name: "Macro+",
  13311. height: math.unit(200, "meters")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(20, "km")
  13316. },
  13317. {
  13318. name: "Megamacro+",
  13319. height: math.unit(100, "km")
  13320. },
  13321. {
  13322. name: "Gigamacro",
  13323. height: math.unit(200, "megameters")
  13324. },
  13325. {
  13326. name: "Gigamacro+",
  13327. height: math.unit(1.5, "gigameters")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6 + 3 / 12, "feet"),
  13336. weight: math.unit(215, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/grynn/front.svg",
  13340. extra: 4627 / 4209,
  13341. bottom: 0.047
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(6, "inches")
  13349. },
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(6 + 3 / 12, "feet"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Big",
  13357. height: math.unit(104, "feet")
  13358. },
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(944, "feet")
  13362. },
  13363. {
  13364. name: "Macro+",
  13365. height: math.unit(9480, "feet")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(78752, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro+",
  13373. height: math.unit(630128, "feet")
  13374. },
  13375. {
  13376. name: "Megamacro++",
  13377. height: math.unit(3150695, "feet")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(7 + 5 / 12, "feet"),
  13386. weight: math.unit(450, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/mocha-aura/front.svg",
  13390. extra: 1907 / 1817,
  13391. bottom: 0.04
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(7 + 5 / 12, "feet"),
  13396. weight: math.unit(450, "lb"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/mocha-aura/back.svg",
  13400. extra: 1900 / 1825,
  13401. bottom: 0.045
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Nano",
  13408. height: math.unit(1, "nm")
  13409. },
  13410. {
  13411. name: "Megamicro",
  13412. height: math.unit(1, "mm")
  13413. },
  13414. {
  13415. name: "Micro",
  13416. height: math.unit(3, "inches")
  13417. },
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(7 + 5 / 12, "feet"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(30, "feet")
  13426. },
  13427. {
  13428. name: "Megamacro",
  13429. height: math.unit(3500, "feet")
  13430. },
  13431. {
  13432. name: "Teramacro",
  13433. height: math.unit(500000, "miles")
  13434. },
  13435. {
  13436. name: "Petamacro",
  13437. height: math.unit(50000000000000000, "parsecs")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6, "feet"),
  13446. weight: math.unit(150, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/ilisha-devya/front.svg",
  13450. extra: 1053/1049,
  13451. bottom: 270/1323
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(150, "lb"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/ilisha-devya/back.svg",
  13460. extra: 1131/1128,
  13461. bottom: 39/1170
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(500, "feet"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Megamacro",
  13473. height: math.unit(10, "miles")
  13474. },
  13475. {
  13476. name: "Gigamacro",
  13477. height: math.unit(100000, "miles")
  13478. },
  13479. {
  13480. name: "Examacro",
  13481. height: math.unit(1e9, "lightyears")
  13482. },
  13483. {
  13484. name: "Omniversal",
  13485. height: math.unit(1e33, "lightyears")
  13486. },
  13487. {
  13488. name: "Beyond Infinite",
  13489. height: math.unit(1e100, "lightyears")
  13490. },
  13491. ]
  13492. ))
  13493. characterMakers.push(() => makeCharacter(
  13494. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13495. {
  13496. Side: {
  13497. height: math.unit(6, "feet"),
  13498. weight: math.unit(150, "lb"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/mira/side.svg",
  13502. extra: 900 / 799,
  13503. bottom: 0.02
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Human Size",
  13510. height: math.unit(6, "feet")
  13511. },
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(100, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Megamacro",
  13519. height: math.unit(10, "miles")
  13520. },
  13521. {
  13522. name: "Gigamacro",
  13523. height: math.unit(25000, "miles")
  13524. },
  13525. {
  13526. name: "Teramacro",
  13527. height: math.unit(300, "AU")
  13528. },
  13529. {
  13530. name: "Full Size",
  13531. height: math.unit(4.5e10, "lightyears")
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(150, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/holly/front.svg",
  13544. extra: 639 / 606
  13545. }
  13546. },
  13547. back: {
  13548. height: math.unit(6, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Back",
  13551. image: {
  13552. source: "./media/characters/holly/back.svg",
  13553. extra: 623 / 598
  13554. }
  13555. },
  13556. frontWorking: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Front (Working)",
  13560. image: {
  13561. source: "./media/characters/holly/front-working.svg",
  13562. extra: 607 / 577,
  13563. bottom: 0.048
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(12 + 3 / 12, "feet"),
  13571. default: true
  13572. },
  13573. ]
  13574. ))
  13575. characterMakers.push(() => makeCharacter(
  13576. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13577. {
  13578. front: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Front",
  13582. image: {
  13583. source: "./media/characters/porter/front.svg",
  13584. extra: 1,
  13585. bottom: 0.01
  13586. }
  13587. },
  13588. frontRobes: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(150, "lb"),
  13591. name: "Front (Robes)",
  13592. image: {
  13593. source: "./media/characters/porter/front-robes.svg",
  13594. extra: 1.01,
  13595. bottom: 0.01
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(11 + 9 / 12, "feet"),
  13603. default: true
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13609. {
  13610. legendary: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(150, "lb"),
  13613. name: "Legendary",
  13614. image: {
  13615. source: "./media/characters/lucy/legendary.svg",
  13616. extra: 1355 / 1100,
  13617. bottom: 0.045
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Legendary",
  13624. height: math.unit(86882 * 2, "miles"),
  13625. default: true
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(6, "feet"),
  13634. weight: math.unit(150, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/drusilla/front.svg",
  13638. extra: 678 / 635,
  13639. bottom: 0.03
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(150, "lb"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/drusilla/back.svg",
  13648. extra: 678 / 635,
  13649. bottom: 0.005
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(100, "feet")
  13657. },
  13658. {
  13659. name: "Canon Height",
  13660. height: math.unit(2000, "feet"),
  13661. default: true
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(180, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/renard-thatch/front.svg",
  13674. extra: 2411 / 2275,
  13675. bottom: 0.01
  13676. }
  13677. },
  13678. frontPosing: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(180, "lb"),
  13681. name: "Front (Posing)",
  13682. image: {
  13683. source: "./media/characters/renard-thatch/front-posing.svg",
  13684. extra: 2381 / 2261,
  13685. bottom: 0.01
  13686. }
  13687. },
  13688. back: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(180, "lb"),
  13691. name: "Back",
  13692. image: {
  13693. source: "./media/characters/renard-thatch/back.svg",
  13694. extra: 2428 / 2288
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(3, "inches")
  13702. },
  13703. {
  13704. name: "Default",
  13705. height: math.unit(6, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(75, "feet")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(1450, "feet"),
  13719. weight: math.unit(1.21e6, "tons"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/sekvra/front.svg",
  13723. extra: 1193/1190,
  13724. bottom: 78/1271
  13725. }
  13726. },
  13727. side: {
  13728. height: math.unit(1450, "feet"),
  13729. weight: math.unit(1.21e6, "tons"),
  13730. name: "Side",
  13731. image: {
  13732. source: "./media/characters/sekvra/side.svg",
  13733. extra: 1193/1190,
  13734. bottom: 52/1245
  13735. }
  13736. },
  13737. back: {
  13738. height: math.unit(1450, "feet"),
  13739. weight: math.unit(1.21e6, "tons"),
  13740. name: "Back",
  13741. image: {
  13742. source: "./media/characters/sekvra/back.svg",
  13743. extra: 1219/1216,
  13744. bottom: 21/1240
  13745. }
  13746. },
  13747. frontClothed: {
  13748. height: math.unit(1450, "feet"),
  13749. weight: math.unit(1.21e6, "tons"),
  13750. name: "Front (Clothed)",
  13751. image: {
  13752. source: "./media/characters/sekvra/front-clothed.svg",
  13753. extra: 1192/1189,
  13754. bottom: 79/1271
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(1450, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(15000, "feet")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/carmine/front.svg",
  13779. extra: 1,
  13780. bottom: 0.035
  13781. }
  13782. },
  13783. frontArmor: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Front (Armor)",
  13787. image: {
  13788. source: "./media/characters/carmine/front-armor.svg",
  13789. extra: 1,
  13790. bottom: 0.035
  13791. }
  13792. },
  13793. },
  13794. [
  13795. {
  13796. name: "Large",
  13797. height: math.unit(1, "mile")
  13798. },
  13799. {
  13800. name: "Huge",
  13801. height: math.unit(40, "miles"),
  13802. default: true
  13803. },
  13804. {
  13805. name: "Colossal",
  13806. height: math.unit(2500, "miles")
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13812. {
  13813. front: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/elyssia/front.svg",
  13819. extra: 2201 / 2035,
  13820. bottom: 0.05
  13821. }
  13822. },
  13823. frontClothed: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front (Clothed)",
  13827. image: {
  13828. source: "./media/characters/elyssia/front-clothed.svg",
  13829. extra: 2201 / 2035,
  13830. bottom: 0.05
  13831. }
  13832. },
  13833. back: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Back",
  13837. image: {
  13838. source: "./media/characters/elyssia/back.svg",
  13839. extra: 2201 / 2035,
  13840. bottom: 0.013
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Smaller",
  13847. height: math.unit(150, "feet")
  13848. },
  13849. {
  13850. name: "Standard",
  13851. height: math.unit(1400, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Distracted",
  13856. height: math.unit(15000, "feet")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(7 + 4/12, "feet"),
  13865. weight: math.unit(690, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/geno-maxwell/front.svg",
  13869. extra: 984/856,
  13870. bottom: 87/1071
  13871. }
  13872. },
  13873. back: {
  13874. height: math.unit(7 + 4/12, "feet"),
  13875. weight: math.unit(690, "lb"),
  13876. name: "Back",
  13877. image: {
  13878. source: "./media/characters/geno-maxwell/back.svg",
  13879. extra: 981/854,
  13880. bottom: 57/1038
  13881. }
  13882. },
  13883. frontCostume: {
  13884. height: math.unit(7 + 4/12, "feet"),
  13885. weight: math.unit(690, "lb"),
  13886. name: "Front (Costume)",
  13887. image: {
  13888. source: "./media/characters/geno-maxwell/front-costume.svg",
  13889. extra: 984/856,
  13890. bottom: 87/1071
  13891. }
  13892. },
  13893. backcostume: {
  13894. height: math.unit(7 + 4/12, "feet"),
  13895. weight: math.unit(690, "lb"),
  13896. name: "Back (Costume)",
  13897. image: {
  13898. source: "./media/characters/geno-maxwell/back-costume.svg",
  13899. extra: 981/854,
  13900. bottom: 57/1038
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Micro",
  13907. height: math.unit(3, "inches")
  13908. },
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(7 + 4 / 12, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(220, "feet")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(11, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(7 + 4/12, "feet"),
  13929. weight: math.unit(750, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/regena-maxwell/front.svg",
  13933. extra: 984/856,
  13934. bottom: 87/1071
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(7 + 4/12, "feet"),
  13939. weight: math.unit(750, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/regena-maxwell/back.svg",
  13943. extra: 981/854,
  13944. bottom: 57/1038
  13945. }
  13946. },
  13947. frontCostume: {
  13948. height: math.unit(7 + 4/12, "feet"),
  13949. weight: math.unit(750, "lb"),
  13950. name: "Front (Costume)",
  13951. image: {
  13952. source: "./media/characters/regena-maxwell/front-costume.svg",
  13953. extra: 984/856,
  13954. bottom: 87/1071
  13955. }
  13956. },
  13957. backcostume: {
  13958. height: math.unit(7 + 4/12, "feet"),
  13959. weight: math.unit(750, "lb"),
  13960. name: "Back (Costume)",
  13961. image: {
  13962. source: "./media/characters/regena-maxwell/back-costume.svg",
  13963. extra: 981/854,
  13964. bottom: 57/1038
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(7 + 4 / 12, "feet"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(220, "feet")
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(11, "miles")
  13981. },
  13982. ]
  13983. ))
  13984. characterMakers.push(() => makeCharacter(
  13985. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13986. {
  13987. front: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(150, "lb"),
  13990. name: "Front",
  13991. image: {
  13992. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13993. extra: 860 / 690,
  13994. bottom: 0.03
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Normal",
  14001. height: math.unit(1.7, "meters"),
  14002. default: true
  14003. },
  14004. ]
  14005. ))
  14006. characterMakers.push(() => makeCharacter(
  14007. { name: "Quilly", species: ["quilava"], 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/quilly/front.svg",
  14015. extra: 890 / 776
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Gigamacro",
  14022. height: math.unit(404090, "miles"),
  14023. default: true
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(7 + 8 / 12, "feet"),
  14032. weight: math.unit(350, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/tempest/front.svg",
  14036. extra: 1175 / 1086,
  14037. bottom: 0.02
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(7 + 8 / 12, "feet"),
  14045. default: true
  14046. },
  14047. ]
  14048. ))
  14049. characterMakers.push(() => makeCharacter(
  14050. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14051. {
  14052. side: {
  14053. height: math.unit(4 + 5 / 12, "feet"),
  14054. weight: math.unit(80, "lb"),
  14055. name: "Side",
  14056. image: {
  14057. source: "./media/characters/rodger/side.svg",
  14058. extra: 1235 / 1118
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Micro",
  14065. height: math.unit(1, "inch")
  14066. },
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(4 + 5 / 12, "feet"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(120, "feet")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/danyel/front.svg",
  14087. extra: 1185 / 1123,
  14088. bottom: 0.05
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Shrunken",
  14095. height: math.unit(0.5, "mm")
  14096. },
  14097. {
  14098. name: "Micro",
  14099. height: math.unit(1, "mm"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Upsized",
  14104. height: math.unit(5 + 5 / 12, "feet")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(5 + 6 / 12, "feet"),
  14113. weight: math.unit(200, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/vivian-bijoux/front.svg",
  14117. extra: 1217/1209,
  14118. bottom: 76/1293
  14119. }
  14120. },
  14121. back: {
  14122. height: math.unit(5 + 6 / 12, "feet"),
  14123. weight: math.unit(200, "lb"),
  14124. name: "Back",
  14125. image: {
  14126. source: "./media/characters/vivian-bijoux/back.svg",
  14127. extra: 1214/1208,
  14128. bottom: 51/1265
  14129. }
  14130. },
  14131. dressed: {
  14132. height: math.unit(5 + 6 / 12, "feet"),
  14133. weight: math.unit(200, "lb"),
  14134. name: "Dressed",
  14135. image: {
  14136. source: "./media/characters/vivian-bijoux/dressed.svg",
  14137. extra: 1217/1209,
  14138. bottom: 76/1293
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(5 + 6 / 12, "feet"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Bad Dream",
  14150. height: math.unit(500, "feet")
  14151. },
  14152. {
  14153. name: "Nightmare",
  14154. height: math.unit(500, "miles")
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(6 + 1 / 12, "feet"),
  14163. weight: math.unit(260, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/zeta/front.svg",
  14167. extra: 1968 / 1889,
  14168. bottom: 0.06
  14169. }
  14170. },
  14171. back: {
  14172. height: math.unit(6 + 1 / 12, "feet"),
  14173. weight: math.unit(260, "lb"),
  14174. name: "Back",
  14175. image: {
  14176. source: "./media/characters/zeta/back.svg",
  14177. extra: 1944 / 1858,
  14178. bottom: 0.03
  14179. }
  14180. },
  14181. hand: {
  14182. height: math.unit(1.112, "feet"),
  14183. name: "Hand",
  14184. image: {
  14185. source: "./media/characters/zeta/hand.svg"
  14186. }
  14187. },
  14188. foot: {
  14189. height: math.unit(1.48, "feet"),
  14190. name: "Foot",
  14191. image: {
  14192. source: "./media/characters/zeta/foot.svg"
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Micro",
  14199. height: math.unit(6, "inches")
  14200. },
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(6 + 1 / 12, "feet"),
  14204. default: true
  14205. },
  14206. {
  14207. name: "Macro",
  14208. height: math.unit(20, "feet")
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(6, "feet"),
  14217. weight: math.unit(150, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/jamie-larsen/front.svg",
  14221. extra: 962 / 933,
  14222. bottom: 0.02
  14223. }
  14224. },
  14225. back: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Back",
  14229. image: {
  14230. source: "./media/characters/jamie-larsen/back.svg",
  14231. extra: 997 / 946
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(28 + 7 / 12, "feet"),
  14239. default: true
  14240. },
  14241. {
  14242. name: "Macro+",
  14243. height: math.unit(180, "feet")
  14244. },
  14245. {
  14246. name: "Megamacro",
  14247. height: math.unit(10, "miles")
  14248. },
  14249. {
  14250. name: "Gigamacro",
  14251. height: math.unit(200000, "miles")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(120, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/vance/front.svg",
  14264. extra: 1980 / 1890,
  14265. bottom: 0.09
  14266. }
  14267. },
  14268. back: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(120, "lb"),
  14271. name: "Back",
  14272. image: {
  14273. source: "./media/characters/vance/back.svg",
  14274. extra: 2081 / 1994,
  14275. bottom: 0.014
  14276. }
  14277. },
  14278. hand: {
  14279. height: math.unit(0.88, "feet"),
  14280. name: "Hand",
  14281. image: {
  14282. source: "./media/characters/vance/hand.svg"
  14283. }
  14284. },
  14285. foot: {
  14286. height: math.unit(0.64, "feet"),
  14287. name: "Foot",
  14288. image: {
  14289. source: "./media/characters/vance/foot.svg"
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Small",
  14296. height: math.unit(90, "feet"),
  14297. default: true
  14298. },
  14299. {
  14300. name: "Macro",
  14301. height: math.unit(100, "meters")
  14302. },
  14303. {
  14304. name: "Megamacro",
  14305. height: math.unit(15, "miles")
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(180, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/xochitl/front.svg",
  14318. extra: 2297 / 2261,
  14319. bottom: 0.065
  14320. }
  14321. },
  14322. back: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(180, "lb"),
  14325. name: "Back",
  14326. image: {
  14327. source: "./media/characters/xochitl/back.svg",
  14328. extra: 2386 / 2354,
  14329. bottom: 0.01
  14330. }
  14331. },
  14332. foot: {
  14333. height: math.unit(6 / 5 * 1.15, "feet"),
  14334. weight: math.unit(150, "lb"),
  14335. name: "Foot",
  14336. image: {
  14337. source: "./media/characters/xochitl/foot.svg"
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Macro",
  14344. height: math.unit(80, "feet")
  14345. },
  14346. {
  14347. name: "Macro+",
  14348. height: math.unit(400, "feet"),
  14349. default: true
  14350. },
  14351. {
  14352. name: "Gigamacro",
  14353. height: math.unit(80000, "miles")
  14354. },
  14355. {
  14356. name: "Gigamacro+",
  14357. height: math.unit(400000, "miles")
  14358. },
  14359. {
  14360. name: "Teramacro",
  14361. height: math.unit(300, "AU")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/vincent/front.svg",
  14374. extra: 1130 / 1080,
  14375. bottom: 0.055
  14376. }
  14377. },
  14378. beak: {
  14379. height: math.unit(6 * 0.1, "feet"),
  14380. name: "Beak",
  14381. image: {
  14382. source: "./media/characters/vincent/beak.svg"
  14383. }
  14384. },
  14385. hand: {
  14386. height: math.unit(6 * 0.85, "feet"),
  14387. weight: math.unit(150, "lb"),
  14388. name: "Hand",
  14389. image: {
  14390. source: "./media/characters/vincent/hand.svg"
  14391. }
  14392. },
  14393. foot: {
  14394. height: math.unit(6 * 0.19, "feet"),
  14395. weight: math.unit(150, "lb"),
  14396. name: "Foot",
  14397. image: {
  14398. source: "./media/characters/vincent/foot.svg"
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Base",
  14405. height: math.unit(6 + 5 / 12, "feet"),
  14406. default: true
  14407. },
  14408. {
  14409. name: "Macro",
  14410. height: math.unit(300, "feet")
  14411. },
  14412. {
  14413. name: "Megamacro",
  14414. height: math.unit(2, "miles")
  14415. },
  14416. {
  14417. name: "Gigamacro",
  14418. height: math.unit(1000, "miles")
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(2, "meters"),
  14427. weight: math.unit(500, "kg"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/coatl/front.svg",
  14431. extra: 3948 / 3500,
  14432. bottom: 0.082
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Normal",
  14439. height: math.unit(4, "meters")
  14440. },
  14441. {
  14442. name: "Macro",
  14443. height: math.unit(100, "meters"),
  14444. default: true
  14445. },
  14446. {
  14447. name: "Macro+",
  14448. height: math.unit(300, "meters")
  14449. },
  14450. {
  14451. name: "Megamacro",
  14452. height: math.unit(3, "gigameters")
  14453. },
  14454. {
  14455. name: "Megamacro+",
  14456. height: math.unit(300, "terameters")
  14457. },
  14458. {
  14459. name: "Megamacro++",
  14460. height: math.unit(3, "lightyears")
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14466. {
  14467. front: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(50, "kg"),
  14470. name: "front",
  14471. image: {
  14472. source: "./media/characters/shiroryu/front.svg",
  14473. extra: 1990 / 1935
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Mortal Mingling",
  14480. height: math.unit(3, "meters")
  14481. },
  14482. {
  14483. name: "Kaiju-ish",
  14484. height: math.unit(250, "meters")
  14485. },
  14486. {
  14487. name: "Somewhat Godly",
  14488. height: math.unit(400, "km"),
  14489. default: true
  14490. },
  14491. {
  14492. name: "Planetary",
  14493. height: math.unit(300, "megameters")
  14494. },
  14495. {
  14496. name: "Galaxy-dwarfing",
  14497. height: math.unit(450, "kiloparsecs")
  14498. },
  14499. {
  14500. name: "Universe Eater",
  14501. height: math.unit(150, "gigaparsecs")
  14502. },
  14503. {
  14504. name: "Almost Immeasurable",
  14505. height: math.unit(1.3e266, "yottaparsecs")
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(150, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/umeko/front.svg",
  14518. extra: 1,
  14519. bottom: 0.019
  14520. }
  14521. },
  14522. frontArmored: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front (Armored)",
  14526. image: {
  14527. source: "./media/characters/umeko/front-armored.svg",
  14528. extra: 1,
  14529. bottom: 0.021
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Macro",
  14536. height: math.unit(220, "feet"),
  14537. default: true
  14538. },
  14539. {
  14540. name: "Guardian Dragon",
  14541. height: math.unit(50, "miles")
  14542. },
  14543. {
  14544. name: "Cosmic",
  14545. height: math.unit(800000, "miles")
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(150, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/cassidy/front.svg",
  14558. extra: 810/808,
  14559. bottom: 41/851
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Canon Height",
  14566. height: math.unit(120, "feet"),
  14567. default: true
  14568. },
  14569. {
  14570. name: "Macro+",
  14571. height: math.unit(400, "feet")
  14572. },
  14573. {
  14574. name: "Macro++",
  14575. height: math.unit(4000, "feet")
  14576. },
  14577. {
  14578. name: "Megamacro",
  14579. height: math.unit(3, "miles")
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/isaac/front.svg",
  14592. extra: 896 / 815,
  14593. bottom: 0.11
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Human Size",
  14600. height: math.unit(8, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Macro",
  14605. height: math.unit(400, "feet")
  14606. },
  14607. {
  14608. name: "Megamacro",
  14609. height: math.unit(50, "miles")
  14610. },
  14611. {
  14612. name: "Canon Height",
  14613. height: math.unit(200, "AU")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(72, "kg"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/sleekit/front.svg",
  14626. extra: 4693 / 4487,
  14627. bottom: 0.012
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Minimum Height",
  14634. height: math.unit(10, "meters")
  14635. },
  14636. {
  14637. name: "Smaller",
  14638. height: math.unit(25, "meters")
  14639. },
  14640. {
  14641. name: "Larger",
  14642. height: math.unit(38, "meters"),
  14643. default: true
  14644. },
  14645. {
  14646. name: "Maximum height",
  14647. height: math.unit(100, "meters")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/nillia/front.svg",
  14660. extra: 2195 / 2037,
  14661. bottom: 0.005
  14662. }
  14663. },
  14664. back: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Back",
  14668. image: {
  14669. source: "./media/characters/nillia/back.svg",
  14670. extra: 2195 / 2037,
  14671. bottom: 0.005
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Canon Height",
  14678. height: math.unit(489, "feet"),
  14679. default: true
  14680. }
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/mesmyriza/front.svg",
  14692. extra: 2067 / 1784,
  14693. bottom: 0.035
  14694. }
  14695. },
  14696. foot: {
  14697. height: math.unit(6 / (250 / 35), "feet"),
  14698. name: "Foot",
  14699. image: {
  14700. source: "./media/characters/mesmyriza/foot.svg"
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(457, "meters"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Megamacro",
  14712. height: math.unit(8, "megameters")
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(6, "feet"),
  14721. weight: math.unit(250, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/saudade/front.svg",
  14725. extra: 1172 / 1139,
  14726. bottom: 0.035
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Micro",
  14733. height: math.unit(3, "inches")
  14734. },
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(6, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Macro",
  14742. height: math.unit(50, "feet")
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(2800, "feet")
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(5 + 4 / 12, "feet"),
  14755. weight: math.unit(100, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/keireer/front.svg",
  14759. extra: 716 / 666,
  14760. bottom: 0.05
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 4 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(90, "kg"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/mirja/front.svg",
  14781. extra: 1789 / 1683,
  14782. bottom: 0.05
  14783. }
  14784. },
  14785. frontDressed: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(90, "lb"),
  14788. name: "Front (Dressed)",
  14789. image: {
  14790. source: "./media/characters/mirja/front-dressed.svg",
  14791. extra: 1789 / 1683,
  14792. bottom: 0.05
  14793. }
  14794. },
  14795. back: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(90, "lb"),
  14798. name: "Back",
  14799. image: {
  14800. source: "./media/characters/mirja/back.svg",
  14801. extra: 953 / 917,
  14802. bottom: 0.017
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "\"Incognito\"",
  14809. height: math.unit(3, "meters")
  14810. },
  14811. {
  14812. name: "Strolling Size",
  14813. height: math.unit(15, "km")
  14814. },
  14815. {
  14816. name: "Larger Strolling Size",
  14817. height: math.unit(400, "km")
  14818. },
  14819. {
  14820. name: "Preferred Size",
  14821. height: math.unit(5000, "km")
  14822. },
  14823. {
  14824. name: "True Size",
  14825. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(15, "feet"),
  14835. weight: math.unit(880, "kg"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/nightraver/front.svg",
  14839. extra: 2444 / 2160,
  14840. bottom: 0.027
  14841. }
  14842. },
  14843. back: {
  14844. height: math.unit(15, "feet"),
  14845. weight: math.unit(880, "kg"),
  14846. name: "Back",
  14847. image: {
  14848. source: "./media/characters/nightraver/back.svg",
  14849. extra: 2309 / 2180,
  14850. bottom: 0.005
  14851. }
  14852. },
  14853. sole: {
  14854. height: math.unit(2.878, "feet"),
  14855. name: "Sole",
  14856. image: {
  14857. source: "./media/characters/nightraver/sole.svg"
  14858. }
  14859. },
  14860. foot: {
  14861. height: math.unit(2.285, "feet"),
  14862. name: "Foot",
  14863. image: {
  14864. source: "./media/characters/nightraver/foot.svg"
  14865. }
  14866. },
  14867. maw: {
  14868. height: math.unit(2.67, "feet"),
  14869. name: "Maw",
  14870. image: {
  14871. source: "./media/characters/nightraver/maw.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Micro",
  14878. height: math.unit(1, "cm")
  14879. },
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(15, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(300, "feet")
  14888. },
  14889. {
  14890. name: "Megamacro",
  14891. height: math.unit(300, "miles")
  14892. },
  14893. {
  14894. name: "Gigamacro",
  14895. height: math.unit(10000, "miles")
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14901. {
  14902. side: {
  14903. height: math.unit(2, "inches"),
  14904. weight: math.unit(5, "grams"),
  14905. name: "Side",
  14906. image: {
  14907. source: "./media/characters/arc/side.svg"
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Micro",
  14914. height: math.unit(2, "inches"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(1.1938, "meters"),
  14924. weight: math.unit(54, "kg"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/nebula-shahar/front.svg",
  14928. extra: 1642 / 1436,
  14929. bottom: 0.06
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Megamicro",
  14936. height: math.unit(0.3, "mm")
  14937. },
  14938. {
  14939. name: "Micro",
  14940. height: math.unit(3, "cm")
  14941. },
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(138, "cm"),
  14945. default: true
  14946. },
  14947. {
  14948. name: "Macro",
  14949. height: math.unit(30, "m")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(5.24, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/shayla/front.svg",
  14962. extra: 1512 / 1414,
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(5.24, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/shayla/back.svg",
  14972. extra: 1512 / 1414
  14973. }
  14974. },
  14975. hand: {
  14976. height: math.unit(0.7781496062992126, "feet"),
  14977. name: "Hand",
  14978. image: {
  14979. source: "./media/characters/shayla/hand.svg"
  14980. }
  14981. },
  14982. foot: {
  14983. height: math.unit(1.4206036745406823, "feet"),
  14984. name: "Foot",
  14985. image: {
  14986. source: "./media/characters/shayla/foot.svg"
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(0.32, "feet")
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(5.24, "feet"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(492.12, "feet")
  15003. },
  15004. {
  15005. name: "Megamacro",
  15006. height: math.unit(186.41, "miles")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(2.2, "m"),
  15015. weight: math.unit(120, "kg"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/pia-jr/front.svg",
  15019. extra: 1000 / 970,
  15020. bottom: 0.035
  15021. }
  15022. },
  15023. hand: {
  15024. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15025. name: "Hand",
  15026. image: {
  15027. source: "./media/characters/pia-jr/hand.svg"
  15028. }
  15029. },
  15030. paw: {
  15031. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15032. name: "Paw",
  15033. image: {
  15034. source: "./media/characters/pia-jr/paw.svg"
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Micro",
  15041. height: math.unit(1.2, "cm")
  15042. },
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(2.2, "m"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro",
  15050. height: math.unit(180, "m")
  15051. },
  15052. {
  15053. name: "Megamacro",
  15054. height: math.unit(420, "km")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(2, "m"),
  15063. weight: math.unit(115, "kg"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/pia-sr/front.svg",
  15067. extra: 760 / 730,
  15068. bottom: 0.015
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(2, "m"),
  15073. weight: math.unit(115, "kg"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/pia-sr/back.svg",
  15077. extra: 760 / 730,
  15078. bottom: 0.01
  15079. }
  15080. },
  15081. hand: {
  15082. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15083. name: "Hand",
  15084. image: {
  15085. source: "./media/characters/pia-sr/hand.svg"
  15086. }
  15087. },
  15088. foot: {
  15089. height: math.unit(1.83, "feet"),
  15090. name: "Foot",
  15091. image: {
  15092. source: "./media/characters/pia-sr/foot.svg"
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Micro",
  15099. height: math.unit(88, "mm")
  15100. },
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(2, "m"),
  15104. default: true
  15105. },
  15106. {
  15107. name: "Macro",
  15108. height: math.unit(200, "m")
  15109. },
  15110. {
  15111. name: "Megamacro",
  15112. height: math.unit(420, "km")
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(8 + 2 / 12, "feet"),
  15121. weight: math.unit(300, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/kibibyte/front.svg",
  15125. extra: 2221 / 2098,
  15126. bottom: 0.04
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(8 + 2 / 12, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Socialable Macro",
  15138. height: math.unit(50, "feet")
  15139. },
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(300, "feet")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(500, "miles")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/felix/front.svg",
  15159. extra: 762 / 722,
  15160. bottom: 0.02
  15161. }
  15162. },
  15163. frontClothed: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front (Clothed)",
  15167. image: {
  15168. source: "./media/characters/felix/front-clothed.svg",
  15169. extra: 762 / 722,
  15170. bottom: 0.02
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(6 + 8 / 12, "feet"),
  15178. default: true
  15179. },
  15180. {
  15181. name: "Macro",
  15182. height: math.unit(2600, "feet")
  15183. },
  15184. {
  15185. name: "Megamacro",
  15186. height: math.unit(450, "miles")
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15192. {
  15193. front: {
  15194. height: math.unit(6 + 1 / 12, "feet"),
  15195. weight: math.unit(250, "lb"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/tobo/front.svg",
  15199. extra: 608 / 586,
  15200. bottom: 0.023
  15201. }
  15202. },
  15203. back: {
  15204. height: math.unit(6 + 1 / 12, "feet"),
  15205. weight: math.unit(250, "lb"),
  15206. name: "Back",
  15207. image: {
  15208. source: "./media/characters/tobo/back.svg",
  15209. extra: 608 / 586
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Nano",
  15216. height: math.unit(2, "nm")
  15217. },
  15218. {
  15219. name: "Megamicro",
  15220. height: math.unit(0.1, "mm")
  15221. },
  15222. {
  15223. name: "Micro",
  15224. height: math.unit(1, "inch"),
  15225. default: true
  15226. },
  15227. {
  15228. name: "Human-sized",
  15229. height: math.unit(6 + 1 / 12, "feet")
  15230. },
  15231. {
  15232. name: "Macro",
  15233. height: math.unit(250, "feet")
  15234. },
  15235. {
  15236. name: "Megamacro",
  15237. height: math.unit(75, "miles")
  15238. },
  15239. {
  15240. name: "Texas-sized",
  15241. height: math.unit(750, "miles")
  15242. },
  15243. {
  15244. name: "Teramacro",
  15245. height: math.unit(50000, "miles")
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(6, "feet"),
  15254. weight: math.unit(269, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/danny-kapowsky/front.svg",
  15258. extra: 766 / 736,
  15259. bottom: 0.044
  15260. }
  15261. },
  15262. back: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(269, "lb"),
  15265. name: "Back",
  15266. image: {
  15267. source: "./media/characters/danny-kapowsky/back.svg",
  15268. extra: 797 / 760,
  15269. bottom: 0.025
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Macro",
  15276. height: math.unit(150, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Macro+",
  15281. height: math.unit(200, "feet")
  15282. },
  15283. {
  15284. name: "Macro++",
  15285. height: math.unit(300, "feet")
  15286. },
  15287. {
  15288. name: "Macro+++",
  15289. height: math.unit(400, "feet")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15295. {
  15296. side: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(170, "lb"),
  15299. name: "Side",
  15300. image: {
  15301. source: "./media/characters/finn/side.svg",
  15302. extra: 1953 / 1807,
  15303. bottom: 0.057
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Megamacro",
  15310. height: math.unit(14445, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(5 + 6 / 12, "feet"),
  15320. weight: math.unit(125, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/roy/front.svg",
  15324. extra: 1,
  15325. bottom: 0.11
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Micro",
  15332. height: math.unit(3, "inches"),
  15333. default: true
  15334. },
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(5 + 6 / 12, "feet")
  15338. },
  15339. {
  15340. name: "Lesser Macro",
  15341. height: math.unit(60, "feet")
  15342. },
  15343. {
  15344. name: "Greater Macro",
  15345. height: math.unit(120, "feet")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(100, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/aevsivs/front.svg",
  15358. extra: 1,
  15359. bottom: 0.03
  15360. }
  15361. },
  15362. back: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(100, "lb"),
  15365. name: "Back",
  15366. image: {
  15367. source: "./media/characters/aevsivs/back.svg"
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Micro",
  15374. height: math.unit(2, "inches"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(5, "feet")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(5 + 7 / 12, "feet"),
  15388. weight: math.unit(159, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/hildegard/front.svg",
  15392. extra: 289 / 269,
  15393. bottom: 7.63 / 297.8
  15394. }
  15395. },
  15396. back: {
  15397. height: math.unit(5 + 7 / 12, "feet"),
  15398. weight: math.unit(159, "lb"),
  15399. name: "Back",
  15400. image: {
  15401. source: "./media/characters/hildegard/back.svg",
  15402. extra: 280 / 260,
  15403. bottom: 2.3 / 282
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 7 / 12, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15417. {
  15418. bernard: {
  15419. height: math.unit(2 + 7 / 12, "feet"),
  15420. weight: math.unit(66, "lb"),
  15421. name: "Bernard",
  15422. rename: true,
  15423. image: {
  15424. source: "./media/characters/bernard-wilder/bernard.svg",
  15425. extra: 192 / 128,
  15426. bottom: 0.05
  15427. }
  15428. },
  15429. wilder: {
  15430. height: math.unit(5 + 8 / 12, "feet"),
  15431. weight: math.unit(143, "lb"),
  15432. name: "Wilder",
  15433. rename: true,
  15434. image: {
  15435. source: "./media/characters/bernard-wilder/wilder.svg",
  15436. extra: 361 / 312,
  15437. bottom: 0.02
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(2 + 7 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15451. {
  15452. anthro: {
  15453. height: math.unit(6 + 1 / 12, "feet"),
  15454. weight: math.unit(155, "lb"),
  15455. name: "Anthro",
  15456. image: {
  15457. source: "./media/characters/hearth/anthro.svg",
  15458. extra: 1178/1136,
  15459. bottom: 28/1206
  15460. }
  15461. },
  15462. feral: {
  15463. height: math.unit(3.78, "feet"),
  15464. weight: math.unit(35, "kg"),
  15465. name: "Feral",
  15466. image: {
  15467. source: "./media/characters/hearth/feral.svg",
  15468. extra: 153 / 135,
  15469. bottom: 0.03
  15470. }
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(6 + 1 / 12, "feet"),
  15477. default: true
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(182, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/ingrid/front.svg",
  15490. extra: 294 / 268,
  15491. bottom: 0.027
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(6, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15505. {
  15506. eevee: {
  15507. height: math.unit(2 + 10 / 12, "feet"),
  15508. weight: math.unit(86, "lb"),
  15509. name: "Malgam",
  15510. image: {
  15511. source: "./media/characters/malgam/eevee.svg",
  15512. extra: 952/784,
  15513. bottom: 38/990
  15514. }
  15515. },
  15516. sylveon: {
  15517. height: math.unit(4, "feet"),
  15518. weight: math.unit(101, "lb"),
  15519. name: "Future Malgam",
  15520. rename: true,
  15521. image: {
  15522. source: "./media/characters/malgam/sylveon.svg",
  15523. extra: 371 / 325,
  15524. bottom: 0.015
  15525. }
  15526. },
  15527. gigantamax: {
  15528. height: math.unit(50, "feet"),
  15529. name: "Gigantamax Malgam",
  15530. rename: true,
  15531. image: {
  15532. source: "./media/characters/malgam/gigantamax.svg"
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(2 + 10 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(5 + 11 / 12, "feet"),
  15549. weight: math.unit(188, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/fleur/front.svg",
  15553. extra: 309 / 283,
  15554. bottom: 0.007
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(5 + 11 / 12, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(5 + 4 / 12, "feet"),
  15571. weight: math.unit(122, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/jude/front.svg",
  15575. extra: 288 / 273,
  15576. bottom: 0.03
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(5 + 4 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(5 + 11 / 12, "feet"),
  15593. weight: math.unit(190, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/seara/front.svg",
  15597. extra: 1,
  15598. bottom: 0.05
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(5 + 11 / 12, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(16 + 5 / 12, "feet"),
  15615. weight: math.unit(524, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/caspian-lugia/front.svg",
  15619. extra: 1,
  15620. bottom: 0.04
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(16 + 5 / 12, "feet"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(5 + 7 / 12, "feet"),
  15637. weight: math.unit(170, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/mika/front.svg",
  15641. extra: 1,
  15642. bottom: 0.016
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(5 + 7 / 12, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(6 + 2 / 12, "feet"),
  15659. weight: math.unit(268, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/sol/front.svg",
  15663. extra: 247 / 231,
  15664. bottom: 0.05
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(6 + 2 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15678. {
  15679. buizel: {
  15680. height: math.unit(2 + 5 / 12, "feet"),
  15681. weight: math.unit(87, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/umiko/buizel.svg",
  15685. extra: 172 / 157,
  15686. bottom: 0.01
  15687. },
  15688. form: "buizel",
  15689. default: true
  15690. },
  15691. floatzel: {
  15692. height: math.unit(5 + 9 / 12, "feet"),
  15693. weight: math.unit(250, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/umiko/floatzel.svg",
  15697. extra: 1076/1006,
  15698. bottom: 15/1091
  15699. },
  15700. form: "floatzel",
  15701. default: true
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(2 + 5 / 12, "feet"),
  15708. form: "buizel",
  15709. default: true
  15710. },
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(5 + 9 / 12, "feet"),
  15714. form: "floatzel",
  15715. default: true
  15716. },
  15717. ],
  15718. {
  15719. "buizel": {
  15720. name: "Buizel"
  15721. },
  15722. "floatzel": {
  15723. name: "Floatzel",
  15724. default: true
  15725. }
  15726. }
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(6 + 2 / 12, "feet"),
  15733. weight: math.unit(146, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/iliac/front.svg",
  15737. extra: 389 / 365,
  15738. bottom: 0.035
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6 + 2 / 12, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(170, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/topaz/front.svg",
  15759. extra: 317 / 303,
  15760. bottom: 0.055
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(5 + 11 / 12, "feet"),
  15777. weight: math.unit(144, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/gabriel/front.svg",
  15781. extra: 285 / 262,
  15782. bottom: 0.004
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(5 + 11 / 12, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15796. {
  15797. side: {
  15798. height: math.unit(6 + 5 / 12, "feet"),
  15799. weight: math.unit(300, "lb"),
  15800. name: "Side",
  15801. image: {
  15802. source: "./media/characters/tempest-suicune/side.svg",
  15803. extra: 195 / 154,
  15804. bottom: 0.04
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(6 + 5 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(7 + 2 / 12, "feet"),
  15821. weight: math.unit(322, "lb"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/vulcan/front.svg",
  15825. extra: 154 / 147,
  15826. bottom: 0.04
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(7 + 2 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(5 + 10 / 12, "feet"),
  15843. weight: math.unit(264, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/gault/front.svg",
  15847. extra: 161 / 140,
  15848. bottom: 0.028
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(5 + 10 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/shard/front.svg",
  15869. extra: 273 / 238,
  15870. bottom: 0.02
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(3 + 6 / 12, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(5 + 11 / 12, "feet"),
  15887. weight: math.unit(146, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/ashe/front.svg",
  15891. extra: 400 / 373,
  15892. bottom: 0.01
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(5 + 11 / 12, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15906. {
  15907. front: {
  15908. height: math.unit(5 + 5 / 12, "feet"),
  15909. weight: math.unit(135, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/beatrix/front.svg",
  15913. extra: 392 / 379,
  15914. bottom: 0.01
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(6, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(6 + 2/12, "feet"),
  15931. weight: math.unit(135, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/ignatius/front.svg",
  15935. extra: 1380/1259,
  15936. bottom: 27/1407
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(6 + 2/12, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(6 + 2 / 12, "feet"),
  15953. weight: math.unit(138, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/mei-li/front.svg",
  15957. extra: 237 / 229,
  15958. bottom: 0.03
  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: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(2 + 4 / 12, "feet"),
  15975. weight: math.unit(62, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/puru/front.svg",
  15979. extra: 206 / 149,
  15980. bottom: 0.06
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(2 + 4 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15994. {
  15995. anthro: {
  15996. height: math.unit(5 + 8/12, "feet"),
  15997. weight: math.unit(200, "lb"),
  15998. energyNeed: math.unit(2000, "kcal"),
  15999. name: "Anthro",
  16000. image: {
  16001. source: "./media/characters/kee/anthro.svg",
  16002. extra: 3251/3184,
  16003. bottom: 250/3501
  16004. }
  16005. },
  16006. taur: {
  16007. height: math.unit(11, "feet"),
  16008. weight: math.unit(500, "lb"),
  16009. energyNeed: math.unit(5000, "kcal"),
  16010. name: "Taur",
  16011. image: {
  16012. source: "./media/characters/kee/taur.svg",
  16013. extra: 1362/1320,
  16014. bottom: 83/1445
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(5 + 8/12, "feet"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Macro",
  16026. height: math.unit(35, "feet")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16032. {
  16033. anthro: {
  16034. height: math.unit(7, "feet"),
  16035. weight: math.unit(190, "lb"),
  16036. name: "Anthro",
  16037. image: {
  16038. source: "./media/characters/cobalt-dracha/anthro.svg",
  16039. extra: 231 / 225,
  16040. bottom: 0.04
  16041. }
  16042. },
  16043. feral: {
  16044. height: math.unit(9 + 7 / 12, "feet"),
  16045. weight: math.unit(294, "lb"),
  16046. name: "Feral",
  16047. image: {
  16048. source: "./media/characters/cobalt-dracha/feral.svg",
  16049. extra: 692 / 633,
  16050. bottom: 0.05
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Normal",
  16057. height: math.unit(7, "feet"),
  16058. default: true
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16064. {
  16065. fallen: {
  16066. height: math.unit(11 + 8 / 12, "feet"),
  16067. weight: math.unit(485, "lb"),
  16068. name: "Java (Fallen)",
  16069. rename: true,
  16070. image: {
  16071. source: "./media/characters/java/fallen.svg",
  16072. extra: 226 / 208,
  16073. bottom: 0.005
  16074. }
  16075. },
  16076. godkin: {
  16077. height: math.unit(10 + 6 / 12, "feet"),
  16078. weight: math.unit(328, "lb"),
  16079. name: "Java (Godkin)",
  16080. rename: true,
  16081. image: {
  16082. source: "./media/characters/java/godkin.svg",
  16083. extra: 1104/1068,
  16084. bottom: 36/1140
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(11 + 8 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(5 + 9 / 12, "feet"),
  16101. weight: math.unit(170, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/purna/front.svg",
  16105. extra: 239 / 229,
  16106. bottom: 0.01
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(5 + 9 / 12, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(5 + 9 / 12, "feet"),
  16123. weight: math.unit(142, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/kuva/front.svg",
  16127. extra: 281 / 271,
  16128. bottom: 0.006
  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: "Embra", species: ["dracha"], tags: ["anthro"] },
  16142. {
  16143. anthro: {
  16144. height: math.unit(9 + 2 / 12, "feet"),
  16145. weight: math.unit(270, "lb"),
  16146. name: "Anthro",
  16147. image: {
  16148. source: "./media/characters/embra/anthro.svg",
  16149. extra: 200 / 187,
  16150. bottom: 0.02
  16151. }
  16152. },
  16153. feral: {
  16154. height: math.unit(18 + 8 / 12, "feet"),
  16155. weight: math.unit(576, "lb"),
  16156. name: "Feral",
  16157. image: {
  16158. source: "./media/characters/embra/feral.svg",
  16159. extra: 152 / 137,
  16160. bottom: 0.037
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(9 + 2 / 12, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16174. {
  16175. anthro: {
  16176. height: math.unit(10 + 9 / 12, "feet"),
  16177. weight: math.unit(224, "lb"),
  16178. name: "Anthro",
  16179. image: {
  16180. source: "./media/characters/grottos/anthro.svg",
  16181. extra: 350 / 332,
  16182. bottom: 0.045
  16183. }
  16184. },
  16185. feral: {
  16186. height: math.unit(20 + 7 / 12, "feet"),
  16187. weight: math.unit(629, "lb"),
  16188. name: "Feral",
  16189. image: {
  16190. source: "./media/characters/grottos/feral.svg",
  16191. extra: 207 / 190,
  16192. bottom: 0.05
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(10 + 9 / 12, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16206. {
  16207. anthro: {
  16208. height: math.unit(9 + 6 / 12, "feet"),
  16209. weight: math.unit(298, "lb"),
  16210. name: "Anthro",
  16211. image: {
  16212. source: "./media/characters/frifna/anthro.svg",
  16213. extra: 282 / 269,
  16214. bottom: 0.015
  16215. }
  16216. },
  16217. feral: {
  16218. height: math.unit(16 + 2 / 12, "feet"),
  16219. weight: math.unit(624, "lb"),
  16220. name: "Feral",
  16221. image: {
  16222. source: "./media/characters/frifna/feral.svg"
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(9 + 6 / 12, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(6 + 2 / 12, "feet"),
  16239. weight: math.unit(168, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/elise/front.svg",
  16243. extra: 276 / 271
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(6 + 2 / 12, "feet"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(5 + 10 / 12, "feet"),
  16260. weight: math.unit(210, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/glade/front.svg",
  16264. extra: 258 / 247,
  16265. bottom: 0.008
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(5 + 10 / 12, "feet"),
  16273. default: true
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16279. {
  16280. front: {
  16281. height: math.unit(5 + 10 / 12, "feet"),
  16282. weight: math.unit(129, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/rina/front.svg",
  16286. extra: 266 / 255,
  16287. bottom: 0.005
  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: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6 + 1 / 12, "feet"),
  16304. weight: math.unit(192, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/veronica/front.svg",
  16308. extra: 319 / 309,
  16309. bottom: 0.005
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(6 + 1 / 12, "feet"),
  16317. default: true
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16323. {
  16324. front: {
  16325. height: math.unit(9 + 3 / 12, "feet"),
  16326. weight: math.unit(1100, "lb"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/braxton/front.svg",
  16330. extra: 1057 / 984,
  16331. bottom: 0.05
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(9 + 3 / 12, "feet")
  16339. },
  16340. {
  16341. name: "Giant",
  16342. height: math.unit(300, "feet"),
  16343. default: true
  16344. },
  16345. {
  16346. name: "Macro",
  16347. height: math.unit(700, "feet")
  16348. },
  16349. {
  16350. name: "Megamacro",
  16351. height: math.unit(6000, "feet")
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(6 + 7 / 12, "feet"),
  16360. weight: math.unit(150, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/blue-feyonics/front.svg",
  16364. extra: 1403 / 1306,
  16365. bottom: 0.047
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(6 + 7 / 12, "feet"),
  16373. default: true
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(1.8, "meters"),
  16382. weight: math.unit(60, "kg"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/maxwell/front.svg",
  16386. extra: 2060 / 1873
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Micro",
  16393. height: math.unit(1, "mm")
  16394. },
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(1.8, "meter"),
  16398. default: true
  16399. },
  16400. {
  16401. name: "Macro",
  16402. height: math.unit(30, "meters")
  16403. },
  16404. {
  16405. name: "Megamacro",
  16406. height: math.unit(10, "km")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(6, "feet"),
  16415. weight: math.unit(150, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/jack/front.svg",
  16419. extra: 1754 / 1640,
  16420. bottom: 0.01
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(80000, "feet"),
  16428. default: true
  16429. },
  16430. {
  16431. name: "Max size",
  16432. height: math.unit(10, "lightyears")
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16438. {
  16439. urban: {
  16440. height: math.unit(5, "feet"),
  16441. weight: math.unit(240, "lb"),
  16442. name: "Urban",
  16443. image: {
  16444. source: "./media/characters/cafat/urban.svg",
  16445. extra: 1223/1126,
  16446. bottom: 205/1428
  16447. }
  16448. },
  16449. summer: {
  16450. height: math.unit(5, "feet"),
  16451. weight: math.unit(240, "lb"),
  16452. name: "Summer",
  16453. image: {
  16454. source: "./media/characters/cafat/summer.svg",
  16455. extra: 1223/1126,
  16456. bottom: 205/1428
  16457. }
  16458. },
  16459. winter: {
  16460. height: math.unit(5, "feet"),
  16461. weight: math.unit(240, "lb"),
  16462. name: "Winter",
  16463. image: {
  16464. source: "./media/characters/cafat/winter.svg",
  16465. extra: 1223/1126,
  16466. bottom: 205/1428
  16467. }
  16468. },
  16469. lingerie: {
  16470. height: math.unit(5, "feet"),
  16471. weight: math.unit(240, "lb"),
  16472. name: "Lingerie",
  16473. image: {
  16474. source: "./media/characters/cafat/lingerie.svg",
  16475. extra: 1223/1126,
  16476. bottom: 205/1428
  16477. }
  16478. },
  16479. upright: {
  16480. height: math.unit(6.3, "feet"),
  16481. weight: math.unit(240, "lb"),
  16482. name: "Upright",
  16483. image: {
  16484. source: "./media/characters/cafat/upright.svg",
  16485. bottom: 0.01
  16486. }
  16487. },
  16488. uprightFull: {
  16489. height: math.unit(6.3, "feet"),
  16490. weight: math.unit(240, "lb"),
  16491. name: "Upright (Full)",
  16492. image: {
  16493. source: "./media/characters/cafat/upright-full.svg",
  16494. bottom: 0.01
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Small",
  16501. height: math.unit(5, "feet"),
  16502. default: true
  16503. },
  16504. {
  16505. name: "Large",
  16506. height: math.unit(13, "feet")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(6, "feet"),
  16515. weight: math.unit(150, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/verin-raharra/front.svg",
  16519. extra: 5019 / 4835,
  16520. bottom: 0.023
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(7 + 5 / 12, "feet"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Upsized",
  16532. height: math.unit(20, "feet")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(7, "feet"),
  16541. weight: math.unit(230, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/nakata/front.svg",
  16545. extra: 1.005,
  16546. bottom: 0.01
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(7, "feet"),
  16554. default: true
  16555. },
  16556. {
  16557. name: "Big",
  16558. height: math.unit(14, "feet")
  16559. },
  16560. {
  16561. name: "Macro",
  16562. height: math.unit(400, "feet")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(4.91, "feet"),
  16571. weight: math.unit(100, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/lily/front.svg",
  16575. extra: 1585 / 1415,
  16576. bottom: 0.02
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(4.91, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16590. {
  16591. laying: {
  16592. height: math.unit(4 + 4 / 12, "feet"),
  16593. weight: math.unit(600, "lb"),
  16594. name: "Laying",
  16595. image: {
  16596. source: "./media/characters/sheila/laying.svg",
  16597. extra: 1333 / 1265,
  16598. bottom: 0.16
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(4 + 4 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6, "feet"),
  16615. weight: math.unit(190, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/sax/front.svg",
  16619. extra: 1187 / 973,
  16620. bottom: 0.042
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Micro",
  16627. height: math.unit(4, "inches"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(150, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/pandora/front.svg",
  16641. extra: 2720 / 2556,
  16642. bottom: 0.015
  16643. }
  16644. },
  16645. back: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Back",
  16649. image: {
  16650. source: "./media/characters/pandora/back.svg",
  16651. extra: 2720 / 2556,
  16652. bottom: 0.01
  16653. }
  16654. },
  16655. beans: {
  16656. height: math.unit(6 / 8, "feet"),
  16657. name: "Beans",
  16658. image: {
  16659. source: "./media/characters/pandora/beans.svg"
  16660. }
  16661. },
  16662. collar: {
  16663. height: math.unit(0.31, "feet"),
  16664. name: "Collar",
  16665. image: {
  16666. source: "./media/characters/pandora/collar.svg"
  16667. }
  16668. },
  16669. skirt: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(150, "lb"),
  16672. name: "Skirt",
  16673. image: {
  16674. source: "./media/characters/pandora/skirt.svg",
  16675. extra: 1622 / 1525,
  16676. bottom: 0.015
  16677. }
  16678. },
  16679. hoodie: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Hoodie",
  16683. image: {
  16684. source: "./media/characters/pandora/hoodie.svg",
  16685. extra: 1622 / 1525,
  16686. bottom: 0.015
  16687. }
  16688. },
  16689. casual: {
  16690. height: math.unit(6, "feet"),
  16691. weight: math.unit(150, "lb"),
  16692. name: "Casual",
  16693. image: {
  16694. source: "./media/characters/pandora/casual.svg",
  16695. extra: 1622 / 1525,
  16696. bottom: 0.015
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(6, "feet")
  16704. },
  16705. {
  16706. name: "Big Steppy",
  16707. height: math.unit(1, "km"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Galactic Steppy",
  16712. height: math.unit(2, "gigameters")
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16718. {
  16719. side: {
  16720. height: math.unit(10, "feet"),
  16721. weight: math.unit(800, "kg"),
  16722. name: "Side",
  16723. image: {
  16724. source: "./media/characters/venio-darcony/side.svg",
  16725. extra: 1373 / 1003,
  16726. bottom: 0.037
  16727. }
  16728. },
  16729. front: {
  16730. height: math.unit(19, "feet"),
  16731. weight: math.unit(800, "kg"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/venio-darcony/front.svg"
  16735. }
  16736. },
  16737. back: {
  16738. height: math.unit(19, "feet"),
  16739. weight: math.unit(800, "kg"),
  16740. name: "Back",
  16741. image: {
  16742. source: "./media/characters/venio-darcony/back.svg"
  16743. }
  16744. },
  16745. sideNsfw: {
  16746. height: math.unit(10, "feet"),
  16747. weight: math.unit(800, "kg"),
  16748. name: "Side (NSFW)",
  16749. image: {
  16750. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16751. extra: 1373 / 1003,
  16752. bottom: 0.037
  16753. }
  16754. },
  16755. frontNsfw: {
  16756. height: math.unit(19, "feet"),
  16757. weight: math.unit(800, "kg"),
  16758. name: "Front (NSFW)",
  16759. image: {
  16760. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16761. }
  16762. },
  16763. backNsfw: {
  16764. height: math.unit(19, "feet"),
  16765. weight: math.unit(800, "kg"),
  16766. name: "Back (NSFW)",
  16767. image: {
  16768. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16769. }
  16770. },
  16771. sideArmored: {
  16772. height: math.unit(10, "feet"),
  16773. weight: math.unit(800, "kg"),
  16774. name: "Side (Armored)",
  16775. image: {
  16776. source: "./media/characters/venio-darcony/side-armored.svg",
  16777. extra: 1373 / 1003,
  16778. bottom: 0.037
  16779. }
  16780. },
  16781. frontArmored: {
  16782. height: math.unit(19, "feet"),
  16783. weight: math.unit(900, "kg"),
  16784. name: "Front (Armored)",
  16785. image: {
  16786. source: "./media/characters/venio-darcony/front-armored.svg"
  16787. }
  16788. },
  16789. backArmored: {
  16790. height: math.unit(19, "feet"),
  16791. weight: math.unit(900, "kg"),
  16792. name: "Back (Armored)",
  16793. image: {
  16794. source: "./media/characters/venio-darcony/back-armored.svg"
  16795. }
  16796. },
  16797. sword: {
  16798. height: math.unit(10, "feet"),
  16799. weight: math.unit(50, "lb"),
  16800. name: "Sword",
  16801. image: {
  16802. source: "./media/characters/venio-darcony/sword.svg"
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(10, "feet")
  16810. },
  16811. {
  16812. name: "Macro",
  16813. height: math.unit(130, "feet"),
  16814. default: true
  16815. },
  16816. {
  16817. name: "Macro+",
  16818. height: math.unit(240, "feet")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(150, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/veski/front.svg",
  16831. extra: 1299 / 1225,
  16832. bottom: 0.04
  16833. }
  16834. },
  16835. back: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Back",
  16839. image: {
  16840. source: "./media/characters/veski/back.svg",
  16841. extra: 1299 / 1225,
  16842. bottom: 0.008
  16843. }
  16844. },
  16845. maw: {
  16846. height: math.unit(1.5 * 1.21, "feet"),
  16847. name: "Maw",
  16848. image: {
  16849. source: "./media/characters/veski/maw.svg"
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Macro",
  16856. height: math.unit(2, "km"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(5 + 7 / 12, "feet"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/isabelle/front.svg",
  16869. extra: 2130 / 1976,
  16870. bottom: 0.05
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Supermicro",
  16877. height: math.unit(10, "micrometers")
  16878. },
  16879. {
  16880. name: "Micro",
  16881. height: math.unit(1, "inch")
  16882. },
  16883. {
  16884. name: "Tiny",
  16885. height: math.unit(5, "inches")
  16886. },
  16887. {
  16888. name: "Standard",
  16889. height: math.unit(5 + 7 / 12, "inches")
  16890. },
  16891. {
  16892. name: "Macro",
  16893. height: math.unit(80, "meters"),
  16894. default: true
  16895. },
  16896. {
  16897. name: "Megamacro",
  16898. height: math.unit(250, "meters")
  16899. },
  16900. {
  16901. name: "Gigamacro",
  16902. height: math.unit(5, "km")
  16903. },
  16904. {
  16905. name: "Cosmic",
  16906. height: math.unit(2.5e6, "miles")
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(6, "feet"),
  16915. weight: math.unit(150, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/hanzo/front.svg",
  16919. extra: 374 / 344,
  16920. bottom: 0.02
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(8, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(7, "feet"),
  16937. weight: math.unit(130, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/anna/front.svg",
  16941. extra: 169 / 145,
  16942. bottom: 0.06
  16943. }
  16944. },
  16945. full: {
  16946. height: math.unit(4.96, "feet"),
  16947. weight: math.unit(220, "lb"),
  16948. name: "Full",
  16949. image: {
  16950. source: "./media/characters/anna/full.svg",
  16951. extra: 138 / 114,
  16952. bottom: 0.15
  16953. }
  16954. },
  16955. tongue: {
  16956. height: math.unit(2.53, "feet"),
  16957. name: "Tongue",
  16958. image: {
  16959. source: "./media/characters/anna/tongue.svg"
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(7, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(7, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/ian-corvid/front.svg",
  16980. extra: 150 / 142,
  16981. bottom: 0.02
  16982. }
  16983. },
  16984. back: {
  16985. height: math.unit(7, "feet"),
  16986. weight: math.unit(150, "lb"),
  16987. name: "Back",
  16988. image: {
  16989. source: "./media/characters/ian-corvid/back.svg",
  16990. extra: 150 / 143,
  16991. bottom: 0.01
  16992. }
  16993. },
  16994. stomping: {
  16995. height: math.unit(7, "feet"),
  16996. weight: math.unit(150, "lb"),
  16997. name: "Stomping",
  16998. image: {
  16999. source: "./media/characters/ian-corvid/stomping.svg",
  17000. extra: 76 / 72
  17001. }
  17002. },
  17003. sitting: {
  17004. height: math.unit(7 / 1.8, "feet"),
  17005. weight: math.unit(150, "lb"),
  17006. name: "Sitting",
  17007. image: {
  17008. source: "./media/characters/ian-corvid/sitting.svg",
  17009. extra: 1400 / 1269,
  17010. bottom: 0.15
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Tiny Microw",
  17017. height: math.unit(1, "inch")
  17018. },
  17019. {
  17020. name: "Microw",
  17021. height: math.unit(6, "inches")
  17022. },
  17023. {
  17024. name: "Crow",
  17025. height: math.unit(7 + 1 / 12, "feet"),
  17026. default: true
  17027. },
  17028. {
  17029. name: "Macrow",
  17030. height: math.unit(176, "feet")
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(5 + 7 / 12, "feet"),
  17039. weight: math.unit(147, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/natalie-kellon/front.svg",
  17043. extra: 1214 / 1141,
  17044. bottom: 0.02
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Micro",
  17051. height: math.unit(1 / 16, "inch")
  17052. },
  17053. {
  17054. name: "Tiny",
  17055. height: math.unit(4, "inches")
  17056. },
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(5 + 7 / 12, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Amazon",
  17064. height: math.unit(12, "feet")
  17065. },
  17066. {
  17067. name: "Giantess",
  17068. height: math.unit(160, "meters")
  17069. },
  17070. {
  17071. name: "Titaness",
  17072. height: math.unit(800, "meters")
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/alluria/front.svg",
  17085. extra: 806 / 738,
  17086. bottom: 0.01
  17087. }
  17088. },
  17089. side: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Side",
  17093. image: {
  17094. source: "./media/characters/alluria/side.svg",
  17095. extra: 800 / 750,
  17096. }
  17097. },
  17098. back: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(150, "lb"),
  17101. name: "Back",
  17102. image: {
  17103. source: "./media/characters/alluria/back.svg",
  17104. extra: 806 / 738,
  17105. }
  17106. },
  17107. frontMaid: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Front (Maid)",
  17111. image: {
  17112. source: "./media/characters/alluria/front-maid.svg",
  17113. extra: 806 / 738,
  17114. bottom: 0.01
  17115. }
  17116. },
  17117. sideMaid: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(150, "lb"),
  17120. name: "Side (Maid)",
  17121. image: {
  17122. source: "./media/characters/alluria/side-maid.svg",
  17123. extra: 800 / 750,
  17124. bottom: 0.005
  17125. }
  17126. },
  17127. backMaid: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Back (Maid)",
  17131. image: {
  17132. source: "./media/characters/alluria/back-maid.svg",
  17133. extra: 806 / 738,
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Micro",
  17140. height: math.unit(6, "inches"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17147. {
  17148. front: {
  17149. height: math.unit(6, "feet"),
  17150. weight: math.unit(150, "lb"),
  17151. name: "Front",
  17152. image: {
  17153. source: "./media/characters/kyle/front.svg",
  17154. extra: 1069 / 962,
  17155. bottom: 77.228 / 1727.45
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(150, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(6, "feet"),
  17172. weight: math.unit(300, "lb"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/duncan/front.svg",
  17176. extra: 1650 / 1482,
  17177. bottom: 0.05
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(100, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(5 + 4 / 12, "feet"),
  17194. weight: math.unit(220, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/memory/front.svg",
  17198. extra: 3641 / 3545,
  17199. bottom: 0.03
  17200. }
  17201. },
  17202. back: {
  17203. height: math.unit(5 + 4 / 12, "feet"),
  17204. weight: math.unit(220, "lb"),
  17205. name: "Back",
  17206. image: {
  17207. source: "./media/characters/memory/back.svg",
  17208. extra: 3641 / 3545,
  17209. bottom: 0.025
  17210. }
  17211. },
  17212. frontSkirt: {
  17213. height: math.unit(5 + 4 / 12, "feet"),
  17214. weight: math.unit(220, "lb"),
  17215. name: "Front (Skirt)",
  17216. image: {
  17217. source: "./media/characters/memory/front-skirt.svg",
  17218. extra: 3641 / 3545,
  17219. bottom: 0.03
  17220. }
  17221. },
  17222. frontDress: {
  17223. height: math.unit(5 + 4 / 12, "feet"),
  17224. weight: math.unit(220, "lb"),
  17225. name: "Front (Dress)",
  17226. image: {
  17227. source: "./media/characters/memory/front-dress.svg",
  17228. extra: 3641 / 3545,
  17229. bottom: 0.03
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Micro",
  17236. height: math.unit(6, "inches"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(5 + 4 / 12, "feet")
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(4 + 11 / 12, "feet"),
  17250. weight: math.unit(100, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/luno/front.svg",
  17254. extra: 1535 / 1487,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Micro",
  17262. height: math.unit(3, "inches")
  17263. },
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(4 + 11 / 12, "feet"),
  17267. default: true
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(300, "feet")
  17272. },
  17273. {
  17274. name: "Megamacro",
  17275. height: math.unit(700, "miles")
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6 + 2 / 12, "feet"),
  17284. weight: math.unit(170, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/jamesy/front.svg",
  17288. extra: 440 / 382,
  17289. bottom: 0.005
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Micro",
  17296. height: math.unit(3, "inches")
  17297. },
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. {
  17304. name: "Macro",
  17305. height: math.unit(300, "feet")
  17306. },
  17307. {
  17308. name: "Megamacro",
  17309. height: math.unit(700, "miles")
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(6, "feet"),
  17318. weight: math.unit(160, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/mark/front.svg",
  17322. extra: 3300 / 3100,
  17323. bottom: 136.42 / 3440.47
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Macro",
  17330. height: math.unit(120, "meters")
  17331. },
  17332. {
  17333. name: "Bigger Macro",
  17334. height: math.unit(350, "meters")
  17335. },
  17336. {
  17337. name: "Megamacro",
  17338. height: math.unit(8, "km"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Continental",
  17343. height: math.unit(4550, "km")
  17344. },
  17345. {
  17346. name: "Planetary",
  17347. height: math.unit(65000, "km")
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(6, "feet"),
  17356. weight: math.unit(400, "lb"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/mac/front.svg",
  17360. extra: 1048 / 987.7,
  17361. bottom: 60 / 1107.6,
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Macro",
  17368. height: math.unit(500, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(5 + 2 / 12, "feet"),
  17378. weight: math.unit(190, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/bari/front.svg",
  17382. extra: 3156 / 2880,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. back: {
  17387. height: math.unit(5 + 2 / 12, "feet"),
  17388. weight: math.unit(190, "lb"),
  17389. name: "Back",
  17390. image: {
  17391. source: "./media/characters/bari/back.svg",
  17392. extra: 3260 / 2834,
  17393. bottom: 0.025
  17394. }
  17395. },
  17396. frontPlush: {
  17397. height: math.unit(5 + 2 / 12, "feet"),
  17398. weight: math.unit(190, "lb"),
  17399. name: "Front (Plush)",
  17400. image: {
  17401. source: "./media/characters/bari/front-plush.svg",
  17402. extra: 1112 / 1061,
  17403. bottom: 0.002
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Micro",
  17410. height: math.unit(3, "inches")
  17411. },
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(5 + 2 / 12, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Macro",
  17419. height: math.unit(20, "feet")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(6 + 1 / 12, "feet"),
  17428. weight: math.unit(275, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/hunter-misha-raven/front.svg"
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Mortal",
  17438. height: math.unit(6 + 1 / 12, "feet")
  17439. },
  17440. {
  17441. name: "Divine",
  17442. height: math.unit(1.12134e34, "parsecs"),
  17443. default: true
  17444. },
  17445. ]
  17446. ))
  17447. characterMakers.push(() => makeCharacter(
  17448. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17449. {
  17450. front: {
  17451. height: math.unit(6 + 3 / 12, "feet"),
  17452. weight: math.unit(220, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/max-calore/front.svg",
  17456. extra: 1700 / 1648,
  17457. bottom: 0.01
  17458. }
  17459. },
  17460. back: {
  17461. height: math.unit(6 + 3 / 12, "feet"),
  17462. weight: math.unit(220, "lb"),
  17463. name: "Back",
  17464. image: {
  17465. source: "./media/characters/max-calore/back.svg",
  17466. extra: 1700 / 1648,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 3 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(2 + 8 / 12, "feet"),
  17484. weight: math.unit(99, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/aspen/side.svg",
  17488. extra: 152 / 138,
  17489. bottom: 0.032
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(2 + 8 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(3 + 2 / 12, "feet"),
  17506. weight: math.unit(224, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/sheila-feral-wolf/side.svg",
  17510. extra: 179 / 166,
  17511. bottom: 0.03
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(3 + 2 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17525. {
  17526. side: {
  17527. height: math.unit(1 + 9 / 12, "feet"),
  17528. weight: math.unit(38, "lb"),
  17529. name: "Side",
  17530. image: {
  17531. source: "./media/characters/michelle/side.svg",
  17532. extra: 147 / 136.7,
  17533. bottom: 0.03
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(1 + 9 / 12, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(1.54, "feet"),
  17550. weight: math.unit(50, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/nino/front.svg"
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(1.54, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(1.49, "feet"),
  17570. weight: math.unit(45, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/viola/front.svg"
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(1.49, "feet"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(6 + 5 / 12, "feet"),
  17590. weight: math.unit(580, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/atlas/front.svg",
  17594. extra: 298.5 / 290,
  17595. bottom: 0.015
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(6 + 5 / 12, "feet"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17609. {
  17610. side: {
  17611. height: math.unit(15.6, "inches"),
  17612. weight: math.unit(10, "lb"),
  17613. name: "Side",
  17614. image: {
  17615. source: "./media/characters/davy/side.svg",
  17616. extra: 200 / 170,
  17617. bottom: 0.01
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(15.6, "inches"),
  17625. default: true
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17631. {
  17632. side: {
  17633. height: math.unit(4 + 8 / 12, "feet"),
  17634. weight: math.unit(166, "lb"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/fiona/side.svg",
  17638. extra: 232 / 220,
  17639. bottom: 0.03
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(4 + 8 / 12, "feet"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17653. {
  17654. front: {
  17655. height: math.unit(26, "inches"),
  17656. weight: math.unit(35, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/lyla/front.svg",
  17660. bottom: 0.1
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(3, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17674. {
  17675. side: {
  17676. height: math.unit(1.8, "feet"),
  17677. weight: math.unit(44, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/perseus/side.svg",
  17681. bottom: 0.21
  17682. }
  17683. },
  17684. },
  17685. [
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(1.8, "feet"),
  17689. default: true
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17695. {
  17696. side: {
  17697. height: math.unit(4 + 2 / 12, "feet"),
  17698. weight: math.unit(20, "lb"),
  17699. name: "Side",
  17700. image: {
  17701. source: "./media/characters/remus/side.svg"
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(4 + 2 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(4 + 11 / 12, "feet"),
  17718. weight: math.unit(114, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/raf/front.svg",
  17722. extra: 1504/1339,
  17723. bottom: 26/1530
  17724. }
  17725. },
  17726. side: {
  17727. height: math.unit(4 + 11 / 12, "feet"),
  17728. weight: math.unit(114, "lb"),
  17729. name: "Side",
  17730. image: {
  17731. source: "./media/characters/raf/side.svg",
  17732. extra: 1466/1316,
  17733. bottom: 29/1495
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Micro",
  17740. height: math.unit(2, "inches")
  17741. },
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(4 + 11 / 12, "feet"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(70, "feet")
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(1.5, "meters"),
  17758. weight: math.unit(68, "kg"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/liam-einarr/front.svg",
  17762. extra: 2822 / 2666
  17763. }
  17764. },
  17765. back: {
  17766. height: math.unit(1.5, "meters"),
  17767. weight: math.unit(68, "kg"),
  17768. name: "Back",
  17769. image: {
  17770. source: "./media/characters/liam-einarr/back.svg",
  17771. extra: 2822 / 2666,
  17772. bottom: 0.015
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(1.5, "meters"),
  17780. default: true
  17781. },
  17782. {
  17783. name: "Macro",
  17784. height: math.unit(150, "meters")
  17785. },
  17786. {
  17787. name: "Megamacro",
  17788. height: math.unit(35, "km")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(6, "feet"),
  17797. weight: math.unit(75, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/linda/front.svg",
  17801. extra: 930 / 874,
  17802. bottom: 0.004
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(6, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(6 + 8 / 12, "feet"),
  17819. weight: math.unit(220, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/caylex/front.svg",
  17823. extra: 821 / 772,
  17824. bottom: 0.07
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(6 + 8 / 12, "feet"),
  17829. weight: math.unit(220, "lb"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/caylex/back.svg",
  17833. extra: 821 / 772,
  17834. bottom: 0.022
  17835. }
  17836. },
  17837. hand: {
  17838. height: math.unit(1.25, "feet"),
  17839. name: "Hand",
  17840. image: {
  17841. source: "./media/characters/caylex/hand.svg"
  17842. }
  17843. },
  17844. foot: {
  17845. height: math.unit(1.6, "feet"),
  17846. name: "Foot",
  17847. image: {
  17848. source: "./media/characters/caylex/foot.svg"
  17849. }
  17850. },
  17851. armored: {
  17852. height: math.unit(6 + 8 / 12, "feet"),
  17853. weight: math.unit(250, "lb"),
  17854. name: "Armored",
  17855. image: {
  17856. source: "./media/characters/caylex/armored.svg",
  17857. extra: 1420 / 1310,
  17858. bottom: 0.045
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Normal",
  17865. height: math.unit(6 + 8 / 12, "feet"),
  17866. default: true
  17867. },
  17868. {
  17869. name: "Normal+",
  17870. height: math.unit(12, "feet")
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(7 + 6 / 12, "feet"),
  17879. weight: math.unit(288, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/alana/front.svg",
  17883. extra: 679 / 653,
  17884. bottom: 22.5 / 701
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(7 + 6 / 12, "feet")
  17892. },
  17893. {
  17894. name: "Large",
  17895. height: math.unit(50, "feet")
  17896. },
  17897. {
  17898. name: "Macro",
  17899. height: math.unit(100, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Macro+",
  17904. height: math.unit(200, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(6 + 1 / 12, "feet"),
  17913. weight: math.unit(210, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/hasani/front.svg",
  17917. extra: 244 / 232,
  17918. bottom: 0.01
  17919. }
  17920. },
  17921. back: {
  17922. height: math.unit(6 + 1 / 12, "feet"),
  17923. weight: math.unit(210, "lb"),
  17924. name: "Back",
  17925. image: {
  17926. source: "./media/characters/hasani/back.svg",
  17927. extra: 244 / 232,
  17928. bottom: 0.01
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(6 + 1 / 12, "feet")
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(175, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(1.82, "meters"),
  17949. weight: math.unit(140, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/nita/front.svg",
  17953. extra: 2473 / 2363,
  17954. bottom: 0.01
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(1.82, "m")
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(300, "m")
  17966. },
  17967. {
  17968. name: "Mistake Canon",
  17969. height: math.unit(0.5, "miles"),
  17970. default: true
  17971. },
  17972. {
  17973. name: "Big Mistake",
  17974. height: math.unit(13, "miles")
  17975. },
  17976. {
  17977. name: "Playing God",
  17978. height: math.unit(2450, "miles")
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(4, "feet"),
  17987. weight: math.unit(120, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/shiriko/front.svg",
  17991. extra: 970/934,
  17992. bottom: 5/975
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(4, "feet"),
  18000. default: true
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(6, "feet"),
  18009. name: "front",
  18010. image: {
  18011. source: "./media/characters/deja/front.svg",
  18012. extra: 926 / 840,
  18013. bottom: 0.07
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Planck Length",
  18020. height: math.unit(1.6e-35, "meters")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(30.48, "meters"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Universal",
  18029. height: math.unit(8.8e26, "meters")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18035. {
  18036. side: {
  18037. height: math.unit(8, "feet"),
  18038. weight: math.unit(6300, "lb"),
  18039. name: "Side",
  18040. image: {
  18041. source: "./media/characters/anima/side.svg",
  18042. bottom: 0.035
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(8, "feet"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(8, "feet"),
  18059. weight: math.unit(350, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/bianca/front.svg",
  18063. extra: 234 / 225,
  18064. bottom: 0.03
  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: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/adinia/front.svg",
  18085. extra: 1845 / 1672,
  18086. bottom: 0.02
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/adinia/back.svg",
  18095. extra: 1845 / 1672,
  18096. bottom: 0.002
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(11 + 5 / 12, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(3, "meters"),
  18113. weight: math.unit(200, "kg"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/lykasa/front.svg",
  18117. extra: 1076 / 976,
  18118. bottom: 0.06
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(3, "meters")
  18126. },
  18127. {
  18128. name: "Kaiju",
  18129. height: math.unit(120, "meters"),
  18130. default: true
  18131. },
  18132. {
  18133. name: "Mega Kaiju",
  18134. height: math.unit(240, "km")
  18135. },
  18136. {
  18137. name: "Giga Kaiju",
  18138. height: math.unit(400, "megameters")
  18139. },
  18140. {
  18141. name: "Tera Kaiju",
  18142. height: math.unit(800, "gigameters")
  18143. },
  18144. {
  18145. name: "Kaiju Dragon Goddess",
  18146. height: math.unit(26, "zettaparsecs")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18152. {
  18153. side: {
  18154. height: math.unit(283 / 124 * 6, "feet"),
  18155. weight: math.unit(35000, "lb"),
  18156. name: "Side",
  18157. image: {
  18158. source: "./media/characters/malfaren/side.svg",
  18159. extra: 1310/529,
  18160. bottom: 24/1334
  18161. }
  18162. },
  18163. front: {
  18164. height: math.unit(22.36, "feet"),
  18165. weight: math.unit(35000, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/malfaren/front.svg",
  18169. extra: 1237/1115,
  18170. bottom: 32/1269
  18171. }
  18172. },
  18173. maw: {
  18174. height: math.unit(6.9, "feet"),
  18175. name: "Maw",
  18176. image: {
  18177. source: "./media/characters/malfaren/maw.svg"
  18178. }
  18179. },
  18180. dick: {
  18181. height: math.unit(6.19, "feet"),
  18182. name: "Dick",
  18183. image: {
  18184. source: "./media/characters/malfaren/dick.svg"
  18185. }
  18186. },
  18187. eye: {
  18188. height: math.unit(0.69, "feet"),
  18189. name: "Eye",
  18190. image: {
  18191. source: "./media/characters/malfaren/eye.svg"
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Big",
  18198. height: math.unit(283 / 162 * 6, "feet"),
  18199. },
  18200. {
  18201. name: "Bigger",
  18202. height: math.unit(283 / 124 * 6, "feet")
  18203. },
  18204. {
  18205. name: "Massive",
  18206. height: math.unit(283 / 92 * 6, "feet"),
  18207. default: true
  18208. },
  18209. {
  18210. name: "👀💦",
  18211. height: math.unit(283 / 73 * 6, "feet"),
  18212. },
  18213. ]
  18214. ))
  18215. characterMakers.push(() => makeCharacter(
  18216. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18217. {
  18218. front: {
  18219. height: math.unit(1.7, "m"),
  18220. weight: math.unit(70, "kg"),
  18221. name: "Front",
  18222. image: {
  18223. source: "./media/characters/kernel/front.svg",
  18224. extra: 222 / 210,
  18225. bottom: 0.007
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Nano",
  18232. height: math.unit(17, "micrometers")
  18233. },
  18234. {
  18235. name: "Micro",
  18236. height: math.unit(1.7, "mm")
  18237. },
  18238. {
  18239. name: "Small",
  18240. height: math.unit(1.7, "cm")
  18241. },
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(1.7, "m"),
  18245. default: true
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(1.75, "meters"),
  18254. weight: math.unit(65, "kg"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/jayne-folest/front.svg",
  18258. extra: 2115 / 2007,
  18259. bottom: 0.02
  18260. }
  18261. },
  18262. back: {
  18263. height: math.unit(1.75, "meters"),
  18264. weight: math.unit(65, "kg"),
  18265. name: "Back",
  18266. image: {
  18267. source: "./media/characters/jayne-folest/back.svg",
  18268. extra: 2115 / 2007,
  18269. bottom: 0.005
  18270. }
  18271. },
  18272. frontClothed: {
  18273. height: math.unit(1.75, "meters"),
  18274. weight: math.unit(65, "kg"),
  18275. name: "Front (Clothed)",
  18276. image: {
  18277. source: "./media/characters/jayne-folest/front-clothed.svg",
  18278. extra: 2115 / 2007,
  18279. bottom: 0.035
  18280. }
  18281. },
  18282. hand: {
  18283. height: math.unit(1 / 1.260, "feet"),
  18284. name: "Hand",
  18285. image: {
  18286. source: "./media/characters/jayne-folest/hand.svg"
  18287. }
  18288. },
  18289. foot: {
  18290. height: math.unit(1 / 0.918, "feet"),
  18291. name: "Foot",
  18292. image: {
  18293. source: "./media/characters/jayne-folest/foot.svg"
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Micro",
  18300. height: math.unit(4, "cm")
  18301. },
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(1.75, "meters")
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(47.5, "meters"),
  18309. default: true
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18315. {
  18316. front: {
  18317. height: math.unit(180, "cm"),
  18318. weight: math.unit(70, "kg"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/algier/front.svg",
  18322. extra: 596 / 572,
  18323. bottom: 0.04
  18324. }
  18325. },
  18326. back: {
  18327. height: math.unit(180, "cm"),
  18328. weight: math.unit(70, "kg"),
  18329. name: "Back",
  18330. image: {
  18331. source: "./media/characters/algier/back.svg",
  18332. extra: 596 / 572,
  18333. bottom: 0.025
  18334. }
  18335. },
  18336. frontdressed: {
  18337. height: math.unit(180, "cm"),
  18338. weight: math.unit(150, "kg"),
  18339. name: "Front-dressed",
  18340. image: {
  18341. source: "./media/characters/algier/front-dressed.svg",
  18342. extra: 596 / 572,
  18343. bottom: 0.038
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Micro",
  18350. height: math.unit(5, "cm")
  18351. },
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(180, "cm"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Macro",
  18359. height: math.unit(64, "m")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18365. {
  18366. upright: {
  18367. height: math.unit(7, "feet"),
  18368. weight: math.unit(300, "lb"),
  18369. name: "Upright",
  18370. image: {
  18371. source: "./media/characters/pretzel/upright.svg",
  18372. extra: 534 / 522,
  18373. bottom: 0.065
  18374. }
  18375. },
  18376. sprawling: {
  18377. height: math.unit(3.75, "feet"),
  18378. weight: math.unit(300, "lb"),
  18379. name: "Sprawling",
  18380. image: {
  18381. source: "./media/characters/pretzel/sprawling.svg",
  18382. extra: 314 / 281,
  18383. bottom: 0.1
  18384. }
  18385. },
  18386. tongue: {
  18387. height: math.unit(2, "feet"),
  18388. name: "Tongue",
  18389. image: {
  18390. source: "./media/characters/pretzel/tongue.svg"
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(7, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Oversized",
  18402. height: math.unit(15, "feet")
  18403. },
  18404. {
  18405. name: "Huge",
  18406. height: math.unit(30, "feet")
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(250, "feet")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18416. {
  18417. sideFront: {
  18418. height: math.unit(5 + 2 / 12, "feet"),
  18419. weight: math.unit(120, "lb"),
  18420. name: "Front Side",
  18421. image: {
  18422. source: "./media/characters/roxi/side-front.svg",
  18423. extra: 2924 / 2717,
  18424. bottom: 0.08
  18425. }
  18426. },
  18427. sideBack: {
  18428. height: math.unit(5 + 2 / 12, "feet"),
  18429. weight: math.unit(120, "lb"),
  18430. name: "Back Side",
  18431. image: {
  18432. source: "./media/characters/roxi/side-back.svg",
  18433. extra: 2904 / 2693,
  18434. bottom: 0.06
  18435. }
  18436. },
  18437. front: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(120, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/roxi/front.svg",
  18443. extra: 2028 / 1907,
  18444. bottom: 0.01
  18445. }
  18446. },
  18447. frontAlt: {
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. weight: math.unit(120, "lb"),
  18450. name: "Front (Alt)",
  18451. image: {
  18452. source: "./media/characters/roxi/front-alt.svg",
  18453. extra: 1828 / 1798,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. sitting: {
  18458. height: math.unit(2.8, "feet"),
  18459. weight: math.unit(120, "lb"),
  18460. name: "Sitting",
  18461. image: {
  18462. source: "./media/characters/roxi/sitting.svg",
  18463. extra: 2660 / 2462,
  18464. bottom: 0.1
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Normal",
  18471. height: math.unit(5 + 2 / 12, "feet"),
  18472. default: true
  18473. },
  18474. ]
  18475. ))
  18476. characterMakers.push(() => makeCharacter(
  18477. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18478. {
  18479. side: {
  18480. height: math.unit(55, "feet"),
  18481. weight: math.unit(153, "tons"),
  18482. name: "Side",
  18483. image: {
  18484. source: "./media/characters/shadow/side.svg",
  18485. extra: 701 / 628,
  18486. bottom: 0.02
  18487. }
  18488. },
  18489. flying: {
  18490. height: math.unit(145, "feet"),
  18491. weight: math.unit(153, "tons"),
  18492. name: "Flying",
  18493. image: {
  18494. source: "./media/characters/shadow/flying.svg"
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(55, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(200, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/marcie/front.svg",
  18515. extra: 960 / 876,
  18516. bottom: 58 / 1017.87
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(1, "mile"),
  18524. default: true
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18530. {
  18531. front: {
  18532. height: math.unit(7, "feet"),
  18533. weight: math.unit(200, "lb"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/kachina/front.svg",
  18537. extra: 1290.68 / 1119,
  18538. bottom: 36.5 / 1327.18
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(7, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18552. {
  18553. looking: {
  18554. height: math.unit(2, "meters"),
  18555. weight: math.unit(300, "kg"),
  18556. name: "Looking",
  18557. image: {
  18558. source: "./media/characters/kash/looking.svg",
  18559. extra: 474 / 344,
  18560. bottom: 0.03
  18561. }
  18562. },
  18563. side: {
  18564. height: math.unit(2, "meters"),
  18565. weight: math.unit(300, "kg"),
  18566. name: "Side",
  18567. image: {
  18568. source: "./media/characters/kash/side.svg",
  18569. extra: 302 / 251,
  18570. bottom: 0.03
  18571. }
  18572. },
  18573. front: {
  18574. height: math.unit(2, "meters"),
  18575. weight: math.unit(300, "kg"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/kash/front.svg",
  18579. extra: 495 / 360,
  18580. bottom: 0.015
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(2, "meters"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Big",
  18592. height: math.unit(3, "meters")
  18593. },
  18594. {
  18595. name: "Large",
  18596. height: math.unit(5, "meters")
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18602. {
  18603. feeding: {
  18604. height: math.unit(6.7, "feet"),
  18605. weight: math.unit(350, "lb"),
  18606. name: "Feeding",
  18607. image: {
  18608. source: "./media/characters/lalim/feeding.svg",
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(6.7, "feet"),
  18616. default: true
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(9.5, "feet"),
  18625. weight: math.unit(600, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/de'vout/front.svg",
  18629. extra: 1443 / 1328,
  18630. bottom: 0.025
  18631. }
  18632. },
  18633. back: {
  18634. height: math.unit(9.5, "feet"),
  18635. weight: math.unit(600, "lb"),
  18636. name: "Back",
  18637. image: {
  18638. source: "./media/characters/de'vout/back.svg",
  18639. extra: 1443 / 1328
  18640. }
  18641. },
  18642. frontDressed: {
  18643. height: math.unit(9.5, "feet"),
  18644. weight: math.unit(600, "lb"),
  18645. name: "Front (Dressed",
  18646. image: {
  18647. source: "./media/characters/de'vout/front-dressed.svg",
  18648. extra: 1443 / 1328,
  18649. bottom: 0.025
  18650. }
  18651. },
  18652. backDressed: {
  18653. height: math.unit(9.5, "feet"),
  18654. weight: math.unit(600, "lb"),
  18655. name: "Back (Dressed",
  18656. image: {
  18657. source: "./media/characters/de'vout/back-dressed.svg",
  18658. extra: 1443 / 1328
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(9.5, "feet"),
  18666. default: true
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(8, "feet"),
  18675. weight: math.unit(225, "lb"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/talana/front.svg",
  18679. extra: 1410 / 1300,
  18680. bottom: 0.015
  18681. }
  18682. },
  18683. frontDressed: {
  18684. height: math.unit(8, "feet"),
  18685. weight: math.unit(225, "lb"),
  18686. name: "Front (Dressed",
  18687. image: {
  18688. source: "./media/characters/talana/front-dressed.svg",
  18689. extra: 1410 / 1300,
  18690. bottom: 0.015
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(8, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18704. {
  18705. side: {
  18706. height: math.unit(7.2, "feet"),
  18707. weight: math.unit(150, "lb"),
  18708. name: "Side",
  18709. image: {
  18710. source: "./media/characters/xeauvok/side.svg",
  18711. extra: 1975 / 1523,
  18712. bottom: 0.07
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(7.2, "feet"),
  18720. default: true
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18726. {
  18727. side: {
  18728. height: math.unit(10, "feet"),
  18729. weight: math.unit(900, "kg"),
  18730. name: "Side",
  18731. image: {
  18732. source: "./media/characters/zara/side.svg",
  18733. extra: 504 / 498
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(10, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18747. {
  18748. side: {
  18749. height: math.unit(6, "feet"),
  18750. weight: math.unit(150, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/richard-dragon/side.svg",
  18754. extra: 845 / 340,
  18755. bottom: 0.017
  18756. }
  18757. },
  18758. maw: {
  18759. height: math.unit(2.97, "feet"),
  18760. name: "Maw",
  18761. image: {
  18762. source: "./media/characters/richard-dragon/maw.svg"
  18763. }
  18764. },
  18765. },
  18766. [
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(4, "feet"),
  18774. weight: math.unit(100, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/richard-smeargle/front.svg",
  18778. extra: 2952 / 2820,
  18779. bottom: 0.028
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(4, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Dynamax",
  18791. height: math.unit(20, "meters")
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(6, "feet"),
  18800. weight: math.unit(110, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/klay/front.svg",
  18804. extra: 962 / 883,
  18805. bottom: 0.04
  18806. }
  18807. },
  18808. back: {
  18809. height: math.unit(6, "feet"),
  18810. weight: math.unit(110, "lb"),
  18811. name: "Back",
  18812. image: {
  18813. source: "./media/characters/klay/back.svg",
  18814. extra: 962 / 883
  18815. }
  18816. },
  18817. beans: {
  18818. height: math.unit(1.15, "feet"),
  18819. name: "Beans",
  18820. image: {
  18821. source: "./media/characters/klay/beans.svg"
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Micro",
  18828. height: math.unit(6, "inches")
  18829. },
  18830. {
  18831. name: "Mini",
  18832. height: math.unit(3, "feet")
  18833. },
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(6, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Big",
  18841. height: math.unit(25, "feet")
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(100, "feet")
  18846. },
  18847. {
  18848. name: "Megamacro",
  18849. height: math.unit(400, "feet")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(6, "feet"),
  18858. weight: math.unit(160, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/marcus/front.svg",
  18862. extra: 734 / 676,
  18863. bottom: 0.03
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Little",
  18870. height: math.unit(6, "feet")
  18871. },
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(110, "feet"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(250, "feet")
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(1000, "feet")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(7, "feet"),
  18892. weight: math.unit(275, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/claude-delroute/front.svg",
  18896. extra: 902/827,
  18897. bottom: 26/928
  18898. }
  18899. },
  18900. side: {
  18901. height: math.unit(7, "feet"),
  18902. weight: math.unit(275, "lb"),
  18903. name: "Side",
  18904. image: {
  18905. source: "./media/characters/claude-delroute/side.svg",
  18906. extra: 908/853,
  18907. bottom: 16/924
  18908. }
  18909. },
  18910. back: {
  18911. height: math.unit(7, "feet"),
  18912. weight: math.unit(275, "lb"),
  18913. name: "Back",
  18914. image: {
  18915. source: "./media/characters/claude-delroute/back.svg",
  18916. extra: 911/829,
  18917. bottom: 18/929
  18918. }
  18919. },
  18920. maw: {
  18921. height: math.unit(0.6407, "meters"),
  18922. name: "Maw",
  18923. image: {
  18924. source: "./media/characters/claude-delroute/maw.svg"
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(7, "feet"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Lorge",
  18936. height: math.unit(20, "feet")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(8 + 4 / 12, "feet"),
  18945. weight: math.unit(600, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/dragonien/front.svg",
  18949. extra: 100 / 94,
  18950. bottom: 3.3 / 103.3445
  18951. }
  18952. },
  18953. back: {
  18954. height: math.unit(8 + 4 / 12, "feet"),
  18955. weight: math.unit(600, "lb"),
  18956. name: "Back",
  18957. image: {
  18958. source: "./media/characters/dragonien/back.svg",
  18959. extra: 776 / 746,
  18960. bottom: 6.4 / 782.0616
  18961. }
  18962. },
  18963. foot: {
  18964. height: math.unit(1.54, "feet"),
  18965. name: "Foot",
  18966. image: {
  18967. source: "./media/characters/dragonien/foot.svg",
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(8 + 4 / 12, "feet"),
  18975. default: true
  18976. },
  18977. {
  18978. name: "Macro",
  18979. height: math.unit(200, "feet")
  18980. },
  18981. {
  18982. name: "Megamacro",
  18983. height: math.unit(1, "mile")
  18984. },
  18985. {
  18986. name: "Gigamacro",
  18987. height: math.unit(1000, "miles")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18993. {
  18994. front: {
  18995. height: math.unit(5 + 2 / 12, "feet"),
  18996. weight: math.unit(110, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/desta/front.svg",
  19000. extra: 767 / 726,
  19001. bottom: 11.7 / 779
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(110, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/desta/back.svg",
  19010. extra: 777 / 728,
  19011. bottom: 6 / 784
  19012. }
  19013. },
  19014. frontAlt: {
  19015. height: math.unit(5 + 2 / 12, "feet"),
  19016. weight: math.unit(110, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/desta/front-alt.svg",
  19020. extra: 1482 / 1417
  19021. }
  19022. },
  19023. side: {
  19024. height: math.unit(5 + 2 / 12, "feet"),
  19025. weight: math.unit(110, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/desta/side.svg",
  19029. extra: 2579 / 2491,
  19030. bottom: 0.053
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Micro",
  19037. height: math.unit(6, "inches")
  19038. },
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(5 + 2 / 12, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(62, "feet")
  19047. },
  19048. {
  19049. name: "Megamacro",
  19050. height: math.unit(1800, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(10, "feet"),
  19059. weight: math.unit(700, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/storm-alystar/front.svg",
  19063. extra: 2112 / 1898,
  19064. bottom: 0.034
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Micro",
  19071. height: math.unit(3.5, "inches")
  19072. },
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(10, "feet"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Macro",
  19080. height: math.unit(400, "feet")
  19081. },
  19082. {
  19083. name: "Deific",
  19084. height: math.unit(60, "miles")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(2.35, "meters"),
  19093. weight: math.unit(119, "kg"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/ilia/front.svg",
  19097. extra: 1285 / 1255,
  19098. bottom: 0.06
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(2.35, "meters")
  19106. },
  19107. {
  19108. name: "Macro",
  19109. height: math.unit(140, "meters"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Megamacro",
  19114. height: math.unit(100, "miles")
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(6 + 5 / 12, "feet"),
  19123. weight: math.unit(190, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/kingdead/front.svg",
  19127. extra: 1228 / 1177
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Micro",
  19134. height: math.unit(7, "inches")
  19135. },
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(6 + 5 / 12, "feet")
  19139. },
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(150, "feet"),
  19143. default: true
  19144. },
  19145. {
  19146. name: "Megamacro",
  19147. height: math.unit(200, "miles")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(8, "feet"),
  19156. weight: math.unit(600, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/kyrehx/front.svg",
  19160. extra: 1195 / 1095,
  19161. bottom: 0.034
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(2, "inches")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(8, "feet"),
  19173. default: true
  19174. },
  19175. {
  19176. name: "Macro",
  19177. height: math.unit(255, "feet")
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19183. {
  19184. front: {
  19185. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19186. weight: math.unit(184, "lb"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/xang/front.svg",
  19190. extra: 845 / 755
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19198. default: true
  19199. },
  19200. {
  19201. name: "Macro",
  19202. height: math.unit(0.935 * 146, "feet")
  19203. },
  19204. {
  19205. name: "Megamacro",
  19206. height: math.unit(0.935 * 3, "miles")
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19212. {
  19213. frontDressed: {
  19214. height: math.unit(5 + 7 / 12, "feet"),
  19215. weight: math.unit(140, "lb"),
  19216. name: "Front (Dressed)",
  19217. image: {
  19218. source: "./media/characters/doc-weardno/front-dressed.svg",
  19219. extra: 263 / 234
  19220. }
  19221. },
  19222. backDressed: {
  19223. height: math.unit(5 + 7 / 12, "feet"),
  19224. weight: math.unit(140, "lb"),
  19225. name: "Back (Dressed)",
  19226. image: {
  19227. source: "./media/characters/doc-weardno/back-dressed.svg",
  19228. extra: 266 / 238
  19229. }
  19230. },
  19231. front: {
  19232. height: math.unit(5 + 7 / 12, "feet"),
  19233. weight: math.unit(140, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/doc-weardno/front.svg",
  19237. extra: 254 / 233
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Micro",
  19244. height: math.unit(3, "inches")
  19245. },
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(5 + 7 / 12, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Macro",
  19253. height: math.unit(25, "feet")
  19254. },
  19255. {
  19256. name: "Megamacro",
  19257. height: math.unit(2, "miles")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(6 + 2 / 12, "feet"),
  19266. weight: math.unit(153, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/seth-whilst/front.svg",
  19270. bottom: 0.07
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Micro",
  19277. height: math.unit(5, "inches")
  19278. },
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(6 + 2 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(3, "inches"),
  19291. weight: math.unit(8, "grams"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/pocket-jabari/front.svg",
  19295. extra: 1024 / 974,
  19296. bottom: 0.039
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Minimicro",
  19303. height: math.unit(8, "mm")
  19304. },
  19305. {
  19306. name: "Micro",
  19307. height: math.unit(3, "inches"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(3, "feet")
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19318. {
  19319. frontDressed: {
  19320. height: math.unit(15, "feet"),
  19321. weight: math.unit(3280, "lb"),
  19322. name: "Front (Dressed)",
  19323. image: {
  19324. source: "./media/characters/sapphy/front-dressed.svg",
  19325. extra: 1951/1654,
  19326. bottom: 194/2145
  19327. },
  19328. form: "anthro",
  19329. default: true
  19330. },
  19331. backDressed: {
  19332. height: math.unit(15, "feet"),
  19333. weight: math.unit(3280, "lb"),
  19334. name: "Back (Dressed)",
  19335. image: {
  19336. source: "./media/characters/sapphy/back-dressed.svg",
  19337. extra: 2058/1918,
  19338. bottom: 125/2183
  19339. },
  19340. form: "anthro"
  19341. },
  19342. frontNude: {
  19343. height: math.unit(15, "feet"),
  19344. weight: math.unit(3280, "lb"),
  19345. name: "Front (Nude)",
  19346. image: {
  19347. source: "./media/characters/sapphy/front-nude.svg",
  19348. extra: 1951/1654,
  19349. bottom: 194/2145
  19350. },
  19351. form: "anthro"
  19352. },
  19353. backNude: {
  19354. height: math.unit(15, "feet"),
  19355. weight: math.unit(3280, "lb"),
  19356. name: "Back (Nude)",
  19357. image: {
  19358. source: "./media/characters/sapphy/back-nude.svg",
  19359. extra: 2058/1918,
  19360. bottom: 125/2183
  19361. },
  19362. form: "anthro"
  19363. },
  19364. full: {
  19365. height: math.unit(15, "feet"),
  19366. weight: math.unit(3280, "lb"),
  19367. name: "Full",
  19368. image: {
  19369. source: "./media/characters/sapphy/full.svg",
  19370. extra: 1396/1317,
  19371. bottom: 44/1440
  19372. },
  19373. form: "anthro"
  19374. },
  19375. dick: {
  19376. height: math.unit(3.8, "feet"),
  19377. name: "Dick",
  19378. image: {
  19379. source: "./media/characters/sapphy/dick.svg"
  19380. },
  19381. form: "anthro"
  19382. },
  19383. feral: {
  19384. height: math.unit(35, "feet"),
  19385. weight: math.unit(160, "tons"),
  19386. name: "Feral",
  19387. image: {
  19388. source: "./media/characters/sapphy/feral.svg",
  19389. extra: 1050/573,
  19390. bottom: 60/1110
  19391. },
  19392. form: "feral",
  19393. default: true
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(15, "feet"),
  19400. form: "anthro"
  19401. },
  19402. {
  19403. name: "Casual Macro",
  19404. height: math.unit(120, "feet"),
  19405. form: "anthro"
  19406. },
  19407. {
  19408. name: "Macro",
  19409. height: math.unit(2150, "feet"),
  19410. default: true,
  19411. form: "anthro"
  19412. },
  19413. {
  19414. name: "Megamacro",
  19415. height: math.unit(8, "miles"),
  19416. form: "anthro"
  19417. },
  19418. {
  19419. name: "Galaxy Mom",
  19420. height: math.unit(6, "megalightyears"),
  19421. form: "anthro"
  19422. },
  19423. {
  19424. name: "Normal",
  19425. height: math.unit(35, "feet"),
  19426. form: "feral",
  19427. default: true
  19428. },
  19429. {
  19430. name: "Macro",
  19431. height: math.unit(300, "feet"),
  19432. form: "feral"
  19433. },
  19434. {
  19435. name: "Galaxy Mom",
  19436. height: math.unit(10, "megalightyears"),
  19437. form: "feral"
  19438. },
  19439. ],
  19440. {
  19441. "anthro": {
  19442. name: "Anthro",
  19443. default: true
  19444. },
  19445. "feral": {
  19446. name: "Feral"
  19447. }
  19448. }
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19452. {
  19453. front: {
  19454. height: math.unit(6, "feet"),
  19455. weight: math.unit(170, "lb"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/kiro/front.svg",
  19459. extra: 1064 / 1012,
  19460. bottom: 0.052
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Micro",
  19467. height: math.unit(6, "inches")
  19468. },
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(6, "feet"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(72, "feet")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(5 + 9 / 12, "feet"),
  19485. weight: math.unit(175, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/irishfox/front.svg",
  19489. extra: 1912 / 1680,
  19490. bottom: 0.02
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Nano",
  19497. height: math.unit(1, "mm")
  19498. },
  19499. {
  19500. name: "Micro",
  19501. height: math.unit(2, "inches")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(5 + 9 / 12, "feet"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(45, "feet")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(6 + 1 / 12, "feet"),
  19519. weight: math.unit(75, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/aronai-sieyes/front.svg",
  19523. extra: 1532/1450,
  19524. bottom: 42/1574
  19525. }
  19526. },
  19527. side: {
  19528. height: math.unit(6 + 1 / 12, "feet"),
  19529. weight: math.unit(75, "lb"),
  19530. name: "Side",
  19531. image: {
  19532. source: "./media/characters/aronai-sieyes/side.svg",
  19533. extra: 1422/1365,
  19534. bottom: 148/1570
  19535. }
  19536. },
  19537. back: {
  19538. height: math.unit(6 + 1 / 12, "feet"),
  19539. weight: math.unit(75, "lb"),
  19540. name: "Back",
  19541. image: {
  19542. source: "./media/characters/aronai-sieyes/back.svg",
  19543. extra: 1526/1464,
  19544. bottom: 51/1577
  19545. }
  19546. },
  19547. dressed: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(75, "lb"),
  19550. name: "Dressed",
  19551. image: {
  19552. source: "./media/characters/aronai-sieyes/dressed.svg",
  19553. extra: 1559/1483,
  19554. bottom: 39/1598
  19555. }
  19556. },
  19557. slit: {
  19558. height: math.unit(1.3, "feet"),
  19559. name: "Slit",
  19560. image: {
  19561. source: "./media/characters/aronai-sieyes/slit.svg"
  19562. }
  19563. },
  19564. slitSpread: {
  19565. height: math.unit(0.9, "feet"),
  19566. name: "Slit (Spread)",
  19567. image: {
  19568. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19569. }
  19570. },
  19571. rump: {
  19572. height: math.unit(1.3, "feet"),
  19573. name: "Rump",
  19574. image: {
  19575. source: "./media/characters/aronai-sieyes/rump.svg"
  19576. }
  19577. },
  19578. maw: {
  19579. height: math.unit(1.25, "feet"),
  19580. name: "Maw",
  19581. image: {
  19582. source: "./media/characters/aronai-sieyes/maw.svg"
  19583. }
  19584. },
  19585. feral: {
  19586. height: math.unit(18, "feet"),
  19587. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19588. name: "Feral",
  19589. image: {
  19590. source: "./media/characters/aronai-sieyes/feral.svg",
  19591. extra: 1530 / 1240,
  19592. bottom: 0.035
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(2, "inches")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(6 + 1 / 12, "feet"),
  19604. default: true
  19605. }
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(12, "feet"),
  19613. weight: math.unit(410, "kg"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/xuna/front.svg",
  19617. extra: 2184 / 1980
  19618. }
  19619. },
  19620. side: {
  19621. height: math.unit(12, "feet"),
  19622. weight: math.unit(410, "kg"),
  19623. name: "Side",
  19624. image: {
  19625. source: "./media/characters/xuna/side.svg",
  19626. extra: 2184 / 1980
  19627. }
  19628. },
  19629. back: {
  19630. height: math.unit(12, "feet"),
  19631. weight: math.unit(410, "kg"),
  19632. name: "Back",
  19633. image: {
  19634. source: "./media/characters/xuna/back.svg",
  19635. extra: 2184 / 1980
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Nano glow",
  19642. height: math.unit(10, "nm")
  19643. },
  19644. {
  19645. name: "Micro floof",
  19646. height: math.unit(0.3, "m")
  19647. },
  19648. {
  19649. name: "Huggable softy boi",
  19650. height: math.unit(3.6576, "m"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Admirable floof",
  19655. height: math.unit(80, "meters")
  19656. },
  19657. {
  19658. name: "Gentle macro",
  19659. height: math.unit(300, "meters")
  19660. },
  19661. {
  19662. name: "Very careful floof",
  19663. height: math.unit(3200, "meters")
  19664. },
  19665. {
  19666. name: "The mega floof",
  19667. height: math.unit(36000, "meters")
  19668. },
  19669. {
  19670. name: "Giga-fur-Wicker",
  19671. height: math.unit(4800000, "meters")
  19672. },
  19673. {
  19674. name: "Licky world",
  19675. height: math.unit(20000000, "meters")
  19676. },
  19677. {
  19678. name: "Floofy cyan sun",
  19679. height: math.unit(1500000000, "meters")
  19680. },
  19681. {
  19682. name: "Milky Wicker",
  19683. height: math.unit(1000000000000000000000, "meters")
  19684. },
  19685. {
  19686. name: "The observing Wicker",
  19687. height: math.unit(999999999999999999999999999, "meters")
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(5 + 9 / 12, "feet"),
  19696. weight: math.unit(150, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/arokha-sieyes/front.svg",
  19700. extra: 1425 / 1284,
  19701. bottom: 0.05
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(5 + 9 / 12, "feet")
  19709. },
  19710. {
  19711. name: "Macro",
  19712. height: math.unit(30, "meters"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(6, "feet"),
  19722. weight: math.unit(180, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/arokh-sieyes/front.svg",
  19726. extra: 1830 / 1769,
  19727. bottom: 0.01
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(6, "feet")
  19735. },
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(30, "meters"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19745. {
  19746. side: {
  19747. height: math.unit(13 + 1 / 12, "feet"),
  19748. weight: math.unit(8.5, "tonnes"),
  19749. name: "Side",
  19750. image: {
  19751. source: "./media/characters/goldeneye/side.svg",
  19752. extra: 1182 / 778,
  19753. bottom: 0.067
  19754. }
  19755. },
  19756. paw: {
  19757. height: math.unit(3.4, "feet"),
  19758. name: "Paw",
  19759. image: {
  19760. source: "./media/characters/goldeneye/paw.svg"
  19761. }
  19762. },
  19763. },
  19764. [
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(13 + 1 / 12, "feet"),
  19768. default: true
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19774. {
  19775. front: {
  19776. height: math.unit(6 + 1 / 12, "feet"),
  19777. weight: math.unit(210, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/leonardo-lycheborne/front.svg",
  19781. extra: 776/723,
  19782. bottom: 34/810
  19783. }
  19784. },
  19785. side: {
  19786. height: math.unit(6 + 1 / 12, "feet"),
  19787. weight: math.unit(210, "lb"),
  19788. name: "Side",
  19789. image: {
  19790. source: "./media/characters/leonardo-lycheborne/side.svg",
  19791. extra: 780/728,
  19792. bottom: 12/792
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(6 + 1 / 12, "feet"),
  19797. weight: math.unit(210, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/leonardo-lycheborne/back.svg",
  19801. extra: 775/721,
  19802. bottom: 17/792
  19803. }
  19804. },
  19805. hand: {
  19806. height: math.unit(1.08, "feet"),
  19807. name: "Hand",
  19808. image: {
  19809. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19810. }
  19811. },
  19812. foot: {
  19813. height: math.unit(1.32, "feet"),
  19814. name: "Foot",
  19815. image: {
  19816. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19817. }
  19818. },
  19819. maw: {
  19820. height: math.unit(1, "feet"),
  19821. name: "Maw",
  19822. image: {
  19823. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19824. }
  19825. },
  19826. were: {
  19827. height: math.unit(20, "feet"),
  19828. weight: math.unit(7800, "lb"),
  19829. name: "Were",
  19830. image: {
  19831. source: "./media/characters/leonardo-lycheborne/were.svg",
  19832. extra: 1224/1165,
  19833. bottom: 72/1296
  19834. }
  19835. },
  19836. feral: {
  19837. height: math.unit(7.5, "feet"),
  19838. weight: math.unit(600, "lb"),
  19839. name: "Feral",
  19840. image: {
  19841. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19842. extra: 797/702,
  19843. bottom: 139/936
  19844. }
  19845. },
  19846. taur: {
  19847. height: math.unit(11, "feet"),
  19848. weight: math.unit(3300, "lb"),
  19849. name: "Taur",
  19850. image: {
  19851. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19852. extra: 1271/1197,
  19853. bottom: 47/1318
  19854. }
  19855. },
  19856. barghest: {
  19857. height: math.unit(11, "feet"),
  19858. weight: math.unit(1300, "lb"),
  19859. name: "Barghest",
  19860. image: {
  19861. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19862. extra: 1291/1204,
  19863. bottom: 37/1328
  19864. }
  19865. },
  19866. dick: {
  19867. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19868. name: "Dick",
  19869. image: {
  19870. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19871. }
  19872. },
  19873. dickWere: {
  19874. height: math.unit((20) / 3.8, "feet"),
  19875. name: "Dick (Were)",
  19876. image: {
  19877. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(6 + 1 / 12, "feet"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(10, "feet"),
  19894. weight: math.unit(350, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/jet/front.svg",
  19898. extra: 2050 / 1980,
  19899. bottom: 0.013
  19900. }
  19901. },
  19902. back: {
  19903. height: math.unit(10, "feet"),
  19904. weight: math.unit(350, "lb"),
  19905. name: "Back",
  19906. image: {
  19907. source: "./media/characters/jet/back.svg",
  19908. extra: 2050 / 1980,
  19909. bottom: 0.013
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Micro",
  19916. height: math.unit(6, "inches")
  19917. },
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(10, "feet"),
  19921. default: true
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(100, "feet")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(15, "feet"),
  19934. weight: math.unit(2800, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/tanarath/front.svg",
  19938. extra: 2392 / 2220,
  19939. bottom: 0.03
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(15, "feet"),
  19944. weight: math.unit(2800, "lb"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/tanarath/back.svg",
  19948. extra: 2392 / 2220,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(15, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(7 + 1 / 12, "feet"),
  19966. weight: math.unit(175, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/patty-cattybatty/front.svg",
  19970. extra: 908 / 874,
  19971. bottom: 0.025
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Micro",
  19978. height: math.unit(1, "inch")
  19979. },
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(7 + 1 / 12, "feet")
  19983. },
  19984. {
  19985. name: "Mini Macro",
  19986. height: math.unit(155, "feet")
  19987. },
  19988. {
  19989. name: "Macro",
  19990. height: math.unit(1077, "feet")
  19991. },
  19992. {
  19993. name: "Mega Macro",
  19994. height: math.unit(47650, "feet"),
  19995. default: true
  19996. },
  19997. {
  19998. name: "Giga Macro",
  19999. height: math.unit(440, "miles")
  20000. },
  20001. {
  20002. name: "Tera Macro",
  20003. height: math.unit(8700, "miles")
  20004. },
  20005. {
  20006. name: "Planetary Macro",
  20007. height: math.unit(32700, "miles")
  20008. },
  20009. {
  20010. name: "Solar Macro",
  20011. height: math.unit(550000, "miles")
  20012. },
  20013. {
  20014. name: "Celestial Macro",
  20015. height: math.unit(2.5, "AU")
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(4 + 5 / 12, "feet"),
  20024. weight: math.unit(90, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/cappu/front.svg",
  20028. extra: 1247 / 1152,
  20029. bottom: 0.012
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(4 + 5 / 12, "feet"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20043. {
  20044. frontDressed: {
  20045. height: math.unit(70, "cm"),
  20046. weight: math.unit(6, "kg"),
  20047. name: "Front (Dressed)",
  20048. image: {
  20049. source: "./media/characters/sebi/front-dressed.svg",
  20050. extra: 713.5 / 686.5,
  20051. bottom: 0.003
  20052. }
  20053. },
  20054. front: {
  20055. height: math.unit(70, "cm"),
  20056. weight: math.unit(5, "kg"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/sebi/front.svg",
  20060. extra: 713.5 / 686.5,
  20061. bottom: 0.003
  20062. }
  20063. }
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(70, "cm"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Macro",
  20073. height: math.unit(8, "meters")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6, "feet"),
  20082. weight: math.unit(150, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/typhek/front.svg",
  20086. extra: 1948 / 1929,
  20087. bottom: 0.025
  20088. }
  20089. },
  20090. side: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(150, "lb"),
  20093. name: "Side",
  20094. image: {
  20095. source: "./media/characters/typhek/side.svg",
  20096. extra: 2034 / 2010,
  20097. bottom: 0.003
  20098. }
  20099. },
  20100. back: {
  20101. height: math.unit(6, "feet"),
  20102. weight: math.unit(150, "lb"),
  20103. name: "Back",
  20104. image: {
  20105. source: "./media/characters/typhek/back.svg",
  20106. extra: 2005 / 1978,
  20107. bottom: 0.004
  20108. }
  20109. },
  20110. palm: {
  20111. height: math.unit(1.2, "feet"),
  20112. name: "Palm",
  20113. image: {
  20114. source: "./media/characters/typhek/palm.svg"
  20115. }
  20116. },
  20117. fist: {
  20118. height: math.unit(1.1, "feet"),
  20119. name: "Fist",
  20120. image: {
  20121. source: "./media/characters/typhek/fist.svg"
  20122. }
  20123. },
  20124. foot: {
  20125. height: math.unit(1.57, "feet"),
  20126. name: "Foot",
  20127. image: {
  20128. source: "./media/characters/typhek/foot.svg"
  20129. }
  20130. },
  20131. sole: {
  20132. height: math.unit(2.05, "feet"),
  20133. name: "Sole",
  20134. image: {
  20135. source: "./media/characters/typhek/sole.svg"
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Macro",
  20142. height: math.unit(40, "stories"),
  20143. default: true
  20144. },
  20145. {
  20146. name: "Megamacro",
  20147. height: math.unit(1, "mile")
  20148. },
  20149. {
  20150. name: "Gigamacro",
  20151. height: math.unit(4000, "solarradii")
  20152. },
  20153. {
  20154. name: "Universal",
  20155. height: math.unit(1.1, "universes")
  20156. }
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20161. {
  20162. side: {
  20163. height: math.unit(5 + 7 / 12, "feet"),
  20164. weight: math.unit(150, "lb"),
  20165. name: "Side",
  20166. image: {
  20167. source: "./media/characters/kassy/side.svg",
  20168. extra: 1280 / 1225,
  20169. bottom: 0.002
  20170. }
  20171. },
  20172. front: {
  20173. height: math.unit(5 + 7 / 12, "feet"),
  20174. weight: math.unit(150, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/kassy/front.svg",
  20178. extra: 1280 / 1225,
  20179. bottom: 0.025
  20180. }
  20181. },
  20182. back: {
  20183. height: math.unit(5 + 7 / 12, "feet"),
  20184. weight: math.unit(150, "lb"),
  20185. name: "Back",
  20186. image: {
  20187. source: "./media/characters/kassy/back.svg",
  20188. extra: 1280 / 1225,
  20189. bottom: 0.002
  20190. }
  20191. },
  20192. foot: {
  20193. height: math.unit(1.266, "feet"),
  20194. name: "Foot",
  20195. image: {
  20196. source: "./media/characters/kassy/foot.svg"
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(5 + 7 / 12, "feet")
  20204. },
  20205. {
  20206. name: "Macro",
  20207. height: math.unit(137, "feet"),
  20208. default: true
  20209. },
  20210. {
  20211. name: "Megamacro",
  20212. height: math.unit(1, "mile")
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(6 + 1 / 12, "feet"),
  20221. weight: math.unit(200, "lb"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/neil/front.svg",
  20225. extra: 1326 / 1250,
  20226. bottom: 0.023
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(6 + 1 / 12, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(200, "feet")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(5 + 9 / 12, "feet"),
  20247. weight: math.unit(190, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/atticus/front.svg",
  20251. extra: 2934 / 2785,
  20252. bottom: 0.025
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(5 + 9 / 12, "feet"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Macro",
  20264. height: math.unit(180, "feet")
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20270. {
  20271. side: {
  20272. height: math.unit(9, "feet"),
  20273. weight: math.unit(650, "lb"),
  20274. name: "Side",
  20275. image: {
  20276. source: "./media/characters/milo/side.svg",
  20277. extra: 2644 / 2310,
  20278. bottom: 0.032
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(9, "feet"),
  20286. default: true
  20287. },
  20288. {
  20289. name: "Macro",
  20290. height: math.unit(300, "feet")
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20296. {
  20297. side: {
  20298. height: math.unit(8, "meters"),
  20299. weight: math.unit(90000, "kg"),
  20300. name: "Side",
  20301. image: {
  20302. source: "./media/characters/ijzer/side.svg",
  20303. extra: 2756 / 1600,
  20304. bottom: 0.01
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Small",
  20311. height: math.unit(3, "meters")
  20312. },
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(8, "meters"),
  20316. default: true
  20317. },
  20318. {
  20319. name: "Normal+",
  20320. height: math.unit(10, "meters")
  20321. },
  20322. {
  20323. name: "Bigger",
  20324. height: math.unit(24, "meters")
  20325. },
  20326. {
  20327. name: "Huge",
  20328. height: math.unit(80, "meters")
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(6 + 2 / 12, "feet"),
  20337. weight: math.unit(153, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/luca-cervicum/front.svg",
  20341. extra: 370 / 327,
  20342. bottom: 0.015
  20343. }
  20344. },
  20345. back: {
  20346. height: math.unit(6 + 2 / 12, "feet"),
  20347. weight: math.unit(153, "lb"),
  20348. name: "Back",
  20349. image: {
  20350. source: "./media/characters/luca-cervicum/back.svg",
  20351. extra: 367 / 333,
  20352. bottom: 0.005
  20353. }
  20354. },
  20355. frontGear: {
  20356. height: math.unit(6 + 2 / 12, "feet"),
  20357. weight: math.unit(173, "lb"),
  20358. name: "Front (Gear)",
  20359. image: {
  20360. source: "./media/characters/luca-cervicum/front-gear.svg",
  20361. extra: 377 / 333,
  20362. bottom: 0.006
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(6 + 2 / 12, "feet"),
  20370. default: true
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(6 + 1 / 12, "feet"),
  20379. weight: math.unit(304, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/oliver/front.svg",
  20383. extra: 157 / 143,
  20384. bottom: 0.08
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(6 + 1 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(5 + 7 / 12, "feet"),
  20401. weight: math.unit(140, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/shane/front.svg",
  20405. extra: 304 / 289,
  20406. bottom: 0.005
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(5 + 7 / 12, "feet"),
  20414. default: true
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(5 + 9 / 12, "feet"),
  20423. weight: math.unit(178, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/shin/front.svg",
  20427. extra: 159 / 151,
  20428. bottom: 0.015
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5 + 9 / 12, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(5 + 10 / 12, "feet"),
  20445. weight: math.unit(168, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/xerxes/front.svg",
  20449. extra: 282 / 260,
  20450. bottom: 0.045
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(5 + 10 / 12, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(6 + 7 / 12, "feet"),
  20467. weight: math.unit(208, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/chaska/front.svg",
  20471. extra: 332 / 319,
  20472. bottom: 0.015
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(6 + 7 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(5 + 8 / 12, "feet"),
  20489. weight: math.unit(208, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/enuk/front.svg",
  20493. extra: 437 / 406,
  20494. bottom: 0.02
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(5 + 8 / 12, "feet"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(5 + 10 / 12, "feet"),
  20511. weight: math.unit(252, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/bruun/front.svg",
  20515. extra: 197 / 187,
  20516. bottom: 0.012
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(5 + 10 / 12, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(6 + 10 / 12, "feet"),
  20533. weight: math.unit(255, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/alexeev/front.svg",
  20537. extra: 213 / 200,
  20538. bottom: 0.05
  20539. }
  20540. },
  20541. },
  20542. [
  20543. {
  20544. name: "Normal",
  20545. height: math.unit(6 + 10 / 12, "feet"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(2 + 8 / 12, "feet"),
  20555. weight: math.unit(22, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/evelyn/front.svg",
  20559. extra: 208 / 180
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(2 + 8 / 12, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(5 + 9 / 12, "feet"),
  20576. weight: math.unit(139, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/inca/front.svg",
  20580. extra: 294 / 291,
  20581. bottom: 0.03
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(5 + 9 / 12, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(6 + 3 / 12, "feet"),
  20598. weight: math.unit(185, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/mera/front.svg",
  20602. extra: 291 / 277,
  20603. bottom: 0.03
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(6 + 3 / 12, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(6 + 7 / 12, "feet"),
  20620. weight: math.unit(160, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/ceres/front.svg",
  20624. extra: 1023 / 950,
  20625. bottom: 0.027
  20626. }
  20627. },
  20628. back: {
  20629. height: math.unit(6 + 7 / 12, "feet"),
  20630. weight: math.unit(160, "lb"),
  20631. name: "Back",
  20632. image: {
  20633. source: "./media/characters/ceres/back.svg",
  20634. extra: 1023 / 950
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(6 + 7 / 12, "feet"),
  20642. default: true
  20643. },
  20644. ]
  20645. ))
  20646. characterMakers.push(() => makeCharacter(
  20647. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20648. {
  20649. front: {
  20650. height: math.unit(5 + 10 / 12, "feet"),
  20651. weight: math.unit(150, "lb"),
  20652. name: "Front",
  20653. image: {
  20654. source: "./media/characters/kris/front.svg",
  20655. extra: 885 / 803,
  20656. bottom: 0.03
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(5 + 10 / 12, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(7, "feet"),
  20673. weight: math.unit(120, "kg"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/taluthus/front.svg",
  20677. extra: 903 / 833,
  20678. bottom: 0.015
  20679. }
  20680. },
  20681. },
  20682. [
  20683. {
  20684. name: "Normal",
  20685. height: math.unit(7, "feet"),
  20686. default: true
  20687. },
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(300, "feet")
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(5 + 9 / 12, "feet"),
  20699. weight: math.unit(145, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/dawn/front.svg",
  20703. extra: 2094 / 2016,
  20704. bottom: 0.025
  20705. }
  20706. },
  20707. back: {
  20708. height: math.unit(5 + 9 / 12, "feet"),
  20709. weight: math.unit(160, "lb"),
  20710. name: "Back",
  20711. image: {
  20712. source: "./media/characters/dawn/back.svg",
  20713. extra: 2112 / 2080,
  20714. bottom: 0.005
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(6 + 7 / 12, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20728. {
  20729. anthro: {
  20730. height: math.unit(8 + 3 / 12, "feet"),
  20731. weight: math.unit(450, "lb"),
  20732. name: "Anthro",
  20733. image: {
  20734. source: "./media/characters/arador/anthro.svg",
  20735. extra: 1835 / 1718,
  20736. bottom: 0.025
  20737. }
  20738. },
  20739. feral: {
  20740. height: math.unit(4, "feet"),
  20741. weight: math.unit(200, "lb"),
  20742. name: "Feral",
  20743. image: {
  20744. source: "./media/characters/arador/feral.svg",
  20745. extra: 1683 / 1514,
  20746. bottom: 0.07
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(8 + 3 / 12, "feet")
  20754. },
  20755. {
  20756. name: "Macro",
  20757. height: math.unit(82.5, "feet"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(5 + 10 / 12, "feet"),
  20767. weight: math.unit(125, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/dharsi/front.svg",
  20771. extra: 716 / 630,
  20772. bottom: 0.035
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Nano",
  20779. height: math.unit(100, "nm")
  20780. },
  20781. {
  20782. name: "Micro",
  20783. height: math.unit(2, "inches")
  20784. },
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(5 + 10 / 12, "feet"),
  20788. default: true
  20789. },
  20790. {
  20791. name: "Macro",
  20792. height: math.unit(1000, "feet")
  20793. },
  20794. {
  20795. name: "Megamacro",
  20796. height: math.unit(10, "miles")
  20797. },
  20798. {
  20799. name: "Gigamacro",
  20800. height: math.unit(3000, "miles")
  20801. },
  20802. {
  20803. name: "Teramacro",
  20804. height: math.unit(500000, "miles")
  20805. },
  20806. {
  20807. name: "Teramacro+",
  20808. height: math.unit(30, "galaxies")
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(6, "feet"),
  20817. weight: math.unit(150, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/deathy/front.svg",
  20821. extra: 1552 / 1463,
  20822. bottom: 0.025
  20823. }
  20824. },
  20825. side: {
  20826. height: math.unit(6, "feet"),
  20827. weight: math.unit(150, "lb"),
  20828. name: "Side",
  20829. image: {
  20830. source: "./media/characters/deathy/side.svg",
  20831. extra: 1604 / 1455,
  20832. bottom: 0.025
  20833. }
  20834. },
  20835. back: {
  20836. height: math.unit(6, "feet"),
  20837. weight: math.unit(150, "lb"),
  20838. name: "Back",
  20839. image: {
  20840. source: "./media/characters/deathy/back.svg",
  20841. extra: 1580 / 1463,
  20842. bottom: 0.005
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Micro",
  20849. height: math.unit(5, "millimeters")
  20850. },
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(6 + 5 / 12, "feet"),
  20854. default: true
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20860. {
  20861. front: {
  20862. height: math.unit(16, "feet"),
  20863. weight: math.unit(4000, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/juniper/front.svg",
  20867. bottom: 0.04
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(16, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(6, "feet"),
  20884. weight: math.unit(150, "lb"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/hipster/front.svg",
  20888. extra: 1312 / 1209,
  20889. bottom: 0.025
  20890. }
  20891. },
  20892. back: {
  20893. height: math.unit(6, "feet"),
  20894. weight: math.unit(150, "lb"),
  20895. name: "Back",
  20896. image: {
  20897. source: "./media/characters/hipster/back.svg",
  20898. extra: 1281 / 1196,
  20899. bottom: 0.01
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Micro",
  20906. height: math.unit(1, "mm")
  20907. },
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(4, "inches"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Macro",
  20915. height: math.unit(500, "feet")
  20916. },
  20917. {
  20918. name: "Megamacro",
  20919. height: math.unit(1000, "miles")
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(150, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/tendirmuldr/front.svg",
  20932. extra: 1878 / 1772,
  20933. bottom: 0.015
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Megamacro",
  20940. height: math.unit(1500, "miles"),
  20941. default: true
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20947. {
  20948. front: {
  20949. height: math.unit(14, "feet"),
  20950. weight: math.unit(12000, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/mort/front.svg",
  20954. extra: 365 / 318,
  20955. bottom: 0.01
  20956. }
  20957. },
  20958. side: {
  20959. height: math.unit(14, "feet"),
  20960. weight: math.unit(12000, "lb"),
  20961. name: "Side",
  20962. image: {
  20963. source: "./media/characters/mort/side.svg",
  20964. extra: 365 / 318,
  20965. bottom: 0.052
  20966. },
  20967. default: true
  20968. },
  20969. back: {
  20970. height: math.unit(14, "feet"),
  20971. weight: math.unit(12000, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/mort/back.svg",
  20975. extra: 371 / 332,
  20976. bottom: 0.18
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(14, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20990. {
  20991. front: {
  20992. height: math.unit(8, "feet"),
  20993. weight: math.unit(1, "ton"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/lycoa/front.svg",
  20997. extra: 1836/1728,
  20998. bottom: 81/1917
  20999. }
  21000. },
  21001. back: {
  21002. height: math.unit(8, "feet"),
  21003. weight: math.unit(1, "ton"),
  21004. name: "Back",
  21005. image: {
  21006. source: "./media/characters/lycoa/back.svg",
  21007. extra: 1785/1720,
  21008. bottom: 91/1876
  21009. }
  21010. },
  21011. head: {
  21012. height: math.unit(1.6243, "feet"),
  21013. name: "Head",
  21014. image: {
  21015. source: "./media/characters/lycoa/head.svg",
  21016. extra: 1011/782,
  21017. bottom: 0/1011
  21018. }
  21019. },
  21020. tailmaw: {
  21021. height: math.unit(1.9, "feet"),
  21022. name: "Tailmaw",
  21023. image: {
  21024. source: "./media/characters/lycoa/tailmaw.svg"
  21025. }
  21026. },
  21027. tentacles: {
  21028. height: math.unit(2.1, "feet"),
  21029. name: "Tentacles",
  21030. image: {
  21031. source: "./media/characters/lycoa/tentacles.svg"
  21032. }
  21033. },
  21034. dick: {
  21035. height: math.unit(1.73, "feet"),
  21036. name: "Dick",
  21037. image: {
  21038. source: "./media/characters/lycoa/dick.svg"
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(8, "feet"),
  21046. default: true
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(30, "feet")
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21056. {
  21057. front: {
  21058. height: math.unit(4 + 2 / 12, "feet"),
  21059. weight: math.unit(70, "lb"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/naldara/front.svg",
  21063. extra: 1664/1387,
  21064. bottom: 81/1745
  21065. },
  21066. form: "anthro",
  21067. default: true
  21068. },
  21069. naga: {
  21070. height: math.unit(20, "feet"),
  21071. weight: math.unit(15000, "kg"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/naldara/naga.svg",
  21075. extra: 1590/1396,
  21076. bottom: 285/1875
  21077. },
  21078. form: "naga",
  21079. default: true
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(4 + 2 / 12, "feet"),
  21086. form: "anthro",
  21087. default: true
  21088. },
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(20, "feet"),
  21092. form: "naga",
  21093. default: true
  21094. },
  21095. ],
  21096. {
  21097. "anthro": {
  21098. name: "Anthro",
  21099. default: true
  21100. },
  21101. "naga": {
  21102. name: "Naga"
  21103. }
  21104. }
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(13 + 7 / 12, "feet"),
  21111. weight: math.unit(1500, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/briar/front.svg",
  21115. extra: 1223/1157,
  21116. bottom: 123/1346
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(13 + 7 / 12, "feet"),
  21124. default: true
  21125. },
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21130. {
  21131. side: {
  21132. height: math.unit(16, "feet"),
  21133. weight: math.unit(500, "lb"),
  21134. name: "Side",
  21135. image: {
  21136. source: "./media/characters/vanguard/side.svg",
  21137. extra: 1022/914,
  21138. bottom: 30/1052
  21139. }
  21140. },
  21141. sideAlt: {
  21142. height: math.unit(10, "feet"),
  21143. weight: math.unit(500, "lb"),
  21144. name: "Side (Alt)",
  21145. image: {
  21146. source: "./media/characters/vanguard/side-alt.svg",
  21147. extra: 502 / 425,
  21148. bottom: 0.087
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(17.71, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(7.5, "feet"),
  21165. weight: math.unit(2, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/artemis/work-safe-front.svg",
  21169. extra: 1192 / 1075,
  21170. bottom: 0.07
  21171. },
  21172. form: "work-safe",
  21173. default: true
  21174. },
  21175. frontNsfw: {
  21176. height: math.unit(7.5, "feet"),
  21177. weight: math.unit(2, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/artemis/calibrating-front.svg",
  21181. extra: 1192 / 1075,
  21182. bottom: 0.07
  21183. },
  21184. form: "calibrating",
  21185. default: true
  21186. },
  21187. frontNsfwer: {
  21188. height: math.unit(7.5, "feet"),
  21189. weight: math.unit(2, "lb"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/artemis/oversize-load-front.svg",
  21193. extra: 1192 / 1075,
  21194. bottom: 0.07
  21195. },
  21196. form: "oversize-load",
  21197. default: true
  21198. },
  21199. side: {
  21200. height: math.unit(7.5, "feet"),
  21201. weight: math.unit(2, "lb"),
  21202. name: "Side",
  21203. image: {
  21204. source: "./media/characters/artemis/work-safe-side.svg",
  21205. extra: 1192 / 1075,
  21206. bottom: 0.07
  21207. },
  21208. form: "work-safe"
  21209. },
  21210. sideNsfw: {
  21211. height: math.unit(7.5, "feet"),
  21212. weight: math.unit(2, "lb"),
  21213. name: "Side",
  21214. image: {
  21215. source: "./media/characters/artemis/calibrating-side.svg",
  21216. extra: 1192 / 1075,
  21217. bottom: 0.07
  21218. },
  21219. form: "calibrating"
  21220. },
  21221. sideNsfwer: {
  21222. height: math.unit(7.5, "feet"),
  21223. weight: math.unit(2, "lb"),
  21224. name: "Side",
  21225. image: {
  21226. source: "./media/characters/artemis/oversize-load-side.svg",
  21227. extra: 1192 / 1075,
  21228. bottom: 0.07
  21229. },
  21230. form: "oversize-load"
  21231. },
  21232. maw: {
  21233. height: math.unit(1.1, "feet"),
  21234. name: "Maw",
  21235. image: {
  21236. source: "./media/characters/artemis/maw.svg"
  21237. },
  21238. form: "work-safe"
  21239. },
  21240. stomach: {
  21241. height: math.unit(0.95, "feet"),
  21242. name: "Stomach",
  21243. image: {
  21244. source: "./media/characters/artemis/stomach.svg"
  21245. },
  21246. form: "work-safe"
  21247. },
  21248. dickCanine: {
  21249. height: math.unit(1, "feet"),
  21250. name: "Dick (Canine)",
  21251. image: {
  21252. source: "./media/characters/artemis/dick-canine.svg"
  21253. },
  21254. form: "calibrating"
  21255. },
  21256. dickEquine: {
  21257. height: math.unit(0.85, "feet"),
  21258. name: "Dick (Equine)",
  21259. image: {
  21260. source: "./media/characters/artemis/dick-equine.svg"
  21261. },
  21262. form: "calibrating"
  21263. },
  21264. dickExotic: {
  21265. height: math.unit(0.85, "feet"),
  21266. name: "Dick (Exotic)",
  21267. image: {
  21268. source: "./media/characters/artemis/dick-exotic.svg"
  21269. },
  21270. form: "calibrating"
  21271. },
  21272. dickCanineBigger: {
  21273. height: math.unit(1 * 1.33, "feet"),
  21274. name: "Dick (Canine)",
  21275. image: {
  21276. source: "./media/characters/artemis/dick-canine.svg"
  21277. },
  21278. form: "oversize-load"
  21279. },
  21280. dickEquineBigger: {
  21281. height: math.unit(0.85 * 1.33, "feet"),
  21282. name: "Dick (Equine)",
  21283. image: {
  21284. source: "./media/characters/artemis/dick-equine.svg"
  21285. },
  21286. form: "oversize-load"
  21287. },
  21288. dickExoticBigger: {
  21289. height: math.unit(0.85 * 1.33, "feet"),
  21290. name: "Dick (Exotic)",
  21291. image: {
  21292. source: "./media/characters/artemis/dick-exotic.svg"
  21293. },
  21294. form: "oversize-load"
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(7.5, "feet"),
  21301. form: "work-safe",
  21302. default: true
  21303. },
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(7.5, "feet"),
  21307. form: "calibrating",
  21308. default: true
  21309. },
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(7.5, "feet"),
  21313. form: "oversize-load",
  21314. default: true
  21315. },
  21316. {
  21317. name: "Enlarged",
  21318. height: math.unit(12, "feet"),
  21319. form: "work-safe",
  21320. },
  21321. {
  21322. name: "Enlarged",
  21323. height: math.unit(12, "feet"),
  21324. form: "calibrating",
  21325. },
  21326. {
  21327. name: "Enlarged",
  21328. height: math.unit(12, "feet"),
  21329. form: "oversize-load",
  21330. },
  21331. ],
  21332. {
  21333. "work-safe": {
  21334. name: "Work-Safe",
  21335. default: true
  21336. },
  21337. "calibrating": {
  21338. name: "Calibrating"
  21339. },
  21340. "oversize-load": {
  21341. name: "Oversize Load"
  21342. }
  21343. }
  21344. ))
  21345. characterMakers.push(() => makeCharacter(
  21346. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21347. {
  21348. front: {
  21349. height: math.unit(5 + 3 / 12, "feet"),
  21350. weight: math.unit(160, "lb"),
  21351. name: "Front",
  21352. image: {
  21353. source: "./media/characters/kira/front.svg",
  21354. extra: 906 / 786,
  21355. bottom: 0.01
  21356. }
  21357. },
  21358. back: {
  21359. height: math.unit(5 + 3 / 12, "feet"),
  21360. weight: math.unit(160, "lb"),
  21361. name: "Back",
  21362. image: {
  21363. source: "./media/characters/kira/back.svg",
  21364. extra: 882 / 757,
  21365. bottom: 0.005
  21366. }
  21367. },
  21368. frontDressed: {
  21369. height: math.unit(5 + 3 / 12, "feet"),
  21370. weight: math.unit(160, "lb"),
  21371. name: "Front (Dressed)",
  21372. image: {
  21373. source: "./media/characters/kira/front-dressed.svg",
  21374. extra: 906 / 786,
  21375. bottom: 0.01
  21376. }
  21377. },
  21378. beans: {
  21379. height: math.unit(0.92, "feet"),
  21380. name: "Beans",
  21381. image: {
  21382. source: "./media/characters/kira/beans.svg"
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(5 + 3 / 12, "feet"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(5 + 4 / 12, "feet"),
  21399. weight: math.unit(145, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/scramble/front.svg",
  21403. extra: 763 / 727,
  21404. bottom: 0.05
  21405. }
  21406. },
  21407. back: {
  21408. height: math.unit(5 + 4 / 12, "feet"),
  21409. weight: math.unit(145, "lb"),
  21410. name: "Back",
  21411. image: {
  21412. source: "./media/characters/scramble/back.svg",
  21413. extra: 826 / 737,
  21414. bottom: 0.002
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(5 + 4 / 12, "feet"),
  21422. default: true
  21423. },
  21424. ]
  21425. ))
  21426. characterMakers.push(() => makeCharacter(
  21427. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21428. {
  21429. side: {
  21430. height: math.unit(6 + 2 / 12, "feet"),
  21431. weight: math.unit(190, "lb"),
  21432. name: "Side",
  21433. image: {
  21434. source: "./media/characters/biscuit/side.svg",
  21435. extra: 858 / 791,
  21436. bottom: 0.044
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(6 + 2 / 12, "feet"),
  21444. default: true
  21445. },
  21446. ]
  21447. ))
  21448. characterMakers.push(() => makeCharacter(
  21449. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21450. {
  21451. front: {
  21452. height: math.unit(5 + 2 / 12, "feet"),
  21453. weight: math.unit(120, "lb"),
  21454. name: "Front",
  21455. image: {
  21456. source: "./media/characters/poffin/front.svg",
  21457. extra: 786 / 680,
  21458. bottom: 0.005
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(5 + 2 / 12, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(6 + 3 / 12, "feet"),
  21475. weight: math.unit(519, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/dhari/front.svg",
  21479. extra: 1048 / 946,
  21480. bottom: 0.015
  21481. }
  21482. },
  21483. back: {
  21484. height: math.unit(6 + 3 / 12, "feet"),
  21485. weight: math.unit(519, "lb"),
  21486. name: "Back",
  21487. image: {
  21488. source: "./media/characters/dhari/back.svg",
  21489. extra: 1048 / 931,
  21490. bottom: 0.005
  21491. }
  21492. },
  21493. frontDressed: {
  21494. height: math.unit(6 + 3 / 12, "feet"),
  21495. weight: math.unit(519, "lb"),
  21496. name: "Front (Dressed)",
  21497. image: {
  21498. source: "./media/characters/dhari/front-dressed.svg",
  21499. extra: 1713 / 1546,
  21500. bottom: 0.02
  21501. }
  21502. },
  21503. backDressed: {
  21504. height: math.unit(6 + 3 / 12, "feet"),
  21505. weight: math.unit(519, "lb"),
  21506. name: "Back (Dressed)",
  21507. image: {
  21508. source: "./media/characters/dhari/back-dressed.svg",
  21509. extra: 1699 / 1537,
  21510. bottom: 0.01
  21511. }
  21512. },
  21513. maw: {
  21514. height: math.unit(0.95, "feet"),
  21515. name: "Maw",
  21516. image: {
  21517. source: "./media/characters/dhari/maw.svg"
  21518. }
  21519. },
  21520. wereFront: {
  21521. height: math.unit(12 + 8 / 12, "feet"),
  21522. weight: math.unit(4000, "lb"),
  21523. name: "Front (Were)",
  21524. image: {
  21525. source: "./media/characters/dhari/were-front.svg",
  21526. extra: 1065 / 969,
  21527. bottom: 0.015
  21528. }
  21529. },
  21530. wereBack: {
  21531. height: math.unit(12 + 8 / 12, "feet"),
  21532. weight: math.unit(4000, "lb"),
  21533. name: "Back (Were)",
  21534. image: {
  21535. source: "./media/characters/dhari/were-back.svg",
  21536. extra: 1065 / 969,
  21537. bottom: 0.012
  21538. }
  21539. },
  21540. wereMaw: {
  21541. height: math.unit(0.625, "meters"),
  21542. name: "Maw (Were)",
  21543. image: {
  21544. source: "./media/characters/dhari/were-maw.svg"
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(6 + 3 / 12, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21558. {
  21559. anthro: {
  21560. height: math.unit(5 + 7 / 12, "feet"),
  21561. weight: math.unit(175, "lb"),
  21562. name: "Anthro",
  21563. image: {
  21564. source: "./media/characters/rena-dyne/anthro.svg",
  21565. extra: 1849 / 1785,
  21566. bottom: 0.005
  21567. }
  21568. },
  21569. taur: {
  21570. height: math.unit(15 + 6 / 12, "feet"),
  21571. weight: math.unit(8000, "lb"),
  21572. name: "Taur",
  21573. image: {
  21574. source: "./media/characters/rena-dyne/taur.svg",
  21575. extra: 2315 / 2234,
  21576. bottom: 0.033
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(5 + 7 / 12, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(8, "feet"),
  21593. weight: math.unit(600, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/weremeep/front.svg",
  21597. extra: 967 / 862,
  21598. bottom: 0.01
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(8, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Lorg",
  21610. height: math.unit(12, "feet")
  21611. },
  21612. {
  21613. name: "Oh Lawd She Comin'",
  21614. height: math.unit(20, "feet")
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21620. {
  21621. front: {
  21622. height: math.unit(4, "feet"),
  21623. weight: math.unit(90, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/reza/front.svg",
  21627. extra: 1183 / 1111,
  21628. bottom: 0.017
  21629. }
  21630. },
  21631. back: {
  21632. height: math.unit(4, "feet"),
  21633. weight: math.unit(90, "lb"),
  21634. name: "Back",
  21635. image: {
  21636. source: "./media/characters/reza/back.svg",
  21637. extra: 1183 / 1111,
  21638. bottom: 0.01
  21639. }
  21640. },
  21641. drake: {
  21642. height: math.unit(30, "feet"),
  21643. weight: math.unit(246960, "lb"),
  21644. name: "Drake",
  21645. image: {
  21646. source: "./media/characters/reza/drake.svg",
  21647. extra: 2350 / 2024,
  21648. bottom: 60.7 / 2403
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(4, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21662. {
  21663. side: {
  21664. height: math.unit(15, "feet"),
  21665. weight: math.unit(14, "tons"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/athea/side.svg",
  21669. extra: 960 / 540,
  21670. bottom: 0.003
  21671. }
  21672. },
  21673. sitting: {
  21674. height: math.unit(6 * 2.85, "feet"),
  21675. weight: math.unit(14, "tons"),
  21676. name: "Sitting",
  21677. image: {
  21678. source: "./media/characters/athea/sitting.svg",
  21679. extra: 621 / 581,
  21680. bottom: 0.075
  21681. }
  21682. },
  21683. maw: {
  21684. height: math.unit(7.59498031496063, "feet"),
  21685. name: "Maw",
  21686. image: {
  21687. source: "./media/characters/athea/maw.svg"
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Lap Cat",
  21694. height: math.unit(2.5, "feet")
  21695. },
  21696. {
  21697. name: "Minimacro",
  21698. height: math.unit(15, "feet"),
  21699. default: true
  21700. },
  21701. {
  21702. name: "Macro",
  21703. height: math.unit(120, "feet")
  21704. },
  21705. {
  21706. name: "Macro+",
  21707. height: math.unit(640, "feet")
  21708. },
  21709. {
  21710. name: "Colossus",
  21711. height: math.unit(2.2, "miles")
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21717. {
  21718. front: {
  21719. height: math.unit(8 + 8 / 12, "feet"),
  21720. weight: math.unit(130, "kg"),
  21721. name: "Front",
  21722. image: {
  21723. source: "./media/characters/seroko/front.svg",
  21724. extra: 1385 / 1280,
  21725. bottom: 0.025
  21726. }
  21727. },
  21728. back: {
  21729. height: math.unit(8 + 8 / 12, "feet"),
  21730. weight: math.unit(130, "kg"),
  21731. name: "Back",
  21732. image: {
  21733. source: "./media/characters/seroko/back.svg",
  21734. extra: 1369 / 1238,
  21735. bottom: 0.018
  21736. }
  21737. },
  21738. frontDressed: {
  21739. height: math.unit(8 + 8 / 12, "feet"),
  21740. weight: math.unit(130, "kg"),
  21741. name: "Front (Dressed)",
  21742. image: {
  21743. source: "./media/characters/seroko/front-dressed.svg",
  21744. extra: 1366 / 1275,
  21745. bottom: 0.03
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(8 + 8 / 12, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(5.5, "feet"),
  21762. weight: math.unit(160, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/quatzi/front.svg",
  21766. extra: 2346 / 2242,
  21767. bottom: 0.015
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(5.5, "feet"),
  21775. default: true
  21776. },
  21777. {
  21778. name: "Big",
  21779. height: math.unit(7.7, "feet")
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(5 + 11 / 12, "feet"),
  21788. weight: math.unit(180, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/sen/front.svg",
  21792. extra: 1321 / 1254,
  21793. bottom: 0.015
  21794. }
  21795. },
  21796. side: {
  21797. height: math.unit(5 + 11 / 12, "feet"),
  21798. weight: math.unit(180, "lb"),
  21799. name: "Side",
  21800. image: {
  21801. source: "./media/characters/sen/side.svg",
  21802. extra: 1321 / 1254,
  21803. bottom: 0.007
  21804. }
  21805. },
  21806. back: {
  21807. height: math.unit(5 + 11 / 12, "feet"),
  21808. weight: math.unit(180, "lb"),
  21809. name: "Back",
  21810. image: {
  21811. source: "./media/characters/sen/back.svg",
  21812. extra: 1321 / 1254
  21813. }
  21814. },
  21815. },
  21816. [
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 11 / 12, "feet"),
  21820. default: true
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(166.6, "cm"),
  21829. weight: math.unit(66.6, "kg"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/fruity/front.svg",
  21833. extra: 1510 / 1386,
  21834. bottom: 0.04
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(166.6, "cm"),
  21839. weight: math.unit(66.6, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/fruity/back.svg",
  21843. extra: 1563 / 1435,
  21844. bottom: 0.005
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(166.6, "cm"),
  21852. default: true
  21853. },
  21854. {
  21855. name: "Demonic",
  21856. height: math.unit(166.6, "feet")
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21862. {
  21863. side: {
  21864. height: math.unit(10, "feet"),
  21865. weight: math.unit(500, "lb"),
  21866. name: "Side",
  21867. image: {
  21868. source: "./media/characters/zost/side.svg",
  21869. extra: 2870/2533,
  21870. bottom: 252/3122
  21871. }
  21872. },
  21873. mawFront: {
  21874. height: math.unit(1.08, "meters"),
  21875. name: "Maw (Front)",
  21876. image: {
  21877. source: "./media/characters/zost/maw-front.svg"
  21878. }
  21879. },
  21880. mawSide: {
  21881. height: math.unit(2.66, "feet"),
  21882. name: "Maw (Side)",
  21883. image: {
  21884. source: "./media/characters/zost/maw-side.svg"
  21885. }
  21886. },
  21887. wingspan: {
  21888. height: math.unit(7.4, "feet"),
  21889. name: "Wingspan",
  21890. image: {
  21891. source: "./media/characters/zost/wingspan.svg"
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(10, "feet"),
  21899. default: true
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(5 + 4 / 12, "feet"),
  21908. weight: math.unit(120, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/luci/front.svg",
  21912. extra: 1985 / 1884,
  21913. bottom: 0.04
  21914. }
  21915. },
  21916. back: {
  21917. height: math.unit(5 + 4 / 12, "feet"),
  21918. weight: math.unit(120, "lb"),
  21919. name: "Back",
  21920. image: {
  21921. source: "./media/characters/luci/back.svg",
  21922. extra: 1892 / 1791,
  21923. bottom: 0.002
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(5 + 4 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(1500, "feet"),
  21940. weight: math.unit(3.8e6, "tons"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/2th/front.svg",
  21944. extra: 3489 / 3350,
  21945. bottom: 0.1
  21946. }
  21947. },
  21948. foot: {
  21949. height: math.unit(461, "feet"),
  21950. name: "Foot",
  21951. image: {
  21952. source: "./media/characters/2th/foot.svg"
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "\"Micro\"",
  21959. height: math.unit(15 + 7 / 12, "feet")
  21960. },
  21961. {
  21962. name: "Normal",
  21963. height: math.unit(1500, "feet"),
  21964. default: true
  21965. },
  21966. {
  21967. name: "Macro",
  21968. height: math.unit(5000, "feet")
  21969. },
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(15, "miles")
  21973. },
  21974. {
  21975. name: "Gigamacro",
  21976. height: math.unit(4000, "miles")
  21977. },
  21978. {
  21979. name: "Galactic",
  21980. height: math.unit(50, "AU")
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(5 + 6 / 12, "feet"),
  21989. weight: math.unit(220, "lb"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/amethyst/front.svg",
  21993. extra: 2078 / 2040,
  21994. bottom: 0.045
  21995. }
  21996. },
  21997. back: {
  21998. height: math.unit(5 + 6 / 12, "feet"),
  21999. weight: math.unit(220, "lb"),
  22000. name: "Back",
  22001. image: {
  22002. source: "./media/characters/amethyst/back.svg",
  22003. extra: 2021 / 1989,
  22004. bottom: 0.02
  22005. }
  22006. },
  22007. },
  22008. [
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(5 + 6 / 12, "feet"),
  22012. default: true
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22018. {
  22019. front: {
  22020. height: math.unit(4 + 11 / 12, "feet"),
  22021. weight: math.unit(120, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/yumi-akiyama/front.svg",
  22025. extra: 1327 / 1235,
  22026. bottom: 0.02
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(4 + 11 / 12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/yumi-akiyama/back.svg",
  22035. extra: 1287 / 1245,
  22036. bottom: 0.002
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Galactic",
  22043. height: math.unit(50, "galaxies"),
  22044. default: true
  22045. },
  22046. {
  22047. name: "Universal",
  22048. height: math.unit(100, "universes")
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(8, "feet"),
  22057. weight: math.unit(500, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/rifter-yrmori/front.svg",
  22061. extra: 1180 / 1125,
  22062. bottom: 0.02
  22063. }
  22064. },
  22065. back: {
  22066. height: math.unit(8, "feet"),
  22067. weight: math.unit(500, "lb"),
  22068. name: "Back",
  22069. image: {
  22070. source: "./media/characters/rifter-yrmori/back.svg",
  22071. extra: 1190 / 1145,
  22072. bottom: 0.001
  22073. }
  22074. },
  22075. wings: {
  22076. height: math.unit(7.75, "feet"),
  22077. weight: math.unit(500, "lb"),
  22078. name: "Wings",
  22079. image: {
  22080. source: "./media/characters/rifter-yrmori/wings.svg",
  22081. extra: 1357 / 1285
  22082. }
  22083. },
  22084. maw: {
  22085. height: math.unit(0.8, "feet"),
  22086. name: "Maw",
  22087. image: {
  22088. source: "./media/characters/rifter-yrmori/maw.svg"
  22089. }
  22090. },
  22091. mawfront: {
  22092. height: math.unit(1.45, "feet"),
  22093. name: "Maw (Front)",
  22094. image: {
  22095. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(8, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(42, "meters")
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22113. {
  22114. were: {
  22115. height: math.unit(25 + 6 / 12, "feet"),
  22116. weight: math.unit(10000, "lb"),
  22117. name: "Were",
  22118. image: {
  22119. source: "./media/characters/tahajin/were.svg",
  22120. extra: 801 / 770,
  22121. bottom: 0.042
  22122. }
  22123. },
  22124. aquatic: {
  22125. height: math.unit(6 + 4 / 12, "feet"),
  22126. weight: math.unit(160, "lb"),
  22127. name: "Aquatic",
  22128. image: {
  22129. source: "./media/characters/tahajin/aquatic.svg",
  22130. extra: 572 / 542,
  22131. bottom: 0.04
  22132. }
  22133. },
  22134. chow: {
  22135. height: math.unit(8 + 11 / 12, "feet"),
  22136. weight: math.unit(450, "lb"),
  22137. name: "Chow",
  22138. image: {
  22139. source: "./media/characters/tahajin/chow.svg",
  22140. extra: 660 / 640,
  22141. bottom: 0.015
  22142. }
  22143. },
  22144. demiNaga: {
  22145. height: math.unit(6 + 8 / 12, "feet"),
  22146. weight: math.unit(300, "lb"),
  22147. name: "Demi Naga",
  22148. image: {
  22149. source: "./media/characters/tahajin/demi-naga.svg",
  22150. extra: 643 / 615,
  22151. bottom: 0.1
  22152. }
  22153. },
  22154. data: {
  22155. height: math.unit(5, "inches"),
  22156. weight: math.unit(0.1, "lb"),
  22157. name: "Data",
  22158. image: {
  22159. source: "./media/characters/tahajin/data.svg"
  22160. }
  22161. },
  22162. fluu: {
  22163. height: math.unit(5 + 7 / 12, "feet"),
  22164. weight: math.unit(140, "lb"),
  22165. name: "Fluu",
  22166. image: {
  22167. source: "./media/characters/tahajin/fluu.svg",
  22168. extra: 628 / 592,
  22169. bottom: 0.02
  22170. }
  22171. },
  22172. starWarrior: {
  22173. height: math.unit(4 + 5 / 12, "feet"),
  22174. weight: math.unit(50, "lb"),
  22175. name: "Star Warrior",
  22176. image: {
  22177. source: "./media/characters/tahajin/star-warrior.svg"
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(25 + 6 / 12, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(8, "feet"),
  22194. weight: math.unit(350, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/gabira/front.svg",
  22198. extra: 608 / 580,
  22199. bottom: 0.03
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(8, "feet"),
  22204. weight: math.unit(350, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/gabira/back.svg",
  22208. extra: 608 / 580,
  22209. bottom: 0.03
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(8, "feet"),
  22217. default: true
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(5 + 3 / 12, "feet"),
  22226. weight: math.unit(137, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/sasha-katraine/front.svg",
  22230. extra: 1745/1694,
  22231. bottom: 37/1782
  22232. }
  22233. },
  22234. back: {
  22235. height: math.unit(5 + 3 / 12, "feet"),
  22236. weight: math.unit(137, "lb"),
  22237. name: "Back",
  22238. image: {
  22239. source: "./media/characters/sasha-katraine/back.svg",
  22240. extra: 1776/1699,
  22241. bottom: 26/1802
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Micro",
  22248. height: math.unit(5, "inches")
  22249. },
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(5 + 3 / 12, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22259. {
  22260. side: {
  22261. height: math.unit(4, "inches"),
  22262. weight: math.unit(200, "grams"),
  22263. name: "Side",
  22264. image: {
  22265. source: "./media/characters/der/side.svg",
  22266. extra: 719 / 400,
  22267. bottom: 30.6 / 749.9187
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Micro",
  22274. height: math.unit(4, "inches"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(30, "meters"),
  22284. weight: math.unit(700, "tonnes"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/fixerdragon/side.svg",
  22288. extra: (1293.0514 - 116.03) / 1106.86,
  22289. bottom: 116.03 / 1293.0514
  22290. }
  22291. },
  22292. },
  22293. [
  22294. {
  22295. name: "Planck",
  22296. height: math.unit(1.6e-35, "meters")
  22297. },
  22298. {
  22299. name: "Micro",
  22300. height: math.unit(0.4, "meters")
  22301. },
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(30, "meters"),
  22305. default: true
  22306. },
  22307. {
  22308. name: "Megamacro",
  22309. height: math.unit(1.2, "megameters")
  22310. },
  22311. {
  22312. name: "Teramacro",
  22313. height: math.unit(130, "terameters")
  22314. },
  22315. {
  22316. name: "Yottamacro",
  22317. height: math.unit(6200, "yottameters")
  22318. },
  22319. ]
  22320. ));
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22323. {
  22324. front: {
  22325. height: math.unit(8, "feet"),
  22326. weight: math.unit(250, "lb"),
  22327. name: "Front",
  22328. image: {
  22329. source: "./media/characters/kite/front.svg",
  22330. extra: 2796 / 2659,
  22331. bottom: 0.002
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(8, "feet"),
  22339. default: true
  22340. },
  22341. {
  22342. name: "Macro",
  22343. height: math.unit(360, "feet")
  22344. },
  22345. {
  22346. name: "Megamacro",
  22347. height: math.unit(1500, "feet")
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(5 + 11/12, "feet"),
  22356. weight: math.unit(170, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/poojawa-vynar/front.svg",
  22360. extra: 1735/1585,
  22361. bottom: 96/1831
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(5 + 11/12, "feet"),
  22366. weight: math.unit(170, "lb"),
  22367. name: "Back",
  22368. image: {
  22369. source: "./media/characters/poojawa-vynar/back.svg",
  22370. extra: 1749/1607,
  22371. bottom: 28/1777
  22372. }
  22373. },
  22374. male: {
  22375. height: math.unit(5 + 11/12, "feet"),
  22376. weight: math.unit(170, "lb"),
  22377. name: "Male",
  22378. image: {
  22379. source: "./media/characters/poojawa-vynar/male.svg",
  22380. extra: 1855/1713,
  22381. bottom: 63/1918
  22382. }
  22383. },
  22384. taur: {
  22385. height: math.unit(5 + 11/12, "feet"),
  22386. weight: math.unit(170, "lb"),
  22387. name: "Taur",
  22388. image: {
  22389. source: "./media/characters/poojawa-vynar/taur.svg",
  22390. extra: 1151/1059,
  22391. bottom: 356/1507
  22392. }
  22393. },
  22394. frontDressed: {
  22395. height: math.unit(5 + 11/12, "feet"),
  22396. weight: math.unit(170, "lb"),
  22397. name: "Front (Dressed)",
  22398. image: {
  22399. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22400. extra: 1735/1585,
  22401. bottom: 96/1831
  22402. }
  22403. },
  22404. backDressed: {
  22405. height: math.unit(5 + 11/12, "feet"),
  22406. weight: math.unit(170, "lb"),
  22407. name: "Back (Dressed)",
  22408. image: {
  22409. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22410. extra: 1749/1607,
  22411. bottom: 28/1777
  22412. }
  22413. },
  22414. maleDressed: {
  22415. height: math.unit(5 + 11/12, "feet"),
  22416. weight: math.unit(170, "lb"),
  22417. name: "Male (Dressed)",
  22418. image: {
  22419. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22420. extra: 1855/1713,
  22421. bottom: 63/1918
  22422. }
  22423. },
  22424. taurDressed: {
  22425. height: math.unit(5 + 11/12, "feet"),
  22426. weight: math.unit(170, "lb"),
  22427. name: "Taur (Dressed)",
  22428. image: {
  22429. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22430. extra: 1151/1059,
  22431. bottom: 356/1507
  22432. }
  22433. },
  22434. maw: {
  22435. height: math.unit(1.46, "feet"),
  22436. name: "Maw",
  22437. image: {
  22438. source: "./media/characters/poojawa-vynar/maw.svg"
  22439. }
  22440. },
  22441. head: {
  22442. height: math.unit(2.34, "feet"),
  22443. name: "Head",
  22444. image: {
  22445. source: "./media/characters/poojawa-vynar/head.svg"
  22446. }
  22447. },
  22448. paw: {
  22449. height: math.unit(1.61, "feet"),
  22450. name: "Paw",
  22451. image: {
  22452. source: "./media/characters/poojawa-vynar/paw.svg"
  22453. }
  22454. },
  22455. pawToering: {
  22456. height: math.unit(1.72, "feet"),
  22457. name: "Paw (Toering)",
  22458. image: {
  22459. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22460. }
  22461. },
  22462. toering: {
  22463. height: math.unit(2.9, "inches"),
  22464. name: "Toering",
  22465. image: {
  22466. source: "./media/characters/poojawa-vynar/toering.svg"
  22467. }
  22468. },
  22469. shaft: {
  22470. height: math.unit(0.625, "feet"),
  22471. name: "Shaft",
  22472. image: {
  22473. source: "./media/characters/poojawa-vynar/shaft.svg"
  22474. }
  22475. },
  22476. spade: {
  22477. height: math.unit(0.42, "feet"),
  22478. name: "Spade",
  22479. image: {
  22480. source: "./media/characters/poojawa-vynar/spade.svg"
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Shortstack",
  22487. height: math.unit(4, "feet")
  22488. },
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(5 + 11 / 12, "feet"),
  22492. default: true
  22493. },
  22494. {
  22495. name: "Tauric",
  22496. height: math.unit(4, "meters")
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(293, "meters"),
  22505. weight: math.unit(70400, "tons"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/violette/front.svg",
  22509. extra: 1227 / 1180,
  22510. bottom: 0.005
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(293, "meters"),
  22515. weight: math.unit(70400, "tons"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/violette/back.svg",
  22519. extra: 1227 / 1180,
  22520. bottom: 0.005
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Macro",
  22527. height: math.unit(293, "meters"),
  22528. default: true
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(1050, "feet"),
  22537. weight: math.unit(200000, "tons"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/alessandra/front.svg",
  22541. extra: 960 / 912,
  22542. bottom: 0.06
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Macro",
  22549. height: math.unit(1050, "feet")
  22550. },
  22551. {
  22552. name: "Macro+",
  22553. height: math.unit(900, "meters"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(5, "feet"),
  22563. weight: math.unit(187, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/person/front.svg",
  22567. extra: 3087 / 2945,
  22568. bottom: 91 / 3181
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Micro",
  22575. height: math.unit(3, "inches")
  22576. },
  22577. {
  22578. name: "Normal",
  22579. height: math.unit(5, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Macro",
  22584. height: math.unit(90, "feet")
  22585. },
  22586. {
  22587. name: "Max Size",
  22588. height: math.unit(280, "feet")
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(4.5, "meters"),
  22597. weight: math.unit(3200, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/ty/front.svg",
  22601. extra: 1038 / 960,
  22602. bottom: 31.156 / 1068
  22603. }
  22604. },
  22605. back: {
  22606. height: math.unit(4.5, "meters"),
  22607. weight: math.unit(3200, "lb"),
  22608. name: "Back",
  22609. image: {
  22610. source: "./media/characters/ty/back.svg",
  22611. extra: 1044 / 966,
  22612. bottom: 7.48 / 1049
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(4.5, "meters"),
  22620. default: true
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 4 / 12, "feet"),
  22629. weight: math.unit(115, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/rocky/front.svg",
  22633. extra: 1012 / 975,
  22634. bottom: 54 / 1066
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(5 + 4 / 12, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22648. {
  22649. upright: {
  22650. height: math.unit(6, "meters"),
  22651. weight: math.unit(4000, "kg"),
  22652. name: "Upright",
  22653. image: {
  22654. source: "./media/characters/ruin/upright.svg",
  22655. extra: 668 / 661,
  22656. bottom: 42 / 799.8396
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(6, "meters"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(5, "feet"),
  22673. weight: math.unit(106, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/robin/front.svg",
  22677. extra: 862 / 799,
  22678. bottom: 42.4 / 914.8856
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(5, "feet"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22692. {
  22693. side: {
  22694. height: math.unit(3, "feet"),
  22695. weight: math.unit(225, "lb"),
  22696. name: "Side",
  22697. image: {
  22698. source: "./media/characters/saian/side.svg",
  22699. extra: 566 / 356,
  22700. bottom: 79.7 / 643
  22701. }
  22702. },
  22703. maw: {
  22704. height: math.unit(2.85, "feet"),
  22705. name: "Maw",
  22706. image: {
  22707. source: "./media/characters/saian/maw.svg"
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(3, "feet"),
  22715. default: true
  22716. },
  22717. ]
  22718. ))
  22719. characterMakers.push(() => makeCharacter(
  22720. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22721. {
  22722. side: {
  22723. height: math.unit(8, "feet"),
  22724. weight: math.unit(300, "lb"),
  22725. name: "Side",
  22726. image: {
  22727. source: "./media/characters/equus-silvermane/side.svg",
  22728. extra: 2176 / 2050,
  22729. bottom: 65.7 / 2245
  22730. }
  22731. },
  22732. front: {
  22733. height: math.unit(8, "feet"),
  22734. weight: math.unit(300, "lb"),
  22735. name: "Front",
  22736. image: {
  22737. source: "./media/characters/equus-silvermane/front.svg",
  22738. extra: 4633 / 4400,
  22739. bottom: 71.3 / 4706.915
  22740. }
  22741. },
  22742. sideStepping: {
  22743. height: math.unit(8, "feet"),
  22744. weight: math.unit(300, "lb"),
  22745. name: "Side (Stepping)",
  22746. image: {
  22747. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22748. extra: 1968 / 1860,
  22749. bottom: 16.4 / 1989
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(8, "feet")
  22757. },
  22758. {
  22759. name: "Minimacro",
  22760. height: math.unit(75, "feet"),
  22761. default: true
  22762. },
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(150, "feet")
  22766. },
  22767. {
  22768. name: "Macro+",
  22769. height: math.unit(1000, "feet")
  22770. },
  22771. {
  22772. name: "Megamacro",
  22773. height: math.unit(1, "mile")
  22774. },
  22775. ]
  22776. ))
  22777. characterMakers.push(() => makeCharacter(
  22778. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22779. {
  22780. side: {
  22781. height: math.unit(20, "feet"),
  22782. weight: math.unit(30000, "kg"),
  22783. name: "Side",
  22784. image: {
  22785. source: "./media/characters/windar/side.svg",
  22786. extra: 1491 / 1248,
  22787. bottom: 82.56 / 1568
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Normal",
  22794. height: math.unit(20, "feet"),
  22795. default: true
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22801. {
  22802. side: {
  22803. height: math.unit(15.66, "feet"),
  22804. weight: math.unit(150, "lb"),
  22805. name: "Side",
  22806. image: {
  22807. source: "./media/characters/melody/side.svg",
  22808. extra: 1097 / 944,
  22809. bottom: 11.8 / 1109
  22810. }
  22811. },
  22812. sideOutfit: {
  22813. height: math.unit(15.66, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Side (Outfit)",
  22816. image: {
  22817. source: "./media/characters/melody/side-outfit.svg",
  22818. extra: 1097 / 944,
  22819. bottom: 11.8 / 1109
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(15.66, "feet"),
  22827. default: true
  22828. },
  22829. ]
  22830. ))
  22831. characterMakers.push(() => makeCharacter(
  22832. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22833. {
  22834. front: {
  22835. height: math.unit(8, "feet"),
  22836. weight: math.unit(325, "lb"),
  22837. name: "Front",
  22838. image: {
  22839. source: "./media/characters/windera/front.svg",
  22840. extra: 3180 / 2845,
  22841. bottom: 178 / 3365
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(8, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22855. {
  22856. front: {
  22857. height: math.unit(28.75, "feet"),
  22858. weight: math.unit(2000, "kg"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/sonear/front.svg",
  22862. extra: 1041.1 / 964.9,
  22863. bottom: 53.7 / 1096.6
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(28.75, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22877. {
  22878. side: {
  22879. height: math.unit(25.5, "feet"),
  22880. weight: math.unit(23000, "kg"),
  22881. name: "Side",
  22882. image: {
  22883. source: "./media/characters/kanara/side.svg"
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(25.5, "feet"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22897. {
  22898. side: {
  22899. height: math.unit(10, "feet"),
  22900. weight: math.unit(1000, "kg"),
  22901. name: "Side",
  22902. image: {
  22903. source: "./media/characters/ereus/side.svg",
  22904. extra: 1157 / 959,
  22905. bottom: 153 / 1312.5
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(10, "feet"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22919. {
  22920. side: {
  22921. height: math.unit(4.5, "feet"),
  22922. weight: math.unit(500, "lb"),
  22923. name: "Side",
  22924. image: {
  22925. source: "./media/characters/e-ter/side.svg",
  22926. extra: 1550 / 1248,
  22927. bottom: 146 / 1694
  22928. }
  22929. },
  22930. },
  22931. [
  22932. {
  22933. name: "Normal",
  22934. height: math.unit(4.5, "feet"),
  22935. default: true
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22941. {
  22942. side: {
  22943. height: math.unit(9.7, "feet"),
  22944. weight: math.unit(4000, "kg"),
  22945. name: "Side",
  22946. image: {
  22947. source: "./media/characters/yamie/side.svg"
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(9.7, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(50, "feet"),
  22964. weight: math.unit(50000, "kg"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/anders/front.svg",
  22968. extra: 570 / 539,
  22969. bottom: 14.7 / 586.7
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Large",
  22976. height: math.unit(50, "feet")
  22977. },
  22978. {
  22979. name: "Macro",
  22980. height: math.unit(2000, "feet"),
  22981. default: true
  22982. },
  22983. {
  22984. name: "Megamacro",
  22985. height: math.unit(12, "miles")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(7 + 2 / 12, "feet"),
  22994. weight: math.unit(300, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/reban/front.svg",
  22998. extra: 1287/1212,
  22999. bottom: 148/1435
  23000. }
  23001. },
  23002. head: {
  23003. height: math.unit(1.95, "feet"),
  23004. name: "Head",
  23005. image: {
  23006. source: "./media/characters/reban/head.svg"
  23007. }
  23008. },
  23009. maw: {
  23010. height: math.unit(0.95, "feet"),
  23011. name: "Maw",
  23012. image: {
  23013. source: "./media/characters/reban/maw.svg"
  23014. }
  23015. },
  23016. foot: {
  23017. height: math.unit(1.65, "feet"),
  23018. name: "Foot",
  23019. image: {
  23020. source: "./media/characters/reban/foot.svg"
  23021. }
  23022. },
  23023. dick: {
  23024. height: math.unit(7 / 5, "feet"),
  23025. name: "Dick",
  23026. image: {
  23027. source: "./media/characters/reban/dick.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Natural Height",
  23034. height: math.unit(7 + 2 / 12, "feet")
  23035. },
  23036. {
  23037. name: "Macro",
  23038. height: math.unit(500, "feet"),
  23039. default: true
  23040. },
  23041. {
  23042. name: "Canon Height",
  23043. height: math.unit(50, "AU")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23049. {
  23050. front: {
  23051. height: math.unit(6, "feet"),
  23052. weight: math.unit(150, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/terrance-keayes/front.svg",
  23056. extra: 1.005,
  23057. bottom: 151 / 1615
  23058. }
  23059. },
  23060. side: {
  23061. height: math.unit(6, "feet"),
  23062. weight: math.unit(150, "lb"),
  23063. name: "Side",
  23064. image: {
  23065. source: "./media/characters/terrance-keayes/side.svg",
  23066. extra: 1.005,
  23067. bottom: 129.4 / 1544
  23068. }
  23069. },
  23070. back: {
  23071. height: math.unit(6, "feet"),
  23072. weight: math.unit(150, "lb"),
  23073. name: "Back",
  23074. image: {
  23075. source: "./media/characters/terrance-keayes/back.svg",
  23076. extra: 1.005,
  23077. bottom: 58.4 / 1557.3
  23078. }
  23079. },
  23080. dick: {
  23081. height: math.unit(6 * 0.208, "feet"),
  23082. name: "Dick",
  23083. image: {
  23084. source: "./media/characters/terrance-keayes/dick.svg"
  23085. }
  23086. },
  23087. },
  23088. [
  23089. {
  23090. name: "Canon Height",
  23091. height: math.unit(35, "miles"),
  23092. default: true
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(6, "feet"),
  23101. weight: math.unit(150, "lb"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/ofelia/front.svg",
  23105. extra: 1130/1117,
  23106. bottom: 91/1221
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/ofelia/back.svg",
  23115. extra: 1172/1159,
  23116. bottom: 28/1200
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(1, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/ofelia/maw.svg"
  23124. }
  23125. },
  23126. foot: {
  23127. height: math.unit(1.949, "feet"),
  23128. name: "Foot",
  23129. image: {
  23130. source: "./media/characters/ofelia/foot.svg"
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Canon Height",
  23137. height: math.unit(2000, "miles"),
  23138. default: true
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23144. {
  23145. front: {
  23146. height: math.unit(6, "feet"),
  23147. weight: math.unit(150, "lb"),
  23148. name: "Front",
  23149. image: {
  23150. source: "./media/characters/samuel/front.svg",
  23151. extra: 265 / 258,
  23152. bottom: 2 / 266.1566
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Macro",
  23159. height: math.unit(100, "feet"),
  23160. default: true
  23161. },
  23162. {
  23163. name: "Full Size",
  23164. height: math.unit(1000, "miles")
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(6, "feet"),
  23173. weight: math.unit(300, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/beishir-kiel/front.svg",
  23177. extra: 569 / 547,
  23178. bottom: 41.9 / 609
  23179. }
  23180. },
  23181. maw: {
  23182. height: math.unit(6 * 0.202, "feet"),
  23183. name: "Maw",
  23184. image: {
  23185. source: "./media/characters/beishir-kiel/maw.svg"
  23186. }
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Macro",
  23192. height: math.unit(300, "feet"),
  23193. default: true
  23194. },
  23195. ]
  23196. ))
  23197. characterMakers.push(() => makeCharacter(
  23198. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23199. {
  23200. front: {
  23201. height: math.unit(5 + 7/12, "feet"),
  23202. weight: math.unit(120, "lb"),
  23203. name: "Front",
  23204. image: {
  23205. source: "./media/characters/logan-grey/front.svg",
  23206. extra: 1836/1738,
  23207. bottom: 108/1944
  23208. }
  23209. },
  23210. back: {
  23211. height: math.unit(5 + 7/12, "feet"),
  23212. weight: math.unit(120, "lb"),
  23213. name: "Back",
  23214. image: {
  23215. source: "./media/characters/logan-grey/back.svg",
  23216. extra: 1880/1794,
  23217. bottom: 24/1904
  23218. }
  23219. },
  23220. frontSfw: {
  23221. height: math.unit(5 + 7/12, "feet"),
  23222. weight: math.unit(120, "lb"),
  23223. name: "Front (SFW)",
  23224. image: {
  23225. source: "./media/characters/logan-grey/front-sfw.svg",
  23226. extra: 1836/1738,
  23227. bottom: 108/1944
  23228. }
  23229. },
  23230. backSfw: {
  23231. height: math.unit(5 + 7/12, "feet"),
  23232. weight: math.unit(120, "lb"),
  23233. name: "Back (SFW)",
  23234. image: {
  23235. source: "./media/characters/logan-grey/back-sfw.svg",
  23236. extra: 1880/1794,
  23237. bottom: 24/1904
  23238. }
  23239. },
  23240. hands: {
  23241. height: math.unit(0.84, "feet"),
  23242. name: "Hands",
  23243. image: {
  23244. source: "./media/characters/logan-grey/hands.svg"
  23245. }
  23246. },
  23247. paws: {
  23248. height: math.unit(0.72, "feet"),
  23249. name: "Paws",
  23250. image: {
  23251. source: "./media/characters/logan-grey/paws.svg"
  23252. }
  23253. },
  23254. cock: {
  23255. height: math.unit(1.45, "feet"),
  23256. name: "Cock",
  23257. image: {
  23258. source: "./media/characters/logan-grey/cock.svg"
  23259. }
  23260. },
  23261. cockAlt: {
  23262. height: math.unit(1.437, "feet"),
  23263. name: "Cock (alt)",
  23264. image: {
  23265. source: "./media/characters/logan-grey/cock-alt.svg"
  23266. }
  23267. },
  23268. },
  23269. [
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(5 + 8 / 12, "feet")
  23273. },
  23274. {
  23275. name: "The 500 Foot Femboy",
  23276. height: math.unit(500, "feet"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Megmacro",
  23281. height: math.unit(20, "miles")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(8 + 2 / 12, "feet"),
  23290. weight: math.unit(275, "lb"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/draganta/front.svg",
  23294. extra: 1177 / 1135,
  23295. bottom: 33.46 / 1212.1
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(8 + 6 / 12, "feet"),
  23303. default: true
  23304. },
  23305. {
  23306. name: "Macro",
  23307. height: math.unit(150, "feet")
  23308. },
  23309. {
  23310. name: "Megamacro",
  23311. height: math.unit(1000, "miles")
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(1.72, "m"),
  23320. weight: math.unit(80, "lb"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/voski/front.svg",
  23324. extra: 2076.22 / 2022.4,
  23325. bottom: 102.7 / 2177.3866
  23326. }
  23327. },
  23328. frontFlaccid: {
  23329. height: math.unit(1.72, "m"),
  23330. weight: math.unit(80, "lb"),
  23331. name: "Front (Flaccid)",
  23332. image: {
  23333. source: "./media/characters/voski/front-flaccid.svg",
  23334. extra: 2076.22 / 2022.4,
  23335. bottom: 102.7 / 2177.3866
  23336. }
  23337. },
  23338. frontErect: {
  23339. height: math.unit(1.72, "m"),
  23340. weight: math.unit(80, "lb"),
  23341. name: "Front (Erect)",
  23342. image: {
  23343. source: "./media/characters/voski/front-erect.svg",
  23344. extra: 2076.22 / 2022.4,
  23345. bottom: 102.7 / 2177.3866
  23346. }
  23347. },
  23348. back: {
  23349. height: math.unit(1.72, "m"),
  23350. weight: math.unit(80, "lb"),
  23351. name: "Back",
  23352. image: {
  23353. source: "./media/characters/voski/back.svg",
  23354. extra: 2104 / 2051,
  23355. bottom: 10.45 / 2113.63
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Normal",
  23362. height: math.unit(1.72, "m")
  23363. },
  23364. {
  23365. name: "Macro",
  23366. height: math.unit(55, "m"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Macro+",
  23371. height: math.unit(300, "m")
  23372. },
  23373. {
  23374. name: "Macro++",
  23375. height: math.unit(700, "m")
  23376. },
  23377. {
  23378. name: "Macro+++",
  23379. height: math.unit(4500, "m")
  23380. },
  23381. {
  23382. name: "Macro++++",
  23383. height: math.unit(45, "km")
  23384. },
  23385. {
  23386. name: "Macro+++++",
  23387. height: math.unit(1220, "km")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(2.3, "m"),
  23396. weight: math.unit(304, "kg"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/icowom-lee/front.svg",
  23400. extra: 985 / 955,
  23401. bottom: 25.4 / 1012
  23402. }
  23403. },
  23404. fronttentacles: {
  23405. height: math.unit(2.3, "m"),
  23406. weight: math.unit(304, "kg"),
  23407. name: "Front-tentacles",
  23408. image: {
  23409. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23410. extra: 985 / 955,
  23411. bottom: 25.4 / 1012
  23412. }
  23413. },
  23414. back: {
  23415. height: math.unit(2.3, "m"),
  23416. weight: math.unit(304, "kg"),
  23417. name: "Back",
  23418. image: {
  23419. source: "./media/characters/icowom-lee/back.svg",
  23420. extra: 975 / 954,
  23421. bottom: 9.5 / 985
  23422. }
  23423. },
  23424. backtentacles: {
  23425. height: math.unit(2.3, "m"),
  23426. weight: math.unit(304, "kg"),
  23427. name: "Back-tentacles",
  23428. image: {
  23429. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23430. extra: 975 / 954,
  23431. bottom: 9.5 / 985
  23432. }
  23433. },
  23434. frontDressed: {
  23435. height: math.unit(2.3, "m"),
  23436. weight: math.unit(304, "kg"),
  23437. name: "Front (Dressed)",
  23438. image: {
  23439. source: "./media/characters/icowom-lee/front-dressed.svg",
  23440. extra: 3076 / 2933,
  23441. bottom: 51.4 / 3125.1889
  23442. }
  23443. },
  23444. rump: {
  23445. height: math.unit(0.776, "meters"),
  23446. name: "Rump",
  23447. image: {
  23448. source: "./media/characters/icowom-lee/rump.svg"
  23449. }
  23450. },
  23451. genitals: {
  23452. height: math.unit(0.78, "meters"),
  23453. name: "Genitals",
  23454. image: {
  23455. source: "./media/characters/icowom-lee/genitals.svg"
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(2.3, "meters"),
  23463. default: true
  23464. },
  23465. {
  23466. name: "Macro",
  23467. height: math.unit(94, "meters"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(22, "meters"),
  23477. weight: math.unit(21000, "kg"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/shock-diamond/front.svg",
  23481. extra: 2204 / 2053,
  23482. bottom: 65 / 2239.47
  23483. }
  23484. },
  23485. frontNude: {
  23486. height: math.unit(22, "meters"),
  23487. weight: math.unit(21000, "kg"),
  23488. name: "Front (Nude)",
  23489. image: {
  23490. source: "./media/characters/shock-diamond/front-nude.svg",
  23491. extra: 2514 / 2285,
  23492. bottom: 13 / 2527.56
  23493. }
  23494. },
  23495. },
  23496. [
  23497. {
  23498. name: "Normal",
  23499. height: math.unit(3, "meters")
  23500. },
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(22, "meters"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(5 + 4 / 12, "feet"),
  23513. weight: math.unit(120, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/rory/front.svg",
  23517. extra: 1318/1241,
  23518. bottom: 42/1360
  23519. }
  23520. },
  23521. back: {
  23522. height: math.unit(5 + 4 / 12, "feet"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Back",
  23525. image: {
  23526. source: "./media/characters/rory/back.svg",
  23527. extra: 1318/1241,
  23528. bottom: 42/1360
  23529. }
  23530. },
  23531. butt: {
  23532. height: math.unit(1.74, "feet"),
  23533. name: "Butt",
  23534. image: {
  23535. source: "./media/characters/rory/butt.svg"
  23536. }
  23537. },
  23538. dick: {
  23539. height: math.unit(1.02, "feet"),
  23540. name: "Dick",
  23541. image: {
  23542. source: "./media/characters/rory/dick.svg"
  23543. }
  23544. },
  23545. paws: {
  23546. height: math.unit(1, "feet"),
  23547. name: "Paws",
  23548. image: {
  23549. source: "./media/characters/rory/paws.svg"
  23550. }
  23551. },
  23552. frontAlt: {
  23553. height: math.unit(5 + 4 / 12, "feet"),
  23554. weight: math.unit(120, "lb"),
  23555. name: "Front (Alt)",
  23556. image: {
  23557. source: "./media/characters/rory/front-alt.svg",
  23558. extra: 589 / 556,
  23559. bottom: 45.7 / 635.76
  23560. }
  23561. },
  23562. frontAltNude: {
  23563. height: math.unit(5 + 4 / 12, "feet"),
  23564. weight: math.unit(120, "lb"),
  23565. name: "Front (Alt, Nude)",
  23566. image: {
  23567. source: "./media/characters/rory/front-alt-nude.svg",
  23568. extra: 589 / 556,
  23569. bottom: 45.7 / 635.76
  23570. }
  23571. },
  23572. side: {
  23573. height: math.unit(5 + 4 / 12, "feet"),
  23574. weight: math.unit(120, "lb"),
  23575. name: "Side",
  23576. image: {
  23577. source: "./media/characters/rory/side.svg",
  23578. extra: 597 / 564,
  23579. bottom: 55 / 653
  23580. }
  23581. },
  23582. backAlt: {
  23583. height: math.unit(5 + 4 / 12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Back (Alt)",
  23586. image: {
  23587. source: "./media/characters/rory/back-alt.svg",
  23588. extra: 620 / 585,
  23589. bottom: 8.86 / 630.43
  23590. }
  23591. },
  23592. dickAlt: {
  23593. height: math.unit(0.86, "feet"),
  23594. name: "Dick (Alt)",
  23595. image: {
  23596. source: "./media/characters/rory/dick-alt.svg"
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(5 + 4 / 12, "feet"),
  23604. default: true
  23605. },
  23606. {
  23607. name: "Macro",
  23608. height: math.unit(100, "feet")
  23609. },
  23610. {
  23611. name: "Macro+",
  23612. height: math.unit(140, "feet")
  23613. },
  23614. {
  23615. name: "Macro++",
  23616. height: math.unit(300, "feet")
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23622. {
  23623. front: {
  23624. height: math.unit(5 + 9 / 12, "feet"),
  23625. weight: math.unit(190, "lb"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/sprisk/front.svg",
  23629. extra: 1225 / 1180,
  23630. bottom: 42.7 / 1266.4
  23631. }
  23632. },
  23633. frontNsfw: {
  23634. height: math.unit(5 + 9 / 12, "feet"),
  23635. weight: math.unit(190, "lb"),
  23636. name: "Front (NSFW)",
  23637. image: {
  23638. source: "./media/characters/sprisk/front-nsfw.svg",
  23639. extra: 1225 / 1180,
  23640. bottom: 42.7 / 1266.4
  23641. }
  23642. },
  23643. back: {
  23644. height: math.unit(5 + 9 / 12, "feet"),
  23645. weight: math.unit(190, "lb"),
  23646. name: "Back",
  23647. image: {
  23648. source: "./media/characters/sprisk/back.svg",
  23649. extra: 1247 / 1200,
  23650. bottom: 5.6 / 1253.04
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Tiny",
  23657. height: math.unit(2, "inches")
  23658. },
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(5 + 9 / 12, "feet"),
  23662. default: true
  23663. },
  23664. {
  23665. name: "Mini Macro",
  23666. height: math.unit(18, "feet")
  23667. },
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(100, "feet")
  23671. },
  23672. {
  23673. name: "MACRO",
  23674. height: math.unit(50, "miles")
  23675. },
  23676. {
  23677. name: "M A C R O",
  23678. height: math.unit(300, "miles")
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23684. {
  23685. side: {
  23686. height: math.unit(15.6, "meters"),
  23687. weight: math.unit(700000, "kg"),
  23688. name: "Side",
  23689. image: {
  23690. source: "./media/characters/bunsen/side.svg",
  23691. extra: 1644 / 358
  23692. }
  23693. },
  23694. foot: {
  23695. height: math.unit(1.611 * 1644 / 358, "meter"),
  23696. name: "Foot",
  23697. image: {
  23698. source: "./media/characters/bunsen/foot.svg"
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Small",
  23705. height: math.unit(10, "feet")
  23706. },
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(15.6, "meters"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(4 + 11 / 12, "feet"),
  23719. weight: math.unit(140, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/sesh/front.svg",
  23723. extra: 3420 / 3231,
  23724. bottom: 72 / 3949.5
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(4 + 11 / 12, "feet")
  23732. },
  23733. {
  23734. name: "Grown",
  23735. height: math.unit(15, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(1500, "feet")
  23741. },
  23742. {
  23743. name: "Megamacro",
  23744. height: math.unit(30, "miles")
  23745. },
  23746. {
  23747. name: "Continental",
  23748. height: math.unit(3000, "miles")
  23749. },
  23750. {
  23751. name: "Gravity Mass",
  23752. height: math.unit(300000, "miles")
  23753. },
  23754. {
  23755. name: "Planet Buster",
  23756. height: math.unit(30000000, "miles")
  23757. },
  23758. {
  23759. name: "Big",
  23760. height: math.unit(3000000000, "miles")
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(9, "feet"),
  23769. weight: math.unit(350, "lb"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/pepper/front.svg",
  23773. extra: 1448 / 1312,
  23774. bottom: 9.4 / 1457.88
  23775. }
  23776. },
  23777. back: {
  23778. height: math.unit(9, "feet"),
  23779. weight: math.unit(350, "lb"),
  23780. name: "Back",
  23781. image: {
  23782. source: "./media/characters/pepper/back.svg",
  23783. extra: 1423 / 1300,
  23784. bottom: 4.6 / 1429
  23785. }
  23786. },
  23787. maw: {
  23788. height: math.unit(0.932, "feet"),
  23789. name: "Maw",
  23790. image: {
  23791. source: "./media/characters/pepper/maw.svg"
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(9, "feet"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(6, "feet"),
  23808. weight: math.unit(150, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/maelstrom/front.svg",
  23812. extra: 2100 / 1883,
  23813. bottom: 94 / 2196.7
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Less Kaiju",
  23820. height: math.unit(200, "feet")
  23821. },
  23822. {
  23823. name: "Kaiju",
  23824. height: math.unit(400, "feet"),
  23825. default: true
  23826. },
  23827. {
  23828. name: "Kaiju-er",
  23829. height: math.unit(600, "feet")
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23835. {
  23836. front: {
  23837. height: math.unit(6 + 5 / 12, "feet"),
  23838. weight: math.unit(180, "lb"),
  23839. name: "Front",
  23840. image: {
  23841. source: "./media/characters/lexir/front.svg",
  23842. extra: 180 / 172,
  23843. bottom: 12 / 192
  23844. }
  23845. },
  23846. back: {
  23847. height: math.unit(6 + 5 / 12, "feet"),
  23848. weight: math.unit(180, "lb"),
  23849. name: "Back",
  23850. image: {
  23851. source: "./media/characters/lexir/back.svg",
  23852. extra: 1273/1201,
  23853. bottom: 39/1312
  23854. }
  23855. },
  23856. },
  23857. [
  23858. {
  23859. name: "Very Smal",
  23860. height: math.unit(1, "nm")
  23861. },
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(6 + 5 / 12, "feet"),
  23865. default: true
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(1, "mile")
  23870. },
  23871. {
  23872. name: "Megamacro",
  23873. height: math.unit(50, "miles")
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23879. {
  23880. front: {
  23881. height: math.unit(1.5, "meters"),
  23882. weight: math.unit(100, "lb"),
  23883. name: "Front",
  23884. image: {
  23885. source: "./media/characters/maksio/front.svg",
  23886. extra: 1549 / 1531,
  23887. bottom: 123.7 / 1674.5429
  23888. }
  23889. },
  23890. back: {
  23891. height: math.unit(1.5, "meters"),
  23892. weight: math.unit(100, "lb"),
  23893. name: "Back",
  23894. image: {
  23895. source: "./media/characters/maksio/back.svg",
  23896. extra: 1541 / 1509,
  23897. bottom: 97 / 1639
  23898. }
  23899. },
  23900. hand: {
  23901. height: math.unit(0.621, "feet"),
  23902. name: "Hand",
  23903. image: {
  23904. source: "./media/characters/maksio/hand.svg"
  23905. }
  23906. },
  23907. foot: {
  23908. height: math.unit(1.611, "feet"),
  23909. name: "Foot",
  23910. image: {
  23911. source: "./media/characters/maksio/foot.svg"
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Shrunken",
  23918. height: math.unit(10, "cm")
  23919. },
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(150, "cm"),
  23923. default: true
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(100, "feet"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/erza-bear/front.svg",
  23935. extra: 2449 / 2390,
  23936. bottom: 46 / 2494
  23937. }
  23938. },
  23939. back: {
  23940. height: math.unit(100, "feet"),
  23941. name: "Back",
  23942. image: {
  23943. source: "./media/characters/erza-bear/back.svg",
  23944. extra: 2489 / 2430,
  23945. bottom: 85.4 / 2480
  23946. }
  23947. },
  23948. tail: {
  23949. height: math.unit(42, "feet"),
  23950. name: "Tail",
  23951. image: {
  23952. source: "./media/characters/erza-bear/tail.svg"
  23953. }
  23954. },
  23955. tongue: {
  23956. height: math.unit(8, "feet"),
  23957. name: "Tongue",
  23958. image: {
  23959. source: "./media/characters/erza-bear/tongue.svg"
  23960. }
  23961. },
  23962. dick: {
  23963. height: math.unit(10.5, "feet"),
  23964. name: "Dick",
  23965. image: {
  23966. source: "./media/characters/erza-bear/dick.svg"
  23967. }
  23968. },
  23969. dickVertical: {
  23970. height: math.unit(16.9, "feet"),
  23971. name: "Dick (Vertical)",
  23972. image: {
  23973. source: "./media/characters/erza-bear/dick-vertical.svg"
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(100, "feet"),
  23981. default: true
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23987. {
  23988. front: {
  23989. height: math.unit(172, "cm"),
  23990. weight: math.unit(73, "kg"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/violet-flor/front.svg",
  23994. extra: 1530 / 1442,
  23995. bottom: 61.9 / 1588.8
  23996. }
  23997. },
  23998. back: {
  23999. height: math.unit(180, "cm"),
  24000. weight: math.unit(73, "kg"),
  24001. name: "Back",
  24002. image: {
  24003. source: "./media/characters/violet-flor/back.svg",
  24004. extra: 1692 / 1630,
  24005. bottom: 20 / 1712
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Normal",
  24012. height: math.unit(172, "cm"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(6, "feet"),
  24022. weight: math.unit(220, "lb"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/lynn-rhea/front.svg",
  24026. extra: 310 / 273
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(6, "feet"),
  24031. weight: math.unit(220, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/lynn-rhea/back.svg",
  24035. extra: 310 / 273
  24036. }
  24037. },
  24038. dicks: {
  24039. height: math.unit(0.9, "feet"),
  24040. name: "Dicks",
  24041. image: {
  24042. source: "./media/characters/lynn-rhea/dicks.svg"
  24043. }
  24044. },
  24045. slit: {
  24046. height: math.unit(0.4, "feet"),
  24047. name: "Slit",
  24048. image: {
  24049. source: "./media/characters/lynn-rhea/slit.svg"
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Micro",
  24056. height: math.unit(1, "inch")
  24057. },
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(60, "feet"),
  24061. default: true
  24062. },
  24063. {
  24064. name: "Megamacro",
  24065. height: math.unit(2, "miles")
  24066. },
  24067. {
  24068. name: "Gigamacro",
  24069. height: math.unit(3, "earths")
  24070. },
  24071. {
  24072. name: "Galactic",
  24073. height: math.unit(0.8, "galaxies")
  24074. },
  24075. ]
  24076. ))
  24077. characterMakers.push(() => makeCharacter(
  24078. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24079. {
  24080. front: {
  24081. height: math.unit(1600, "feet"),
  24082. weight: math.unit(85758785169, "kg"),
  24083. name: "Front",
  24084. image: {
  24085. source: "./media/characters/valathos/front.svg",
  24086. extra: 1451 / 1339
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(1600, "feet"),
  24094. default: true
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(7 + 5 / 12, "feet"),
  24103. weight: math.unit(300, "lb"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/azula/front.svg",
  24107. extra: 3208 / 2880,
  24108. bottom: 80.2 / 3277
  24109. }
  24110. },
  24111. back: {
  24112. height: math.unit(7 + 5 / 12, "feet"),
  24113. weight: math.unit(300, "lb"),
  24114. name: "Back",
  24115. image: {
  24116. source: "./media/characters/azula/back.svg",
  24117. extra: 3169 / 2822,
  24118. bottom: 150.6 / 3321
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(7 + 5 / 12, "feet"),
  24126. default: true
  24127. },
  24128. {
  24129. name: "Big",
  24130. height: math.unit(20, "feet")
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24136. {
  24137. front: {
  24138. height: math.unit(5 + 1 / 12, "feet"),
  24139. weight: math.unit(110, "lb"),
  24140. name: "Front",
  24141. image: {
  24142. source: "./media/characters/rupert/front.svg",
  24143. extra: 1549 / 1495,
  24144. bottom: 54.2 / 1604.4
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Normal",
  24151. height: math.unit(5 + 1 / 12, "feet"),
  24152. default: true
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24158. {
  24159. front: {
  24160. height: math.unit(8 + 4 / 12, "feet"),
  24161. weight: math.unit(350, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/sheera-castellar/front.svg",
  24165. extra: 1957 / 1894,
  24166. bottom: 26.97 / 1975.017
  24167. }
  24168. },
  24169. side: {
  24170. height: math.unit(8 + 4 / 12, "feet"),
  24171. weight: math.unit(350, "lb"),
  24172. name: "Side",
  24173. image: {
  24174. source: "./media/characters/sheera-castellar/side.svg",
  24175. extra: 1957 / 1894
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(8 + 4 / 12, "feet"),
  24180. weight: math.unit(350, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/sheera-castellar/back.svg",
  24184. extra: 1957 / 1894
  24185. }
  24186. },
  24187. angled: {
  24188. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24189. weight: math.unit(350, "lb"),
  24190. name: "Angled",
  24191. image: {
  24192. source: "./media/characters/sheera-castellar/angled.svg",
  24193. extra: 1807 / 1707,
  24194. bottom: 68 / 1875
  24195. }
  24196. },
  24197. genitals: {
  24198. height: math.unit(2.2, "feet"),
  24199. name: "Genitals",
  24200. image: {
  24201. source: "./media/characters/sheera-castellar/genitals.svg"
  24202. }
  24203. },
  24204. taur: {
  24205. height: math.unit(10 + 6/12, "feet"),
  24206. name: "Taur",
  24207. image: {
  24208. source: "./media/characters/sheera-castellar/taur.svg",
  24209. extra: 2017/1909,
  24210. bottom: 185/2202
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(8 + 4 / 12, "feet")
  24218. },
  24219. {
  24220. name: "Macro",
  24221. height: math.unit(150, "feet"),
  24222. default: true
  24223. },
  24224. {
  24225. name: "Macro+",
  24226. height: math.unit(800, "feet")
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(6, "feet"),
  24235. weight: math.unit(150, "lb"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/jaipur/front.svg",
  24239. extra: 3860 / 3731,
  24240. bottom: 287 / 4140
  24241. }
  24242. },
  24243. back: {
  24244. height: math.unit(6, "feet"),
  24245. weight: math.unit(150, "lb"),
  24246. name: "Back",
  24247. image: {
  24248. source: "./media/characters/jaipur/back.svg",
  24249. extra: 1637/1561,
  24250. bottom: 154/1791
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(1.85, "meters"),
  24258. default: true
  24259. },
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(150, "meters")
  24263. },
  24264. {
  24265. name: "Macro+",
  24266. height: math.unit(0.5, "miles")
  24267. },
  24268. {
  24269. name: "Macro++",
  24270. height: math.unit(2.5, "miles")
  24271. },
  24272. {
  24273. name: "Macro+++",
  24274. height: math.unit(12, "miles")
  24275. },
  24276. {
  24277. name: "Macro++++",
  24278. height: math.unit(120, "miles")
  24279. },
  24280. {
  24281. name: "Macro+++++",
  24282. height: math.unit(1200, "miles")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(6, "feet"),
  24291. weight: math.unit(150, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/sheila-wolf/front.svg",
  24295. extra: 1931 / 1808,
  24296. bottom: 29.5 / 1960
  24297. }
  24298. },
  24299. dick: {
  24300. height: math.unit(1.464, "feet"),
  24301. name: "Dick",
  24302. image: {
  24303. source: "./media/characters/sheila-wolf/dick.svg"
  24304. }
  24305. },
  24306. muzzle: {
  24307. height: math.unit(0.513, "feet"),
  24308. name: "Muzzle",
  24309. image: {
  24310. source: "./media/characters/sheila-wolf/muzzle.svg"
  24311. }
  24312. },
  24313. },
  24314. [
  24315. {
  24316. name: "Macro",
  24317. height: math.unit(70, "feet"),
  24318. default: true
  24319. },
  24320. ]
  24321. ))
  24322. characterMakers.push(() => makeCharacter(
  24323. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24324. {
  24325. front: {
  24326. height: math.unit(32, "meters"),
  24327. weight: math.unit(300000, "kg"),
  24328. name: "Front",
  24329. image: {
  24330. source: "./media/characters/almor/front.svg",
  24331. extra: 1408 / 1322,
  24332. bottom: 94.6 / 1506.5
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Macro",
  24339. height: math.unit(32, "meters"),
  24340. default: true
  24341. },
  24342. ]
  24343. ))
  24344. characterMakers.push(() => makeCharacter(
  24345. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24346. {
  24347. front: {
  24348. height: math.unit(7, "feet"),
  24349. weight: math.unit(200, "lb"),
  24350. name: "Front",
  24351. image: {
  24352. source: "./media/characters/silver/front.svg",
  24353. extra: 472.1 / 450.5,
  24354. bottom: 26.5 / 499.424
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(7, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(800, "feet")
  24367. },
  24368. {
  24369. name: "Megamacro",
  24370. height: math.unit(250, "miles")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24376. {
  24377. front: {
  24378. height: math.unit(6, "feet"),
  24379. weight: math.unit(150, "lb"),
  24380. name: "Front",
  24381. image: {
  24382. source: "./media/characters/pliskin/front.svg",
  24383. extra: 1469 / 1359,
  24384. bottom: 70 / 1540
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Micro",
  24391. height: math.unit(3, "inches")
  24392. },
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(5 + 11 / 12, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(120, "feet")
  24401. },
  24402. ]
  24403. ))
  24404. characterMakers.push(() => makeCharacter(
  24405. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24406. {
  24407. front: {
  24408. height: math.unit(6, "feet"),
  24409. weight: math.unit(150, "lb"),
  24410. name: "Front",
  24411. image: {
  24412. source: "./media/characters/sammy/front.svg",
  24413. extra: 1193 / 1089,
  24414. bottom: 30.5 / 1226
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Macro",
  24421. height: math.unit(1700, "feet"),
  24422. default: true
  24423. },
  24424. {
  24425. name: "Examacro",
  24426. height: math.unit(2.5e9, "lightyears")
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(21, "meters"),
  24435. weight: math.unit(12, "tonnes"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/kuru/front.svg",
  24439. extra: 4301 / 3785,
  24440. bottom: 371.3 / 4691
  24441. }
  24442. },
  24443. },
  24444. [
  24445. {
  24446. name: "Macro",
  24447. height: math.unit(21, "meters"),
  24448. default: true
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24454. {
  24455. front: {
  24456. height: math.unit(23, "meters"),
  24457. weight: math.unit(12.2, "tonnes"),
  24458. name: "Front",
  24459. image: {
  24460. source: "./media/characters/rakka/front.svg",
  24461. extra: 4670 / 4169,
  24462. bottom: 301 / 4968.7
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(23, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(6, "feet"),
  24479. weight: math.unit(150, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/rhys-feline/front.svg",
  24483. extra: 2488 / 2308,
  24484. bottom: 35.67 / 2519.19
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Really Small",
  24491. height: math.unit(1, "nm")
  24492. },
  24493. {
  24494. name: "Micro",
  24495. height: math.unit(4, "inches")
  24496. },
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(4 + 10 / 12, "feet"),
  24500. default: true
  24501. },
  24502. {
  24503. name: "Macro",
  24504. height: math.unit(100, "feet")
  24505. },
  24506. {
  24507. name: "Megamacto",
  24508. height: math.unit(50, "miles")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24514. {
  24515. side: {
  24516. height: math.unit(30, "feet"),
  24517. weight: math.unit(35000, "kg"),
  24518. name: "Side",
  24519. image: {
  24520. source: "./media/characters/alydar/side.svg",
  24521. extra: 234 / 222,
  24522. bottom: 6.5 / 241
  24523. }
  24524. },
  24525. front: {
  24526. height: math.unit(30, "feet"),
  24527. weight: math.unit(35000, "kg"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/alydar/front.svg",
  24531. extra: 223.37 / 210.2,
  24532. bottom: 22.3 / 246.76
  24533. }
  24534. },
  24535. top: {
  24536. height: math.unit(64.54, "feet"),
  24537. weight: math.unit(35000, "kg"),
  24538. name: "Top",
  24539. image: {
  24540. source: "./media/characters/alydar/top.svg"
  24541. }
  24542. },
  24543. anthro: {
  24544. height: math.unit(30, "feet"),
  24545. weight: math.unit(9000, "kg"),
  24546. name: "Anthro",
  24547. image: {
  24548. source: "./media/characters/alydar/anthro.svg",
  24549. extra: 432 / 421,
  24550. bottom: 7.18 / 440
  24551. }
  24552. },
  24553. maw: {
  24554. height: math.unit(11.693, "feet"),
  24555. name: "Maw",
  24556. image: {
  24557. source: "./media/characters/alydar/maw.svg"
  24558. }
  24559. },
  24560. head: {
  24561. height: math.unit(11.693, "feet"),
  24562. name: "Head",
  24563. image: {
  24564. source: "./media/characters/alydar/head.svg"
  24565. }
  24566. },
  24567. headAlt: {
  24568. height: math.unit(12.861, "feet"),
  24569. name: "Head (Alt)",
  24570. image: {
  24571. source: "./media/characters/alydar/head-alt.svg"
  24572. }
  24573. },
  24574. wing: {
  24575. height: math.unit(20.712, "feet"),
  24576. name: "Wing",
  24577. image: {
  24578. source: "./media/characters/alydar/wing.svg"
  24579. }
  24580. },
  24581. wingFeather: {
  24582. height: math.unit(9.662, "feet"),
  24583. name: "Wing Feather",
  24584. image: {
  24585. source: "./media/characters/alydar/wing-feather.svg"
  24586. }
  24587. },
  24588. countourFeather: {
  24589. height: math.unit(4.154, "feet"),
  24590. name: "Contour Feather",
  24591. image: {
  24592. source: "./media/characters/alydar/contour-feather.svg"
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Diplomatic",
  24599. height: math.unit(13, "feet"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Small",
  24604. height: math.unit(30, "feet")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(95, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Large",
  24613. height: math.unit(285, "feet")
  24614. },
  24615. {
  24616. name: "Incomprehensible",
  24617. height: math.unit(450, "megameters")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24623. {
  24624. side: {
  24625. height: math.unit(11, "feet"),
  24626. weight: math.unit(1750, "kg"),
  24627. name: "Side",
  24628. image: {
  24629. source: "./media/characters/selicia/side.svg",
  24630. extra: 440 / 396,
  24631. bottom: 24.8 / 465.979
  24632. }
  24633. },
  24634. maw: {
  24635. height: math.unit(4.665, "feet"),
  24636. name: "Maw",
  24637. image: {
  24638. source: "./media/characters/selicia/maw.svg"
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(11, "feet"),
  24646. default: true
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24652. {
  24653. side: {
  24654. height: math.unit(2 + 6 / 12, "feet"),
  24655. weight: math.unit(30, "lb"),
  24656. name: "Side",
  24657. image: {
  24658. source: "./media/characters/layla/side.svg",
  24659. extra: 244 / 188,
  24660. bottom: 18.2 / 262.1
  24661. }
  24662. },
  24663. back: {
  24664. height: math.unit(2 + 6 / 12, "feet"),
  24665. weight: math.unit(30, "lb"),
  24666. name: "Back",
  24667. image: {
  24668. source: "./media/characters/layla/back.svg",
  24669. extra: 308 / 241.5,
  24670. bottom: 8.9 / 316.8
  24671. }
  24672. },
  24673. cumming: {
  24674. height: math.unit(2 + 6 / 12, "feet"),
  24675. weight: math.unit(30, "lb"),
  24676. name: "Cumming",
  24677. image: {
  24678. source: "./media/characters/layla/cumming.svg",
  24679. extra: 342 / 279,
  24680. bottom: 595 / 938
  24681. }
  24682. },
  24683. dickFlaccid: {
  24684. height: math.unit(2.595, "feet"),
  24685. name: "Flaccid Genitals",
  24686. image: {
  24687. source: "./media/characters/layla/dick-flaccid.svg"
  24688. }
  24689. },
  24690. dickErect: {
  24691. height: math.unit(2.359, "feet"),
  24692. name: "Erect Genitals",
  24693. image: {
  24694. source: "./media/characters/layla/dick-erect.svg"
  24695. }
  24696. },
  24697. dragon: {
  24698. height: math.unit(40, "feet"),
  24699. name: "Dragon",
  24700. image: {
  24701. source: "./media/characters/layla/dragon.svg",
  24702. extra: 610/535,
  24703. bottom: 367/977
  24704. }
  24705. },
  24706. taur: {
  24707. height: math.unit(30, "feet"),
  24708. name: "Taur",
  24709. image: {
  24710. source: "./media/characters/layla/taur.svg",
  24711. extra: 1268/1199,
  24712. bottom: 112/1380
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Micro",
  24719. height: math.unit(1, "inch")
  24720. },
  24721. {
  24722. name: "Small",
  24723. height: math.unit(1, "foot")
  24724. },
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(2 + 6 / 12, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(200, "feet")
  24733. },
  24734. {
  24735. name: "Megamacro",
  24736. height: math.unit(1000, "miles")
  24737. },
  24738. {
  24739. name: "Planetary",
  24740. height: math.unit(8000, "miles")
  24741. },
  24742. {
  24743. name: "True Layla",
  24744. height: math.unit(200000 * 7, "multiverses")
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24750. {
  24751. back: {
  24752. height: math.unit(10.5, "feet"),
  24753. weight: math.unit(800, "lb"),
  24754. name: "Back",
  24755. image: {
  24756. source: "./media/characters/knox/back.svg",
  24757. extra: 1486 / 1089,
  24758. bottom: 107 / 1601.4
  24759. }
  24760. },
  24761. side: {
  24762. height: math.unit(10.5, "feet"),
  24763. weight: math.unit(800, "lb"),
  24764. name: "Side",
  24765. image: {
  24766. source: "./media/characters/knox/side.svg",
  24767. extra: 244 / 218,
  24768. bottom: 14 / 260
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Compact",
  24775. height: math.unit(10.5, "feet"),
  24776. default: true
  24777. },
  24778. {
  24779. name: "Dynamax",
  24780. height: math.unit(210, "feet")
  24781. },
  24782. {
  24783. name: "Full Macro",
  24784. height: math.unit(850, "feet")
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(28, "feet"),
  24793. weight: math.unit(10500, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/kayda/front.svg",
  24797. extra: 1536 / 1428,
  24798. bottom: 68.7 / 1603
  24799. }
  24800. },
  24801. back: {
  24802. height: math.unit(28, "feet"),
  24803. weight: math.unit(10500, "lb"),
  24804. name: "Back",
  24805. image: {
  24806. source: "./media/characters/kayda/back.svg",
  24807. extra: 1557 / 1464,
  24808. bottom: 39.5 / 1597.49
  24809. }
  24810. },
  24811. dick: {
  24812. height: math.unit(3.858, "feet"),
  24813. name: "Dick",
  24814. image: {
  24815. source: "./media/characters/kayda/dick.svg"
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Macro",
  24822. height: math.unit(28, "feet"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(10 + 11 / 12, "feet"),
  24832. weight: math.unit(1400, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/brian/front.svg",
  24836. extra: 737 / 692,
  24837. bottom: 55.4 / 785
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(10 + 11 / 12, "feet"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(5 + 8 / 12, "feet"),
  24854. weight: math.unit(140, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/khemri/front.svg",
  24858. extra: 4780 / 4059,
  24859. bottom: 80.1 / 4859.25
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Micro",
  24866. height: math.unit(6, "inches")
  24867. },
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(5 + 8 / 12, "feet"),
  24871. default: true
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24877. {
  24878. front: {
  24879. height: math.unit(13, "feet"),
  24880. weight: math.unit(1700, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/felix-braveheart/front.svg",
  24884. extra: 1222 / 1157,
  24885. bottom: 53.2 / 1280
  24886. }
  24887. },
  24888. back: {
  24889. height: math.unit(13, "feet"),
  24890. weight: math.unit(1700, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/felix-braveheart/back.svg",
  24894. extra: 1277 / 1203,
  24895. bottom: 50.2 / 1327
  24896. }
  24897. },
  24898. feral: {
  24899. height: math.unit(6, "feet"),
  24900. weight: math.unit(400, "lb"),
  24901. name: "Feral",
  24902. image: {
  24903. source: "./media/characters/felix-braveheart/feral.svg",
  24904. extra: 682 / 625,
  24905. bottom: 6.9 / 688
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(13, "feet"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24919. {
  24920. side: {
  24921. height: math.unit(5 + 11 / 12, "feet"),
  24922. weight: math.unit(1400, "lb"),
  24923. name: "Side",
  24924. image: {
  24925. source: "./media/characters/shadow-blade/side.svg",
  24926. extra: 1726 / 1267,
  24927. bottom: 58.4 / 1785
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(5 + 11 / 12, "feet"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(1 + 6 / 12, "feet"),
  24944. weight: math.unit(25, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/karla-halldor/front.svg",
  24948. extra: 1459 / 1383,
  24949. bottom: 12 / 1472
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(1 + 6 / 12, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(6 + 2 / 12, "feet"),
  24966. weight: math.unit(160, "lb"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/ariam/front.svg",
  24970. extra: 1073/976,
  24971. bottom: 52/1125
  24972. }
  24973. },
  24974. back: {
  24975. height: math.unit(6 + 2/12, "feet"),
  24976. weight: math.unit(160, "lb"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/ariam/back.svg",
  24980. extra: 1103/1023,
  24981. bottom: 9/1112
  24982. }
  24983. },
  24984. dressed: {
  24985. height: math.unit(6 + 2/12, "feet"),
  24986. weight: math.unit(160, "lb"),
  24987. name: "Dressed",
  24988. image: {
  24989. source: "./media/characters/ariam/dressed.svg",
  24990. extra: 1099/1009,
  24991. bottom: 25/1124
  24992. }
  24993. },
  24994. squatting: {
  24995. height: math.unit(4.1, "feet"),
  24996. weight: math.unit(160, "lb"),
  24997. name: "Squatting",
  24998. image: {
  24999. source: "./media/characters/ariam/squatting.svg",
  25000. extra: 2617 / 2112,
  25001. bottom: 61.2 / 2681,
  25002. }
  25003. },
  25004. },
  25005. [
  25006. {
  25007. name: "Normal",
  25008. height: math.unit(6 + 2 / 12, "feet"),
  25009. default: true
  25010. },
  25011. {
  25012. name: "Normal+",
  25013. height: math.unit(4, "meters")
  25014. },
  25015. {
  25016. name: "Macro",
  25017. height: math.unit(50, "meters")
  25018. },
  25019. {
  25020. name: "Macro+",
  25021. height: math.unit(100, "meters")
  25022. },
  25023. {
  25024. name: "Megamacro",
  25025. height: math.unit(20, "km")
  25026. },
  25027. {
  25028. name: "Caretaker",
  25029. height: math.unit(444, "megameters")
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(1.67, "meters"),
  25038. weight: math.unit(140, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25042. extra: 438 / 410,
  25043. bottom: 0.75 / 439
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Shrunken",
  25050. height: math.unit(7.6, "cm")
  25051. },
  25052. {
  25053. name: "Human Scale",
  25054. height: math.unit(1.67, "meters")
  25055. },
  25056. {
  25057. name: "Wolxi Scale",
  25058. height: math.unit(36.7, "meters"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(1.73, "meters"),
  25068. weight: math.unit(240, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/izue-two-mothers/front.svg",
  25072. extra: 469 / 437,
  25073. bottom: 1.24 / 470.6
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Shrunken",
  25080. height: math.unit(7.86, "cm")
  25081. },
  25082. {
  25083. name: "Human Scale",
  25084. height: math.unit(1.73, "meters")
  25085. },
  25086. {
  25087. name: "Wolxi Scale",
  25088. height: math.unit(38, "meters"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(1.55, "meters"),
  25098. weight: math.unit(120, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/teeku-love-shack/front.svg",
  25102. extra: 387 / 362,
  25103. bottom: 1.51 / 388
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Shrunken",
  25110. height: math.unit(7, "cm")
  25111. },
  25112. {
  25113. name: "Human Scale",
  25114. height: math.unit(1.55, "meters")
  25115. },
  25116. {
  25117. name: "Wolxi Scale",
  25118. height: math.unit(34.1, "meters"),
  25119. default: true
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(1.83, "meters"),
  25128. weight: math.unit(135, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/dejma-the-red/front.svg",
  25132. extra: 480 / 458,
  25133. bottom: 1.8 / 482
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Shrunken",
  25140. height: math.unit(8.3, "cm")
  25141. },
  25142. {
  25143. name: "Human Scale",
  25144. height: math.unit(1.83, "meters")
  25145. },
  25146. {
  25147. name: "Wolxi Scale",
  25148. height: math.unit(40, "meters"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(1.78, "meters"),
  25158. weight: math.unit(65, "kg"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/aki/front.svg",
  25162. extra: 452 / 415
  25163. }
  25164. },
  25165. frontNsfw: {
  25166. height: math.unit(1.78, "meters"),
  25167. weight: math.unit(65, "kg"),
  25168. name: "Front (NSFW)",
  25169. image: {
  25170. source: "./media/characters/aki/front-nsfw.svg",
  25171. extra: 452 / 415
  25172. }
  25173. },
  25174. back: {
  25175. height: math.unit(1.78, "meters"),
  25176. weight: math.unit(65, "kg"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/aki/back.svg",
  25180. extra: 452 / 415
  25181. }
  25182. },
  25183. rump: {
  25184. height: math.unit(2.05, "feet"),
  25185. name: "Rump",
  25186. image: {
  25187. source: "./media/characters/aki/rump.svg"
  25188. }
  25189. },
  25190. dick: {
  25191. height: math.unit(0.95, "feet"),
  25192. name: "Dick",
  25193. image: {
  25194. source: "./media/characters/aki/dick.svg"
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Micro",
  25201. height: math.unit(15, "cm")
  25202. },
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(178, "cm"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(214, "m")
  25211. },
  25212. {
  25213. name: "Macro+",
  25214. height: math.unit(534, "m")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(5 + 5 / 12, "feet"),
  25223. weight: math.unit(120, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/ari/front.svg",
  25227. extra: 1550/1471,
  25228. bottom: 39/1589
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(5 + 5 / 12, "feet")
  25236. },
  25237. {
  25238. name: "Macro",
  25239. height: math.unit(100, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Megamacro",
  25244. height: math.unit(100, "miles")
  25245. },
  25246. {
  25247. name: "Gigamacro",
  25248. height: math.unit(80000, "miles")
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25254. {
  25255. side: {
  25256. height: math.unit(9, "feet"),
  25257. weight: math.unit(400, "kg"),
  25258. name: "Side",
  25259. image: {
  25260. source: "./media/characters/bolt/side.svg",
  25261. extra: 1126 / 896,
  25262. bottom: 60 / 1187.3,
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Micro",
  25269. height: math.unit(5, "inches")
  25270. },
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(9, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Macro",
  25278. height: math.unit(700, "feet")
  25279. },
  25280. {
  25281. name: "Max Size",
  25282. height: math.unit(1.52e22, "yottameters")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(4.3, "meters"),
  25291. weight: math.unit(3, "tons"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/draekon-sylviar/front.svg",
  25295. extra: 2072/1512,
  25296. bottom: 74/2146
  25297. }
  25298. },
  25299. back: {
  25300. height: math.unit(4.3, "meters"),
  25301. weight: math.unit(3, "tons"),
  25302. name: "Back",
  25303. image: {
  25304. source: "./media/characters/draekon-sylviar/back.svg",
  25305. extra: 1639/1483,
  25306. bottom: 41/1680
  25307. }
  25308. },
  25309. feral: {
  25310. height: math.unit(1.15, "meters"),
  25311. weight: math.unit(3, "tons"),
  25312. name: "Feral",
  25313. image: {
  25314. source: "./media/characters/draekon-sylviar/feral.svg",
  25315. extra: 1033/395,
  25316. bottom: 130/1163
  25317. }
  25318. },
  25319. maw: {
  25320. height: math.unit(1.3, "meters"),
  25321. name: "Maw",
  25322. image: {
  25323. source: "./media/characters/draekon-sylviar/maw.svg"
  25324. }
  25325. },
  25326. mawSeparated: {
  25327. height: math.unit(1.53, "meters"),
  25328. name: "Separated Maw",
  25329. image: {
  25330. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25331. }
  25332. },
  25333. tail: {
  25334. height: math.unit(1.15, "meters"),
  25335. name: "Tail",
  25336. image: {
  25337. source: "./media/characters/draekon-sylviar/tail.svg"
  25338. }
  25339. },
  25340. tailDick: {
  25341. height: math.unit(1.15, "meters"),
  25342. name: "Tail (Dick)",
  25343. image: {
  25344. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25345. }
  25346. },
  25347. tailDickSeparated: {
  25348. height: math.unit(1.19, "meters"),
  25349. name: "Tail (Separated Dick)",
  25350. image: {
  25351. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25352. }
  25353. },
  25354. slit: {
  25355. height: math.unit(1, "meters"),
  25356. name: "Slit",
  25357. image: {
  25358. source: "./media/characters/draekon-sylviar/slit.svg"
  25359. }
  25360. },
  25361. dick: {
  25362. height: math.unit(1.15, "meters"),
  25363. name: "Dick",
  25364. image: {
  25365. source: "./media/characters/draekon-sylviar/dick.svg"
  25366. }
  25367. },
  25368. dickSeparated: {
  25369. height: math.unit(1.1, "meters"),
  25370. name: "Separated Dick",
  25371. image: {
  25372. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25373. }
  25374. },
  25375. sheath: {
  25376. height: math.unit(1.15, "meters"),
  25377. name: "Sheath",
  25378. image: {
  25379. source: "./media/characters/draekon-sylviar/sheath.svg"
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Small",
  25386. height: math.unit(4.53 / 2, "meters"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(4.53, "meters"),
  25392. default: true
  25393. },
  25394. {
  25395. name: "Large",
  25396. height: math.unit(4.53 * 2, "meters"),
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(6 + 2 / 12, "feet"),
  25405. weight: math.unit(180, "lb"),
  25406. name: "Front",
  25407. image: {
  25408. source: "./media/characters/brawler/front.svg",
  25409. extra: 3301 / 3027,
  25410. bottom: 138 / 3439
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(6 + 2 / 12, "feet"),
  25418. default: true
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(11, "feet"),
  25427. weight: math.unit(1000, "lb"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/alex/front.svg",
  25431. bottom: 44.5 / 620
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Micro",
  25438. height: math.unit(5, "inches")
  25439. },
  25440. {
  25441. name: "Normal",
  25442. height: math.unit(11, "feet"),
  25443. default: true
  25444. },
  25445. {
  25446. name: "Macro",
  25447. height: math.unit(9.5e9, "feet")
  25448. },
  25449. {
  25450. name: "Max Size",
  25451. height: math.unit(1.4e283, "yottameters")
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25457. {
  25458. female: {
  25459. height: math.unit(29.9, "m"),
  25460. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25461. name: "Female",
  25462. image: {
  25463. source: "./media/characters/zenari/female.svg",
  25464. extra: 3281.6 / 3217,
  25465. bottom: 72.2 / 3353
  25466. }
  25467. },
  25468. male: {
  25469. height: math.unit(27.7, "m"),
  25470. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25471. name: "Male",
  25472. image: {
  25473. source: "./media/characters/zenari/male.svg",
  25474. extra: 3008 / 2991,
  25475. bottom: 54.6 / 3069
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(29.7, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25489. {
  25490. female: {
  25491. height: math.unit(23.8, "m"),
  25492. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25493. name: "Female",
  25494. image: {
  25495. source: "./media/characters/mactarian/female.svg",
  25496. extra: 2662 / 2569,
  25497. bottom: 73 / 2736
  25498. }
  25499. },
  25500. male: {
  25501. height: math.unit(23.8, "m"),
  25502. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25503. name: "Male",
  25504. image: {
  25505. source: "./media/characters/mactarian/male.svg",
  25506. extra: 2673 / 2600,
  25507. bottom: 76 / 2750
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Macro",
  25514. height: math.unit(23.8, "meters"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25521. {
  25522. female: {
  25523. height: math.unit(19.3, "m"),
  25524. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25525. name: "Female",
  25526. image: {
  25527. source: "./media/characters/umok/female.svg",
  25528. extra: 2186 / 2078,
  25529. bottom: 87 / 2277
  25530. }
  25531. },
  25532. male: {
  25533. height: math.unit(19.5, "m"),
  25534. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25535. name: "Male",
  25536. image: {
  25537. source: "./media/characters/umok/male.svg",
  25538. extra: 2233 / 2140,
  25539. bottom: 24.4 / 2258
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Macro",
  25546. height: math.unit(19.3, "meters"),
  25547. default: true
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25553. {
  25554. female: {
  25555. height: math.unit(26.15, "m"),
  25556. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25557. name: "Female",
  25558. image: {
  25559. source: "./media/characters/joraxian/female.svg",
  25560. extra: 2912 / 2824,
  25561. bottom: 36 / 2956
  25562. }
  25563. },
  25564. male: {
  25565. height: math.unit(25.4, "m"),
  25566. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25567. name: "Male",
  25568. image: {
  25569. source: "./media/characters/joraxian/male.svg",
  25570. extra: 2877 / 2721,
  25571. bottom: 82 / 2967
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(26.15, "meters"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25585. {
  25586. female: {
  25587. height: math.unit(21.6, "m"),
  25588. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25589. name: "Female",
  25590. image: {
  25591. source: "./media/characters/sthara/female.svg",
  25592. extra: 2516 / 2347,
  25593. bottom: 21.5 / 2537
  25594. }
  25595. },
  25596. male: {
  25597. height: math.unit(24, "m"),
  25598. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25599. name: "Male",
  25600. image: {
  25601. source: "./media/characters/sthara/male.svg",
  25602. extra: 2732 / 2607,
  25603. bottom: 23 / 2732
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Macro",
  25610. height: math.unit(21.6, "meters"),
  25611. default: true
  25612. },
  25613. ]
  25614. ))
  25615. characterMakers.push(() => makeCharacter(
  25616. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25617. {
  25618. front: {
  25619. height: math.unit(6 + 4 / 12, "feet"),
  25620. weight: math.unit(175, "lb"),
  25621. name: "Front",
  25622. image: {
  25623. source: "./media/characters/luka-bryzant/front.svg",
  25624. extra: 311 / 289,
  25625. bottom: 4 / 315
  25626. }
  25627. },
  25628. back: {
  25629. height: math.unit(6 + 4 / 12, "feet"),
  25630. weight: math.unit(175, "lb"),
  25631. name: "Back",
  25632. image: {
  25633. source: "./media/characters/luka-bryzant/back.svg",
  25634. extra: 311 / 289,
  25635. bottom: 3.8 / 313.7
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Micro",
  25642. height: math.unit(10, "inches")
  25643. },
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(6 + 4 / 12, "feet"),
  25647. default: true
  25648. },
  25649. {
  25650. name: "Large",
  25651. height: math.unit(12, "feet")
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25657. {
  25658. front: {
  25659. height: math.unit(5 + 7 / 12, "feet"),
  25660. weight: math.unit(185, "lb"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/aman-aquila/front.svg",
  25664. extra: 1013 / 976,
  25665. bottom: 45.6 / 1057
  25666. }
  25667. },
  25668. side: {
  25669. height: math.unit(5 + 7 / 12, "feet"),
  25670. weight: math.unit(185, "lb"),
  25671. name: "Side",
  25672. image: {
  25673. source: "./media/characters/aman-aquila/side.svg",
  25674. extra: 1054 / 1011,
  25675. bottom: 15 / 1070
  25676. }
  25677. },
  25678. back: {
  25679. height: math.unit(5 + 7 / 12, "feet"),
  25680. weight: math.unit(185, "lb"),
  25681. name: "Back",
  25682. image: {
  25683. source: "./media/characters/aman-aquila/back.svg",
  25684. extra: 1026 / 970,
  25685. bottom: 12 / 1039
  25686. }
  25687. },
  25688. head: {
  25689. height: math.unit(1.211, "feet"),
  25690. name: "Head",
  25691. image: {
  25692. source: "./media/characters/aman-aquila/head.svg",
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Minimicro",
  25699. height: math.unit(0.057, "inches")
  25700. },
  25701. {
  25702. name: "Micro",
  25703. height: math.unit(7, "inches")
  25704. },
  25705. {
  25706. name: "Mini",
  25707. height: math.unit(3 + 7 / 12, "feet")
  25708. },
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(5 + 7 / 12, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(157 + 7 / 12, "feet")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(1557 + 7 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Gigamacro",
  25724. height: math.unit(15557 + 7 / 12, "feet")
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(3 + 2 / 12, "inches"),
  25733. weight: math.unit(0.3, "ounces"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/hiphae/front.svg",
  25737. extra: 1931 / 1683,
  25738. bottom: 24 / 1955
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(3 + 1 / 2, "inches"),
  25746. default: true
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(5 + 10 / 12, "feet"),
  25755. weight: math.unit(165, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/nicky/front.svg",
  25759. extra: 3144 / 2886,
  25760. bottom: 45.6 / 3192
  25761. }
  25762. },
  25763. back: {
  25764. height: math.unit(5 + 10 / 12, "feet"),
  25765. weight: math.unit(165, "lb"),
  25766. name: "Back",
  25767. image: {
  25768. source: "./media/characters/nicky/back.svg",
  25769. extra: 3055 / 2804,
  25770. bottom: 28.4 / 3087
  25771. }
  25772. },
  25773. frontclothed: {
  25774. height: math.unit(5 + 10 / 12, "feet"),
  25775. weight: math.unit(165, "lb"),
  25776. name: "Front-clothed",
  25777. image: {
  25778. source: "./media/characters/nicky/front-clothed.svg",
  25779. extra: 3184.9 / 2926.9,
  25780. bottom: 86.5 / 3239.9
  25781. }
  25782. },
  25783. foot: {
  25784. height: math.unit(1.16, "feet"),
  25785. name: "Foot",
  25786. image: {
  25787. source: "./media/characters/nicky/foot.svg"
  25788. }
  25789. },
  25790. feet: {
  25791. height: math.unit(1.34, "feet"),
  25792. name: "Feet",
  25793. image: {
  25794. source: "./media/characters/nicky/feet.svg"
  25795. }
  25796. },
  25797. maw: {
  25798. height: math.unit(0.9, "feet"),
  25799. name: "Maw",
  25800. image: {
  25801. source: "./media/characters/nicky/maw.svg"
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(5 + 10 / 12, "feet"),
  25809. default: true
  25810. },
  25811. {
  25812. name: "Macro",
  25813. height: math.unit(60, "feet")
  25814. },
  25815. {
  25816. name: "Megamacro",
  25817. height: math.unit(1, "mile")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25823. {
  25824. side: {
  25825. height: math.unit(10, "feet"),
  25826. weight: math.unit(600, "lb"),
  25827. name: "Side",
  25828. image: {
  25829. source: "./media/characters/blair/side.svg",
  25830. bottom: 16.6 / 475,
  25831. extra: 458 / 431
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Micro",
  25838. height: math.unit(8, "inches")
  25839. },
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(10, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(180, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(5 + 4 / 12, "feet"),
  25856. weight: math.unit(125, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/fisher/front.svg",
  25860. extra: 444 / 390,
  25861. bottom: 2 / 444.8
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Micro",
  25868. height: math.unit(4, "inches")
  25869. },
  25870. {
  25871. name: "Normal",
  25872. height: math.unit(5 + 4 / 12, "feet"),
  25873. default: true
  25874. },
  25875. {
  25876. name: "Macro",
  25877. height: math.unit(100, "feet")
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(6.71, "feet"),
  25886. weight: math.unit(200, "lb"),
  25887. capacity: math.unit(1000000, "people"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/gliss/front.svg",
  25891. extra: 2347 / 2231,
  25892. bottom: 113 / 2462
  25893. }
  25894. },
  25895. hammerspaceSize: {
  25896. height: math.unit(6.71 * 717, "feet"),
  25897. weight: math.unit(200, "lb"),
  25898. capacity: math.unit(1000000, "people"),
  25899. name: "Hammerspace Size",
  25900. image: {
  25901. source: "./media/characters/gliss/front.svg",
  25902. extra: 2347 / 2231,
  25903. bottom: 113 / 2462
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(6.71, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25917. {
  25918. side: {
  25919. height: math.unit(1.44, "m"),
  25920. weight: math.unit(80, "kg"),
  25921. name: "Side",
  25922. image: {
  25923. source: "./media/characters/dune-anderson/side.svg",
  25924. bottom: 49 / 1426
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Wolf-sized",
  25931. height: math.unit(1.44, "meters")
  25932. },
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5.05, "meters"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Big",
  25940. height: math.unit(14.4, "meters")
  25941. },
  25942. {
  25943. name: "Huge",
  25944. height: math.unit(144, "meters")
  25945. },
  25946. ]
  25947. ))
  25948. characterMakers.push(() => makeCharacter(
  25949. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25950. {
  25951. front: {
  25952. height: math.unit(7, "feet"),
  25953. weight: math.unit(425, "lb"),
  25954. name: "Front",
  25955. image: {
  25956. source: "./media/characters/hind/front.svg",
  25957. extra: 2091 / 1860,
  25958. bottom: 129 / 2220
  25959. }
  25960. },
  25961. back: {
  25962. height: math.unit(7, "feet"),
  25963. weight: math.unit(425, "lb"),
  25964. name: "Back",
  25965. image: {
  25966. source: "./media/characters/hind/back.svg",
  25967. extra: 2091 / 1860,
  25968. bottom: 24.6 / 2309
  25969. }
  25970. },
  25971. tail: {
  25972. height: math.unit(2.8, "feet"),
  25973. name: "Tail",
  25974. image: {
  25975. source: "./media/characters/hind/tail.svg"
  25976. }
  25977. },
  25978. head: {
  25979. height: math.unit(2.55, "feet"),
  25980. name: "Head",
  25981. image: {
  25982. source: "./media/characters/hind/head.svg"
  25983. }
  25984. },
  25985. },
  25986. [
  25987. {
  25988. name: "XS",
  25989. height: math.unit(0.7, "feet")
  25990. },
  25991. {
  25992. name: "Normal",
  25993. height: math.unit(7, "feet"),
  25994. default: true
  25995. },
  25996. {
  25997. name: "XL",
  25998. height: math.unit(70, "feet")
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26004. {
  26005. front: {
  26006. height: math.unit(2.1, "meters"),
  26007. weight: math.unit(150, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/tharquench-sizestealer/front.svg",
  26011. extra: 1605/1470,
  26012. bottom: 36/1641
  26013. }
  26014. },
  26015. frontAlt: {
  26016. height: math.unit(2.1, "meters"),
  26017. weight: math.unit(150, "lb"),
  26018. name: "Front (Alt)",
  26019. image: {
  26020. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26021. extra: 2318 / 2063,
  26022. bottom: 93.4 / 2410
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Nano",
  26029. height: math.unit(1, "mm")
  26030. },
  26031. {
  26032. name: "Micro",
  26033. height: math.unit(1, "cm")
  26034. },
  26035. {
  26036. name: "Normal",
  26037. height: math.unit(2.1, "meters"),
  26038. default: true
  26039. },
  26040. ]
  26041. ))
  26042. characterMakers.push(() => makeCharacter(
  26043. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26044. {
  26045. front: {
  26046. height: math.unit(7 + 5 / 12, "feet"),
  26047. weight: math.unit(357, "lb"),
  26048. name: "Front",
  26049. image: {
  26050. source: "./media/characters/solex-draconov/front.svg",
  26051. extra: 1993 / 1865,
  26052. bottom: 117 / 2111
  26053. }
  26054. },
  26055. },
  26056. [
  26057. {
  26058. name: "Natural Height",
  26059. height: math.unit(7 + 5 / 12, "feet"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(350, "feet")
  26065. },
  26066. {
  26067. name: "Macro+",
  26068. height: math.unit(1000, "feet")
  26069. },
  26070. {
  26071. name: "Megamacro",
  26072. height: math.unit(20, "km")
  26073. },
  26074. {
  26075. name: "Megamacro+",
  26076. height: math.unit(1000, "km")
  26077. },
  26078. {
  26079. name: "Gigamacro",
  26080. height: math.unit(2.5, "Gm")
  26081. },
  26082. {
  26083. name: "Teramacro",
  26084. height: math.unit(15, "Tm")
  26085. },
  26086. {
  26087. name: "Galactic",
  26088. height: math.unit(30, "Zm")
  26089. },
  26090. {
  26091. name: "Universal",
  26092. height: math.unit(21000, "Ym")
  26093. },
  26094. {
  26095. name: "Omniversal",
  26096. height: math.unit(9.861e50, "Ym")
  26097. },
  26098. {
  26099. name: "Existential",
  26100. height: math.unit(1e300, "meters")
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26106. {
  26107. side: {
  26108. height: math.unit(25, "feet"),
  26109. weight: math.unit(90000, "lb"),
  26110. name: "Side",
  26111. image: {
  26112. source: "./media/characters/mandarax/side.svg",
  26113. extra: 614 / 332,
  26114. bottom: 55 / 630
  26115. }
  26116. },
  26117. lounging: {
  26118. height: math.unit(15.4, "feet"),
  26119. weight: math.unit(90000, "lb"),
  26120. name: "Lounging",
  26121. image: {
  26122. source: "./media/characters/mandarax/lounging.svg",
  26123. extra: 817/609,
  26124. bottom: 685/1502
  26125. }
  26126. },
  26127. head: {
  26128. height: math.unit(11.4, "feet"),
  26129. name: "Head",
  26130. image: {
  26131. source: "./media/characters/mandarax/head.svg"
  26132. }
  26133. },
  26134. belly: {
  26135. height: math.unit(33, "feet"),
  26136. name: "Belly",
  26137. capacity: math.unit(500, "people"),
  26138. image: {
  26139. source: "./media/characters/mandarax/belly.svg"
  26140. }
  26141. },
  26142. dick: {
  26143. height: math.unit(8.46, "feet"),
  26144. name: "Dick",
  26145. image: {
  26146. source: "./media/characters/mandarax/dick.svg"
  26147. }
  26148. },
  26149. top: {
  26150. height: math.unit(28, "meters"),
  26151. name: "Top",
  26152. image: {
  26153. source: "./media/characters/mandarax/top.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(25, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(5, "feet"),
  26170. weight: math.unit(90, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/pixil/front.svg",
  26174. extra: 2000 / 1618,
  26175. bottom: 12.3 / 2011
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(5, "feet"),
  26183. default: true
  26184. },
  26185. {
  26186. name: "Megamacro",
  26187. height: math.unit(10, "miles"),
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(7 + 2 / 12, "feet"),
  26196. weight: math.unit(200, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/angel/front.svg",
  26200. extra: 1830 / 1737,
  26201. bottom: 22.6 / 1854,
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(7 + 2 / 12, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Macro",
  26213. height: math.unit(1000, "feet")
  26214. },
  26215. {
  26216. name: "Megamacro",
  26217. height: math.unit(2, "miles")
  26218. },
  26219. {
  26220. name: "Gigamacro",
  26221. height: math.unit(20, "earths")
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(5, "feet"),
  26230. weight: math.unit(180, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/mekana/front.svg",
  26234. extra: 1671 / 1605,
  26235. bottom: 3.5 / 1691
  26236. }
  26237. },
  26238. side: {
  26239. height: math.unit(5, "feet"),
  26240. weight: math.unit(180, "lb"),
  26241. name: "Side",
  26242. image: {
  26243. source: "./media/characters/mekana/side.svg",
  26244. extra: 1671 / 1605,
  26245. bottom: 3.5 / 1691
  26246. }
  26247. },
  26248. back: {
  26249. height: math.unit(5, "feet"),
  26250. weight: math.unit(180, "lb"),
  26251. name: "Back",
  26252. image: {
  26253. source: "./media/characters/mekana/back.svg",
  26254. extra: 1671 / 1605,
  26255. bottom: 3.5 / 1691
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(5, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(4 + 6 / 12, "feet"),
  26272. weight: math.unit(80, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/pixie/front.svg",
  26276. extra: 1924 / 1825,
  26277. bottom: 22.4 / 1946
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(4 + 6 / 12, "feet"),
  26285. default: true
  26286. },
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(40, "feet")
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(2.1, "meters"),
  26298. weight: math.unit(200, "lb"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/the-lascivious/front.svg",
  26302. extra: 1 / 0.893,
  26303. bottom: 3.5 / 573.7
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Human Scale",
  26310. height: math.unit(2.1, "meters")
  26311. },
  26312. {
  26313. name: "Wolxi Scale",
  26314. height: math.unit(46.2, "m"),
  26315. default: true
  26316. },
  26317. {
  26318. name: "Boinker of Buildings",
  26319. height: math.unit(10, "km")
  26320. },
  26321. {
  26322. name: "Shagger of Skyscrapers",
  26323. height: math.unit(40, "km")
  26324. },
  26325. {
  26326. name: "Banger of Boroughs",
  26327. height: math.unit(4000, "km")
  26328. },
  26329. {
  26330. name: "Screwer of States",
  26331. height: math.unit(100000, "km")
  26332. },
  26333. {
  26334. name: "Pounder of Planets",
  26335. height: math.unit(2000000, "km")
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(6, "feet"),
  26344. weight: math.unit(150, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/aj/front.svg",
  26348. extra: 2039 / 1562,
  26349. bottom: 40 / 2079
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(11 + 6 / 12, "feet"),
  26357. default: true
  26358. },
  26359. {
  26360. name: "Megamacro",
  26361. height: math.unit(60, "megameters")
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26367. {
  26368. side: {
  26369. height: math.unit(31 + 8 / 12, "feet"),
  26370. weight: math.unit(75000, "kg"),
  26371. name: "Side",
  26372. image: {
  26373. source: "./media/characters/koros/side.svg",
  26374. extra: 1442 / 1297,
  26375. bottom: 122.7 / 1562
  26376. }
  26377. },
  26378. dicksKingsCrown: {
  26379. height: math.unit(6, "feet"),
  26380. name: "Dicks (King's Crown)",
  26381. image: {
  26382. source: "./media/characters/koros/dicks-kings-crown.svg"
  26383. }
  26384. },
  26385. dicksTailSet: {
  26386. height: math.unit(3, "feet"),
  26387. name: "Dicks (Tail Set)",
  26388. image: {
  26389. source: "./media/characters/koros/dicks-tail-set.svg"
  26390. }
  26391. },
  26392. dickCumming: {
  26393. height: math.unit(7.98, "feet"),
  26394. name: "Dick (Cumming)",
  26395. image: {
  26396. source: "./media/characters/koros/dick-cumming.svg"
  26397. }
  26398. },
  26399. dicksBack: {
  26400. height: math.unit(5.9, "feet"),
  26401. name: "Dicks (Back)",
  26402. image: {
  26403. source: "./media/characters/koros/dicks-back.svg"
  26404. }
  26405. },
  26406. dicksFront: {
  26407. height: math.unit(3.72, "feet"),
  26408. name: "Dicks (Front)",
  26409. image: {
  26410. source: "./media/characters/koros/dicks-front.svg"
  26411. }
  26412. },
  26413. dicksPeeking: {
  26414. height: math.unit(3.0, "feet"),
  26415. name: "Dicks (Peeking)",
  26416. image: {
  26417. source: "./media/characters/koros/dicks-peeking.svg"
  26418. }
  26419. },
  26420. eye: {
  26421. height: math.unit(1.7, "feet"),
  26422. name: "Eye",
  26423. image: {
  26424. source: "./media/characters/koros/eye.svg"
  26425. }
  26426. },
  26427. headFront: {
  26428. height: math.unit(11.69, "feet"),
  26429. name: "Head (Front)",
  26430. image: {
  26431. source: "./media/characters/koros/head-front.svg"
  26432. }
  26433. },
  26434. headSide: {
  26435. height: math.unit(14, "feet"),
  26436. name: "Head (Side)",
  26437. image: {
  26438. source: "./media/characters/koros/head-side.svg"
  26439. }
  26440. },
  26441. leg: {
  26442. height: math.unit(17, "feet"),
  26443. name: "Leg",
  26444. image: {
  26445. source: "./media/characters/koros/leg.svg"
  26446. }
  26447. },
  26448. mawSide: {
  26449. height: math.unit(12.8, "feet"),
  26450. name: "Maw (Side)",
  26451. image: {
  26452. source: "./media/characters/koros/maw-side.svg"
  26453. }
  26454. },
  26455. mawSpitting: {
  26456. height: math.unit(17, "feet"),
  26457. name: "Maw (Spitting)",
  26458. image: {
  26459. source: "./media/characters/koros/maw-spitting.svg"
  26460. }
  26461. },
  26462. slit: {
  26463. height: math.unit(2.8, "feet"),
  26464. name: "Slit",
  26465. image: {
  26466. source: "./media/characters/koros/slit.svg"
  26467. }
  26468. },
  26469. stomach: {
  26470. height: math.unit(6.8, "feet"),
  26471. capacity: math.unit(20, "people"),
  26472. name: "Stomach",
  26473. image: {
  26474. source: "./media/characters/koros/stomach.svg"
  26475. }
  26476. },
  26477. wingspanBottom: {
  26478. height: math.unit(114, "feet"),
  26479. name: "Wingspan (Bottom)",
  26480. image: {
  26481. source: "./media/characters/koros/wingspan-bottom.svg"
  26482. }
  26483. },
  26484. wingspanTop: {
  26485. height: math.unit(104, "feet"),
  26486. name: "Wingspan (Top)",
  26487. image: {
  26488. source: "./media/characters/koros/wingspan-top.svg"
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(31 + 8 / 12, "feet"),
  26496. default: true
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26502. {
  26503. front: {
  26504. height: math.unit(18 + 5 / 12, "feet"),
  26505. weight: math.unit(3750, "kg"),
  26506. name: "Front",
  26507. image: {
  26508. source: "./media/characters/vexx/front.svg",
  26509. extra: 426 / 396,
  26510. bottom: 31.5 / 458
  26511. }
  26512. },
  26513. maw: {
  26514. height: math.unit(6, "feet"),
  26515. name: "Maw",
  26516. image: {
  26517. source: "./media/characters/vexx/maw.svg"
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(18 + 5 / 12, "feet"),
  26525. default: true
  26526. },
  26527. ]
  26528. ))
  26529. characterMakers.push(() => makeCharacter(
  26530. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26531. {
  26532. front: {
  26533. height: math.unit(17 + 6 / 12, "feet"),
  26534. weight: math.unit(150, "lb"),
  26535. name: "Front",
  26536. image: {
  26537. source: "./media/characters/baadra/front.svg",
  26538. extra: 1694/1553,
  26539. bottom: 179/1873
  26540. }
  26541. },
  26542. frontAlt: {
  26543. height: math.unit(17 + 6 / 12, "feet"),
  26544. weight: math.unit(150, "lb"),
  26545. name: "Front (Alt)",
  26546. image: {
  26547. source: "./media/characters/baadra/front-alt.svg",
  26548. extra: 3137 / 2890,
  26549. bottom: 168.4 / 3305
  26550. }
  26551. },
  26552. back: {
  26553. height: math.unit(17 + 6 / 12, "feet"),
  26554. weight: math.unit(150, "lb"),
  26555. name: "Back",
  26556. image: {
  26557. source: "./media/characters/baadra/back.svg",
  26558. extra: 3142 / 2890,
  26559. bottom: 220 / 3371
  26560. }
  26561. },
  26562. head: {
  26563. height: math.unit(5.45, "feet"),
  26564. name: "Head",
  26565. image: {
  26566. source: "./media/characters/baadra/head.svg"
  26567. }
  26568. },
  26569. headAngry: {
  26570. height: math.unit(4.95, "feet"),
  26571. name: "Head (Angry)",
  26572. image: {
  26573. source: "./media/characters/baadra/head-angry.svg"
  26574. }
  26575. },
  26576. headOpen: {
  26577. height: math.unit(6, "feet"),
  26578. name: "Head (Open)",
  26579. image: {
  26580. source: "./media/characters/baadra/head-open.svg"
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(17 + 6 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(7 + 3 / 12, "feet"),
  26597. weight: math.unit(180, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/juri/front.svg",
  26601. extra: 1401 / 1237,
  26602. bottom: 18.5 / 1418
  26603. }
  26604. },
  26605. side: {
  26606. height: math.unit(7 + 3 / 12, "feet"),
  26607. weight: math.unit(180, "lb"),
  26608. name: "Side",
  26609. image: {
  26610. source: "./media/characters/juri/side.svg",
  26611. extra: 1424 / 1242,
  26612. bottom: 18.5 / 1447
  26613. }
  26614. },
  26615. sitting: {
  26616. height: math.unit(6, "feet"),
  26617. weight: math.unit(180, "lb"),
  26618. name: "Sitting",
  26619. image: {
  26620. source: "./media/characters/juri/sitting.svg",
  26621. extra: 1270 / 1143,
  26622. bottom: 100 / 1343
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(7 + 3 / 12, "feet"),
  26627. weight: math.unit(180, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/juri/back.svg",
  26631. extra: 1377 / 1240,
  26632. bottom: 23.7 / 1405
  26633. }
  26634. },
  26635. maw: {
  26636. height: math.unit(2.8, "feet"),
  26637. name: "Maw",
  26638. image: {
  26639. source: "./media/characters/juri/maw.svg"
  26640. }
  26641. },
  26642. stomach: {
  26643. height: math.unit(0.89, "feet"),
  26644. capacity: math.unit(4, "liters"),
  26645. name: "Stomach",
  26646. image: {
  26647. source: "./media/characters/juri/stomach.svg"
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(7 + 3 / 12, "feet"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26661. {
  26662. fox: {
  26663. height: math.unit(5 + 6 / 12, "feet"),
  26664. weight: math.unit(140, "lb"),
  26665. name: "Fox",
  26666. image: {
  26667. source: "./media/characters/maxene-sita/fox.svg",
  26668. extra: 146 / 138,
  26669. bottom: 2.1 / 148.19
  26670. }
  26671. },
  26672. foxLaying: {
  26673. height: math.unit(1.70, "feet"),
  26674. weight: math.unit(140, "lb"),
  26675. name: "Fox (Laying)",
  26676. image: {
  26677. source: "./media/characters/maxene-sita/fox-laying.svg",
  26678. extra: 910 / 572,
  26679. bottom: 71 / 981
  26680. }
  26681. },
  26682. kitsune: {
  26683. height: math.unit(10, "feet"),
  26684. weight: math.unit(800, "lb"),
  26685. name: "Kitsune",
  26686. image: {
  26687. source: "./media/characters/maxene-sita/kitsune.svg",
  26688. extra: 185 / 176,
  26689. bottom: 4.7 / 189.9
  26690. }
  26691. },
  26692. hellhound: {
  26693. height: math.unit(10, "feet"),
  26694. weight: math.unit(700, "lb"),
  26695. name: "Hellhound",
  26696. image: {
  26697. source: "./media/characters/maxene-sita/hellhound.svg",
  26698. extra: 1600 / 1545,
  26699. bottom: 81 / 1681
  26700. }
  26701. },
  26702. },
  26703. [
  26704. {
  26705. name: "Normal",
  26706. height: math.unit(5 + 6 / 12, "feet"),
  26707. default: true
  26708. },
  26709. ]
  26710. ))
  26711. characterMakers.push(() => makeCharacter(
  26712. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26713. {
  26714. front: {
  26715. height: math.unit(3 + 4 / 12, "feet"),
  26716. weight: math.unit(70, "lb"),
  26717. name: "Front",
  26718. image: {
  26719. source: "./media/characters/maia/front.svg",
  26720. extra: 227 / 219.5,
  26721. bottom: 40 / 267
  26722. }
  26723. },
  26724. back: {
  26725. height: math.unit(3 + 4 / 12, "feet"),
  26726. weight: math.unit(70, "lb"),
  26727. name: "Back",
  26728. image: {
  26729. source: "./media/characters/maia/back.svg",
  26730. extra: 237 / 225
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(3 + 4 / 12, "feet"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(5 + 10 / 12, "feet"),
  26747. weight: math.unit(197, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/jabaro/front.svg",
  26751. extra: 225 / 216,
  26752. bottom: 5.06 / 230
  26753. }
  26754. },
  26755. back: {
  26756. height: math.unit(5 + 10 / 12, "feet"),
  26757. weight: math.unit(197, "lb"),
  26758. name: "Back",
  26759. image: {
  26760. source: "./media/characters/jabaro/back.svg",
  26761. extra: 225 / 219,
  26762. bottom: 1.9 / 227
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(5 + 10 / 12, "feet"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(5 + 8 / 12, "feet"),
  26779. weight: math.unit(139, "lb"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/risa/front.svg",
  26783. extra: 270 / 260,
  26784. bottom: 11.2 / 282
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(5 + 8 / 12, "feet"),
  26789. weight: math.unit(139, "lb"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/risa/back.svg",
  26793. extra: 264 / 255,
  26794. bottom: 4 / 268
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(5 + 8 / 12, "feet"),
  26802. default: true
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(2 + 11 / 12, "feet"),
  26811. weight: math.unit(30, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/weatley/front.svg",
  26815. bottom: 10.7 / 414,
  26816. extra: 403.5 / 362
  26817. }
  26818. },
  26819. back: {
  26820. height: math.unit(2 + 11 / 12, "feet"),
  26821. weight: math.unit(30, "lb"),
  26822. name: "Back",
  26823. image: {
  26824. source: "./media/characters/weatley/back.svg",
  26825. bottom: 10.7 / 414,
  26826. extra: 403.5 / 362
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Normal",
  26833. height: math.unit(2 + 11 / 12, "feet"),
  26834. default: true
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26840. {
  26841. front: {
  26842. height: math.unit(5 + 2 / 12, "feet"),
  26843. weight: math.unit(50, "kg"),
  26844. name: "Front",
  26845. image: {
  26846. source: "./media/characters/mercury-crescent/front.svg",
  26847. extra: 1088 / 1033,
  26848. bottom: 18.9 / 1109
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(5 + 2 / 12, "feet"),
  26856. default: true
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26862. {
  26863. front: {
  26864. height: math.unit(2, "feet"),
  26865. weight: math.unit(15, "kg"),
  26866. name: "Front",
  26867. image: {
  26868. source: "./media/characters/diamond-jones/front.svg",
  26869. extra: 727/723,
  26870. bottom: 46/773
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(2, "feet"),
  26878. default: true
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(3, "feet"),
  26887. weight: math.unit(30, "kg"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/sweet-bit/front.svg",
  26891. extra: 675 / 567,
  26892. bottom: 27.7 / 703
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(3, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26906. {
  26907. side: {
  26908. height: math.unit(9.178, "feet"),
  26909. weight: math.unit(500, "lb"),
  26910. name: "Side",
  26911. image: {
  26912. source: "./media/characters/umbrazen/side.svg",
  26913. extra: 1730 / 1473,
  26914. bottom: 34.6 / 1765
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Normal",
  26921. height: math.unit(9.178, "feet"),
  26922. default: true
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26928. {
  26929. front: {
  26930. height: math.unit(10, "feet"),
  26931. weight: math.unit(750, "lb"),
  26932. name: "Front",
  26933. image: {
  26934. source: "./media/characters/arlist/front.svg",
  26935. extra: 961 / 778,
  26936. bottom: 6.2 / 986
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(10, "feet"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26950. {
  26951. front: {
  26952. height: math.unit(5 + 1 / 12, "feet"),
  26953. weight: math.unit(110, "lb"),
  26954. name: "Front",
  26955. image: {
  26956. source: "./media/characters/aradel/front.svg",
  26957. extra: 324 / 303,
  26958. bottom: 3.6 / 329.4
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(5 + 1 / 12, "feet"),
  26966. default: true
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26972. {
  26973. dressed: {
  26974. height: math.unit(3 + 8 / 12, "feet"),
  26975. weight: math.unit(50, "lb"),
  26976. name: "Dressed",
  26977. image: {
  26978. source: "./media/characters/serryn/dressed.svg",
  26979. extra: 1792 / 1656,
  26980. bottom: 43.5 / 1840
  26981. }
  26982. },
  26983. nude: {
  26984. height: math.unit(3 + 8 / 12, "feet"),
  26985. weight: math.unit(50, "lb"),
  26986. name: "Nude",
  26987. image: {
  26988. source: "./media/characters/serryn/nude.svg",
  26989. extra: 1792 / 1656,
  26990. bottom: 43.5 / 1840
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(3 + 8 / 12, "feet"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27004. {
  27005. front: {
  27006. height: math.unit(7 + 10 / 12, "feet"),
  27007. weight: math.unit(255, "lb"),
  27008. name: "Front",
  27009. image: {
  27010. source: "./media/characters/xavier-thyme/front.svg",
  27011. extra: 3733 / 3642,
  27012. bottom: 131 / 3869
  27013. }
  27014. },
  27015. frontRaven: {
  27016. height: math.unit(7 + 10 / 12, "feet"),
  27017. weight: math.unit(255, "lb"),
  27018. name: "Front (Raven)",
  27019. image: {
  27020. source: "./media/characters/xavier-thyme/front-raven.svg",
  27021. extra: 4385 / 3642,
  27022. bottom: 131 / 4517
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(7 + 10 / 12, "feet"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(1.6, "m"),
  27039. weight: math.unit(50, "kg"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/kiki/front.svg",
  27043. extra: 4682 / 3610,
  27044. bottom: 115 / 4777
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(1.6, "meters"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(50, "m"),
  27061. weight: math.unit(500, "tonnes"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/ryoko/front.svg",
  27065. extra: 4632 / 3926,
  27066. bottom: 193 / 4823
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(50, "meters"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(30, "m"),
  27083. weight: math.unit(22, "tonnes"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/elio/front.svg",
  27087. extra: 4582 / 3720,
  27088. bottom: 236 / 4828
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(30, "meters"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(6 + 3 / 12, "feet"),
  27105. weight: math.unit(120, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/azura/front.svg",
  27109. extra: 1149 / 1135,
  27110. bottom: 45 / 1194
  27111. }
  27112. },
  27113. frontClothed: {
  27114. height: math.unit(6 + 3 / 12, "feet"),
  27115. weight: math.unit(120, "lb"),
  27116. name: "Front (Clothed)",
  27117. image: {
  27118. source: "./media/characters/azura/front-clothed.svg",
  27119. extra: 1149 / 1135,
  27120. bottom: 45 / 1194
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Normal",
  27127. height: math.unit(6 + 3 / 12, "feet"),
  27128. default: true
  27129. },
  27130. {
  27131. name: "Macro",
  27132. height: math.unit(20 + 6 / 12, "feet")
  27133. },
  27134. {
  27135. name: "Megamacro",
  27136. height: math.unit(12, "miles")
  27137. },
  27138. {
  27139. name: "Gigamacro",
  27140. height: math.unit(10000, "miles")
  27141. },
  27142. {
  27143. name: "Teramacro",
  27144. height: math.unit(900000, "miles")
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(12, "feet"),
  27153. weight: math.unit(1, "ton"),
  27154. capacity: math.unit(660000, "gallons"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/zeus/front.svg",
  27158. extra: 5005 / 4717,
  27159. bottom: 363 / 5388
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(12, "feet")
  27167. },
  27168. {
  27169. name: "Preferred Size",
  27170. height: math.unit(0.5, "miles"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Giga Horse",
  27175. height: math.unit(300, "miles")
  27176. },
  27177. {
  27178. name: "Riding Planets",
  27179. height: math.unit(30, "megameters")
  27180. },
  27181. {
  27182. name: "Cosmic Giant",
  27183. height: math.unit(3, "zettameters")
  27184. },
  27185. {
  27186. name: "Breeding God",
  27187. height: math.unit(9.92e22, "yottameters")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27193. {
  27194. side: {
  27195. height: math.unit(9, "feet"),
  27196. weight: math.unit(1500, "kg"),
  27197. name: "Side",
  27198. image: {
  27199. source: "./media/characters/fang/side.svg",
  27200. extra: 924 / 866,
  27201. bottom: 47.5 / 972.3
  27202. }
  27203. },
  27204. },
  27205. [
  27206. {
  27207. name: "Normal",
  27208. height: math.unit(9, "feet"),
  27209. default: true
  27210. },
  27211. {
  27212. name: "Macro",
  27213. height: math.unit(75 + 6 / 12, "feet")
  27214. },
  27215. {
  27216. name: "Teramacro",
  27217. height: math.unit(50000, "miles")
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(10, "feet"),
  27226. weight: math.unit(2, "tons"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/rekhit/front.svg",
  27230. extra: 2796 / 2590,
  27231. bottom: 225 / 3022
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(10, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(500, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(7 + 6.451 / 12, "feet"),
  27252. weight: math.unit(310, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/dahlia-verrick/front.svg",
  27256. extra: 1488 / 1365,
  27257. bottom: 6.2 / 1495
  27258. }
  27259. },
  27260. back: {
  27261. height: math.unit(7 + 6.451 / 12, "feet"),
  27262. weight: math.unit(310, "lb"),
  27263. name: "Back",
  27264. image: {
  27265. source: "./media/characters/dahlia-verrick/back.svg",
  27266. extra: 1472 / 1351,
  27267. bottom: 5.28 / 1477
  27268. }
  27269. },
  27270. frontBusiness: {
  27271. height: math.unit(7 + 6.451 / 12, "feet"),
  27272. weight: math.unit(200, "lb"),
  27273. name: "Front (Business)",
  27274. image: {
  27275. source: "./media/characters/dahlia-verrick/front-business.svg",
  27276. extra: 1478 / 1381,
  27277. bottom: 5.5 / 1484
  27278. }
  27279. },
  27280. frontCasual: {
  27281. height: math.unit(7 + 6.451 / 12, "feet"),
  27282. weight: math.unit(200, "lb"),
  27283. name: "Front (Casual)",
  27284. image: {
  27285. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27286. extra: 1478 / 1381,
  27287. bottom: 5.5 / 1484
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Travel-Sized",
  27294. height: math.unit(7.45, "inches")
  27295. },
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(7 + 6.451 / 12, "feet"),
  27299. default: true
  27300. },
  27301. {
  27302. name: "Hitting the Town",
  27303. height: math.unit(37 + 8 / 12, "feet")
  27304. },
  27305. {
  27306. name: "Stomp in the Suburbs",
  27307. height: math.unit(964 + 9.728 / 12, "feet")
  27308. },
  27309. {
  27310. name: "Sit on the City",
  27311. height: math.unit(61747 + 10.592 / 12, "feet")
  27312. },
  27313. {
  27314. name: "Glomp the Globe",
  27315. height: math.unit(252919327 + 4.832 / 12, "feet")
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(6 + 4 / 12, "feet"),
  27324. weight: math.unit(320, "lb"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/balina-mahigan/front.svg",
  27328. extra: 447 / 428,
  27329. bottom: 18 / 466
  27330. }
  27331. },
  27332. back: {
  27333. height: math.unit(6 + 4 / 12, "feet"),
  27334. weight: math.unit(320, "lb"),
  27335. name: "Back",
  27336. image: {
  27337. source: "./media/characters/balina-mahigan/back.svg",
  27338. extra: 445 / 428,
  27339. bottom: 4.07 / 448
  27340. }
  27341. },
  27342. arm: {
  27343. height: math.unit(1.88, "feet"),
  27344. name: "Arm",
  27345. image: {
  27346. source: "./media/characters/balina-mahigan/arm.svg"
  27347. }
  27348. },
  27349. backPort: {
  27350. height: math.unit(0.685, "feet"),
  27351. name: "Back Port",
  27352. image: {
  27353. source: "./media/characters/balina-mahigan/back-port.svg"
  27354. }
  27355. },
  27356. hoofpaw: {
  27357. height: math.unit(1.41, "feet"),
  27358. name: "Hoofpaw",
  27359. image: {
  27360. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27361. }
  27362. },
  27363. leftHandBack: {
  27364. height: math.unit(0.938, "feet"),
  27365. name: "Left Hand (Back)",
  27366. image: {
  27367. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27368. }
  27369. },
  27370. leftHandFront: {
  27371. height: math.unit(0.938, "feet"),
  27372. name: "Left Hand (Front)",
  27373. image: {
  27374. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27375. }
  27376. },
  27377. rightHandBack: {
  27378. height: math.unit(0.95, "feet"),
  27379. name: "Right Hand (Back)",
  27380. image: {
  27381. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27382. }
  27383. },
  27384. rightHandFront: {
  27385. height: math.unit(0.95, "feet"),
  27386. name: "Right Hand (Front)",
  27387. image: {
  27388. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(6 + 4 / 12, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(6, "feet"),
  27405. weight: math.unit(320, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/balina-mejeri/front.svg",
  27409. extra: 517 / 488,
  27410. bottom: 44.2 / 561
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(6 + 4 / 12, "feet")
  27418. },
  27419. {
  27420. name: "Business",
  27421. height: math.unit(155, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27428. {
  27429. kneeling: {
  27430. height: math.unit(6 + 4 / 12, "feet"),
  27431. weight: math.unit(300 * 20, "lb"),
  27432. name: "Kneeling",
  27433. image: {
  27434. source: "./media/characters/balbarian/kneeling.svg",
  27435. extra: 922 / 862,
  27436. bottom: 42.4 / 965
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(6 + 4 / 12, "feet")
  27444. },
  27445. {
  27446. name: "Treasured",
  27447. height: math.unit(18 + 9 / 12, "feet"),
  27448. default: true
  27449. },
  27450. {
  27451. name: "Macro",
  27452. height: math.unit(900, "feet")
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(6 + 4 / 12, "feet"),
  27461. weight: math.unit(325, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/balina-amarini/front.svg",
  27465. extra: 415 / 403,
  27466. bottom: 19 / 433.4
  27467. }
  27468. },
  27469. back: {
  27470. height: math.unit(6 + 4 / 12, "feet"),
  27471. weight: math.unit(325, "lb"),
  27472. name: "Back",
  27473. image: {
  27474. source: "./media/characters/balina-amarini/back.svg",
  27475. extra: 415 / 403,
  27476. bottom: 13.5 / 432
  27477. }
  27478. },
  27479. overdrive: {
  27480. height: math.unit(6 + 4 / 12, "feet"),
  27481. weight: math.unit(400, "lb"),
  27482. name: "Overdrive",
  27483. image: {
  27484. source: "./media/characters/balina-amarini/overdrive.svg",
  27485. extra: 269 / 259,
  27486. bottom: 12 / 282
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Boom",
  27493. height: math.unit(9 + 10 / 12, "feet"),
  27494. default: true
  27495. },
  27496. {
  27497. name: "Macro",
  27498. height: math.unit(280, "feet")
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27504. {
  27505. goddess: {
  27506. height: math.unit(600, "feet"),
  27507. weight: math.unit(2000000, "tons"),
  27508. name: "Goddess",
  27509. image: {
  27510. source: "./media/characters/lady-kubwa/goddess.svg",
  27511. extra: 1240.5 / 1223,
  27512. bottom: 22 / 1263
  27513. }
  27514. },
  27515. goddesser: {
  27516. height: math.unit(900, "feet"),
  27517. weight: math.unit(20000000, "lb"),
  27518. name: "Goddess-er",
  27519. image: {
  27520. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27521. extra: 899 / 888,
  27522. bottom: 12.6 / 912
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Macro",
  27529. height: math.unit(600, "feet"),
  27530. default: true
  27531. },
  27532. {
  27533. name: "Megamacro",
  27534. height: math.unit(250, "miles")
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(7 + 7 / 12, "feet"),
  27543. weight: math.unit(250, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/tala-grovehorn/front.svg",
  27547. extra: 2636 / 2525,
  27548. bottom: 147 / 2781
  27549. }
  27550. },
  27551. back: {
  27552. height: math.unit(7 + 7 / 12, "feet"),
  27553. weight: math.unit(250, "lb"),
  27554. name: "Back",
  27555. image: {
  27556. source: "./media/characters/tala-grovehorn/back.svg",
  27557. extra: 2635 / 2539,
  27558. bottom: 100 / 2732.8
  27559. }
  27560. },
  27561. mouth: {
  27562. height: math.unit(1.15, "feet"),
  27563. name: "Mouth",
  27564. image: {
  27565. source: "./media/characters/tala-grovehorn/mouth.svg"
  27566. }
  27567. },
  27568. dick: {
  27569. height: math.unit(2.36, "feet"),
  27570. name: "Dick",
  27571. image: {
  27572. source: "./media/characters/tala-grovehorn/dick.svg"
  27573. }
  27574. },
  27575. slit: {
  27576. height: math.unit(0.61, "feet"),
  27577. name: "Slit",
  27578. image: {
  27579. source: "./media/characters/tala-grovehorn/slit.svg"
  27580. }
  27581. },
  27582. },
  27583. [
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27588. {
  27589. front: {
  27590. height: math.unit(7 + 7 / 12, "feet"),
  27591. weight: math.unit(225, "lb"),
  27592. name: "Front",
  27593. image: {
  27594. source: "./media/characters/epona/front.svg",
  27595. extra: 2445 / 2290,
  27596. bottom: 251 / 2696
  27597. }
  27598. },
  27599. back: {
  27600. height: math.unit(7 + 7 / 12, "feet"),
  27601. weight: math.unit(225, "lb"),
  27602. name: "Back",
  27603. image: {
  27604. source: "./media/characters/epona/back.svg",
  27605. extra: 2546 / 2408,
  27606. bottom: 44 / 2589
  27607. }
  27608. },
  27609. genitals: {
  27610. height: math.unit(1.5, "feet"),
  27611. name: "Genitals",
  27612. image: {
  27613. source: "./media/characters/epona/genitals.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(7 + 7 / 12, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(7, "feet"),
  27630. weight: math.unit(518, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/avia-bloodbourn/front.svg",
  27634. extra: 1466 / 1350,
  27635. bottom: 65 / 1527
  27636. }
  27637. },
  27638. },
  27639. [
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27644. {
  27645. front: {
  27646. height: math.unit(9.35, "feet"),
  27647. weight: math.unit(600, "lb"),
  27648. name: "Front",
  27649. image: {
  27650. source: "./media/characters/amera/front.svg",
  27651. extra: 891 / 818,
  27652. bottom: 30 / 922.7
  27653. }
  27654. },
  27655. back: {
  27656. height: math.unit(9.35, "feet"),
  27657. weight: math.unit(600, "lb"),
  27658. name: "Back",
  27659. image: {
  27660. source: "./media/characters/amera/back.svg",
  27661. extra: 876 / 824,
  27662. bottom: 6.8 / 884
  27663. }
  27664. },
  27665. dick: {
  27666. height: math.unit(2.14, "feet"),
  27667. name: "Dick",
  27668. image: {
  27669. source: "./media/characters/amera/dick.svg"
  27670. }
  27671. },
  27672. },
  27673. [
  27674. {
  27675. name: "Normal",
  27676. height: math.unit(9.35, "feet"),
  27677. default: true
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27683. {
  27684. kneeling: {
  27685. height: math.unit(3 + 4 / 12, "feet"),
  27686. weight: math.unit(90, "lb"),
  27687. name: "Kneeling",
  27688. image: {
  27689. source: "./media/characters/rosewen/kneeling.svg",
  27690. extra: 1835 / 1571,
  27691. bottom: 27.7 / 1862
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(3 + 4 / 12, "feet"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(5 + 10 / 12, "feet"),
  27708. weight: math.unit(200, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/sabah/front.svg",
  27712. extra: 849 / 763,
  27713. bottom: 33.9 / 881
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(5 + 10 / 12, "feet"),
  27721. default: true
  27722. },
  27723. ]
  27724. ))
  27725. characterMakers.push(() => makeCharacter(
  27726. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27727. {
  27728. front: {
  27729. height: math.unit(3 + 5 / 12, "feet"),
  27730. weight: math.unit(40, "kg"),
  27731. name: "Front",
  27732. image: {
  27733. source: "./media/characters/purple-flame/front.svg",
  27734. extra: 1577 / 1412,
  27735. bottom: 97 / 1694
  27736. }
  27737. },
  27738. frontDressed: {
  27739. height: math.unit(3 + 5 / 12, "feet"),
  27740. weight: math.unit(40, "kg"),
  27741. name: "Front (Dressed)",
  27742. image: {
  27743. source: "./media/characters/purple-flame/front-dressed.svg",
  27744. extra: 1577 / 1412,
  27745. bottom: 97 / 1694
  27746. }
  27747. },
  27748. headphones: {
  27749. height: math.unit(0.85, "feet"),
  27750. name: "Headphones",
  27751. image: {
  27752. source: "./media/characters/purple-flame/headphones.svg"
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Really Small",
  27759. height: math.unit(5, "cm")
  27760. },
  27761. {
  27762. name: "Micro",
  27763. height: math.unit(1 + 5 / 12, "feet")
  27764. },
  27765. {
  27766. name: "Normal",
  27767. height: math.unit(3 + 5 / 12, "feet"),
  27768. default: true
  27769. },
  27770. {
  27771. name: "Minimacro",
  27772. height: math.unit(125, "feet")
  27773. },
  27774. {
  27775. name: "Macro",
  27776. height: math.unit(0.5, "miles")
  27777. },
  27778. {
  27779. name: "Megamacro",
  27780. height: math.unit(50, "miles")
  27781. },
  27782. {
  27783. name: "Gigantic",
  27784. height: math.unit(750, "miles")
  27785. },
  27786. {
  27787. name: "Planetary",
  27788. height: math.unit(15000, "miles")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(14, "feet"),
  27797. weight: math.unit(959, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/arsenal/front.svg",
  27801. extra: 2357 / 2157,
  27802. bottom: 93 / 2458
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(14, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(6, "feet"),
  27819. weight: math.unit(150, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/adira/front.svg",
  27823. extra: 1078 / 1029,
  27824. bottom: 87 / 1166
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Micro",
  27831. height: math.unit(4, "inches"),
  27832. default: true
  27833. },
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(50, "feet")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(16, "feet"),
  27845. weight: math.unit(1000, "lb"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/grim/front.svg",
  27849. extra: 622 / 614,
  27850. bottom: 18.1 / 642
  27851. }
  27852. },
  27853. back: {
  27854. height: math.unit(16, "feet"),
  27855. weight: math.unit(1000, "lb"),
  27856. name: "Back",
  27857. image: {
  27858. source: "./media/characters/grim/back.svg",
  27859. extra: 610.6 / 602,
  27860. bottom: 40.8 / 652
  27861. }
  27862. },
  27863. hunched: {
  27864. height: math.unit(9.75, "feet"),
  27865. weight: math.unit(1000, "lb"),
  27866. name: "Hunched",
  27867. image: {
  27868. source: "./media/characters/grim/hunched.svg",
  27869. extra: 304 / 297,
  27870. bottom: 35.4 / 394
  27871. }
  27872. },
  27873. },
  27874. [
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(16, "feet"),
  27878. default: true
  27879. },
  27880. ]
  27881. ))
  27882. characterMakers.push(() => makeCharacter(
  27883. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27884. {
  27885. front: {
  27886. height: math.unit(2.3, "meters"),
  27887. weight: math.unit(300, "lb"),
  27888. name: "Front",
  27889. image: {
  27890. source: "./media/characters/sinja/front-sfw.svg",
  27891. extra: 1393 / 1294,
  27892. bottom: 70 / 1463
  27893. }
  27894. },
  27895. frontNsfw: {
  27896. height: math.unit(2.3, "meters"),
  27897. weight: math.unit(300, "lb"),
  27898. name: "Front (NSFW)",
  27899. image: {
  27900. source: "./media/characters/sinja/front-nsfw.svg",
  27901. extra: 1393 / 1294,
  27902. bottom: 70 / 1463
  27903. }
  27904. },
  27905. back: {
  27906. height: math.unit(2.3, "meters"),
  27907. weight: math.unit(300, "lb"),
  27908. name: "Back",
  27909. image: {
  27910. source: "./media/characters/sinja/back.svg",
  27911. extra: 1393 / 1294,
  27912. bottom: 70 / 1463
  27913. }
  27914. },
  27915. head: {
  27916. height: math.unit(1.771, "feet"),
  27917. name: "Head",
  27918. image: {
  27919. source: "./media/characters/sinja/head.svg"
  27920. }
  27921. },
  27922. slit: {
  27923. height: math.unit(0.8, "feet"),
  27924. name: "Slit",
  27925. image: {
  27926. source: "./media/characters/sinja/slit.svg"
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(2.3, "meters")
  27934. },
  27935. {
  27936. name: "Macro",
  27937. height: math.unit(91, "meters"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Megamacro",
  27942. height: math.unit(91440, "meters")
  27943. },
  27944. {
  27945. name: "Gigamacro",
  27946. height: math.unit(60960000, "meters")
  27947. },
  27948. {
  27949. name: "Teramacro",
  27950. height: math.unit(9144000000, "meters")
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27956. {
  27957. front: {
  27958. height: math.unit(1.7, "meters"),
  27959. weight: math.unit(130, "lb"),
  27960. name: "Front",
  27961. image: {
  27962. source: "./media/characters/kyu/front.svg",
  27963. extra: 415 / 395,
  27964. bottom: 5 / 420
  27965. }
  27966. },
  27967. head: {
  27968. height: math.unit(1.75, "feet"),
  27969. name: "Head",
  27970. image: {
  27971. source: "./media/characters/kyu/head.svg"
  27972. }
  27973. },
  27974. foot: {
  27975. height: math.unit(0.81, "feet"),
  27976. name: "Foot",
  27977. image: {
  27978. source: "./media/characters/kyu/foot.svg"
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(1.7, "meters")
  27986. },
  27987. {
  27988. name: "Macro",
  27989. height: math.unit(131, "feet"),
  27990. default: true
  27991. },
  27992. {
  27993. name: "Megamacro",
  27994. height: math.unit(91440, "meters")
  27995. },
  27996. {
  27997. name: "Gigamacro",
  27998. height: math.unit(60960000, "meters")
  27999. },
  28000. {
  28001. name: "Teramacro",
  28002. height: math.unit(9144000000, "meters")
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(7 + 1 / 12, "feet"),
  28011. weight: math.unit(250, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/joey/front.svg",
  28015. extra: 1791 / 1537,
  28016. bottom: 28 / 1816
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Micro",
  28023. height: math.unit(3, "inches")
  28024. },
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(7 + 1 / 12, "feet"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(165, "cm"),
  28037. weight: math.unit(140, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/sam-evans/front.svg",
  28041. extra: 3417 / 3230,
  28042. bottom: 41.3 / 3417
  28043. }
  28044. },
  28045. frontSixTails: {
  28046. height: math.unit(165, "cm"),
  28047. weight: math.unit(140, "lb"),
  28048. name: "Front-six-tails",
  28049. image: {
  28050. source: "./media/characters/sam-evans/front-six-tails.svg",
  28051. extra: 3417 / 3230,
  28052. bottom: 41.3 / 3417
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(165, "cm"),
  28057. weight: math.unit(140, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/sam-evans/back.svg",
  28061. extra: 3227 / 3032,
  28062. bottom: 6.8 / 3234
  28063. }
  28064. },
  28065. face: {
  28066. height: math.unit(0.68, "feet"),
  28067. name: "Face",
  28068. image: {
  28069. source: "./media/characters/sam-evans/face.svg"
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(165, "cm"),
  28077. default: true
  28078. },
  28079. {
  28080. name: "Macro",
  28081. height: math.unit(100, "meters")
  28082. },
  28083. {
  28084. name: "Macro+",
  28085. height: math.unit(800, "meters")
  28086. },
  28087. {
  28088. name: "Macro++",
  28089. height: math.unit(3, "km")
  28090. },
  28091. {
  28092. name: "Macro+++",
  28093. height: math.unit(30, "km")
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28099. {
  28100. front: {
  28101. height: math.unit(10, "feet"),
  28102. weight: math.unit(750, "lb"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/juliet-a/front.svg",
  28106. extra: 1766 / 1720,
  28107. bottom: 43 / 1809
  28108. }
  28109. },
  28110. back: {
  28111. height: math.unit(10, "feet"),
  28112. weight: math.unit(750, "lb"),
  28113. name: "Back",
  28114. image: {
  28115. source: "./media/characters/juliet-a/back.svg",
  28116. extra: 1781 / 1734,
  28117. bottom: 35 / 1810,
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(10, "feet"),
  28125. default: true
  28126. },
  28127. {
  28128. name: "Dragon Form",
  28129. height: math.unit(250, "feet")
  28130. },
  28131. {
  28132. name: "Macro",
  28133. height: math.unit(1000, "feet")
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(10000, "feet")
  28138. }
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28143. {
  28144. regular: {
  28145. height: math.unit(7 + 3 / 12, "feet"),
  28146. weight: math.unit(260, "lb"),
  28147. name: "Regular",
  28148. image: {
  28149. source: "./media/characters/wild/regular.svg",
  28150. extra: 97.45 / 92,
  28151. bottom: 6.8 / 104.3
  28152. }
  28153. },
  28154. biggums: {
  28155. height: math.unit(8 + 6 / 12, "feet"),
  28156. weight: math.unit(425, "lb"),
  28157. name: "Biggums",
  28158. image: {
  28159. source: "./media/characters/wild/biggums.svg",
  28160. extra: 97.45 / 92,
  28161. bottom: 7.5 / 132.34
  28162. }
  28163. },
  28164. mawRegular: {
  28165. height: math.unit(1.24, "feet"),
  28166. name: "Maw (Regular)",
  28167. image: {
  28168. source: "./media/characters/wild/maw.svg"
  28169. }
  28170. },
  28171. mawBiggums: {
  28172. height: math.unit(1.47, "feet"),
  28173. name: "Maw (Biggums)",
  28174. image: {
  28175. source: "./media/characters/wild/maw.svg"
  28176. }
  28177. },
  28178. },
  28179. [
  28180. {
  28181. name: "Normal",
  28182. height: math.unit(7 + 3 / 12, "feet"),
  28183. default: true
  28184. },
  28185. ]
  28186. ))
  28187. characterMakers.push(() => makeCharacter(
  28188. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28189. {
  28190. front: {
  28191. height: math.unit(2.5, "meters"),
  28192. weight: math.unit(200, "kg"),
  28193. name: "Front",
  28194. image: {
  28195. source: "./media/characters/vidar/front.svg",
  28196. extra: 2994 / 2795,
  28197. bottom: 56 / 3061
  28198. }
  28199. },
  28200. back: {
  28201. height: math.unit(2.5, "meters"),
  28202. weight: math.unit(200, "kg"),
  28203. name: "Back",
  28204. image: {
  28205. source: "./media/characters/vidar/back.svg",
  28206. extra: 3131 / 2928,
  28207. bottom: 13.5 / 3141.5
  28208. }
  28209. },
  28210. feral: {
  28211. height: math.unit(2.5, "meters"),
  28212. weight: math.unit(2000, "kg"),
  28213. name: "Feral",
  28214. image: {
  28215. source: "./media/characters/vidar/feral.svg",
  28216. extra: 2790 / 1765,
  28217. bottom: 6 / 2796
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(2.5, "meters"),
  28225. default: true
  28226. },
  28227. {
  28228. name: "Macro",
  28229. height: math.unit(100, "meters")
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(5 + 9 / 12, "feet"),
  28238. weight: math.unit(120, "lb"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/ash/front.svg",
  28242. extra: 2189 / 1961,
  28243. bottom: 5.2 / 2194
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(5 + 9 / 12, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(9, "feet"),
  28260. weight: math.unit(10000, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/gygabite/front.svg",
  28264. bottom: 31.7 / 537.8,
  28265. extra: 505 / 370
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(9, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(12, "feet"),
  28282. weight: math.unit(35000, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/p0tat0/front.svg",
  28286. extra: 1065 / 921,
  28287. bottom: 55.7 / 1121.25
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(12, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28301. {
  28302. side: {
  28303. height: math.unit(6.5, "feet"),
  28304. weight: math.unit(800, "lb"),
  28305. name: "Side",
  28306. image: {
  28307. source: "./media/characters/dusk/side.svg",
  28308. extra: 615 / 373,
  28309. bottom: 53 / 664
  28310. }
  28311. },
  28312. sitting: {
  28313. height: math.unit(7, "feet"),
  28314. weight: math.unit(800, "lb"),
  28315. name: "Sitting",
  28316. image: {
  28317. source: "./media/characters/dusk/sitting.svg",
  28318. extra: 753 / 425,
  28319. bottom: 33 / 774
  28320. }
  28321. },
  28322. head: {
  28323. height: math.unit(6.1, "feet"),
  28324. name: "Head",
  28325. image: {
  28326. source: "./media/characters/dusk/head.svg"
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(7, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28340. {
  28341. front: {
  28342. height: math.unit(15, "feet"),
  28343. weight: math.unit(7000, "lb"),
  28344. name: "Front",
  28345. image: {
  28346. source: "./media/characters/jay-direwolf/front.svg",
  28347. extra: 1810 / 1732,
  28348. bottom: 66 / 1892
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(15, "feet"),
  28356. default: true
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(4 + 9 / 12, "feet"),
  28365. weight: math.unit(130, "lb"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/anchovie/front.svg",
  28369. extra: 382 / 350,
  28370. bottom: 25 / 409
  28371. }
  28372. },
  28373. back: {
  28374. height: math.unit(4 + 9 / 12, "feet"),
  28375. weight: math.unit(130, "lb"),
  28376. name: "Back",
  28377. image: {
  28378. source: "./media/characters/anchovie/back.svg",
  28379. extra: 385 / 352,
  28380. bottom: 16.6 / 402
  28381. }
  28382. },
  28383. frontDressed: {
  28384. height: math.unit(4 + 9 / 12, "feet"),
  28385. weight: math.unit(130, "lb"),
  28386. name: "Front (Dressed)",
  28387. image: {
  28388. source: "./media/characters/anchovie/front-dressed.svg",
  28389. extra: 382 / 350,
  28390. bottom: 25 / 409
  28391. }
  28392. },
  28393. backDressed: {
  28394. height: math.unit(4 + 9 / 12, "feet"),
  28395. weight: math.unit(130, "lb"),
  28396. name: "Back (Dressed)",
  28397. image: {
  28398. source: "./media/characters/anchovie/back-dressed.svg",
  28399. extra: 385 / 352,
  28400. bottom: 16.6 / 402
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Micro",
  28407. height: math.unit(6.4, "inches")
  28408. },
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(4 + 9 / 12, "feet"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(2, "meters"),
  28421. weight: math.unit(180, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/acidrenamon/front.svg",
  28425. extra: 987 / 890,
  28426. bottom: 22.8 / 1009
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(2, "meters"),
  28431. weight: math.unit(180, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/acidrenamon/back.svg",
  28435. extra: 983 / 891,
  28436. bottom: 8.4 / 992
  28437. }
  28438. },
  28439. head: {
  28440. height: math.unit(1.92, "feet"),
  28441. name: "Head",
  28442. image: {
  28443. source: "./media/characters/acidrenamon/head.svg"
  28444. }
  28445. },
  28446. rump: {
  28447. height: math.unit(1.72, "feet"),
  28448. name: "Rump",
  28449. image: {
  28450. source: "./media/characters/acidrenamon/rump.svg"
  28451. }
  28452. },
  28453. tail: {
  28454. height: math.unit(4.2, "feet"),
  28455. name: "Tail",
  28456. image: {
  28457. source: "./media/characters/acidrenamon/tail.svg"
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(2, "meters"),
  28465. default: true
  28466. },
  28467. {
  28468. name: "Minimacro",
  28469. height: math.unit(7, "meters")
  28470. },
  28471. {
  28472. name: "Macro",
  28473. height: math.unit(200, "meters")
  28474. },
  28475. {
  28476. name: "Gigamacro",
  28477. height: math.unit(0.2, "earths")
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(152, "feet"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/kenzie-lee/front.svg",
  28489. extra: 1869/1774,
  28490. bottom: 128/1997
  28491. }
  28492. },
  28493. side: {
  28494. height: math.unit(86, "feet"),
  28495. name: "Side",
  28496. image: {
  28497. source: "./media/characters/kenzie-lee/side.svg",
  28498. extra: 930/815,
  28499. bottom: 177/1107
  28500. }
  28501. },
  28502. paw: {
  28503. height: math.unit(15, "feet"),
  28504. name: "Paw",
  28505. image: {
  28506. source: "./media/characters/kenzie-lee/paw.svg"
  28507. }
  28508. },
  28509. },
  28510. [
  28511. {
  28512. name: "Micro",
  28513. height: math.unit(1.5, "inches")
  28514. },
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(152, "feet"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Megamacro",
  28522. height: math.unit(7, "miles")
  28523. },
  28524. {
  28525. name: "Gigamacro",
  28526. height: math.unit(8000, "miles")
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28532. {
  28533. side: {
  28534. height: math.unit(6, "feet"),
  28535. weight: math.unit(150, "lb"),
  28536. name: "Side",
  28537. image: {
  28538. source: "./media/characters/withers/side.svg",
  28539. extra: 1830 / 1728,
  28540. bottom: 96 / 1927
  28541. }
  28542. },
  28543. front: {
  28544. height: math.unit(6, "feet"),
  28545. weight: math.unit(150, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/withers/front.svg",
  28549. extra: 1514 / 1438,
  28550. bottom: 118 / 1632
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Macro",
  28557. height: math.unit(168, "feet"),
  28558. default: true
  28559. },
  28560. {
  28561. name: "Megamacro",
  28562. height: math.unit(15, "miles")
  28563. }
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(6 + 7 / 12, "feet"),
  28571. weight: math.unit(250, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/nemoskii/front.svg",
  28575. extra: 2270 / 1734,
  28576. bottom: 86 / 2354
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(6 + 7 / 12, "feet"),
  28581. weight: math.unit(250, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/nemoskii/back.svg",
  28585. extra: 1845 / 1788,
  28586. bottom: 10.5 / 1852
  28587. }
  28588. },
  28589. head: {
  28590. height: math.unit(1.31, "feet"),
  28591. name: "Head",
  28592. image: {
  28593. source: "./media/characters/nemoskii/head.svg"
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Micro",
  28600. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28601. },
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(6 + 7 / 12, "feet"),
  28605. default: true
  28606. },
  28607. {
  28608. name: "Macro",
  28609. height: math.unit((6 + 7 / 12) * 150, "feet")
  28610. },
  28611. {
  28612. name: "Macro+",
  28613. height: math.unit((6 + 7 / 12) * 500, "feet")
  28614. },
  28615. {
  28616. name: "Megamacro",
  28617. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(1, "mile"),
  28626. weight: math.unit(265261.9, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/shui/front.svg",
  28630. extra: 1633 / 1564,
  28631. bottom: 91.5 / 1726
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Macro",
  28638. height: math.unit(1, "mile"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(12 + 6 / 12, "feet"),
  28648. weight: math.unit(1342, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/arokh-takakura/front.svg",
  28652. extra: 1089 / 1043,
  28653. bottom: 77.4 / 1176.7
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(12 + 6 / 12, "feet"),
  28658. weight: math.unit(1342, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/arokh-takakura/back.svg",
  28662. extra: 1046 / 1019,
  28663. bottom: 102 / 1150
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Big",
  28670. height: math.unit(12 + 6 / 12, "feet"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(5 + 6 / 12, "feet"),
  28680. weight: math.unit(150, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/theo/front.svg",
  28684. extra: 1184 / 1131,
  28685. bottom: 7.4 / 1191
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Micro",
  28692. height: math.unit(5, "inches")
  28693. },
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(5 + 6 / 12, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(5 + 9 / 12, "feet"),
  28706. weight: math.unit(130, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/cecelia-swift/front.svg",
  28710. extra: 502 / 484,
  28711. bottom: 23 / 523
  28712. }
  28713. },
  28714. back: {
  28715. height: math.unit(5 + 9 / 12, "feet"),
  28716. weight: math.unit(130, "lb"),
  28717. name: "Back",
  28718. image: {
  28719. source: "./media/characters/cecelia-swift/back.svg",
  28720. extra: 499 / 485,
  28721. bottom: 12 / 511
  28722. }
  28723. },
  28724. head: {
  28725. height: math.unit(0.90, "feet"),
  28726. name: "Head",
  28727. image: {
  28728. source: "./media/characters/cecelia-swift/head.svg"
  28729. }
  28730. },
  28731. rump: {
  28732. height: math.unit(1.75, "feet"),
  28733. name: "Rump",
  28734. image: {
  28735. source: "./media/characters/cecelia-swift/rump.svg"
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Normal",
  28742. height: math.unit(5 + 9 / 12, "feet"),
  28743. default: true
  28744. },
  28745. {
  28746. name: "Big",
  28747. height: math.unit(50, "feet")
  28748. },
  28749. {
  28750. name: "Macro",
  28751. height: math.unit(100, "feet")
  28752. },
  28753. {
  28754. name: "Macro+",
  28755. height: math.unit(500, "feet")
  28756. },
  28757. {
  28758. name: "Macro++",
  28759. height: math.unit(1000, "feet")
  28760. },
  28761. ]
  28762. ))
  28763. characterMakers.push(() => makeCharacter(
  28764. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28765. {
  28766. front: {
  28767. height: math.unit(6, "feet"),
  28768. weight: math.unit(150, "lb"),
  28769. name: "Front",
  28770. image: {
  28771. source: "./media/characters/kaunan/front.svg",
  28772. extra: 2890 / 2523,
  28773. bottom: 49 / 2939
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Macro",
  28780. height: math.unit(150, "feet"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28787. {
  28788. front: {
  28789. height: math.unit(175, "cm"),
  28790. weight: math.unit(60, "kg"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/fei/front.svg",
  28794. extra: 1873/1723,
  28795. bottom: 53/1926
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Mortal",
  28802. height: math.unit(175, "cm")
  28803. },
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(3500, "m"),
  28807. default: true
  28808. },
  28809. {
  28810. name: "Stroll",
  28811. height: math.unit(17.5, "km")
  28812. },
  28813. {
  28814. name: "Showoff",
  28815. height: math.unit(175, "km")
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28821. {
  28822. front: {
  28823. height: math.unit(7, "feet"),
  28824. weight: math.unit(1000, "kg"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/edrax/front.svg",
  28828. extra: 2838 / 2550,
  28829. bottom: 130 / 2968
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Small",
  28836. height: math.unit(7, "feet")
  28837. },
  28838. {
  28839. name: "Normal",
  28840. height: math.unit(1500, "meters")
  28841. },
  28842. {
  28843. name: "Mega",
  28844. height: math.unit(12000000, "km"),
  28845. default: true
  28846. },
  28847. {
  28848. name: "Megamacro",
  28849. height: math.unit(10600000, "lightyears")
  28850. },
  28851. {
  28852. name: "Hypermacro",
  28853. height: math.unit(256, "yottameters")
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(10, "feet"),
  28862. weight: math.unit(750, "lb"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/clove/front.svg",
  28866. extra: 1918/1751,
  28867. bottom: 52/1970
  28868. }
  28869. },
  28870. back: {
  28871. height: math.unit(10, "feet"),
  28872. weight: math.unit(750, "lb"),
  28873. name: "Back",
  28874. image: {
  28875. source: "./media/characters/clove/back.svg",
  28876. extra: 1912/1747,
  28877. bottom: 50/1962
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(10, "feet"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(4, "feet"),
  28894. weight: math.unit(50, "lb"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/alex-rabbit/front.svg",
  28898. extra: 507 / 458,
  28899. bottom: 18.5 / 527
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(4, "feet"),
  28904. weight: math.unit(50, "lb"),
  28905. name: "Back",
  28906. image: {
  28907. source: "./media/characters/alex-rabbit/back.svg",
  28908. extra: 502 / 460,
  28909. bottom: 18.9 / 521
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(4, "feet"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(1 + 3 / 12, "feet"),
  28926. weight: math.unit(80, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/zander-rose/front.svg",
  28930. extra: 916 / 797,
  28931. bottom: 17 / 933
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(1 + 3 / 12, "feet"),
  28936. weight: math.unit(80, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/zander-rose/back.svg",
  28940. extra: 903 / 779,
  28941. bottom: 31 / 934
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(1 + 3 / 12, "feet"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28955. {
  28956. anthro: {
  28957. height: math.unit(6, "feet"),
  28958. weight: math.unit(150, "lb"),
  28959. name: "Anthro",
  28960. image: {
  28961. source: "./media/characters/razz/anthro.svg",
  28962. extra: 1437 / 1343,
  28963. bottom: 48 / 1485
  28964. }
  28965. },
  28966. feral: {
  28967. height: math.unit(6, "feet"),
  28968. weight: math.unit(150, "lb"),
  28969. name: "Feral",
  28970. image: {
  28971. source: "./media/characters/razz/feral.svg",
  28972. extra: 2569 / 1385,
  28973. bottom: 95 / 2664
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(6, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(9 + 4 / 12, "feet"),
  28990. weight: math.unit(500, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/morrigan/front.svg",
  28994. extra: 2707 / 2579,
  28995. bottom: 156 / 2863
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(9 + 4 / 12, "feet"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(5, "stories"),
  29012. weight: math.unit(4000, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/jenene/front.svg",
  29016. extra: 1780 / 1710,
  29017. bottom: 57 / 1837
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(5, "stories"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29031. {
  29032. taurSfw: {
  29033. height: math.unit(10, "meters"),
  29034. weight: math.unit(17500, "kg"),
  29035. name: "Taur",
  29036. image: {
  29037. source: "./media/characters/faey/taur-sfw.svg",
  29038. extra: 1200 / 968,
  29039. bottom: 41 / 1241
  29040. }
  29041. },
  29042. chestmaw: {
  29043. height: math.unit(2.01, "meters"),
  29044. name: "Chestmaw",
  29045. image: {
  29046. source: "./media/characters/faey/chestmaw.svg"
  29047. }
  29048. },
  29049. foot: {
  29050. height: math.unit(2.43, "meters"),
  29051. name: "Foot",
  29052. image: {
  29053. source: "./media/characters/faey/foot.svg"
  29054. }
  29055. },
  29056. jaws: {
  29057. height: math.unit(1.66, "meters"),
  29058. name: "Jaws",
  29059. image: {
  29060. source: "./media/characters/faey/jaws.svg"
  29061. }
  29062. },
  29063. tongues: {
  29064. height: math.unit(2.01, "meters"),
  29065. name: "Tongues",
  29066. image: {
  29067. source: "./media/characters/faey/tongues.svg"
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Small",
  29074. height: math.unit(10, "meters"),
  29075. default: true
  29076. },
  29077. {
  29078. name: "Big",
  29079. height: math.unit(500000, "km")
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(7, "feet"),
  29088. weight: math.unit(275, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/roku/front.svg",
  29092. extra: 903 / 878,
  29093. bottom: 37 / 940
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(7, "feet"),
  29101. default: true
  29102. },
  29103. {
  29104. name: "Macro",
  29105. height: math.unit(500, "feet")
  29106. },
  29107. {
  29108. name: "Megamacro",
  29109. height: math.unit(200, "miles")
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(6 + 2 / 12, "feet"),
  29118. weight: math.unit(150, "lb"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/lira/front.svg",
  29122. extra: 1727 / 1605,
  29123. bottom: 26 / 1753
  29124. }
  29125. },
  29126. back: {
  29127. height: math.unit(6 + 2 / 12, "feet"),
  29128. weight: math.unit(150, "lb"),
  29129. name: "Back",
  29130. image: {
  29131. source: "./media/characters/lira/back.svg",
  29132. extra: 1713/1621,
  29133. bottom: 20/1733
  29134. }
  29135. },
  29136. hand: {
  29137. height: math.unit(0.75, "feet"),
  29138. name: "Hand",
  29139. image: {
  29140. source: "./media/characters/lira/hand.svg"
  29141. }
  29142. },
  29143. maw: {
  29144. height: math.unit(0.65, "feet"),
  29145. name: "Maw",
  29146. image: {
  29147. source: "./media/characters/lira/maw.svg"
  29148. }
  29149. },
  29150. pawDigi: {
  29151. height: math.unit(1.6, "feet"),
  29152. name: "Paw Digi",
  29153. image: {
  29154. source: "./media/characters/lira/paw-digi.svg"
  29155. }
  29156. },
  29157. pawPlanti: {
  29158. height: math.unit(1.4, "feet"),
  29159. name: "Paw Planti",
  29160. image: {
  29161. source: "./media/characters/lira/paw-planti.svg"
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(6 + 2 / 12, "feet"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "Macro",
  29173. height: math.unit(100, "feet")
  29174. },
  29175. {
  29176. name: "Macro²",
  29177. height: math.unit(1600, "feet")
  29178. },
  29179. {
  29180. name: "Planetary",
  29181. height: math.unit(20, "earths")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/hadjet/front.svg",
  29194. extra: 1480 / 1346,
  29195. bottom: 26 / 1506
  29196. }
  29197. },
  29198. frontNsfw: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front (NSFW)",
  29202. image: {
  29203. source: "./media/characters/hadjet/front-nsfw.svg",
  29204. extra: 1440 / 1358,
  29205. bottom: 52 / 1492
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Macro",
  29212. height: math.unit(10, "stories"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Megamacro",
  29217. height: math.unit(1.5, "miles")
  29218. },
  29219. {
  29220. name: "Megamacro+",
  29221. height: math.unit(5, "miles")
  29222. },
  29223. ]
  29224. ))
  29225. characterMakers.push(() => makeCharacter(
  29226. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29227. {
  29228. side: {
  29229. height: math.unit(106, "feet"),
  29230. weight: math.unit(500, "tonnes"),
  29231. name: "Side",
  29232. image: {
  29233. source: "./media/characters/kodran/side.svg",
  29234. extra: 553 / 480,
  29235. bottom: 33 / 586
  29236. }
  29237. },
  29238. front: {
  29239. height: math.unit(132, "feet"),
  29240. weight: math.unit(500, "tonnes"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/kodran/front.svg",
  29244. extra: 667 / 643,
  29245. bottom: 42 / 709
  29246. }
  29247. },
  29248. flying: {
  29249. height: math.unit(350, "feet"),
  29250. weight: math.unit(500, "tonnes"),
  29251. name: "Flying",
  29252. image: {
  29253. source: "./media/characters/kodran/flying.svg"
  29254. }
  29255. },
  29256. foot: {
  29257. height: math.unit(33, "feet"),
  29258. name: "Foot",
  29259. image: {
  29260. source: "./media/characters/kodran/foot.svg"
  29261. }
  29262. },
  29263. footFront: {
  29264. height: math.unit(19, "feet"),
  29265. name: "Foot (Front)",
  29266. image: {
  29267. source: "./media/characters/kodran/foot-front.svg",
  29268. extra: 261 / 261,
  29269. bottom: 91 / 352
  29270. }
  29271. },
  29272. headFront: {
  29273. height: math.unit(53, "feet"),
  29274. name: "Head (Front)",
  29275. image: {
  29276. source: "./media/characters/kodran/head-front.svg"
  29277. }
  29278. },
  29279. headSide: {
  29280. height: math.unit(65, "feet"),
  29281. name: "Head (Side)",
  29282. image: {
  29283. source: "./media/characters/kodran/head-side.svg"
  29284. }
  29285. },
  29286. throat: {
  29287. height: math.unit(79, "feet"),
  29288. name: "Throat",
  29289. image: {
  29290. source: "./media/characters/kodran/throat.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Large",
  29297. height: math.unit(106, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29304. {
  29305. side: {
  29306. height: math.unit(11, "feet"),
  29307. weight: math.unit(150, "lb"),
  29308. name: "Side",
  29309. image: {
  29310. source: "./media/characters/pyxaron/side.svg",
  29311. extra: 305 / 195,
  29312. bottom: 17 / 322
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(11, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(6, "feet"),
  29329. weight: math.unit(150, "lb"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/meep/front.svg",
  29333. extra: 88 / 80,
  29334. bottom: 6 / 94
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Fun Sized",
  29341. height: math.unit(2, "inches"),
  29342. default: true
  29343. },
  29344. {
  29345. name: "Friend Sized",
  29346. height: math.unit(8, "inches")
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(15, "feet"),
  29355. weight: math.unit(2500, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/holly-rabbit/front.svg",
  29359. extra: 1433 / 1233,
  29360. bottom: 125 / 1558
  29361. }
  29362. },
  29363. dick: {
  29364. height: math.unit(4.6, "feet"),
  29365. name: "Dick",
  29366. image: {
  29367. source: "./media/characters/holly-rabbit/dick.svg"
  29368. }
  29369. },
  29370. },
  29371. [
  29372. {
  29373. name: "Normal",
  29374. height: math.unit(15, "feet"),
  29375. default: true
  29376. },
  29377. {
  29378. name: "Macro",
  29379. height: math.unit(250, "feet")
  29380. },
  29381. {
  29382. name: "Macro+",
  29383. height: math.unit(2500, "feet")
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29389. {
  29390. front: {
  29391. height: math.unit(3.02, "meters"),
  29392. weight: math.unit(500, "kg"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/drena/front.svg",
  29396. extra: 282 / 243,
  29397. bottom: 8 / 290
  29398. }
  29399. },
  29400. side: {
  29401. height: math.unit(3.02, "meters"),
  29402. weight: math.unit(500, "kg"),
  29403. name: "Side",
  29404. image: {
  29405. source: "./media/characters/drena/side.svg",
  29406. extra: 280 / 245,
  29407. bottom: 10 / 290
  29408. }
  29409. },
  29410. back: {
  29411. height: math.unit(3.02, "meters"),
  29412. weight: math.unit(500, "kg"),
  29413. name: "Back",
  29414. image: {
  29415. source: "./media/characters/drena/back.svg",
  29416. extra: 278 / 243,
  29417. bottom: 2 / 280
  29418. }
  29419. },
  29420. foot: {
  29421. height: math.unit(0.75, "meters"),
  29422. name: "Foot",
  29423. image: {
  29424. source: "./media/characters/drena/foot.svg"
  29425. }
  29426. },
  29427. maw: {
  29428. height: math.unit(0.82, "meters"),
  29429. name: "Maw",
  29430. image: {
  29431. source: "./media/characters/drena/maw.svg"
  29432. }
  29433. },
  29434. eating: {
  29435. height: math.unit(0.75, "meters"),
  29436. name: "Eating",
  29437. image: {
  29438. source: "./media/characters/drena/eating.svg"
  29439. }
  29440. },
  29441. rump: {
  29442. height: math.unit(0.93, "meters"),
  29443. name: "Rump",
  29444. image: {
  29445. source: "./media/characters/drena/rump.svg"
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(3.02, "meters"),
  29453. default: true
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(6 + 4 / 12, "feet"),
  29462. weight: math.unit(250, "lb"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/remmyzilla/front.svg",
  29466. extra: 4033 / 3588,
  29467. bottom: 123 / 4156
  29468. }
  29469. },
  29470. back: {
  29471. height: math.unit(6 + 4 / 12, "feet"),
  29472. weight: math.unit(250, "lb"),
  29473. name: "Back",
  29474. image: {
  29475. source: "./media/characters/remmyzilla/back.svg",
  29476. extra: 2687 / 2555,
  29477. bottom: 48 / 2735
  29478. }
  29479. },
  29480. paw: {
  29481. height: math.unit(1.73, "feet"),
  29482. name: "Paw",
  29483. image: {
  29484. source: "./media/characters/remmyzilla/paw.svg"
  29485. }
  29486. },
  29487. maw: {
  29488. height: math.unit(1.73, "feet"),
  29489. name: "Maw",
  29490. image: {
  29491. source: "./media/characters/remmyzilla/maw.svg"
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(6 + 4 / 12, "feet")
  29499. },
  29500. {
  29501. name: "Minimacro",
  29502. height: math.unit(12 + 8 / 12, "feet")
  29503. },
  29504. {
  29505. name: "Normal",
  29506. height: math.unit(640, "feet"),
  29507. default: true
  29508. },
  29509. {
  29510. name: "Megamacro",
  29511. height: math.unit(6400, "feet")
  29512. },
  29513. {
  29514. name: "Gigamacro",
  29515. height: math.unit(64000, "miles")
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(2.5, "meters"),
  29524. weight: math.unit(300, "lb"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/lawrence/front.svg",
  29528. extra: 357 / 335,
  29529. bottom: 30 / 387
  29530. }
  29531. },
  29532. back: {
  29533. height: math.unit(2.5, "meters"),
  29534. weight: math.unit(300, "lb"),
  29535. name: "Back",
  29536. image: {
  29537. source: "./media/characters/lawrence/back.svg",
  29538. extra: 357 / 338,
  29539. bottom: 16 / 373
  29540. }
  29541. },
  29542. head: {
  29543. height: math.unit(0.9, "meter"),
  29544. name: "Head",
  29545. image: {
  29546. source: "./media/characters/lawrence/head.svg"
  29547. }
  29548. },
  29549. maw: {
  29550. height: math.unit(0.7, "meter"),
  29551. name: "Maw",
  29552. image: {
  29553. source: "./media/characters/lawrence/maw.svg"
  29554. }
  29555. },
  29556. footBottom: {
  29557. height: math.unit(0.5, "meter"),
  29558. name: "Foot (Bottom)",
  29559. image: {
  29560. source: "./media/characters/lawrence/foot-bottom.svg"
  29561. }
  29562. },
  29563. footTop: {
  29564. height: math.unit(0.5, "meter"),
  29565. name: "Foot (Top)",
  29566. image: {
  29567. source: "./media/characters/lawrence/foot-top.svg"
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Normal",
  29574. height: math.unit(2.5, "meters"),
  29575. default: true
  29576. },
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(95, "meters")
  29580. },
  29581. {
  29582. name: "Megamacro",
  29583. height: math.unit(150, "km")
  29584. },
  29585. ]
  29586. ))
  29587. characterMakers.push(() => makeCharacter(
  29588. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29589. {
  29590. front: {
  29591. height: math.unit(4.2, "meters"),
  29592. name: "Front",
  29593. image: {
  29594. source: "./media/characters/sydney/front.svg",
  29595. extra: 1323 / 1277,
  29596. bottom: 111 / 1434
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(4.2, "meters"),
  29604. default: true
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29610. {
  29611. back: {
  29612. height: math.unit(201, "feet"),
  29613. name: "Back",
  29614. image: {
  29615. source: "./media/characters/jessica/back.svg",
  29616. extra: 273 / 259,
  29617. bottom: 7 / 280
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Normal",
  29624. height: math.unit(201, "feet"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "Megamacro",
  29629. height: math.unit(8, "miles")
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29635. {
  29636. side: {
  29637. height: math.unit(5.6, "m"),
  29638. weight: math.unit(8000, "kg"),
  29639. name: "Side",
  29640. image: {
  29641. source: "./media/characters/victoria/side.svg",
  29642. extra: 1542/1229,
  29643. bottom: 124/1666
  29644. }
  29645. },
  29646. maw: {
  29647. height: math.unit(7.14, "feet"),
  29648. name: "Maw",
  29649. image: {
  29650. source: "./media/characters/victoria/maw.svg"
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(5.6, "m"),
  29658. default: true
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29664. {
  29665. front: {
  29666. height: math.unit(5 + 6 / 12, "feet"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/cat/front.svg",
  29670. extra: 1449/1295,
  29671. bottom: 34/1483
  29672. },
  29673. form: "cat",
  29674. default: true
  29675. },
  29676. back: {
  29677. height: math.unit(5 + 6 / 12, "feet"),
  29678. name: "Back",
  29679. image: {
  29680. source: "./media/characters/cat/back.svg",
  29681. extra: 1466/1301,
  29682. bottom: 19/1485
  29683. },
  29684. form: "cat"
  29685. },
  29686. taur: {
  29687. height: math.unit(7, "feet"),
  29688. name: "Taur",
  29689. image: {
  29690. source: "./media/characters/cat/taur.svg",
  29691. extra: 1389/1233,
  29692. bottom: 83/1472
  29693. },
  29694. form: "taur",
  29695. default: true
  29696. },
  29697. lucarioFront: {
  29698. height: math.unit(4, "feet"),
  29699. name: "Lucario (Front)",
  29700. image: {
  29701. source: "./media/characters/cat/lucario-front.svg",
  29702. extra: 1149/1019,
  29703. bottom: 84/1233
  29704. },
  29705. form: "lucario",
  29706. default: true
  29707. },
  29708. lucarioBack: {
  29709. height: math.unit(4, "feet"),
  29710. name: "Lucario (Back)",
  29711. image: {
  29712. source: "./media/characters/cat/lucario-back.svg",
  29713. extra: 1190/1059,
  29714. bottom: 33/1223
  29715. },
  29716. form: "lucario"
  29717. },
  29718. megaLucario: {
  29719. height: math.unit(4, "feet"),
  29720. name: "Mega Lucario",
  29721. image: {
  29722. source: "./media/characters/cat/mega-lucario.svg",
  29723. extra: 1515 / 1319,
  29724. bottom: 63 / 1578
  29725. },
  29726. form: "lucario"
  29727. },
  29728. nickit: {
  29729. height: math.unit(2, "feet"),
  29730. name: "Nickit",
  29731. image: {
  29732. source: "./media/characters/cat/nickit.svg",
  29733. extra: 1980 / 1585,
  29734. bottom: 102 / 2082
  29735. },
  29736. form: "nickit",
  29737. default: true
  29738. },
  29739. lopunnyFront: {
  29740. height: math.unit(5, "feet"),
  29741. name: "Lopunny (Front)",
  29742. image: {
  29743. source: "./media/characters/cat/lopunny-front.svg",
  29744. extra: 1782 / 1469,
  29745. bottom: 38 / 1820
  29746. },
  29747. form: "lopunny",
  29748. default: true
  29749. },
  29750. lopunnyBack: {
  29751. height: math.unit(5, "feet"),
  29752. name: "Lopunny (Back)",
  29753. image: {
  29754. source: "./media/characters/cat/lopunny-back.svg",
  29755. extra: 1660 / 1490,
  29756. bottom: 25 / 1685
  29757. },
  29758. form: "lopunny"
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Really small",
  29764. height: math.unit(1, "nm")
  29765. },
  29766. {
  29767. name: "Micro",
  29768. height: math.unit(5, "inches")
  29769. },
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(5 + 6 / 12, "feet"),
  29773. default: true
  29774. },
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(50, "feet")
  29778. },
  29779. {
  29780. name: "Macro+",
  29781. height: math.unit(150, "feet")
  29782. },
  29783. {
  29784. name: "Megamacro",
  29785. height: math.unit(100, "miles")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(63.4, "meters"),
  29794. weight: math.unit(3.28349e+6, "kilograms"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/kirina-violet/front.svg",
  29798. extra: 2812 / 2725,
  29799. bottom: 0 / 2812
  29800. }
  29801. },
  29802. back: {
  29803. height: math.unit(63.4, "meters"),
  29804. weight: math.unit(3.28349e+6, "kilograms"),
  29805. name: "Back",
  29806. image: {
  29807. source: "./media/characters/kirina-violet/back.svg",
  29808. extra: 2812 / 2725,
  29809. bottom: 0 / 2812
  29810. }
  29811. },
  29812. mouth: {
  29813. height: math.unit(4.35, "meters"),
  29814. name: "Mouth",
  29815. image: {
  29816. source: "./media/characters/kirina-violet/mouth.svg"
  29817. }
  29818. },
  29819. paw: {
  29820. height: math.unit(5.6, "meters"),
  29821. name: "Paw",
  29822. image: {
  29823. source: "./media/characters/kirina-violet/paw.svg"
  29824. }
  29825. },
  29826. tail: {
  29827. height: math.unit(18, "meters"),
  29828. name: "Tail",
  29829. image: {
  29830. source: "./media/characters/kirina-violet/tail.svg"
  29831. }
  29832. },
  29833. },
  29834. [
  29835. {
  29836. name: "Macro",
  29837. height: math.unit(63.4, "meters"),
  29838. default: true
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(75, "feet"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/cat-gigachu/front.svg",
  29850. extra: 1239/1027,
  29851. bottom: 32/1271
  29852. }
  29853. },
  29854. back: {
  29855. height: math.unit(75, "feet"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/cat-gigachu/back.svg",
  29859. extra: 1229/1030,
  29860. bottom: 9/1238
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Dynamax",
  29867. height: math.unit(75, "feet"),
  29868. default: true
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29874. {
  29875. front: {
  29876. height: math.unit(6, "feet"),
  29877. weight: math.unit(150, "lb"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/sfaiyan/front.svg",
  29881. extra: 999 / 978,
  29882. bottom: 5 / 1004
  29883. }
  29884. },
  29885. },
  29886. [
  29887. {
  29888. name: "Normal",
  29889. height: math.unit(1.82, "meters")
  29890. },
  29891. {
  29892. name: "Giant",
  29893. height: math.unit(2.27, "km"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(179, "cm"),
  29903. weight: math.unit(100, "kg"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/raunehkeli/front.svg",
  29907. extra: 1934 / 1926,
  29908. bottom: 0 / 1934
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(179, "cm")
  29916. },
  29917. {
  29918. name: "Maximum",
  29919. height: math.unit(575, "meters"),
  29920. default: true
  29921. },
  29922. ]
  29923. ))
  29924. characterMakers.push(() => makeCharacter(
  29925. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29926. {
  29927. front: {
  29928. height: math.unit(6, "feet"),
  29929. weight: math.unit(150, "lb"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29933. extra: 2625 / 2518,
  29934. bottom: 60 / 2685
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(6 + 2 / 12, "feet")
  29942. },
  29943. {
  29944. name: "Macro",
  29945. height: math.unit(1180, "feet"),
  29946. default: true
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(5 + 6 / 12, "feet"),
  29955. weight: math.unit(108, "lb"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/lilith-zott/front.svg",
  29959. extra: 2510 / 2238,
  29960. bottom: 100 / 2610
  29961. }
  29962. },
  29963. frontDressed: {
  29964. height: math.unit(5 + 6 / 12, "feet"),
  29965. weight: math.unit(108, "lb"),
  29966. name: "Front (Dressed)",
  29967. image: {
  29968. source: "./media/characters/lilith-zott/front-dressed.svg",
  29969. extra: 2510 / 2238,
  29970. bottom: 100 / 2610
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(5 + 6 / 12, "feet")
  29978. },
  29979. {
  29980. name: "Macro",
  29981. height: math.unit(1030, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(6, "feet"),
  29991. weight: math.unit(150, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29995. extra: 2567 / 2435,
  29996. bottom: 39 / 2606
  29997. }
  29998. },
  29999. frontSuper: {
  30000. height: math.unit(6, "feet"),
  30001. name: "Front (Super)",
  30002. image: {
  30003. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30004. extra: 2567 / 2435,
  30005. bottom: 39 / 2606
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(5 + 10 / 12, "feet")
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(1100, "feet"),
  30017. default: true
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(100, "miles"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/sona/front.svg",
  30029. extra: 2433 / 2201,
  30030. bottom: 53 / 2486
  30031. }
  30032. },
  30033. foot: {
  30034. height: math.unit(16.1, "miles"),
  30035. name: "Foot",
  30036. image: {
  30037. source: "./media/characters/sona/foot.svg"
  30038. }
  30039. },
  30040. },
  30041. [
  30042. {
  30043. name: "Macro",
  30044. height: math.unit(100, "miles"),
  30045. default: true
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(6, "feet"),
  30054. weight: math.unit(150, "lb"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/bailey/front.svg",
  30058. extra: 1778 / 1724,
  30059. bottom: 30 / 1808
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Micro",
  30066. height: math.unit(4, "inches")
  30067. },
  30068. {
  30069. name: "Normal",
  30070. height: math.unit(5 + 5 / 12, "feet"),
  30071. default: true
  30072. },
  30073. {
  30074. name: "Macro",
  30075. height: math.unit(250, "feet")
  30076. },
  30077. {
  30078. name: "Megamacro",
  30079. height: math.unit(100, "miles")
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30085. {
  30086. front: {
  30087. height: math.unit(5 + 2 / 12, "feet"),
  30088. weight: math.unit(120, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/snaps/front.svg",
  30092. extra: 2370 / 2177,
  30093. bottom: 48 / 2418
  30094. }
  30095. },
  30096. back: {
  30097. height: math.unit(5 + 2 / 12, "feet"),
  30098. weight: math.unit(120, "lb"),
  30099. name: "Back",
  30100. image: {
  30101. source: "./media/characters/snaps/back.svg",
  30102. extra: 2408 / 2258,
  30103. bottom: 15 / 2423
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Micro",
  30110. height: math.unit(9, "inches")
  30111. },
  30112. {
  30113. name: "Normal",
  30114. height: math.unit(5 + 2 / 12, "feet"),
  30115. default: true
  30116. },
  30117. {
  30118. name: "Mini Macro",
  30119. height: math.unit(10, "feet")
  30120. },
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(1.8, "meters"),
  30128. weight: math.unit(85, "kg"),
  30129. name: "Front",
  30130. image: {
  30131. source: "./media/characters/azteck/front.svg",
  30132. extra: 2815 / 2625,
  30133. bottom: 89 / 2904
  30134. }
  30135. },
  30136. back: {
  30137. height: math.unit(1.8, "meters"),
  30138. weight: math.unit(85, "kg"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/azteck/back.svg",
  30142. extra: 2856 / 2648,
  30143. bottom: 85 / 2941
  30144. }
  30145. },
  30146. frontDressed: {
  30147. height: math.unit(1.8, "meters"),
  30148. weight: math.unit(85, "kg"),
  30149. name: "Front (Dressed)",
  30150. image: {
  30151. source: "./media/characters/azteck/front-dressed.svg",
  30152. extra: 2147 / 2003,
  30153. bottom: 68 / 2215
  30154. }
  30155. },
  30156. head: {
  30157. height: math.unit(0.47, "meters"),
  30158. weight: math.unit(85, "kg"),
  30159. name: "Head",
  30160. image: {
  30161. source: "./media/characters/azteck/head.svg"
  30162. }
  30163. },
  30164. },
  30165. [
  30166. {
  30167. name: "Bite sized",
  30168. height: math.unit(16, "cm")
  30169. },
  30170. {
  30171. name: "Normal",
  30172. height: math.unit(1.8, "meters"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(6, "feet"),
  30182. weight: math.unit(150, "lb"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/pidge/front.svg",
  30186. extra: 1936/1820,
  30187. bottom: 0/1936
  30188. }
  30189. },
  30190. back: {
  30191. height: math.unit(6, "feet"),
  30192. weight: math.unit(150, "lb"),
  30193. name: "Back",
  30194. image: {
  30195. source: "./media/characters/pidge/back.svg",
  30196. extra: 1938/1843,
  30197. bottom: 0/1938
  30198. }
  30199. },
  30200. casual: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(150, "lb"),
  30203. name: "Casual",
  30204. image: {
  30205. source: "./media/characters/pidge/casual.svg",
  30206. extra: 1936/1820,
  30207. bottom: 0/1936
  30208. }
  30209. },
  30210. tech: {
  30211. height: math.unit(6, "feet"),
  30212. weight: math.unit(150, "lb"),
  30213. name: "Tech",
  30214. image: {
  30215. source: "./media/characters/pidge/tech.svg",
  30216. extra: 1802/1682,
  30217. bottom: 0/1802
  30218. }
  30219. },
  30220. head: {
  30221. height: math.unit(1.61, "feet"),
  30222. name: "Head",
  30223. image: {
  30224. source: "./media/characters/pidge/head.svg"
  30225. }
  30226. },
  30227. collar: {
  30228. height: math.unit(0.82, "feet"),
  30229. name: "Collar",
  30230. image: {
  30231. source: "./media/characters/pidge/collar.svg"
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Macro",
  30238. height: math.unit(2, "mile"),
  30239. default: true
  30240. },
  30241. {
  30242. name: "PUPPY",
  30243. height: math.unit(20, "miles")
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(150, "lb"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/en/front.svg",
  30256. extra: 1697 / 1563,
  30257. bottom: 103 / 1800
  30258. }
  30259. },
  30260. back: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Back",
  30264. image: {
  30265. source: "./media/characters/en/back.svg",
  30266. extra: 1700 / 1570,
  30267. bottom: 51 / 1751
  30268. }
  30269. },
  30270. frontDressed: {
  30271. height: math.unit(6, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Front (Dressed)",
  30274. image: {
  30275. source: "./media/characters/en/front-dressed.svg",
  30276. extra: 1697 / 1563,
  30277. bottom: 103 / 1800
  30278. }
  30279. },
  30280. backDressed: {
  30281. height: math.unit(6, "feet"),
  30282. weight: math.unit(150, "lb"),
  30283. name: "Back (Dressed)",
  30284. image: {
  30285. source: "./media/characters/en/back-dressed.svg",
  30286. extra: 1700 / 1570,
  30287. bottom: 51 / 1751
  30288. }
  30289. },
  30290. },
  30291. [
  30292. {
  30293. name: "Macro",
  30294. height: math.unit(210, "feet"),
  30295. default: true
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(6, "feet"),
  30304. weight: math.unit(150, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/haze-orris/front.svg",
  30308. extra: 3975 / 3525,
  30309. bottom: 137 / 4112
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Micro",
  30316. height: math.unit(150, "mm"),
  30317. default: true
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(6, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/casselene-yaro/front.svg",
  30330. extra: 4721 / 4541,
  30331. bottom: 82 / 4803
  30332. }
  30333. },
  30334. back: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(150, "lb"),
  30337. name: "Back",
  30338. image: {
  30339. source: "./media/characters/casselene-yaro/back.svg",
  30340. extra: 4569 / 4377,
  30341. bottom: 69 / 4638
  30342. }
  30343. },
  30344. dressed: {
  30345. height: math.unit(6, "feet"),
  30346. weight: math.unit(150, "lb"),
  30347. name: "Dressed",
  30348. image: {
  30349. source: "./media/characters/casselene-yaro/dressed.svg",
  30350. extra: 4721 / 4541,
  30351. bottom: 82 / 4803
  30352. }
  30353. },
  30354. maw: {
  30355. height: math.unit(1, "feet"),
  30356. name: "Maw",
  30357. image: {
  30358. source: "./media/characters/casselene-yaro/maw.svg"
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Macro",
  30365. height: math.unit(190, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(10, "feet"),
  30375. weight: math.unit(15015, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/fem!plat/front.svg",
  30379. extra: 2799 / 2604,
  30380. bottom: 149 / 2948
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(10, "feet"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "Macro",
  30392. height: math.unit(100, "feet")
  30393. },
  30394. {
  30395. name: "Megamacro",
  30396. height: math.unit(1000, "feet")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(15 + 5 / 12, "feet"),
  30405. weight: math.unit(4600, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/neapolitan-ananassa/front.svg",
  30409. extra: 2903 / 2736,
  30410. bottom: 0 / 2903
  30411. }
  30412. },
  30413. side: {
  30414. height: math.unit(15 + 5 / 12, "feet"),
  30415. weight: math.unit(4600, "lb"),
  30416. name: "Side",
  30417. image: {
  30418. source: "./media/characters/neapolitan-ananassa/side.svg",
  30419. extra: 2925 / 2719,
  30420. bottom: 0 / 2925
  30421. }
  30422. },
  30423. back: {
  30424. height: math.unit(15 + 5 / 12, "feet"),
  30425. weight: math.unit(4600, "lb"),
  30426. name: "Back",
  30427. image: {
  30428. source: "./media/characters/neapolitan-ananassa/back.svg",
  30429. extra: 2903 / 2736,
  30430. bottom: 0 / 2903
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(15 + 5 / 12, "feet"),
  30438. default: true
  30439. },
  30440. {
  30441. name: "Post-Millenium",
  30442. height: math.unit(35 + 5 / 12, "feet")
  30443. },
  30444. {
  30445. name: "Post-Era",
  30446. height: math.unit(450 + 5 / 12, "feet")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(300, "meters"),
  30455. weight: math.unit(125000, "tonnes"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/pazuzu/front.svg",
  30459. extra: 877 / 794,
  30460. bottom: 47 / 924
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Macro",
  30467. height: math.unit(300, "meters"),
  30468. default: true
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30474. {
  30475. side: {
  30476. height: math.unit(10 + 7 / 12, "feet"),
  30477. weight: math.unit(2.5, "tons"),
  30478. name: "Side",
  30479. image: {
  30480. source: "./media/characters/aasha/side.svg",
  30481. extra: 1345 / 1245,
  30482. bottom: 111 / 1456
  30483. }
  30484. },
  30485. back: {
  30486. height: math.unit(10 + 7 / 12, "feet"),
  30487. weight: math.unit(2.5, "tons"),
  30488. name: "Back",
  30489. image: {
  30490. source: "./media/characters/aasha/back.svg",
  30491. extra: 1133 / 1057,
  30492. bottom: 257 / 1390
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(10 + 7 / 12, "feet"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30506. {
  30507. front: {
  30508. height: math.unit(6 + 3 / 12, "feet"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/nevan/front.svg",
  30512. extra: 704 / 704,
  30513. bottom: 28 / 732
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(6 + 3 / 12, "feet"),
  30518. name: "Back",
  30519. image: {
  30520. source: "./media/characters/nevan/back.svg",
  30521. extra: 714 / 714,
  30522. bottom: 21 / 735
  30523. }
  30524. },
  30525. frontFlaccid: {
  30526. height: math.unit(6 + 3 / 12, "feet"),
  30527. name: "Front (Flaccid)",
  30528. image: {
  30529. source: "./media/characters/nevan/front-flaccid.svg",
  30530. extra: 704 / 704,
  30531. bottom: 28 / 732
  30532. }
  30533. },
  30534. frontErect: {
  30535. height: math.unit(6 + 3 / 12, "feet"),
  30536. name: "Front (Erect)",
  30537. image: {
  30538. source: "./media/characters/nevan/front-erect.svg",
  30539. extra: 704 / 704,
  30540. bottom: 28 / 732
  30541. }
  30542. },
  30543. backFlaccid: {
  30544. height: math.unit(6 + 3 / 12, "feet"),
  30545. name: "Back (Flaccid)",
  30546. image: {
  30547. source: "./media/characters/nevan/back-flaccid.svg",
  30548. extra: 714 / 714,
  30549. bottom: 21 / 735
  30550. }
  30551. },
  30552. },
  30553. [
  30554. {
  30555. name: "Normal",
  30556. height: math.unit(6 + 3 / 12, "feet"),
  30557. default: true
  30558. },
  30559. ]
  30560. ))
  30561. characterMakers.push(() => makeCharacter(
  30562. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30563. {
  30564. front: {
  30565. height: math.unit(4, "feet"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/arhan/front.svg",
  30569. extra: 3368 / 3133,
  30570. bottom: 0 / 3368
  30571. }
  30572. },
  30573. side: {
  30574. height: math.unit(4, "feet"),
  30575. name: "Side",
  30576. image: {
  30577. source: "./media/characters/arhan/side.svg",
  30578. extra: 3347 / 3105,
  30579. bottom: 0 / 3347
  30580. }
  30581. },
  30582. tongue: {
  30583. height: math.unit(1.42, "feet"),
  30584. name: "Tongue",
  30585. image: {
  30586. source: "./media/characters/arhan/tongue.svg"
  30587. }
  30588. },
  30589. head: {
  30590. height: math.unit(0.85, "feet"),
  30591. name: "Head",
  30592. image: {
  30593. source: "./media/characters/arhan/head.svg"
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(4, "feet"),
  30601. default: true
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(5 + 7.5 / 12, "feet"),
  30610. weight: math.unit(120, "lb"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/digi-duncan/front.svg",
  30614. extra: 330 / 326,
  30615. bottom: 16 / 346
  30616. }
  30617. },
  30618. side: {
  30619. height: math.unit(5 + 7.5 / 12, "feet"),
  30620. weight: math.unit(120, "lb"),
  30621. name: "Side",
  30622. image: {
  30623. source: "./media/characters/digi-duncan/side.svg",
  30624. extra: 341 / 337,
  30625. bottom: 1 / 342
  30626. }
  30627. },
  30628. back: {
  30629. height: math.unit(5 + 7.5 / 12, "feet"),
  30630. weight: math.unit(120, "lb"),
  30631. name: "Back",
  30632. image: {
  30633. source: "./media/characters/digi-duncan/back.svg",
  30634. extra: 330 / 326,
  30635. bottom: 12 / 342
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Speck",
  30642. height: math.unit(0.25, "mm")
  30643. },
  30644. {
  30645. name: "Micro",
  30646. height: math.unit(5, "mm")
  30647. },
  30648. {
  30649. name: "Tiny",
  30650. height: math.unit(0.5, "inches"),
  30651. default: true
  30652. },
  30653. {
  30654. name: "Human",
  30655. height: math.unit(5 + 7.5 / 12, "feet")
  30656. },
  30657. {
  30658. name: "Minigiant",
  30659. height: math.unit(8 + 5.25, "feet")
  30660. },
  30661. {
  30662. name: "Giant",
  30663. height: math.unit(2000, "feet")
  30664. },
  30665. {
  30666. name: "Mega",
  30667. height: math.unit(371.1, "miles")
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30673. {
  30674. front: {
  30675. height: math.unit(2, "meters"),
  30676. weight: math.unit(350, "kg"),
  30677. name: "Front",
  30678. image: {
  30679. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30680. extra: 898 / 838,
  30681. bottom: 9 / 907
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Micro",
  30688. height: math.unit(8, "meters")
  30689. },
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(50, "meters"),
  30693. default: true
  30694. },
  30695. {
  30696. name: "Macro",
  30697. height: math.unit(500, "meters")
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30703. {
  30704. front: {
  30705. height: math.unit(6 + 6 / 12, "feet"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/khardesh/front.svg",
  30709. extra: 1788/1596,
  30710. bottom: 66/1854
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(6 + 6 / 12, "feet"),
  30715. name: "Back",
  30716. image: {
  30717. source: "./media/characters/khardesh/back.svg",
  30718. extra: 1781/1584,
  30719. bottom: 68/1849
  30720. }
  30721. },
  30722. },
  30723. [
  30724. {
  30725. name: "Normal",
  30726. height: math.unit(6 + 6 / 12, "feet"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Normal+",
  30731. height: math.unit(4, "meters")
  30732. },
  30733. {
  30734. name: "Macro",
  30735. height: math.unit(50, "meters")
  30736. },
  30737. {
  30738. name: "Macro+",
  30739. height: math.unit(100, "meters")
  30740. },
  30741. {
  30742. name: "Megamacro",
  30743. height: math.unit(20, "km")
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(6, "feet"),
  30752. weight: math.unit(150, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/kosho/front.svg",
  30756. extra: 1847 / 1847,
  30757. bottom: 86 / 1933
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Second-stage micro",
  30764. height: math.unit(0.5, "inches")
  30765. },
  30766. {
  30767. name: "First-stage micro",
  30768. height: math.unit(6, "inches")
  30769. },
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(6, "feet"),
  30773. default: true
  30774. },
  30775. {
  30776. name: "First-stage macro",
  30777. height: math.unit(72, "feet")
  30778. },
  30779. {
  30780. name: "Second-stage macro",
  30781. height: math.unit(864, "feet")
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30787. {
  30788. normal: {
  30789. height: math.unit(4 + 6 / 12, "feet"),
  30790. name: "Normal",
  30791. image: {
  30792. source: "./media/characters/hydra/normal.svg",
  30793. extra: 2833 / 2634,
  30794. bottom: 68 / 2901
  30795. }
  30796. },
  30797. smol: {
  30798. height: math.unit(0.705, "inches"),
  30799. name: "Smol",
  30800. image: {
  30801. source: "./media/characters/hydra/smol.svg",
  30802. extra: 2715 / 2540,
  30803. bottom: 0 / 2715
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Normal",
  30810. height: math.unit(4 + 6 / 12, "feet"),
  30811. default: true
  30812. }
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(0.6, "cm"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/daz/front.svg",
  30823. extra: 1682 / 1164,
  30824. bottom: 42 / 1724
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(0.6, "cm"),
  30832. default: true
  30833. },
  30834. ]
  30835. ))
  30836. characterMakers.push(() => makeCharacter(
  30837. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30838. {
  30839. front: {
  30840. height: math.unit(6, "feet"),
  30841. weight: math.unit(235, "lb"),
  30842. name: "Front",
  30843. image: {
  30844. source: "./media/characters/theo-pangolin/front.svg",
  30845. extra: 1996 / 1969,
  30846. bottom: 115 / 2111
  30847. }
  30848. },
  30849. back: {
  30850. height: math.unit(6, "feet"),
  30851. weight: math.unit(235, "lb"),
  30852. name: "Back",
  30853. image: {
  30854. source: "./media/characters/theo-pangolin/back.svg",
  30855. extra: 1979 / 1979,
  30856. bottom: 40 / 2019
  30857. }
  30858. },
  30859. feral: {
  30860. height: math.unit(2, "feet"),
  30861. weight: math.unit(30, "lb"),
  30862. name: "Feral",
  30863. image: {
  30864. source: "./media/characters/theo-pangolin/feral.svg",
  30865. extra: 803 / 791,
  30866. bottom: 181 / 984
  30867. }
  30868. },
  30869. footFive: {
  30870. height: math.unit(1.43, "feet"),
  30871. name: "Foot (Five Toes)",
  30872. image: {
  30873. source: "./media/characters/theo-pangolin/foot-five.svg"
  30874. }
  30875. },
  30876. footFour: {
  30877. height: math.unit(1.43, "feet"),
  30878. name: "Foot (Four Toes)",
  30879. image: {
  30880. source: "./media/characters/theo-pangolin/foot-four.svg"
  30881. }
  30882. },
  30883. handFour: {
  30884. height: math.unit(0.81, "feet"),
  30885. name: "Hand (Four Fingers)",
  30886. image: {
  30887. source: "./media/characters/theo-pangolin/hand-four.svg"
  30888. }
  30889. },
  30890. handThree: {
  30891. height: math.unit(0.81, "feet"),
  30892. name: "Hand (Three Fingers)",
  30893. image: {
  30894. source: "./media/characters/theo-pangolin/hand-three.svg"
  30895. }
  30896. },
  30897. headFront: {
  30898. height: math.unit(1.37, "feet"),
  30899. name: "Head (Front)",
  30900. image: {
  30901. source: "./media/characters/theo-pangolin/head-front.svg"
  30902. }
  30903. },
  30904. headSide: {
  30905. height: math.unit(1.43, "feet"),
  30906. name: "Head (Side)",
  30907. image: {
  30908. source: "./media/characters/theo-pangolin/head-side.svg"
  30909. }
  30910. },
  30911. tongue: {
  30912. height: math.unit(2.29, "feet"),
  30913. name: "Tongue",
  30914. image: {
  30915. source: "./media/characters/theo-pangolin/tongue.svg"
  30916. }
  30917. },
  30918. },
  30919. [
  30920. {
  30921. name: "Normal",
  30922. height: math.unit(6, "feet")
  30923. },
  30924. {
  30925. name: "Macro",
  30926. height: math.unit(400, "feet"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(6, "inches"),
  30936. weight: math.unit(0.036, "kg"),
  30937. name: "Front",
  30938. image: {
  30939. source: "./media/characters/renée/front.svg",
  30940. extra: 900 / 886,
  30941. bottom: 8 / 908
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Nano",
  30948. height: math.unit(1, "nm")
  30949. },
  30950. {
  30951. name: "Micro",
  30952. height: math.unit(1, "mm")
  30953. },
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(6, "inches")
  30957. },
  30958. {
  30959. name: "Macro",
  30960. height: math.unit(2000, "feet"),
  30961. default: true
  30962. },
  30963. {
  30964. name: "Megamacro",
  30965. height: math.unit(2, "km")
  30966. },
  30967. {
  30968. name: "Gigamacro",
  30969. height: math.unit(2000, "km")
  30970. },
  30971. {
  30972. name: "Teramacro",
  30973. height: math.unit(250000, "km")
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(4, "meters"),
  30982. weight: math.unit(150, "kg"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/caledvwlch/front.svg",
  30986. extra: 1760 / 1551,
  30987. bottom: 28 / 1788
  30988. }
  30989. },
  30990. side: {
  30991. height: math.unit(4, "meters"),
  30992. weight: math.unit(150, "kg"),
  30993. name: "Side",
  30994. image: {
  30995. source: "./media/characters/caledvwlch/side.svg",
  30996. extra: 1605 / 1536,
  30997. bottom: 31 / 1636
  30998. }
  30999. },
  31000. back: {
  31001. height: math.unit(4, "meters"),
  31002. weight: math.unit(150, "kg"),
  31003. name: "Back",
  31004. image: {
  31005. source: "./media/characters/caledvwlch/back.svg",
  31006. extra: 1635 / 1565,
  31007. bottom: 27 / 1662
  31008. }
  31009. },
  31010. },
  31011. [
  31012. {
  31013. name: "\"Incognito\"",
  31014. height: math.unit(4, "meters")
  31015. },
  31016. {
  31017. name: "Small rampage",
  31018. height: math.unit(600, "meters")
  31019. },
  31020. {
  31021. name: "Mega",
  31022. height: math.unit(30, "km")
  31023. },
  31024. {
  31025. name: "Home-size",
  31026. height: math.unit(50, "km"),
  31027. default: true
  31028. },
  31029. {
  31030. name: "Giga",
  31031. height: math.unit(300, "km")
  31032. },
  31033. {
  31034. name: "Lounging",
  31035. height: math.unit(11000, "km")
  31036. },
  31037. {
  31038. name: "Planet snacking",
  31039. height: math.unit(2000000, "km")
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(215, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/sapphire-svell/front.svg",
  31052. extra: 495 / 455,
  31053. bottom: 20 / 515
  31054. }
  31055. },
  31056. back: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(216, "lb"),
  31059. name: "Back",
  31060. image: {
  31061. source: "./media/characters/sapphire-svell/back.svg",
  31062. extra: 497 / 477,
  31063. bottom: 7 / 504
  31064. }
  31065. },
  31066. maw: {
  31067. height: math.unit(1.57, "feet"),
  31068. name: "Maw",
  31069. image: {
  31070. source: "./media/characters/sapphire-svell/maw.svg"
  31071. }
  31072. },
  31073. foot: {
  31074. height: math.unit(1.07, "feet"),
  31075. name: "Foot",
  31076. image: {
  31077. source: "./media/characters/sapphire-svell/foot.svg"
  31078. }
  31079. },
  31080. toering: {
  31081. height: math.unit(1.7, "inch"),
  31082. name: "Toering",
  31083. image: {
  31084. source: "./media/characters/sapphire-svell/toering.svg"
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(300, "feet"),
  31092. default: true
  31093. },
  31094. {
  31095. name: "Augmented",
  31096. height: math.unit(1250, "feet")
  31097. },
  31098. {
  31099. name: "Unleashed",
  31100. height: math.unit(3000, "feet")
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31106. {
  31107. side: {
  31108. height: math.unit(2 + 3 / 12, "feet"),
  31109. weight: math.unit(110, "lb"),
  31110. name: "Side",
  31111. image: {
  31112. source: "./media/characters/glitch-flux/side.svg",
  31113. extra: 997 / 805,
  31114. bottom: 20 / 1017
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(2 + 3 / 12, "feet"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(4, "meters"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/mid/front.svg",
  31134. extra: 507 / 476,
  31135. bottom: 17 / 524
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(4, "meters"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/mid/back.svg",
  31143. extra: 519 / 487,
  31144. bottom: 7 / 526
  31145. }
  31146. },
  31147. stuck: {
  31148. height: math.unit(2.2, "meters"),
  31149. name: "Stuck",
  31150. image: {
  31151. source: "./media/characters/mid/stuck.svg",
  31152. extra: 1951 / 1869,
  31153. bottom: 88 / 2039
  31154. }
  31155. }
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(4, "meters"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Big",
  31165. height: math.unit(10, "meters")
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(800, "meters")
  31170. },
  31171. {
  31172. name: "Megamacro",
  31173. height: math.unit(100, "km")
  31174. },
  31175. {
  31176. name: "Overgrown",
  31177. height: math.unit(1, "parsec")
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31183. {
  31184. front: {
  31185. height: math.unit(2.5, "meters"),
  31186. weight: math.unit(225, "kg"),
  31187. name: "Front",
  31188. image: {
  31189. source: "./media/characters/iris/front.svg",
  31190. extra: 3348 / 3251,
  31191. bottom: 205 / 3553
  31192. }
  31193. },
  31194. maw: {
  31195. height: math.unit(0.56, "meter"),
  31196. name: "Maw",
  31197. image: {
  31198. source: "./media/characters/iris/maw.svg"
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Mewter cat",
  31205. height: math.unit(1.2, "meters")
  31206. },
  31207. {
  31208. name: "Minimacro",
  31209. height: math.unit(2.5, "meters"),
  31210. default: true
  31211. },
  31212. {
  31213. name: "Macro",
  31214. height: math.unit(180, "meters")
  31215. },
  31216. {
  31217. name: "Megamacro",
  31218. height: math.unit(2746, "meters")
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(6, "feet"),
  31227. weight: math.unit(135, "lb"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/axel/front.svg",
  31231. extra: 908 / 908,
  31232. bottom: 58 / 966
  31233. }
  31234. },
  31235. side: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(135, "lb"),
  31238. name: "Side",
  31239. image: {
  31240. source: "./media/characters/axel/side.svg",
  31241. extra: 958 / 958,
  31242. bottom: 11 / 969
  31243. }
  31244. },
  31245. back: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(135, "lb"),
  31248. name: "Back",
  31249. image: {
  31250. source: "./media/characters/axel/back.svg",
  31251. extra: 887 / 887,
  31252. bottom: 34 / 921
  31253. }
  31254. },
  31255. head: {
  31256. height: math.unit(1.07, "feet"),
  31257. name: "Head",
  31258. image: {
  31259. source: "./media/characters/axel/head.svg"
  31260. }
  31261. },
  31262. beak: {
  31263. height: math.unit(1.4, "feet"),
  31264. name: "Beak",
  31265. image: {
  31266. source: "./media/characters/axel/beak.svg"
  31267. }
  31268. },
  31269. beakSide: {
  31270. height: math.unit(1.4, "feet"),
  31271. name: "Beak Side",
  31272. image: {
  31273. source: "./media/characters/axel/beak-side.svg"
  31274. }
  31275. },
  31276. sheath: {
  31277. height: math.unit(0.5, "feet"),
  31278. name: "Sheath",
  31279. image: {
  31280. source: "./media/characters/axel/sheath.svg"
  31281. }
  31282. },
  31283. dick: {
  31284. height: math.unit(0.98, "feet"),
  31285. name: "Dick",
  31286. image: {
  31287. source: "./media/characters/axel/dick.svg"
  31288. }
  31289. },
  31290. },
  31291. [
  31292. {
  31293. name: "Macro",
  31294. height: math.unit(68, "meters"),
  31295. default: true
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(3.5, "meters"),
  31304. weight: math.unit(1200, "kg"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/joanna/front.svg",
  31308. extra: 1596 / 1488,
  31309. bottom: 29 / 1625
  31310. }
  31311. },
  31312. back: {
  31313. height: math.unit(3.5, "meters"),
  31314. weight: math.unit(1200, "kg"),
  31315. name: "Back",
  31316. image: {
  31317. source: "./media/characters/joanna/back.svg",
  31318. extra: 1594 / 1495,
  31319. bottom: 26 / 1620
  31320. }
  31321. },
  31322. frontShorts: {
  31323. height: math.unit(3.5, "meters"),
  31324. weight: math.unit(1200, "kg"),
  31325. name: "Front (Shorts)",
  31326. image: {
  31327. source: "./media/characters/joanna/front-shorts.svg",
  31328. extra: 1596 / 1488,
  31329. bottom: 29 / 1625
  31330. }
  31331. },
  31332. frontBiker: {
  31333. height: math.unit(3.5, "meters"),
  31334. weight: math.unit(1200, "kg"),
  31335. name: "Front (Biker)",
  31336. image: {
  31337. source: "./media/characters/joanna/front-biker.svg",
  31338. extra: 1596 / 1488,
  31339. bottom: 29 / 1625
  31340. }
  31341. },
  31342. backBiker: {
  31343. height: math.unit(3.5, "meters"),
  31344. weight: math.unit(1200, "kg"),
  31345. name: "Back (Biker)",
  31346. image: {
  31347. source: "./media/characters/joanna/back-biker.svg",
  31348. extra: 1594 / 1495,
  31349. bottom: 88 / 1682
  31350. }
  31351. },
  31352. bikeLeft: {
  31353. height: math.unit(2.4, "meters"),
  31354. weight: math.unit(1600, "kg"),
  31355. name: "Bike (Left)",
  31356. image: {
  31357. source: "./media/characters/joanna/bike-left.svg",
  31358. extra: 720 / 720,
  31359. bottom: 8 / 728
  31360. }
  31361. },
  31362. bikeRight: {
  31363. height: math.unit(2.4, "meters"),
  31364. weight: math.unit(1600, "kg"),
  31365. name: "Bike (Right)",
  31366. image: {
  31367. source: "./media/characters/joanna/bike-right.svg",
  31368. extra: 720 / 720,
  31369. bottom: 8 / 728
  31370. }
  31371. },
  31372. },
  31373. [
  31374. {
  31375. name: "Incognito",
  31376. height: math.unit(3.5, "meters")
  31377. },
  31378. {
  31379. name: "Casual Big",
  31380. height: math.unit(200, "meters")
  31381. },
  31382. {
  31383. name: "Macro",
  31384. height: math.unit(600, "meters")
  31385. },
  31386. {
  31387. name: "Original",
  31388. height: math.unit(20, "km"),
  31389. default: true
  31390. },
  31391. {
  31392. name: "Giga",
  31393. height: math.unit(400, "km")
  31394. },
  31395. {
  31396. name: "Lounging",
  31397. height: math.unit(1500, "km")
  31398. },
  31399. {
  31400. name: "Planetary",
  31401. height: math.unit(200000, "km")
  31402. },
  31403. ]
  31404. ))
  31405. characterMakers.push(() => makeCharacter(
  31406. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31407. {
  31408. front: {
  31409. height: math.unit(6, "feet"),
  31410. weight: math.unit(150, "lb"),
  31411. name: "Front",
  31412. image: {
  31413. source: "./media/characters/hugo-sigil/front.svg",
  31414. extra: 522 / 500,
  31415. bottom: 2 / 524
  31416. }
  31417. },
  31418. back: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(150, "lb"),
  31421. name: "Back",
  31422. image: {
  31423. source: "./media/characters/hugo-sigil/back.svg",
  31424. extra: 519 / 495,
  31425. bottom: 5 / 524
  31426. }
  31427. },
  31428. maw: {
  31429. height: math.unit(1.4, "feet"),
  31430. weight: math.unit(150, "lb"),
  31431. name: "Maw",
  31432. image: {
  31433. source: "./media/characters/hugo-sigil/maw.svg"
  31434. }
  31435. },
  31436. feet: {
  31437. height: math.unit(1.56, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Feet",
  31440. image: {
  31441. source: "./media/characters/hugo-sigil/feet.svg",
  31442. extra: 177 / 177,
  31443. bottom: 12 / 189
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(6, "feet")
  31451. },
  31452. {
  31453. name: "Macro",
  31454. height: math.unit(200, "feet"),
  31455. default: true
  31456. },
  31457. ]
  31458. ))
  31459. characterMakers.push(() => makeCharacter(
  31460. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31461. {
  31462. front: {
  31463. height: math.unit(6, "feet"),
  31464. weight: math.unit(150, "lb"),
  31465. name: "Front",
  31466. image: {
  31467. source: "./media/characters/peri/front.svg",
  31468. extra: 2354 / 2233,
  31469. bottom: 49 / 2403
  31470. }
  31471. },
  31472. },
  31473. [
  31474. {
  31475. name: "Really Small",
  31476. height: math.unit(1, "nm")
  31477. },
  31478. {
  31479. name: "Micro",
  31480. height: math.unit(4, "inches")
  31481. },
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(7, "inches"),
  31485. default: true
  31486. },
  31487. {
  31488. name: "Macro",
  31489. height: math.unit(400, "feet")
  31490. },
  31491. {
  31492. name: "Megamacro",
  31493. height: math.unit(100, "miles")
  31494. },
  31495. ]
  31496. ))
  31497. characterMakers.push(() => makeCharacter(
  31498. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31499. {
  31500. frontSlim: {
  31501. height: math.unit(7, "feet"),
  31502. name: "Front (Slim)",
  31503. image: {
  31504. source: "./media/characters/issilora/front-slim.svg",
  31505. extra: 529 / 449,
  31506. bottom: 53 / 582
  31507. }
  31508. },
  31509. sideSlim: {
  31510. height: math.unit(7, "feet"),
  31511. name: "Side (Slim)",
  31512. image: {
  31513. source: "./media/characters/issilora/side-slim.svg",
  31514. extra: 570 / 480,
  31515. bottom: 30 / 600
  31516. }
  31517. },
  31518. backSlim: {
  31519. height: math.unit(7, "feet"),
  31520. name: "Back (Slim)",
  31521. image: {
  31522. source: "./media/characters/issilora/back-slim.svg",
  31523. extra: 537 / 455,
  31524. bottom: 46 / 583
  31525. }
  31526. },
  31527. frontBuff: {
  31528. height: math.unit(7, "feet"),
  31529. name: "Front (Buff)",
  31530. image: {
  31531. source: "./media/characters/issilora/front-buff.svg",
  31532. extra: 2310 / 2035,
  31533. bottom: 335 / 2645
  31534. }
  31535. },
  31536. head: {
  31537. height: math.unit(1.94, "feet"),
  31538. name: "Head",
  31539. image: {
  31540. source: "./media/characters/issilora/head.svg"
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Minimum",
  31547. height: math.unit(7, "feet")
  31548. },
  31549. {
  31550. name: "Comfortable",
  31551. height: math.unit(17, "feet")
  31552. },
  31553. {
  31554. name: "Fun Size",
  31555. height: math.unit(47, "feet")
  31556. },
  31557. {
  31558. name: "Natural Macro",
  31559. height: math.unit(137, "feet"),
  31560. default: true
  31561. },
  31562. {
  31563. name: "Maximum Kaiju",
  31564. height: math.unit(397, "feet")
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31570. {
  31571. front: {
  31572. height: math.unit(50 + 9/12, "feet"),
  31573. weight: math.unit(32.8, "tons"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/irb'iiritaahn/front.svg",
  31577. extra: 1878/1826,
  31578. bottom: 326/2204
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(50 + 9/12, "feet"),
  31583. weight: math.unit(32.8, "tons"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/irb'iiritaahn/back.svg",
  31587. extra: 2052/2018,
  31588. bottom: 152/2204
  31589. }
  31590. },
  31591. head: {
  31592. height: math.unit(12.86, "feet"),
  31593. name: "Head",
  31594. image: {
  31595. source: "./media/characters/irb'iiritaahn/head.svg"
  31596. }
  31597. },
  31598. maw: {
  31599. height: math.unit(9.66, "feet"),
  31600. name: "Maw",
  31601. image: {
  31602. source: "./media/characters/irb'iiritaahn/maw.svg"
  31603. }
  31604. },
  31605. frontDick: {
  31606. height: math.unit(8.78461, "feet"),
  31607. name: "Front Dick",
  31608. image: {
  31609. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31610. }
  31611. },
  31612. rearDick: {
  31613. height: math.unit(8.78461, "feet"),
  31614. name: "Rear Dick",
  31615. image: {
  31616. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31617. }
  31618. },
  31619. rearDickUnfolded: {
  31620. height: math.unit(8.78, "feet"),
  31621. name: "Rear Dick (Unfolded)",
  31622. image: {
  31623. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31624. }
  31625. },
  31626. wings: {
  31627. height: math.unit(43, "feet"),
  31628. name: "Wings",
  31629. image: {
  31630. source: "./media/characters/irb'iiritaahn/wings.svg"
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Macro",
  31637. height: math.unit(50 + 9/12, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31644. {
  31645. front: {
  31646. height: math.unit(205, "cm"),
  31647. weight: math.unit(102, "kg"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/irbisgreif/front.svg",
  31651. extra: 785/706,
  31652. bottom: 13/798
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(205, "cm"),
  31657. weight: math.unit(102, "kg"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/irbisgreif/back.svg",
  31661. extra: 713/701,
  31662. bottom: 26/739
  31663. }
  31664. },
  31665. frontDressed: {
  31666. height: math.unit(216, "cm"),
  31667. weight: math.unit(102, "kg"),
  31668. name: "Front-dressed",
  31669. image: {
  31670. source: "./media/characters/irbisgreif/front-dressed.svg",
  31671. extra: 902/776,
  31672. bottom: 14/916
  31673. }
  31674. },
  31675. sideDressed: {
  31676. height: math.unit(195, "cm"),
  31677. weight: math.unit(102, "kg"),
  31678. name: "Side-dressed",
  31679. image: {
  31680. source: "./media/characters/irbisgreif/side-dressed.svg",
  31681. extra: 788/688,
  31682. bottom: 21/809
  31683. }
  31684. },
  31685. backDressed: {
  31686. height: math.unit(216, "cm"),
  31687. weight: math.unit(102, "kg"),
  31688. name: "Back-dressed",
  31689. image: {
  31690. source: "./media/characters/irbisgreif/back-dressed.svg",
  31691. extra: 901/783,
  31692. bottom: 10/911
  31693. }
  31694. },
  31695. dick: {
  31696. height: math.unit(0.49, "feet"),
  31697. name: "Dick",
  31698. image: {
  31699. source: "./media/characters/irbisgreif/dick.svg"
  31700. }
  31701. },
  31702. wingTop: {
  31703. height: math.unit(1.93 , "feet"),
  31704. name: "Wing-top",
  31705. image: {
  31706. source: "./media/characters/irbisgreif/wing-top.svg"
  31707. }
  31708. },
  31709. wingBottom: {
  31710. height: math.unit(1.93 , "feet"),
  31711. name: "Wing-bottom",
  31712. image: {
  31713. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(216, "cm"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(6, "feet"),
  31730. weight: math.unit(150, "lb"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/pride/front.svg",
  31734. extra: 1299/1230,
  31735. bottom: 18/1317
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(7, "feet")
  31743. },
  31744. {
  31745. name: "Mini-macro",
  31746. height: math.unit(11, "feet")
  31747. },
  31748. {
  31749. name: "Macro",
  31750. height: math.unit(15, "meters"),
  31751. default: true
  31752. },
  31753. {
  31754. name: "Macro+",
  31755. height: math.unit(40, "meters")
  31756. },
  31757. ]
  31758. ))
  31759. characterMakers.push(() => makeCharacter(
  31760. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31761. {
  31762. front: {
  31763. height: math.unit(4 + 2 / 12, "feet"),
  31764. weight: math.unit(95, "lb"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/vaelophis-nyx/front.svg",
  31768. extra: 2532/2330,
  31769. bottom: 0/2532
  31770. }
  31771. },
  31772. back: {
  31773. height: math.unit(4 + 2 / 12, "feet"),
  31774. weight: math.unit(95, "lb"),
  31775. name: "Back",
  31776. image: {
  31777. source: "./media/characters/vaelophis-nyx/back.svg",
  31778. extra: 2484/2361,
  31779. bottom: 0/2484
  31780. }
  31781. },
  31782. feralSide: {
  31783. height: math.unit(2 + 1/12, "feet"),
  31784. weight: math.unit(20, "lb"),
  31785. name: "Feral (Side)",
  31786. image: {
  31787. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31788. extra: 1721/1581,
  31789. bottom: 70/1791
  31790. }
  31791. },
  31792. feralLazing: {
  31793. height: math.unit(1.08, "feet"),
  31794. weight: math.unit(20, "lb"),
  31795. name: "Feral (Lazing)",
  31796. image: {
  31797. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31798. extra: 822/822,
  31799. bottom: 248/1070
  31800. }
  31801. },
  31802. ear: {
  31803. height: math.unit(0.416, "feet"),
  31804. name: "Ear",
  31805. image: {
  31806. source: "./media/characters/vaelophis-nyx/ear.svg"
  31807. }
  31808. },
  31809. eye: {
  31810. height: math.unit(0.0748, "feet"),
  31811. name: "Eye",
  31812. image: {
  31813. source: "./media/characters/vaelophis-nyx/eye.svg"
  31814. }
  31815. },
  31816. mouth: {
  31817. height: math.unit(0.378, "feet"),
  31818. name: "Mouth",
  31819. image: {
  31820. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31821. }
  31822. },
  31823. spade: {
  31824. height: math.unit(0.55, "feet"),
  31825. name: "Spade",
  31826. image: {
  31827. source: "./media/characters/vaelophis-nyx/spade.svg"
  31828. }
  31829. },
  31830. },
  31831. [
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(4 + 2/12, "feet"),
  31835. default: true
  31836. },
  31837. ]
  31838. ))
  31839. characterMakers.push(() => makeCharacter(
  31840. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31841. {
  31842. front: {
  31843. height: math.unit(7, "feet"),
  31844. weight: math.unit(231, "lb"),
  31845. name: "Front",
  31846. image: {
  31847. source: "./media/characters/flux/front.svg",
  31848. extra: 919/871,
  31849. bottom: 0/919
  31850. }
  31851. },
  31852. back: {
  31853. height: math.unit(7, "feet"),
  31854. weight: math.unit(231, "lb"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/flux/back.svg",
  31858. extra: 1040/992,
  31859. bottom: 0/1040
  31860. }
  31861. },
  31862. frontDressed: {
  31863. height: math.unit(7, "feet"),
  31864. weight: math.unit(231, "lb"),
  31865. name: "Front (Dressed)",
  31866. image: {
  31867. source: "./media/characters/flux/front-dressed.svg",
  31868. extra: 919/871,
  31869. bottom: 0/919
  31870. }
  31871. },
  31872. feralSide: {
  31873. height: math.unit(5, "feet"),
  31874. weight: math.unit(150, "lb"),
  31875. name: "Feral (Side)",
  31876. image: {
  31877. source: "./media/characters/flux/feral-side.svg",
  31878. extra: 598/528,
  31879. bottom: 28/626
  31880. }
  31881. },
  31882. head: {
  31883. height: math.unit(1.585, "feet"),
  31884. name: "Head",
  31885. image: {
  31886. source: "./media/characters/flux/head.svg"
  31887. }
  31888. },
  31889. headSide: {
  31890. height: math.unit(1.74, "feet"),
  31891. name: "Head (Side)",
  31892. image: {
  31893. source: "./media/characters/flux/head-side.svg"
  31894. }
  31895. },
  31896. headSideFire: {
  31897. height: math.unit(1.76, "feet"),
  31898. name: "Head (Side, Fire)",
  31899. image: {
  31900. source: "./media/characters/flux/head-side-fire.svg"
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(7, "feet"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(9, "feet"),
  31917. weight: math.unit(1012, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/ulfra-lupae/front.svg",
  31921. extra: 1083/1011,
  31922. bottom: 67/1150
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Micro",
  31929. height: math.unit(6, "inches")
  31930. },
  31931. {
  31932. name: "Socializing",
  31933. height: math.unit(6 + 5/12, "feet")
  31934. },
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(9, "feet"),
  31938. default: true
  31939. },
  31940. {
  31941. name: "Macro",
  31942. height: math.unit(150, "feet")
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31948. {
  31949. front: {
  31950. height: math.unit(5 + 2/12, "feet"),
  31951. weight: math.unit(120, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/timber/front.svg",
  31955. extra: 2814/2705,
  31956. bottom: 181/2995
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(5 + 2/12, "feet"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(9, "feet"),
  31973. name: "Front",
  31974. image: {
  31975. source: "./media/characters/nicki/front.svg",
  31976. extra: 1240/990,
  31977. bottom: 45/1285
  31978. },
  31979. form: "anthro",
  31980. default: true
  31981. },
  31982. side: {
  31983. height: math.unit(9, "feet"),
  31984. name: "Side",
  31985. image: {
  31986. source: "./media/characters/nicki/side.svg",
  31987. extra: 1047/973,
  31988. bottom: 61/1108
  31989. },
  31990. form: "anthro"
  31991. },
  31992. back: {
  31993. height: math.unit(9, "feet"),
  31994. name: "Back",
  31995. image: {
  31996. source: "./media/characters/nicki/back.svg",
  31997. extra: 1006/965,
  31998. bottom: 39/1045
  31999. },
  32000. form: "anthro"
  32001. },
  32002. taur: {
  32003. height: math.unit(15, "feet"),
  32004. name: "Taur",
  32005. image: {
  32006. source: "./media/characters/nicki/taur.svg",
  32007. extra: 1592/1347,
  32008. bottom: 0/1592
  32009. },
  32010. form: "taur",
  32011. default: true
  32012. },
  32013. },
  32014. [
  32015. {
  32016. name: "Normal",
  32017. height: math.unit(9, "feet"),
  32018. form: "anthro",
  32019. default: true
  32020. },
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(15, "feet"),
  32024. form: "taur",
  32025. default: true
  32026. }
  32027. ],
  32028. {
  32029. "anthro": {
  32030. name: "Anthro",
  32031. default: true
  32032. },
  32033. "taur": {
  32034. name: "Taur"
  32035. }
  32036. }
  32037. ))
  32038. characterMakers.push(() => makeCharacter(
  32039. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32040. {
  32041. front: {
  32042. height: math.unit(7 + 10/12, "feet"),
  32043. weight: math.unit(3.5, "tons"),
  32044. name: "Front",
  32045. image: {
  32046. source: "./media/characters/lee/front.svg",
  32047. extra: 1773/1615,
  32048. bottom: 86/1859
  32049. }
  32050. },
  32051. hand: {
  32052. height: math.unit(1.78, "feet"),
  32053. name: "Hand",
  32054. image: {
  32055. source: "./media/characters/lee/hand.svg"
  32056. }
  32057. },
  32058. maw: {
  32059. height: math.unit(1.18, "feet"),
  32060. name: "Maw",
  32061. image: {
  32062. source: "./media/characters/lee/maw.svg"
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(7 + 10/12, "feet"),
  32070. default: true
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32076. {
  32077. front: {
  32078. height: math.unit(9, "feet"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/guti/front.svg",
  32082. extra: 4551/4355,
  32083. bottom: 123/4674
  32084. }
  32085. },
  32086. tongue: {
  32087. height: math.unit(1, "feet"),
  32088. name: "Tongue",
  32089. image: {
  32090. source: "./media/characters/guti/tongue.svg"
  32091. }
  32092. },
  32093. paw: {
  32094. height: math.unit(1.18, "feet"),
  32095. name: "Paw",
  32096. image: {
  32097. source: "./media/characters/guti/paw.svg"
  32098. }
  32099. },
  32100. },
  32101. [
  32102. {
  32103. name: "Normal",
  32104. height: math.unit(9, "feet"),
  32105. default: true
  32106. },
  32107. ]
  32108. ))
  32109. characterMakers.push(() => makeCharacter(
  32110. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32111. {
  32112. side: {
  32113. height: math.unit(5, "meters"),
  32114. name: "Side",
  32115. image: {
  32116. source: "./media/characters/vesper/side.svg",
  32117. extra: 1605/1518,
  32118. bottom: 0/1605
  32119. }
  32120. },
  32121. },
  32122. [
  32123. {
  32124. name: "Small",
  32125. height: math.unit(5, "meters")
  32126. },
  32127. {
  32128. name: "Sage",
  32129. height: math.unit(100, "meters"),
  32130. default: true
  32131. },
  32132. {
  32133. name: "Fun Size",
  32134. height: math.unit(600, "meters")
  32135. },
  32136. {
  32137. name: "Goddess",
  32138. height: math.unit(20000, "km")
  32139. },
  32140. {
  32141. name: "Maximum",
  32142. height: math.unit(5, "galaxies")
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(6 + 3/12, "feet"),
  32151. weight: math.unit(190, "lb"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/gawain/front.svg",
  32155. extra: 2222/2139,
  32156. bottom: 90/2312
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(6 + 3/12, "feet"),
  32161. weight: math.unit(190, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/gawain/back.svg",
  32165. extra: 2199/2111,
  32166. bottom: 73/2272
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(6 + 3/12, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32180. {
  32181. side: {
  32182. height: math.unit(3.5, "meters"),
  32183. weight: math.unit(16000, "lb"),
  32184. name: "Side",
  32185. image: {
  32186. source: "./media/characters/dascalti/side.svg",
  32187. extra: 392/273,
  32188. bottom: 47/439
  32189. }
  32190. },
  32191. breath: {
  32192. height: math.unit(7.4, "feet"),
  32193. name: "Breath",
  32194. image: {
  32195. source: "./media/characters/dascalti/breath.svg"
  32196. }
  32197. },
  32198. fed: {
  32199. height: math.unit(3.6, "meters"),
  32200. weight: math.unit(16000, "lb"),
  32201. name: "Fed",
  32202. image: {
  32203. source: "./media/characters/dascalti/fed.svg",
  32204. extra: 1419/820,
  32205. bottom: 95/1514
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(3.5, "meters"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(3 + 5/12, "feet"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/mauve/front.svg",
  32225. extra: 1126/1033,
  32226. bottom: 65/1191
  32227. }
  32228. },
  32229. side: {
  32230. height: math.unit(3 + 5/12, "feet"),
  32231. name: "Side",
  32232. image: {
  32233. source: "./media/characters/mauve/side.svg",
  32234. extra: 1089/1001,
  32235. bottom: 29/1118
  32236. }
  32237. },
  32238. back: {
  32239. height: math.unit(3 + 5/12, "feet"),
  32240. name: "Back",
  32241. image: {
  32242. source: "./media/characters/mauve/back.svg",
  32243. extra: 1173/1053,
  32244. bottom: 109/1282
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Normal",
  32251. height: math.unit(3 + 5/12, "feet"),
  32252. default: true
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(6 + 3/12, "feet"),
  32261. weight: math.unit(430, "lb"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/carlos/front.svg",
  32265. extra: 1964/1913,
  32266. bottom: 70/2034
  32267. }
  32268. },
  32269. },
  32270. [
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(6 + 3/12, "feet"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32280. {
  32281. back: {
  32282. height: math.unit(5 + 10/12, "feet"),
  32283. weight: math.unit(200, "lb"),
  32284. name: "Back",
  32285. image: {
  32286. source: "./media/characters/jax/back.svg",
  32287. extra: 764/739,
  32288. bottom: 25/789
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(5 + 10/12, "feet"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(8, "feet"),
  32305. weight: math.unit(250, "lb"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/eikthynir/front.svg",
  32309. extra: 1332/1166,
  32310. bottom: 82/1414
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(8, "feet"),
  32315. weight: math.unit(250, "lb"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/eikthynir/back.svg",
  32319. extra: 1342/1190,
  32320. bottom: 19/1361
  32321. }
  32322. },
  32323. dick: {
  32324. height: math.unit(2.35, "feet"),
  32325. name: "Dick",
  32326. image: {
  32327. source: "./media/characters/eikthynir/dick.svg"
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Normal",
  32334. height: math.unit(8, "feet"),
  32335. default: true
  32336. },
  32337. ]
  32338. ))
  32339. characterMakers.push(() => makeCharacter(
  32340. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32341. {
  32342. front: {
  32343. height: math.unit(99, "meters"),
  32344. weight: math.unit(13000, "tons"),
  32345. name: "Front",
  32346. image: {
  32347. source: "./media/characters/zlmos/front.svg",
  32348. extra: 2202/1992,
  32349. bottom: 315/2517
  32350. }
  32351. },
  32352. },
  32353. [
  32354. {
  32355. name: "Macro",
  32356. height: math.unit(99, "meters"),
  32357. default: true
  32358. },
  32359. ]
  32360. ))
  32361. characterMakers.push(() => makeCharacter(
  32362. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32363. {
  32364. front: {
  32365. height: math.unit(6 + 5/12, "feet"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/purri/front.svg",
  32369. extra: 1698/1610,
  32370. bottom: 32/1730
  32371. }
  32372. },
  32373. frontAlt: {
  32374. height: math.unit(6 + 5/12, "feet"),
  32375. name: "Front (Alt)",
  32376. image: {
  32377. source: "./media/characters/purri/front-alt.svg",
  32378. extra: 450/420,
  32379. bottom: 26/476
  32380. }
  32381. },
  32382. boots: {
  32383. height: math.unit(5.5, "feet"),
  32384. name: "Boots",
  32385. image: {
  32386. source: "./media/characters/purri/boots.svg",
  32387. extra: 905/853,
  32388. bottom: 18/923
  32389. }
  32390. },
  32391. lying: {
  32392. height: math.unit(2, "feet"),
  32393. name: "Lying",
  32394. image: {
  32395. source: "./media/characters/purri/lying.svg",
  32396. extra: 940/843,
  32397. bottom: 146/1086
  32398. }
  32399. },
  32400. devious: {
  32401. height: math.unit(1.77, "feet"),
  32402. name: "Devious",
  32403. image: {
  32404. source: "./media/characters/purri/devious.svg",
  32405. extra: 1440/1155,
  32406. bottom: 147/1587
  32407. }
  32408. },
  32409. bean: {
  32410. height: math.unit(1.94, "feet"),
  32411. name: "Bean",
  32412. image: {
  32413. source: "./media/characters/purri/bean.svg"
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Micro",
  32420. height: math.unit(1, "mm")
  32421. },
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(6 + 5/12, "feet"),
  32425. default: true
  32426. },
  32427. {
  32428. name: "Macro :3c",
  32429. height: math.unit(2, "miles")
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32435. {
  32436. front: {
  32437. height: math.unit(6 + 2/12, "feet"),
  32438. weight: math.unit(250, "lb"),
  32439. name: "Front",
  32440. image: {
  32441. source: "./media/characters/moonlight/front.svg",
  32442. extra: 1044/908,
  32443. bottom: 56/1100
  32444. }
  32445. },
  32446. feral: {
  32447. height: math.unit(3 + 1/12, "feet"),
  32448. weight: math.unit(50, "kg"),
  32449. name: "Feral",
  32450. image: {
  32451. source: "./media/characters/moonlight/feral.svg",
  32452. extra: 3705/2791,
  32453. bottom: 145/3850
  32454. }
  32455. },
  32456. paw: {
  32457. height: math.unit(1, "feet"),
  32458. name: "Paw",
  32459. image: {
  32460. source: "./media/characters/moonlight/paw.svg"
  32461. }
  32462. },
  32463. paws: {
  32464. height: math.unit(0.98, "feet"),
  32465. name: "Paws",
  32466. image: {
  32467. source: "./media/characters/moonlight/paws.svg",
  32468. extra: 939/939,
  32469. bottom: 50/989
  32470. }
  32471. },
  32472. mouth: {
  32473. height: math.unit(0.48, "feet"),
  32474. name: "Mouth",
  32475. image: {
  32476. source: "./media/characters/moonlight/mouth.svg"
  32477. }
  32478. },
  32479. dick: {
  32480. height: math.unit(1.46, "feet"),
  32481. name: "Dick",
  32482. image: {
  32483. source: "./media/characters/moonlight/dick.svg"
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(6 + 2/12, "feet"),
  32491. default: true
  32492. },
  32493. {
  32494. name: "Macro",
  32495. height: math.unit(300, "feet")
  32496. },
  32497. {
  32498. name: "Macro+",
  32499. height: math.unit(1, "mile")
  32500. },
  32501. {
  32502. name: "Mt. Moon",
  32503. height: math.unit(5, "miles")
  32504. },
  32505. {
  32506. name: "Megamacro",
  32507. height: math.unit(15, "miles")
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32513. {
  32514. back: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(150, "lb"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/sylen/back.svg",
  32520. extra: 1335/1273,
  32521. bottom: 107/1442
  32522. }
  32523. },
  32524. },
  32525. [
  32526. {
  32527. name: "Normal",
  32528. height: math.unit(5 + 5/12, "feet")
  32529. },
  32530. {
  32531. name: "Megamacro",
  32532. height: math.unit(3, "miles"),
  32533. default: true
  32534. },
  32535. ]
  32536. ))
  32537. characterMakers.push(() => makeCharacter(
  32538. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32539. {
  32540. front: {
  32541. height: math.unit(6, "feet"),
  32542. weight: math.unit(190, "lb"),
  32543. name: "Front",
  32544. image: {
  32545. source: "./media/characters/huttser/front.svg",
  32546. extra: 1152/1058,
  32547. bottom: 23/1175
  32548. }
  32549. },
  32550. side: {
  32551. height: math.unit(6, "feet"),
  32552. weight: math.unit(190, "lb"),
  32553. name: "Side",
  32554. image: {
  32555. source: "./media/characters/huttser/side.svg",
  32556. extra: 1174/1065,
  32557. bottom: 18/1192
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(6, "feet"),
  32562. weight: math.unit(190, "lb"),
  32563. name: "Back",
  32564. image: {
  32565. source: "./media/characters/huttser/back.svg",
  32566. extra: 1158/1056,
  32567. bottom: 12/1170
  32568. }
  32569. },
  32570. },
  32571. [
  32572. ]
  32573. ))
  32574. characterMakers.push(() => makeCharacter(
  32575. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32576. {
  32577. side: {
  32578. height: math.unit(12 + 9/12, "feet"),
  32579. weight: math.unit(15000, "lb"),
  32580. name: "Side",
  32581. image: {
  32582. source: "./media/characters/faan/side.svg",
  32583. extra: 2747/2697,
  32584. bottom: 0/2747
  32585. }
  32586. },
  32587. front: {
  32588. height: math.unit(12 + 9/12, "feet"),
  32589. weight: math.unit(15000, "lb"),
  32590. name: "Front",
  32591. image: {
  32592. source: "./media/characters/faan/front.svg",
  32593. extra: 607/571,
  32594. bottom: 24/631
  32595. }
  32596. },
  32597. head: {
  32598. height: math.unit(2.85, "feet"),
  32599. name: "Head",
  32600. image: {
  32601. source: "./media/characters/faan/head.svg"
  32602. }
  32603. },
  32604. headAlt: {
  32605. height: math.unit(3.13, "feet"),
  32606. name: "Head-alt",
  32607. image: {
  32608. source: "./media/characters/faan/head-alt.svg"
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Normal",
  32615. height: math.unit(12 + 9/12, "feet"),
  32616. default: true
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32622. {
  32623. front: {
  32624. height: math.unit(6, "feet"),
  32625. weight: math.unit(300, "lb"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/tanio/front.svg",
  32629. extra: 711/673,
  32630. bottom: 25/736
  32631. }
  32632. },
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(6, "feet"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(3, "inches"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/noboru/front.svg",
  32650. extra: 1039/932,
  32651. bottom: 18/1057
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Micro",
  32658. height: math.unit(3, "inches"),
  32659. default: true
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32665. {
  32666. front: {
  32667. height: math.unit(1.85, "meters"),
  32668. weight: math.unit(80, "kg"),
  32669. name: "Front",
  32670. image: {
  32671. source: "./media/characters/daniel-barrett/front.svg",
  32672. extra: 355/337,
  32673. bottom: 9/364
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Pico",
  32680. height: math.unit(0.0433, "mm")
  32681. },
  32682. {
  32683. name: "Nano",
  32684. height: math.unit(1.5, "mm")
  32685. },
  32686. {
  32687. name: "Micro",
  32688. height: math.unit(5.3, "cm"),
  32689. default: true
  32690. },
  32691. {
  32692. name: "Normal",
  32693. height: math.unit(1.85, "meters")
  32694. },
  32695. {
  32696. name: "Macro",
  32697. height: math.unit(64.7, "meters")
  32698. },
  32699. {
  32700. name: "Megamacro",
  32701. height: math.unit(2.26, "km")
  32702. },
  32703. {
  32704. name: "Gigamacro",
  32705. height: math.unit(79, "km")
  32706. },
  32707. {
  32708. name: "Teramacro",
  32709. height: math.unit(2765, "km")
  32710. },
  32711. {
  32712. name: "Petamacro",
  32713. height: math.unit(96678, "km")
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(30, "meters"),
  32722. weight: math.unit(400, "tons"),
  32723. name: "Front",
  32724. image: {
  32725. source: "./media/characters/zeel/front.svg",
  32726. extra: 2599/2599,
  32727. bottom: 226/2825
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Macro",
  32734. height: math.unit(30, "meters"),
  32735. default: true
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32741. {
  32742. front: {
  32743. height: math.unit(6 + 7/12, "feet"),
  32744. weight: math.unit(210, "lb"),
  32745. name: "Front",
  32746. image: {
  32747. source: "./media/characters/tarn/front.svg",
  32748. extra: 3517/3220,
  32749. bottom: 91/3608
  32750. }
  32751. },
  32752. back: {
  32753. height: math.unit(6 + 7/12, "feet"),
  32754. weight: math.unit(210, "lb"),
  32755. name: "Back",
  32756. image: {
  32757. source: "./media/characters/tarn/back.svg",
  32758. extra: 3566/3241,
  32759. bottom: 34/3600
  32760. }
  32761. },
  32762. dick: {
  32763. height: math.unit(1.65, "feet"),
  32764. name: "Dick",
  32765. image: {
  32766. source: "./media/characters/tarn/dick.svg"
  32767. }
  32768. },
  32769. paw: {
  32770. height: math.unit(1.80, "feet"),
  32771. name: "Paw",
  32772. image: {
  32773. source: "./media/characters/tarn/paw.svg"
  32774. }
  32775. },
  32776. tongue: {
  32777. height: math.unit(0.97, "feet"),
  32778. name: "Tongue",
  32779. image: {
  32780. source: "./media/characters/tarn/tongue.svg"
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Micro",
  32787. height: math.unit(4, "inches")
  32788. },
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(6 + 7/12, "feet"),
  32792. default: true
  32793. },
  32794. {
  32795. name: "Macro",
  32796. height: math.unit(300, "feet")
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(5 + 7/12, "feet"),
  32805. weight: math.unit(80, "kg"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32809. extra: 3023/2865,
  32810. bottom: 33/3056
  32811. }
  32812. },
  32813. back: {
  32814. height: math.unit(5 + 7/12, "feet"),
  32815. weight: math.unit(80, "kg"),
  32816. name: "Back",
  32817. image: {
  32818. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32819. extra: 3020/2886,
  32820. bottom: 30/3050
  32821. }
  32822. },
  32823. dick: {
  32824. height: math.unit(0.98, "feet"),
  32825. name: "Dick",
  32826. image: {
  32827. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32828. }
  32829. },
  32830. anatomy: {
  32831. height: math.unit(2.86, "feet"),
  32832. name: "Anatomy",
  32833. image: {
  32834. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Really Small",
  32841. height: math.unit(2, "inches")
  32842. },
  32843. {
  32844. name: "Micro",
  32845. height: math.unit(5.583, "inches")
  32846. },
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(5 + 7/12, "feet"),
  32850. default: true
  32851. },
  32852. {
  32853. name: "Macro",
  32854. height: math.unit(67, "feet")
  32855. },
  32856. {
  32857. name: "Megamacro",
  32858. height: math.unit(134, "feet")
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(9, "feet"),
  32867. weight: math.unit(120, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/sally/front.svg",
  32871. extra: 1506/1349,
  32872. bottom: 66/1572
  32873. }
  32874. },
  32875. },
  32876. [
  32877. {
  32878. name: "Normal",
  32879. height: math.unit(9, "feet"),
  32880. default: true
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(8, "feet"),
  32889. weight: math.unit(900, "lb"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/owen/front.svg",
  32893. extra: 1761/1657,
  32894. bottom: 74/1835
  32895. }
  32896. },
  32897. side: {
  32898. height: math.unit(8, "feet"),
  32899. weight: math.unit(900, "lb"),
  32900. name: "Side",
  32901. image: {
  32902. source: "./media/characters/owen/side.svg",
  32903. extra: 1797/1734,
  32904. bottom: 30/1827
  32905. }
  32906. },
  32907. back: {
  32908. height: math.unit(8, "feet"),
  32909. weight: math.unit(900, "lb"),
  32910. name: "Back",
  32911. image: {
  32912. source: "./media/characters/owen/back.svg",
  32913. extra: 1796/1706,
  32914. bottom: 59/1855
  32915. }
  32916. },
  32917. maw: {
  32918. height: math.unit(1.76, "feet"),
  32919. name: "Maw",
  32920. image: {
  32921. source: "./media/characters/owen/maw.svg"
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(8, "feet"),
  32929. default: true
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32935. {
  32936. front: {
  32937. height: math.unit(4, "feet"),
  32938. weight: math.unit(400, "lb"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/ryth/front.svg",
  32942. extra: 1920/1748,
  32943. bottom: 42/1962
  32944. }
  32945. },
  32946. back: {
  32947. height: math.unit(4, "feet"),
  32948. weight: math.unit(400, "lb"),
  32949. name: "Back",
  32950. image: {
  32951. source: "./media/characters/ryth/back.svg",
  32952. extra: 1897/1690,
  32953. bottom: 89/1986
  32954. }
  32955. },
  32956. mouth: {
  32957. height: math.unit(1.39, "feet"),
  32958. name: "Mouth",
  32959. image: {
  32960. source: "./media/characters/ryth/mouth.svg"
  32961. }
  32962. },
  32963. tailmaw: {
  32964. height: math.unit(1.23, "feet"),
  32965. name: "Tailmaw",
  32966. image: {
  32967. source: "./media/characters/ryth/tailmaw.svg"
  32968. }
  32969. },
  32970. goia: {
  32971. height: math.unit(4, "meters"),
  32972. weight: math.unit(10800, "lb"),
  32973. name: "Goia",
  32974. image: {
  32975. source: "./media/characters/ryth/goia.svg",
  32976. extra: 745/640,
  32977. bottom: 107/852
  32978. }
  32979. },
  32980. goiaFront: {
  32981. height: math.unit(4, "meters"),
  32982. weight: math.unit(10800, "lb"),
  32983. name: "Goia (Front)",
  32984. image: {
  32985. source: "./media/characters/ryth/goia-front.svg",
  32986. extra: 750/586,
  32987. bottom: 114/864
  32988. }
  32989. },
  32990. goiaMaw: {
  32991. height: math.unit(5.55, "feet"),
  32992. name: "Goia Maw",
  32993. image: {
  32994. source: "./media/characters/ryth/goia-maw.svg"
  32995. }
  32996. },
  32997. goiaForepaw: {
  32998. height: math.unit(3.5, "feet"),
  32999. name: "Goia Forepaw",
  33000. image: {
  33001. source: "./media/characters/ryth/goia-forepaw.svg"
  33002. }
  33003. },
  33004. goiaHindpaw: {
  33005. height: math.unit(5.55, "feet"),
  33006. name: "Goia Hindpaw",
  33007. image: {
  33008. source: "./media/characters/ryth/goia-hindpaw.svg"
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Normal",
  33015. height: math.unit(4, "feet"),
  33016. default: true
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33022. {
  33023. front: {
  33024. height: math.unit(7, "feet"),
  33025. weight: math.unit(180, "lb"),
  33026. name: "Front",
  33027. image: {
  33028. source: "./media/characters/necrolance/front.svg",
  33029. extra: 1062/947,
  33030. bottom: 41/1103
  33031. }
  33032. },
  33033. back: {
  33034. height: math.unit(7, "feet"),
  33035. weight: math.unit(180, "lb"),
  33036. name: "Back",
  33037. image: {
  33038. source: "./media/characters/necrolance/back.svg",
  33039. extra: 1045/984,
  33040. bottom: 14/1059
  33041. }
  33042. },
  33043. wing: {
  33044. height: math.unit(2.67, "feet"),
  33045. name: "Wing",
  33046. image: {
  33047. source: "./media/characters/necrolance/wing.svg"
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(7, "feet"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33061. {
  33062. front: {
  33063. height: math.unit(76, "meters"),
  33064. weight: math.unit(30000, "tons"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/tyler/front.svg",
  33068. extra: 1640/1640,
  33069. bottom: 114/1754
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Macro",
  33076. height: math.unit(76, "meters"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33083. {
  33084. front: {
  33085. height: math.unit(4 + 11/12, "feet"),
  33086. weight: math.unit(132, "lb"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/icey/front.svg",
  33090. extra: 2750/2550,
  33091. bottom: 33/2783
  33092. }
  33093. },
  33094. back: {
  33095. height: math.unit(4 + 11/12, "feet"),
  33096. weight: math.unit(132, "lb"),
  33097. name: "Back",
  33098. image: {
  33099. source: "./media/characters/icey/back.svg",
  33100. extra: 2624/2481,
  33101. bottom: 35/2659
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(4 + 11/12, "feet"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(100, "feet"),
  33118. weight: math.unit(0, "lb"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/smile/front.svg",
  33122. extra: 2983/2912,
  33123. bottom: 162/3145
  33124. }
  33125. },
  33126. back: {
  33127. height: math.unit(100, "feet"),
  33128. weight: math.unit(0, "lb"),
  33129. name: "Back",
  33130. image: {
  33131. source: "./media/characters/smile/back.svg",
  33132. extra: 3143/3031,
  33133. bottom: 91/3234
  33134. }
  33135. },
  33136. head: {
  33137. height: math.unit(26.3, "feet"),
  33138. weight: math.unit(0, "lb"),
  33139. name: "Head",
  33140. image: {
  33141. source: "./media/characters/smile/head.svg"
  33142. }
  33143. },
  33144. collar: {
  33145. height: math.unit(5.3, "feet"),
  33146. weight: math.unit(0, "lb"),
  33147. name: "Collar",
  33148. image: {
  33149. source: "./media/characters/smile/collar.svg"
  33150. }
  33151. },
  33152. },
  33153. [
  33154. {
  33155. name: "Macro",
  33156. height: math.unit(100, "feet"),
  33157. default: true
  33158. },
  33159. ]
  33160. ))
  33161. characterMakers.push(() => makeCharacter(
  33162. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33163. {
  33164. dragon: {
  33165. height: math.unit(26, "feet"),
  33166. weight: math.unit(36, "tons"),
  33167. name: "Dragon",
  33168. image: {
  33169. source: "./media/characters/arimphae/dragon.svg",
  33170. extra: 1574/983,
  33171. bottom: 357/1931
  33172. }
  33173. },
  33174. drake: {
  33175. height: math.unit(9, "feet"),
  33176. weight: math.unit(1.5, "tons"),
  33177. name: "Drake",
  33178. image: {
  33179. source: "./media/characters/arimphae/drake.svg",
  33180. extra: 1120/925,
  33181. bottom: 435/1555
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Small",
  33188. height: math.unit(26*5/9, "feet")
  33189. },
  33190. {
  33191. name: "Normal",
  33192. height: math.unit(26, "feet"),
  33193. default: true
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33199. {
  33200. front: {
  33201. height: math.unit(8 + 9/12, "feet"),
  33202. name: "Front",
  33203. image: {
  33204. source: "./media/characters/xander/front.svg",
  33205. extra: 1237/974,
  33206. bottom: 94/1331
  33207. }
  33208. },
  33209. },
  33210. [
  33211. {
  33212. name: "Normal",
  33213. height: math.unit(8 + 9/12, "feet"),
  33214. default: true
  33215. },
  33216. {
  33217. name: "Gaze Grabber",
  33218. height: math.unit(13 + 8/12, "feet")
  33219. },
  33220. {
  33221. name: "Jaw Dropper",
  33222. height: math.unit(27, "feet")
  33223. },
  33224. {
  33225. name: "Show Stopper",
  33226. height: math.unit(136, "feet")
  33227. },
  33228. {
  33229. name: "Superstar",
  33230. height: math.unit(1.9e6, "miles")
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33236. {
  33237. side: {
  33238. height: math.unit(2100, "feet"),
  33239. name: "Side",
  33240. image: {
  33241. source: "./media/characters/osiris/side.svg",
  33242. extra: 1105/939,
  33243. bottom: 167/1272
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Macro",
  33250. height: math.unit(2100, "feet"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(6 + 8/12, "feet"),
  33260. weight: math.unit(225, "lb"),
  33261. name: "Front",
  33262. image: {
  33263. source: "./media/characters/rhys-londe/front.svg",
  33264. extra: 2258/2141,
  33265. bottom: 188/2446
  33266. }
  33267. },
  33268. back: {
  33269. height: math.unit(6 + 8/12, "feet"),
  33270. weight: math.unit(225, "lb"),
  33271. name: "Back",
  33272. image: {
  33273. source: "./media/characters/rhys-londe/back.svg",
  33274. extra: 2237/2137,
  33275. bottom: 63/2300
  33276. }
  33277. },
  33278. frontNsfw: {
  33279. height: math.unit(6 + 8/12, "feet"),
  33280. weight: math.unit(225, "lb"),
  33281. name: "Front (NSFW)",
  33282. image: {
  33283. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33284. extra: 2258/2141,
  33285. bottom: 188/2446
  33286. }
  33287. },
  33288. backNsfw: {
  33289. height: math.unit(6 + 8/12, "feet"),
  33290. weight: math.unit(225, "lb"),
  33291. name: "Back (NSFW)",
  33292. image: {
  33293. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33294. extra: 2237/2137,
  33295. bottom: 63/2300
  33296. }
  33297. },
  33298. dick: {
  33299. height: math.unit(30, "inches"),
  33300. name: "Dick",
  33301. image: {
  33302. source: "./media/characters/rhys-londe/dick.svg"
  33303. }
  33304. },
  33305. maw: {
  33306. height: math.unit(1.6, "feet"),
  33307. name: "Maw",
  33308. image: {
  33309. source: "./media/characters/rhys-londe/maw.svg"
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(6 + 8/12, "feet"),
  33317. default: true
  33318. },
  33319. ]
  33320. ))
  33321. characterMakers.push(() => makeCharacter(
  33322. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33323. {
  33324. front: {
  33325. height: math.unit(3 + 10/12, "feet"),
  33326. weight: math.unit(90, "lb"),
  33327. name: "Front",
  33328. image: {
  33329. source: "./media/characters/taivas-ensim/front.svg",
  33330. extra: 1327/1216,
  33331. bottom: 96/1423
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(3 + 10/12, "feet"),
  33336. weight: math.unit(90, "lb"),
  33337. name: "Back",
  33338. image: {
  33339. source: "./media/characters/taivas-ensim/back.svg",
  33340. extra: 1355/1247,
  33341. bottom: 11/1366
  33342. }
  33343. },
  33344. frontNsfw: {
  33345. height: math.unit(3 + 10/12, "feet"),
  33346. weight: math.unit(90, "lb"),
  33347. name: "Front (NSFW)",
  33348. image: {
  33349. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33350. extra: 1327/1216,
  33351. bottom: 96/1423
  33352. }
  33353. },
  33354. backNsfw: {
  33355. height: math.unit(3 + 10/12, "feet"),
  33356. weight: math.unit(90, "lb"),
  33357. name: "Back (NSFW)",
  33358. image: {
  33359. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33360. extra: 1355/1247,
  33361. bottom: 11/1366
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(3 + 10/12, "feet"),
  33369. default: true
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33375. {
  33376. front: {
  33377. height: math.unit(9 + 6/12, "feet"),
  33378. weight: math.unit(940, "lb"),
  33379. name: "Front",
  33380. image: {
  33381. source: "./media/characters/byliss/front.svg",
  33382. extra: 1327/1290,
  33383. bottom: 82/1409
  33384. }
  33385. },
  33386. back: {
  33387. height: math.unit(9 + 6/12, "feet"),
  33388. weight: math.unit(940, "lb"),
  33389. name: "Back",
  33390. image: {
  33391. source: "./media/characters/byliss/back.svg",
  33392. extra: 1376/1349,
  33393. bottom: 9/1385
  33394. }
  33395. },
  33396. frontNsfw: {
  33397. height: math.unit(9 + 6/12, "feet"),
  33398. weight: math.unit(940, "lb"),
  33399. name: "Front (NSFW)",
  33400. image: {
  33401. source: "./media/characters/byliss/front-nsfw.svg",
  33402. extra: 1327/1290,
  33403. bottom: 82/1409
  33404. }
  33405. },
  33406. backNsfw: {
  33407. height: math.unit(9 + 6/12, "feet"),
  33408. weight: math.unit(940, "lb"),
  33409. name: "Back (NSFW)",
  33410. image: {
  33411. source: "./media/characters/byliss/back-nsfw.svg",
  33412. extra: 1376/1349,
  33413. bottom: 9/1385
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(9 + 6/12, "feet"),
  33421. default: true
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33427. {
  33428. front: {
  33429. height: math.unit(5 + 2/12, "feet"),
  33430. weight: math.unit(200, "lb"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/noraly/front.svg",
  33434. extra: 4985/4773,
  33435. bottom: 150/5135
  33436. }
  33437. },
  33438. full: {
  33439. height: math.unit(5 + 2/12, "feet"),
  33440. weight: math.unit(164, "lb"),
  33441. name: "Full",
  33442. image: {
  33443. source: "./media/characters/noraly/full.svg",
  33444. extra: 1114/1059,
  33445. bottom: 35/1149
  33446. }
  33447. },
  33448. fuller: {
  33449. height: math.unit(5 + 2/12, "feet"),
  33450. weight: math.unit(230, "lb"),
  33451. name: "Fuller",
  33452. image: {
  33453. source: "./media/characters/noraly/fuller.svg",
  33454. extra: 1114/1059,
  33455. bottom: 35/1149
  33456. }
  33457. },
  33458. fullest: {
  33459. height: math.unit(5 + 2/12, "feet"),
  33460. weight: math.unit(300, "lb"),
  33461. name: "Fullest",
  33462. image: {
  33463. source: "./media/characters/noraly/fullest.svg",
  33464. extra: 1114/1059,
  33465. bottom: 35/1149
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(5 + 2/12, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33479. {
  33480. front: {
  33481. height: math.unit(5 + 2/12, "feet"),
  33482. weight: math.unit(210, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/pera/front.svg",
  33486. extra: 1560/1531,
  33487. bottom: 165/1725
  33488. }
  33489. },
  33490. back: {
  33491. height: math.unit(5 + 2/12, "feet"),
  33492. weight: math.unit(210, "lb"),
  33493. name: "Back",
  33494. image: {
  33495. source: "./media/characters/pera/back.svg",
  33496. extra: 1523/1493,
  33497. bottom: 152/1675
  33498. }
  33499. },
  33500. dick: {
  33501. height: math.unit(2.4, "feet"),
  33502. name: "Dick",
  33503. image: {
  33504. source: "./media/characters/pera/dick.svg"
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(5 + 2/12, "feet"),
  33512. default: true
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(12, "feet"),
  33521. weight: math.unit(3200, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/julian/front.svg",
  33525. extra: 2962/2701,
  33526. bottom: 184/3146
  33527. }
  33528. },
  33529. maw: {
  33530. height: math.unit(5.35, "feet"),
  33531. name: "Maw",
  33532. image: {
  33533. source: "./media/characters/julian/maw.svg"
  33534. }
  33535. },
  33536. paw: {
  33537. height: math.unit(3.07, "feet"),
  33538. name: "Paw",
  33539. image: {
  33540. source: "./media/characters/julian/paw.svg"
  33541. }
  33542. },
  33543. },
  33544. [
  33545. {
  33546. name: "Default",
  33547. height: math.unit(12, "feet"),
  33548. default: true
  33549. },
  33550. {
  33551. name: "Big",
  33552. height: math.unit(50, "feet")
  33553. },
  33554. {
  33555. name: "Really Big",
  33556. height: math.unit(1, "mile")
  33557. },
  33558. {
  33559. name: "Extremely Big",
  33560. height: math.unit(100, "miles")
  33561. },
  33562. {
  33563. name: "Planet Hugger",
  33564. height: math.unit(200, "megameters")
  33565. },
  33566. {
  33567. name: "Unreasonably Big",
  33568. height: math.unit(1e300, "meters")
  33569. },
  33570. ]
  33571. ))
  33572. characterMakers.push(() => makeCharacter(
  33573. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33574. {
  33575. solgooleo: {
  33576. height: math.unit(4, "meters"),
  33577. weight: math.unit(6000*1.5, "kg"),
  33578. volume: math.unit(6000, "liters"),
  33579. name: "Solgooleo",
  33580. image: {
  33581. source: "./media/characters/pi/solgooleo.svg",
  33582. extra: 388/331,
  33583. bottom: 29/417
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(4, "meters"),
  33591. default: true
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(8, "feet"),
  33600. weight: math.unit(4, "tons"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/shaun/front.svg",
  33604. extra: 503/495,
  33605. bottom: 20/523
  33606. }
  33607. },
  33608. back: {
  33609. height: math.unit(8, "feet"),
  33610. weight: math.unit(4, "tons"),
  33611. name: "Back",
  33612. image: {
  33613. source: "./media/characters/shaun/back.svg",
  33614. extra: 487/480,
  33615. bottom: 20/507
  33616. }
  33617. },
  33618. },
  33619. [
  33620. {
  33621. name: "Lorg",
  33622. height: math.unit(8, "feet"),
  33623. default: true
  33624. },
  33625. ]
  33626. ))
  33627. characterMakers.push(() => makeCharacter(
  33628. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33629. {
  33630. frontAnthro: {
  33631. height: math.unit(7, "feet"),
  33632. name: "Front",
  33633. image: {
  33634. source: "./media/characters/sini/front-anthro.svg",
  33635. extra: 726/678,
  33636. bottom: 35/761
  33637. },
  33638. form: "anthro",
  33639. default: true
  33640. },
  33641. backAnthro: {
  33642. height: math.unit(7, "feet"),
  33643. name: "Back",
  33644. image: {
  33645. source: "./media/characters/sini/back-anthro.svg",
  33646. extra: 743/701,
  33647. bottom: 12/755
  33648. },
  33649. form: "anthro",
  33650. },
  33651. frontAnthroNsfw: {
  33652. height: math.unit(7, "feet"),
  33653. name: "Front (NSFW)",
  33654. image: {
  33655. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33656. extra: 726/678,
  33657. bottom: 35/761
  33658. },
  33659. form: "anthro"
  33660. },
  33661. backAnthroNsfw: {
  33662. height: math.unit(7, "feet"),
  33663. name: "Back (NSFW)",
  33664. image: {
  33665. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33666. extra: 743/701,
  33667. bottom: 12/755
  33668. },
  33669. form: "anthro",
  33670. },
  33671. mawAnthro: {
  33672. height: math.unit(2.14, "feet"),
  33673. name: "Maw",
  33674. image: {
  33675. source: "./media/characters/sini/maw-anthro.svg"
  33676. },
  33677. form: "anthro"
  33678. },
  33679. dick: {
  33680. height: math.unit(1.45, "feet"),
  33681. name: "Dick",
  33682. image: {
  33683. source: "./media/characters/sini/dick-anthro.svg"
  33684. },
  33685. form: "anthro"
  33686. },
  33687. feral: {
  33688. height: math.unit(16, "feet"),
  33689. name: "Feral",
  33690. image: {
  33691. source: "./media/characters/sini/feral.svg",
  33692. extra: 814/605,
  33693. bottom: 11/825
  33694. },
  33695. form: "feral",
  33696. default: true
  33697. },
  33698. feralNsfw: {
  33699. height: math.unit(16, "feet"),
  33700. name: "Feral (NSFW)",
  33701. image: {
  33702. source: "./media/characters/sini/feral-nsfw.svg",
  33703. extra: 814/605,
  33704. bottom: 11/825
  33705. },
  33706. form: "feral"
  33707. },
  33708. mawFeral: {
  33709. height: math.unit(5.66, "feet"),
  33710. name: "Maw",
  33711. image: {
  33712. source: "./media/characters/sini/maw-feral.svg"
  33713. },
  33714. form: "feral",
  33715. },
  33716. pawFeral: {
  33717. height: math.unit(5.17, "feet"),
  33718. name: "Paw",
  33719. image: {
  33720. source: "./media/characters/sini/paw-feral.svg"
  33721. },
  33722. form: "feral",
  33723. },
  33724. rumpFeral: {
  33725. height: math.unit(13.11, "feet"),
  33726. name: "Rump",
  33727. image: {
  33728. source: "./media/characters/sini/rump-feral.svg"
  33729. },
  33730. form: "feral",
  33731. },
  33732. dickFeral: {
  33733. height: math.unit(1, "feet"),
  33734. name: "Dick",
  33735. image: {
  33736. source: "./media/characters/sini/dick-feral.svg"
  33737. },
  33738. form: "feral",
  33739. },
  33740. eyeFeral: {
  33741. height: math.unit(1.23, "feet"),
  33742. name: "Eye",
  33743. image: {
  33744. source: "./media/characters/sini/eye-feral.svg"
  33745. },
  33746. form: "feral",
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(7, "feet"),
  33753. default: true,
  33754. form: "anthro"
  33755. },
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(16, "feet"),
  33759. default: true,
  33760. form: "feral"
  33761. },
  33762. ],
  33763. {
  33764. "anthro": {
  33765. name: "Anthro",
  33766. default: true
  33767. },
  33768. "feral": {
  33769. name: "Feral",
  33770. }
  33771. }
  33772. ))
  33773. characterMakers.push(() => makeCharacter(
  33774. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33775. {
  33776. side: {
  33777. height: math.unit(13, "meters"),
  33778. weight: math.unit(9072, "kg"),
  33779. name: "Side",
  33780. image: {
  33781. source: "./media/characters/raylldo/side.svg",
  33782. extra: 403/344,
  33783. bottom: 42/445
  33784. }
  33785. },
  33786. leaping: {
  33787. height: math.unit(12.3, "meters"),
  33788. weight: math.unit(9072, "kg"),
  33789. name: "Leaping",
  33790. image: {
  33791. source: "./media/characters/raylldo/leaping.svg",
  33792. extra: 470/249,
  33793. bottom: 13/483
  33794. }
  33795. },
  33796. flying: {
  33797. height: math.unit(18, "meters"),
  33798. weight: math.unit(9072, "kg"),
  33799. name: "Flying",
  33800. image: {
  33801. source: "./media/characters/raylldo/flying.svg"
  33802. }
  33803. },
  33804. head: {
  33805. height: math.unit(5.85, "meters"),
  33806. name: "Head",
  33807. image: {
  33808. source: "./media/characters/raylldo/head.svg"
  33809. }
  33810. },
  33811. maw: {
  33812. height: math.unit(5.32, "meters"),
  33813. name: "Maw",
  33814. image: {
  33815. source: "./media/characters/raylldo/maw.svg"
  33816. }
  33817. },
  33818. eye: {
  33819. height: math.unit(0.54, "meters"),
  33820. name: "Eye",
  33821. image: {
  33822. source: "./media/characters/raylldo/eye.svg"
  33823. }
  33824. },
  33825. },
  33826. [
  33827. {
  33828. name: "Normal",
  33829. height: math.unit(13, "meters"),
  33830. default: true
  33831. },
  33832. ]
  33833. ))
  33834. characterMakers.push(() => makeCharacter(
  33835. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33836. {
  33837. anthroFront: {
  33838. height: math.unit(9, "feet"),
  33839. weight: math.unit(600, "lb"),
  33840. name: "Anthro (Front)",
  33841. image: {
  33842. source: "./media/characters/glint/anthro-front.svg",
  33843. extra: 1097/1018,
  33844. bottom: 28/1125
  33845. }
  33846. },
  33847. anthroBack: {
  33848. height: math.unit(9, "feet"),
  33849. weight: math.unit(600, "lb"),
  33850. name: "Anthro (Back)",
  33851. image: {
  33852. source: "./media/characters/glint/anthro-back.svg",
  33853. extra: 1154/997,
  33854. bottom: 36/1190
  33855. }
  33856. },
  33857. feral: {
  33858. height: math.unit(11, "feet"),
  33859. weight: math.unit(50000, "lb"),
  33860. name: "Feral",
  33861. image: {
  33862. source: "./media/characters/glint/feral.svg",
  33863. extra: 3035/1585,
  33864. bottom: 1169/4204
  33865. }
  33866. },
  33867. dickAnthro: {
  33868. height: math.unit(0.7, "meters"),
  33869. name: "Dick (Anthro)",
  33870. image: {
  33871. source: "./media/characters/glint/dick-anthro.svg"
  33872. }
  33873. },
  33874. dickFeral: {
  33875. height: math.unit(2.65, "meters"),
  33876. name: "Dick (Feral)",
  33877. image: {
  33878. source: "./media/characters/glint/dick-feral.svg"
  33879. }
  33880. },
  33881. slitHidden: {
  33882. height: math.unit(5.85, "meters"),
  33883. name: "Slit (Hidden)",
  33884. image: {
  33885. source: "./media/characters/glint/slit-hidden.svg"
  33886. }
  33887. },
  33888. slitErect: {
  33889. height: math.unit(5.85, "meters"),
  33890. name: "Slit (Erect)",
  33891. image: {
  33892. source: "./media/characters/glint/slit-erect.svg"
  33893. }
  33894. },
  33895. mawAnthro: {
  33896. height: math.unit(0.63, "meters"),
  33897. name: "Maw (Anthro)",
  33898. image: {
  33899. source: "./media/characters/glint/maw.svg"
  33900. }
  33901. },
  33902. mawFeral: {
  33903. height: math.unit(2.89, "meters"),
  33904. name: "Maw (Feral)",
  33905. image: {
  33906. source: "./media/characters/glint/maw.svg"
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(9, "feet"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33920. {
  33921. side: {
  33922. height: math.unit(15, "feet"),
  33923. weight: math.unit(5000, "kg"),
  33924. name: "Side",
  33925. image: {
  33926. source: "./media/characters/kairne/side.svg",
  33927. extra: 979/811,
  33928. bottom: 13/992
  33929. }
  33930. },
  33931. front: {
  33932. height: math.unit(15, "feet"),
  33933. weight: math.unit(5000, "kg"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/kairne/front.svg",
  33937. extra: 908/814,
  33938. bottom: 26/934
  33939. }
  33940. },
  33941. sideNsfw: {
  33942. height: math.unit(15, "feet"),
  33943. weight: math.unit(5000, "kg"),
  33944. name: "Side (NSFW)",
  33945. image: {
  33946. source: "./media/characters/kairne/side-nsfw.svg",
  33947. extra: 979/811,
  33948. bottom: 13/992
  33949. }
  33950. },
  33951. frontNsfw: {
  33952. height: math.unit(15, "feet"),
  33953. weight: math.unit(5000, "kg"),
  33954. name: "Front (NSFW)",
  33955. image: {
  33956. source: "./media/characters/kairne/front-nsfw.svg",
  33957. extra: 908/814,
  33958. bottom: 26/934
  33959. }
  33960. },
  33961. dickCaged: {
  33962. height: math.unit(0.65, "meters"),
  33963. name: "Dick-caged",
  33964. image: {
  33965. source: "./media/characters/kairne/dick-caged.svg"
  33966. }
  33967. },
  33968. dick: {
  33969. height: math.unit(0.79, "meters"),
  33970. name: "Dick",
  33971. image: {
  33972. source: "./media/characters/kairne/dick.svg"
  33973. }
  33974. },
  33975. genitals: {
  33976. height: math.unit(1.29, "meters"),
  33977. name: "Genitals",
  33978. image: {
  33979. source: "./media/characters/kairne/genitals.svg"
  33980. }
  33981. },
  33982. maw: {
  33983. height: math.unit(1.73, "meters"),
  33984. name: "Maw",
  33985. image: {
  33986. source: "./media/characters/kairne/maw.svg"
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(15, "feet"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(5 + 8/12, "feet"),
  34003. weight: math.unit(139, "lb"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/biscuit-jackal/front.svg",
  34007. extra: 2106/1961,
  34008. bottom: 58/2164
  34009. }
  34010. },
  34011. back: {
  34012. height: math.unit(5 + 8/12, "feet"),
  34013. weight: math.unit(139, "lb"),
  34014. name: "Back",
  34015. image: {
  34016. source: "./media/characters/biscuit-jackal/back.svg",
  34017. extra: 2132/1976,
  34018. bottom: 57/2189
  34019. }
  34020. },
  34021. werejackal: {
  34022. height: math.unit(6 + 3/12, "feet"),
  34023. weight: math.unit(188, "lb"),
  34024. name: "Werejackal",
  34025. image: {
  34026. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34027. extra: 2373/2178,
  34028. bottom: 53/2426
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(5 + 8/12, "feet"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(140, "cm"),
  34045. weight: math.unit(45, "kg"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/tayra-white/front.svg",
  34049. extra: 2229/2192,
  34050. bottom: 75/2304
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(140, "cm"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(4 + 5/12, "feet"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/scoop/front.svg",
  34070. extra: 1257/1136,
  34071. bottom: 69/1326
  34072. }
  34073. },
  34074. back: {
  34075. height: math.unit(4 + 5/12, "feet"),
  34076. name: "Back",
  34077. image: {
  34078. source: "./media/characters/scoop/back.svg",
  34079. extra: 1321/1152,
  34080. bottom: 32/1353
  34081. }
  34082. },
  34083. maw: {
  34084. height: math.unit(0.68, "feet"),
  34085. name: "Maw",
  34086. image: {
  34087. source: "./media/characters/scoop/maw.svg"
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Really Small",
  34094. height: math.unit(1, "mm")
  34095. },
  34096. {
  34097. name: "Micro",
  34098. height: math.unit(1, "inch")
  34099. },
  34100. {
  34101. name: "Normal",
  34102. height: math.unit(4 + 5/12, "feet"),
  34103. default: true
  34104. },
  34105. {
  34106. name: "Macro",
  34107. height: math.unit(200, "feet")
  34108. },
  34109. {
  34110. name: "Megamacro",
  34111. height: math.unit(3240, "feet")
  34112. },
  34113. {
  34114. name: "Teramacro",
  34115. height: math.unit(2500, "miles")
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(15 + 7/12, "feet"),
  34124. weight: math.unit(1150, "tons"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/saphinara/front.svg",
  34128. extra: 1837/1643,
  34129. bottom: 84/1921
  34130. },
  34131. form: "normal",
  34132. default: true
  34133. },
  34134. side: {
  34135. height: math.unit(15 + 7/12, "feet"),
  34136. weight: math.unit(1150, "tons"),
  34137. name: "Side",
  34138. image: {
  34139. source: "./media/characters/saphinara/side.svg",
  34140. extra: 605/547,
  34141. bottom: 6/611
  34142. },
  34143. form: "normal"
  34144. },
  34145. back: {
  34146. height: math.unit(15 + 7/12, "feet"),
  34147. weight: math.unit(1150, "tons"),
  34148. name: "Back",
  34149. image: {
  34150. source: "./media/characters/saphinara/back.svg",
  34151. extra: 591/531,
  34152. bottom: 13/604
  34153. },
  34154. form: "normal"
  34155. },
  34156. frontTail: {
  34157. height: math.unit(15 + 7/12, "feet"),
  34158. weight: math.unit(1150, "tons"),
  34159. name: "Front (Full Tail)",
  34160. image: {
  34161. source: "./media/characters/saphinara/front-tail.svg",
  34162. extra: 2256/1630,
  34163. bottom: 261/2517
  34164. },
  34165. form: "normal"
  34166. },
  34167. insides: {
  34168. height: math.unit(11.92, "feet"),
  34169. name: "Insides",
  34170. image: {
  34171. source: "./media/characters/saphinara/insides.svg"
  34172. },
  34173. form: "normal"
  34174. },
  34175. head: {
  34176. height: math.unit(4.17, "feet"),
  34177. name: "Head",
  34178. image: {
  34179. source: "./media/characters/saphinara/head.svg"
  34180. },
  34181. form: "normal"
  34182. },
  34183. tongue: {
  34184. height: math.unit(4.60, "feet"),
  34185. name: "Tongue",
  34186. image: {
  34187. source: "./media/characters/saphinara/tongue.svg"
  34188. },
  34189. form: "normal"
  34190. },
  34191. headEnraged: {
  34192. height: math.unit(5.55, "feet"),
  34193. name: "Head (Enraged)",
  34194. image: {
  34195. source: "./media/characters/saphinara/head-enraged.svg"
  34196. },
  34197. form: "normal"
  34198. },
  34199. wings: {
  34200. height: math.unit(11.95, "feet"),
  34201. name: "Wings",
  34202. image: {
  34203. source: "./media/characters/saphinara/wings.svg"
  34204. },
  34205. form: "normal"
  34206. },
  34207. feathers: {
  34208. height: math.unit(8.92, "feet"),
  34209. name: "Feathers",
  34210. image: {
  34211. source: "./media/characters/saphinara/feathers.svg"
  34212. },
  34213. form: "normal"
  34214. },
  34215. shackles: {
  34216. height: math.unit(2, "feet"),
  34217. name: "Shackles",
  34218. image: {
  34219. source: "./media/characters/saphinara/shackles.svg"
  34220. },
  34221. form: "normal"
  34222. },
  34223. eyes: {
  34224. height: math.unit(1.331, "feet"),
  34225. name: "Eyes",
  34226. image: {
  34227. source: "./media/characters/saphinara/eyes.svg"
  34228. },
  34229. form: "normal"
  34230. },
  34231. eyesEnraged: {
  34232. height: math.unit(1.331, "feet"),
  34233. name: "Eyes (Enraged)",
  34234. image: {
  34235. source: "./media/characters/saphinara/eyes-enraged.svg"
  34236. },
  34237. form: "normal"
  34238. },
  34239. trueFormSide: {
  34240. height: math.unit(200, "feet"),
  34241. weight: math.unit(1e7, "tons"),
  34242. name: "Side",
  34243. image: {
  34244. source: "./media/characters/saphinara/true-form-side.svg",
  34245. extra: 1399/770,
  34246. bottom: 97/1496
  34247. },
  34248. form: "true-form",
  34249. default: true
  34250. },
  34251. trueFormMaw: {
  34252. height: math.unit(71.5, "feet"),
  34253. name: "Maw",
  34254. image: {
  34255. source: "./media/characters/saphinara/true-form-maw.svg",
  34256. extra: 2302/1453,
  34257. bottom: 0/2302
  34258. },
  34259. form: "true-form"
  34260. },
  34261. },
  34262. [
  34263. {
  34264. name: "Normal",
  34265. height: math.unit(15 + 7/12, "feet"),
  34266. default: true,
  34267. form: "normal"
  34268. },
  34269. {
  34270. name: "Angry",
  34271. height: math.unit(30 + 6/12, "feet"),
  34272. form: "normal"
  34273. },
  34274. {
  34275. name: "Enraged",
  34276. height: math.unit(102 + 1/12, "feet"),
  34277. form: "normal"
  34278. },
  34279. {
  34280. name: "True",
  34281. height: math.unit(200, "feet"),
  34282. default: true,
  34283. form: "true-form"
  34284. }
  34285. ],
  34286. {
  34287. "normal": {
  34288. name: "Normal",
  34289. default: true
  34290. },
  34291. "true-form": {
  34292. name: "True Form"
  34293. }
  34294. }
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(6 + 8/12, "feet"),
  34301. weight: math.unit(300, "lb"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/jrain/front.svg",
  34305. extra: 3039/2865,
  34306. bottom: 399/3438
  34307. }
  34308. },
  34309. back: {
  34310. height: math.unit(6 + 8/12, "feet"),
  34311. weight: math.unit(300, "lb"),
  34312. name: "Back",
  34313. image: {
  34314. source: "./media/characters/jrain/back.svg",
  34315. extra: 3089/2938,
  34316. bottom: 172/3261
  34317. }
  34318. },
  34319. head: {
  34320. height: math.unit(2.14, "feet"),
  34321. name: "Head",
  34322. image: {
  34323. source: "./media/characters/jrain/head.svg"
  34324. }
  34325. },
  34326. maw: {
  34327. height: math.unit(1.77, "feet"),
  34328. name: "Maw",
  34329. image: {
  34330. source: "./media/characters/jrain/maw.svg"
  34331. }
  34332. },
  34333. leftHand: {
  34334. height: math.unit(1.1, "feet"),
  34335. name: "Left Hand",
  34336. image: {
  34337. source: "./media/characters/jrain/left-hand.svg"
  34338. }
  34339. },
  34340. rightHand: {
  34341. height: math.unit(1.1, "feet"),
  34342. name: "Right Hand",
  34343. image: {
  34344. source: "./media/characters/jrain/right-hand.svg"
  34345. }
  34346. },
  34347. eye: {
  34348. height: math.unit(0.35, "feet"),
  34349. name: "Eye",
  34350. image: {
  34351. source: "./media/characters/jrain/eye.svg"
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(6 + 8/12, "feet"),
  34359. default: true
  34360. },
  34361. {
  34362. name: "Casually Large",
  34363. height: math.unit(25, "feet")
  34364. },
  34365. {
  34366. name: "Giant",
  34367. height: math.unit(100, "feet")
  34368. },
  34369. {
  34370. name: "Kaiju",
  34371. height: math.unit(300, "feet")
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34377. {
  34378. dragon: {
  34379. height: math.unit(5, "meters"),
  34380. name: "Dragon",
  34381. image: {
  34382. source: "./media/characters/sabrina/dragon.svg",
  34383. extra: 3670 / 2365,
  34384. bottom: 333 / 4003
  34385. }
  34386. },
  34387. gryphon: {
  34388. height: math.unit(3, "meters"),
  34389. name: "Gryphon",
  34390. image: {
  34391. source: "./media/characters/sabrina/gryphon.svg",
  34392. extra: 1576 / 945,
  34393. bottom: 71 / 1647
  34394. }
  34395. },
  34396. snake: {
  34397. height: math.unit(12, "meters"),
  34398. name: "Snake",
  34399. image: {
  34400. source: "./media/characters/sabrina/snake.svg",
  34401. extra: 1758 / 1320,
  34402. bottom: 186 / 1944
  34403. }
  34404. },
  34405. collar: {
  34406. height: math.unit(1.86, "meters"),
  34407. name: "Collar",
  34408. image: {
  34409. source: "./media/characters/sabrina/collar.svg"
  34410. }
  34411. },
  34412. eye: {
  34413. height: math.unit(0.53, "meters"),
  34414. name: "Eye",
  34415. image: {
  34416. source: "./media/characters/sabrina/eye.svg"
  34417. }
  34418. },
  34419. foot: {
  34420. height: math.unit(1.86, "meters"),
  34421. name: "Foot",
  34422. image: {
  34423. source: "./media/characters/sabrina/foot.svg"
  34424. }
  34425. },
  34426. hand: {
  34427. height: math.unit(1.32, "meters"),
  34428. name: "Hand",
  34429. image: {
  34430. source: "./media/characters/sabrina/hand.svg"
  34431. }
  34432. },
  34433. head: {
  34434. height: math.unit(2.44, "meters"),
  34435. name: "Head",
  34436. image: {
  34437. source: "./media/characters/sabrina/head.svg"
  34438. }
  34439. },
  34440. headAngry: {
  34441. height: math.unit(2.44, "meters"),
  34442. name: "Head (Angry))",
  34443. image: {
  34444. source: "./media/characters/sabrina/head-angry.svg"
  34445. }
  34446. },
  34447. maw: {
  34448. height: math.unit(1.65, "meters"),
  34449. name: "Maw",
  34450. image: {
  34451. source: "./media/characters/sabrina/maw.svg"
  34452. }
  34453. },
  34454. spikes: {
  34455. height: math.unit(1.69, "meters"),
  34456. name: "Spikes",
  34457. image: {
  34458. source: "./media/characters/sabrina/spikes.svg"
  34459. }
  34460. },
  34461. stomach: {
  34462. height: math.unit(1.15, "meters"),
  34463. name: "Stomach",
  34464. image: {
  34465. source: "./media/characters/sabrina/stomach.svg"
  34466. }
  34467. },
  34468. tongue: {
  34469. height: math.unit(1.27, "meters"),
  34470. name: "Tongue",
  34471. image: {
  34472. source: "./media/characters/sabrina/tongue.svg"
  34473. }
  34474. },
  34475. wingDorsal: {
  34476. height: math.unit(4.85, "meters"),
  34477. name: "Wing (Dorsal)",
  34478. image: {
  34479. source: "./media/characters/sabrina/wing-dorsal.svg"
  34480. }
  34481. },
  34482. wingVentral: {
  34483. height: math.unit(4.85, "meters"),
  34484. name: "Wing (Ventral)",
  34485. image: {
  34486. source: "./media/characters/sabrina/wing-ventral.svg"
  34487. }
  34488. },
  34489. },
  34490. [
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(5, "meters"),
  34494. default: true
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34500. {
  34501. frontMaid: {
  34502. height: math.unit(5 + 5/12, "feet"),
  34503. weight: math.unit(130, "lb"),
  34504. name: "Front (Maid)",
  34505. image: {
  34506. source: "./media/characters/midnight-tales/front-maid.svg",
  34507. extra: 489/454,
  34508. bottom: 61/550
  34509. }
  34510. },
  34511. frontFormal: {
  34512. height: math.unit(5 + 5/12, "feet"),
  34513. weight: math.unit(130, "lb"),
  34514. name: "Front (Formal)",
  34515. image: {
  34516. source: "./media/characters/midnight-tales/front-formal.svg",
  34517. extra: 489/454,
  34518. bottom: 61/550
  34519. }
  34520. },
  34521. back: {
  34522. height: math.unit(5 + 5/12, "feet"),
  34523. weight: math.unit(130, "lb"),
  34524. name: "Back",
  34525. image: {
  34526. source: "./media/characters/midnight-tales/back.svg",
  34527. extra: 498/456,
  34528. bottom: 33/531
  34529. }
  34530. },
  34531. frontBeast: {
  34532. height: math.unit(40, "feet"),
  34533. weight: math.unit(64000, "lb"),
  34534. name: "Front (Beast)",
  34535. image: {
  34536. source: "./media/characters/midnight-tales/front-beast.svg",
  34537. extra: 927/860,
  34538. bottom: 53/980
  34539. }
  34540. },
  34541. backBeast: {
  34542. height: math.unit(40, "feet"),
  34543. weight: math.unit(64000, "lb"),
  34544. name: "Back (Beast)",
  34545. image: {
  34546. source: "./media/characters/midnight-tales/back-beast.svg",
  34547. extra: 929/855,
  34548. bottom: 16/945
  34549. }
  34550. },
  34551. footBeast: {
  34552. height: math.unit(6.7, "feet"),
  34553. name: "Foot (Beast)",
  34554. image: {
  34555. source: "./media/characters/midnight-tales/foot-beast.svg"
  34556. }
  34557. },
  34558. headBeast: {
  34559. height: math.unit(8, "feet"),
  34560. name: "Head (Beast)",
  34561. image: {
  34562. source: "./media/characters/midnight-tales/head-beast.svg"
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Normal",
  34569. height: math.unit(5 + 5 / 12, "feet"),
  34570. default: true
  34571. },
  34572. {
  34573. name: "Macro",
  34574. height: math.unit(25, "feet")
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(5 + 10/12, "feet"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/argon/front.svg",
  34586. extra: 2009/1935,
  34587. bottom: 118/2127
  34588. }
  34589. },
  34590. back: {
  34591. height: math.unit(5 + 10/12, "feet"),
  34592. name: "Back",
  34593. image: {
  34594. source: "./media/characters/argon/back.svg",
  34595. extra: 2047/1992,
  34596. bottom: 20/2067
  34597. }
  34598. },
  34599. frontDressed: {
  34600. height: math.unit(5 + 10/12, "feet"),
  34601. name: "Front (Dressed)",
  34602. image: {
  34603. source: "./media/characters/argon/front-dressed.svg",
  34604. extra: 2009/1935,
  34605. bottom: 118/2127
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(5 + 10/12, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(8 + 6/12, "feet"),
  34622. weight: math.unit(1150, "lb"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/kichi/front.svg",
  34626. extra: 1267/1164,
  34627. bottom: 61/1328
  34628. }
  34629. },
  34630. back: {
  34631. height: math.unit(8 + 6/12, "feet"),
  34632. weight: math.unit(1150, "lb"),
  34633. name: "Back",
  34634. image: {
  34635. source: "./media/characters/kichi/back.svg",
  34636. extra: 1273/1166,
  34637. bottom: 33/1306
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(8 + 6/12, "feet"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(6, "feet"),
  34654. weight: math.unit(210, "lb"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/manetel-greyscale/front.svg",
  34658. extra: 350/312,
  34659. bottom: 8/358
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Micro",
  34666. height: math.unit(2, "inches")
  34667. },
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(6, "feet"),
  34671. default: true
  34672. },
  34673. {
  34674. name: "Minimacro",
  34675. height: math.unit(17, "feet")
  34676. },
  34677. {
  34678. name: "Macro",
  34679. height: math.unit(117, "feet")
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34685. {
  34686. side: {
  34687. height: math.unit(5 + 1/12, "feet"),
  34688. weight: math.unit(418, "lb"),
  34689. name: "Side",
  34690. image: {
  34691. source: "./media/characters/softpurr/side.svg",
  34692. extra: 1993/1945,
  34693. bottom: 134/2127
  34694. }
  34695. },
  34696. front: {
  34697. height: math.unit(5 + 1/12, "feet"),
  34698. weight: math.unit(418, "lb"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/softpurr/front.svg",
  34702. extra: 1950/1856,
  34703. bottom: 174/2124
  34704. }
  34705. },
  34706. paw: {
  34707. height: math.unit(1, "feet"),
  34708. name: "Paw",
  34709. image: {
  34710. source: "./media/characters/softpurr/paw.svg"
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(5 + 1/12, "feet"),
  34718. default: true
  34719. },
  34720. ]
  34721. ))
  34722. characterMakers.push(() => makeCharacter(
  34723. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34724. {
  34725. front: {
  34726. height: math.unit(260, "meters"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/anahita/front.svg",
  34730. extra: 665/635,
  34731. bottom: 89/754
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Macro",
  34738. height: math.unit(260, "meters"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(4 + 10/12, "feet"),
  34748. weight: math.unit(160, "lb"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/chip-mouse/front.svg",
  34752. extra: 3528/3408,
  34753. bottom: 0/3528
  34754. }
  34755. },
  34756. frontNsfw: {
  34757. height: math.unit(4 + 10/12, "feet"),
  34758. weight: math.unit(160, "lb"),
  34759. name: "Front (NSFW)",
  34760. image: {
  34761. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34762. extra: 3528/3408,
  34763. bottom: 0/3528
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(4 + 10/12, "feet"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34777. {
  34778. side: {
  34779. height: math.unit(10, "feet"),
  34780. weight: math.unit(14000, "lb"),
  34781. name: "Side",
  34782. image: {
  34783. source: "./media/characters/kremm/side.svg",
  34784. extra: 1390/1053,
  34785. bottom: 90/1480
  34786. }
  34787. },
  34788. gut: {
  34789. height: math.unit(5.8, "feet"),
  34790. name: "Gut",
  34791. image: {
  34792. source: "./media/characters/kremm/gut.svg"
  34793. }
  34794. },
  34795. ass: {
  34796. height: math.unit(6.1, "feet"),
  34797. name: "Ass",
  34798. image: {
  34799. source: "./media/characters/kremm/ass.svg"
  34800. }
  34801. },
  34802. jaws: {
  34803. height: math.unit(2.2, "feet"),
  34804. name: "Jaws",
  34805. image: {
  34806. source: "./media/characters/kremm/jaws.svg"
  34807. }
  34808. },
  34809. dick: {
  34810. height: math.unit(4.26, "feet"),
  34811. name: "Dick",
  34812. image: {
  34813. source: "./media/characters/kremm/dick.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(10, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(30, "stories"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/kai/front.svg",
  34833. extra: 1892/1718,
  34834. bottom: 162/2054
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Macro",
  34841. height: math.unit(30, "stories"),
  34842. default: true
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34848. {
  34849. front: {
  34850. height: math.unit(6 + 4/12, "feet"),
  34851. weight: math.unit(145, "lb"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/sykes/front.svg",
  34855. extra: 1321 / 1187,
  34856. bottom: 66 / 1387
  34857. }
  34858. },
  34859. back: {
  34860. height: math.unit(6 + 4/12, "feet"),
  34861. weight: math.unit(145, "lb"),
  34862. name: "Back",
  34863. image: {
  34864. source: "./media/characters/sykes/back.svg",
  34865. extra: 1326/1181,
  34866. bottom: 31/1357
  34867. }
  34868. },
  34869. traditionalOutfit: {
  34870. height: math.unit(6 + 4/12, "feet"),
  34871. weight: math.unit(145, "lb"),
  34872. name: "Traditional Outfit",
  34873. image: {
  34874. source: "./media/characters/sykes/traditional-outfit.svg",
  34875. extra: 1321 / 1187,
  34876. bottom: 66 / 1387
  34877. }
  34878. },
  34879. adventureOutfit: {
  34880. height: math.unit(6 + 4/12, "feet"),
  34881. weight: math.unit(145, "lb"),
  34882. name: "Adventure Outfit",
  34883. image: {
  34884. source: "./media/characters/sykes/adventure-outfit.svg",
  34885. extra: 1321 / 1187,
  34886. bottom: 66 / 1387
  34887. }
  34888. },
  34889. handLeft: {
  34890. height: math.unit(0.9, "feet"),
  34891. name: "Hand (Left)",
  34892. image: {
  34893. source: "./media/characters/sykes/hand-left.svg"
  34894. }
  34895. },
  34896. handRight: {
  34897. height: math.unit(0.839, "feet"),
  34898. name: "Hand (Right)",
  34899. image: {
  34900. source: "./media/characters/sykes/hand-right.svg"
  34901. }
  34902. },
  34903. leftFoot: {
  34904. height: math.unit(1.2, "feet"),
  34905. name: "Foot (Left)",
  34906. image: {
  34907. source: "./media/characters/sykes/foot-left.svg"
  34908. }
  34909. },
  34910. rightFoot: {
  34911. height: math.unit(1.2, "feet"),
  34912. name: "Foot (Right)",
  34913. image: {
  34914. source: "./media/characters/sykes/foot-right.svg"
  34915. }
  34916. },
  34917. maw: {
  34918. height: math.unit(1.93, "feet"),
  34919. name: "Maw",
  34920. image: {
  34921. source: "./media/characters/sykes/maw.svg"
  34922. }
  34923. },
  34924. teeth: {
  34925. height: math.unit(0.51, "feet"),
  34926. name: "Teeth",
  34927. image: {
  34928. source: "./media/characters/sykes/teeth.svg"
  34929. }
  34930. },
  34931. tongue: {
  34932. height: math.unit(2.13, "feet"),
  34933. name: "Tongue",
  34934. image: {
  34935. source: "./media/characters/sykes/tongue.svg"
  34936. }
  34937. },
  34938. uvula: {
  34939. height: math.unit(0.16, "feet"),
  34940. name: "Uvula",
  34941. image: {
  34942. source: "./media/characters/sykes/uvula.svg"
  34943. }
  34944. },
  34945. collar: {
  34946. height: math.unit(0.287, "feet"),
  34947. name: "Collar",
  34948. image: {
  34949. source: "./media/characters/sykes/collar.svg"
  34950. }
  34951. },
  34952. tail: {
  34953. height: math.unit(3.8, "feet"),
  34954. name: "Tail",
  34955. image: {
  34956. source: "./media/characters/sykes/tail.svg"
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Shrunken",
  34963. height: math.unit(5, "inches")
  34964. },
  34965. {
  34966. name: "Normal",
  34967. height: math.unit(6 + 4 / 12, "feet"),
  34968. default: true
  34969. },
  34970. {
  34971. name: "Big",
  34972. height: math.unit(15, "feet")
  34973. },
  34974. ]
  34975. ))
  34976. characterMakers.push(() => makeCharacter(
  34977. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34978. {
  34979. front: {
  34980. height: math.unit(5 + 8/12, "feet"),
  34981. weight: math.unit(190, "lb"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/oven-otter/front.svg",
  34985. extra: 1809/1740,
  34986. bottom: 181/1990
  34987. }
  34988. },
  34989. back: {
  34990. height: math.unit(5 + 8/12, "feet"),
  34991. weight: math.unit(190, "lb"),
  34992. name: "Back",
  34993. image: {
  34994. source: "./media/characters/oven-otter/back.svg",
  34995. extra: 1709/1635,
  34996. bottom: 118/1827
  34997. }
  34998. },
  34999. hand: {
  35000. height: math.unit(1.07, "feet"),
  35001. name: "Hand",
  35002. image: {
  35003. source: "./media/characters/oven-otter/hand.svg"
  35004. }
  35005. },
  35006. beans: {
  35007. height: math.unit(1.74, "feet"),
  35008. name: "Beans",
  35009. image: {
  35010. source: "./media/characters/oven-otter/beans.svg"
  35011. }
  35012. },
  35013. },
  35014. [
  35015. {
  35016. name: "Micro",
  35017. height: math.unit(0.5, "inches")
  35018. },
  35019. {
  35020. name: "Normal",
  35021. height: math.unit(5 + 8/12, "feet"),
  35022. default: true
  35023. },
  35024. {
  35025. name: "Macro",
  35026. height: math.unit(250, "feet")
  35027. },
  35028. {
  35029. name: "Really High",
  35030. height: math.unit(420, "feet")
  35031. },
  35032. ]
  35033. ))
  35034. characterMakers.push(() => makeCharacter(
  35035. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35036. {
  35037. front: {
  35038. height: math.unit(5, "meters"),
  35039. weight: math.unit(292000000000000, "kg"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/devourer/front.svg",
  35043. extra: 1800/1733,
  35044. bottom: 211/2011
  35045. }
  35046. },
  35047. maw: {
  35048. height: math.unit(1.1, "meter"),
  35049. name: "Maw",
  35050. image: {
  35051. source: "./media/characters/devourer/maw.svg"
  35052. }
  35053. },
  35054. },
  35055. [
  35056. {
  35057. name: "Small",
  35058. height: math.unit(3, "meters")
  35059. },
  35060. {
  35061. name: "Large",
  35062. height: math.unit(5, "meters"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35069. {
  35070. front: {
  35071. height: math.unit(6, "feet"),
  35072. weight: math.unit(400, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/ellarby/front.svg",
  35076. extra: 1909/1763,
  35077. bottom: 80/1989
  35078. }
  35079. },
  35080. back: {
  35081. height: math.unit(6, "feet"),
  35082. weight: math.unit(400, "lb"),
  35083. name: "Back",
  35084. image: {
  35085. source: "./media/characters/ellarby/back.svg",
  35086. extra: 1914/1784,
  35087. bottom: 172/2086
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Mischief",
  35094. height: math.unit(18, "inches")
  35095. },
  35096. {
  35097. name: "Trouble",
  35098. height: math.unit(12, "feet")
  35099. },
  35100. {
  35101. name: "Havoc",
  35102. height: math.unit(200, "feet"),
  35103. default: true
  35104. },
  35105. {
  35106. name: "Pandemonium",
  35107. height: math.unit(1, "mile")
  35108. },
  35109. {
  35110. name: "Catastrophe",
  35111. height: math.unit(100, "miles")
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35117. {
  35118. front: {
  35119. height: math.unit(4.7, "meters"),
  35120. weight: math.unit(6500, "kg"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/vex/front.svg",
  35124. extra: 1288/1140,
  35125. bottom: 100/1388
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(4.7, "meters"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35139. {
  35140. normal: {
  35141. height: math.unit(6, "feet"),
  35142. weight: math.unit(350, "lb"),
  35143. name: "Normal",
  35144. image: {
  35145. source: "./media/characters/teshy/normal.svg",
  35146. extra: 1795/1735,
  35147. bottom: 16/1811
  35148. }
  35149. },
  35150. monsterFront: {
  35151. height: math.unit(12, "feet"),
  35152. weight: math.unit(4700, "lb"),
  35153. name: "Monster (Front)",
  35154. image: {
  35155. source: "./media/characters/teshy/monster-front.svg",
  35156. extra: 2042/2034,
  35157. bottom: 128/2170
  35158. }
  35159. },
  35160. monsterSide: {
  35161. height: math.unit(12, "feet"),
  35162. weight: math.unit(4700, "lb"),
  35163. name: "Monster (Side)",
  35164. image: {
  35165. source: "./media/characters/teshy/monster-side.svg",
  35166. extra: 2067/2056,
  35167. bottom: 70/2137
  35168. }
  35169. },
  35170. monsterBack: {
  35171. height: math.unit(12, "feet"),
  35172. weight: math.unit(4700, "lb"),
  35173. name: "Monster (Back)",
  35174. image: {
  35175. source: "./media/characters/teshy/monster-back.svg",
  35176. extra: 1921/1914,
  35177. bottom: 171/2092
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(6, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(6, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/ramey/front.svg",
  35197. extra: 790/787,
  35198. bottom: 27/817
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(6, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(5 + 5/12, "feet"),
  35215. weight: math.unit(120, "lb"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/phirae/front.svg",
  35219. extra: 2491/2436,
  35220. bottom: 38/2529
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(5 + 5/12, "feet"),
  35228. default: true
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35234. {
  35235. front: {
  35236. height: math.unit(5 + 3/12, "feet"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/stagglas/front.svg",
  35240. extra: 962/882,
  35241. bottom: 53/1015
  35242. }
  35243. },
  35244. feral: {
  35245. height: math.unit(335, "cm"),
  35246. name: "Feral",
  35247. image: {
  35248. source: "./media/characters/stagglas/feral.svg",
  35249. extra: 1732/1090,
  35250. bottom: 48/1780
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(5 + 3/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(5 + 4/12, "feet"),
  35267. weight: math.unit(145, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/starra/front.svg",
  35271. extra: 1790/1691,
  35272. bottom: 91/1881
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5 + 4/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(2.2, "meters"),
  35289. name: "Front",
  35290. image: {
  35291. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35292. extra: 1194/1005,
  35293. bottom: 25/1219
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(2.2, "meters"),
  35301. default: true
  35302. },
  35303. ]
  35304. ))
  35305. characterMakers.push(() => makeCharacter(
  35306. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35307. {
  35308. side: {
  35309. height: math.unit(8 + 2/12, "feet"),
  35310. weight: math.unit(1240, "lb"),
  35311. name: "Side",
  35312. image: {
  35313. source: "./media/characters/mika-valentine/side.svg",
  35314. extra: 2670/2501,
  35315. bottom: 250/2920
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(8 + 2/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(7 + 2/12, "feet"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/xoltol/front.svg",
  35335. extra: 2212/2124,
  35336. bottom: 84/2296
  35337. }
  35338. },
  35339. side: {
  35340. height: math.unit(7 + 2/12, "feet"),
  35341. name: "Side",
  35342. image: {
  35343. source: "./media/characters/xoltol/side.svg",
  35344. extra: 2273/2197,
  35345. bottom: 26/2299
  35346. }
  35347. },
  35348. hand: {
  35349. height: math.unit(2.5, "feet"),
  35350. name: "Hand",
  35351. image: {
  35352. source: "./media/characters/xoltol/hand.svg"
  35353. }
  35354. },
  35355. },
  35356. [
  35357. {
  35358. name: "Small-ish",
  35359. height: math.unit(5 + 11/12, "feet")
  35360. },
  35361. {
  35362. name: "Normal",
  35363. height: math.unit(7 + 2/12, "feet")
  35364. },
  35365. {
  35366. name: "\"Macro\"",
  35367. height: math.unit(14 + 9/12, "feet"),
  35368. default: true
  35369. },
  35370. {
  35371. name: "Alternate Height",
  35372. height: math.unit(20, "feet")
  35373. },
  35374. {
  35375. name: "Actually Macro",
  35376. height: math.unit(100, "feet")
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(5 + 2/12, "feet"),
  35385. name: "Front",
  35386. image: {
  35387. source: "./media/characters/kotetsu-redwood/front.svg",
  35388. extra: 1053/942,
  35389. bottom: 60/1113
  35390. }
  35391. },
  35392. },
  35393. [
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(5 + 2/12, "feet"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(2.4, "meters"),
  35406. weight: math.unit(125, "kg"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/lilith/front.svg",
  35410. extra: 1590/1513,
  35411. bottom: 203/1793
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Humanoid",
  35418. height: math.unit(2.4, "meters")
  35419. },
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(6, "meters"),
  35423. default: true
  35424. },
  35425. {
  35426. name: "Largest",
  35427. height: math.unit(55, "meters")
  35428. },
  35429. ]
  35430. ))
  35431. characterMakers.push(() => makeCharacter(
  35432. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35433. {
  35434. front: {
  35435. height: math.unit(8 + 4/12, "feet"),
  35436. weight: math.unit(535, "lb"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/beh'kah-bolger/front.svg",
  35440. extra: 1660/1603,
  35441. bottom: 37/1697
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(8 + 4/12, "feet"),
  35449. default: true
  35450. },
  35451. {
  35452. name: "Kaiju",
  35453. height: math.unit(250, "feet")
  35454. },
  35455. {
  35456. name: "Still Growing",
  35457. height: math.unit(10, "miles")
  35458. },
  35459. {
  35460. name: "Continental",
  35461. height: math.unit(5000, "miles")
  35462. },
  35463. {
  35464. name: "Final Form",
  35465. height: math.unit(2500000, "miles")
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35471. {
  35472. front: {
  35473. height: math.unit(7 + 2/12, "feet"),
  35474. weight: math.unit(230, "kg"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/tatyana-milewska/front.svg",
  35478. extra: 1199/1150,
  35479. bottom: 86/1285
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(7 + 2/12, "feet"),
  35487. default: true
  35488. },
  35489. {
  35490. name: "Big",
  35491. height: math.unit(12, "feet")
  35492. },
  35493. {
  35494. name: "Minimacro",
  35495. height: math.unit(20, "feet")
  35496. },
  35497. {
  35498. name: "Macro",
  35499. height: math.unit(120, "feet")
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(7 + 8/12, "feet"),
  35508. weight: math.unit(152, "kg"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/helen-arri/front.svg",
  35512. extra: 440/423,
  35513. bottom: 14/454
  35514. }
  35515. },
  35516. back: {
  35517. height: math.unit(7 + 8/12, "feet"),
  35518. weight: math.unit(152, "kg"),
  35519. name: "Back",
  35520. image: {
  35521. source: "./media/characters/helen-arri/back.svg",
  35522. extra: 443/426,
  35523. bottom: 8/451
  35524. }
  35525. },
  35526. },
  35527. [
  35528. {
  35529. name: "Normal",
  35530. height: math.unit(7 + 8/12, "feet"),
  35531. default: true
  35532. },
  35533. {
  35534. name: "Big",
  35535. height: math.unit(14, "feet")
  35536. },
  35537. {
  35538. name: "Minimacro",
  35539. height: math.unit(24, "feet")
  35540. },
  35541. {
  35542. name: "Macro",
  35543. height: math.unit(140, "feet")
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(6, "meters"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/ehanu-rehu/front.svg",
  35555. extra: 1800/1800,
  35556. bottom: 59/1859
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(6, "meters"),
  35564. default: true
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35570. {
  35571. front: {
  35572. height: math.unit(7 + 3/12, "feet"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/renholder/front.svg",
  35576. extra: 3096/2960,
  35577. bottom: 250/3346
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Normal Bat",
  35584. height: math.unit(7 + 3/12, "feet"),
  35585. default: true
  35586. },
  35587. {
  35588. name: "Slightly Tall Bat",
  35589. height: math.unit(100, "feet")
  35590. },
  35591. {
  35592. name: "Big Bat",
  35593. height: math.unit(1000, "feet")
  35594. },
  35595. {
  35596. name: "City-Sized Bat",
  35597. height: math.unit(200000, "feet")
  35598. },
  35599. {
  35600. name: "Bigger Bat",
  35601. height: math.unit(10000, "miles")
  35602. },
  35603. {
  35604. name: "Solar Sized Bat",
  35605. height: math.unit(100, "AU")
  35606. },
  35607. {
  35608. name: "Galactic Bat",
  35609. height: math.unit(200000, "lightyears")
  35610. },
  35611. {
  35612. name: "Universally Known Bat",
  35613. height: math.unit(1, "universe")
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35619. {
  35620. front: {
  35621. height: math.unit(6 + 11/12, "feet"),
  35622. weight: math.unit(250, "lb"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/cookiecat/front.svg",
  35626. extra: 893/827,
  35627. bottom: 14/907
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Micro",
  35634. height: math.unit(3, "inches")
  35635. },
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(6 + 11/12, "feet"),
  35639. default: true
  35640. },
  35641. {
  35642. name: "Macro",
  35643. height: math.unit(100, "feet")
  35644. },
  35645. {
  35646. name: "Macro+",
  35647. height: math.unit(404, "feet")
  35648. },
  35649. {
  35650. name: "Megamacro",
  35651. height: math.unit(165, "miles")
  35652. },
  35653. {
  35654. name: "Planetary",
  35655. height: math.unit(4600, "miles")
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35661. {
  35662. front: {
  35663. height: math.unit(10 + 3/12, "feet"),
  35664. weight: math.unit(1500, "lb"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/tux-kusanagi/front.svg",
  35668. extra: 944/840,
  35669. bottom: 39/983
  35670. }
  35671. },
  35672. back: {
  35673. height: math.unit(10 + 3/12, "feet"),
  35674. weight: math.unit(1500, "lb"),
  35675. name: "Back",
  35676. image: {
  35677. source: "./media/characters/tux-kusanagi/back.svg",
  35678. extra: 941/842,
  35679. bottom: 28/969
  35680. }
  35681. },
  35682. rump: {
  35683. height: math.unit(5.25, "feet"),
  35684. name: "Rump",
  35685. image: {
  35686. source: "./media/characters/tux-kusanagi/rump.svg"
  35687. }
  35688. },
  35689. beak: {
  35690. height: math.unit(1.54, "feet"),
  35691. name: "Beak",
  35692. image: {
  35693. source: "./media/characters/tux-kusanagi/beak.svg"
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(10 + 3/12, "feet"),
  35701. default: true
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(58, "feet"),
  35710. weight: math.unit(200, "tons"),
  35711. name: "Front",
  35712. image: {
  35713. source: "./media/characters/uzarmazari/front.svg",
  35714. extra: 1575/1455,
  35715. bottom: 152/1727
  35716. }
  35717. },
  35718. back: {
  35719. height: math.unit(58, "feet"),
  35720. weight: math.unit(200, "tons"),
  35721. name: "Back",
  35722. image: {
  35723. source: "./media/characters/uzarmazari/back.svg",
  35724. extra: 1585/1510,
  35725. bottom: 157/1742
  35726. }
  35727. },
  35728. head: {
  35729. height: math.unit(26, "feet"),
  35730. name: "Head",
  35731. image: {
  35732. source: "./media/characters/uzarmazari/head.svg"
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(58, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35746. {
  35747. side: {
  35748. height: math.unit(15, "feet"),
  35749. name: "Side",
  35750. image: {
  35751. source: "./media/characters/akitu/side.svg",
  35752. extra: 1421/1321,
  35753. bottom: 157/1578
  35754. }
  35755. },
  35756. front: {
  35757. height: math.unit(15, "feet"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/akitu/front.svg",
  35761. extra: 1435/1326,
  35762. bottom: 232/1667
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(15, "feet"),
  35770. default: true
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(10 + 8/12, "feet"),
  35779. name: "Front",
  35780. image: {
  35781. source: "./media/characters/azalie-croixland/front.svg",
  35782. extra: 1972/1856,
  35783. bottom: 31/2003
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Original Height",
  35790. height: math.unit(5 + 4/12, "feet")
  35791. },
  35792. {
  35793. name: "Normal Height",
  35794. height: math.unit(10 + 8/12, "feet"),
  35795. default: true
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35801. {
  35802. side: {
  35803. height: math.unit(7 + 1/12, "feet"),
  35804. weight: math.unit(245, "lb"),
  35805. name: "Side",
  35806. image: {
  35807. source: "./media/characters/kavus-kazian/side.svg",
  35808. extra: 349/342,
  35809. bottom: 15/364
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(7 + 1/12, "feet"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35823. {
  35824. normalFront: {
  35825. height: math.unit(5 + 11/12, "feet"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/moonlight-rose/normal-front.svg",
  35829. extra: 1980/1825,
  35830. bottom: 18/1998
  35831. },
  35832. form: "normal",
  35833. default: true
  35834. },
  35835. normalBack: {
  35836. height: math.unit(5 + 11/12, "feet"),
  35837. name: "Back",
  35838. image: {
  35839. source: "./media/characters/moonlight-rose/normal-back.svg",
  35840. extra: 2010/1839,
  35841. bottom: 10/2020
  35842. },
  35843. form: "normal"
  35844. },
  35845. demonFront: {
  35846. height: math.unit(1.5, "earths"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/moonlight-rose/demon.svg",
  35850. extra: 1400/1294,
  35851. bottom: 45/1445
  35852. },
  35853. form: "demon",
  35854. default: true
  35855. },
  35856. terraFront: {
  35857. height: math.unit(1.5, "earths"),
  35858. name: "Front",
  35859. image: {
  35860. source: "./media/characters/moonlight-rose/terra.svg"
  35861. },
  35862. form: "terra",
  35863. default: true
  35864. },
  35865. jupiterFront: {
  35866. height: math.unit(69911*2, "km"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35870. extra: 1367/1286,
  35871. bottom: 55/1422
  35872. },
  35873. form: "jupiter",
  35874. default: true
  35875. },
  35876. neptuneFront: {
  35877. height: math.unit(24622*2, "feet"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35881. extra: 1851/1712,
  35882. bottom: 0/1851
  35883. },
  35884. form: "neptune",
  35885. default: true
  35886. },
  35887. },
  35888. [
  35889. {
  35890. name: "\"Natural\" Height",
  35891. height: math.unit(5 + 11/12, "feet"),
  35892. form: "normal"
  35893. },
  35894. {
  35895. name: "Smallest comfortable size",
  35896. height: math.unit(40, "meters"),
  35897. form: "normal"
  35898. },
  35899. {
  35900. name: "Common size",
  35901. height: math.unit(50, "km"),
  35902. form: "normal",
  35903. default: true
  35904. },
  35905. {
  35906. name: "Normal",
  35907. height: math.unit(1.5, "earths"),
  35908. form: "demon",
  35909. default: true
  35910. },
  35911. {
  35912. name: "Universal",
  35913. height: math.unit(15, "universes"),
  35914. form: "demon"
  35915. },
  35916. {
  35917. name: "Earth",
  35918. height: math.unit(1.5, "earths"),
  35919. form: "terra",
  35920. default: true
  35921. },
  35922. {
  35923. name: "Super Earth",
  35924. height: math.unit(67.5, "earths"),
  35925. form: "terra"
  35926. },
  35927. {
  35928. name: "Doesn't fit in a solar system...",
  35929. height: math.unit(1, "galaxy"),
  35930. form: "terra"
  35931. },
  35932. {
  35933. name: "Saturn",
  35934. height: math.unit(58232*2, "km"),
  35935. form: "jupiter"
  35936. },
  35937. {
  35938. name: "Jupiter",
  35939. height: math.unit(69911*2, "km"),
  35940. form: "jupiter",
  35941. default: true
  35942. },
  35943. {
  35944. name: "HD 100546 b",
  35945. height: math.unit(482938, "km"),
  35946. form: "jupiter"
  35947. },
  35948. {
  35949. name: "Enceladus",
  35950. height: math.unit(513*2, "km"),
  35951. form: "neptune"
  35952. },
  35953. {
  35954. name: "Europe",
  35955. height: math.unit(1560*2, "km"),
  35956. form: "neptune"
  35957. },
  35958. {
  35959. name: "Neptune",
  35960. height: math.unit(24622*2, "km"),
  35961. form: "neptune",
  35962. default: true
  35963. },
  35964. {
  35965. name: "CoRoT-9b",
  35966. height: math.unit(75067*2, "km"),
  35967. form: "neptune"
  35968. },
  35969. ],
  35970. {
  35971. "normal": {
  35972. name: "Normal",
  35973. default: true
  35974. },
  35975. "demon": {
  35976. name: "Demon"
  35977. },
  35978. "terra": {
  35979. name: "Terra"
  35980. },
  35981. "jupiter": {
  35982. name: "Jupiter"
  35983. },
  35984. "neptune": {
  35985. name: "Neptune"
  35986. }
  35987. }
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(16, "feet"),
  35994. weight: math.unit(610, "kg"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/huckle/front.svg",
  35998. extra: 1731/1625,
  35999. bottom: 33/1764
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(16, "feet"),
  36004. weight: math.unit(610, "kg"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/huckle/back.svg",
  36008. extra: 1738/1651,
  36009. bottom: 37/1775
  36010. }
  36011. },
  36012. laughing: {
  36013. height: math.unit(3.75, "feet"),
  36014. name: "Laughing",
  36015. image: {
  36016. source: "./media/characters/huckle/laughing.svg"
  36017. }
  36018. },
  36019. angry: {
  36020. height: math.unit(4.15, "feet"),
  36021. name: "Angry",
  36022. image: {
  36023. source: "./media/characters/huckle/angry.svg"
  36024. }
  36025. },
  36026. },
  36027. [
  36028. {
  36029. name: "Normal",
  36030. height: math.unit(16, "feet"),
  36031. default: true
  36032. },
  36033. {
  36034. name: "Mini Macro",
  36035. height: math.unit(463, "feet")
  36036. },
  36037. {
  36038. name: "Macro",
  36039. height: math.unit(1680, "meters")
  36040. },
  36041. {
  36042. name: "Mega Macro",
  36043. height: math.unit(175, "km")
  36044. },
  36045. {
  36046. name: "Terra Macro",
  36047. height: math.unit(32, "gigameters")
  36048. },
  36049. {
  36050. name: "Multiverse+",
  36051. height: math.unit(2.56e23, "yottameters")
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(6 + 9/12, "feet"),
  36060. weight: math.unit(280, "lb"),
  36061. name: "Front",
  36062. image: {
  36063. source: "./media/characters/candy/front.svg",
  36064. extra: 234/217,
  36065. bottom: 11/245
  36066. }
  36067. },
  36068. },
  36069. [
  36070. {
  36071. name: "Really Small",
  36072. height: math.unit(0.1, "nm")
  36073. },
  36074. {
  36075. name: "Micro",
  36076. height: math.unit(2, "inches")
  36077. },
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(6 + 9/12, "feet"),
  36081. default: true
  36082. },
  36083. {
  36084. name: "Small Macro",
  36085. height: math.unit(69, "feet")
  36086. },
  36087. {
  36088. name: "Macro",
  36089. height: math.unit(160, "feet")
  36090. },
  36091. {
  36092. name: "Megamacro",
  36093. height: math.unit(22000, "miles")
  36094. },
  36095. {
  36096. name: "Gigamacro",
  36097. height: math.unit(50000, "miles")
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(4, "feet"),
  36106. weight: math.unit(90, "lb"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/joey-mcdonald/front.svg",
  36110. extra: 1059/852,
  36111. bottom: 33/1092
  36112. }
  36113. },
  36114. back: {
  36115. height: math.unit(4, "feet"),
  36116. weight: math.unit(90, "lb"),
  36117. name: "Back",
  36118. image: {
  36119. source: "./media/characters/joey-mcdonald/back.svg",
  36120. extra: 1077/879,
  36121. bottom: 5/1082
  36122. }
  36123. },
  36124. frontKobold: {
  36125. height: math.unit(4, "feet"),
  36126. weight: math.unit(100, "lb"),
  36127. name: "Front-kobold",
  36128. image: {
  36129. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36130. extra: 1480/1367,
  36131. bottom: 0/1480
  36132. }
  36133. },
  36134. backKobold: {
  36135. height: math.unit(4, "feet"),
  36136. weight: math.unit(100, "lb"),
  36137. name: "Back-kobold",
  36138. image: {
  36139. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36140. extra: 1449/1361,
  36141. bottom: 0/1449
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(4, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(12 + 6/12, "feet"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/kass-lockheed/front.svg",
  36161. extra: 354/343,
  36162. bottom: 9/363
  36163. }
  36164. },
  36165. back: {
  36166. height: math.unit(12 + 6/12, "feet"),
  36167. name: "Back",
  36168. image: {
  36169. source: "./media/characters/kass-lockheed/back.svg",
  36170. extra: 364/352,
  36171. bottom: 3/367
  36172. }
  36173. },
  36174. dick: {
  36175. height: math.unit(3.12, "feet"),
  36176. name: "Dick",
  36177. image: {
  36178. source: "./media/characters/kass-lockheed/dick.svg"
  36179. }
  36180. },
  36181. head: {
  36182. height: math.unit(2.6, "feet"),
  36183. name: "Head",
  36184. image: {
  36185. source: "./media/characters/kass-lockheed/head.svg"
  36186. }
  36187. },
  36188. bleh: {
  36189. height: math.unit(2.85, "feet"),
  36190. name: "Bleh",
  36191. image: {
  36192. source: "./media/characters/kass-lockheed/bleh.svg"
  36193. }
  36194. },
  36195. smug: {
  36196. height: math.unit(2.85, "feet"),
  36197. name: "Smug",
  36198. image: {
  36199. source: "./media/characters/kass-lockheed/smug.svg"
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(12 + 6/12, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(6 + 2/12, "feet"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/taylor/front.svg",
  36219. extra: 639/495,
  36220. bottom: 12/651
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(6 + 2/12, "feet"),
  36228. default: true
  36229. },
  36230. {
  36231. name: "Big",
  36232. height: math.unit(15, "feet")
  36233. },
  36234. {
  36235. name: "Lorg",
  36236. height: math.unit(80, "feet")
  36237. },
  36238. {
  36239. name: "Too Lorg",
  36240. height: math.unit(120, "feet")
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(15, "feet"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/kaizer/front.svg",
  36252. extra: 1612/1436,
  36253. bottom: 43/1655
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(15, "feet"),
  36261. default: true
  36262. },
  36263. ]
  36264. ))
  36265. characterMakers.push(() => makeCharacter(
  36266. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36267. {
  36268. front: {
  36269. height: math.unit(2, "feet"),
  36270. weight: math.unit(30, "lb"),
  36271. name: "Front",
  36272. image: {
  36273. source: "./media/characters/sandy/front.svg",
  36274. extra: 1439/1307,
  36275. bottom: 194/1633
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Normal",
  36282. height: math.unit(2, "feet"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36289. {
  36290. front: {
  36291. height: math.unit(3, "feet"),
  36292. name: "Front",
  36293. image: {
  36294. source: "./media/characters/mellvi/front.svg",
  36295. extra: 1831/1630,
  36296. bottom: 58/1889
  36297. }
  36298. },
  36299. },
  36300. [
  36301. {
  36302. name: "Normal",
  36303. height: math.unit(3, "feet"),
  36304. default: true
  36305. },
  36306. ]
  36307. ))
  36308. characterMakers.push(() => makeCharacter(
  36309. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36310. {
  36311. front: {
  36312. height: math.unit(5 + 11/12, "feet"),
  36313. weight: math.unit(200, "lb"),
  36314. name: "Front",
  36315. image: {
  36316. source: "./media/characters/shirou/front.svg",
  36317. extra: 2491/2383,
  36318. bottom: 189/2680
  36319. }
  36320. },
  36321. back: {
  36322. height: math.unit(5 + 11/12, "feet"),
  36323. weight: math.unit(200, "lb"),
  36324. name: "Back",
  36325. image: {
  36326. source: "./media/characters/shirou/back.svg",
  36327. extra: 2554/2450,
  36328. bottom: 76/2630
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(5 + 11/12, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(6 + 3/12, "feet"),
  36345. weight: math.unit(177, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/noryu/front.svg",
  36349. extra: 973/885,
  36350. bottom: 10/983
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(6 + 3/12, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36364. {
  36365. front: {
  36366. height: math.unit(5 + 6/12, "feet"),
  36367. weight: math.unit(170, "lb"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/mevolas-rubenido/front.svg",
  36371. extra: 2109/1901,
  36372. bottom: 96/2205
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(5 + 6/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(100, "feet"),
  36389. name: "Front",
  36390. image: {
  36391. source: "./media/characters/dee/front.svg",
  36392. extra: 2153/2036,
  36393. bottom: 59/2212
  36394. }
  36395. },
  36396. back: {
  36397. height: math.unit(100, "feet"),
  36398. name: "Back",
  36399. image: {
  36400. source: "./media/characters/dee/back.svg",
  36401. extra: 2183/2058,
  36402. bottom: 75/2258
  36403. }
  36404. },
  36405. foot: {
  36406. height: math.unit(19.43, "feet"),
  36407. name: "Foot",
  36408. image: {
  36409. source: "./media/characters/dee/foot.svg"
  36410. }
  36411. },
  36412. hoof: {
  36413. height: math.unit(20.6, "feet"),
  36414. name: "Hoof",
  36415. image: {
  36416. source: "./media/characters/dee/hoof.svg"
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Macro",
  36423. height: math.unit(100, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(5 + 6/12, "feet"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/teh/front.svg",
  36436. extra: 1002/847,
  36437. bottom: 62/1064
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(5 + 6/12, "feet"),
  36445. default: true
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36451. {
  36452. side: {
  36453. height: math.unit(6 + 1/12, "feet"),
  36454. weight: math.unit(204, "lb"),
  36455. name: "Side",
  36456. image: {
  36457. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36458. extra: 974/775,
  36459. bottom: 169/1143
  36460. }
  36461. },
  36462. sitting: {
  36463. height: math.unit(6 + 2/12, "feet"),
  36464. weight: math.unit(204, "lb"),
  36465. name: "Sitting",
  36466. image: {
  36467. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36468. extra: 1175/964,
  36469. bottom: 378/1553
  36470. }
  36471. },
  36472. },
  36473. [
  36474. {
  36475. name: "Normal",
  36476. height: math.unit(6 + 1/12, "feet"),
  36477. default: true
  36478. },
  36479. ]
  36480. ))
  36481. characterMakers.push(() => makeCharacter(
  36482. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36483. {
  36484. front: {
  36485. height: math.unit(6, "inches"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/tululi/front.svg",
  36489. extra: 1997/1876,
  36490. bottom: 20/2017
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(6, "inches"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(4 + 1/12, "feet"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/star/front.svg",
  36510. extra: 1493/1189,
  36511. bottom: 48/1541
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(4 + 1/12, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(6 + 3/12, "feet"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/comet/front.svg",
  36531. extra: 1681/1462,
  36532. bottom: 26/1707
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(6 + 3/12, "feet"),
  36540. default: true
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(950, "feet"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/vortex/front.svg",
  36552. extra: 1497/1434,
  36553. bottom: 56/1553
  36554. }
  36555. },
  36556. maw: {
  36557. height: math.unit(285, "feet"),
  36558. name: "Maw",
  36559. image: {
  36560. source: "./media/characters/vortex/maw.svg"
  36561. }
  36562. },
  36563. },
  36564. [
  36565. {
  36566. name: "Macro",
  36567. height: math.unit(950, "feet"),
  36568. default: true
  36569. },
  36570. ]
  36571. ))
  36572. characterMakers.push(() => makeCharacter(
  36573. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36574. {
  36575. front: {
  36576. height: math.unit(600, "feet"),
  36577. weight: math.unit(0.02, "grams"),
  36578. name: "Front",
  36579. image: {
  36580. source: "./media/characters/doodle/front.svg",
  36581. extra: 1578/1413,
  36582. bottom: 37/1615
  36583. }
  36584. },
  36585. },
  36586. [
  36587. {
  36588. name: "Macro",
  36589. height: math.unit(600, "feet"),
  36590. default: true
  36591. },
  36592. ]
  36593. ))
  36594. characterMakers.push(() => makeCharacter(
  36595. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36596. {
  36597. front: {
  36598. height: math.unit(6 + 6/12, "feet"),
  36599. name: "Front",
  36600. image: {
  36601. source: "./media/characters/jai/front.svg",
  36602. extra: 1645/1534,
  36603. bottom: 115/1760
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(6 + 6/12, "feet"),
  36611. default: true
  36612. },
  36613. ]
  36614. ))
  36615. characterMakers.push(() => makeCharacter(
  36616. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36617. {
  36618. front: {
  36619. height: math.unit(6 + 8/12, "feet"),
  36620. name: "Front",
  36621. image: {
  36622. source: "./media/characters/pixel/front.svg",
  36623. extra: 1900/1735,
  36624. bottom: 63/1963
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Normal",
  36631. height: math.unit(6 + 8/12, "feet"),
  36632. default: true
  36633. },
  36634. ]
  36635. ))
  36636. characterMakers.push(() => makeCharacter(
  36637. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36638. {
  36639. back: {
  36640. height: math.unit(4 + 1/12, "feet"),
  36641. weight: math.unit(75, "lb"),
  36642. name: "Back",
  36643. image: {
  36644. source: "./media/characters/rhett/back.svg",
  36645. extra: 930/878,
  36646. bottom: 25/955
  36647. }
  36648. },
  36649. front: {
  36650. height: math.unit(4 + 1/12, "feet"),
  36651. weight: math.unit(75, "lb"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/rhett/front.svg",
  36655. extra: 1682/1586,
  36656. bottom: 92/1774
  36657. }
  36658. },
  36659. },
  36660. [
  36661. {
  36662. name: "Micro",
  36663. height: math.unit(8, "inches")
  36664. },
  36665. {
  36666. name: "Tiny",
  36667. height: math.unit(2, "feet")
  36668. },
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(4 + 1/12, "feet"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(3 + 3/12, "feet"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/penny/front.svg",
  36684. extra: 1406/1311,
  36685. bottom: 26/1432
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(3 + 3/12, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36699. {
  36700. front: {
  36701. height: math.unit(4 + 11/12, "feet"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/monty/front.svg",
  36705. extra: 1479/1209,
  36706. bottom: 0/1479
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(4 + 11/12, "feet"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36720. {
  36721. front: {
  36722. height: math.unit(8 + 4/12, "feet"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/sterling/front.svg",
  36726. extra: 1420/1236,
  36727. bottom: 27/1447
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(8 + 4/12, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36741. {
  36742. front: {
  36743. height: math.unit(15, "feet"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/marble/front.svg",
  36747. extra: 973/937,
  36748. bottom: 32/1005
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Normal",
  36755. height: math.unit(15, "feet"),
  36756. default: true
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36762. {
  36763. front: {
  36764. height: math.unit(3, "inches"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/powder/front.svg",
  36768. extra: 1504/1334,
  36769. bottom: 518/2022
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(3, "inches"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(4 + 5/12, "feet"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/joey-raccoon/front.svg",
  36789. extra: 1273/1197,
  36790. bottom: 0/1273
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(4 + 5/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(8 + 4/12, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/vick/front.svg",
  36810. extra: 2187/2118,
  36811. bottom: 47/2234
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(8 + 4/12, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(5 + 5/12, "feet"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/mitsy/front.svg",
  36831. extra: 1842/1695,
  36832. bottom: 0/1842
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(5 + 5/12, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(6 + 3/12, "feet"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/silvy/front.svg",
  36852. extra: 1995/1836,
  36853. bottom: 225/2220
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(6 + 3/12, "feet"),
  36861. default: true
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36867. {
  36868. front: {
  36869. height: math.unit(3 + 8/12, "feet"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/rodney/front.svg",
  36873. extra: 1956/1747,
  36874. bottom: 31/1987
  36875. }
  36876. },
  36877. frontDressed: {
  36878. height: math.unit(2.9, "feet"),
  36879. name: "Front (Dressed)",
  36880. image: {
  36881. source: "./media/characters/rodney/front-dressed.svg",
  36882. extra: 1382/1241,
  36883. bottom: 385/1767
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(3 + 8/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(5 + 9/12, "feet"),
  36900. weight: math.unit(194, "lbs"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/zakail-sudekai/front.svg",
  36904. extra: 2696/2533,
  36905. bottom: 248/2944
  36906. }
  36907. },
  36908. maw: {
  36909. height: math.unit(1.35, "feet"),
  36910. name: "Maw",
  36911. image: {
  36912. source: "./media/characters/zakail-sudekai/maw.svg"
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(5 + 9/12, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(8 + 4/12, "feet"),
  36929. weight: math.unit(1200, "lb"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/eleanor/front.svg",
  36933. extra: 1226/1192,
  36934. bottom: 52/1278
  36935. }
  36936. },
  36937. back: {
  36938. height: math.unit(8 + 4/12, "feet"),
  36939. weight: math.unit(1200, "lb"),
  36940. name: "Back",
  36941. image: {
  36942. source: "./media/characters/eleanor/back.svg",
  36943. extra: 1242/1184,
  36944. bottom: 60/1302
  36945. }
  36946. },
  36947. head: {
  36948. height: math.unit(2.62, "feet"),
  36949. name: "Head",
  36950. image: {
  36951. source: "./media/characters/eleanor/head.svg"
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(8 + 4/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36965. {
  36966. front: {
  36967. height: math.unit(8 + 4/12, "feet"),
  36968. weight: math.unit(750, "lb"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/tanya/front.svg",
  36972. extra: 1749/1615,
  36973. bottom: 33/1782
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(8 + 4/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(5, "feet"),
  36990. weight: math.unit(225, "lb"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/cindy/front.svg",
  36994. extra: 1320/1250,
  36995. bottom: 42/1362
  36996. }
  36997. },
  36998. frontDressed: {
  36999. height: math.unit(5, "feet"),
  37000. weight: math.unit(225, "lb"),
  37001. name: "Front (Dressed)",
  37002. image: {
  37003. source: "./media/characters/cindy/front-dressed.svg",
  37004. extra: 1320/1250,
  37005. bottom: 42/1362
  37006. }
  37007. },
  37008. back: {
  37009. height: math.unit(5, "feet"),
  37010. weight: math.unit(225, "lb"),
  37011. name: "Back",
  37012. image: {
  37013. source: "./media/characters/cindy/back.svg",
  37014. extra: 1384/1346,
  37015. bottom: 14/1398
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(5, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(6 + 9/12, "feet"),
  37032. weight: math.unit(440, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/wilbur-owen/front.svg",
  37036. extra: 1575/1448,
  37037. bottom: 72/1647
  37038. }
  37039. },
  37040. back: {
  37041. height: math.unit(6 + 9/12, "feet"),
  37042. weight: math.unit(440, "lb"),
  37043. name: "Back",
  37044. image: {
  37045. source: "./media/characters/wilbur-owen/back.svg",
  37046. extra: 1578/1445,
  37047. bottom: 36/1614
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(6 + 9/12, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(6 + 5/12, "feet"),
  37064. weight: math.unit(650, "lb"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/keegan/front.svg",
  37068. extra: 2387/2198,
  37069. bottom: 33/2420
  37070. }
  37071. },
  37072. side: {
  37073. height: math.unit(6 + 5/12, "feet"),
  37074. weight: math.unit(650, "lb"),
  37075. name: "Side",
  37076. image: {
  37077. source: "./media/characters/keegan/side.svg",
  37078. extra: 2390/2202,
  37079. bottom: 47/2437
  37080. }
  37081. },
  37082. back: {
  37083. height: math.unit(6 + 5/12, "feet"),
  37084. weight: math.unit(650, "lb"),
  37085. name: "Back",
  37086. image: {
  37087. source: "./media/characters/keegan/back.svg",
  37088. extra: 2418/2268,
  37089. bottom: 15/2433
  37090. }
  37091. },
  37092. frontSfw: {
  37093. height: math.unit(6 + 5/12, "feet"),
  37094. weight: math.unit(650, "lb"),
  37095. name: "Front (SFW)",
  37096. image: {
  37097. source: "./media/characters/keegan/front-sfw.svg",
  37098. extra: 2387/2198,
  37099. bottom: 33/2420
  37100. }
  37101. },
  37102. beans: {
  37103. height: math.unit(1.85, "feet"),
  37104. name: "Beans",
  37105. image: {
  37106. source: "./media/characters/keegan/beans.svg"
  37107. }
  37108. },
  37109. },
  37110. [
  37111. {
  37112. name: "Normal",
  37113. height: math.unit(6 + 5/12, "feet"),
  37114. default: true
  37115. },
  37116. ]
  37117. ))
  37118. characterMakers.push(() => makeCharacter(
  37119. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37120. {
  37121. front: {
  37122. height: math.unit(9, "feet"),
  37123. name: "Front",
  37124. image: {
  37125. source: "./media/characters/colton/front.svg",
  37126. extra: 1589/1326,
  37127. bottom: 139/1728
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(9, "feet"),
  37135. default: true
  37136. },
  37137. ]
  37138. ))
  37139. characterMakers.push(() => makeCharacter(
  37140. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37141. {
  37142. front: {
  37143. height: math.unit(2 + 9/12, "feet"),
  37144. name: "Front",
  37145. image: {
  37146. source: "./media/characters/bora/front.svg",
  37147. extra: 1265/1250,
  37148. bottom: 24/1289
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(2 + 9/12, "feet"),
  37156. default: true
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37162. {
  37163. front: {
  37164. height: math.unit(8, "feet"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/myu-myu/front.svg",
  37168. extra: 1949/1857,
  37169. bottom: 90/2039
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Normal",
  37176. height: math.unit(8, "feet"),
  37177. default: true
  37178. },
  37179. {
  37180. name: "Big",
  37181. height: math.unit(15, "feet")
  37182. },
  37183. {
  37184. name: "BIG",
  37185. height: math.unit(25, "feet")
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37191. {
  37192. side: {
  37193. height: math.unit(7 + 5/12, "feet"),
  37194. weight: math.unit(2800, "lb"),
  37195. name: "Side",
  37196. image: {
  37197. source: "./media/characters/haloren/side.svg",
  37198. extra: 1793/409,
  37199. bottom: 59/1852
  37200. }
  37201. },
  37202. frontPaw: {
  37203. height: math.unit(2.36, "feet"),
  37204. name: "Front paw",
  37205. image: {
  37206. source: "./media/characters/haloren/front-paw.svg"
  37207. }
  37208. },
  37209. hindPaw: {
  37210. height: math.unit(3.18, "feet"),
  37211. name: "Hind paw",
  37212. image: {
  37213. source: "./media/characters/haloren/hind-paw.svg"
  37214. }
  37215. },
  37216. maw: {
  37217. height: math.unit(5.05, "feet"),
  37218. name: "Maw",
  37219. image: {
  37220. source: "./media/characters/haloren/maw.svg"
  37221. }
  37222. },
  37223. dick: {
  37224. height: math.unit(2.90, "feet"),
  37225. name: "Dick",
  37226. image: {
  37227. source: "./media/characters/haloren/dick.svg"
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(7 + 5/12, "feet"),
  37235. default: true
  37236. },
  37237. {
  37238. name: "Enhanced",
  37239. height: math.unit(14 + 3/12, "feet")
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(171, "cm"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/kimmy/front.svg",
  37251. extra: 1491/1435,
  37252. bottom: 53/1544
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Small",
  37259. height: math.unit(9, "cm")
  37260. },
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(171, "cm"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(8, "feet"),
  37273. weight: math.unit(300, "lb"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/galeboomer/front.svg",
  37277. extra: 4651/4415,
  37278. bottom: 162/4813
  37279. }
  37280. },
  37281. back: {
  37282. height: math.unit(8, "feet"),
  37283. weight: math.unit(300, "lb"),
  37284. name: "Back",
  37285. image: {
  37286. source: "./media/characters/galeboomer/back.svg",
  37287. extra: 4544/4314,
  37288. bottom: 16/4560
  37289. }
  37290. },
  37291. frontAlt: {
  37292. height: math.unit(8, "feet"),
  37293. weight: math.unit(300, "lb"),
  37294. name: "Front (Alt)",
  37295. image: {
  37296. source: "./media/characters/galeboomer/front-alt.svg",
  37297. extra: 4458/4228,
  37298. bottom: 68/4526
  37299. }
  37300. },
  37301. maw: {
  37302. height: math.unit(1.2, "feet"),
  37303. name: "Maw",
  37304. image: {
  37305. source: "./media/characters/galeboomer/maw.svg"
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(8, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(5 + 9/12, "feet"),
  37322. weight: math.unit(120, "lb"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/chyr/front.svg",
  37326. extra: 1323/1254,
  37327. bottom: 63/1386
  37328. }
  37329. },
  37330. back: {
  37331. height: math.unit(5 + 9/12, "feet"),
  37332. weight: math.unit(120, "lb"),
  37333. name: "Back",
  37334. image: {
  37335. source: "./media/characters/chyr/back.svg",
  37336. extra: 1323/1252,
  37337. bottom: 48/1371
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(5 + 9/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(7, "feet"),
  37354. weight: math.unit(310, "lb"),
  37355. name: "Front",
  37356. image: {
  37357. source: "./media/characters/solarus/front.svg",
  37358. extra: 2415/2021,
  37359. bottom: 103/2518
  37360. }
  37361. },
  37362. back: {
  37363. height: math.unit(7, "feet"),
  37364. weight: math.unit(310, "lb"),
  37365. name: "Back",
  37366. image: {
  37367. source: "./media/characters/solarus/back.svg",
  37368. extra: 2463/2089,
  37369. bottom: 79/2542
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(7, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(16, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37389. extra: 1844/1780,
  37390. bottom: 58/1902
  37391. }
  37392. },
  37393. winterCoat: {
  37394. height: math.unit(16, "feet"),
  37395. name: "Winter Coat",
  37396. image: {
  37397. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37398. extra: 1807/1775,
  37399. bottom: 69/1876
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(16, "feet"),
  37407. default: true
  37408. },
  37409. {
  37410. name: "Chicago Size",
  37411. height: math.unit(560, "feet")
  37412. },
  37413. ]
  37414. ))
  37415. characterMakers.push(() => makeCharacter(
  37416. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37417. {
  37418. front: {
  37419. height: math.unit(11 + 6/12, "feet"),
  37420. weight: math.unit(1366, "lb"),
  37421. name: "Front",
  37422. image: {
  37423. source: "./media/characters/lexor/front.svg",
  37424. extra: 1560/1481,
  37425. bottom: 211/1771
  37426. }
  37427. },
  37428. back: {
  37429. height: math.unit(11 + 6/12, "feet"),
  37430. weight: math.unit(1366, "lb"),
  37431. name: "Back",
  37432. image: {
  37433. source: "./media/characters/lexor/back.svg",
  37434. extra: 1614/1533,
  37435. bottom: 76/1690
  37436. }
  37437. },
  37438. maw: {
  37439. height: math.unit(3, "feet"),
  37440. name: "Maw",
  37441. image: {
  37442. source: "./media/characters/lexor/maw.svg"
  37443. }
  37444. },
  37445. dick: {
  37446. height: math.unit(2.59, "feet"),
  37447. name: "Dick",
  37448. image: {
  37449. source: "./media/characters/lexor/dick.svg"
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(11 + 6/12, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(5 + 8/12, "feet"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/magnum/front.svg",
  37469. extra: 942/855,
  37470. bottom: 26/968
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 8/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(18 + 4/12, "feet"),
  37487. weight: math.unit(1500, "kg"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/solas-sharpsman/front.svg",
  37491. extra: 1698/1589,
  37492. bottom: 0/1698
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(18 + 4/12, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(5 + 5/12, "feet"),
  37509. weight: math.unit(180, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/october/front.svg",
  37513. extra: 1800/1650,
  37514. bottom: 0/1800
  37515. }
  37516. },
  37517. frontNsfw: {
  37518. height: math.unit(5 + 5/12, "feet"),
  37519. weight: math.unit(180, "lb"),
  37520. name: "Front (NSFW)",
  37521. image: {
  37522. source: "./media/characters/october/front-nsfw.svg",
  37523. extra: 1392/1307,
  37524. bottom: 42/1434
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(5 + 5/12, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(8 + 6/12, "feet"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/essynkardi/front.svg",
  37544. extra: 1914/1846,
  37545. bottom: 22/1936
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(8 + 6/12, "feet"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(6 + 6/12, "feet"),
  37562. weight: math.unit(7, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/icky/front.svg",
  37566. extra: 813/782,
  37567. bottom: 66/879
  37568. }
  37569. },
  37570. back: {
  37571. height: math.unit(6 + 6/12, "feet"),
  37572. weight: math.unit(7, "lb"),
  37573. name: "Back",
  37574. image: {
  37575. source: "./media/characters/icky/back.svg",
  37576. extra: 754/735,
  37577. bottom: 56/810
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(6 + 6/12, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(15, "feet"),
  37594. name: "Front",
  37595. image: {
  37596. source: "./media/characters/rojas/front.svg",
  37597. extra: 1462/1408,
  37598. bottom: 95/1557
  37599. }
  37600. },
  37601. back: {
  37602. height: math.unit(15, "feet"),
  37603. name: "Back",
  37604. image: {
  37605. source: "./media/characters/rojas/back.svg",
  37606. extra: 1023/954,
  37607. bottom: 28/1051
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(15, "feet"),
  37615. default: true
  37616. },
  37617. ]
  37618. ))
  37619. characterMakers.push(() => makeCharacter(
  37620. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37621. {
  37622. frontHuman: {
  37623. height: math.unit(5 + 7/12, "feet"),
  37624. name: "Front (Human)",
  37625. image: {
  37626. source: "./media/characters/alek-dryagan/front-human.svg",
  37627. extra: 1687/1667,
  37628. bottom: 69/1756
  37629. }
  37630. },
  37631. backHuman: {
  37632. height: math.unit(5 + 7/12, "feet"),
  37633. name: "Back (Human)",
  37634. image: {
  37635. source: "./media/characters/alek-dryagan/back-human.svg",
  37636. extra: 1670/1649,
  37637. bottom: 65/1735
  37638. }
  37639. },
  37640. frontDemi: {
  37641. height: math.unit(65, "feet"),
  37642. name: "Front (Demi)",
  37643. image: {
  37644. source: "./media/characters/alek-dryagan/front-demi.svg",
  37645. extra: 1669/1642,
  37646. bottom: 49/1718
  37647. }
  37648. },
  37649. backDemi: {
  37650. height: math.unit(65, "feet"),
  37651. name: "Back (Demi)",
  37652. image: {
  37653. source: "./media/characters/alek-dryagan/back-demi.svg",
  37654. extra: 1658/1637,
  37655. bottom: 40/1698
  37656. }
  37657. },
  37658. mawHuman: {
  37659. height: math.unit(0.3, "feet"),
  37660. name: "Maw (Human)",
  37661. image: {
  37662. source: "./media/characters/alek-dryagan/maw-human.svg"
  37663. }
  37664. },
  37665. mawDemi: {
  37666. height: math.unit(3.8, "feet"),
  37667. name: "Maw (Demi)",
  37668. image: {
  37669. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(5 + 7/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37683. {
  37684. frontHuman: {
  37685. height: math.unit(5 + 2/12, "feet"),
  37686. name: "Front (Human)",
  37687. image: {
  37688. source: "./media/characters/gen/front-human.svg",
  37689. extra: 1627/1538,
  37690. bottom: 71/1698
  37691. }
  37692. },
  37693. backHuman: {
  37694. height: math.unit(5 + 2/12, "feet"),
  37695. name: "Back (Human)",
  37696. image: {
  37697. source: "./media/characters/gen/back-human.svg",
  37698. extra: 1638/1548,
  37699. bottom: 69/1707
  37700. }
  37701. },
  37702. frontDemi: {
  37703. height: math.unit(5 + 2/12, "feet"),
  37704. name: "Front (Demi)",
  37705. image: {
  37706. source: "./media/characters/gen/front-demi.svg",
  37707. extra: 1627/1538,
  37708. bottom: 71/1698
  37709. }
  37710. },
  37711. backDemi: {
  37712. height: math.unit(5 + 2/12, "feet"),
  37713. name: "Back (Demi)",
  37714. image: {
  37715. source: "./media/characters/gen/back-demi.svg",
  37716. extra: 1638/1548,
  37717. bottom: 69/1707
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(5 + 2/12, "feet"),
  37725. default: true
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37731. {
  37732. frontImp: {
  37733. height: math.unit(1 + 11/12, "feet"),
  37734. name: "Front (Imp)",
  37735. image: {
  37736. source: "./media/characters/max-kobold/front-imp.svg",
  37737. extra: 1238/1134,
  37738. bottom: 81/1319
  37739. }
  37740. },
  37741. backImp: {
  37742. height: math.unit(1 + 11/12, "feet"),
  37743. name: "Back (Imp)",
  37744. image: {
  37745. source: "./media/characters/max-kobold/back-imp.svg",
  37746. extra: 1334/1175,
  37747. bottom: 34/1368
  37748. }
  37749. },
  37750. frontDemi: {
  37751. height: math.unit(5 + 9/12, "feet"),
  37752. name: "Front (Demi)",
  37753. image: {
  37754. source: "./media/characters/max-kobold/front-demi.svg",
  37755. extra: 1715/1685,
  37756. bottom: 54/1769
  37757. }
  37758. },
  37759. backDemi: {
  37760. height: math.unit(5 + 9/12, "feet"),
  37761. name: "Back (Demi)",
  37762. image: {
  37763. source: "./media/characters/max-kobold/back-demi.svg",
  37764. extra: 1752/1729,
  37765. bottom: 41/1793
  37766. }
  37767. },
  37768. handImp: {
  37769. height: math.unit(0.45, "feet"),
  37770. name: "Hand (Imp)",
  37771. image: {
  37772. source: "./media/characters/max-kobold/hand.svg"
  37773. }
  37774. },
  37775. pawImp: {
  37776. height: math.unit(0.46, "feet"),
  37777. name: "Paw (Imp)",
  37778. image: {
  37779. source: "./media/characters/max-kobold/paw.svg"
  37780. }
  37781. },
  37782. handDemi: {
  37783. height: math.unit(0.80, "feet"),
  37784. name: "Hand (Demi)",
  37785. image: {
  37786. source: "./media/characters/max-kobold/hand.svg"
  37787. }
  37788. },
  37789. pawDemi: {
  37790. height: math.unit(1.1, "feet"),
  37791. name: "Paw (Demi)",
  37792. image: {
  37793. source: "./media/characters/max-kobold/paw.svg"
  37794. }
  37795. },
  37796. headImp: {
  37797. height: math.unit(1.33, "feet"),
  37798. name: "Head (Imp)",
  37799. image: {
  37800. source: "./media/characters/max-kobold/head-imp.svg"
  37801. }
  37802. },
  37803. mawImp: {
  37804. height: math.unit(0.75, "feet"),
  37805. name: "Maw (Imp)",
  37806. image: {
  37807. source: "./media/characters/max-kobold/maw-imp.svg"
  37808. }
  37809. },
  37810. mawDemi: {
  37811. height: math.unit(0.42, "feet"),
  37812. name: "Maw (Demi)",
  37813. image: {
  37814. source: "./media/characters/max-kobold/maw-demi.svg"
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(1 + 11/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(7 + 5/12, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/carbon/front.svg",
  37834. extra: 1754/1689,
  37835. bottom: 65/1819
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(7 + 5/12, "feet"),
  37840. name: "Back",
  37841. image: {
  37842. source: "./media/characters/carbon/back.svg",
  37843. extra: 1762/1695,
  37844. bottom: 24/1786
  37845. }
  37846. },
  37847. frontGigantamax: {
  37848. height: math.unit(150, "feet"),
  37849. name: "Front (Gigantamax)",
  37850. image: {
  37851. source: "./media/characters/carbon/front-gigantamax.svg",
  37852. extra: 1826/1669,
  37853. bottom: 59/1885
  37854. }
  37855. },
  37856. backGigantamax: {
  37857. height: math.unit(150, "feet"),
  37858. name: "Back (Gigantamax)",
  37859. image: {
  37860. source: "./media/characters/carbon/back-gigantamax.svg",
  37861. extra: 1796/1653,
  37862. bottom: 53/1849
  37863. }
  37864. },
  37865. maw: {
  37866. height: math.unit(0.48, "feet"),
  37867. name: "Maw",
  37868. image: {
  37869. source: "./media/characters/carbon/maw.svg"
  37870. }
  37871. },
  37872. mawGigantamax: {
  37873. height: math.unit(7.5, "feet"),
  37874. name: "Maw (Gigantamax)",
  37875. image: {
  37876. source: "./media/characters/carbon/maw-gigantamax.svg"
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(7 + 5/12, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(6, "feet"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/maverick/front.svg",
  37896. extra: 1672/1661,
  37897. bottom: 85/1757
  37898. }
  37899. },
  37900. back: {
  37901. height: math.unit(6, "feet"),
  37902. name: "Back",
  37903. image: {
  37904. source: "./media/characters/maverick/back.svg",
  37905. extra: 1642/1631,
  37906. bottom: 38/1680
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(6, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(15, "feet"),
  37923. weight: math.unit(615, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/grockle/front.svg",
  37927. extra: 1535/1427,
  37928. bottom: 56/1591
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(15, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Large",
  37940. height: math.unit(150, "feet")
  37941. },
  37942. {
  37943. name: "Macro",
  37944. height: math.unit(1876, "feet")
  37945. },
  37946. {
  37947. name: "Mega Macro",
  37948. height: math.unit(121940, "feet")
  37949. },
  37950. {
  37951. name: "Giga Macro",
  37952. height: math.unit(750, "km")
  37953. },
  37954. {
  37955. name: "Tera Macro",
  37956. height: math.unit(750000, "km")
  37957. },
  37958. {
  37959. name: "Galactic",
  37960. height: math.unit(1.4e5, "km")
  37961. },
  37962. {
  37963. name: "Godlike",
  37964. height: math.unit(9.8e280, "galaxies")
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(11, "meters"),
  37973. weight: math.unit(20, "tonnes"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/alistair/front.svg",
  37977. extra: 1265/1009,
  37978. bottom: 93/1358
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(11, "meters"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(5 + 8/12, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/haruka/front.svg",
  37998. extra: 2012/1952,
  37999. bottom: 0/2012
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(5 + 8/12, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38013. {
  38014. back: {
  38015. height: math.unit(9, "feet"),
  38016. name: "Back",
  38017. image: {
  38018. source: "./media/characters/vivian-sylveon/back.svg",
  38019. extra: 1853/1714,
  38020. bottom: 0/1853
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(9, "feet"),
  38028. default: true
  38029. },
  38030. {
  38031. name: "Macro",
  38032. height: math.unit(500, "feet")
  38033. },
  38034. {
  38035. name: "Megamacro",
  38036. height: math.unit(600, "miles")
  38037. },
  38038. {
  38039. name: "Gigamacro",
  38040. height: math.unit(30000, "miles")
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38046. {
  38047. anthro: {
  38048. height: math.unit(5 + 10/12, "feet"),
  38049. weight: math.unit(100, "lb"),
  38050. name: "Anthro",
  38051. image: {
  38052. source: "./media/characters/daiki/anthro.svg",
  38053. extra: 1115/1027,
  38054. bottom: 69/1184
  38055. }
  38056. },
  38057. feral: {
  38058. height: math.unit(200, "feet"),
  38059. name: "Feral",
  38060. image: {
  38061. source: "./media/characters/daiki/feral.svg",
  38062. extra: 1256/313,
  38063. bottom: 39/1295
  38064. }
  38065. },
  38066. feralHead: {
  38067. height: math.unit(171, "feet"),
  38068. name: "Feral Head",
  38069. image: {
  38070. source: "./media/characters/daiki/feral-head.svg"
  38071. }
  38072. },
  38073. manaDragon: {
  38074. height: math.unit(170, "meters"),
  38075. name: "Mana-dragon",
  38076. image: {
  38077. source: "./media/characters/daiki/mana-dragon.svg",
  38078. extra: 763/420,
  38079. bottom: 97/860
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(5 + 10/12, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38093. {
  38094. fullyEquippedFront: {
  38095. height: math.unit(3 + 1/12, "feet"),
  38096. weight: math.unit(24, "lb"),
  38097. name: "Fully Equipped (Front)",
  38098. image: {
  38099. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38100. extra: 687/605,
  38101. bottom: 18/705
  38102. }
  38103. },
  38104. fullyEquippedBack: {
  38105. height: math.unit(3 + 1/12, "feet"),
  38106. weight: math.unit(24, "lb"),
  38107. name: "Fully Equipped (Back)",
  38108. image: {
  38109. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38110. extra: 689/590,
  38111. bottom: 18/707
  38112. }
  38113. },
  38114. dailyWear: {
  38115. height: math.unit(3 + 1/12, "feet"),
  38116. weight: math.unit(24, "lb"),
  38117. name: "Daily Wear",
  38118. image: {
  38119. source: "./media/characters/tea-spot/daily-wear.svg",
  38120. extra: 701/620,
  38121. bottom: 21/722
  38122. }
  38123. },
  38124. maidWork: {
  38125. height: math.unit(3 + 1/12, "feet"),
  38126. weight: math.unit(24, "lb"),
  38127. name: "Maid Work",
  38128. image: {
  38129. source: "./media/characters/tea-spot/maid-work.svg",
  38130. extra: 693/609,
  38131. bottom: 15/708
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(3 + 1/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(175, "cm"),
  38148. weight: math.unit(75, "kg"),
  38149. name: "Front",
  38150. image: {
  38151. source: "./media/characters/chee/front.svg",
  38152. extra: 1796/1740,
  38153. bottom: 40/1836
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Micro-Micro",
  38160. height: math.unit(1, "nm")
  38161. },
  38162. {
  38163. name: "Micro-erst",
  38164. height: math.unit(1, "micrometer")
  38165. },
  38166. {
  38167. name: "Micro-er",
  38168. height: math.unit(1, "cm")
  38169. },
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(175, "cm"),
  38173. default: true
  38174. },
  38175. {
  38176. name: "Macro",
  38177. height: math.unit(100, "m")
  38178. },
  38179. {
  38180. name: "Macro-er",
  38181. height: math.unit(1, "km")
  38182. },
  38183. {
  38184. name: "Macro-erst",
  38185. height: math.unit(10, "km")
  38186. },
  38187. {
  38188. name: "Macro-Macro",
  38189. height: math.unit(100, "km")
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(11 + 9/12, "feet"),
  38198. weight: math.unit(935, "lb"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/kingsley/front.svg",
  38202. extra: 1803/1674,
  38203. bottom: 127/1930
  38204. }
  38205. },
  38206. frontNude: {
  38207. height: math.unit(11 + 9/12, "feet"),
  38208. weight: math.unit(935, "lb"),
  38209. name: "Front (Nude)",
  38210. image: {
  38211. source: "./media/characters/kingsley/front-nude.svg",
  38212. extra: 1803/1674,
  38213. bottom: 127/1930
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(11 + 9/12, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38227. {
  38228. side: {
  38229. height: math.unit(9, "feet"),
  38230. name: "Side",
  38231. image: {
  38232. source: "./media/characters/rymel/side.svg",
  38233. extra: 792/469,
  38234. bottom: 121/913
  38235. }
  38236. },
  38237. maw: {
  38238. height: math.unit(2.4, "meters"),
  38239. name: "Maw",
  38240. image: {
  38241. source: "./media/characters/rymel/maw.svg"
  38242. }
  38243. },
  38244. },
  38245. [
  38246. {
  38247. name: "House Drake",
  38248. height: math.unit(2, "feet")
  38249. },
  38250. {
  38251. name: "Reduced",
  38252. height: math.unit(4.5, "feet")
  38253. },
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(9, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(1.74, "meters"),
  38266. weight: math.unit(55, "kg"),
  38267. name: "Front",
  38268. image: {
  38269. source: "./media/characters/rubus/front.svg",
  38270. extra: 1894/1742,
  38271. bottom: 44/1938
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(1.74, "meters"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(5 + 2/12, "feet"),
  38288. weight: math.unit(112, "lb"),
  38289. name: "Front",
  38290. image: {
  38291. source: "./media/characters/cassie-kingston/front.svg",
  38292. extra: 1438/1390,
  38293. bottom: 47/1485
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(5 + 2/12, "feet"),
  38301. default: true
  38302. },
  38303. {
  38304. name: "Macro",
  38305. height: math.unit(128, "feet")
  38306. },
  38307. {
  38308. name: "Megamacro",
  38309. height: math.unit(2.56, "miles")
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(7, "feet"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/fox/front.svg",
  38321. extra: 1798/1703,
  38322. bottom: 55/1853
  38323. }
  38324. },
  38325. back: {
  38326. height: math.unit(7, "feet"),
  38327. name: "Back",
  38328. image: {
  38329. source: "./media/characters/fox/back.svg",
  38330. extra: 1748/1649,
  38331. bottom: 32/1780
  38332. }
  38333. },
  38334. head: {
  38335. height: math.unit(1.95, "feet"),
  38336. name: "Head",
  38337. image: {
  38338. source: "./media/characters/fox/head.svg"
  38339. }
  38340. },
  38341. dick: {
  38342. height: math.unit(1.33, "feet"),
  38343. name: "Dick",
  38344. image: {
  38345. source: "./media/characters/fox/dick.svg"
  38346. }
  38347. },
  38348. foot: {
  38349. height: math.unit(1, "feet"),
  38350. name: "Foot",
  38351. image: {
  38352. source: "./media/characters/fox/foot.svg"
  38353. }
  38354. },
  38355. paw: {
  38356. height: math.unit(0.92, "feet"),
  38357. name: "Paw",
  38358. image: {
  38359. source: "./media/characters/fox/paw.svg"
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Small",
  38366. height: math.unit(3, "inches")
  38367. },
  38368. {
  38369. name: "\"Realistic\"",
  38370. height: math.unit(7, "feet")
  38371. },
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(150, "feet"),
  38375. default: true
  38376. },
  38377. {
  38378. name: "BIG",
  38379. height: math.unit(1200, "feet")
  38380. },
  38381. {
  38382. name: "👀",
  38383. height: math.unit(5, "miles")
  38384. },
  38385. {
  38386. name: "👀👀👀",
  38387. height: math.unit(64, "miles")
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(625, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/asonja-rossa/front.svg",
  38399. extra: 1833/1686,
  38400. bottom: 24/1857
  38401. }
  38402. },
  38403. back: {
  38404. height: math.unit(625, "feet"),
  38405. name: "Back",
  38406. image: {
  38407. source: "./media/characters/asonja-rossa/back.svg",
  38408. extra: 1852/1753,
  38409. bottom: 26/1878
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Macro",
  38416. height: math.unit(625, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38423. {
  38424. side: {
  38425. height: math.unit(8, "feet"),
  38426. name: "Side",
  38427. image: {
  38428. source: "./media/characters/rezukii/side.svg",
  38429. extra: 979/542,
  38430. bottom: 87/1066
  38431. }
  38432. },
  38433. sitting: {
  38434. height: math.unit(14.6, "feet"),
  38435. name: "Sitting",
  38436. image: {
  38437. source: "./media/characters/rezukii/sitting.svg",
  38438. extra: 1023/813,
  38439. bottom: 45/1068
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Tiny",
  38446. height: math.unit(2, "feet")
  38447. },
  38448. {
  38449. name: "Smol",
  38450. height: math.unit(4, "feet")
  38451. },
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(8, "feet"),
  38455. default: true
  38456. },
  38457. {
  38458. name: "Big",
  38459. height: math.unit(12, "feet")
  38460. },
  38461. {
  38462. name: "Macro",
  38463. height: math.unit(30, "feet")
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(14, "feet"),
  38472. weight: math.unit(9.5, "tonnes"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/dawnheart/front.svg",
  38476. extra: 2792/2675,
  38477. bottom: 64/2856
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(14, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38491. {
  38492. front: {
  38493. height: math.unit(1.7, "m"),
  38494. name: "Front",
  38495. image: {
  38496. source: "./media/characters/gladi/front.svg",
  38497. extra: 1460/1362,
  38498. bottom: 19/1479
  38499. }
  38500. },
  38501. back: {
  38502. height: math.unit(1.7, "m"),
  38503. name: "Back",
  38504. image: {
  38505. source: "./media/characters/gladi/back.svg",
  38506. extra: 1459/1357,
  38507. bottom: 12/1471
  38508. }
  38509. },
  38510. feral: {
  38511. height: math.unit(2.05, "m"),
  38512. name: "Feral",
  38513. image: {
  38514. source: "./media/characters/gladi/feral.svg",
  38515. extra: 821/557,
  38516. bottom: 91/912
  38517. }
  38518. },
  38519. },
  38520. [
  38521. {
  38522. name: "Shortest",
  38523. height: math.unit(70, "cm")
  38524. },
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(1.7, "m")
  38528. },
  38529. {
  38530. name: "Macro",
  38531. height: math.unit(10, "m"),
  38532. default: true
  38533. },
  38534. {
  38535. name: "Tallest",
  38536. height: math.unit(200, "m")
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(5 + 7/12, "feet"),
  38545. weight: math.unit(2, "tons"),
  38546. name: "Front",
  38547. image: {
  38548. source: "./media/characters/erdno/front.svg",
  38549. extra: 1234/1129,
  38550. bottom: 35/1269
  38551. }
  38552. },
  38553. angled: {
  38554. height: math.unit(5 + 7/12, "feet"),
  38555. weight: math.unit(2, "tons"),
  38556. name: "Angled",
  38557. image: {
  38558. source: "./media/characters/erdno/angled.svg",
  38559. extra: 1185/1139,
  38560. bottom: 36/1221
  38561. }
  38562. },
  38563. side: {
  38564. height: math.unit(5 + 7/12, "feet"),
  38565. weight: math.unit(2, "tons"),
  38566. name: "Side",
  38567. image: {
  38568. source: "./media/characters/erdno/side.svg",
  38569. extra: 1191/1144,
  38570. bottom: 40/1231
  38571. }
  38572. },
  38573. back: {
  38574. height: math.unit(5 + 7/12, "feet"),
  38575. weight: math.unit(2, "tons"),
  38576. name: "Back",
  38577. image: {
  38578. source: "./media/characters/erdno/back.svg",
  38579. extra: 1202/1146,
  38580. bottom: 17/1219
  38581. }
  38582. },
  38583. frontNsfw: {
  38584. height: math.unit(5 + 7/12, "feet"),
  38585. weight: math.unit(2, "tons"),
  38586. name: "Front (NSFW)",
  38587. image: {
  38588. source: "./media/characters/erdno/front-nsfw.svg",
  38589. extra: 1234/1129,
  38590. bottom: 35/1269
  38591. }
  38592. },
  38593. angledNsfw: {
  38594. height: math.unit(5 + 7/12, "feet"),
  38595. weight: math.unit(2, "tons"),
  38596. name: "Angled (NSFW)",
  38597. image: {
  38598. source: "./media/characters/erdno/angled-nsfw.svg",
  38599. extra: 1185/1139,
  38600. bottom: 36/1221
  38601. }
  38602. },
  38603. sideNsfw: {
  38604. height: math.unit(5 + 7/12, "feet"),
  38605. weight: math.unit(2, "tons"),
  38606. name: "Side (NSFW)",
  38607. image: {
  38608. source: "./media/characters/erdno/side-nsfw.svg",
  38609. extra: 1191/1144,
  38610. bottom: 40/1231
  38611. }
  38612. },
  38613. backNsfw: {
  38614. height: math.unit(5 + 7/12, "feet"),
  38615. weight: math.unit(2, "tons"),
  38616. name: "Back (NSFW)",
  38617. image: {
  38618. source: "./media/characters/erdno/back-nsfw.svg",
  38619. extra: 1202/1146,
  38620. bottom: 17/1219
  38621. }
  38622. },
  38623. frontHyper: {
  38624. height: math.unit(5 + 7/12, "feet"),
  38625. weight: math.unit(2, "tons"),
  38626. name: "Front (Hyper)",
  38627. image: {
  38628. source: "./media/characters/erdno/front-hyper.svg",
  38629. extra: 1298/1136,
  38630. bottom: 35/1333
  38631. }
  38632. },
  38633. },
  38634. [
  38635. {
  38636. name: "Normal",
  38637. height: math.unit(5 + 7/12, "feet"),
  38638. default: true
  38639. },
  38640. {
  38641. name: "Big",
  38642. height: math.unit(5.7, "meters")
  38643. },
  38644. {
  38645. name: "Macro",
  38646. height: math.unit(5.7, "kilometers")
  38647. },
  38648. {
  38649. name: "Megamacro",
  38650. height: math.unit(5.7, "earths")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(5 + 10/12, "feet"),
  38659. weight: math.unit(150, "lb"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/jamie/front.svg",
  38663. extra: 1908/1768,
  38664. bottom: 19/1927
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Minimum",
  38671. height: math.unit(2, "cm")
  38672. },
  38673. {
  38674. name: "Micro",
  38675. height: math.unit(3, "inches")
  38676. },
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(5 + 10/12, "feet"),
  38680. default: true
  38681. },
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(150, "feet")
  38685. },
  38686. {
  38687. name: "Megamacro",
  38688. height: math.unit(10000, "m")
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(2, "meters"),
  38697. weight: math.unit(100, "kg"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/shiron/front.svg",
  38701. extra: 2103/1985,
  38702. bottom: 98/2201
  38703. }
  38704. },
  38705. back: {
  38706. height: math.unit(2, "meters"),
  38707. weight: math.unit(100, "kg"),
  38708. name: "Back",
  38709. image: {
  38710. source: "./media/characters/shiron/back.svg",
  38711. extra: 2110/2015,
  38712. bottom: 89/2199
  38713. }
  38714. },
  38715. hand: {
  38716. height: math.unit(0.96, "feet"),
  38717. name: "Hand",
  38718. image: {
  38719. source: "./media/characters/shiron/hand.svg"
  38720. }
  38721. },
  38722. foot: {
  38723. height: math.unit(1.464, "feet"),
  38724. name: "Foot",
  38725. image: {
  38726. source: "./media/characters/shiron/foot.svg"
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Normal",
  38733. height: math.unit(2, "meters")
  38734. },
  38735. {
  38736. name: "Macro",
  38737. height: math.unit(500, "meters"),
  38738. default: true
  38739. },
  38740. {
  38741. name: "Megamacro",
  38742. height: math.unit(20, "km")
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(6, "feet"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/sam/front.svg",
  38754. extra: 849/826,
  38755. bottom: 19/868
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(6, "feet"),
  38763. default: true
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(8 + 4/12, "feet"),
  38772. weight: math.unit(122, "kg"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/namori-kurogawa/front.svg",
  38776. extra: 1894/1576,
  38777. bottom: 34/1928
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(8 + 4/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(9, "feet"),
  38794. weight: math.unit(621, "lb"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/unmru/front.svg",
  38798. extra: 1853/1747,
  38799. bottom: 73/1926
  38800. }
  38801. },
  38802. side: {
  38803. height: math.unit(9, "feet"),
  38804. weight: math.unit(621, "lb"),
  38805. name: "Side",
  38806. image: {
  38807. source: "./media/characters/unmru/side.svg",
  38808. extra: 1781/1671,
  38809. bottom: 127/1908
  38810. }
  38811. },
  38812. back: {
  38813. height: math.unit(9, "feet"),
  38814. weight: math.unit(621, "lb"),
  38815. name: "Back",
  38816. image: {
  38817. source: "./media/characters/unmru/back.svg",
  38818. extra: 1894/1765,
  38819. bottom: 75/1969
  38820. }
  38821. },
  38822. dick: {
  38823. height: math.unit(3, "feet"),
  38824. weight: math.unit(35, "lb"),
  38825. name: "Dick",
  38826. image: {
  38827. source: "./media/characters/unmru/dick.svg"
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(9, "feet")
  38835. },
  38836. {
  38837. name: "Natural",
  38838. height: math.unit(27, "feet"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Giant",
  38843. height: math.unit(90, "feet")
  38844. },
  38845. {
  38846. name: "Kaiju",
  38847. height: math.unit(270, "feet")
  38848. },
  38849. {
  38850. name: "Macro",
  38851. height: math.unit(900, "feet")
  38852. },
  38853. {
  38854. name: "Macro+",
  38855. height: math.unit(2700, "feet")
  38856. },
  38857. {
  38858. name: "Megamacro",
  38859. height: math.unit(9000, "feet")
  38860. },
  38861. {
  38862. name: "City-Crushing",
  38863. height: math.unit(27000, "feet")
  38864. },
  38865. {
  38866. name: "Mountain-Mashing",
  38867. height: math.unit(90000, "feet")
  38868. },
  38869. {
  38870. name: "Earth-Eclipsing",
  38871. height: math.unit(2.7e8, "feet")
  38872. },
  38873. {
  38874. name: "Sol-Swallowing",
  38875. height: math.unit(9e10, "feet")
  38876. },
  38877. {
  38878. name: "Majoris-Munching",
  38879. height: math.unit(2.7e13, "feet")
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38885. {
  38886. front: {
  38887. height: math.unit(1, "inch"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/squeaks-mouse/front.svg",
  38891. extra: 352/308,
  38892. bottom: 25/377
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Micro",
  38899. height: math.unit(1, "inch"),
  38900. default: true
  38901. },
  38902. ]
  38903. ))
  38904. characterMakers.push(() => makeCharacter(
  38905. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38906. {
  38907. side: {
  38908. height: math.unit(35, "feet"),
  38909. name: "Side",
  38910. image: {
  38911. source: "./media/characters/sayko/side.svg",
  38912. extra: 1697/1021,
  38913. bottom: 82/1779
  38914. }
  38915. },
  38916. head: {
  38917. height: math.unit(16, "feet"),
  38918. name: "Head",
  38919. image: {
  38920. source: "./media/characters/sayko/head.svg"
  38921. }
  38922. },
  38923. forepaw: {
  38924. height: math.unit(7.85, "feet"),
  38925. name: "Forepaw",
  38926. image: {
  38927. source: "./media/characters/sayko/forepaw.svg"
  38928. }
  38929. },
  38930. hindpaw: {
  38931. height: math.unit(8.8, "feet"),
  38932. name: "Hindpaw",
  38933. image: {
  38934. source: "./media/characters/sayko/hindpaw.svg"
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(35, "feet"),
  38942. default: true
  38943. },
  38944. {
  38945. name: "Colossus",
  38946. height: math.unit(100, "meters")
  38947. },
  38948. {
  38949. name: "\"Small\" Deity",
  38950. height: math.unit(1, "km")
  38951. },
  38952. {
  38953. name: "\"Large\" Deity",
  38954. height: math.unit(15, "km")
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38960. {
  38961. front: {
  38962. height: math.unit(6, "feet"),
  38963. weight: math.unit(250, "lb"),
  38964. name: "Front",
  38965. image: {
  38966. source: "./media/characters/mukiro/front.svg",
  38967. extra: 1368/1310,
  38968. bottom: 34/1402
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(6, "feet"),
  38976. default: true
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(12 + 4/12, "feet"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38988. extra: 1346/1311,
  38989. bottom: 65/1411
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Base",
  38996. height: math.unit(12 + 4/12, "feet"),
  38997. default: true
  38998. },
  38999. {
  39000. name: "Macro",
  39001. height: math.unit(150, "feet")
  39002. },
  39003. {
  39004. name: "Mega",
  39005. height: math.unit(2, "miles")
  39006. },
  39007. {
  39008. name: "Demi God",
  39009. height: math.unit(4, "AU")
  39010. },
  39011. {
  39012. name: "God Size",
  39013. height: math.unit(1, "universe")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(3 + 3/12, "feet"),
  39022. weight: math.unit(88, "lb"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/trey/front.svg",
  39026. extra: 1815/1509,
  39027. bottom: 60/1875
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Normal",
  39034. height: math.unit(3 + 3/12, "feet"),
  39035. default: true
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39041. {
  39042. front: {
  39043. height: math.unit(4, "meters"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/adelonda/front.svg",
  39047. extra: 1077/982,
  39048. bottom: 39/1116
  39049. }
  39050. },
  39051. back: {
  39052. height: math.unit(4, "meters"),
  39053. name: "Back",
  39054. image: {
  39055. source: "./media/characters/adelonda/back.svg",
  39056. extra: 1105/1003,
  39057. bottom: 25/1130
  39058. }
  39059. },
  39060. feral: {
  39061. height: math.unit(40/1.5, "meters"),
  39062. name: "Feral",
  39063. image: {
  39064. source: "./media/characters/adelonda/feral.svg",
  39065. extra: 597/271,
  39066. bottom: 387/984
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(4, "meters"),
  39074. default: true
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(8 + 4/12, "feet"),
  39083. weight: math.unit(670, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/acadiel/front.svg",
  39087. extra: 1901/1595,
  39088. bottom: 142/2043
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(8 + 4/12, "feet"),
  39096. default: true
  39097. },
  39098. {
  39099. name: "Macro",
  39100. height: math.unit(200, "feet")
  39101. },
  39102. ]
  39103. ))
  39104. characterMakers.push(() => makeCharacter(
  39105. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39106. {
  39107. front: {
  39108. height: math.unit(6 + 2/12, "feet"),
  39109. weight: math.unit(185, "lb"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/kayne-ein/front.svg",
  39113. extra: 1780/1560,
  39114. bottom: 81/1861
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(6 + 2/12, "feet"),
  39122. default: true
  39123. },
  39124. {
  39125. name: "Transformation Stage",
  39126. height: math.unit(15, "feet")
  39127. },
  39128. {
  39129. name: "Macro",
  39130. height: math.unit(150, "feet")
  39131. },
  39132. {
  39133. name: "Earth's Shadow",
  39134. height: math.unit(6200, "miles")
  39135. },
  39136. {
  39137. name: "Universal Demon",
  39138. height: math.unit(28e9, "parsecs")
  39139. },
  39140. {
  39141. name: "Multiverse God",
  39142. height: math.unit(3, "multiverses")
  39143. },
  39144. ]
  39145. ))
  39146. characterMakers.push(() => makeCharacter(
  39147. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39148. {
  39149. front: {
  39150. height: math.unit(5 + 5/12, "feet"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/fawn/front.svg",
  39154. extra: 1873/1731,
  39155. bottom: 95/1968
  39156. }
  39157. },
  39158. back: {
  39159. height: math.unit(5 + 5/12, "feet"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/fawn/back.svg",
  39163. extra: 1813/1700,
  39164. bottom: 14/1827
  39165. }
  39166. },
  39167. hoof: {
  39168. height: math.unit(1.45, "feet"),
  39169. name: "Hoof",
  39170. image: {
  39171. source: "./media/characters/fawn/hoof.svg"
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(5 + 5/12, "feet"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(2 + 5/12, "feet"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/orion/front.svg",
  39191. extra: 1366/1304,
  39192. bottom: 43/1409
  39193. }
  39194. },
  39195. paw: {
  39196. height: math.unit(0.52, "feet"),
  39197. name: "Paw",
  39198. image: {
  39199. source: "./media/characters/orion/paw.svg"
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(2 + 5/12, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(5 + 10/12, "feet"),
  39216. name: "Front",
  39217. image: {
  39218. source: "./media/characters/vera/front.svg",
  39219. extra: 1680/1575,
  39220. bottom: 49/1729
  39221. }
  39222. },
  39223. back: {
  39224. height: math.unit(5 + 10/12, "feet"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/vera/back.svg",
  39228. extra: 1700/1588,
  39229. bottom: 18/1718
  39230. }
  39231. },
  39232. arcanine: {
  39233. height: math.unit(6 + 8/12, "feet"),
  39234. name: "Arcanine",
  39235. image: {
  39236. source: "./media/characters/vera/arcanine.svg",
  39237. extra: 1590/1511,
  39238. bottom: 71/1661
  39239. }
  39240. },
  39241. maw: {
  39242. height: math.unit(0.82, "feet"),
  39243. name: "Maw",
  39244. image: {
  39245. source: "./media/characters/vera/maw.svg"
  39246. }
  39247. },
  39248. mawArcanine: {
  39249. height: math.unit(0.97, "feet"),
  39250. name: "Maw (Arcanine)",
  39251. image: {
  39252. source: "./media/characters/vera/maw-arcanine.svg"
  39253. }
  39254. },
  39255. paw: {
  39256. height: math.unit(0.75, "feet"),
  39257. name: "Paw",
  39258. image: {
  39259. source: "./media/characters/vera/paw.svg"
  39260. }
  39261. },
  39262. pawprint: {
  39263. height: math.unit(0.52, "feet"),
  39264. name: "Pawprint",
  39265. image: {
  39266. source: "./media/characters/vera/pawprint.svg"
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(5 + 10/12, "feet"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Macro",
  39278. height: math.unit(75, "feet")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(4, "feet"),
  39287. weight: math.unit(40, "lb"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/orvan-rabbit/front.svg",
  39291. extra: 1896/1642,
  39292. bottom: 29/1925
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(4, "feet"),
  39300. default: true
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(6, "feet"),
  39309. weight: math.unit(168, "lb"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/lisa/front.svg",
  39313. extra: 2065/1867,
  39314. bottom: 46/2111
  39315. }
  39316. },
  39317. back: {
  39318. height: math.unit(6, "feet"),
  39319. weight: math.unit(168, "lb"),
  39320. name: "Back",
  39321. image: {
  39322. source: "./media/characters/lisa/back.svg",
  39323. extra: 1982/1838,
  39324. bottom: 29/2011
  39325. }
  39326. },
  39327. maw: {
  39328. height: math.unit(0.81, "feet"),
  39329. name: "Maw",
  39330. image: {
  39331. source: "./media/characters/lisa/maw.svg"
  39332. }
  39333. },
  39334. paw: {
  39335. height: math.unit(0.9, "feet"),
  39336. name: "Paw",
  39337. image: {
  39338. source: "./media/characters/lisa/paw.svg"
  39339. }
  39340. },
  39341. caribousune: {
  39342. height: math.unit(7 + 2/12, "feet"),
  39343. weight: math.unit(268, "lb"),
  39344. name: "Caribousune",
  39345. image: {
  39346. source: "./media/characters/lisa/caribousune.svg",
  39347. extra: 1843/1633,
  39348. bottom: 29/1872
  39349. }
  39350. },
  39351. frontCaribousune: {
  39352. height: math.unit(7 + 2/12, "feet"),
  39353. weight: math.unit(268, "lb"),
  39354. name: "Front (Caribousune)",
  39355. image: {
  39356. source: "./media/characters/lisa/front-caribousune.svg",
  39357. extra: 1818/1638,
  39358. bottom: 52/1870
  39359. }
  39360. },
  39361. sideCaribousune: {
  39362. height: math.unit(7 + 2/12, "feet"),
  39363. weight: math.unit(268, "lb"),
  39364. name: "Side (Caribousune)",
  39365. image: {
  39366. source: "./media/characters/lisa/side-caribousune.svg",
  39367. extra: 1851/1635,
  39368. bottom: 16/1867
  39369. }
  39370. },
  39371. backCaribousune: {
  39372. height: math.unit(7 + 2/12, "feet"),
  39373. weight: math.unit(268, "lb"),
  39374. name: "Back (Caribousune)",
  39375. image: {
  39376. source: "./media/characters/lisa/back-caribousune.svg",
  39377. extra: 1801/1604,
  39378. bottom: 44/1845
  39379. }
  39380. },
  39381. caribou: {
  39382. height: math.unit(7 + 2/12, "feet"),
  39383. weight: math.unit(268, "lb"),
  39384. name: "Caribou",
  39385. image: {
  39386. source: "./media/characters/lisa/caribou.svg",
  39387. extra: 1843/1633,
  39388. bottom: 29/1872
  39389. }
  39390. },
  39391. frontCaribou: {
  39392. height: math.unit(7 + 2/12, "feet"),
  39393. weight: math.unit(268, "lb"),
  39394. name: "Front (Caribou)",
  39395. image: {
  39396. source: "./media/characters/lisa/front-caribou.svg",
  39397. extra: 1818/1638,
  39398. bottom: 52/1870
  39399. }
  39400. },
  39401. sideCaribou: {
  39402. height: math.unit(7 + 2/12, "feet"),
  39403. weight: math.unit(268, "lb"),
  39404. name: "Side (Caribou)",
  39405. image: {
  39406. source: "./media/characters/lisa/side-caribou.svg",
  39407. extra: 1851/1635,
  39408. bottom: 16/1867
  39409. }
  39410. },
  39411. backCaribou: {
  39412. height: math.unit(7 + 2/12, "feet"),
  39413. weight: math.unit(268, "lb"),
  39414. name: "Back (Caribou)",
  39415. image: {
  39416. source: "./media/characters/lisa/back-caribou.svg",
  39417. extra: 1801/1604,
  39418. bottom: 44/1845
  39419. }
  39420. },
  39421. mawCaribou: {
  39422. height: math.unit(1.45, "feet"),
  39423. name: "Maw (Caribou)",
  39424. image: {
  39425. source: "./media/characters/lisa/maw-caribou.svg"
  39426. }
  39427. },
  39428. mawCaribousune: {
  39429. height: math.unit(1.45, "feet"),
  39430. name: "Maw (Caribousune)",
  39431. image: {
  39432. source: "./media/characters/lisa/maw-caribousune.svg"
  39433. }
  39434. },
  39435. pawCaribousune: {
  39436. height: math.unit(1.61, "feet"),
  39437. name: "Paw (Caribou)",
  39438. image: {
  39439. source: "./media/characters/lisa/paw-caribousune.svg"
  39440. }
  39441. },
  39442. },
  39443. [
  39444. {
  39445. name: "Normal",
  39446. height: math.unit(6, "feet")
  39447. },
  39448. {
  39449. name: "God Size",
  39450. height: math.unit(72, "feet"),
  39451. default: true
  39452. },
  39453. {
  39454. name: "Towering",
  39455. height: math.unit(288, "feet")
  39456. },
  39457. {
  39458. name: "City Size",
  39459. height: math.unit(48384, "feet")
  39460. },
  39461. {
  39462. name: "Continental",
  39463. height: math.unit(4200, "miles")
  39464. },
  39465. {
  39466. name: "Planet Eater",
  39467. height: math.unit(42, "earths")
  39468. },
  39469. {
  39470. name: "Star Swallower",
  39471. height: math.unit(42, "solarradii")
  39472. },
  39473. {
  39474. name: "System Swallower",
  39475. height: math.unit(84000, "AU")
  39476. },
  39477. {
  39478. name: "Galaxy Gobbler",
  39479. height: math.unit(42, "galaxies")
  39480. },
  39481. {
  39482. name: "Universe Devourer",
  39483. height: math.unit(42, "universes")
  39484. },
  39485. {
  39486. name: "Multiverse Muncher",
  39487. height: math.unit(42, "multiverses")
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(36, "feet"),
  39496. name: "Front",
  39497. image: {
  39498. source: "./media/characters/shadow-rat/front.svg",
  39499. extra: 1845/1758,
  39500. bottom: 83/1928
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Macro",
  39507. height: math.unit(36, "feet"),
  39508. default: true
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39514. {
  39515. side: {
  39516. height: math.unit(8, "feet"),
  39517. weight: math.unit(2630, "lb"),
  39518. name: "Side",
  39519. image: {
  39520. source: "./media/characters/torallia/side.svg",
  39521. extra: 2164/2021,
  39522. bottom: 371/2535
  39523. }
  39524. },
  39525. },
  39526. [
  39527. {
  39528. name: "Mortal Interaction",
  39529. height: math.unit(8, "feet")
  39530. },
  39531. {
  39532. name: "Natural",
  39533. height: math.unit(24, "feet"),
  39534. default: true
  39535. },
  39536. {
  39537. name: "Giant",
  39538. height: math.unit(80, "feet")
  39539. },
  39540. {
  39541. name: "Kaiju",
  39542. height: math.unit(240, "feet")
  39543. },
  39544. {
  39545. name: "Macro",
  39546. height: math.unit(800, "feet")
  39547. },
  39548. {
  39549. name: "Macro+",
  39550. height: math.unit(2400, "feet")
  39551. },
  39552. {
  39553. name: "Macro++",
  39554. height: math.unit(8000, "feet")
  39555. },
  39556. {
  39557. name: "City-Crushing",
  39558. height: math.unit(24000, "feet")
  39559. },
  39560. {
  39561. name: "Mountain-Mashing",
  39562. height: math.unit(80000, "feet")
  39563. },
  39564. {
  39565. name: "District Demolisher",
  39566. height: math.unit(240000, "feet")
  39567. },
  39568. {
  39569. name: "Tri-County Terror",
  39570. height: math.unit(800000, "feet")
  39571. },
  39572. {
  39573. name: "State Smasher",
  39574. height: math.unit(2.4e6, "feet")
  39575. },
  39576. {
  39577. name: "Nation Nemesis",
  39578. height: math.unit(8e6, "feet")
  39579. },
  39580. {
  39581. name: "Continent Cracker",
  39582. height: math.unit(2.4e7, "feet")
  39583. },
  39584. {
  39585. name: "Planet-Pillaging",
  39586. height: math.unit(8e7, "feet")
  39587. },
  39588. {
  39589. name: "Earth-Eclipsing",
  39590. height: math.unit(2.4e8, "feet")
  39591. },
  39592. {
  39593. name: "Jovian-Jostling",
  39594. height: math.unit(8e8, "feet")
  39595. },
  39596. {
  39597. name: "Gas Giant Gulper",
  39598. height: math.unit(2.4e9, "feet")
  39599. },
  39600. {
  39601. name: "Astral Annihilator",
  39602. height: math.unit(8e9, "feet")
  39603. },
  39604. {
  39605. name: "Celestial Conqueror",
  39606. height: math.unit(2.4e10, "feet")
  39607. },
  39608. {
  39609. name: "Sol-Swallowing",
  39610. height: math.unit(8e10, "feet")
  39611. },
  39612. {
  39613. name: "Hunter of the Heavens",
  39614. height: math.unit(2.4e13, "feet")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(6 + 8/12, "feet"),
  39623. name: "Front",
  39624. image: {
  39625. source: "./media/characters/rebecca-pawlson/front.svg",
  39626. extra: 1737/1596,
  39627. bottom: 107/1844
  39628. }
  39629. },
  39630. back: {
  39631. height: math.unit(6 + 8/12, "feet"),
  39632. name: "Back",
  39633. image: {
  39634. source: "./media/characters/rebecca-pawlson/back.svg",
  39635. extra: 1702/1523,
  39636. bottom: 86/1788
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(6 + 8/12, "feet")
  39644. },
  39645. {
  39646. name: "Mini Macro",
  39647. height: math.unit(10, "feet"),
  39648. default: true
  39649. },
  39650. {
  39651. name: "Macro",
  39652. height: math.unit(100, "feet")
  39653. },
  39654. {
  39655. name: "Mega Macro",
  39656. height: math.unit(2500, "feet")
  39657. },
  39658. {
  39659. name: "Giga Macro",
  39660. height: math.unit(50, "miles")
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39666. {
  39667. front: {
  39668. height: math.unit(7 + 6/12, "feet"),
  39669. weight: math.unit(600, "lb"),
  39670. name: "Front",
  39671. image: {
  39672. source: "./media/characters/moxie-nova/front.svg",
  39673. extra: 1734/1652,
  39674. bottom: 41/1775
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Normal",
  39681. height: math.unit(7 + 6/12, "feet"),
  39682. default: true
  39683. },
  39684. ]
  39685. ))
  39686. characterMakers.push(() => makeCharacter(
  39687. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39688. {
  39689. goat: {
  39690. height: math.unit(4, "feet"),
  39691. weight: math.unit(180, "lb"),
  39692. name: "Goat",
  39693. image: {
  39694. source: "./media/characters/tiffany/goat.svg",
  39695. extra: 1845/1595,
  39696. bottom: 106/1951
  39697. }
  39698. },
  39699. front: {
  39700. height: math.unit(5, "feet"),
  39701. weight: math.unit(150, "lb"),
  39702. name: "Foxcoon",
  39703. image: {
  39704. source: "./media/characters/tiffany/foxcoon.svg",
  39705. extra: 1941/1845,
  39706. bottom: 58/1999
  39707. }
  39708. },
  39709. },
  39710. [
  39711. {
  39712. name: "Normal",
  39713. height: math.unit(5, "feet"),
  39714. default: true
  39715. },
  39716. ]
  39717. ))
  39718. characterMakers.push(() => makeCharacter(
  39719. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39720. {
  39721. front: {
  39722. height: math.unit(8, "feet"),
  39723. weight: math.unit(300, "lb"),
  39724. name: "Front",
  39725. image: {
  39726. source: "./media/characters/raxinath/front.svg",
  39727. extra: 1407/1309,
  39728. bottom: 39/1446
  39729. }
  39730. },
  39731. back: {
  39732. height: math.unit(8, "feet"),
  39733. weight: math.unit(300, "lb"),
  39734. name: "Back",
  39735. image: {
  39736. source: "./media/characters/raxinath/back.svg",
  39737. extra: 1405/1315,
  39738. bottom: 9/1414
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Speck",
  39745. height: math.unit(0.5, "nm")
  39746. },
  39747. {
  39748. name: "Micro",
  39749. height: math.unit(3, "inches")
  39750. },
  39751. {
  39752. name: "Kobold",
  39753. height: math.unit(3, "feet")
  39754. },
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(8, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Giant",
  39762. height: math.unit(50, "feet")
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(1000, "feet")
  39767. },
  39768. {
  39769. name: "Megamacro",
  39770. height: math.unit(1, "mile")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(10, "feet"),
  39779. weight: math.unit(1442, "lb"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/mal-dragon/front.svg",
  39783. extra: 1515/1444,
  39784. bottom: 113/1628
  39785. }
  39786. },
  39787. back: {
  39788. height: math.unit(10, "feet"),
  39789. weight: math.unit(1442, "lb"),
  39790. name: "Back",
  39791. image: {
  39792. source: "./media/characters/mal-dragon/back.svg",
  39793. extra: 1527/1434,
  39794. bottom: 25/1552
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Mortal Interaction",
  39801. height: math.unit(10, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Large",
  39806. height: math.unit(30, "feet")
  39807. },
  39808. {
  39809. name: "Kaiju",
  39810. height: math.unit(300, "feet")
  39811. },
  39812. {
  39813. name: "Megamacro",
  39814. height: math.unit(10000, "feet")
  39815. },
  39816. {
  39817. name: "Continent Cracker",
  39818. height: math.unit(30000000, "feet")
  39819. },
  39820. {
  39821. name: "Sol-Swallowing",
  39822. height: math.unit(1e11, "feet")
  39823. },
  39824. {
  39825. name: "Light Universal",
  39826. height: math.unit(5, "universes")
  39827. },
  39828. {
  39829. name: "Universe Atoms",
  39830. height: math.unit(1.829e9, "universes")
  39831. },
  39832. {
  39833. name: "Light Multiversal",
  39834. height: math.unit(5, "multiverses")
  39835. },
  39836. {
  39837. name: "Multiverse Atoms",
  39838. height: math.unit(1.829e9, "multiverses")
  39839. },
  39840. {
  39841. name: "Fabric of Time",
  39842. height: math.unit(1e262, "multiverses")
  39843. },
  39844. ]
  39845. ))
  39846. characterMakers.push(() => makeCharacter(
  39847. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39848. {
  39849. front: {
  39850. height: math.unit(9, "feet"),
  39851. weight: math.unit(1050, "lb"),
  39852. name: "Front",
  39853. image: {
  39854. source: "./media/characters/tabitha/front.svg",
  39855. extra: 2083/1994,
  39856. bottom: 68/2151
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Baseline",
  39863. height: math.unit(9, "feet"),
  39864. default: true
  39865. },
  39866. {
  39867. name: "Giant",
  39868. height: math.unit(90, "feet")
  39869. },
  39870. {
  39871. name: "Macro",
  39872. height: math.unit(900, "feet")
  39873. },
  39874. {
  39875. name: "Megamacro",
  39876. height: math.unit(9000, "feet")
  39877. },
  39878. {
  39879. name: "City-Crushing",
  39880. height: math.unit(27000, "feet")
  39881. },
  39882. {
  39883. name: "Mountain-Mashing",
  39884. height: math.unit(90000, "feet")
  39885. },
  39886. {
  39887. name: "Nation Nemesis",
  39888. height: math.unit(9e6, "feet")
  39889. },
  39890. {
  39891. name: "Continent Cracker",
  39892. height: math.unit(27e6, "feet")
  39893. },
  39894. {
  39895. name: "Earth-Eclipsing",
  39896. height: math.unit(2.7e8, "feet")
  39897. },
  39898. {
  39899. name: "Gas Giant Gulper",
  39900. height: math.unit(2.7e9, "feet")
  39901. },
  39902. {
  39903. name: "Sol-Swallowing",
  39904. height: math.unit(9e10, "feet")
  39905. },
  39906. {
  39907. name: "Galaxy Gulper",
  39908. height: math.unit(9, "galaxies")
  39909. },
  39910. {
  39911. name: "Cosmos Churner",
  39912. height: math.unit(9, "universes")
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39918. {
  39919. front: {
  39920. height: math.unit(160, "cm"),
  39921. weight: math.unit(55, "kg"),
  39922. name: "Front",
  39923. image: {
  39924. source: "./media/characters/tow/front.svg",
  39925. extra: 1751/1722,
  39926. bottom: 74/1825
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Norm",
  39933. height: math.unit(160, "cm")
  39934. },
  39935. {
  39936. name: "Casual",
  39937. height: math.unit(3200, "m"),
  39938. default: true
  39939. },
  39940. {
  39941. name: "Show-Off",
  39942. height: math.unit(160, "km")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39948. {
  39949. front: {
  39950. height: math.unit(7 + 11/12, "feet"),
  39951. weight: math.unit(342.8, "lb"),
  39952. name: "Front",
  39953. image: {
  39954. source: "./media/characters/vivian-orca-dragon/front.svg",
  39955. extra: 1890/1865,
  39956. bottom: 28/1918
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Micro",
  39963. height: math.unit(5, "inches")
  39964. },
  39965. {
  39966. name: "Normal",
  39967. height: math.unit(7 + 11/12, "feet"),
  39968. default: true
  39969. },
  39970. {
  39971. name: "Macro",
  39972. height: math.unit(395 + 7/12, "feet")
  39973. },
  39974. ]
  39975. ))
  39976. characterMakers.push(() => makeCharacter(
  39977. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39978. {
  39979. side: {
  39980. height: math.unit(10, "feet"),
  39981. weight: math.unit(1442, "lb"),
  39982. name: "Side",
  39983. image: {
  39984. source: "./media/characters/lotherakon/side.svg",
  39985. extra: 1604/1497,
  39986. bottom: 89/1693
  39987. }
  39988. },
  39989. },
  39990. [
  39991. {
  39992. name: "Mortal Interaction",
  39993. height: math.unit(10, "feet")
  39994. },
  39995. {
  39996. name: "Large",
  39997. height: math.unit(30, "feet"),
  39998. default: true
  39999. },
  40000. {
  40001. name: "Giant",
  40002. height: math.unit(100, "feet")
  40003. },
  40004. {
  40005. name: "Kaiju",
  40006. height: math.unit(300, "feet")
  40007. },
  40008. {
  40009. name: "Macro",
  40010. height: math.unit(1000, "feet")
  40011. },
  40012. {
  40013. name: "Macro+",
  40014. height: math.unit(3000, "feet")
  40015. },
  40016. {
  40017. name: "Megamacro",
  40018. height: math.unit(10000, "feet")
  40019. },
  40020. {
  40021. name: "City-Crushing",
  40022. height: math.unit(30000, "feet")
  40023. },
  40024. {
  40025. name: "Continent Cracker",
  40026. height: math.unit(30e6, "feet")
  40027. },
  40028. {
  40029. name: "Earth Eclipsing",
  40030. height: math.unit(3e8, "feet")
  40031. },
  40032. {
  40033. name: "Gas Giant Gulper",
  40034. height: math.unit(3e9, "feet")
  40035. },
  40036. {
  40037. name: "Sol-Swallowing",
  40038. height: math.unit(1e11, "feet")
  40039. },
  40040. {
  40041. name: "System Swallower",
  40042. height: math.unit(3e14, "feet")
  40043. },
  40044. {
  40045. name: "Galaxy Gulper",
  40046. height: math.unit(10, "galaxies")
  40047. },
  40048. {
  40049. name: "Light Universal",
  40050. height: math.unit(5, "universes")
  40051. },
  40052. {
  40053. name: "Universe Palm",
  40054. height: math.unit(20, "universes")
  40055. },
  40056. {
  40057. name: "Light Multiversal",
  40058. height: math.unit(5, "multiverses")
  40059. },
  40060. {
  40061. name: "Multiverse Palm",
  40062. height: math.unit(20, "multiverses")
  40063. },
  40064. {
  40065. name: "Inferno Incarnate",
  40066. height: math.unit(1e7, "multiverses")
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(8, "feet"),
  40075. weight: math.unit(1200, "lb"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/malithee/front.svg",
  40079. extra: 1675/1640,
  40080. bottom: 162/1837
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Mortal Interaction",
  40087. height: math.unit(8, "feet"),
  40088. default: true
  40089. },
  40090. {
  40091. name: "Large",
  40092. height: math.unit(24, "feet")
  40093. },
  40094. {
  40095. name: "Kaiju",
  40096. height: math.unit(240, "feet")
  40097. },
  40098. {
  40099. name: "Megamacro",
  40100. height: math.unit(8000, "feet")
  40101. },
  40102. {
  40103. name: "Continent Cracker",
  40104. height: math.unit(24e6, "feet")
  40105. },
  40106. {
  40107. name: "Earth-Eclipsing",
  40108. height: math.unit(2.4e8, "feet")
  40109. },
  40110. {
  40111. name: "Sol-Swallowing",
  40112. height: math.unit(8e10, "feet")
  40113. },
  40114. {
  40115. name: "Galaxy Gulper",
  40116. height: math.unit(8, "galaxies")
  40117. },
  40118. {
  40119. name: "Light Universal",
  40120. height: math.unit(4, "universes")
  40121. },
  40122. {
  40123. name: "Universe Atoms",
  40124. height: math.unit(1.829e9, "universes")
  40125. },
  40126. {
  40127. name: "Light Multiversal",
  40128. height: math.unit(4, "multiverses")
  40129. },
  40130. {
  40131. name: "Multiverse Atoms",
  40132. height: math.unit(1.829e9, "multiverses")
  40133. },
  40134. {
  40135. name: "Nigh-Omnipresence",
  40136. height: math.unit(8e261, "multiverses")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(10, "feet"),
  40145. weight: math.unit(1500, "lb"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/miles-thestia/front.svg",
  40149. extra: 1812/1727,
  40150. bottom: 86/1898
  40151. }
  40152. },
  40153. back: {
  40154. height: math.unit(10, "feet"),
  40155. weight: math.unit(1500, "lb"),
  40156. name: "Back",
  40157. image: {
  40158. source: "./media/characters/miles-thestia/back.svg",
  40159. extra: 1799/1690,
  40160. bottom: 47/1846
  40161. }
  40162. },
  40163. frontNsfw: {
  40164. height: math.unit(10, "feet"),
  40165. weight: math.unit(1500, "lb"),
  40166. name: "Front (NSFW)",
  40167. image: {
  40168. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40169. extra: 1812/1727,
  40170. bottom: 86/1898
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Mini-Macro",
  40177. height: math.unit(10, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(25, "feet"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/titan-s-wulf/front.svg",
  40190. extra: 1560/1484,
  40191. bottom: 76/1636
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Smallest",
  40198. height: math.unit(25, "feet"),
  40199. default: true
  40200. },
  40201. {
  40202. name: "Normal",
  40203. height: math.unit(200, "feet")
  40204. },
  40205. {
  40206. name: "Macro",
  40207. height: math.unit(200000, "feet")
  40208. },
  40209. {
  40210. name: "Multiversal Original",
  40211. height: math.unit(10000, "multiverses")
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(8, "feet"),
  40220. weight: math.unit(553, "lb"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/tawendeh/front.svg",
  40224. extra: 2365/2268,
  40225. bottom: 83/2448
  40226. }
  40227. },
  40228. frontClothed: {
  40229. height: math.unit(8, "feet"),
  40230. weight: math.unit(553, "lb"),
  40231. name: "Front (Clothed)",
  40232. image: {
  40233. source: "./media/characters/tawendeh/front-clothed.svg",
  40234. extra: 2365/2268,
  40235. bottom: 83/2448
  40236. }
  40237. },
  40238. back: {
  40239. height: math.unit(8, "feet"),
  40240. weight: math.unit(553, "lb"),
  40241. name: "Back",
  40242. image: {
  40243. source: "./media/characters/tawendeh/back.svg",
  40244. extra: 2397/2294,
  40245. bottom: 42/2439
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Mortal Interaction",
  40252. height: math.unit(8, "feet"),
  40253. default: true
  40254. },
  40255. {
  40256. name: "Giant",
  40257. height: math.unit(80, "feet")
  40258. },
  40259. {
  40260. name: "Macro",
  40261. height: math.unit(800, "feet")
  40262. },
  40263. {
  40264. name: "Megamacro",
  40265. height: math.unit(8000, "feet")
  40266. },
  40267. {
  40268. name: "City-Crushing",
  40269. height: math.unit(24000, "feet")
  40270. },
  40271. {
  40272. name: "Mountain-Mashing",
  40273. height: math.unit(80000, "feet")
  40274. },
  40275. {
  40276. name: "Nation Nemesis",
  40277. height: math.unit(8e6, "feet")
  40278. },
  40279. {
  40280. name: "Continent Cracker",
  40281. height: math.unit(24e6, "feet")
  40282. },
  40283. {
  40284. name: "Earth-Eclipsing",
  40285. height: math.unit(2.4e8, "feet")
  40286. },
  40287. {
  40288. name: "Gas Giant Gulper",
  40289. height: math.unit(2.4e9, "feet")
  40290. },
  40291. {
  40292. name: "Sol-Swallowing",
  40293. height: math.unit(8e10, "feet")
  40294. },
  40295. {
  40296. name: "Galaxy Gulper",
  40297. height: math.unit(8, "galaxies")
  40298. },
  40299. {
  40300. name: "Cosmos Churner",
  40301. height: math.unit(8, "universes")
  40302. },
  40303. {
  40304. name: "Omnipotent Otter",
  40305. height: math.unit(80, "universes")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(2.6, "meters"),
  40314. weight: math.unit(900, "kg"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/neesha/front.svg",
  40318. extra: 1803/1653,
  40319. bottom: 128/1931
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(2.6, "meters"),
  40327. default: true
  40328. },
  40329. {
  40330. name: "Macro",
  40331. height: math.unit(50, "meters")
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40337. {
  40338. front: {
  40339. height: math.unit(5, "feet"),
  40340. weight: math.unit(185, "lb"),
  40341. name: "Front",
  40342. image: {
  40343. source: "./media/characters/kyera/front.svg",
  40344. extra: 1875/1790,
  40345. bottom: 96/1971
  40346. }
  40347. },
  40348. },
  40349. [
  40350. {
  40351. name: "Normal",
  40352. height: math.unit(5, "feet"),
  40353. default: true
  40354. },
  40355. ]
  40356. ))
  40357. characterMakers.push(() => makeCharacter(
  40358. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40359. {
  40360. front: {
  40361. height: math.unit(7 + 6/12, "feet"),
  40362. weight: math.unit(540, "lb"),
  40363. name: "Front",
  40364. image: {
  40365. source: "./media/characters/yuko/front.svg",
  40366. extra: 1282/1222,
  40367. bottom: 101/1383
  40368. }
  40369. },
  40370. frontClothed: {
  40371. height: math.unit(7 + 6/12, "feet"),
  40372. weight: math.unit(540, "lb"),
  40373. name: "Front (Clothed)",
  40374. image: {
  40375. source: "./media/characters/yuko/front-clothed.svg",
  40376. extra: 1282/1222,
  40377. bottom: 101/1383
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(7 + 6/12, "feet"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(26 + 9/12, "feet")
  40390. },
  40391. {
  40392. name: "Megamacro",
  40393. height: math.unit(300, "feet")
  40394. },
  40395. {
  40396. name: "Gigamacro",
  40397. height: math.unit(5000, "feet")
  40398. },
  40399. {
  40400. name: "Planetary",
  40401. height: math.unit(10000, "miles")
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(8 + 2/12, "feet"),
  40410. weight: math.unit(600, "lb"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/deam-nitrel/front.svg",
  40414. extra: 1308/1234,
  40415. bottom: 125/1433
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(8 + 2/12, "feet"),
  40423. default: true
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(6.1, "feet"),
  40432. weight: math.unit(180, "lb"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/skyress/front.svg",
  40436. extra: 1045/915,
  40437. bottom: 28/1073
  40438. }
  40439. },
  40440. maw: {
  40441. height: math.unit(1, "feet"),
  40442. name: "Maw",
  40443. image: {
  40444. source: "./media/characters/skyress/maw.svg"
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(6.1, "feet"),
  40452. default: true
  40453. },
  40454. {
  40455. name: "Macro",
  40456. height: math.unit(200, "feet")
  40457. },
  40458. ]
  40459. ))
  40460. characterMakers.push(() => makeCharacter(
  40461. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40462. {
  40463. front: {
  40464. height: math.unit(4 + 2/12, "feet"),
  40465. weight: math.unit(40, "kg"),
  40466. name: "Front",
  40467. image: {
  40468. source: "./media/characters/amethyst-jones/front.svg",
  40469. extra: 1220/1150,
  40470. bottom: 101/1321
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Normal",
  40477. height: math.unit(4 + 2/12, "feet"),
  40478. default: true
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40484. {
  40485. front: {
  40486. height: math.unit(1.7, "m"),
  40487. weight: math.unit(135, "lb"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/jade/front.svg",
  40491. extra: 1818/1767,
  40492. bottom: 32/1850
  40493. }
  40494. },
  40495. back: {
  40496. height: math.unit(1.7, "m"),
  40497. weight: math.unit(135, "lb"),
  40498. name: "Back",
  40499. image: {
  40500. source: "./media/characters/jade/back.svg",
  40501. extra: 1869/1809,
  40502. bottom: 35/1904
  40503. }
  40504. },
  40505. hand: {
  40506. height: math.unit(0.24, "m"),
  40507. name: "Hand",
  40508. image: {
  40509. source: "./media/characters/jade/hand.svg"
  40510. }
  40511. },
  40512. foot: {
  40513. height: math.unit(0.263, "m"),
  40514. name: "Foot",
  40515. image: {
  40516. source: "./media/characters/jade/foot.svg"
  40517. }
  40518. },
  40519. dick: {
  40520. height: math.unit(0.47, "m"),
  40521. name: "Dick",
  40522. image: {
  40523. source: "./media/characters/jade/dick.svg"
  40524. }
  40525. },
  40526. },
  40527. [
  40528. {
  40529. name: "Micro",
  40530. height: math.unit(22, "cm")
  40531. },
  40532. {
  40533. name: "Normal",
  40534. height: math.unit(1.7, "m"),
  40535. default: true
  40536. },
  40537. {
  40538. name: "Macro",
  40539. height: math.unit(152, "m")
  40540. },
  40541. ]
  40542. ))
  40543. characterMakers.push(() => makeCharacter(
  40544. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40545. {
  40546. front: {
  40547. height: math.unit(100, "miles"),
  40548. weight: math.unit(20000, "tons"),
  40549. name: "Front",
  40550. image: {
  40551. source: "./media/characters/cookie/front.svg",
  40552. extra: 1125/1070,
  40553. bottom: 30/1155
  40554. }
  40555. },
  40556. },
  40557. [
  40558. {
  40559. name: "Big",
  40560. height: math.unit(50, "feet")
  40561. },
  40562. {
  40563. name: "Macro",
  40564. height: math.unit(100, "miles"),
  40565. default: true
  40566. },
  40567. {
  40568. name: "Megamacro",
  40569. height: math.unit(90000, "miles")
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(6, "feet"),
  40578. weight: math.unit(145, "lb"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/farzian/front.svg",
  40582. extra: 1902/1693,
  40583. bottom: 108/2010
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Macro",
  40590. height: math.unit(500, "feet"),
  40591. default: true
  40592. },
  40593. ]
  40594. ))
  40595. characterMakers.push(() => makeCharacter(
  40596. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40597. {
  40598. front: {
  40599. height: math.unit(3 + 6/12, "feet"),
  40600. weight: math.unit(50, "lb"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/kimberly-tilson/front.svg",
  40604. extra: 1400/1322,
  40605. bottom: 36/1436
  40606. }
  40607. },
  40608. back: {
  40609. height: math.unit(3 + 6/12, "feet"),
  40610. weight: math.unit(50, "lb"),
  40611. name: "Back",
  40612. image: {
  40613. source: "./media/characters/kimberly-tilson/back.svg",
  40614. extra: 1370/1307,
  40615. bottom: 20/1390
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Normal",
  40622. height: math.unit(3 + 6/12, "feet"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(1148, "feet"),
  40632. weight: math.unit(34057, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/harthos/front.svg",
  40636. extra: 1391/1339,
  40637. bottom: 13/1404
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Macro",
  40644. height: math.unit(1148, "feet"),
  40645. default: true
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(15, "feet"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/hypatia/front.svg",
  40657. extra: 1653/1591,
  40658. bottom: 79/1732
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Normal",
  40665. height: math.unit(15, "feet")
  40666. },
  40667. {
  40668. name: "Small",
  40669. height: math.unit(300, "feet")
  40670. },
  40671. {
  40672. name: "Macro",
  40673. height: math.unit(2500, "feet"),
  40674. default: true
  40675. },
  40676. {
  40677. name: "Mega Macro",
  40678. height: math.unit(1500, "miles")
  40679. },
  40680. {
  40681. name: "Giga Macro",
  40682. height: math.unit(1.5e6, "miles")
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(6, "feet"),
  40691. weight: math.unit(200, "lb"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/wulver/front.svg",
  40695. extra: 1724/1632,
  40696. bottom: 130/1854
  40697. }
  40698. },
  40699. frontNsfw: {
  40700. height: math.unit(6, "feet"),
  40701. weight: math.unit(200, "lb"),
  40702. name: "Front (NSFW)",
  40703. image: {
  40704. source: "./media/characters/wulver/front-nsfw.svg",
  40705. extra: 1724/1632,
  40706. bottom: 130/1854
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Human-Sized",
  40713. height: math.unit(6, "feet")
  40714. },
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(4, "meters"),
  40718. default: true
  40719. },
  40720. {
  40721. name: "Large",
  40722. height: math.unit(6, "m")
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(7, "feet"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/maru/front.svg",
  40734. extra: 1595/1570,
  40735. bottom: 0/1595
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Normal",
  40742. height: math.unit(7, "feet"),
  40743. default: true
  40744. },
  40745. {
  40746. name: "Macro",
  40747. height: math.unit(700, "feet")
  40748. },
  40749. {
  40750. name: "Mega Macro",
  40751. height: math.unit(25, "miles")
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40757. {
  40758. front: {
  40759. height: math.unit(6, "feet"),
  40760. weight: math.unit(170, "lb"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/xenon/front.svg",
  40764. extra: 1376/1305,
  40765. bottom: 56/1432
  40766. }
  40767. },
  40768. back: {
  40769. height: math.unit(6, "feet"),
  40770. weight: math.unit(170, "lb"),
  40771. name: "Back",
  40772. image: {
  40773. source: "./media/characters/xenon/back.svg",
  40774. extra: 1328/1259,
  40775. bottom: 95/1423
  40776. }
  40777. },
  40778. maw: {
  40779. height: math.unit(0.52, "feet"),
  40780. name: "Maw",
  40781. image: {
  40782. source: "./media/characters/xenon/maw.svg"
  40783. }
  40784. },
  40785. hand: {
  40786. height: math.unit(0.82, "feet"),
  40787. name: "Hand",
  40788. image: {
  40789. source: "./media/characters/xenon/hand.svg"
  40790. }
  40791. },
  40792. foot: {
  40793. height: math.unit(1.13, "feet"),
  40794. name: "Foot",
  40795. image: {
  40796. source: "./media/characters/xenon/foot.svg"
  40797. }
  40798. },
  40799. },
  40800. [
  40801. {
  40802. name: "Micro",
  40803. height: math.unit(0.8, "inches")
  40804. },
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(6, "feet")
  40808. },
  40809. {
  40810. name: "Macro",
  40811. height: math.unit(50, "feet"),
  40812. default: true
  40813. },
  40814. {
  40815. name: "Macro+",
  40816. height: math.unit(250, "feet")
  40817. },
  40818. {
  40819. name: "Megamacro",
  40820. height: math.unit(1500, "feet")
  40821. },
  40822. ]
  40823. ))
  40824. characterMakers.push(() => makeCharacter(
  40825. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40826. {
  40827. front: {
  40828. height: math.unit(7 + 5/12, "feet"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/zane/front.svg",
  40832. extra: 1260/1203,
  40833. bottom: 94/1354
  40834. }
  40835. },
  40836. back: {
  40837. height: math.unit(5.05, "feet"),
  40838. name: "Back",
  40839. image: {
  40840. source: "./media/characters/zane/back.svg",
  40841. extra: 893/829,
  40842. bottom: 30/923
  40843. }
  40844. },
  40845. werewolf: {
  40846. height: math.unit(11, "feet"),
  40847. name: "Werewolf",
  40848. image: {
  40849. source: "./media/characters/zane/werewolf.svg",
  40850. extra: 1383/1323,
  40851. bottom: 89/1472
  40852. }
  40853. },
  40854. foot: {
  40855. height: math.unit(1.46, "feet"),
  40856. name: "Foot",
  40857. image: {
  40858. source: "./media/characters/zane/foot.svg"
  40859. }
  40860. },
  40861. footFront: {
  40862. height: math.unit(0.784, "feet"),
  40863. name: "Foot (Front)",
  40864. image: {
  40865. source: "./media/characters/zane/foot-front.svg"
  40866. }
  40867. },
  40868. dick: {
  40869. height: math.unit(1.95, "feet"),
  40870. name: "Dick",
  40871. image: {
  40872. source: "./media/characters/zane/dick.svg"
  40873. }
  40874. },
  40875. dickWerewolf: {
  40876. height: math.unit(3.77, "feet"),
  40877. name: "Dick (Werewolf)",
  40878. image: {
  40879. source: "./media/characters/zane/dick.svg"
  40880. }
  40881. },
  40882. },
  40883. [
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(7 + 5/12, "feet"),
  40887. default: true
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(6 + 2/12, "feet"),
  40896. weight: math.unit(284, "lb"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/benni-desparque/front.svg",
  40900. extra: 1353/1126,
  40901. bottom: 69/1422
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Civilian",
  40908. height: math.unit(6 + 2/12, "feet")
  40909. },
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(98, "feet"),
  40913. default: true
  40914. },
  40915. {
  40916. name: "Kaiju Fighter",
  40917. height: math.unit(268, "feet")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(5, "feet"),
  40926. weight: math.unit(105, "lb"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/maxine/front.svg",
  40930. extra: 1386/1250,
  40931. bottom: 71/1457
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(5, "feet"),
  40939. default: true
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(11 + 7/12, "feet"),
  40948. weight: math.unit(9576, "lb"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/scaly/front.svg",
  40952. extra: 888/867,
  40953. bottom: 36/924
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Normal",
  40960. height: math.unit(11 + 7/12, "feet"),
  40961. default: true
  40962. },
  40963. ]
  40964. ))
  40965. characterMakers.push(() => makeCharacter(
  40966. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40967. {
  40968. front: {
  40969. height: math.unit(6 + 3/12, "feet"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/saelria/front.svg",
  40973. extra: 1243/1138,
  40974. bottom: 46/1289
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Micro",
  40981. height: math.unit(6, "inches"),
  40982. },
  40983. {
  40984. name: "Normal",
  40985. height: math.unit(6 + 3/12, "feet"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "Macro",
  40990. height: math.unit(25, "feet")
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(80, "meters"),
  40999. weight: math.unit(7000, "tonnes"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/tef/front.svg",
  41003. extra: 2036/1991,
  41004. bottom: 54/2090
  41005. }
  41006. },
  41007. back: {
  41008. height: math.unit(80, "meters"),
  41009. weight: math.unit(7000, "tonnes"),
  41010. name: "Back",
  41011. image: {
  41012. source: "./media/characters/tef/back.svg",
  41013. extra: 2036/1991,
  41014. bottom: 54/2090
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Macro",
  41021. height: math.unit(80, "meters"),
  41022. default: true
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(13, "feet"),
  41031. weight: math.unit(6, "tons"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/rover/front.svg",
  41035. extra: 1233/1156,
  41036. bottom: 50/1283
  41037. }
  41038. },
  41039. back: {
  41040. height: math.unit(13, "feet"),
  41041. weight: math.unit(6, "tons"),
  41042. name: "Back",
  41043. image: {
  41044. source: "./media/characters/rover/back.svg",
  41045. extra: 1327/1258,
  41046. bottom: 39/1366
  41047. }
  41048. },
  41049. },
  41050. [
  41051. {
  41052. name: "Normal",
  41053. height: math.unit(13, "feet"),
  41054. default: true
  41055. },
  41056. {
  41057. name: "Macro",
  41058. height: math.unit(1300, "feet")
  41059. },
  41060. {
  41061. name: "Megamacro",
  41062. height: math.unit(1300, "miles")
  41063. },
  41064. {
  41065. name: "Gigamacro",
  41066. height: math.unit(1300000, "miles")
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(6, "feet"),
  41075. weight: math.unit(150, "lb"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/ariz/front.svg",
  41079. extra: 1401/1346,
  41080. bottom: 5/1406
  41081. }
  41082. },
  41083. },
  41084. [
  41085. {
  41086. name: "Normal",
  41087. height: math.unit(10, "feet"),
  41088. default: true
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41094. {
  41095. front: {
  41096. height: math.unit(6, "feet"),
  41097. weight: math.unit(140, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/sigrun/front.svg",
  41101. extra: 1418/1359,
  41102. bottom: 27/1445
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Macro",
  41109. height: math.unit(35, "feet"),
  41110. default: true
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41116. {
  41117. front: {
  41118. height: math.unit(6, "feet"),
  41119. weight: math.unit(150, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/numin/front.svg",
  41123. extra: 1433/1388,
  41124. bottom: 12/1445
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Macro",
  41131. height: math.unit(21.5, "km"),
  41132. default: true
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(6, "feet"),
  41141. weight: math.unit(463, "lb"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/melwa/front.svg",
  41145. extra: 1307/1248,
  41146. bottom: 93/1400
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Macro",
  41153. height: math.unit(50, "meters"),
  41154. default: true
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(325, "feet"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/zorkaiju/front.svg",
  41166. extra: 1955/1814,
  41167. bottom: 40/1995
  41168. }
  41169. },
  41170. frontExtended: {
  41171. height: math.unit(325, "feet"),
  41172. name: "Front (Extended)",
  41173. image: {
  41174. source: "./media/characters/zorkaiju/front-extended.svg",
  41175. extra: 1955/1814,
  41176. bottom: 40/1995
  41177. }
  41178. },
  41179. side: {
  41180. height: math.unit(325, "feet"),
  41181. name: "Side",
  41182. image: {
  41183. source: "./media/characters/zorkaiju/side.svg",
  41184. extra: 1495/1396,
  41185. bottom: 17/1512
  41186. }
  41187. },
  41188. sideExtended: {
  41189. height: math.unit(325, "feet"),
  41190. name: "Side (Extended)",
  41191. image: {
  41192. source: "./media/characters/zorkaiju/side-extended.svg",
  41193. extra: 1495/1396,
  41194. bottom: 17/1512
  41195. }
  41196. },
  41197. back: {
  41198. height: math.unit(325, "feet"),
  41199. name: "Back",
  41200. image: {
  41201. source: "./media/characters/zorkaiju/back.svg",
  41202. extra: 1959/1821,
  41203. bottom: 31/1990
  41204. }
  41205. },
  41206. backExtended: {
  41207. height: math.unit(325, "feet"),
  41208. name: "Back (Extended)",
  41209. image: {
  41210. source: "./media/characters/zorkaiju/back-extended.svg",
  41211. extra: 1959/1821,
  41212. bottom: 31/1990
  41213. }
  41214. },
  41215. hand: {
  41216. height: math.unit(58.4, "feet"),
  41217. name: "Hand",
  41218. image: {
  41219. source: "./media/characters/zorkaiju/hand.svg"
  41220. }
  41221. },
  41222. handExtended: {
  41223. height: math.unit(61.4, "feet"),
  41224. name: "Hand (Extended)",
  41225. image: {
  41226. source: "./media/characters/zorkaiju/hand-extended.svg"
  41227. }
  41228. },
  41229. foot: {
  41230. height: math.unit(95, "feet"),
  41231. name: "Foot",
  41232. image: {
  41233. source: "./media/characters/zorkaiju/foot.svg"
  41234. }
  41235. },
  41236. leftArm: {
  41237. height: math.unit(59, "feet"),
  41238. name: "Left Arm",
  41239. image: {
  41240. source: "./media/characters/zorkaiju/left-arm.svg"
  41241. }
  41242. },
  41243. rightArm: {
  41244. height: math.unit(59, "feet"),
  41245. name: "Right Arm",
  41246. image: {
  41247. source: "./media/characters/zorkaiju/right-arm.svg"
  41248. }
  41249. },
  41250. tail: {
  41251. height: math.unit(104, "feet"),
  41252. name: "Tail",
  41253. image: {
  41254. source: "./media/characters/zorkaiju/tail.svg"
  41255. }
  41256. },
  41257. tailExtended: {
  41258. height: math.unit(104, "feet"),
  41259. name: "Tail (Extended)",
  41260. image: {
  41261. source: "./media/characters/zorkaiju/tail-extended.svg"
  41262. }
  41263. },
  41264. tailBottom: {
  41265. height: math.unit(104, "feet"),
  41266. name: "Tail Bottom",
  41267. image: {
  41268. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41269. }
  41270. },
  41271. crystal: {
  41272. height: math.unit(27.54, "feet"),
  41273. name: "Crystal",
  41274. image: {
  41275. source: "./media/characters/zorkaiju/crystal.svg"
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Kaiju",
  41282. height: math.unit(325, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(6 + 1/12, "feet"),
  41292. weight: math.unit(115, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/bailey-belfry/front.svg",
  41296. extra: 1240/1121,
  41297. bottom: 101/1341
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(6 + 1/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41311. {
  41312. side: {
  41313. height: math.unit(4, "meters"),
  41314. weight: math.unit(250, "kg"),
  41315. name: "Side",
  41316. image: {
  41317. source: "./media/characters/blacky/side.svg",
  41318. extra: 1027/919,
  41319. bottom: 43/1070
  41320. }
  41321. },
  41322. maw: {
  41323. height: math.unit(1, "meters"),
  41324. name: "Maw",
  41325. image: {
  41326. source: "./media/characters/blacky/maw.svg"
  41327. }
  41328. },
  41329. paw: {
  41330. height: math.unit(1, "meters"),
  41331. name: "Paw",
  41332. image: {
  41333. source: "./media/characters/blacky/paw.svg"
  41334. }
  41335. },
  41336. },
  41337. [
  41338. {
  41339. name: "Normal",
  41340. height: math.unit(4, "meters"),
  41341. default: true
  41342. },
  41343. ]
  41344. ))
  41345. characterMakers.push(() => makeCharacter(
  41346. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41347. {
  41348. front: {
  41349. height: math.unit(170, "cm"),
  41350. weight: math.unit(66, "kg"),
  41351. name: "Front",
  41352. image: {
  41353. source: "./media/characters/thux-ei/front.svg",
  41354. extra: 1109/1011,
  41355. bottom: 8/1117
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(170, "cm"),
  41363. default: true
  41364. },
  41365. ]
  41366. ))
  41367. characterMakers.push(() => makeCharacter(
  41368. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41369. {
  41370. front: {
  41371. height: math.unit(5, "feet"),
  41372. weight: math.unit(120, "lb"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/roxanne-voltaire/front.svg",
  41376. extra: 1901/1779,
  41377. bottom: 53/1954
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(5, "feet"),
  41385. default: true
  41386. },
  41387. {
  41388. name: "Giant",
  41389. height: math.unit(50, "feet")
  41390. },
  41391. {
  41392. name: "Titan",
  41393. height: math.unit(500, "feet")
  41394. },
  41395. {
  41396. name: "Macro",
  41397. height: math.unit(5000, "feet")
  41398. },
  41399. {
  41400. name: "Megamacro",
  41401. height: math.unit(50000, "feet")
  41402. },
  41403. {
  41404. name: "Gigamacro",
  41405. height: math.unit(500000, "feet")
  41406. },
  41407. {
  41408. name: "Teramacro",
  41409. height: math.unit(5e6, "feet")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(6 + 2/12, "feet"),
  41418. name: "Front",
  41419. image: {
  41420. source: "./media/characters/squeaks/front.svg",
  41421. extra: 1823/1768,
  41422. bottom: 138/1961
  41423. }
  41424. },
  41425. },
  41426. [
  41427. {
  41428. name: "Micro",
  41429. height: math.unit(0.5, "inches")
  41430. },
  41431. {
  41432. name: "Normal",
  41433. height: math.unit(6 + 2/12, "feet"),
  41434. default: true
  41435. },
  41436. {
  41437. name: "Macro",
  41438. height: math.unit(600, "feet")
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(1.72, "meters"),
  41447. name: "Front",
  41448. image: {
  41449. source: "./media/characters/archinger/front.svg",
  41450. extra: 1861/1675,
  41451. bottom: 125/1986
  41452. }
  41453. },
  41454. back: {
  41455. height: math.unit(1.72, "meters"),
  41456. name: "Back",
  41457. image: {
  41458. source: "./media/characters/archinger/back.svg",
  41459. extra: 1844/1701,
  41460. bottom: 104/1948
  41461. }
  41462. },
  41463. cock: {
  41464. height: math.unit(0.59, "feet"),
  41465. name: "Cock",
  41466. image: {
  41467. source: "./media/characters/archinger/cock.svg"
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(1.72, "meters"),
  41475. default: true
  41476. },
  41477. {
  41478. name: "Macro",
  41479. height: math.unit(84, "meters")
  41480. },
  41481. {
  41482. name: "Macro+",
  41483. height: math.unit(112, "meters")
  41484. },
  41485. {
  41486. name: "Macro++",
  41487. height: math.unit(960, "meters")
  41488. },
  41489. {
  41490. name: "Macro+++",
  41491. height: math.unit(4, "km")
  41492. },
  41493. {
  41494. name: "Macro++++",
  41495. height: math.unit(48, "km")
  41496. },
  41497. {
  41498. name: "Macro+++++",
  41499. height: math.unit(4500, "km")
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(5 + 5/12, "feet"),
  41508. name: "Front",
  41509. image: {
  41510. source: "./media/characters/alsnapz/front.svg",
  41511. extra: 1157/1065,
  41512. bottom: 42/1199
  41513. }
  41514. },
  41515. },
  41516. [
  41517. {
  41518. name: "Normal",
  41519. height: math.unit(5 + 5/12, "feet"),
  41520. default: true
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41526. {
  41527. side: {
  41528. height: math.unit(3.2, "earths"),
  41529. name: "Side",
  41530. image: {
  41531. source: "./media/characters/mag/side.svg",
  41532. extra: 1331/1008,
  41533. bottom: 52/1383
  41534. }
  41535. },
  41536. wing: {
  41537. height: math.unit(1.94, "earths"),
  41538. name: "Wing",
  41539. image: {
  41540. source: "./media/characters/mag/wing.svg"
  41541. }
  41542. },
  41543. dick: {
  41544. height: math.unit(1.8, "earths"),
  41545. name: "Dick",
  41546. image: {
  41547. source: "./media/characters/mag/dick.svg"
  41548. }
  41549. },
  41550. ass: {
  41551. height: math.unit(1.33, "earths"),
  41552. name: "Ass",
  41553. image: {
  41554. source: "./media/characters/mag/ass.svg"
  41555. }
  41556. },
  41557. head: {
  41558. height: math.unit(1.1, "earths"),
  41559. name: "Head",
  41560. image: {
  41561. source: "./media/characters/mag/head.svg"
  41562. }
  41563. },
  41564. maw: {
  41565. height: math.unit(1.62, "earths"),
  41566. name: "Maw",
  41567. image: {
  41568. source: "./media/characters/mag/maw.svg"
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Small",
  41575. height: math.unit(162, "feet")
  41576. },
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(3.2, "earths"),
  41580. default: true
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(512, "feet"),
  41589. weight: math.unit(63509, "tonnes"),
  41590. name: "Front",
  41591. image: {
  41592. source: "./media/characters/vorrel-harroc/front.svg",
  41593. extra: 1075/1063,
  41594. bottom: 62/1137
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Normal",
  41601. height: math.unit(10, "feet")
  41602. },
  41603. {
  41604. name: "Macro",
  41605. height: math.unit(512, "feet"),
  41606. default: true
  41607. },
  41608. {
  41609. name: "Megamacro",
  41610. height: math.unit(256, "miles")
  41611. },
  41612. {
  41613. name: "Gigamacro",
  41614. height: math.unit(4096, "miles")
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41620. {
  41621. side: {
  41622. height: math.unit(50, "feet"),
  41623. name: "Side",
  41624. image: {
  41625. source: "./media/characters/froimar/side.svg",
  41626. extra: 855/638,
  41627. bottom: 99/954
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Macro",
  41634. height: math.unit(50, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(210, "miles"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/timothy/front.svg",
  41647. extra: 1007/943,
  41648. bottom: 62/1069
  41649. }
  41650. },
  41651. frontSkirt: {
  41652. height: math.unit(210, "miles"),
  41653. name: "Front (Skirt)",
  41654. image: {
  41655. source: "./media/characters/timothy/front-skirt.svg",
  41656. extra: 1007/943,
  41657. bottom: 62/1069
  41658. }
  41659. },
  41660. frontCoat: {
  41661. height: math.unit(210, "miles"),
  41662. name: "Front (Coat)",
  41663. image: {
  41664. source: "./media/characters/timothy/front-coat.svg",
  41665. extra: 1007/943,
  41666. bottom: 62/1069
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Macro",
  41673. height: math.unit(210, "miles"),
  41674. default: true
  41675. },
  41676. {
  41677. name: "Megamacro",
  41678. height: math.unit(210000, "miles")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(188, "feet"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/pyotr/front.svg",
  41690. extra: 1912/1826,
  41691. bottom: 18/1930
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(188, "feet"),
  41699. default: true
  41700. },
  41701. {
  41702. name: "Megamacro",
  41703. height: math.unit(8, "miles")
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41709. {
  41710. side: {
  41711. height: math.unit(10, "feet"),
  41712. weight: math.unit(4500, "lb"),
  41713. name: "Side",
  41714. image: {
  41715. source: "./media/characters/ackart/side.svg",
  41716. extra: 1776/1668,
  41717. bottom: 116/1892
  41718. }
  41719. },
  41720. },
  41721. [
  41722. {
  41723. name: "Normal",
  41724. height: math.unit(10, "feet"),
  41725. default: true
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41731. {
  41732. side: {
  41733. height: math.unit(21, "feet"),
  41734. name: "Side",
  41735. image: {
  41736. source: "./media/characters/nolow/side.svg",
  41737. extra: 1484/1434,
  41738. bottom: 85/1569
  41739. }
  41740. },
  41741. sideErect: {
  41742. height: math.unit(21, "feet"),
  41743. name: "Side-erect",
  41744. image: {
  41745. source: "./media/characters/nolow/side-erect.svg",
  41746. extra: 1484/1434,
  41747. bottom: 85/1569
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Regular",
  41754. height: math.unit(12, "feet")
  41755. },
  41756. {
  41757. name: "Big Chee",
  41758. height: math.unit(21, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(7, "feet"),
  41768. weight: math.unit(250, "lb"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/nines/front.svg",
  41772. extra: 1741/1607,
  41773. bottom: 41/1782
  41774. }
  41775. },
  41776. side: {
  41777. height: math.unit(7, "feet"),
  41778. weight: math.unit(250, "lb"),
  41779. name: "Side",
  41780. image: {
  41781. source: "./media/characters/nines/side.svg",
  41782. extra: 1854/1735,
  41783. bottom: 93/1947
  41784. }
  41785. },
  41786. back: {
  41787. height: math.unit(7, "feet"),
  41788. weight: math.unit(250, "lb"),
  41789. name: "Back",
  41790. image: {
  41791. source: "./media/characters/nines/back.svg",
  41792. extra: 1748/1615,
  41793. bottom: 20/1768
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Megamacro",
  41800. height: math.unit(99, "km"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(5 + 10/12, "feet"),
  41810. weight: math.unit(210, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/zenith/front.svg",
  41814. extra: 1531/1452,
  41815. bottom: 198/1729
  41816. }
  41817. },
  41818. back: {
  41819. height: math.unit(5 + 10/12, "feet"),
  41820. weight: math.unit(210, "lb"),
  41821. name: "Back",
  41822. image: {
  41823. source: "./media/characters/zenith/back.svg",
  41824. extra: 1571/1487,
  41825. bottom: 75/1646
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Normal",
  41832. height: math.unit(5 + 10/12, "feet"),
  41833. default: true
  41834. }
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(4, "feet"),
  41842. weight: math.unit(60, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/jasper/front.svg",
  41846. extra: 1450/1379,
  41847. bottom: 19/1469
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(4, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(6 + 5/12, "feet"),
  41864. weight: math.unit(290, "lb"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/tiberius-thyben/front.svg",
  41868. extra: 757/739,
  41869. bottom: 39/796
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Micro",
  41876. height: math.unit(1.5, "inches")
  41877. },
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(6 + 5/12, "feet"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(300, "feet")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(5 + 6/12, "feet"),
  41894. weight: math.unit(60, "kg"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/sabre/front.svg",
  41898. extra: 738/671,
  41899. bottom: 27/765
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Teeny",
  41906. height: math.unit(2, "inches")
  41907. },
  41908. {
  41909. name: "Smol",
  41910. height: math.unit(8, "inches")
  41911. },
  41912. {
  41913. name: "Normal",
  41914. height: math.unit(5 + 6/12, "feet"),
  41915. default: true
  41916. },
  41917. {
  41918. name: "Mini-Macro",
  41919. height: math.unit(15, "feet")
  41920. },
  41921. {
  41922. name: "Macro",
  41923. height: math.unit(50, "feet")
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(6 + 4/12, "feet"),
  41932. weight: math.unit(170, "lb"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/charlie/front.svg",
  41936. extra: 1348/1228,
  41937. bottom: 15/1363
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Macro",
  41944. height: math.unit(1700, "meters"),
  41945. default: true
  41946. },
  41947. {
  41948. name: "MegaMacro",
  41949. height: math.unit(20400, "meters")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(6 + 3/12, "feet"),
  41958. weight: math.unit(185, "lb"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/susan-grant/front.svg",
  41962. extra: 1351/1327,
  41963. bottom: 26/1377
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(6 + 3/12, "feet"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Macro",
  41975. height: math.unit(225, "feet")
  41976. },
  41977. {
  41978. name: "Macro+",
  41979. height: math.unit(900, "feet")
  41980. },
  41981. {
  41982. name: "MegaMacro",
  41983. height: math.unit(14400, "feet")
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(5 + 4/12, "feet"),
  41992. weight: math.unit(110, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/axel-isanov/front.svg",
  41996. extra: 1096/1065,
  41997. bottom: 13/1109
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Normal",
  42004. height: math.unit(5 + 4/12, "feet"),
  42005. default: true
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(9, "feet"),
  42014. weight: math.unit(467, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/necahual/front.svg",
  42018. extra: 920/873,
  42019. bottom: 26/946
  42020. }
  42021. },
  42022. back: {
  42023. height: math.unit(9, "feet"),
  42024. weight: math.unit(467, "lb"),
  42025. name: "Back",
  42026. image: {
  42027. source: "./media/characters/necahual/back.svg",
  42028. extra: 930/884,
  42029. bottom: 16/946
  42030. }
  42031. },
  42032. frontUnderwear: {
  42033. height: math.unit(9, "feet"),
  42034. weight: math.unit(467, "lb"),
  42035. name: "Front (Underwear)",
  42036. image: {
  42037. source: "./media/characters/necahual/front-underwear.svg",
  42038. extra: 920/873,
  42039. bottom: 26/946
  42040. }
  42041. },
  42042. frontDressed: {
  42043. height: math.unit(9, "feet"),
  42044. weight: math.unit(467, "lb"),
  42045. name: "Front (Dressed)",
  42046. image: {
  42047. source: "./media/characters/necahual/front-dressed.svg",
  42048. extra: 920/873,
  42049. bottom: 26/946
  42050. }
  42051. },
  42052. },
  42053. [
  42054. {
  42055. name: "Comprsesed",
  42056. height: math.unit(9, "feet")
  42057. },
  42058. {
  42059. name: "Natural",
  42060. height: math.unit(15, "feet"),
  42061. default: true
  42062. },
  42063. {
  42064. name: "Boosted",
  42065. height: math.unit(50, "feet")
  42066. },
  42067. {
  42068. name: "Boosted+",
  42069. height: math.unit(150, "feet")
  42070. },
  42071. {
  42072. name: "Max",
  42073. height: math.unit(500, "feet")
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(22 + 1/12, "feet"),
  42082. weight: math.unit(3200, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/theo-acacia/front.svg",
  42086. extra: 1796/1741,
  42087. bottom: 83/1879
  42088. }
  42089. },
  42090. frontUnderwear: {
  42091. height: math.unit(22 + 1/12, "feet"),
  42092. weight: math.unit(3200, "lb"),
  42093. name: "Front (Underwear)",
  42094. image: {
  42095. source: "./media/characters/theo-acacia/front-underwear.svg",
  42096. extra: 1796/1741,
  42097. bottom: 83/1879
  42098. }
  42099. },
  42100. frontNude: {
  42101. height: math.unit(22 + 1/12, "feet"),
  42102. weight: math.unit(3200, "lb"),
  42103. name: "Front (Nude)",
  42104. image: {
  42105. source: "./media/characters/theo-acacia/front-nude.svg",
  42106. extra: 1796/1741,
  42107. bottom: 83/1879
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Normal",
  42114. height: math.unit(22 + 1/12, "feet"),
  42115. default: true
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(20, "feet"),
  42124. name: "Front",
  42125. image: {
  42126. source: "./media/characters/astra/front.svg",
  42127. extra: 1850/1714,
  42128. bottom: 106/1956
  42129. }
  42130. },
  42131. frontUndressed: {
  42132. height: math.unit(20, "feet"),
  42133. name: "Front (Undressed)",
  42134. image: {
  42135. source: "./media/characters/astra/front-undressed.svg",
  42136. extra: 1926/1749,
  42137. bottom: 0/1926
  42138. }
  42139. },
  42140. hand: {
  42141. height: math.unit(1.53, "feet"),
  42142. name: "Hand",
  42143. image: {
  42144. source: "./media/characters/astra/hand.svg"
  42145. }
  42146. },
  42147. paw: {
  42148. height: math.unit(1.53, "feet"),
  42149. name: "Paw",
  42150. image: {
  42151. source: "./media/characters/astra/paw.svg"
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Smallest",
  42158. height: math.unit(20, "feet")
  42159. },
  42160. {
  42161. name: "Normal",
  42162. height: math.unit(1e9, "miles"),
  42163. default: true
  42164. },
  42165. {
  42166. name: "Larger",
  42167. height: math.unit(5, "multiverses")
  42168. },
  42169. {
  42170. name: "Largest",
  42171. height: math.unit(1e9, "multiverses")
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42177. {
  42178. front: {
  42179. height: math.unit(8, "feet"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/breanna/front.svg",
  42183. extra: 1912/1632,
  42184. bottom: 33/1945
  42185. }
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Smallest",
  42191. height: math.unit(8, "feet")
  42192. },
  42193. {
  42194. name: "Normal",
  42195. height: math.unit(1, "mile"),
  42196. default: true
  42197. },
  42198. {
  42199. name: "Maximum",
  42200. height: math.unit(1500000000000, "lightyears")
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(5 + 11/12, "feet"),
  42209. weight: math.unit(155, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/cai/front.svg",
  42213. extra: 1823/1702,
  42214. bottom: 32/1855
  42215. }
  42216. },
  42217. back: {
  42218. height: math.unit(5 + 11/12, "feet"),
  42219. weight: math.unit(155, "lb"),
  42220. name: "Back",
  42221. image: {
  42222. source: "./media/characters/cai/back.svg",
  42223. extra: 1809/1708,
  42224. bottom: 31/1840
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Normal",
  42231. height: math.unit(5 + 11/12, "feet"),
  42232. default: true
  42233. },
  42234. {
  42235. name: "Big",
  42236. height: math.unit(15, "feet")
  42237. },
  42238. {
  42239. name: "Macro",
  42240. height: math.unit(200, "feet")
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(5 + 6/12, "feet"),
  42249. weight: math.unit(160, "lb"),
  42250. name: "Front",
  42251. image: {
  42252. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42253. extra: 1227/1174,
  42254. bottom: 37/1264
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Macro",
  42261. height: math.unit(444, "meters"),
  42262. default: true
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42268. {
  42269. front: {
  42270. height: math.unit(18 + 7/12, "feet"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/rex/front.svg",
  42274. extra: 1941/1807,
  42275. bottom: 66/2007
  42276. }
  42277. },
  42278. back: {
  42279. height: math.unit(18 + 7/12, "feet"),
  42280. name: "Back",
  42281. image: {
  42282. source: "./media/characters/rex/back.svg",
  42283. extra: 1937/1822,
  42284. bottom: 42/1979
  42285. }
  42286. },
  42287. boot: {
  42288. height: math.unit(3.45, "feet"),
  42289. name: "Boot",
  42290. image: {
  42291. source: "./media/characters/rex/boot.svg"
  42292. }
  42293. },
  42294. paw: {
  42295. height: math.unit(4.17, "feet"),
  42296. name: "Paw",
  42297. image: {
  42298. source: "./media/characters/rex/paw.svg"
  42299. }
  42300. },
  42301. head: {
  42302. height: math.unit(6.728, "feet"),
  42303. name: "Head",
  42304. image: {
  42305. source: "./media/characters/rex/head.svg"
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Nano",
  42312. height: math.unit(18 + 7/12, "feet")
  42313. },
  42314. {
  42315. name: "Micro",
  42316. height: math.unit(1.5, "megameters")
  42317. },
  42318. {
  42319. name: "Normal",
  42320. height: math.unit(440, "megameters"),
  42321. default: true
  42322. },
  42323. {
  42324. name: "Macro",
  42325. height: math.unit(2.5, "gigameters")
  42326. },
  42327. {
  42328. name: "Gigamacro",
  42329. height: math.unit(2, "galaxies")
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42335. {
  42336. side: {
  42337. height: math.unit(32, "feet"),
  42338. weight: math.unit(250000, "lb"),
  42339. name: "Side",
  42340. image: {
  42341. source: "./media/characters/silverwing/side.svg",
  42342. extra: 1100/1019,
  42343. bottom: 204/1304
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(32, "feet"),
  42351. default: true
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6 + 6/12, "feet"),
  42360. weight: math.unit(350, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/tristan-hawthorne/front.svg",
  42364. extra: 1159/1124,
  42365. bottom: 37/1196
  42366. },
  42367. form: "labrador",
  42368. default: true
  42369. },
  42370. skunkFront: {
  42371. height: math.unit(4 + 6/12, "feet"),
  42372. weight: math.unit(120, "lb"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42376. extra: 1609/1551,
  42377. bottom: 169/1778
  42378. },
  42379. form: "skunk",
  42380. default: true
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(6 + 6/12, "feet"),
  42387. form: "labrador",
  42388. default: true
  42389. },
  42390. {
  42391. name: "Normal",
  42392. height: math.unit(4 + 6/12, "feet"),
  42393. form: "skunk",
  42394. default: true
  42395. },
  42396. ],
  42397. {
  42398. "labrador": {
  42399. name: "Labrador",
  42400. default: true
  42401. },
  42402. "skunk": {
  42403. name: "Skunk"
  42404. }
  42405. }
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(5 + 11/12, "feet"),
  42412. weight: math.unit(190, "lb"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/mizu/front.svg",
  42416. extra: 1988/1788,
  42417. bottom: 14/2002
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(5 + 11/12, "feet"),
  42425. default: true
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(1.7, "feet"),
  42434. weight: math.unit(50, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/dechroma/front.svg",
  42438. extra: 1095/859,
  42439. bottom: 64/1159
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(1.7, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42453. {
  42454. side: {
  42455. height: math.unit(30, "feet"),
  42456. name: "Side",
  42457. image: {
  42458. source: "./media/characters/veluren-thanazel/side.svg",
  42459. extra: 1611/633,
  42460. bottom: 118/1729
  42461. }
  42462. },
  42463. front: {
  42464. height: math.unit(30, "feet"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/veluren-thanazel/front.svg",
  42468. extra: 1486/636,
  42469. bottom: 238/1724
  42470. }
  42471. },
  42472. head: {
  42473. height: math.unit(21.4, "feet"),
  42474. name: "Head",
  42475. image: {
  42476. source: "./media/characters/veluren-thanazel/head.svg"
  42477. }
  42478. },
  42479. genitals: {
  42480. height: math.unit(19.4, "feet"),
  42481. name: "Genitals",
  42482. image: {
  42483. source: "./media/characters/veluren-thanazel/genitals.svg"
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Social",
  42490. height: math.unit(6, "feet")
  42491. },
  42492. {
  42493. name: "Play",
  42494. height: math.unit(12, "feet")
  42495. },
  42496. {
  42497. name: "True",
  42498. height: math.unit(30, "feet"),
  42499. default: true
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(7 + 6/12, "feet"),
  42508. weight: math.unit(500, "kg"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/arcturas/front.svg",
  42512. extra: 1700/1500,
  42513. bottom: 145/1845
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(7 + 6/12, "feet"),
  42521. default: true
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42527. {
  42528. side: {
  42529. height: math.unit(6, "feet"),
  42530. weight: math.unit(2, "tons"),
  42531. name: "Side",
  42532. image: {
  42533. source: "./media/characters/vitaen/side.svg",
  42534. extra: 1157/617,
  42535. bottom: 122/1279
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(6, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(19, "feet"),
  42552. name: "Front",
  42553. image: {
  42554. source: "./media/characters/fia-dreamweaver/front.svg",
  42555. extra: 1630/1504,
  42556. bottom: 25/1655
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Normal",
  42563. height: math.unit(19, "feet"),
  42564. default: true
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(5 + 4/12, "feet"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/artan/front.svg",
  42576. extra: 1618/1535,
  42577. bottom: 46/1664
  42578. }
  42579. },
  42580. back: {
  42581. height: math.unit(5 + 4/12, "feet"),
  42582. name: "Back",
  42583. image: {
  42584. source: "./media/characters/artan/back.svg",
  42585. extra: 1618/1543,
  42586. bottom: 31/1649
  42587. }
  42588. },
  42589. },
  42590. [
  42591. {
  42592. name: "Normal",
  42593. height: math.unit(5 + 4/12, "feet"),
  42594. default: true
  42595. },
  42596. ]
  42597. ))
  42598. characterMakers.push(() => makeCharacter(
  42599. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42600. {
  42601. side: {
  42602. height: math.unit(182, "cm"),
  42603. weight: math.unit(1000, "lb"),
  42604. name: "Side",
  42605. image: {
  42606. source: "./media/characters/silver-dragon/side.svg",
  42607. extra: 710/287,
  42608. bottom: 88/798
  42609. }
  42610. },
  42611. },
  42612. [
  42613. {
  42614. name: "Normal",
  42615. height: math.unit(182, "cm"),
  42616. default: true
  42617. },
  42618. ]
  42619. ))
  42620. characterMakers.push(() => makeCharacter(
  42621. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42622. {
  42623. side: {
  42624. height: math.unit(6 + 6/12, "feet"),
  42625. weight: math.unit(1.5, "tons"),
  42626. name: "Side",
  42627. image: {
  42628. source: "./media/characters/zephyr/side.svg",
  42629. extra: 1433/586,
  42630. bottom: 109/1542
  42631. }
  42632. },
  42633. },
  42634. [
  42635. {
  42636. name: "Normal",
  42637. height: math.unit(6 + 6/12, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42644. {
  42645. side: {
  42646. height: math.unit(1, "feet"),
  42647. name: "Side",
  42648. image: {
  42649. source: "./media/characters/vixye/side.svg",
  42650. extra: 632/541,
  42651. bottom: 0/632
  42652. }
  42653. },
  42654. },
  42655. [
  42656. {
  42657. name: "Normal",
  42658. height: math.unit(1, "feet"),
  42659. default: true
  42660. },
  42661. {
  42662. name: "True",
  42663. height: math.unit(1e15, "multiverses")
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42669. {
  42670. front: {
  42671. height: math.unit(8 + 2/12, "feet"),
  42672. weight: math.unit(650, "lb"),
  42673. name: "Front",
  42674. image: {
  42675. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42676. extra: 1174/1137,
  42677. bottom: 82/1256
  42678. }
  42679. },
  42680. back: {
  42681. height: math.unit(8 + 2/12, "feet"),
  42682. weight: math.unit(650, "lb"),
  42683. name: "Back",
  42684. image: {
  42685. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42686. extra: 1204/1157,
  42687. bottom: 46/1250
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Wildform",
  42694. height: math.unit(8 + 2/12, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(18, "feet"),
  42704. name: "Front",
  42705. image: {
  42706. source: "./media/characters/cyphin/front.svg",
  42707. extra: 970/886,
  42708. bottom: 42/1012
  42709. }
  42710. },
  42711. back: {
  42712. height: math.unit(18, "feet"),
  42713. name: "Back",
  42714. image: {
  42715. source: "./media/characters/cyphin/back.svg",
  42716. extra: 1009/894,
  42717. bottom: 24/1033
  42718. }
  42719. },
  42720. head: {
  42721. height: math.unit(5.05, "feet"),
  42722. name: "Head",
  42723. image: {
  42724. source: "./media/characters/cyphin/head.svg"
  42725. }
  42726. },
  42727. tailbud: {
  42728. height: math.unit(5, "feet"),
  42729. name: "Tailbud",
  42730. image: {
  42731. source: "./media/characters/cyphin/tailbud.svg"
  42732. }
  42733. },
  42734. },
  42735. [
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42740. {
  42741. side: {
  42742. height: math.unit(10, "feet"),
  42743. weight: math.unit(6, "tons"),
  42744. name: "Side",
  42745. image: {
  42746. source: "./media/characters/raijin/side.svg",
  42747. extra: 1529/613,
  42748. bottom: 337/1866
  42749. }
  42750. },
  42751. },
  42752. [
  42753. {
  42754. name: "Normal",
  42755. height: math.unit(10, "feet"),
  42756. default: true
  42757. },
  42758. ]
  42759. ))
  42760. characterMakers.push(() => makeCharacter(
  42761. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42762. {
  42763. side: {
  42764. height: math.unit(9, "feet"),
  42765. name: "Side",
  42766. image: {
  42767. source: "./media/characters/nilghais/side.svg",
  42768. extra: 1047/744,
  42769. bottom: 91/1138
  42770. }
  42771. },
  42772. head: {
  42773. height: math.unit(3.14, "feet"),
  42774. name: "Head",
  42775. image: {
  42776. source: "./media/characters/nilghais/head.svg"
  42777. }
  42778. },
  42779. mouth: {
  42780. height: math.unit(4.6, "feet"),
  42781. name: "Mouth",
  42782. image: {
  42783. source: "./media/characters/nilghais/mouth.svg"
  42784. }
  42785. },
  42786. wings: {
  42787. height: math.unit(24, "feet"),
  42788. name: "Wings",
  42789. image: {
  42790. source: "./media/characters/nilghais/wings.svg"
  42791. }
  42792. },
  42793. ass: {
  42794. height: math.unit(6.12, "feet"),
  42795. name: "Ass",
  42796. image: {
  42797. source: "./media/characters/nilghais/ass.svg"
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Normal",
  42804. height: math.unit(9, "feet"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42811. {
  42812. regular: {
  42813. height: math.unit(16 + 2/12, "feet"),
  42814. weight: math.unit(2300, "lb"),
  42815. name: "Regular",
  42816. image: {
  42817. source: "./media/characters/zolgar/regular.svg",
  42818. extra: 1246/1004,
  42819. bottom: 124/1370
  42820. }
  42821. },
  42822. boxers: {
  42823. height: math.unit(16 + 2/12, "feet"),
  42824. weight: math.unit(2300, "lb"),
  42825. name: "Boxers",
  42826. image: {
  42827. source: "./media/characters/zolgar/boxers.svg",
  42828. extra: 1246/1004,
  42829. bottom: 124/1370
  42830. }
  42831. },
  42832. armored: {
  42833. height: math.unit(16 + 2/12, "feet"),
  42834. weight: math.unit(2300, "lb"),
  42835. name: "Armored",
  42836. image: {
  42837. source: "./media/characters/zolgar/armored.svg",
  42838. extra: 1246/1004,
  42839. bottom: 124/1370
  42840. }
  42841. },
  42842. goth: {
  42843. height: math.unit(16 + 2/12, "feet"),
  42844. weight: math.unit(2300, "lb"),
  42845. name: "Goth",
  42846. image: {
  42847. source: "./media/characters/zolgar/goth.svg",
  42848. extra: 1246/1004,
  42849. bottom: 124/1370
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Shrunken Down",
  42856. height: math.unit(9 + 2/12, "feet")
  42857. },
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(16 + 2/12, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(6, "feet"),
  42870. weight: math.unit(168, "lb"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/luca/front.svg",
  42874. extra: 841/667,
  42875. bottom: 102/943
  42876. }
  42877. },
  42878. },
  42879. [
  42880. {
  42881. name: "Normal",
  42882. height: math.unit(6, "feet"),
  42883. default: true
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42889. {
  42890. side: {
  42891. height: math.unit(7 + 3/12, "feet"),
  42892. weight: math.unit(312, "lb"),
  42893. name: "Side",
  42894. image: {
  42895. source: "./media/characters/zezo/side.svg",
  42896. extra: 1192/1067,
  42897. bottom: 63/1255
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(7 + 3/12, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(5 + 5/12, "feet"),
  42914. weight: math.unit(170, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/mayso/front.svg",
  42918. extra: 1215/1108,
  42919. bottom: 16/1231
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(5 + 5/12, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(4 + 3/12, "feet"),
  42936. weight: math.unit(80, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/hess/front.svg",
  42940. extra: 1200/1123,
  42941. bottom: 16/1216
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(4 + 3/12, "feet"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42955. {
  42956. front: {
  42957. height: math.unit(1.9, "meters"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/ashgar/front.svg",
  42961. extra: 1177/1146,
  42962. bottom: 99/1276
  42963. }
  42964. },
  42965. back: {
  42966. height: math.unit(1.9, "meters"),
  42967. name: "Back",
  42968. image: {
  42969. source: "./media/characters/ashgar/back.svg",
  42970. extra: 1201/1183,
  42971. bottom: 53/1254
  42972. }
  42973. },
  42974. feral: {
  42975. height: math.unit(1.4, "meters"),
  42976. name: "Feral",
  42977. image: {
  42978. source: "./media/characters/ashgar/feral.svg",
  42979. extra: 370/345,
  42980. bottom: 45/415
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(1.9, "meters"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42994. {
  42995. regular: {
  42996. height: math.unit(6, "feet"),
  42997. weight: math.unit(220, "lb"),
  42998. name: "Regular",
  42999. image: {
  43000. source: "./media/characters/phillip/regular.svg",
  43001. extra: 1373/1277,
  43002. bottom: 75/1448
  43003. }
  43004. },
  43005. dressed: {
  43006. height: math.unit(6, "feet"),
  43007. weight: math.unit(220, "lb"),
  43008. name: "Dressed",
  43009. image: {
  43010. source: "./media/characters/phillip/dressed.svg",
  43011. extra: 1373/1277,
  43012. bottom: 75/1448
  43013. }
  43014. },
  43015. paw: {
  43016. height: math.unit(1.44, "feet"),
  43017. name: "Paw",
  43018. image: {
  43019. source: "./media/characters/phillip/paw.svg"
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Normal",
  43026. height: math.unit(6, "feet"),
  43027. default: true
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43033. {
  43034. side: {
  43035. height: math.unit(42, "feet"),
  43036. name: "Side",
  43037. image: {
  43038. source: "./media/characters/uvula/side.svg",
  43039. extra: 683/586,
  43040. bottom: 60/743
  43041. }
  43042. },
  43043. front: {
  43044. height: math.unit(42, "feet"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/uvula/front.svg",
  43048. extra: 705/613,
  43049. bottom: 54/759
  43050. }
  43051. },
  43052. maw: {
  43053. height: math.unit(23.5, "feet"),
  43054. name: "Maw",
  43055. image: {
  43056. source: "./media/characters/uvula/maw.svg"
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Original Size",
  43063. height: math.unit(14, "inches")
  43064. },
  43065. {
  43066. name: "Human Size",
  43067. height: math.unit(6, "feet")
  43068. },
  43069. {
  43070. name: "Big",
  43071. height: math.unit(42, "feet"),
  43072. default: true
  43073. },
  43074. {
  43075. name: "Bigger",
  43076. height: math.unit(100, "feet")
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43082. {
  43083. front: {
  43084. height: math.unit(5 + 11/12, "feet"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/lannah/front.svg",
  43088. extra: 1208/1113,
  43089. bottom: 97/1305
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(5 + 11/12, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43103. {
  43104. front: {
  43105. height: math.unit(6 + 3/12, "feet"),
  43106. weight: math.unit(3.5, "tons"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/emberflame/front.svg",
  43110. extra: 1198/672,
  43111. bottom: 82/1280
  43112. }
  43113. },
  43114. side: {
  43115. height: math.unit(6 + 3/12, "feet"),
  43116. weight: math.unit(3.5, "tons"),
  43117. name: "Side",
  43118. image: {
  43119. source: "./media/characters/emberflame/side.svg",
  43120. extra: 938/527,
  43121. bottom: 56/994
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(6 + 3/12, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43135. {
  43136. side: {
  43137. height: math.unit(17.5, "feet"),
  43138. weight: math.unit(35, "tons"),
  43139. name: "Side",
  43140. image: {
  43141. source: "./media/characters/sophie-ambrose/side.svg",
  43142. extra: 1573/1242,
  43143. bottom: 71/1644
  43144. }
  43145. },
  43146. maw: {
  43147. height: math.unit(7.4, "feet"),
  43148. name: "Maw",
  43149. image: {
  43150. source: "./media/characters/sophie-ambrose/maw.svg"
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(17.5, "feet"),
  43158. default: true
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(280, "feet"),
  43167. weight: math.unit(550, "tons"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/king-mugi/front.svg",
  43171. extra: 1102/947,
  43172. bottom: 104/1206
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "King Mugi",
  43179. height: math.unit(280, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(64, "meters"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/nova-fox/front.svg",
  43192. extra: 1310/1246,
  43193. bottom: 65/1375
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Macro",
  43200. height: math.unit(64, "meters"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(6 + 3/12, "feet"),
  43210. weight: math.unit(170, "lb"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/sam-bat/front.svg",
  43214. extra: 1601/1411,
  43215. bottom: 125/1726
  43216. }
  43217. },
  43218. back: {
  43219. height: math.unit(6 + 3/12, "feet"),
  43220. weight: math.unit(170, "lb"),
  43221. name: "Back",
  43222. image: {
  43223. source: "./media/characters/sam-bat/back.svg",
  43224. extra: 1577/1405,
  43225. bottom: 58/1635
  43226. }
  43227. },
  43228. },
  43229. [
  43230. {
  43231. name: "Normal",
  43232. height: math.unit(6 + 3/12, "feet"),
  43233. default: true
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43239. {
  43240. front: {
  43241. height: math.unit(59, "feet"),
  43242. weight: math.unit(40000, "lb"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/inari/front.svg",
  43246. extra: 1884/1350,
  43247. bottom: 95/1979
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Gigantamax",
  43254. height: math.unit(59, "feet"),
  43255. default: true
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43261. {
  43262. front: {
  43263. height: math.unit(5 + 8/12, "feet"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/elizabeth/front.svg",
  43267. extra: 1395/1298,
  43268. bottom: 54/1449
  43269. }
  43270. },
  43271. mouth: {
  43272. height: math.unit(1.97, "feet"),
  43273. name: "Mouth",
  43274. image: {
  43275. source: "./media/characters/elizabeth/mouth.svg"
  43276. }
  43277. },
  43278. foot: {
  43279. height: math.unit(1.17, "feet"),
  43280. name: "Foot",
  43281. image: {
  43282. source: "./media/characters/elizabeth/foot.svg"
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Normal",
  43289. height: math.unit(5 + 8/12, "feet"),
  43290. default: true
  43291. },
  43292. {
  43293. name: "Minimacro",
  43294. height: math.unit(18, "feet")
  43295. },
  43296. {
  43297. name: "Macro",
  43298. height: math.unit(180, "feet")
  43299. },
  43300. ]
  43301. ))
  43302. characterMakers.push(() => makeCharacter(
  43303. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43304. {
  43305. front: {
  43306. height: math.unit(5 + 2/12, "feet"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/october-gossamer/front.svg",
  43310. extra: 505/454,
  43311. bottom: 7/512
  43312. }
  43313. },
  43314. back: {
  43315. height: math.unit(5 + 2/12, "feet"),
  43316. name: "Back",
  43317. image: {
  43318. source: "./media/characters/october-gossamer/back.svg",
  43319. extra: 501/454,
  43320. bottom: 11/512
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(5 + 2/12, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(5, "feet"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/epiglottis/front.svg",
  43340. extra: 923/849,
  43341. bottom: 17/940
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Original Size",
  43348. height: math.unit(10, "inches")
  43349. },
  43350. {
  43351. name: "Human Size",
  43352. height: math.unit(5, "feet"),
  43353. default: true
  43354. },
  43355. {
  43356. name: "Big",
  43357. height: math.unit(25, "feet")
  43358. },
  43359. {
  43360. name: "Bigger",
  43361. height: math.unit(50, "feet")
  43362. },
  43363. {
  43364. name: "oh lawd",
  43365. height: math.unit(75, "feet")
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(2 + 4/12, "feet"),
  43374. weight: math.unit(60, "lb"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/lerm/front.svg",
  43378. extra: 796/790,
  43379. bottom: 79/875
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "Normal",
  43386. height: math.unit(2 + 4/12, "feet"),
  43387. default: true
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(5.5, "feet"),
  43396. weight: math.unit(130, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/xena-nebadon/front.svg",
  43400. extra: 1828/1730,
  43401. bottom: 79/1907
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Tiny Puppy",
  43408. height: math.unit(3, "inches")
  43409. },
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(5.5, "feet"),
  43413. default: true
  43414. },
  43415. {
  43416. name: "Lotta Lady",
  43417. height: math.unit(12, "feet")
  43418. },
  43419. {
  43420. name: "Pretty Big",
  43421. height: math.unit(100, "feet")
  43422. },
  43423. {
  43424. name: "Big",
  43425. height: math.unit(500, "feet")
  43426. },
  43427. {
  43428. name: "Skyscraper Toys",
  43429. height: math.unit(2500, "feet")
  43430. },
  43431. {
  43432. name: "Plane Catcher",
  43433. height: math.unit(8, "miles")
  43434. },
  43435. {
  43436. name: "Planet Toys",
  43437. height: math.unit(15, "earths")
  43438. },
  43439. {
  43440. name: "Stardust",
  43441. height: math.unit(0.25, "galaxies")
  43442. },
  43443. {
  43444. name: "Snacks",
  43445. height: math.unit(70, "universes")
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(1.6, "meters"),
  43454. weight: math.unit(60, "kg"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/bounty/front.svg",
  43458. extra: 1426/1308,
  43459. bottom: 15/1441
  43460. }
  43461. },
  43462. back: {
  43463. height: math.unit(1.6, "meters"),
  43464. weight: math.unit(60, "kg"),
  43465. name: "Back",
  43466. image: {
  43467. source: "./media/characters/bounty/back.svg",
  43468. extra: 1417/1307,
  43469. bottom: 8/1425
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(1.6, "meters"),
  43477. default: true
  43478. },
  43479. {
  43480. name: "Macro",
  43481. height: math.unit(300, "meters")
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43487. {
  43488. front: {
  43489. height: math.unit(2 + 8/12, "feet"),
  43490. weight: math.unit(15, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/mochi/front.svg",
  43494. extra: 1022/852,
  43495. bottom: 435/1457
  43496. }
  43497. },
  43498. back: {
  43499. height: math.unit(2 + 8/12, "feet"),
  43500. weight: math.unit(15, "lb"),
  43501. name: "Back",
  43502. image: {
  43503. source: "./media/characters/mochi/back.svg",
  43504. extra: 1335/1119,
  43505. bottom: 39/1374
  43506. }
  43507. },
  43508. bird: {
  43509. height: math.unit(2 + 8/12, "feet"),
  43510. weight: math.unit(15, "lb"),
  43511. name: "Bird",
  43512. image: {
  43513. source: "./media/characters/mochi/bird.svg",
  43514. extra: 1251/1113,
  43515. bottom: 178/1429
  43516. }
  43517. },
  43518. kaiju: {
  43519. height: math.unit(154, "feet"),
  43520. weight: math.unit(1e7, "lb"),
  43521. name: "Kaiju",
  43522. image: {
  43523. source: "./media/characters/mochi/kaiju.svg",
  43524. extra: 460/324,
  43525. bottom: 40/500
  43526. }
  43527. },
  43528. head: {
  43529. height: math.unit(1.21, "feet"),
  43530. name: "Head",
  43531. image: {
  43532. source: "./media/characters/mochi/head.svg"
  43533. }
  43534. },
  43535. alternateTail: {
  43536. height: math.unit(2 + 8/12, "feet"),
  43537. weight: math.unit(45, "lb"),
  43538. name: "Alternate Tail",
  43539. image: {
  43540. source: "./media/characters/mochi/alternate-tail.svg",
  43541. extra: 139/76,
  43542. bottom: 45/184
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Micro",
  43549. height: math.unit(2, "inches")
  43550. },
  43551. {
  43552. name: "Normal",
  43553. height: math.unit(2 + 8/12, "feet"),
  43554. default: true
  43555. },
  43556. {
  43557. name: "Macro",
  43558. height: math.unit(106, "feet")
  43559. },
  43560. ]
  43561. ))
  43562. characterMakers.push(() => makeCharacter(
  43563. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43564. {
  43565. front: {
  43566. height: math.unit(5.67, "feet"),
  43567. weight: math.unit(135, "lb"),
  43568. name: "Front",
  43569. image: {
  43570. source: "./media/characters/sarel/front.svg",
  43571. extra: 865/788,
  43572. bottom: 97/962
  43573. }
  43574. },
  43575. back: {
  43576. height: math.unit(5.67, "feet"),
  43577. weight: math.unit(135, "lb"),
  43578. name: "Back",
  43579. image: {
  43580. source: "./media/characters/sarel/back.svg",
  43581. extra: 857/777,
  43582. bottom: 32/889
  43583. }
  43584. },
  43585. chozoan: {
  43586. height: math.unit(5.67, "feet"),
  43587. weight: math.unit(135, "lb"),
  43588. name: "Chozoan",
  43589. image: {
  43590. source: "./media/characters/sarel/chozoan.svg",
  43591. extra: 865/788,
  43592. bottom: 97/962
  43593. }
  43594. },
  43595. current: {
  43596. height: math.unit(5.67, "feet"),
  43597. weight: math.unit(135, "lb"),
  43598. name: "Current",
  43599. image: {
  43600. source: "./media/characters/sarel/current.svg",
  43601. extra: 865/788,
  43602. bottom: 97/962
  43603. }
  43604. },
  43605. head: {
  43606. height: math.unit(1.77, "feet"),
  43607. name: "Head",
  43608. image: {
  43609. source: "./media/characters/sarel/head.svg"
  43610. }
  43611. },
  43612. claws: {
  43613. height: math.unit(1.8, "feet"),
  43614. name: "Claws",
  43615. image: {
  43616. source: "./media/characters/sarel/claws.svg"
  43617. }
  43618. },
  43619. clawsAlt: {
  43620. height: math.unit(1.8, "feet"),
  43621. name: "Claws-alt",
  43622. image: {
  43623. source: "./media/characters/sarel/claws-alt.svg"
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(5.67, "feet"),
  43631. default: true
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(5500, "feet"),
  43640. name: "Front",
  43641. image: {
  43642. source: "./media/characters/alyonia/front.svg",
  43643. extra: 1200/1135,
  43644. bottom: 29/1229
  43645. }
  43646. },
  43647. back: {
  43648. height: math.unit(5500, "feet"),
  43649. name: "Back",
  43650. image: {
  43651. source: "./media/characters/alyonia/back.svg",
  43652. extra: 1205/1138,
  43653. bottom: 10/1215
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Small",
  43660. height: math.unit(10, "feet")
  43661. },
  43662. {
  43663. name: "Macro",
  43664. height: math.unit(500, "feet")
  43665. },
  43666. {
  43667. name: "Mega Macro",
  43668. height: math.unit(5500, "feet"),
  43669. default: true
  43670. },
  43671. {
  43672. name: "Mega Macro+",
  43673. height: math.unit(500000, "feet")
  43674. },
  43675. {
  43676. name: "Giga Macro",
  43677. height: math.unit(3000, "miles")
  43678. },
  43679. {
  43680. name: "Tera Macro",
  43681. height: math.unit(2.8e6, "miles")
  43682. },
  43683. {
  43684. name: "Galactic",
  43685. height: math.unit(120000, "lightyears")
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43691. {
  43692. werewolf: {
  43693. height: math.unit(8, "feet"),
  43694. weight: math.unit(425, "lb"),
  43695. name: "Werewolf",
  43696. image: {
  43697. source: "./media/characters/autumn/werewolf.svg",
  43698. extra: 2154/2031,
  43699. bottom: 160/2314
  43700. }
  43701. },
  43702. human: {
  43703. height: math.unit(5 + 8/12, "feet"),
  43704. weight: math.unit(150, "lb"),
  43705. name: "Human",
  43706. image: {
  43707. source: "./media/characters/autumn/human.svg",
  43708. extra: 1200/1149,
  43709. bottom: 30/1230
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(8, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(8 + 5/12, "feet"),
  43726. weight: math.unit(825, "lb"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/cobalt-charizard/front.svg",
  43730. extra: 1268/1155,
  43731. bottom: 122/1390
  43732. }
  43733. },
  43734. side: {
  43735. height: math.unit(8 + 5/12, "feet"),
  43736. weight: math.unit(825, "lb"),
  43737. name: "Side",
  43738. image: {
  43739. source: "./media/characters/cobalt-charizard/side.svg",
  43740. extra: 1348/1257,
  43741. bottom: 58/1406
  43742. }
  43743. },
  43744. gMax: {
  43745. height: math.unit(134 + 11/12, "feet"),
  43746. name: "G-Max",
  43747. image: {
  43748. source: "./media/characters/cobalt-charizard/g-max.svg",
  43749. extra: 1835/1541,
  43750. bottom: 151/1986
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Normal",
  43757. height: math.unit(8 + 5/12, "feet"),
  43758. default: true
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(6 + 3/12, "feet"),
  43767. weight: math.unit(210, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/stella/front.svg",
  43771. extra: 3549/3335,
  43772. bottom: 51/3600
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(6 + 3/12, "feet"),
  43780. default: true
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(5, "feet"),
  43789. weight: math.unit(90, "lb"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/riley-bishop/front.svg",
  43793. extra: 1450/1428,
  43794. bottom: 152/1602
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(5, "feet"),
  43802. default: true
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43808. {
  43809. side: {
  43810. height: math.unit(8 + 2/12, "feet"),
  43811. weight: math.unit(500, "kg"),
  43812. name: "Side",
  43813. image: {
  43814. source: "./media/characters/theo-arcanine/side.svg",
  43815. extra: 1342/1074,
  43816. bottom: 111/1453
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Normal",
  43823. height: math.unit(8 + 2/12, "feet"),
  43824. default: true
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(4, "feet"),
  43833. name: "Front",
  43834. image: {
  43835. source: "./media/characters/kali/front.svg",
  43836. extra: 1921/1357,
  43837. bottom: 70/1991
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal",
  43844. height: math.unit(4, "feet"),
  43845. default: true
  43846. },
  43847. {
  43848. name: "Macro",
  43849. height: math.unit(32, "meters")
  43850. },
  43851. {
  43852. name: "Macro+",
  43853. height: math.unit(150, "meters")
  43854. },
  43855. {
  43856. name: "Megamacro",
  43857. height: math.unit(7500, "meters")
  43858. },
  43859. {
  43860. name: "Megamacro+",
  43861. height: math.unit(80, "kilometers")
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43867. {
  43868. side: {
  43869. height: math.unit(5 + 11/12, "feet"),
  43870. weight: math.unit(236, "lb"),
  43871. name: "Side",
  43872. image: {
  43873. source: "./media/characters/gapp/side.svg",
  43874. extra: 775/340,
  43875. bottom: 58/833
  43876. }
  43877. },
  43878. mouth: {
  43879. height: math.unit(2.98, "feet"),
  43880. name: "Mouth",
  43881. image: {
  43882. source: "./media/characters/gapp/mouth.svg"
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Normal",
  43889. height: math.unit(5 + 1/12, "feet"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(6, "feet"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/persephone/front.svg",
  43902. extra: 1895/1717,
  43903. bottom: 96/1991
  43904. }
  43905. },
  43906. back: {
  43907. height: math.unit(6, "feet"),
  43908. name: "Back",
  43909. image: {
  43910. source: "./media/characters/persephone/back.svg",
  43911. extra: 1868/1679,
  43912. bottom: 26/1894
  43913. }
  43914. },
  43915. casual: {
  43916. height: math.unit(6, "feet"),
  43917. name: "Casual",
  43918. image: {
  43919. source: "./media/characters/persephone/casual.svg",
  43920. extra: 1713/1541,
  43921. bottom: 76/1789
  43922. }
  43923. },
  43924. },
  43925. [
  43926. {
  43927. name: "Human Size",
  43928. height: math.unit(6, "feet")
  43929. },
  43930. {
  43931. name: "Big Steppy",
  43932. height: math.unit(600, "meters"),
  43933. default: true
  43934. },
  43935. {
  43936. name: "Galaxy Brain",
  43937. height: math.unit(1, "zettameter")
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43943. {
  43944. front: {
  43945. height: math.unit(1.85, "meters"),
  43946. name: "Front",
  43947. image: {
  43948. source: "./media/characters/riley-foxthing/front.svg",
  43949. extra: 1495/1354,
  43950. bottom: 122/1617
  43951. }
  43952. },
  43953. frontAlt: {
  43954. height: math.unit(1.85, "meters"),
  43955. name: "Front (Alt)",
  43956. image: {
  43957. source: "./media/characters/riley-foxthing/front-alt.svg",
  43958. extra: 1572/1389,
  43959. bottom: 116/1688
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal Sized",
  43966. height: math.unit(1.85, "meters"),
  43967. default: true
  43968. },
  43969. {
  43970. name: "Quite Sizable",
  43971. height: math.unit(5, "meters")
  43972. },
  43973. {
  43974. name: "Rather Large",
  43975. height: math.unit(20, "meters")
  43976. },
  43977. {
  43978. name: "Macro",
  43979. height: math.unit(450, "meters")
  43980. },
  43981. {
  43982. name: "Giga",
  43983. height: math.unit(5, "km")
  43984. },
  43985. ]
  43986. ))
  43987. characterMakers.push(() => makeCharacter(
  43988. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43989. {
  43990. front: {
  43991. height: math.unit(6, "feet"),
  43992. weight: math.unit(200, "lb"),
  43993. name: "Front",
  43994. image: {
  43995. source: "./media/characters/blizzard/front.svg",
  43996. extra: 1136/990,
  43997. bottom: 136/1272
  43998. }
  43999. },
  44000. back: {
  44001. height: math.unit(6, "feet"),
  44002. weight: math.unit(200, "lb"),
  44003. name: "Back",
  44004. image: {
  44005. source: "./media/characters/blizzard/back.svg",
  44006. extra: 1175/1034,
  44007. bottom: 97/1272
  44008. }
  44009. },
  44010. sitting: {
  44011. height: math.unit(3.725, "feet"),
  44012. weight: math.unit(200, "lb"),
  44013. name: "Sitting",
  44014. image: {
  44015. source: "./media/characters/blizzard/sitting.svg",
  44016. extra: 581/485,
  44017. bottom: 90/671
  44018. }
  44019. },
  44020. frontWizard: {
  44021. height: math.unit(7.9, "feet"),
  44022. weight: math.unit(200, "lb"),
  44023. name: "Front (Wizard)",
  44024. image: {
  44025. source: "./media/characters/blizzard/front-wizard.svg"
  44026. }
  44027. },
  44028. backWizard: {
  44029. height: math.unit(7.9, "feet"),
  44030. weight: math.unit(200, "lb"),
  44031. name: "Back (Wizard)",
  44032. image: {
  44033. source: "./media/characters/blizzard/back-wizard.svg"
  44034. }
  44035. },
  44036. frontNsfw: {
  44037. height: math.unit(6, "feet"),
  44038. weight: math.unit(200, "lb"),
  44039. name: "Front (NSFW)",
  44040. image: {
  44041. source: "./media/characters/blizzard/front-nsfw.svg",
  44042. extra: 1136/990,
  44043. bottom: 136/1272
  44044. }
  44045. },
  44046. backNsfw: {
  44047. height: math.unit(6, "feet"),
  44048. weight: math.unit(200, "lb"),
  44049. name: "Back (NSFW)",
  44050. image: {
  44051. source: "./media/characters/blizzard/back-nsfw.svg",
  44052. extra: 1175/1034,
  44053. bottom: 97/1272
  44054. }
  44055. },
  44056. sittingNsfw: {
  44057. height: math.unit(3.725, "feet"),
  44058. weight: math.unit(200, "lb"),
  44059. name: "Sitting (NSFW)",
  44060. image: {
  44061. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44062. extra: 581/485,
  44063. bottom: 90/671
  44064. }
  44065. },
  44066. wizardFrontNsfw: {
  44067. height: math.unit(7.9, "feet"),
  44068. weight: math.unit(200, "lb"),
  44069. name: "Wizard (Front, NSFW)",
  44070. image: {
  44071. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(6, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 2/12, "feet"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/lumi/front.svg",
  44091. extra: 1328/1268,
  44092. bottom: 103/1431
  44093. }
  44094. },
  44095. back: {
  44096. height: math.unit(5 + 2/12, "feet"),
  44097. name: "Back",
  44098. image: {
  44099. source: "./media/characters/lumi/back.svg",
  44100. extra: 1381/1327,
  44101. bottom: 43/1424
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(5 + 2/12, "feet"),
  44109. default: true
  44110. },
  44111. ]
  44112. ))
  44113. characterMakers.push(() => makeCharacter(
  44114. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44115. {
  44116. front: {
  44117. height: math.unit(5 + 9/12, "feet"),
  44118. name: "Front",
  44119. image: {
  44120. source: "./media/characters/aliya-cotton/front.svg",
  44121. extra: 577/564,
  44122. bottom: 29/606
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(5 + 9/12, "feet"),
  44130. default: true
  44131. },
  44132. ]
  44133. ))
  44134. characterMakers.push(() => makeCharacter(
  44135. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44136. {
  44137. front: {
  44138. height: math.unit(2.7, "meters"),
  44139. weight: math.unit(25000, "lb"),
  44140. name: "Front",
  44141. image: {
  44142. source: "./media/characters/noah-luxray/front.svg",
  44143. extra: 1644/825,
  44144. bottom: 339/1983
  44145. }
  44146. },
  44147. side: {
  44148. height: math.unit(2.97, "meters"),
  44149. weight: math.unit(25000, "lb"),
  44150. name: "Side",
  44151. image: {
  44152. source: "./media/characters/noah-luxray/side.svg",
  44153. extra: 1319/650,
  44154. bottom: 163/1482
  44155. }
  44156. },
  44157. dick: {
  44158. height: math.unit(7.4, "feet"),
  44159. weight: math.unit(2500, "lb"),
  44160. name: "Dick",
  44161. image: {
  44162. source: "./media/characters/noah-luxray/dick.svg"
  44163. }
  44164. },
  44165. dickAlt: {
  44166. height: math.unit(10.83, "feet"),
  44167. weight: math.unit(2500, "lb"),
  44168. name: "Dick-alt",
  44169. image: {
  44170. source: "./media/characters/noah-luxray/dick-alt.svg"
  44171. }
  44172. },
  44173. },
  44174. [
  44175. {
  44176. name: "BIG",
  44177. height: math.unit(2.7, "meters"),
  44178. default: true
  44179. },
  44180. ]
  44181. ))
  44182. characterMakers.push(() => makeCharacter(
  44183. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44184. {
  44185. standing: {
  44186. height: math.unit(183, "cm"),
  44187. weight: math.unit(68, "kg"),
  44188. name: "Standing",
  44189. image: {
  44190. source: "./media/characters/arion/standing.svg",
  44191. extra: 1869/1807,
  44192. bottom: 93/1962
  44193. }
  44194. },
  44195. reclining: {
  44196. height: math.unit(70.5, "cm"),
  44197. weight: math.unit(68, "lb"),
  44198. name: "Reclining",
  44199. image: {
  44200. source: "./media/characters/arion/reclining.svg",
  44201. extra: 937/870,
  44202. bottom: 63/1000
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Colossus Size, Low",
  44209. height: math.unit(33, "meters"),
  44210. default: true
  44211. },
  44212. {
  44213. name: "Colossus Size, Mid",
  44214. height: math.unit(52, "meters")
  44215. },
  44216. {
  44217. name: "Colossus Size, High",
  44218. height: math.unit(60, "meters")
  44219. },
  44220. {
  44221. name: "Titan Size, Low",
  44222. height: math.unit(91, "meters"),
  44223. },
  44224. {
  44225. name: "Titan Size, Mid",
  44226. height: math.unit(122, "meters")
  44227. },
  44228. {
  44229. name: "Titan Size, High",
  44230. height: math.unit(162, "meters")
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44236. {
  44237. front: {
  44238. height: math.unit(53, "meters"),
  44239. name: "Front",
  44240. image: {
  44241. source: "./media/characters/stellar-marbey/front.svg",
  44242. extra: 1913/1805,
  44243. bottom: 92/2005
  44244. }
  44245. },
  44246. back: {
  44247. height: math.unit(53, "meters"),
  44248. name: "Back",
  44249. image: {
  44250. source: "./media/characters/stellar-marbey/back.svg",
  44251. extra: 1960/1851,
  44252. bottom: 28/1988
  44253. }
  44254. },
  44255. mouth: {
  44256. height: math.unit(3.5, "meters"),
  44257. name: "Mouth",
  44258. image: {
  44259. source: "./media/characters/stellar-marbey/mouth.svg"
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Macro",
  44266. height: math.unit(53, "meters"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44273. {
  44274. front: {
  44275. height: math.unit(8 + 1/12, "feet"),
  44276. weight: math.unit(233, "lb"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/matsu/front.svg",
  44280. extra: 832/772,
  44281. bottom: 40/872
  44282. }
  44283. },
  44284. back: {
  44285. height: math.unit(8 + 1/12, "feet"),
  44286. weight: math.unit(233, "lb"),
  44287. name: "Back",
  44288. image: {
  44289. source: "./media/characters/matsu/back.svg",
  44290. extra: 839/780,
  44291. bottom: 47/886
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(8 + 1/12, "feet"),
  44299. default: true
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44305. {
  44306. front: {
  44307. height: math.unit(4, "feet"),
  44308. weight: math.unit(148, "lb"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/thiz/front.svg",
  44312. extra: 1913/1748,
  44313. bottom: 62/1975
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Normal",
  44320. height: math.unit(4, "feet"),
  44321. default: true
  44322. },
  44323. ]
  44324. ))
  44325. characterMakers.push(() => makeCharacter(
  44326. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44327. {
  44328. front: {
  44329. height: math.unit(7 + 6/12, "feet"),
  44330. weight: math.unit(267, "lb"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/marcel/front.svg",
  44334. extra: 1221/1096,
  44335. bottom: 76/1297
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(7 + 6/12, "feet"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44349. {
  44350. side: {
  44351. height: math.unit(42, "meters"),
  44352. name: "Side",
  44353. image: {
  44354. source: "./media/characters/flake/side.svg",
  44355. extra: 1525/1306,
  44356. bottom: 209/1734
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Normal",
  44363. height: math.unit(42, "meters"),
  44364. default: true
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44370. {
  44371. dressed: {
  44372. height: math.unit(6 + 4/12, "feet"),
  44373. weight: math.unit(520, "lb"),
  44374. name: "Dressed",
  44375. image: {
  44376. source: "./media/characters/someonne/dressed.svg",
  44377. extra: 1020/1010,
  44378. bottom: 178/1198
  44379. }
  44380. },
  44381. undressed: {
  44382. height: math.unit(6 + 4/12, "feet"),
  44383. weight: math.unit(520, "lb"),
  44384. name: "Undressed",
  44385. image: {
  44386. source: "./media/characters/someonne/undressed.svg",
  44387. extra: 1019/1014,
  44388. bottom: 169/1188
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(6 + 4/12, "feet"),
  44396. default: true
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(3, "feet"),
  44405. weight: math.unit(30, "lb"),
  44406. name: "Front",
  44407. image: {
  44408. source: "./media/characters/till/front.svg",
  44409. extra: 892/823,
  44410. bottom: 55/947
  44411. }
  44412. },
  44413. },
  44414. [
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(3, "feet"),
  44418. default: true
  44419. },
  44420. ]
  44421. ))
  44422. characterMakers.push(() => makeCharacter(
  44423. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44424. {
  44425. front: {
  44426. height: math.unit(9 + 8/12, "feet"),
  44427. weight: math.unit(800, "lb"),
  44428. name: "Front",
  44429. image: {
  44430. source: "./media/characters/sydney-heki/front.svg",
  44431. extra: 1360/1300,
  44432. bottom: 22/1382
  44433. }
  44434. },
  44435. back: {
  44436. height: math.unit(9 + 8/12, "feet"),
  44437. weight: math.unit(800, "lb"),
  44438. name: "Back",
  44439. image: {
  44440. source: "./media/characters/sydney-heki/back.svg",
  44441. extra: 1356/1293,
  44442. bottom: 12/1368
  44443. }
  44444. },
  44445. frontDressed: {
  44446. height: math.unit(9 + 8/12, "feet"),
  44447. weight: math.unit(800, "lb"),
  44448. name: "Front-dressed",
  44449. image: {
  44450. source: "./media/characters/sydney-heki/front-dressed.svg",
  44451. extra: 1360/1300,
  44452. bottom: 22/1382
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(9 + 8/12, "feet"),
  44460. default: true
  44461. },
  44462. {
  44463. name: "Macro",
  44464. height: math.unit(500, "feet")
  44465. },
  44466. {
  44467. name: "Megamacro",
  44468. height: math.unit(3.6, "miles")
  44469. },
  44470. ]
  44471. ))
  44472. characterMakers.push(() => makeCharacter(
  44473. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44474. {
  44475. front: {
  44476. height: math.unit(200, "cm"),
  44477. weight: math.unit(250, "lb"),
  44478. name: "Front",
  44479. image: {
  44480. source: "./media/characters/fowler-karlsson/front.svg",
  44481. extra: 897/845,
  44482. bottom: 123/1020
  44483. }
  44484. },
  44485. back: {
  44486. height: math.unit(200, "cm"),
  44487. weight: math.unit(250, "lb"),
  44488. name: "Back",
  44489. image: {
  44490. source: "./media/characters/fowler-karlsson/back.svg",
  44491. extra: 999/944,
  44492. bottom: 26/1025
  44493. }
  44494. },
  44495. dick: {
  44496. height: math.unit(1.92, "feet"),
  44497. weight: math.unit(150, "lb"),
  44498. name: "Dick",
  44499. image: {
  44500. source: "./media/characters/fowler-karlsson/dick.svg"
  44501. }
  44502. },
  44503. },
  44504. [
  44505. {
  44506. name: "Normal",
  44507. height: math.unit(200, "cm"),
  44508. default: true
  44509. },
  44510. {
  44511. name: "Smaller Macro",
  44512. height: math.unit(90, "m")
  44513. },
  44514. {
  44515. name: "Macro",
  44516. height: math.unit(150, "m")
  44517. },
  44518. {
  44519. name: "Bigger Macro",
  44520. height: math.unit(300, "m")
  44521. },
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44526. {
  44527. side: {
  44528. height: math.unit(8 + 2/12, "feet"),
  44529. weight: math.unit(1, "tonne"),
  44530. name: "Side",
  44531. image: {
  44532. source: "./media/characters/rylide/side.svg",
  44533. extra: 1318/1034,
  44534. bottom: 106/1424
  44535. }
  44536. },
  44537. sitting: {
  44538. height: math.unit(303, "cm"),
  44539. weight: math.unit(1, "tonne"),
  44540. name: "Sitting",
  44541. image: {
  44542. source: "./media/characters/rylide/sitting.svg",
  44543. extra: 1303/1103,
  44544. bottom: 36/1339
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(8 + 2/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(5 + 10/12, "feet"),
  44561. weight: math.unit(160, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/pudask/front.svg",
  44565. extra: 1616/1590,
  44566. bottom: 161/1777
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Ferret Height",
  44573. height: math.unit(2 + 5/12, "feet")
  44574. },
  44575. {
  44576. name: "Canon Height",
  44577. height: math.unit(5 + 10/12, "feet"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(3 + 6/12, "feet"),
  44587. weight: math.unit(60, "lb"),
  44588. name: "Front",
  44589. image: {
  44590. source: "./media/characters/ramita/front.svg",
  44591. extra: 1402/1232,
  44592. bottom: 62/1464
  44593. }
  44594. },
  44595. dressed: {
  44596. height: math.unit(3 + 6/12, "feet"),
  44597. weight: math.unit(60, "lb"),
  44598. name: "Dressed",
  44599. image: {
  44600. source: "./media/characters/ramita/dressed.svg",
  44601. extra: 1534/1249,
  44602. bottom: 50/1584
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Normal",
  44609. height: math.unit(3 + 6/12, "feet"),
  44610. default: true
  44611. },
  44612. ]
  44613. ))
  44614. characterMakers.push(() => makeCharacter(
  44615. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44616. {
  44617. front: {
  44618. height: math.unit(8, "feet"),
  44619. name: "Front",
  44620. image: {
  44621. source: "./media/characters/ark/front.svg",
  44622. extra: 772/693,
  44623. bottom: 45/817
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(8, "feet"),
  44631. default: true
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44637. {
  44638. front: {
  44639. height: math.unit(6, "feet"),
  44640. weight: math.unit(250, "lb"),
  44641. volume: math.unit(5/8, "gallons"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/ludwig-horn/front.svg",
  44645. extra: 1782/1635,
  44646. bottom: 96/1878
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(6, "feet"),
  44651. weight: math.unit(250, "lb"),
  44652. volume: math.unit(5/8, "gallons"),
  44653. name: "Back",
  44654. image: {
  44655. source: "./media/characters/ludwig-horn/back.svg",
  44656. extra: 1874/1729,
  44657. bottom: 27/1901
  44658. }
  44659. },
  44660. dick: {
  44661. height: math.unit(1.05, "feet"),
  44662. weight: math.unit(15, "lb"),
  44663. volume: math.unit(5/8, "gallons"),
  44664. name: "Dick",
  44665. image: {
  44666. source: "./media/characters/ludwig-horn/dick.svg"
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Small",
  44673. height: math.unit(6, "feet")
  44674. },
  44675. {
  44676. name: "Typical",
  44677. height: math.unit(12, "feet"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Building",
  44682. height: math.unit(80, "feet")
  44683. },
  44684. {
  44685. name: "Town",
  44686. height: math.unit(800, "feet")
  44687. },
  44688. {
  44689. name: "Kingdom",
  44690. height: math.unit(80000, "feet")
  44691. },
  44692. {
  44693. name: "Planet",
  44694. height: math.unit(8000000, "feet")
  44695. },
  44696. {
  44697. name: "Universe",
  44698. height: math.unit(8000000000, "feet")
  44699. },
  44700. {
  44701. name: "Transcended",
  44702. height: math.unit(8e27, "feet")
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(5, "feet"),
  44711. weight: math.unit(50, "kg"),
  44712. name: "Front",
  44713. image: {
  44714. source: "./media/characters/biot-avery/front.svg",
  44715. extra: 1295/1232,
  44716. bottom: 86/1381
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Normal",
  44723. height: math.unit(5, "feet"),
  44724. default: true
  44725. },
  44726. ]
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44730. {
  44731. front: {
  44732. height: math.unit(6, "feet"),
  44733. name: "Front",
  44734. image: {
  44735. source: "./media/characters/kitsune-kiro/front.svg",
  44736. extra: 1270/1158,
  44737. bottom: 42/1312
  44738. }
  44739. },
  44740. frontAlt: {
  44741. height: math.unit(6, "feet"),
  44742. name: "Front-alt",
  44743. image: {
  44744. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44745. extra: 1130/1081,
  44746. bottom: 36/1166
  44747. }
  44748. },
  44749. },
  44750. [
  44751. {
  44752. name: "Smol",
  44753. height: math.unit(3, "feet")
  44754. },
  44755. {
  44756. name: "Normal",
  44757. height: math.unit(6, "feet"),
  44758. default: true
  44759. },
  44760. ]
  44761. ))
  44762. characterMakers.push(() => makeCharacter(
  44763. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44764. {
  44765. front: {
  44766. height: math.unit(6, "feet"),
  44767. weight: math.unit(125, "lb"),
  44768. name: "Front",
  44769. image: {
  44770. source: "./media/characters/jack-thatcher/front.svg",
  44771. extra: 1474/1370,
  44772. bottom: 26/1500
  44773. }
  44774. },
  44775. back: {
  44776. height: math.unit(6, "feet"),
  44777. weight: math.unit(125, "lb"),
  44778. name: "Back",
  44779. image: {
  44780. source: "./media/characters/jack-thatcher/back.svg",
  44781. extra: 1489/1384,
  44782. bottom: 18/1507
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(6, "feet"),
  44790. default: true
  44791. },
  44792. {
  44793. name: "Macro",
  44794. height: math.unit(75, "feet")
  44795. },
  44796. {
  44797. name: "Macro-er",
  44798. height: math.unit(250, "feet")
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44804. {
  44805. front: {
  44806. height: math.unit(7, "feet"),
  44807. weight: math.unit(110, "kg"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/max-hyper/front.svg",
  44811. extra: 1969/1881,
  44812. bottom: 49/2018
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(7, "feet"),
  44820. default: true
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(5 + 5/12, "feet"),
  44829. weight: math.unit(160, "lb"),
  44830. name: "Front",
  44831. image: {
  44832. source: "./media/characters/spook/front.svg",
  44833. extra: 794/791,
  44834. bottom: 54/848
  44835. }
  44836. },
  44837. back: {
  44838. height: math.unit(5 + 5/12, "feet"),
  44839. weight: math.unit(160, "lb"),
  44840. name: "Back",
  44841. image: {
  44842. source: "./media/characters/spook/back.svg",
  44843. extra: 812/798,
  44844. bottom: 32/844
  44845. }
  44846. },
  44847. },
  44848. [
  44849. {
  44850. name: "Normal",
  44851. height: math.unit(5 + 5/12, "feet"),
  44852. default: true
  44853. },
  44854. ]
  44855. ))
  44856. characterMakers.push(() => makeCharacter(
  44857. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44858. {
  44859. front: {
  44860. height: math.unit(18, "feet"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/xeaduulix/front.svg",
  44864. extra: 1380/1166,
  44865. bottom: 110/1490
  44866. }
  44867. },
  44868. back: {
  44869. height: math.unit(18, "feet"),
  44870. name: "Back",
  44871. image: {
  44872. source: "./media/characters/xeaduulix/back.svg",
  44873. extra: 1592/1170,
  44874. bottom: 128/1720
  44875. }
  44876. },
  44877. frontNsfw: {
  44878. height: math.unit(18, "feet"),
  44879. name: "Front (NSFW)",
  44880. image: {
  44881. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44882. extra: 1380/1166,
  44883. bottom: 110/1490
  44884. }
  44885. },
  44886. backNsfw: {
  44887. height: math.unit(18, "feet"),
  44888. name: "Back (NSFW)",
  44889. image: {
  44890. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44891. extra: 1592/1170,
  44892. bottom: 128/1720
  44893. }
  44894. },
  44895. },
  44896. [
  44897. {
  44898. name: "Normal",
  44899. height: math.unit(18, "feet"),
  44900. default: true
  44901. },
  44902. ]
  44903. ))
  44904. characterMakers.push(() => makeCharacter(
  44905. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44906. {
  44907. spreadWings: {
  44908. height: math.unit(20, "feet"),
  44909. name: "Spread Wings",
  44910. image: {
  44911. source: "./media/characters/fledge/spread-wings.svg",
  44912. extra: 693/635,
  44913. bottom: 26/719
  44914. }
  44915. },
  44916. front: {
  44917. height: math.unit(20, "feet"),
  44918. name: "Front",
  44919. image: {
  44920. source: "./media/characters/fledge/front.svg",
  44921. extra: 684/637,
  44922. bottom: 18/702
  44923. }
  44924. },
  44925. frontAlt: {
  44926. height: math.unit(20, "feet"),
  44927. name: "Front (Alt)",
  44928. image: {
  44929. source: "./media/characters/fledge/front-alt.svg",
  44930. extra: 708/664,
  44931. bottom: 13/721
  44932. }
  44933. },
  44934. back: {
  44935. height: math.unit(20, "feet"),
  44936. name: "Back",
  44937. image: {
  44938. source: "./media/characters/fledge/back.svg",
  44939. extra: 718/634,
  44940. bottom: 22/740
  44941. }
  44942. },
  44943. head: {
  44944. height: math.unit(5.55, "feet"),
  44945. name: "Head",
  44946. image: {
  44947. source: "./media/characters/fledge/head.svg"
  44948. }
  44949. },
  44950. headAlt: {
  44951. height: math.unit(5.1, "feet"),
  44952. name: "Head (Alt)",
  44953. image: {
  44954. source: "./media/characters/fledge/head-alt.svg"
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Small",
  44961. height: math.unit(6 + 2/12, "feet")
  44962. },
  44963. {
  44964. name: "Big",
  44965. height: math.unit(20, "feet"),
  44966. default: true
  44967. },
  44968. {
  44969. name: "Giant",
  44970. height: math.unit(100, "feet")
  44971. },
  44972. {
  44973. name: "Macro",
  44974. height: math.unit(200, "feet")
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(1, "meter"),
  44983. name: "Front",
  44984. image: {
  44985. source: "./media/characters/atlas-morenai/front.svg",
  44986. extra: 1275/1043,
  44987. bottom: 19/1294
  44988. }
  44989. },
  44990. back: {
  44991. height: math.unit(1, "meter"),
  44992. name: "Back",
  44993. image: {
  44994. source: "./media/characters/atlas-morenai/back.svg",
  44995. extra: 1141/1001,
  44996. bottom: 25/1166
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(1, "meter"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Magic-Infused",
  45008. height: math.unit(5, "meters")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(5, "meters"),
  45017. name: "Front",
  45018. image: {
  45019. source: "./media/characters/cintia/front.svg",
  45020. extra: 1312/1228,
  45021. bottom: 38/1350
  45022. }
  45023. },
  45024. back: {
  45025. height: math.unit(5, "meters"),
  45026. name: "Back",
  45027. image: {
  45028. source: "./media/characters/cintia/back.svg",
  45029. extra: 1260/1166,
  45030. bottom: 98/1358
  45031. }
  45032. },
  45033. frontDick: {
  45034. height: math.unit(5, "meters"),
  45035. name: "Front (Dick)",
  45036. image: {
  45037. source: "./media/characters/cintia/front-dick.svg",
  45038. extra: 1312/1228,
  45039. bottom: 38/1350
  45040. }
  45041. },
  45042. backDick: {
  45043. height: math.unit(5, "meters"),
  45044. name: "Back (Dick)",
  45045. image: {
  45046. source: "./media/characters/cintia/back-dick.svg",
  45047. extra: 1260/1166,
  45048. bottom: 98/1358
  45049. }
  45050. },
  45051. bust: {
  45052. height: math.unit(1.97, "meters"),
  45053. name: "Bust",
  45054. image: {
  45055. source: "./media/characters/cintia/bust.svg",
  45056. extra: 617/565,
  45057. bottom: 0/617
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(5, "meters"),
  45065. default: true
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45071. {
  45072. side: {
  45073. height: math.unit(100, "feet"),
  45074. name: "Side",
  45075. image: {
  45076. source: "./media/characters/denora/side.svg",
  45077. extra: 875/803,
  45078. bottom: 9/884
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Standard",
  45085. height: math.unit(100, "feet"),
  45086. default: true
  45087. },
  45088. {
  45089. name: "Grand",
  45090. height: math.unit(1000, "feet")
  45091. },
  45092. {
  45093. name: "Conquering",
  45094. height: math.unit(10000, "feet")
  45095. },
  45096. ]
  45097. ))
  45098. characterMakers.push(() => makeCharacter(
  45099. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45100. {
  45101. dressed: {
  45102. height: math.unit(8 + 5/12, "feet"),
  45103. weight: math.unit(700, "lb"),
  45104. name: "Dressed",
  45105. image: {
  45106. source: "./media/characters/kiva/dressed.svg",
  45107. extra: 1102/1055,
  45108. bottom: 60/1162
  45109. }
  45110. },
  45111. nude: {
  45112. height: math.unit(8 + 5/12, "feet"),
  45113. weight: math.unit(700, "lb"),
  45114. name: "Nude",
  45115. image: {
  45116. source: "./media/characters/kiva/nude.svg",
  45117. extra: 1102/1055,
  45118. bottom: 60/1162
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Base Height",
  45125. height: math.unit(8 + 5/12, "feet"),
  45126. default: true
  45127. },
  45128. {
  45129. name: "Macro",
  45130. height: math.unit(100, "feet")
  45131. },
  45132. {
  45133. name: "Max",
  45134. height: math.unit(3280, "feet")
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45140. {
  45141. front: {
  45142. height: math.unit(6 + 8/12, "feet"),
  45143. weight: math.unit(250, "lb"),
  45144. name: "Front",
  45145. image: {
  45146. source: "./media/characters/ztragon/front.svg",
  45147. extra: 1825/1684,
  45148. bottom: 98/1923
  45149. }
  45150. },
  45151. },
  45152. [
  45153. {
  45154. name: "Normal",
  45155. height: math.unit(6 + 8/12, "feet"),
  45156. default: true
  45157. },
  45158. {
  45159. name: "Macro",
  45160. height: math.unit(80, "feet")
  45161. },
  45162. ]
  45163. ))
  45164. characterMakers.push(() => makeCharacter(
  45165. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45166. {
  45167. front: {
  45168. height: math.unit(10.4, "feet"),
  45169. weight: math.unit(2, "tons"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/yesenia/front.svg",
  45173. extra: 1479/1474,
  45174. bottom: 233/1712
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(10.4, "feet"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45188. {
  45189. normal: {
  45190. height: math.unit(6 + 1/12, "feet"),
  45191. weight: math.unit(180, "lb"),
  45192. name: "Normal",
  45193. image: {
  45194. source: "./media/characters/leanne-lycheborne/normal.svg",
  45195. extra: 1748/1660,
  45196. bottom: 98/1846
  45197. }
  45198. },
  45199. were: {
  45200. height: math.unit(12, "feet"),
  45201. weight: math.unit(1600, "lb"),
  45202. name: "Were",
  45203. image: {
  45204. source: "./media/characters/leanne-lycheborne/were.svg",
  45205. extra: 1485/1432,
  45206. bottom: 66/1551
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(6 + 1/12, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45220. {
  45221. side: {
  45222. height: math.unit(13, "feet"),
  45223. name: "Side",
  45224. image: {
  45225. source: "./media/characters/kira-tyler/side.svg",
  45226. extra: 693/393,
  45227. bottom: 58/751
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(13, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45241. {
  45242. front: {
  45243. height: math.unit(10.3, "feet"),
  45244. weight: math.unit(150, "lb"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/blaze/front.svg",
  45248. extra: 1378/1286,
  45249. bottom: 172/1550
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(10.3, "feet"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45263. {
  45264. side: {
  45265. height: math.unit(2, "meters"),
  45266. weight: math.unit(400, "kg"),
  45267. name: "Side",
  45268. image: {
  45269. source: "./media/characters/anu/side.svg",
  45270. extra: 506/394,
  45271. bottom: 18/524
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Humanoid",
  45278. height: math.unit(2, "meters")
  45279. },
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(5, "meters"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 5/12, "feet"),
  45292. weight: math.unit(170, "lb"),
  45293. name: "Front",
  45294. image: {
  45295. source: "./media/characters/synx-the-lynx/front.svg",
  45296. extra: 1893/1745,
  45297. bottom: 17/1910
  45298. }
  45299. },
  45300. side: {
  45301. height: math.unit(5 + 5/12, "feet"),
  45302. weight: math.unit(170, "lb"),
  45303. name: "Side",
  45304. image: {
  45305. source: "./media/characters/synx-the-lynx/side.svg",
  45306. extra: 1884/1740,
  45307. bottom: 39/1923
  45308. }
  45309. },
  45310. back: {
  45311. height: math.unit(5 + 5/12, "feet"),
  45312. weight: math.unit(170, "lb"),
  45313. name: "Back",
  45314. image: {
  45315. source: "./media/characters/synx-the-lynx/back.svg",
  45316. extra: 1903/1755,
  45317. bottom: 14/1917
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(5 + 5/12, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45331. {
  45332. back: {
  45333. height: math.unit(15, "feet"),
  45334. name: "Back",
  45335. image: {
  45336. source: "./media/characters/nadezda-fex/back.svg",
  45337. extra: 1695/1481,
  45338. bottom: 25/1720
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(15, "feet"),
  45346. default: true
  45347. },
  45348. {
  45349. name: "Macro",
  45350. height: math.unit(2.5, "miles")
  45351. },
  45352. {
  45353. name: "Goddess",
  45354. height: math.unit(2, "multiverses")
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(216, "cm"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/lev/front.svg",
  45366. extra: 1728/1670,
  45367. bottom: 82/1810
  45368. }
  45369. },
  45370. back: {
  45371. height: math.unit(216, "cm"),
  45372. name: "Back",
  45373. image: {
  45374. source: "./media/characters/lev/back.svg",
  45375. extra: 1738/1675,
  45376. bottom: 24/1762
  45377. }
  45378. },
  45379. dressed: {
  45380. height: math.unit(216, "cm"),
  45381. name: "Dressed",
  45382. image: {
  45383. source: "./media/characters/lev/dressed.svg",
  45384. extra: 1397/1351,
  45385. bottom: 73/1470
  45386. }
  45387. },
  45388. head: {
  45389. height: math.unit(0.51, "meter"),
  45390. name: "Head",
  45391. image: {
  45392. source: "./media/characters/lev/head.svg"
  45393. }
  45394. },
  45395. },
  45396. [
  45397. {
  45398. name: "Normal",
  45399. height: math.unit(216, "cm"),
  45400. default: true
  45401. },
  45402. {
  45403. name: "Relatively Macro",
  45404. height: math.unit(80, "meters")
  45405. },
  45406. {
  45407. name: "Megamacro",
  45408. height: math.unit(21600, "meters")
  45409. },
  45410. {
  45411. name: "Megamacro+",
  45412. height: math.unit(64800, "meters")
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(2, "meters"),
  45421. weight: math.unit(80, "kg"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/moka/front.svg",
  45425. extra: 1337/1255,
  45426. bottom: 58/1395
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Micro",
  45433. height: math.unit(15, "cm")
  45434. },
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(2, "meters"),
  45438. default: true
  45439. },
  45440. {
  45441. name: "Macro",
  45442. height: math.unit(20, "meters"),
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(9, "feet"),
  45451. weight: math.unit(240, "lb"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/kuzco/front.svg",
  45455. extra: 1593/1487,
  45456. bottom: 32/1625
  45457. }
  45458. },
  45459. side: {
  45460. height: math.unit(9, "feet"),
  45461. weight: math.unit(240, "lb"),
  45462. name: "Side",
  45463. image: {
  45464. source: "./media/characters/kuzco/side.svg",
  45465. extra: 1575/1485,
  45466. bottom: 30/1605
  45467. }
  45468. },
  45469. back: {
  45470. height: math.unit(9, "feet"),
  45471. weight: math.unit(240, "lb"),
  45472. name: "Back",
  45473. image: {
  45474. source: "./media/characters/kuzco/back.svg",
  45475. extra: 1603/1514,
  45476. bottom: 14/1617
  45477. }
  45478. },
  45479. },
  45480. [
  45481. {
  45482. name: "Normal",
  45483. height: math.unit(9, "feet"),
  45484. default: true
  45485. },
  45486. ]
  45487. ))
  45488. characterMakers.push(() => makeCharacter(
  45489. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45490. {
  45491. side: {
  45492. height: math.unit(2, "meters"),
  45493. weight: math.unit(300, "kg"),
  45494. name: "Side",
  45495. image: {
  45496. source: "./media/characters/ceruleus/side.svg",
  45497. extra: 1068/974,
  45498. bottom: 126/1194
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(16, "meters"),
  45506. default: true
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45512. {
  45513. front: {
  45514. height: math.unit(9, "feet"),
  45515. weight: math.unit(500, "kg"),
  45516. name: "Front",
  45517. image: {
  45518. source: "./media/characters/acouya/front.svg",
  45519. extra: 1660/1473,
  45520. bottom: 28/1688
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(9, "feet"),
  45528. default: true
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45534. {
  45535. front: {
  45536. height: math.unit(5 + 6/12, "feet"),
  45537. weight: math.unit(195, "lb"),
  45538. name: "Front",
  45539. image: {
  45540. source: "./media/characters/vant/front.svg",
  45541. extra: 1396/1320,
  45542. bottom: 20/1416
  45543. }
  45544. },
  45545. back: {
  45546. height: math.unit(5 + 6/12, "feet"),
  45547. weight: math.unit(195, "lb"),
  45548. name: "Back",
  45549. image: {
  45550. source: "./media/characters/vant/back.svg",
  45551. extra: 1396/1320,
  45552. bottom: 20/1416
  45553. }
  45554. },
  45555. maw: {
  45556. height: math.unit(0.75, "feet"),
  45557. name: "Maw",
  45558. image: {
  45559. source: "./media/characters/vant/maw.svg"
  45560. }
  45561. },
  45562. paw: {
  45563. height: math.unit(1.07, "feet"),
  45564. name: "Paw",
  45565. image: {
  45566. source: "./media/characters/vant/paw.svg"
  45567. }
  45568. },
  45569. },
  45570. [
  45571. {
  45572. name: "Micro",
  45573. height: math.unit(0.25, "inches")
  45574. },
  45575. {
  45576. name: "Normal",
  45577. height: math.unit(5 + 6/12, "feet"),
  45578. default: true
  45579. },
  45580. {
  45581. name: "Macro",
  45582. height: math.unit(75, "feet")
  45583. },
  45584. ]
  45585. ))
  45586. characterMakers.push(() => makeCharacter(
  45587. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45588. {
  45589. front: {
  45590. height: math.unit(30, "meters"),
  45591. weight: math.unit(363, "tons"),
  45592. name: "Front",
  45593. image: {
  45594. source: "./media/characters/ahra/front.svg",
  45595. extra: 1914/1814,
  45596. bottom: 46/1960
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Macro",
  45603. height: math.unit(30, "meters"),
  45604. default: true
  45605. },
  45606. ]
  45607. ))
  45608. characterMakers.push(() => makeCharacter(
  45609. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45610. {
  45611. undressed: {
  45612. height: math.unit(2, "m"),
  45613. weight: math.unit(250, "kg"),
  45614. name: "Undressed",
  45615. image: {
  45616. source: "./media/characters/coriander/undressed.svg",
  45617. extra: 1757/1606,
  45618. bottom: 107/1864
  45619. }
  45620. },
  45621. dressed: {
  45622. height: math.unit(2, "m"),
  45623. weight: math.unit(250, "kg"),
  45624. name: "Dressed",
  45625. image: {
  45626. source: "./media/characters/coriander/dressed.svg",
  45627. extra: 1757/1606,
  45628. bottom: 107/1864
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(4, "meters"),
  45636. default: true
  45637. },
  45638. {
  45639. name: "XL",
  45640. height: math.unit(6, "meters")
  45641. },
  45642. {
  45643. name: "XXL",
  45644. height: math.unit(8, "meters")
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45650. {
  45651. front: {
  45652. height: math.unit(6, "feet"),
  45653. name: "Front",
  45654. image: {
  45655. source: "./media/characters/syrinx/front.svg",
  45656. extra: 1557/1259,
  45657. bottom: 171/1728
  45658. }
  45659. },
  45660. },
  45661. [
  45662. {
  45663. name: "Normal",
  45664. height: math.unit(6 + 3/12, "feet"),
  45665. default: true
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45671. {
  45672. front: {
  45673. height: math.unit(11 + 6/12, "feet"),
  45674. weight: math.unit(1.5, "tons"),
  45675. name: "Front",
  45676. image: {
  45677. source: "./media/characters/bor/front.svg",
  45678. extra: 1189/1109,
  45679. bottom: 170/1359
  45680. }
  45681. },
  45682. },
  45683. [
  45684. {
  45685. name: "Normal",
  45686. height: math.unit(11 + 6/12, "feet"),
  45687. default: true
  45688. },
  45689. {
  45690. name: "Macro",
  45691. height: math.unit(32 + 9/12, "feet")
  45692. },
  45693. ]
  45694. ))
  45695. characterMakers.push(() => makeCharacter(
  45696. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45697. {
  45698. anthro: {
  45699. height: math.unit(9, "feet"),
  45700. weight: math.unit(2076, "lb"),
  45701. name: "Anthro",
  45702. image: {
  45703. source: "./media/characters/abacus/anthro.svg",
  45704. extra: 1540/1494,
  45705. bottom: 233/1773
  45706. }
  45707. },
  45708. pigeon: {
  45709. height: math.unit(1, "feet"),
  45710. name: "Pigeon",
  45711. image: {
  45712. source: "./media/characters/abacus/pigeon.svg",
  45713. extra: 528/525,
  45714. bottom: 46/574
  45715. }
  45716. },
  45717. },
  45718. [
  45719. {
  45720. name: "Normal",
  45721. height: math.unit(9, "feet"),
  45722. default: true
  45723. },
  45724. ]
  45725. ))
  45726. characterMakers.push(() => makeCharacter(
  45727. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45728. {
  45729. side: {
  45730. height: math.unit(6, "feet"),
  45731. name: "Side",
  45732. image: {
  45733. source: "./media/characters/delkhan/side.svg",
  45734. extra: 1884/1786,
  45735. bottom: 308/2192
  45736. }
  45737. },
  45738. head: {
  45739. height: math.unit(3.38, "feet"),
  45740. name: "Head",
  45741. image: {
  45742. source: "./media/characters/delkhan/head.svg"
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(72, "feet"),
  45750. default: true
  45751. },
  45752. {
  45753. name: "Giant",
  45754. height: math.unit(172, "feet")
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45760. {
  45761. standing: {
  45762. height: math.unit(6, "feet"),
  45763. name: "Standing",
  45764. image: {
  45765. source: "./media/characters/euchidat/standing.svg",
  45766. extra: 1612/1553,
  45767. bottom: 116/1728
  45768. }
  45769. },
  45770. leaning: {
  45771. height: math.unit(6, "feet"),
  45772. name: "Leaning",
  45773. image: {
  45774. source: "./media/characters/euchidat/leaning.svg",
  45775. extra: 1719/1674,
  45776. bottom: 27/1746
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(175, "feet"),
  45784. default: true
  45785. },
  45786. {
  45787. name: "Megamacro",
  45788. height: math.unit(190, "miles")
  45789. },
  45790. {
  45791. name: "Gigamacro",
  45792. height: math.unit(190000, "miles")
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45798. {
  45799. front: {
  45800. height: math.unit(6, "feet"),
  45801. weight: math.unit(150, "lb"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/rebecca-stack/front.svg",
  45805. extra: 1256/1201,
  45806. bottom: 18/1274
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(5 + 8/12, "feet"),
  45814. default: true
  45815. },
  45816. {
  45817. name: "Demolitionist",
  45818. height: math.unit(200, "feet")
  45819. },
  45820. {
  45821. name: "Out of Control",
  45822. height: math.unit(2, "miles")
  45823. },
  45824. {
  45825. name: "Giga",
  45826. height: math.unit(7200, "miles")
  45827. },
  45828. ]
  45829. ))
  45830. characterMakers.push(() => makeCharacter(
  45831. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45832. {
  45833. front: {
  45834. height: math.unit(6, "feet"),
  45835. weight: math.unit(150, "lb"),
  45836. name: "Front",
  45837. image: {
  45838. source: "./media/characters/jenny-cartwright/front.svg",
  45839. extra: 1384/1376,
  45840. bottom: 58/1442
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(6 + 7/12, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Librarian",
  45852. height: math.unit(55, "feet")
  45853. },
  45854. {
  45855. name: "Sightseer",
  45856. height: math.unit(50, "miles")
  45857. },
  45858. {
  45859. name: "Giga",
  45860. height: math.unit(30000, "miles")
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45866. {
  45867. nude: {
  45868. height: math.unit(8, "feet"),
  45869. weight: math.unit(225, "lb"),
  45870. name: "Nude",
  45871. image: {
  45872. source: "./media/characters/marvy/nude.svg",
  45873. extra: 1900/1683,
  45874. bottom: 89/1989
  45875. }
  45876. },
  45877. dressed: {
  45878. height: math.unit(8, "feet"),
  45879. weight: math.unit(225, "lb"),
  45880. name: "Dressed",
  45881. image: {
  45882. source: "./media/characters/marvy/dressed.svg",
  45883. extra: 1900/1683,
  45884. bottom: 89/1989
  45885. }
  45886. },
  45887. head: {
  45888. height: math.unit(2.85, "feet"),
  45889. name: "Head",
  45890. image: {
  45891. source: "./media/characters/marvy/head.svg"
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(8, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45905. {
  45906. front: {
  45907. height: math.unit(8, "feet"),
  45908. weight: math.unit(250, "lb"),
  45909. name: "Front",
  45910. image: {
  45911. source: "./media/characters/leah/front.svg",
  45912. extra: 1257/1149,
  45913. bottom: 109/1366
  45914. }
  45915. },
  45916. },
  45917. [
  45918. {
  45919. name: "Normal",
  45920. height: math.unit(8, "feet"),
  45921. default: true
  45922. },
  45923. {
  45924. name: "Minimacro",
  45925. height: math.unit(40, "feet")
  45926. },
  45927. {
  45928. name: "Macro",
  45929. height: math.unit(124, "feet")
  45930. },
  45931. {
  45932. name: "Megamacro",
  45933. height: math.unit(850, "feet")
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45939. {
  45940. side: {
  45941. height: math.unit(13 + 6/12, "feet"),
  45942. weight: math.unit(3200, "lb"),
  45943. name: "Side",
  45944. image: {
  45945. source: "./media/characters/alvir/side.svg",
  45946. extra: 896/589,
  45947. bottom: 26/922
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(13 + 6/12, "feet"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45961. {
  45962. front: {
  45963. height: math.unit(5 + 4/12, "feet"),
  45964. weight: math.unit(236, "lb"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/zaina-khalil/front.svg",
  45968. extra: 1533/1485,
  45969. bottom: 94/1627
  45970. }
  45971. },
  45972. side: {
  45973. height: math.unit(5 + 4/12, "feet"),
  45974. weight: math.unit(236, "lb"),
  45975. name: "Side",
  45976. image: {
  45977. source: "./media/characters/zaina-khalil/side.svg",
  45978. extra: 1537/1498,
  45979. bottom: 66/1603
  45980. }
  45981. },
  45982. back: {
  45983. height: math.unit(5 + 4/12, "feet"),
  45984. weight: math.unit(236, "lb"),
  45985. name: "Back",
  45986. image: {
  45987. source: "./media/characters/zaina-khalil/back.svg",
  45988. extra: 1546/1494,
  45989. bottom: 89/1635
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Normal",
  45996. height: math.unit(5 + 4/12, "feet"),
  45997. default: true
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46003. {
  46004. side: {
  46005. height: math.unit(12, "feet"),
  46006. weight: math.unit(4000, "lb"),
  46007. name: "Side",
  46008. image: {
  46009. source: "./media/characters/terry/side.svg",
  46010. extra: 1518/1439,
  46011. bottom: 149/1667
  46012. }
  46013. },
  46014. },
  46015. [
  46016. {
  46017. name: "Normal",
  46018. height: math.unit(12, "feet"),
  46019. default: true
  46020. },
  46021. ]
  46022. ))
  46023. characterMakers.push(() => makeCharacter(
  46024. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46025. {
  46026. front: {
  46027. height: math.unit(12, "feet"),
  46028. weight: math.unit(1500, "lb"),
  46029. name: "Front",
  46030. image: {
  46031. source: "./media/characters/kahea/front.svg",
  46032. extra: 1722/1617,
  46033. bottom: 179/1901
  46034. }
  46035. },
  46036. },
  46037. [
  46038. {
  46039. name: "Normal",
  46040. height: math.unit(12, "feet"),
  46041. default: true
  46042. },
  46043. ]
  46044. ))
  46045. characterMakers.push(() => makeCharacter(
  46046. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46047. {
  46048. demonFront: {
  46049. height: math.unit(36, "feet"),
  46050. name: "Front",
  46051. image: {
  46052. source: "./media/characters/alex-xuria/demon-front.svg",
  46053. extra: 1705/1673,
  46054. bottom: 198/1903
  46055. },
  46056. form: "demon",
  46057. default: true
  46058. },
  46059. demonBack: {
  46060. height: math.unit(36, "feet"),
  46061. name: "Back",
  46062. image: {
  46063. source: "./media/characters/alex-xuria/demon-back.svg",
  46064. extra: 1725/1693,
  46065. bottom: 70/1795
  46066. },
  46067. form: "demon"
  46068. },
  46069. demonHead: {
  46070. height: math.unit(2.14, "meters"),
  46071. name: "Head",
  46072. image: {
  46073. source: "./media/characters/alex-xuria/demon-head.svg"
  46074. },
  46075. form: "demon"
  46076. },
  46077. demonHand: {
  46078. height: math.unit(1.61, "meters"),
  46079. name: "Hand",
  46080. image: {
  46081. source: "./media/characters/alex-xuria/demon-hand.svg"
  46082. },
  46083. form: "demon"
  46084. },
  46085. demonPaw: {
  46086. height: math.unit(1.35, "meters"),
  46087. name: "Paw",
  46088. image: {
  46089. source: "./media/characters/alex-xuria/demon-paw.svg"
  46090. },
  46091. form: "demon"
  46092. },
  46093. demonFoot: {
  46094. height: math.unit(2.2, "meters"),
  46095. name: "Foot",
  46096. image: {
  46097. source: "./media/characters/alex-xuria/demon-foot.svg"
  46098. },
  46099. form: "demon"
  46100. },
  46101. demonCock: {
  46102. height: math.unit(1.74, "meters"),
  46103. name: "Cock",
  46104. image: {
  46105. source: "./media/characters/alex-xuria/demon-cock.svg"
  46106. },
  46107. form: "demon"
  46108. },
  46109. demonTailClosed: {
  46110. height: math.unit(1.47, "meters"),
  46111. name: "Tail (Closed)",
  46112. image: {
  46113. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46114. },
  46115. form: "demon"
  46116. },
  46117. demonTailOpen: {
  46118. height: math.unit(2.85, "meters"),
  46119. name: "Tail (Open)",
  46120. image: {
  46121. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46122. },
  46123. form: "demon"
  46124. },
  46125. incubusFront: {
  46126. height: math.unit(12, "feet"),
  46127. name: "Front",
  46128. image: {
  46129. source: "./media/characters/alex-xuria/incubus-front.svg",
  46130. extra: 1754/1677,
  46131. bottom: 125/1879
  46132. },
  46133. form: "incubus",
  46134. default: true
  46135. },
  46136. incubusBack: {
  46137. height: math.unit(12, "feet"),
  46138. name: "Back",
  46139. image: {
  46140. source: "./media/characters/alex-xuria/incubus-back.svg",
  46141. extra: 1702/1647,
  46142. bottom: 30/1732
  46143. },
  46144. form: "incubus"
  46145. },
  46146. incubusHead: {
  46147. height: math.unit(3.45, "feet"),
  46148. name: "Head",
  46149. image: {
  46150. source: "./media/characters/alex-xuria/incubus-head.svg"
  46151. },
  46152. form: "incubus"
  46153. },
  46154. rabbitFront: {
  46155. height: math.unit(6, "feet"),
  46156. name: "Front",
  46157. image: {
  46158. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46159. extra: 1369/1349,
  46160. bottom: 45/1414
  46161. },
  46162. form: "rabbit",
  46163. default: true
  46164. },
  46165. rabbitSide: {
  46166. height: math.unit(6, "feet"),
  46167. name: "Side",
  46168. image: {
  46169. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46170. extra: 1370/1356,
  46171. bottom: 37/1407
  46172. },
  46173. form: "rabbit"
  46174. },
  46175. rabbitBack: {
  46176. height: math.unit(6, "feet"),
  46177. name: "Back",
  46178. image: {
  46179. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46180. extra: 1375/1358,
  46181. bottom: 43/1418
  46182. },
  46183. form: "rabbit"
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(6, "feet"),
  46190. default: true,
  46191. form: "rabbit"
  46192. },
  46193. {
  46194. name: "Incubus",
  46195. height: math.unit(12, "feet"),
  46196. default: true,
  46197. form: "incubus"
  46198. },
  46199. {
  46200. name: "Demon",
  46201. height: math.unit(36, "feet"),
  46202. default: true,
  46203. form: "demon"
  46204. }
  46205. ],
  46206. {
  46207. "demon": {
  46208. name: "Demon",
  46209. default: true
  46210. },
  46211. "incubus": {
  46212. name: "Incubus",
  46213. },
  46214. "rabbit": {
  46215. name: "Rabbit"
  46216. }
  46217. }
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46221. {
  46222. front: {
  46223. height: math.unit(7 + 5/12, "feet"),
  46224. weight: math.unit(510, "lb"),
  46225. name: "Front",
  46226. image: {
  46227. source: "./media/characters/syrup/front.svg",
  46228. extra: 932/916,
  46229. bottom: 26/958
  46230. }
  46231. },
  46232. },
  46233. [
  46234. {
  46235. name: "Normal",
  46236. height: math.unit(7 + 5/12, "feet"),
  46237. default: true
  46238. },
  46239. {
  46240. name: "Big",
  46241. height: math.unit(50, "feet")
  46242. },
  46243. {
  46244. name: "Macro",
  46245. height: math.unit(300, "feet")
  46246. },
  46247. {
  46248. name: "Megamacro",
  46249. height: math.unit(1, "mile")
  46250. },
  46251. ]
  46252. ))
  46253. characterMakers.push(() => makeCharacter(
  46254. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46255. {
  46256. front: {
  46257. height: math.unit(6 + 9/12, "feet"),
  46258. name: "Front",
  46259. image: {
  46260. source: "./media/characters/zeimne/front.svg",
  46261. extra: 1969/1806,
  46262. bottom: 53/2022
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(6 + 9/12, "feet"),
  46270. default: true
  46271. },
  46272. {
  46273. name: "Giant",
  46274. height: math.unit(550, "feet")
  46275. },
  46276. {
  46277. name: "Mega",
  46278. height: math.unit(3, "miles")
  46279. },
  46280. {
  46281. name: "Giga",
  46282. height: math.unit(250, "miles")
  46283. },
  46284. {
  46285. name: "Tera",
  46286. height: math.unit(1, "AU")
  46287. },
  46288. ]
  46289. ))
  46290. characterMakers.push(() => makeCharacter(
  46291. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46292. {
  46293. front: {
  46294. height: math.unit(5 + 2/12, "feet"),
  46295. name: "Front",
  46296. image: {
  46297. source: "./media/characters/grar/front.svg",
  46298. extra: 1331/1119,
  46299. bottom: 60/1391
  46300. }
  46301. },
  46302. back: {
  46303. height: math.unit(5 + 2/12, "feet"),
  46304. name: "Back",
  46305. image: {
  46306. source: "./media/characters/grar/back.svg",
  46307. extra: 1385/1169,
  46308. bottom: 23/1408
  46309. }
  46310. },
  46311. },
  46312. [
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(5 + 2/12, "feet"),
  46316. default: true
  46317. },
  46318. ]
  46319. ))
  46320. characterMakers.push(() => makeCharacter(
  46321. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46322. {
  46323. front: {
  46324. height: math.unit(13 + 7/12, "feet"),
  46325. weight: math.unit(2200, "lb"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/endraya/front.svg",
  46329. extra: 1289/1215,
  46330. bottom: 50/1339
  46331. }
  46332. },
  46333. nude: {
  46334. height: math.unit(13 + 7/12, "feet"),
  46335. weight: math.unit(2200, "lb"),
  46336. name: "Nude",
  46337. image: {
  46338. source: "./media/characters/endraya/nude.svg",
  46339. extra: 1247/1171,
  46340. bottom: 40/1287
  46341. }
  46342. },
  46343. head: {
  46344. height: math.unit(2.6, "feet"),
  46345. name: "Head",
  46346. image: {
  46347. source: "./media/characters/endraya/head.svg"
  46348. }
  46349. },
  46350. slit: {
  46351. height: math.unit(3.4, "feet"),
  46352. name: "Slit",
  46353. image: {
  46354. source: "./media/characters/endraya/slit.svg"
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(13 + 7/12, "feet"),
  46362. default: true
  46363. },
  46364. {
  46365. name: "Macro",
  46366. height: math.unit(200, "feet")
  46367. },
  46368. ]
  46369. ))
  46370. characterMakers.push(() => makeCharacter(
  46371. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46372. {
  46373. front: {
  46374. height: math.unit(1.81, "meters"),
  46375. weight: math.unit(69, "kg"),
  46376. name: "Front",
  46377. image: {
  46378. source: "./media/characters/rodryana/front.svg",
  46379. extra: 2002/1921,
  46380. bottom: 53/2055
  46381. }
  46382. },
  46383. back: {
  46384. height: math.unit(1.81, "meters"),
  46385. weight: math.unit(69, "kg"),
  46386. name: "Back",
  46387. image: {
  46388. source: "./media/characters/rodryana/back.svg",
  46389. extra: 1993/1926,
  46390. bottom: 48/2041
  46391. }
  46392. },
  46393. maw: {
  46394. height: math.unit(0.19769417475, "meters"),
  46395. name: "Maw",
  46396. image: {
  46397. source: "./media/characters/rodryana/maw.svg"
  46398. }
  46399. },
  46400. slit: {
  46401. height: math.unit(0.31631067961, "meters"),
  46402. name: "Slit",
  46403. image: {
  46404. source: "./media/characters/rodryana/slit.svg"
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Normal",
  46411. height: math.unit(1.81, "meters")
  46412. },
  46413. {
  46414. name: "Mini Macro",
  46415. height: math.unit(181, "meters")
  46416. },
  46417. {
  46418. name: "Macro",
  46419. height: math.unit(452, "meters"),
  46420. default: true
  46421. },
  46422. {
  46423. name: "Mega Macro",
  46424. height: math.unit(1.375, "km")
  46425. },
  46426. {
  46427. name: "Giga Macro",
  46428. height: math.unit(13.575, "km")
  46429. },
  46430. ]
  46431. ))
  46432. characterMakers.push(() => makeCharacter(
  46433. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46434. {
  46435. front: {
  46436. height: math.unit(6, "feet"),
  46437. weight: math.unit(1000, "lb"),
  46438. name: "Front",
  46439. image: {
  46440. source: "./media/characters/asaya/front.svg",
  46441. extra: 1460/1200,
  46442. bottom: 71/1531
  46443. }
  46444. },
  46445. },
  46446. [
  46447. {
  46448. name: "Normal",
  46449. height: math.unit(8, "km"),
  46450. default: true
  46451. },
  46452. ]
  46453. ))
  46454. characterMakers.push(() => makeCharacter(
  46455. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46456. {
  46457. front: {
  46458. height: math.unit(3.5, "meters"),
  46459. name: "Front",
  46460. image: {
  46461. source: "./media/characters/sarzu-and-israz/front.svg",
  46462. extra: 1570/1558,
  46463. bottom: 150/1720
  46464. },
  46465. },
  46466. back: {
  46467. height: math.unit(3.5, "meters"),
  46468. name: "Back",
  46469. image: {
  46470. source: "./media/characters/sarzu-and-israz/back.svg",
  46471. extra: 1523/1509,
  46472. bottom: 132/1655
  46473. },
  46474. },
  46475. frontFemale: {
  46476. height: math.unit(3.5, "meters"),
  46477. name: "Front (Female)",
  46478. image: {
  46479. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46480. extra: 1570/1558,
  46481. bottom: 150/1720
  46482. },
  46483. },
  46484. frontHerm: {
  46485. height: math.unit(3.5, "meters"),
  46486. name: "Front (Herm)",
  46487. image: {
  46488. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46489. extra: 1570/1558,
  46490. bottom: 150/1720
  46491. },
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(3.5, "meters"),
  46498. default: true,
  46499. },
  46500. {
  46501. name: "Macro",
  46502. height: math.unit(65.5, "meters"),
  46503. },
  46504. ],
  46505. ))
  46506. characterMakers.push(() => makeCharacter(
  46507. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46508. {
  46509. front: {
  46510. height: math.unit(6, "feet"),
  46511. weight: math.unit(250, "lb"),
  46512. name: "Front",
  46513. image: {
  46514. source: "./media/characters/zenimma/front.svg",
  46515. extra: 1346/1320,
  46516. bottom: 58/1404
  46517. }
  46518. },
  46519. back: {
  46520. height: math.unit(6, "feet"),
  46521. weight: math.unit(250, "lb"),
  46522. name: "Back",
  46523. image: {
  46524. source: "./media/characters/zenimma/back.svg",
  46525. extra: 1324/1308,
  46526. bottom: 44/1368
  46527. }
  46528. },
  46529. dick: {
  46530. height: math.unit(1.44, "feet"),
  46531. name: "Dick",
  46532. image: {
  46533. source: "./media/characters/zenimma/dick.svg"
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Canon Height",
  46540. height: math.unit(66, "miles"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46547. {
  46548. nude: {
  46549. height: math.unit(6, "feet"),
  46550. weight: math.unit(150, "lb"),
  46551. name: "Nude",
  46552. image: {
  46553. source: "./media/characters/shavon/nude.svg",
  46554. extra: 1242/1096,
  46555. bottom: 98/1340
  46556. }
  46557. },
  46558. dressed: {
  46559. height: math.unit(6, "feet"),
  46560. weight: math.unit(150, "lb"),
  46561. name: "Dressed",
  46562. image: {
  46563. source: "./media/characters/shavon/dressed.svg",
  46564. extra: 1242/1096,
  46565. bottom: 98/1340
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Macro",
  46572. height: math.unit(255, "feet"),
  46573. default: true
  46574. },
  46575. ]
  46576. ))
  46577. characterMakers.push(() => makeCharacter(
  46578. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46579. {
  46580. front: {
  46581. height: math.unit(6, "feet"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/steph/front.svg",
  46585. extra: 1430/1330,
  46586. bottom: 54/1484
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(6, "feet"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46600. {
  46601. front: {
  46602. height: math.unit(9, "feet"),
  46603. weight: math.unit(400, "lb"),
  46604. name: "Front",
  46605. image: {
  46606. source: "./media/characters/kil'aman/front.svg",
  46607. extra: 1210/1159,
  46608. bottom: 109/1319
  46609. }
  46610. },
  46611. head: {
  46612. height: math.unit(2.14, "feet"),
  46613. name: "Head",
  46614. image: {
  46615. source: "./media/characters/kil'aman/head.svg"
  46616. }
  46617. },
  46618. maw: {
  46619. height: math.unit(1.21, "feet"),
  46620. name: "Maw",
  46621. image: {
  46622. source: "./media/characters/kil'aman/maw.svg"
  46623. }
  46624. },
  46625. foot: {
  46626. height: math.unit(1.7, "feet"),
  46627. name: "Foot",
  46628. image: {
  46629. source: "./media/characters/kil'aman/foot.svg"
  46630. }
  46631. },
  46632. dick: {
  46633. height: math.unit(2.1, "feet"),
  46634. name: "Dick",
  46635. image: {
  46636. source: "./media/characters/kil'aman/dick.svg"
  46637. }
  46638. },
  46639. },
  46640. [
  46641. {
  46642. name: "Normal",
  46643. height: math.unit(9, "feet")
  46644. },
  46645. {
  46646. name: "Canon Height",
  46647. height: math.unit(10, "miles"),
  46648. default: true
  46649. },
  46650. {
  46651. name: "Maximum",
  46652. height: math.unit(6e9, "miles")
  46653. },
  46654. ]
  46655. ))
  46656. characterMakers.push(() => makeCharacter(
  46657. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46658. {
  46659. front: {
  46660. height: math.unit(90, "feet"),
  46661. weight: math.unit(675000, "lb"),
  46662. name: "Front",
  46663. image: {
  46664. source: "./media/characters/qadan/front.svg",
  46665. extra: 1012/1004,
  46666. bottom: 78/1090
  46667. }
  46668. },
  46669. back: {
  46670. height: math.unit(90, "feet"),
  46671. weight: math.unit(675000, "lb"),
  46672. name: "Back",
  46673. image: {
  46674. source: "./media/characters/qadan/back.svg",
  46675. extra: 1042/1031,
  46676. bottom: 55/1097
  46677. }
  46678. },
  46679. armored: {
  46680. height: math.unit(90, "feet"),
  46681. weight: math.unit(675000, "lb"),
  46682. name: "Armored",
  46683. image: {
  46684. source: "./media/characters/qadan/armored.svg",
  46685. extra: 1047/1037,
  46686. bottom: 48/1095
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Normal",
  46693. height: math.unit(90, "feet"),
  46694. default: true
  46695. },
  46696. ]
  46697. ))
  46698. characterMakers.push(() => makeCharacter(
  46699. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46700. {
  46701. front: {
  46702. height: math.unit(6, "feet"),
  46703. weight: math.unit(225, "lb"),
  46704. name: "Front",
  46705. image: {
  46706. source: "./media/characters/brooke/front.svg",
  46707. extra: 1050/1010,
  46708. bottom: 66/1116
  46709. }
  46710. },
  46711. back: {
  46712. height: math.unit(6, "feet"),
  46713. weight: math.unit(225, "lb"),
  46714. name: "Back",
  46715. image: {
  46716. source: "./media/characters/brooke/back.svg",
  46717. extra: 1053/1013,
  46718. bottom: 41/1094
  46719. }
  46720. },
  46721. dressed: {
  46722. height: math.unit(6, "feet"),
  46723. weight: math.unit(225, "lb"),
  46724. name: "Dressed",
  46725. image: {
  46726. source: "./media/characters/brooke/dressed.svg",
  46727. extra: 1050/1010,
  46728. bottom: 66/1116
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Canon Height",
  46735. height: math.unit(500, "miles"),
  46736. default: true
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46742. {
  46743. front: {
  46744. height: math.unit(6 + 2/12, "feet"),
  46745. weight: math.unit(210, "lb"),
  46746. name: "Front",
  46747. image: {
  46748. source: "./media/characters/wubs/front.svg",
  46749. extra: 1345/1325,
  46750. bottom: 70/1415
  46751. }
  46752. },
  46753. back: {
  46754. height: math.unit(6 + 2/12, "feet"),
  46755. weight: math.unit(210, "lb"),
  46756. name: "Back",
  46757. image: {
  46758. source: "./media/characters/wubs/back.svg",
  46759. extra: 1296/1275,
  46760. bottom: 58/1354
  46761. }
  46762. },
  46763. },
  46764. [
  46765. {
  46766. name: "Normal",
  46767. height: math.unit(6 + 2/12, "feet"),
  46768. default: true
  46769. },
  46770. {
  46771. name: "Macro",
  46772. height: math.unit(1000, "feet")
  46773. },
  46774. {
  46775. name: "Megamacro",
  46776. height: math.unit(1, "mile")
  46777. },
  46778. ]
  46779. ))
  46780. characterMakers.push(() => makeCharacter(
  46781. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46782. {
  46783. front: {
  46784. height: math.unit(4, "feet"),
  46785. weight: math.unit(120, "lb"),
  46786. name: "Front",
  46787. image: {
  46788. source: "./media/characters/blue/front.svg",
  46789. extra: 1636/1525,
  46790. bottom: 43/1679
  46791. }
  46792. },
  46793. back: {
  46794. height: math.unit(4, "feet"),
  46795. weight: math.unit(120, "lb"),
  46796. name: "Back",
  46797. image: {
  46798. source: "./media/characters/blue/back.svg",
  46799. extra: 1660/1560,
  46800. bottom: 57/1717
  46801. }
  46802. },
  46803. paws: {
  46804. height: math.unit(0.826, "feet"),
  46805. name: "Paws",
  46806. image: {
  46807. source: "./media/characters/blue/paws.svg"
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Micro",
  46814. height: math.unit(3, "inches")
  46815. },
  46816. {
  46817. name: "Normal",
  46818. height: math.unit(4, "feet"),
  46819. default: true
  46820. },
  46821. {
  46822. name: "Femenine Form",
  46823. height: math.unit(14, "feet")
  46824. },
  46825. {
  46826. name: "Werebat Form",
  46827. height: math.unit(18, "feet")
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46833. {
  46834. female: {
  46835. height: math.unit(7 + 4/12, "feet"),
  46836. weight: math.unit(243, "lb"),
  46837. name: "Female",
  46838. image: {
  46839. source: "./media/characters/kaya/female.svg",
  46840. extra: 975/898,
  46841. bottom: 34/1009
  46842. }
  46843. },
  46844. herm: {
  46845. height: math.unit(7 + 4/12, "feet"),
  46846. weight: math.unit(243, "lb"),
  46847. name: "Herm",
  46848. image: {
  46849. source: "./media/characters/kaya/herm.svg",
  46850. extra: 975/898,
  46851. bottom: 34/1009
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Normal",
  46858. height: math.unit(7 + 4/12, "feet"),
  46859. default: true
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46865. {
  46866. female: {
  46867. height: math.unit(9 + 4/12, "feet"),
  46868. weight: math.unit(398, "lb"),
  46869. name: "Female",
  46870. image: {
  46871. source: "./media/characters/kassandra/female.svg",
  46872. extra: 908/839,
  46873. bottom: 61/969
  46874. }
  46875. },
  46876. intersex: {
  46877. height: math.unit(9 + 4/12, "feet"),
  46878. weight: math.unit(398, "lb"),
  46879. name: "Intersex",
  46880. image: {
  46881. source: "./media/characters/kassandra/intersex.svg",
  46882. extra: 908/839,
  46883. bottom: 61/969
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(9 + 4/12, "feet"),
  46891. default: true
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46897. {
  46898. front: {
  46899. height: math.unit(3, "meters"),
  46900. name: "Front",
  46901. image: {
  46902. source: "./media/characters/amy/front.svg",
  46903. extra: 1380/1343,
  46904. bottom: 70/1450
  46905. }
  46906. },
  46907. back: {
  46908. height: math.unit(3, "meters"),
  46909. name: "Back",
  46910. image: {
  46911. source: "./media/characters/amy/back.svg",
  46912. extra: 1380/1347,
  46913. bottom: 66/1446
  46914. }
  46915. },
  46916. },
  46917. [
  46918. {
  46919. name: "Normal",
  46920. height: math.unit(3, "meters"),
  46921. default: true
  46922. },
  46923. ]
  46924. ))
  46925. characterMakers.push(() => makeCharacter(
  46926. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46927. {
  46928. side: {
  46929. height: math.unit(47, "cm"),
  46930. weight: math.unit(10.8, "kg"),
  46931. name: "Side",
  46932. image: {
  46933. source: "./media/characters/alphaschakal/side.svg",
  46934. extra: 1058/568,
  46935. bottom: 62/1120
  46936. }
  46937. },
  46938. back: {
  46939. height: math.unit(78, "cm"),
  46940. weight: math.unit(10.8, "kg"),
  46941. name: "Back",
  46942. image: {
  46943. source: "./media/characters/alphaschakal/back.svg",
  46944. extra: 1102/942,
  46945. bottom: 185/1287
  46946. }
  46947. },
  46948. head: {
  46949. height: math.unit(28, "cm"),
  46950. name: "Head",
  46951. image: {
  46952. source: "./media/characters/alphaschakal/head.svg",
  46953. extra: 696/508,
  46954. bottom: 0/696
  46955. }
  46956. },
  46957. paw: {
  46958. height: math.unit(16, "cm"),
  46959. name: "Paw",
  46960. image: {
  46961. source: "./media/characters/alphaschakal/paw.svg"
  46962. }
  46963. },
  46964. },
  46965. [
  46966. {
  46967. name: "Normal",
  46968. height: math.unit(47, "cm"),
  46969. default: true
  46970. },
  46971. {
  46972. name: "Macro",
  46973. height: math.unit(340, "cm")
  46974. },
  46975. ]
  46976. ))
  46977. characterMakers.push(() => makeCharacter(
  46978. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46979. {
  46980. front: {
  46981. height: math.unit(36, "earths"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/ecobyss/front.svg",
  46985. extra: 1282/1215,
  46986. bottom: 11/1293
  46987. }
  46988. },
  46989. back: {
  46990. height: math.unit(36, "earths"),
  46991. name: "Back",
  46992. image: {
  46993. source: "./media/characters/ecobyss/back.svg",
  46994. extra: 1291/1222,
  46995. bottom: 8/1299
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Normal",
  47002. height: math.unit(36, "earths"),
  47003. default: true
  47004. },
  47005. ]
  47006. ))
  47007. characterMakers.push(() => makeCharacter(
  47008. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47009. {
  47010. front: {
  47011. height: math.unit(12, "feet"),
  47012. name: "Front",
  47013. image: {
  47014. source: "./media/characters/vasuk/front.svg",
  47015. extra: 1326/1207,
  47016. bottom: 64/1390
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(12, "feet"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47030. {
  47031. side: {
  47032. height: math.unit(100, "feet"),
  47033. name: "Side",
  47034. image: {
  47035. source: "./media/characters/linneaus/side.svg",
  47036. extra: 987/807,
  47037. bottom: 47/1034
  47038. }
  47039. },
  47040. },
  47041. [
  47042. {
  47043. name: "Macro",
  47044. height: math.unit(100, "feet"),
  47045. default: true
  47046. },
  47047. ]
  47048. ))
  47049. characterMakers.push(() => makeCharacter(
  47050. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47051. {
  47052. front: {
  47053. height: math.unit(8, "feet"),
  47054. weight: math.unit(1200, "lb"),
  47055. name: "Front",
  47056. image: {
  47057. source: "./media/characters/nyterious-daligdig/front.svg",
  47058. extra: 1284/1094,
  47059. bottom: 84/1368
  47060. }
  47061. },
  47062. back: {
  47063. height: math.unit(8, "feet"),
  47064. weight: math.unit(1200, "lb"),
  47065. name: "Back",
  47066. image: {
  47067. source: "./media/characters/nyterious-daligdig/back.svg",
  47068. extra: 1301/1121,
  47069. bottom: 129/1430
  47070. }
  47071. },
  47072. mouth: {
  47073. height: math.unit(1.464, "feet"),
  47074. name: "Mouth",
  47075. image: {
  47076. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Small",
  47083. height: math.unit(8, "feet"),
  47084. default: true
  47085. },
  47086. {
  47087. name: "Normal",
  47088. height: math.unit(15, "feet")
  47089. },
  47090. {
  47091. name: "Macro",
  47092. height: math.unit(90, "feet")
  47093. },
  47094. ]
  47095. ))
  47096. characterMakers.push(() => makeCharacter(
  47097. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47098. {
  47099. front: {
  47100. height: math.unit(7 + 4/12, "feet"),
  47101. weight: math.unit(252, "lb"),
  47102. name: "Front",
  47103. image: {
  47104. source: "./media/characters/bandel/front.svg",
  47105. extra: 1946/1775,
  47106. bottom: 26/1972
  47107. }
  47108. },
  47109. back: {
  47110. height: math.unit(7 + 4/12, "feet"),
  47111. weight: math.unit(252, "lb"),
  47112. name: "Back",
  47113. image: {
  47114. source: "./media/characters/bandel/back.svg",
  47115. extra: 1940/1770,
  47116. bottom: 25/1965
  47117. }
  47118. },
  47119. maw: {
  47120. height: math.unit(2.15, "feet"),
  47121. name: "Maw",
  47122. image: {
  47123. source: "./media/characters/bandel/maw.svg"
  47124. }
  47125. },
  47126. stomach: {
  47127. height: math.unit(1.95, "feet"),
  47128. name: "Stomach",
  47129. image: {
  47130. source: "./media/characters/bandel/stomach.svg"
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Normal",
  47137. height: math.unit(7 + 4/12, "feet"),
  47138. default: true
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(10 + 5/12, "feet"),
  47147. weight: math.unit(773.5, "kg"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/zed/front.svg",
  47151. extra: 987/941,
  47152. bottom: 52/1039
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Short",
  47159. height: math.unit(5 + 4/12, "feet")
  47160. },
  47161. {
  47162. name: "Average",
  47163. height: math.unit(10 + 5/12, "feet"),
  47164. default: true
  47165. },
  47166. {
  47167. name: "Mini-Macro",
  47168. height: math.unit(24 + 9/12, "feet")
  47169. },
  47170. {
  47171. name: "Macro",
  47172. height: math.unit(249, "feet")
  47173. },
  47174. {
  47175. name: "Mega-Macro",
  47176. height: math.unit(12490, "feet")
  47177. },
  47178. {
  47179. name: "Giga-Macro",
  47180. height: math.unit(24.9, "miles")
  47181. },
  47182. {
  47183. name: "Tera-Macro",
  47184. height: math.unit(24900, "miles")
  47185. },
  47186. {
  47187. name: "Cosmic Scale",
  47188. height: math.unit(38.9, "lightyears")
  47189. },
  47190. {
  47191. name: "Universal Scale",
  47192. height: math.unit(138e12, "lightyears")
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47198. {
  47199. front: {
  47200. height: math.unit(1561, "inches"),
  47201. name: "Front",
  47202. image: {
  47203. source: "./media/characters/ivan/front.svg",
  47204. extra: 1126/1071,
  47205. bottom: 26/1152
  47206. }
  47207. },
  47208. back: {
  47209. height: math.unit(1561, "inches"),
  47210. name: "Back",
  47211. image: {
  47212. source: "./media/characters/ivan/back.svg",
  47213. extra: 1134/1079,
  47214. bottom: 30/1164
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Normal",
  47221. height: math.unit(1561, "inches"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(5 + 7/12, "feet"),
  47231. weight: math.unit(150, "lb"),
  47232. name: "Front",
  47233. image: {
  47234. source: "./media/characters/robin-arctic-hare/front.svg",
  47235. extra: 1148/974,
  47236. bottom: 20/1168
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(5 + 7/12, "feet"),
  47244. default: true
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47250. {
  47251. side: {
  47252. height: math.unit(5, "feet"),
  47253. name: "Side",
  47254. image: {
  47255. source: "./media/characters/birch/side.svg",
  47256. extra: 985/796,
  47257. bottom: 111/1096
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(5, "feet"),
  47265. default: true
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47271. {
  47272. front: {
  47273. height: math.unit(4, "feet"),
  47274. name: "Front",
  47275. image: {
  47276. source: "./media/characters/rasp/front.svg",
  47277. extra: 561/478,
  47278. bottom: 74/635
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Normal",
  47285. height: math.unit(4, "feet"),
  47286. default: true
  47287. },
  47288. ]
  47289. ))
  47290. characterMakers.push(() => makeCharacter(
  47291. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47292. {
  47293. front: {
  47294. height: math.unit(4 + 6/12, "feet"),
  47295. name: "Front",
  47296. image: {
  47297. source: "./media/characters/agatha/front.svg",
  47298. extra: 947/933,
  47299. bottom: 42/989
  47300. }
  47301. },
  47302. back: {
  47303. height: math.unit(4 + 6/12, "feet"),
  47304. name: "Back",
  47305. image: {
  47306. source: "./media/characters/agatha/back.svg",
  47307. extra: 935/922,
  47308. bottom: 48/983
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(4 + 6 /12, "feet"),
  47316. default: true
  47317. },
  47318. {
  47319. name: "Max Size",
  47320. height: math.unit(500, "feet")
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47326. {
  47327. side: {
  47328. height: math.unit(30, "feet"),
  47329. name: "Side",
  47330. image: {
  47331. source: "./media/characters/roggy/side.svg",
  47332. extra: 909/643,
  47333. bottom: 63/972
  47334. }
  47335. },
  47336. lounging: {
  47337. height: math.unit(20, "feet"),
  47338. name: "Lounging",
  47339. image: {
  47340. source: "./media/characters/roggy/lounging.svg",
  47341. extra: 643/479,
  47342. bottom: 145/788
  47343. }
  47344. },
  47345. handpaw: {
  47346. height: math.unit(13.1, "feet"),
  47347. name: "Handpaw",
  47348. image: {
  47349. source: "./media/characters/roggy/handpaw.svg"
  47350. }
  47351. },
  47352. footpaw: {
  47353. height: math.unit(15.8, "feet"),
  47354. name: "Footpaw",
  47355. image: {
  47356. source: "./media/characters/roggy/footpaw.svg"
  47357. }
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Menacing",
  47363. height: math.unit(30, "feet"),
  47364. default: true
  47365. },
  47366. ]
  47367. ))
  47368. characterMakers.push(() => makeCharacter(
  47369. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47370. {
  47371. front: {
  47372. height: math.unit(5 + 7/12, "feet"),
  47373. weight: math.unit(135, "lb"),
  47374. name: "Front",
  47375. image: {
  47376. source: "./media/characters/naomi/front.svg",
  47377. extra: 1209/1154,
  47378. bottom: 129/1338
  47379. }
  47380. },
  47381. back: {
  47382. height: math.unit(5 + 7/12, "feet"),
  47383. weight: math.unit(135, "lb"),
  47384. name: "Back",
  47385. image: {
  47386. source: "./media/characters/naomi/back.svg",
  47387. extra: 1252/1190,
  47388. bottom: 23/1275
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(5 + 7 /12, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47402. {
  47403. side: {
  47404. height: math.unit(35, "meters"),
  47405. name: "Side",
  47406. image: {
  47407. source: "./media/characters/kimpi/side.svg",
  47408. extra: 419/382,
  47409. bottom: 63/482
  47410. }
  47411. },
  47412. hand: {
  47413. height: math.unit(8.96, "meters"),
  47414. name: "Hand",
  47415. image: {
  47416. source: "./media/characters/kimpi/hand.svg"
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Normal",
  47423. height: math.unit(35, "meters"),
  47424. default: true
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(4 + 4/12, "feet"),
  47433. name: "Front",
  47434. image: {
  47435. source: "./media/characters/pepper-purrloin/front.svg",
  47436. extra: 1141/1024,
  47437. bottom: 21/1162
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Normal",
  47444. height: math.unit(4 + 4/12, "feet"),
  47445. default: true
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(6 + 2/12, "feet"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/raphael/front.svg",
  47457. extra: 1101/962,
  47458. bottom: 59/1160
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(6 + 2/12, "feet"),
  47466. default: true
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(6, "feet"),
  47475. weight: math.unit(150, "lb"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/victor-williams/front.svg",
  47479. extra: 1894/1825,
  47480. bottom: 67/1961
  47481. }
  47482. },
  47483. },
  47484. [
  47485. {
  47486. name: "Normal",
  47487. height: math.unit(6, "feet"),
  47488. default: true
  47489. },
  47490. ]
  47491. ))
  47492. characterMakers.push(() => makeCharacter(
  47493. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47494. {
  47495. front: {
  47496. height: math.unit(5 + 8/12, "feet"),
  47497. weight: math.unit(150, "lb"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/rachel/front.svg",
  47501. extra: 1902/1787,
  47502. bottom: 46/1948
  47503. }
  47504. },
  47505. },
  47506. [
  47507. {
  47508. name: "Base Height",
  47509. height: math.unit(5 + 8/12, "feet"),
  47510. default: true
  47511. },
  47512. {
  47513. name: "Macro",
  47514. height: math.unit(200, "feet")
  47515. },
  47516. {
  47517. name: "Mega Macro",
  47518. height: math.unit(1, "mile")
  47519. },
  47520. {
  47521. name: "Giga Macro",
  47522. height: math.unit(1500, "miles")
  47523. },
  47524. {
  47525. name: "Tera Macro",
  47526. height: math.unit(8000, "miles")
  47527. },
  47528. {
  47529. name: "Tera Macro+",
  47530. height: math.unit(2e5, "miles")
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47536. {
  47537. front: {
  47538. height: math.unit(6.5, "feet"),
  47539. name: "Front",
  47540. image: {
  47541. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47542. extra: 860/819,
  47543. bottom: 307/1167
  47544. }
  47545. },
  47546. back: {
  47547. height: math.unit(6.5, "feet"),
  47548. name: "Back",
  47549. image: {
  47550. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47551. extra: 880/837,
  47552. bottom: 395/1275
  47553. }
  47554. },
  47555. sleeping: {
  47556. height: math.unit(2.79, "feet"),
  47557. name: "Sleeping",
  47558. image: {
  47559. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47560. extra: 465/383,
  47561. bottom: 263/728
  47562. }
  47563. },
  47564. maw: {
  47565. height: math.unit(2.52, "feet"),
  47566. name: "Maw",
  47567. image: {
  47568. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(6.5, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(5, "feet"),
  47585. name: "Front",
  47586. image: {
  47587. source: "./media/characters/nova-nerium/front.svg",
  47588. extra: 1548/1392,
  47589. bottom: 374/1922
  47590. }
  47591. },
  47592. back: {
  47593. height: math.unit(5, "feet"),
  47594. name: "Back",
  47595. image: {
  47596. source: "./media/characters/nova-nerium/back.svg",
  47597. extra: 1658/1468,
  47598. bottom: 257/1915
  47599. }
  47600. },
  47601. },
  47602. [
  47603. {
  47604. name: "Normal",
  47605. height: math.unit(5, "feet"),
  47606. default: true
  47607. },
  47608. ]
  47609. ))
  47610. characterMakers.push(() => makeCharacter(
  47611. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47612. {
  47613. front: {
  47614. height: math.unit(5 + 4/12, "feet"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/ashe-pyriph/front.svg",
  47618. extra: 1935/1747,
  47619. bottom: 60/1995
  47620. }
  47621. },
  47622. },
  47623. [
  47624. {
  47625. name: "Normal",
  47626. height: math.unit(5 + 4/12, "feet"),
  47627. default: true
  47628. },
  47629. ]
  47630. ))
  47631. characterMakers.push(() => makeCharacter(
  47632. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47633. {
  47634. front: {
  47635. height: math.unit(8.7, "feet"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/flicker-wisp/front.svg",
  47639. extra: 1835/1613,
  47640. bottom: 449/2284
  47641. }
  47642. },
  47643. side: {
  47644. height: math.unit(8.7, "feet"),
  47645. name: "Side",
  47646. image: {
  47647. source: "./media/characters/flicker-wisp/side.svg",
  47648. extra: 1841/1642,
  47649. bottom: 336/2177
  47650. },
  47651. default: true
  47652. },
  47653. maw: {
  47654. height: math.unit(3.35, "feet"),
  47655. name: "Maw",
  47656. image: {
  47657. source: "./media/characters/flicker-wisp/maw.svg",
  47658. extra: 2338/1506,
  47659. bottom: 0/2338
  47660. }
  47661. },
  47662. ovipositor: {
  47663. height: math.unit(4.95, "feet"),
  47664. name: "Ovipositor",
  47665. image: {
  47666. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47667. }
  47668. },
  47669. egg: {
  47670. height: math.unit(0.385, "feet"),
  47671. weight: math.unit(2, "lb"),
  47672. name: "Egg",
  47673. image: {
  47674. source: "./media/characters/flicker-wisp/egg.svg"
  47675. }
  47676. },
  47677. },
  47678. [
  47679. {
  47680. name: "Normal",
  47681. height: math.unit(8.7, "feet"),
  47682. default: true
  47683. },
  47684. ]
  47685. ))
  47686. characterMakers.push(() => makeCharacter(
  47687. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47688. {
  47689. side: {
  47690. height: math.unit(11, "feet"),
  47691. name: "Side",
  47692. image: {
  47693. source: "./media/characters/faefnul/side.svg",
  47694. extra: 1100/1007,
  47695. bottom: 0/1100
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Normal",
  47702. height: math.unit(11, "feet"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47709. {
  47710. front: {
  47711. height: math.unit(6 + 2/12, "feet"),
  47712. name: "Front",
  47713. image: {
  47714. source: "./media/characters/shady/front.svg",
  47715. extra: 502/461,
  47716. bottom: 9/511
  47717. }
  47718. },
  47719. kneeling: {
  47720. height: math.unit(4.6, "feet"),
  47721. name: "Kneeling",
  47722. image: {
  47723. source: "./media/characters/shady/kneeling.svg",
  47724. extra: 1328/1219,
  47725. bottom: 117/1445
  47726. }
  47727. },
  47728. maw: {
  47729. height: math.unit(2, "feet"),
  47730. name: "Maw",
  47731. image: {
  47732. source: "./media/characters/shady/maw.svg"
  47733. }
  47734. },
  47735. },
  47736. [
  47737. {
  47738. name: "Nano",
  47739. height: math.unit(1, "mm")
  47740. },
  47741. {
  47742. name: "Micro",
  47743. height: math.unit(12, "mm")
  47744. },
  47745. {
  47746. name: "Tiny",
  47747. height: math.unit(3, "inches")
  47748. },
  47749. {
  47750. name: "Normal",
  47751. height: math.unit(6 + 2/12, "feet"),
  47752. default: true
  47753. },
  47754. {
  47755. name: "Big",
  47756. height: math.unit(15, "feet")
  47757. },
  47758. {
  47759. name: "Macro",
  47760. height: math.unit(150, "feet")
  47761. },
  47762. {
  47763. name: "Titanic",
  47764. height: math.unit(500, "feet")
  47765. },
  47766. ]
  47767. ))
  47768. characterMakers.push(() => makeCharacter(
  47769. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47770. {
  47771. front: {
  47772. height: math.unit(12, "feet"),
  47773. name: "Front",
  47774. image: {
  47775. source: "./media/characters/fenrir/front.svg",
  47776. extra: 968/875,
  47777. bottom: 22/990
  47778. }
  47779. },
  47780. },
  47781. [
  47782. {
  47783. name: "Big",
  47784. height: math.unit(12, "feet"),
  47785. default: true
  47786. },
  47787. ]
  47788. ))
  47789. characterMakers.push(() => makeCharacter(
  47790. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47791. {
  47792. front: {
  47793. height: math.unit(5 + 4/12, "feet"),
  47794. name: "Front",
  47795. image: {
  47796. source: "./media/characters/makar/front.svg",
  47797. extra: 1181/1112,
  47798. bottom: 78/1259
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Normal",
  47805. height: math.unit(5 + 4/12, "feet"),
  47806. default: true
  47807. },
  47808. ]
  47809. ))
  47810. characterMakers.push(() => makeCharacter(
  47811. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47812. {
  47813. front: {
  47814. height: math.unit(5 + 7/12, "feet"),
  47815. name: "Front",
  47816. image: {
  47817. source: "./media/characters/callow/front.svg",
  47818. extra: 1482/1304,
  47819. bottom: 23/1505
  47820. }
  47821. },
  47822. back: {
  47823. height: math.unit(5 + 7/12, "feet"),
  47824. name: "Back",
  47825. image: {
  47826. source: "./media/characters/callow/back.svg",
  47827. extra: 1484/1296,
  47828. bottom: 25/1509
  47829. }
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Micro",
  47835. height: math.unit(3, "inches"),
  47836. default: true
  47837. },
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(5 + 7/12, "feet")
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(6 + 2/12, "feet"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/natel/front.svg",
  47852. extra: 1833/1692,
  47853. bottom: 166/1999
  47854. }
  47855. },
  47856. },
  47857. [
  47858. {
  47859. name: "Normal",
  47860. height: math.unit(6 + 2/12, "feet"),
  47861. default: true
  47862. },
  47863. ]
  47864. ))
  47865. characterMakers.push(() => makeCharacter(
  47866. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47867. {
  47868. front: {
  47869. height: math.unit(1.75, "meters"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/misu/front.svg",
  47873. extra: 1690/1558,
  47874. bottom: 234/1924
  47875. }
  47876. },
  47877. back: {
  47878. height: math.unit(1.75, "meters"),
  47879. name: "Back",
  47880. image: {
  47881. source: "./media/characters/misu/back.svg",
  47882. extra: 1762/1618,
  47883. bottom: 146/1908
  47884. }
  47885. },
  47886. frontNude: {
  47887. height: math.unit(1.75, "meters"),
  47888. name: "Front (Nude)",
  47889. image: {
  47890. source: "./media/characters/misu/front-nude.svg",
  47891. extra: 1690/1558,
  47892. bottom: 234/1924
  47893. }
  47894. },
  47895. backNude: {
  47896. height: math.unit(1.75, "meters"),
  47897. name: "Back (Nude)",
  47898. image: {
  47899. source: "./media/characters/misu/back-nude.svg",
  47900. extra: 1762/1618,
  47901. bottom: 146/1908
  47902. }
  47903. },
  47904. frontErect: {
  47905. height: math.unit(1.75, "meters"),
  47906. name: "Front (Erect)",
  47907. image: {
  47908. source: "./media/characters/misu/front-erect.svg",
  47909. extra: 1690/1558,
  47910. bottom: 234/1924
  47911. }
  47912. },
  47913. maw: {
  47914. height: math.unit(0.47, "meters"),
  47915. name: "Maw",
  47916. image: {
  47917. source: "./media/characters/misu/maw.svg"
  47918. }
  47919. },
  47920. head: {
  47921. height: math.unit(0.35, "meters"),
  47922. name: "Head",
  47923. image: {
  47924. source: "./media/characters/misu/head.svg"
  47925. }
  47926. },
  47927. rear: {
  47928. height: math.unit(0.47, "meters"),
  47929. name: "Rear",
  47930. image: {
  47931. source: "./media/characters/misu/rear.svg"
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(1.75, "meters")
  47939. },
  47940. {
  47941. name: "Not good for the people",
  47942. height: math.unit(42, "meters")
  47943. },
  47944. {
  47945. name: "Not good for the neighborhood",
  47946. height: math.unit(135, "meters")
  47947. },
  47948. {
  47949. name: "Bit bigger problem",
  47950. height: math.unit(380, "meters"),
  47951. default: true
  47952. },
  47953. {
  47954. name: "Not good for the city",
  47955. height: math.unit(1.5, "km")
  47956. },
  47957. {
  47958. name: "Not good for the county",
  47959. height: math.unit(5.5, "km")
  47960. },
  47961. {
  47962. name: "Not good for the state",
  47963. height: math.unit(25, "km")
  47964. },
  47965. {
  47966. name: "Not good for the country",
  47967. height: math.unit(125, "km")
  47968. },
  47969. {
  47970. name: "Not good for the continent",
  47971. height: math.unit(2100, "km")
  47972. },
  47973. {
  47974. name: "Not good for the planet",
  47975. height: math.unit(35000, "km")
  47976. },
  47977. {
  47978. name: "Just no",
  47979. height: math.unit(8.5e18, "km")
  47980. },
  47981. ]
  47982. ))
  47983. characterMakers.push(() => makeCharacter(
  47984. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47985. {
  47986. front: {
  47987. height: math.unit(6.5, "feet"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/poppy/front.svg",
  47991. extra: 1878/1812,
  47992. bottom: 43/1921
  47993. }
  47994. },
  47995. feet: {
  47996. height: math.unit(1.06, "feet"),
  47997. name: "Feet",
  47998. image: {
  47999. source: "./media/characters/poppy/feet.svg",
  48000. extra: 1083/1083,
  48001. bottom: 87/1170
  48002. }
  48003. },
  48004. },
  48005. [
  48006. {
  48007. name: "Human",
  48008. height: math.unit(6.5, "feet")
  48009. },
  48010. {
  48011. name: "Default",
  48012. height: math.unit(300, "feet"),
  48013. default: true
  48014. },
  48015. {
  48016. name: "Huge",
  48017. height: math.unit(850, "feet")
  48018. },
  48019. {
  48020. name: "Mega",
  48021. height: math.unit(8000, "feet")
  48022. },
  48023. {
  48024. name: "Giga",
  48025. height: math.unit(300, "miles")
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48031. {
  48032. bipedal: {
  48033. height: math.unit(7, "feet"),
  48034. name: "Bipedal",
  48035. image: {
  48036. source: "./media/characters/zener/bipedal.svg",
  48037. extra: 874/805,
  48038. bottom: 109/983
  48039. }
  48040. },
  48041. quadrupedal: {
  48042. height: math.unit(4.64, "feet"),
  48043. name: "Quadrupedal",
  48044. image: {
  48045. source: "./media/characters/zener/quadrupedal.svg",
  48046. extra: 638/507,
  48047. bottom: 190/828
  48048. }
  48049. },
  48050. cock: {
  48051. height: math.unit(18, "inches"),
  48052. name: "Cock",
  48053. image: {
  48054. source: "./media/characters/zener/cock.svg"
  48055. }
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Normal",
  48061. height: math.unit(7, "feet"),
  48062. default: true
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48068. {
  48069. nude: {
  48070. height: math.unit(5 + 6/12, "feet"),
  48071. name: "Nude",
  48072. image: {
  48073. source: "./media/characters/charlie-dog/nude.svg",
  48074. extra: 768/734,
  48075. bottom: 26/794
  48076. }
  48077. },
  48078. dressed: {
  48079. height: math.unit(5 + 6/12, "feet"),
  48080. name: "Dressed",
  48081. image: {
  48082. source: "./media/characters/charlie-dog/dressed.svg",
  48083. extra: 768/734,
  48084. bottom: 26/794
  48085. }
  48086. },
  48087. },
  48088. [
  48089. {
  48090. name: "Normal",
  48091. height: math.unit(5 + 6/12, "feet"),
  48092. default: true
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48098. {
  48099. front: {
  48100. height: math.unit(6 + 4/12, "feet"),
  48101. name: "Front",
  48102. image: {
  48103. source: "./media/characters/ir'istrasz/front.svg",
  48104. extra: 1014/977,
  48105. bottom: 65/1079
  48106. }
  48107. },
  48108. back: {
  48109. height: math.unit(6 + 4/12, "feet"),
  48110. name: "Back",
  48111. image: {
  48112. source: "./media/characters/ir'istrasz/back.svg",
  48113. extra: 1024/992,
  48114. bottom: 34/1058
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(6 + 4/12, "feet"),
  48122. default: true
  48123. },
  48124. ]
  48125. ))
  48126. characterMakers.push(() => makeCharacter(
  48127. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48128. {
  48129. front: {
  48130. height: math.unit(5 + 8/12, "feet"),
  48131. name: "Front",
  48132. image: {
  48133. source: "./media/characters/dee-ditto/front.svg",
  48134. extra: 1874/1785,
  48135. bottom: 68/1942
  48136. }
  48137. },
  48138. back: {
  48139. height: math.unit(5 + 8/12, "feet"),
  48140. name: "Back",
  48141. image: {
  48142. source: "./media/characters/dee-ditto/back.svg",
  48143. extra: 1870/1783,
  48144. bottom: 77/1947
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(5 + 8/12, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(7 + 6/12, "feet"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/fey/front.svg",
  48164. extra: 995/979,
  48165. bottom: 30/1025
  48166. }
  48167. },
  48168. back: {
  48169. height: math.unit(7 + 6/12, "feet"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/fey/back.svg",
  48173. extra: 1079/1008,
  48174. bottom: 5/1084
  48175. }
  48176. },
  48177. dressed: {
  48178. height: math.unit(7 + 6/12, "feet"),
  48179. name: "Dressed",
  48180. image: {
  48181. source: "./media/characters/fey/dressed.svg",
  48182. extra: 995/979,
  48183. bottom: 30/1025
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Normal",
  48190. height: math.unit(7 + 6/12, "feet"),
  48191. default: true
  48192. },
  48193. ]
  48194. ))
  48195. characterMakers.push(() => makeCharacter(
  48196. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48197. {
  48198. standing: {
  48199. height: math.unit(17, "feet"),
  48200. name: "Standing",
  48201. image: {
  48202. source: "./media/characters/aster/standing.svg",
  48203. extra: 1798/1598,
  48204. bottom: 117/1915
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Normal",
  48211. height: math.unit(17, "feet"),
  48212. default: true
  48213. },
  48214. {
  48215. name: "Homewrecker",
  48216. height: math.unit(95, "feet")
  48217. },
  48218. {
  48219. name: "Planet Devourer",
  48220. height: math.unit(1008000, "miles")
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48226. {
  48227. front: {
  48228. height: math.unit(6 + 5/12, "feet"),
  48229. weight: math.unit(265, "lb"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/devon-childs/front.svg",
  48233. extra: 1795/1721,
  48234. bottom: 41/1836
  48235. }
  48236. },
  48237. side: {
  48238. height: math.unit(6 + 5/12, "feet"),
  48239. weight: math.unit(265, "lb"),
  48240. name: "Side",
  48241. image: {
  48242. source: "./media/characters/devon-childs/side.svg",
  48243. extra: 1812/1738,
  48244. bottom: 30/1842
  48245. }
  48246. },
  48247. back: {
  48248. height: math.unit(6 + 5/12, "feet"),
  48249. weight: math.unit(265, "lb"),
  48250. name: "Back",
  48251. image: {
  48252. source: "./media/characters/devon-childs/back.svg",
  48253. extra: 1808/1735,
  48254. bottom: 23/1831
  48255. }
  48256. },
  48257. hand: {
  48258. height: math.unit(1.464, "feet"),
  48259. name: "Hand",
  48260. image: {
  48261. source: "./media/characters/devon-childs/hand.svg"
  48262. }
  48263. },
  48264. foot: {
  48265. height: math.unit(1.6, "feet"),
  48266. name: "Foot",
  48267. image: {
  48268. source: "./media/characters/devon-childs/foot.svg"
  48269. }
  48270. },
  48271. },
  48272. [
  48273. {
  48274. name: "Micro",
  48275. height: math.unit(7, "cm")
  48276. },
  48277. {
  48278. name: "Normal",
  48279. height: math.unit(6 + 5/12, "feet"),
  48280. default: true
  48281. },
  48282. {
  48283. name: "Macro",
  48284. height: math.unit(154, "feet")
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48290. {
  48291. front: {
  48292. height: math.unit(6, "feet"),
  48293. weight: math.unit(180, "lb"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/lydemox-vir/front.svg",
  48297. extra: 1632/1435,
  48298. bottom: 58/1690
  48299. }
  48300. },
  48301. frontSFW: {
  48302. height: math.unit(6, "feet"),
  48303. weight: math.unit(180, "lb"),
  48304. name: "Front (SFW)",
  48305. image: {
  48306. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48307. extra: 1632/1435,
  48308. bottom: 58/1690
  48309. }
  48310. },
  48311. back: {
  48312. height: math.unit(6, "feet"),
  48313. weight: math.unit(180, "lb"),
  48314. name: "Back",
  48315. image: {
  48316. source: "./media/characters/lydemox-vir/back.svg",
  48317. extra: 1593/1408,
  48318. bottom: 31/1624
  48319. }
  48320. },
  48321. paw: {
  48322. height: math.unit(1.85, "feet"),
  48323. name: "Paw",
  48324. image: {
  48325. source: "./media/characters/lydemox-vir/paw.svg"
  48326. }
  48327. },
  48328. dick: {
  48329. height: math.unit(1.8, "feet"),
  48330. name: "Dick",
  48331. image: {
  48332. source: "./media/characters/lydemox-vir/dick.svg"
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Macro",
  48339. height: math.unit(100, "feet"),
  48340. default: true
  48341. },
  48342. {
  48343. name: "Teramacro",
  48344. height: math.unit(1, "earth")
  48345. },
  48346. {
  48347. name: "Planetary",
  48348. height: math.unit(20, "earths")
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48354. {
  48355. front: {
  48356. height: math.unit(15 + 8/12, "feet"),
  48357. weight: math.unit(1237, "kg"),
  48358. name: "Front",
  48359. image: {
  48360. source: "./media/characters/mia/front.svg",
  48361. extra: 1573/1446,
  48362. bottom: 58/1631
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Small",
  48369. height: math.unit(9 + 5/12, "feet")
  48370. },
  48371. {
  48372. name: "Normal",
  48373. height: math.unit(15 + 8/12, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(10 + 6/12, "feet"),
  48383. weight: math.unit(1.3, "tons"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/mr-graves/front.svg",
  48387. extra: 1779/1695,
  48388. bottom: 198/1977
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(10 + 6 /12, "feet"),
  48396. default: true
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48402. {
  48403. dressedFront: {
  48404. height: math.unit(5 + 8/12, "feet"),
  48405. weight: math.unit(125, "lb"),
  48406. name: "Dressed (Front)",
  48407. image: {
  48408. source: "./media/characters/jess/dressed-front.svg",
  48409. extra: 1176/1152,
  48410. bottom: 42/1218
  48411. }
  48412. },
  48413. dressedSide: {
  48414. height: math.unit(5 + 8/12, "feet"),
  48415. weight: math.unit(125, "lb"),
  48416. name: "Dressed (Side)",
  48417. image: {
  48418. source: "./media/characters/jess/dressed-side.svg",
  48419. extra: 1204/1190,
  48420. bottom: 6/1210
  48421. }
  48422. },
  48423. nudeFront: {
  48424. height: math.unit(5 + 8/12, "feet"),
  48425. weight: math.unit(125, "lb"),
  48426. name: "Nude (Front)",
  48427. image: {
  48428. source: "./media/characters/jess/nude-front.svg",
  48429. extra: 1176/1152,
  48430. bottom: 42/1218
  48431. }
  48432. },
  48433. nudeSide: {
  48434. height: math.unit(5 + 8/12, "feet"),
  48435. weight: math.unit(125, "lb"),
  48436. name: "Nude (Side)",
  48437. image: {
  48438. source: "./media/characters/jess/nude-side.svg",
  48439. extra: 1204/1190,
  48440. bottom: 6/1210
  48441. }
  48442. },
  48443. organsFront: {
  48444. height: math.unit(2.83799342105, "feet"),
  48445. name: "Organs (Front)",
  48446. image: {
  48447. source: "./media/characters/jess/organs-front.svg"
  48448. }
  48449. },
  48450. organsSide: {
  48451. height: math.unit(2.64225290474, "feet"),
  48452. name: "Organs (Side)",
  48453. image: {
  48454. source: "./media/characters/jess/organs-side.svg"
  48455. }
  48456. },
  48457. digestiveTractFront: {
  48458. height: math.unit(2.8106580871, "feet"),
  48459. name: "Digestive Tract (Front)",
  48460. image: {
  48461. source: "./media/characters/jess/digestive-tract-front.svg"
  48462. }
  48463. },
  48464. digestiveTractSide: {
  48465. height: math.unit(2.54365045014, "feet"),
  48466. name: "Digestive Tract (Side)",
  48467. image: {
  48468. source: "./media/characters/jess/digestive-tract-side.svg"
  48469. }
  48470. },
  48471. respiratorySystemFront: {
  48472. height: math.unit(1.11196233456, "feet"),
  48473. name: "Respiratory System (Front)",
  48474. image: {
  48475. source: "./media/characters/jess/respiratory-system-front.svg"
  48476. }
  48477. },
  48478. respiratorySystemSide: {
  48479. height: math.unit(0.89327966297, "feet"),
  48480. name: "Respiratory System (Side)",
  48481. image: {
  48482. source: "./media/characters/jess/respiratory-system-side.svg"
  48483. }
  48484. },
  48485. urinaryTractFront: {
  48486. height: math.unit(1.16126356186, "feet"),
  48487. name: "Urinary Tract (Front)",
  48488. image: {
  48489. source: "./media/characters/jess/urinary-tract-front.svg"
  48490. }
  48491. },
  48492. urinaryTractSide: {
  48493. height: math.unit(1.20910039627, "feet"),
  48494. name: "Urinary Tract (Side)",
  48495. image: {
  48496. source: "./media/characters/jess/urinary-tract-side.svg"
  48497. }
  48498. },
  48499. reproductiveOrgansFront: {
  48500. height: math.unit(0.48422591566, "feet"),
  48501. name: "Reproductive Organs (Front)",
  48502. image: {
  48503. source: "./media/characters/jess/reproductive-organs-front.svg"
  48504. }
  48505. },
  48506. reproductiveOrgansSide: {
  48507. height: math.unit(0.61553314481, "feet"),
  48508. name: "Reproductive Organs (Side)",
  48509. image: {
  48510. source: "./media/characters/jess/reproductive-organs-side.svg"
  48511. }
  48512. },
  48513. breastsFront: {
  48514. height: math.unit(0.47690395121, "feet"),
  48515. name: "Breasts (Front)",
  48516. image: {
  48517. source: "./media/characters/jess/breasts-front.svg"
  48518. }
  48519. },
  48520. breastsSide: {
  48521. height: math.unit(0.30556998307, "feet"),
  48522. name: "Breasts (Side)",
  48523. image: {
  48524. source: "./media/characters/jess/breasts-side.svg"
  48525. }
  48526. },
  48527. heartFront: {
  48528. height: math.unit(0.53011022622, "feet"),
  48529. name: "Heart (Front)",
  48530. image: {
  48531. source: "./media/characters/jess/heart-front.svg"
  48532. }
  48533. },
  48534. heartSide: {
  48535. height: math.unit(0.51790695213, "feet"),
  48536. name: "Heart (Side)",
  48537. image: {
  48538. source: "./media/characters/jess/heart-side.svg"
  48539. }
  48540. },
  48541. earsAndNoseFront: {
  48542. height: math.unit(0.29385483995, "feet"),
  48543. name: "Ears and Nose (Front)",
  48544. image: {
  48545. source: "./media/characters/jess/ears-and-nose-front.svg"
  48546. }
  48547. },
  48548. earsAndNoseSide: {
  48549. height: math.unit(0.18109658741, "feet"),
  48550. name: "Ears and Nose (Side)",
  48551. image: {
  48552. source: "./media/characters/jess/ears-and-nose-side.svg"
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(5 + 8/12, "feet"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48566. {
  48567. front: {
  48568. height: math.unit(6, "feet"),
  48569. weight: math.unit(6.64467e-7, "grams"),
  48570. name: "Front",
  48571. image: {
  48572. source: "./media/characters/wimpering/front.svg",
  48573. extra: 597/587,
  48574. bottom: 34/631
  48575. }
  48576. },
  48577. },
  48578. [
  48579. {
  48580. name: "Micro",
  48581. height: math.unit(0.4, "mm"),
  48582. default: true
  48583. },
  48584. ]
  48585. ))
  48586. characterMakers.push(() => makeCharacter(
  48587. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48588. {
  48589. front: {
  48590. height: math.unit(5 + 2/12, "feet"),
  48591. weight: math.unit(110, "lb"),
  48592. name: "Front",
  48593. image: {
  48594. source: "./media/characters/keltre/front.svg",
  48595. extra: 1099/1057,
  48596. bottom: 22/1121
  48597. }
  48598. },
  48599. back: {
  48600. height: math.unit(5 + 2/12, "feet"),
  48601. weight: math.unit(110, "lb"),
  48602. name: "Back",
  48603. image: {
  48604. source: "./media/characters/keltre/back.svg",
  48605. extra: 1095/1053,
  48606. bottom: 17/1112
  48607. }
  48608. },
  48609. dressed: {
  48610. height: math.unit(5 + 2/12, "feet"),
  48611. weight: math.unit(110, "lb"),
  48612. name: "Dressed",
  48613. image: {
  48614. source: "./media/characters/keltre/dressed.svg",
  48615. extra: 1099/1057,
  48616. bottom: 22/1121
  48617. }
  48618. },
  48619. winter: {
  48620. height: math.unit(5 + 2/12, "feet"),
  48621. weight: math.unit(110, "lb"),
  48622. name: "Winter",
  48623. image: {
  48624. source: "./media/characters/keltre/winter.svg",
  48625. extra: 1099/1057,
  48626. bottom: 22/1121
  48627. }
  48628. },
  48629. head: {
  48630. height: math.unit(1.61 * 0.86, "feet"),
  48631. name: "Head",
  48632. image: {
  48633. source: "./media/characters/keltre/head.svg",
  48634. extra: 534/421,
  48635. bottom: 0/534
  48636. }
  48637. },
  48638. hand: {
  48639. height: math.unit(1.3 * 0.86, "feet"),
  48640. name: "Hand",
  48641. image: {
  48642. source: "./media/characters/keltre/hand.svg"
  48643. }
  48644. },
  48645. foot: {
  48646. height: math.unit(1.8 * 0.86, "feet"),
  48647. name: "Foot",
  48648. image: {
  48649. source: "./media/characters/keltre/foot.svg"
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Fine",
  48656. height: math.unit(1, "inch")
  48657. },
  48658. {
  48659. name: "Dimnutive",
  48660. height: math.unit(4, "inches")
  48661. },
  48662. {
  48663. name: "Tiny",
  48664. height: math.unit(1, "foot")
  48665. },
  48666. {
  48667. name: "Small",
  48668. height: math.unit(3, "feet")
  48669. },
  48670. {
  48671. name: "Normal",
  48672. height: math.unit(5 + 2/12, "feet"),
  48673. default: true
  48674. },
  48675. ]
  48676. ))
  48677. characterMakers.push(() => makeCharacter(
  48678. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48679. {
  48680. front: {
  48681. height: math.unit(6 + 2/12, "feet"),
  48682. name: "Front",
  48683. image: {
  48684. source: "./media/characters/nox/front.svg",
  48685. extra: 1917/1830,
  48686. bottom: 74/1991
  48687. }
  48688. },
  48689. back: {
  48690. height: math.unit(6 + 2/12, "feet"),
  48691. name: "Back",
  48692. image: {
  48693. source: "./media/characters/nox/back.svg",
  48694. extra: 1896/1815,
  48695. bottom: 21/1917
  48696. }
  48697. },
  48698. head: {
  48699. height: math.unit(1.1, "feet"),
  48700. name: "Head",
  48701. image: {
  48702. source: "./media/characters/nox/head.svg",
  48703. extra: 874/704,
  48704. bottom: 0/874
  48705. }
  48706. },
  48707. tattoo: {
  48708. height: math.unit(0.729, "feet"),
  48709. name: "Tattoo",
  48710. image: {
  48711. source: "./media/characters/nox/tattoo.svg"
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(6 + 2/12, "feet")
  48719. },
  48720. {
  48721. name: "Gigamacro",
  48722. height: math.unit(2, "earths"),
  48723. default: true
  48724. },
  48725. {
  48726. name: "Cosmic",
  48727. height: math.unit(867, "yottameters")
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48733. {
  48734. front: {
  48735. height: math.unit(6, "feet"),
  48736. weight: math.unit(150, "lb"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/caspian/front.svg",
  48740. extra: 1443/1359,
  48741. bottom: 0/1443
  48742. }
  48743. },
  48744. back: {
  48745. height: math.unit(6, "feet"),
  48746. weight: math.unit(150, "lb"),
  48747. name: "Back",
  48748. image: {
  48749. source: "./media/characters/caspian/back.svg",
  48750. extra: 1379/1309,
  48751. bottom: 0/1379
  48752. }
  48753. },
  48754. head: {
  48755. height: math.unit(0.9, "feet"),
  48756. name: "Head",
  48757. image: {
  48758. source: "./media/characters/caspian/head.svg",
  48759. extra: 692/492,
  48760. bottom: 0/692
  48761. }
  48762. },
  48763. headAlt: {
  48764. height: math.unit(0.95, "feet"),
  48765. name: "Head (Alt)",
  48766. image: {
  48767. source: "./media/characters/caspian/head-alt.svg",
  48768. extra: 668/508,
  48769. bottom: 0/668
  48770. }
  48771. },
  48772. hand: {
  48773. height: math.unit(0.8, "feet"),
  48774. name: "Hand",
  48775. image: {
  48776. source: "./media/characters/caspian/hand.svg"
  48777. }
  48778. },
  48779. paw: {
  48780. height: math.unit(0.95, "feet"),
  48781. name: "Paw",
  48782. image: {
  48783. source: "./media/characters/caspian/paw.svg"
  48784. }
  48785. },
  48786. },
  48787. [
  48788. {
  48789. name: "Normal",
  48790. height: math.unit(162, "feet"),
  48791. default: true
  48792. },
  48793. ]
  48794. ))
  48795. characterMakers.push(() => makeCharacter(
  48796. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48797. {
  48798. front: {
  48799. height: math.unit(6, "feet"),
  48800. name: "Front",
  48801. image: {
  48802. source: "./media/characters/myra-aisling/front.svg",
  48803. extra: 1268/1166,
  48804. bottom: 73/1341
  48805. }
  48806. },
  48807. back: {
  48808. height: math.unit(6, "feet"),
  48809. name: "Back",
  48810. image: {
  48811. source: "./media/characters/myra-aisling/back.svg",
  48812. extra: 1249/1149,
  48813. bottom: 79/1328
  48814. }
  48815. },
  48816. dressed: {
  48817. height: math.unit(6, "feet"),
  48818. name: "Dressed",
  48819. image: {
  48820. source: "./media/characters/myra-aisling/dressed.svg",
  48821. extra: 1290/1189,
  48822. bottom: 47/1337
  48823. }
  48824. },
  48825. hand: {
  48826. height: math.unit(1.1, "feet"),
  48827. name: "Hand",
  48828. image: {
  48829. source: "./media/characters/myra-aisling/hand.svg"
  48830. }
  48831. },
  48832. paw: {
  48833. height: math.unit(1.23, "feet"),
  48834. name: "Paw",
  48835. image: {
  48836. source: "./media/characters/myra-aisling/paw.svg"
  48837. }
  48838. },
  48839. },
  48840. [
  48841. {
  48842. name: "Normal",
  48843. height: math.unit(160, "feet"),
  48844. default: true
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48850. {
  48851. front: {
  48852. height: math.unit(6, "feet"),
  48853. name: "Front",
  48854. image: {
  48855. source: "./media/characters/tenley-sidero/front.svg",
  48856. extra: 1365/1276,
  48857. bottom: 47/1412
  48858. }
  48859. },
  48860. back: {
  48861. height: math.unit(6, "feet"),
  48862. name: "Back",
  48863. image: {
  48864. source: "./media/characters/tenley-sidero/back.svg",
  48865. extra: 1383/1283,
  48866. bottom: 35/1418
  48867. }
  48868. },
  48869. dressed: {
  48870. height: math.unit(6, "feet"),
  48871. name: "Dressed",
  48872. image: {
  48873. source: "./media/characters/tenley-sidero/dressed.svg",
  48874. extra: 1364/1275,
  48875. bottom: 42/1406
  48876. }
  48877. },
  48878. head: {
  48879. height: math.unit(1.47, "feet"),
  48880. name: "Head",
  48881. image: {
  48882. source: "./media/characters/tenley-sidero/head.svg",
  48883. extra: 610/490,
  48884. bottom: 0/610
  48885. }
  48886. },
  48887. },
  48888. [
  48889. {
  48890. name: "Normal",
  48891. height: math.unit(154, "feet"),
  48892. default: true
  48893. },
  48894. ]
  48895. ))
  48896. characterMakers.push(() => makeCharacter(
  48897. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48898. {
  48899. front: {
  48900. height: math.unit(5, "inches"),
  48901. name: "Front",
  48902. image: {
  48903. source: "./media/characters/mallory/front.svg",
  48904. extra: 1919/1678,
  48905. bottom: 29/1948
  48906. }
  48907. },
  48908. hand: {
  48909. height: math.unit(0.73, "inches"),
  48910. name: "Hand",
  48911. image: {
  48912. source: "./media/characters/mallory/hand.svg"
  48913. }
  48914. },
  48915. paw: {
  48916. height: math.unit(0.68, "inches"),
  48917. name: "Paw",
  48918. image: {
  48919. source: "./media/characters/mallory/paw.svg"
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Small",
  48926. height: math.unit(5, "inches"),
  48927. default: true
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48933. {
  48934. naked: {
  48935. height: math.unit(6, "feet"),
  48936. name: "Naked",
  48937. image: {
  48938. source: "./media/characters/mab/naked.svg",
  48939. extra: 1855/1757,
  48940. bottom: 208/2063
  48941. }
  48942. },
  48943. outside: {
  48944. height: math.unit(6, "feet"),
  48945. name: "Outside",
  48946. image: {
  48947. source: "./media/characters/mab/outside.svg",
  48948. extra: 1855/1757,
  48949. bottom: 208/2063
  48950. }
  48951. },
  48952. party: {
  48953. height: math.unit(6, "feet"),
  48954. name: "Party",
  48955. image: {
  48956. source: "./media/characters/mab/party.svg",
  48957. extra: 1855/1757,
  48958. bottom: 208/2063
  48959. }
  48960. },
  48961. },
  48962. [
  48963. {
  48964. name: "Normal",
  48965. height: math.unit(165, "feet"),
  48966. default: true
  48967. },
  48968. ]
  48969. ))
  48970. //characters
  48971. function makeCharacters() {
  48972. const results = [];
  48973. characterMakers.forEach(character => {
  48974. results.push(character());
  48975. });
  48976. return results;
  48977. }